@zealicsolutions/web-ui 0.3.91 → 0.3.93
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/contexts/OrganismContext/OrganismContext.d.ts +2 -1
- package/dist/cjs/src/contexts/OrganismContext/OrganismContextProvider.d.ts +3 -2
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/contexts/OrganismContext/OrganismContext.d.ts +2 -1
- package/dist/esm/src/contexts/OrganismContext/OrganismContextProvider.d.ts +3 -2
- package/dist/index.d.ts +5 -3
- package/package.json +1 -1
@@ -10,7 +10,8 @@ export declare type OrganismContextType = {
|
|
10
10
|
submitHandler?: (data: {
|
11
11
|
formId: string;
|
12
12
|
data: AnyObject;
|
13
|
-
}
|
13
|
+
}) => void;
|
14
14
|
validations?: PasswordRuleValidation[];
|
15
|
+
editable?: boolean;
|
15
16
|
};
|
16
17
|
export declare const OrganismContext: import("react").Context<OrganismContextType>;
|
@@ -8,7 +8,8 @@ export declare type FormStepContextProviderProps = PropsWithChildren<Partial<{
|
|
8
8
|
submitHandler: (data: {
|
9
9
|
formId: string;
|
10
10
|
data: AnyObject;
|
11
|
-
}
|
11
|
+
}) => void;
|
12
12
|
validations: PasswordRuleValidation[];
|
13
|
+
editable: boolean;
|
13
14
|
}>>;
|
14
|
-
export declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, validations, }: FormStepContextProviderProps) => JSX.Element;
|
15
|
+
export declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, validations, editable, }: FormStepContextProviderProps) => JSX.Element;
|