@zealicsolutions/web-ui 0.4.28 → 0.4.29
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/containers/types/moleculeTypes.d.ts +9 -0
- package/dist/esm/index.js +27 -27
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/containers/types/moleculeTypes.d.ts +9 -0
- package/dist/index.d.ts +10 -1
- package/package.json +2 -2
@@ -274,4 +274,13 @@ export declare type Molecule = StrictUnion<ImageMolecule | TextMoleculeType | Bu
|
|
274
274
|
formData: AnyObject;
|
275
275
|
setFormData: Dispatch<SetStateAction<AnyObject>>;
|
276
276
|
}>;
|
277
|
+
export declare type SlateValueChildType = {
|
278
|
+
id: string;
|
279
|
+
text: string;
|
280
|
+
variable?: {
|
281
|
+
dataModelField: DataConnectionValues;
|
282
|
+
text: string;
|
283
|
+
isStateConfigPresent?: boolean;
|
284
|
+
};
|
285
|
+
};
|
277
286
|
export {};
|