We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 77cbe2d + a2040de commit 567f5b9Copy full SHA for 567f5b9
packages/react-form-renderer/src/wizard-context/wizard-context.d.ts
@@ -1,10 +1,11 @@
1
import React from 'react';
2
+import { Field } from '../common-types';
3
import { FormOptions } from '../renderer-context';
4
5
export interface WizardContextValue {
6
formOptions: FormOptions;
7
crossroads: string[];
- currentStep: string;
8
+ currentStep: { fields: Field[]; name: string; title: string; nextStep?: string };
9
handlePrev: Function;
10
onKeyDown: Function;
11
jumpToStep: Function;
0 commit comments