File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
packages/react-form-renderer/src Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -171,6 +171,7 @@ const FormRenderer = ({
171
171
ffGetRegisteredFields : form . getRegisteredFields ,
172
172
getRegisteredFields : internalGetRegisteredFields ,
173
173
initialValues : props . initialValues ,
174
+ schema,
174
175
} ,
175
176
} }
176
177
>
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { ValidatorMapper } from '../validator-mapper';
5
5
import { ActionMapper } from '../form-renderer' ;
6
6
import Field from '../common-types/field' ;
7
7
import { AnyObject } from '../common-types/any-object' ;
8
+ import Schema from '../common-types/schema' ;
8
9
9
10
export interface FormOptions extends FormApi {
10
11
registerInputFile ?: ( name : string ) => void ;
@@ -19,6 +20,7 @@ export interface FormOptions extends FormApi {
19
20
getRegisteredFields : ( ) => string [ ] ;
20
21
ffGetRegisteredFields : ( ) => string [ ] ;
21
22
initialValues : AnyObject ;
23
+ schema : Schema ,
22
24
}
23
25
24
26
export interface RendererContextValue {
You can’t perform that action at this time.
0 commit comments