@zealicsolutions/web-ui 0.3.90 → 0.3.92

Sign up to get free protection for your applications and to get access to all the features.
@@ -12,5 +12,6 @@ export declare type OrganismContextType = {
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>;
@@ -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;
@@ -9,3 +9,5 @@ export * from './OrganismContext/OrganismContext';
9
9
  export * from './OrganismContext/OrganismContextProvider';
10
10
  export * from './AccountButtonContext/AccountButtonContext';
11
11
  export * from './AccountButtonContext/AccountButtonContextProvider';
12
+ export * from './StateContext/StateContext';
13
+ export * from './StateContext/StateContextProvider';