@zealicsolutions/web-ui 0.4.80 → 0.4.82
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.
- package/dist/cjs/index.js +18 -18
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/containers/mock-data.d.ts +139 -2140
- package/dist/cjs/src/contexts/OrganismContext/OrganismContext.d.ts +1 -1
- package/dist/cjs/src/contexts/OrganismContext/OrganismContextProvider.d.ts +1 -1
- package/dist/esm/index.js +12 -12
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/containers/mock-data.d.ts +139 -2140
- package/dist/esm/src/contexts/OrganismContext/OrganismContext.d.ts +1 -1
- package/dist/esm/src/contexts/OrganismContext/OrganismContextProvider.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +2 -2
@@ -21,7 +21,7 @@ export declare type OrganismContextProviderProps = PropsWithChildren<{
|
|
21
21
|
submitHandler: (data: {
|
22
22
|
formId: string;
|
23
23
|
data: AnyObject;
|
24
|
-
}) => void
|
24
|
+
}) => Promise<void>;
|
25
25
|
isFormInEditMode: boolean;
|
26
26
|
organismMetadata: AnyObject;
|
27
27
|
isConfigurationMode: boolean;
|
package/dist/index.d.ts
CHANGED
@@ -1557,7 +1557,7 @@ declare type OrganismContextProviderProps = PropsWithChildren<{
|
|
1557
1557
|
submitHandler: (data: {
|
1558
1558
|
formId: string;
|
1559
1559
|
data: AnyObject$1;
|
1560
|
-
}) => void
|
1560
|
+
}) => Promise<void>;
|
1561
1561
|
isFormInEditMode: boolean;
|
1562
1562
|
organismMetadata: AnyObject$1;
|
1563
1563
|
isConfigurationMode: boolean;
|
@@ -1582,7 +1582,7 @@ declare type OrganismContextType = {
|
|
1582
1582
|
submitHandler?: (data: {
|
1583
1583
|
formId: string;
|
1584
1584
|
data: AnyObject$1;
|
1585
|
-
}) => void
|
1585
|
+
}) => Promise<void>;
|
1586
1586
|
validations?: PasswordRuleValidation[];
|
1587
1587
|
editable?: boolean;
|
1588
1588
|
isFormInEditMode?: boolean;
|
package/package.json
CHANGED