dfh-ui-library 1.4.80 → 1.4.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,7 +4,7 @@ interface IComponentProps {
|
|
|
4
4
|
schema: ISchema[];
|
|
5
5
|
children: ReactNode;
|
|
6
6
|
setComponents: (data: IComponent[]) => void;
|
|
7
|
-
setNewSchema: (value: ISchema[]) => void;
|
|
7
|
+
setNewSchema: (value: ISchema[] | undefined) => void;
|
|
8
8
|
}
|
|
9
9
|
declare function DFHFormProvider({ schema, children, setComponents, setNewSchema, }: IComponentProps): React.JSX.Element;
|
|
10
10
|
export default DFHFormProvider;
|
|
@@ -4,7 +4,7 @@ interface IComponentProps {
|
|
|
4
4
|
schema: ISchema[];
|
|
5
5
|
children: ReactNode;
|
|
6
6
|
setComponents: (data: IComponent[]) => void;
|
|
7
|
-
setNewSchema: (value: ISchema[]) => void;
|
|
7
|
+
setNewSchema: (value: ISchema[] | undefined) => void;
|
|
8
8
|
}
|
|
9
9
|
declare function DFHFormProvider({ schema, children, setComponents, setNewSchema, }: IComponentProps): React.JSX.Element;
|
|
10
10
|
export default DFHFormProvider;
|
package/dist/index.d.ts
CHANGED
|
@@ -733,7 +733,7 @@ interface IComponentProps {
|
|
|
733
733
|
schema: ISchema[];
|
|
734
734
|
children: ReactNode;
|
|
735
735
|
setComponents: (data: IComponent[]) => void;
|
|
736
|
-
setNewSchema: (value: ISchema[]) => void;
|
|
736
|
+
setNewSchema: (value: ISchema[] | undefined) => void;
|
|
737
737
|
}
|
|
738
738
|
declare function DFHFormProvider({ schema, children, setComponents, setNewSchema, }: IComponentProps): React__default.JSX.Element;
|
|
739
739
|
|