@zealicsolutions/web-ui 0.3.78 → 0.3.80
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 +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/contexts/OrganismContext/OrganismContext.d.ts +6 -0
- package/dist/cjs/src/contexts/OrganismContext/OrganismContextProvider.d.ts +7 -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 +6 -0
- package/dist/esm/src/contexts/OrganismContext/OrganismContextProvider.d.ts +7 -1
- package/dist/index.d.ts +11 -1
- package/package.json +1 -1
@@ -1,8 +1,14 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import { ContainerComponentProps, Molecule } from 'containers';
|
3
|
+
import { AnyObject } from 'typescript';
|
3
4
|
import { GroupedStepItemsByStepContainer } from './utils';
|
4
5
|
export declare type OrganismContextType = {
|
5
6
|
items: (ContainerComponentProps | Molecule)[];
|
6
7
|
groupStepItemsByStepContainer: () => GroupedStepItemsByStepContainer;
|
8
|
+
formId?: string;
|
9
|
+
submitHandler?: (data: {
|
10
|
+
formId: string;
|
11
|
+
data: AnyObject;
|
12
|
+
}[]) => void;
|
7
13
|
};
|
8
14
|
export declare const OrganismContext: import("react").Context<OrganismContextType>;
|
@@ -1,6 +1,12 @@
|
|
1
1
|
import { ContainerComponentProps, Molecule } from 'containers';
|
2
2
|
import { PropsWithChildren } from 'react';
|
3
|
+
import { AnyObject } from 'typescript';
|
3
4
|
export declare type FormStepContextProviderProps = PropsWithChildren<Partial<{
|
4
5
|
initItems: (ContainerComponentProps | Molecule)[];
|
6
|
+
formId: string;
|
7
|
+
submitHandler: (data: {
|
8
|
+
formId: string;
|
9
|
+
data: AnyObject;
|
10
|
+
}[]) => void;
|
5
11
|
}>>;
|
6
|
-
export declare const OrganismContextProvider: ({ initItems, children, }: FormStepContextProviderProps) => JSX.Element;
|
12
|
+
export declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, }: FormStepContextProviderProps) => JSX.Element;
|
package/dist/index.d.ts
CHANGED
@@ -917,13 +917,23 @@ declare type GroupedStepItemsByStepContainer = Map<string, StepItem[]>;
|
|
917
917
|
declare type OrganismContextType = {
|
918
918
|
items: (ContainerComponentProps$1 | Molecule$1)[];
|
919
919
|
groupStepItemsByStepContainer: () => GroupedStepItemsByStepContainer;
|
920
|
+
formId?: string;
|
921
|
+
submitHandler?: (data: {
|
922
|
+
formId: string;
|
923
|
+
data: AnyObject$1;
|
924
|
+
}[]) => void;
|
920
925
|
};
|
921
926
|
declare const OrganismContext: react.Context<OrganismContextType>;
|
922
927
|
|
923
928
|
declare type FormStepContextProviderProps = PropsWithChildren<Partial<{
|
924
929
|
initItems: (ContainerComponentProps$1 | Molecule$1)[];
|
930
|
+
formId: string;
|
931
|
+
submitHandler: (data: {
|
932
|
+
formId: string;
|
933
|
+
data: AnyObject$1;
|
934
|
+
}[]) => void;
|
925
935
|
}>>;
|
926
|
-
declare const OrganismContextProvider: ({ initItems, children, }: FormStepContextProviderProps) => JSX.Element;
|
936
|
+
declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, }: FormStepContextProviderProps) => JSX.Element;
|
927
937
|
|
928
938
|
declare type FieldRuleLabelTypes = 'OPTIONAL' | 'REQUIRED';
|
929
939
|
declare type LabelInternalConfig = {
|