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.
1 parent 77cbe2d commit a2040deCopy full SHA for a2040de
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