@zealicsolutions/web-ui 0.3.91 → 0.3.92
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 +1 -0
- package/dist/cjs/src/contexts/OrganismContext/OrganismContextProvider.d.ts +2 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/contexts/OrganismContext/OrganismContext.d.ts +1 -0
- package/dist/esm/src/contexts/OrganismContext/OrganismContextProvider.d.ts +2 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
@@ -10,5 +10,6 @@ export declare type FormStepContextProviderProps = PropsWithChildren<Partial<{
|
|
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;
|
package/dist/index.d.ts
CHANGED
@@ -929,6 +929,7 @@ declare type OrganismContextType = {
|
|
929
929
|
data: AnyObject$1;
|
930
930
|
}[]) => void;
|
931
931
|
validations?: PasswordRuleValidation[];
|
932
|
+
editable?: boolean;
|
932
933
|
};
|
933
934
|
declare const OrganismContext: react.Context<OrganismContextType>;
|
934
935
|
|
@@ -940,8 +941,9 @@ declare type FormStepContextProviderProps = PropsWithChildren<Partial<{
|
|
940
941
|
data: AnyObject$1;
|
941
942
|
}[]) => void;
|
942
943
|
validations: PasswordRuleValidation[];
|
944
|
+
editable: boolean;
|
943
945
|
}>>;
|
944
|
-
declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, validations, }: FormStepContextProviderProps) => JSX.Element;
|
946
|
+
declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, validations, editable, }: FormStepContextProviderProps) => JSX.Element;
|
945
947
|
|
946
948
|
declare type AccountButtonContextType = Partial<{
|
947
949
|
userInitials: string;
|