@zealicsolutions/web-ui 0.3.178 → 0.3.179

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. package/dist/cjs/index.js +2 -2
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/src/atoms/Paddings/Paddings.d.ts +3 -3
  4. package/dist/cjs/src/atoms/RegularImage/RegularImage.d.ts +5 -5
  5. package/dist/cjs/src/atoms/RegularImage/RegularImage.stories.d.ts +1 -1
  6. package/dist/cjs/src/containers/Container.d.ts +25 -7
  7. package/dist/cjs/src/containers/mock-data.d.ts +498 -0
  8. package/dist/cjs/src/containers/styles.d.ts +8 -2
  9. package/dist/cjs/src/containers/types/types.d.ts +11 -5
  10. package/dist/cjs/src/molecules/Button/Button.d.ts +1 -0
  11. package/dist/cjs/src/molecules/Columns/Column.d.ts +1 -1
  12. package/dist/cjs/src/molecules/Columns/styles.d.ts +1 -1
  13. package/dist/cjs/src/molecules/Image/Image.d.ts +2 -1
  14. package/dist/cjs/src/molecules/PasswordSetup/PasswordSetup.stories.d.ts +2 -2
  15. package/dist/cjs/src/organisms/Footer/styles.d.ts +1 -1
  16. package/dist/esm/index.js +2 -2
  17. package/dist/esm/index.js.map +1 -1
  18. package/dist/esm/src/atoms/Paddings/Paddings.d.ts +3 -3
  19. package/dist/esm/src/atoms/RegularImage/RegularImage.d.ts +5 -5
  20. package/dist/esm/src/atoms/RegularImage/RegularImage.stories.d.ts +1 -1
  21. package/dist/esm/src/containers/Container.d.ts +25 -7
  22. package/dist/esm/src/containers/mock-data.d.ts +498 -0
  23. package/dist/esm/src/containers/styles.d.ts +8 -2
  24. package/dist/esm/src/containers/types/types.d.ts +11 -5
  25. package/dist/esm/src/molecules/Button/Button.d.ts +1 -0
  26. package/dist/esm/src/molecules/Columns/Column.d.ts +1 -1
  27. package/dist/esm/src/molecules/Columns/styles.d.ts +1 -1
  28. package/dist/esm/src/molecules/Image/Image.d.ts +2 -1
  29. package/dist/esm/src/molecules/PasswordSetup/PasswordSetup.stories.d.ts +2 -2
  30. package/dist/esm/src/organisms/Footer/styles.d.ts +1 -1
  31. package/dist/index.d.ts +51 -19
  32. package/package.json +2 -2
@@ -1,6 +1,6 @@
1
1
  import { SizesTypes } from 'theme';
2
- export declare type HorizontalPaddingProps = {
2
+ export declare type PaddingProps = {
3
3
  padding: SizesTypes | number;
4
4
  };
5
- export declare const HorizontalPadding: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, HorizontalPaddingProps, never>;
6
- export declare const VerticalPadding: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, HorizontalPaddingProps, never>;
5
+ export declare const HorizontalPadding: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, PaddingProps, never>;
6
+ export declare const VerticalPadding: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, PaddingProps, never>;
@@ -1,5 +1,5 @@
1
- import type { Callback } from 'typescript';
2
- import { OverrideStyles } from 'typescript';
1
+ import type { Callback, OverrideStyles } from 'typescript';
2
+ import { SizesTypes } from 'theme';
3
3
  export declare type RegularImageProps = {
4
4
  src: string;
5
5
  } & Partial<{
@@ -7,7 +7,7 @@ export declare type RegularImageProps = {
7
7
  width: number | string;
8
8
  height: number | string;
9
9
  onClick: Callback;
10
- cornerRadius: number;
10
+ cornerRadius: SizesTypes | number;
11
11
  }> & OverrideStyles;
12
12
  export declare const RegularImage: import("styled-components").StyledComponent<"img", import("styled-components").DefaultTheme, {
13
13
  src: string;
@@ -16,7 +16,7 @@ export declare const RegularImage: import("styled-components").StyledComponent<"
16
16
  width: number | string;
17
17
  height: number | string;
18
18
  onClick: Callback;
19
- cornerRadius: number;
19
+ cornerRadius: SizesTypes | number;
20
20
  }> & OverrideStyles, never>;
21
21
  export declare const BackgroundImage: import("styled-components").StyledComponent<"img", import("styled-components").DefaultTheme, {
22
22
  src: string;
@@ -25,5 +25,5 @@ export declare const BackgroundImage: import("styled-components").StyledComponen
25
25
  width: number | string;
26
26
  height: number | string;
27
27
  onClick: Callback;
28
- cornerRadius: number;
28
+ cornerRadius: SizesTypes | number;
29
29
  }> & OverrideStyles, never>;
@@ -9,7 +9,7 @@ declare const _default: {
9
9
  width: string | number;
10
10
  height: string | number;
11
11
  onClick: import("../../typescript").Callback;
12
- cornerRadius: number;
12
+ cornerRadius: number | import("../..").SizesTypes;
13
13
  }> & import("../../typescript").OverrideStyles, never>;
14
14
  };
15
15
  export default _default;
@@ -1,6 +1,6 @@
1
1
  import { ContainerComponentProps, ContainerProps } from 'containers';
2
2
  import { Dispatch, ReactNode, SetStateAction } from 'react';
3
- import { AnyObject } from 'typescript';
3
+ import type { AnyObject } from 'typescript';
4
4
  export declare const Container: ({ children, wide, compact, type, props, id, metadata, isMobile, }: Partial<{
5
5
  type: import("containers").ContainerType;
6
6
  containerTemplateType: "row_content_container";
@@ -8,49 +8,67 @@ export declare const Container: ({ children, wide, compact, type, props, id, met
8
8
  containerStyle: import("styled-components").CSSProperties;
9
9
  containerProps: Partial<{
10
10
  position: import("containers").ContainerPositionType;
11
+ alignItems: import("containers").ContainerAlignItemsType;
11
12
  scrollBehaviour: import("containers").ContainerScrollBehaviourType;
12
13
  cornerRadius: number | import("theme").SizesTypes;
13
14
  gap: import("theme").SizesTypes;
14
15
  styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
15
- sliderProps: import("containers").SliderProps;
16
+ paddingTop: import("theme").SizesTypes;
17
+ paddingBottom: import("theme").SizesTypes;
18
+ paddingLeft: import("theme").SizesTypes;
19
+ paddingRight: import("theme").SizesTypes;
20
+ autoplay: boolean;
21
+ autoplayDuration: number;
16
22
  formProps: import("containers").FormContainerProps;
17
23
  formStepProps: import("containers").FormStepContainerProps;
18
- padding: import("containers").Padding;
19
24
  border: string;
20
25
  activeChildrenIds: string[];
21
26
  activeOrganismIds: string[];
27
+ padding: import("containers").Padding;
22
28
  }>;
23
29
  }>;
24
30
  compact: Partial<{
25
31
  containerStyle: import("styled-components").CSSProperties;
26
32
  containerProps: Partial<{
27
33
  position: import("containers").ContainerPositionType;
34
+ alignItems: import("containers").ContainerAlignItemsType;
28
35
  scrollBehaviour: import("containers").ContainerScrollBehaviourType;
29
36
  cornerRadius: number | import("theme").SizesTypes;
30
37
  gap: import("theme").SizesTypes;
31
38
  styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
32
- sliderProps: import("containers").SliderProps;
39
+ paddingTop: import("theme").SizesTypes;
40
+ paddingBottom: import("theme").SizesTypes;
41
+ paddingLeft: import("theme").SizesTypes;
42
+ paddingRight: import("theme").SizesTypes;
43
+ autoplay: boolean;
44
+ autoplayDuration: number;
33
45
  formProps: import("containers").FormContainerProps;
34
46
  formStepProps: import("containers").FormStepContainerProps;
35
- padding: import("containers").Padding;
36
47
  border: string;
37
48
  activeChildrenIds: string[];
38
49
  activeOrganismIds: string[];
50
+ padding: import("containers").Padding;
39
51
  }>;
40
52
  }>;
41
53
  props: Partial<{
42
54
  position: import("containers").ContainerPositionType;
55
+ alignItems: import("containers").ContainerAlignItemsType;
43
56
  scrollBehaviour: import("containers").ContainerScrollBehaviourType;
44
57
  cornerRadius: number | import("theme").SizesTypes;
45
58
  gap: import("theme").SizesTypes;
46
59
  styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
47
- sliderProps: import("containers").SliderProps;
60
+ paddingTop: import("theme").SizesTypes;
61
+ paddingBottom: import("theme").SizesTypes;
62
+ paddingLeft: import("theme").SizesTypes;
63
+ paddingRight: import("theme").SizesTypes;
64
+ autoplay: boolean;
65
+ autoplayDuration: number;
48
66
  formProps: import("containers").FormContainerProps;
49
67
  formStepProps: import("containers").FormStepContainerProps;
50
- padding: import("containers").Padding;
51
68
  border: string;
52
69
  activeChildrenIds: string[];
53
70
  activeOrganismIds: string[];
71
+ padding: import("containers").Padding;
54
72
  }>;
55
73
  metadata: import("containers").MetadataType;
56
74
  isMobile: boolean;
@@ -14,6 +14,504 @@ export declare const headerContainer: ContainerComponentProps;
14
14
  export declare const headerContainerWithTabs: ContainerComponentProps;
15
15
  export declare const DataField: ContainerComponentProps;
16
16
  export declare const LogInPermanentPage: ContainerComponentProps;
17
+ export declare const accountCreationMock: {
18
+ instance: string;
19
+ type: string;
20
+ config: {
21
+ compact: {
22
+ containerProps: {};
23
+ containerStyle: {
24
+ padding: string;
25
+ };
26
+ };
27
+ wide: {
28
+ containerProps: {};
29
+ containerStyle: {
30
+ padding: string;
31
+ };
32
+ };
33
+ props: {
34
+ formProps: {
35
+ mode: string;
36
+ };
37
+ styles: {
38
+ display: string;
39
+ flexDirection: string;
40
+ gap: string;
41
+ padding: string;
42
+ };
43
+ };
44
+ };
45
+ metadata: {
46
+ display: {
47
+ type: string;
48
+ itemsPerStep: number;
49
+ };
50
+ validation: string;
51
+ };
52
+ items: {
53
+ instance: string;
54
+ config: {
55
+ compact: {
56
+ containerProps: {};
57
+ containerStyle: {
58
+ display: string;
59
+ gap: string;
60
+ width: string;
61
+ flexDirection: string;
62
+ alignItems: string;
63
+ };
64
+ };
65
+ wide: {
66
+ containerProps: {};
67
+ containerStyle: {
68
+ display: string;
69
+ gap: string;
70
+ width: string;
71
+ flexDirection: string;
72
+ alignItems: string;
73
+ };
74
+ };
75
+ props: {
76
+ formStepProps: {
77
+ formStepName: string;
78
+ order: number;
79
+ conditionConfig: null;
80
+ formStepStyles: {
81
+ alignItems: string;
82
+ };
83
+ };
84
+ };
85
+ };
86
+ type: string;
87
+ metadata: {
88
+ validation: string;
89
+ hasOwnButton: boolean;
90
+ };
91
+ items: {
92
+ type: string;
93
+ config: {
94
+ wide: {
95
+ containerProps: {};
96
+ containerStyle: {
97
+ display: string;
98
+ gap: string;
99
+ width: string;
100
+ flexDirection: string;
101
+ maxWidth: string;
102
+ };
103
+ };
104
+ compact: {
105
+ containerProps: {};
106
+ containerStyle: {
107
+ display: string;
108
+ gap: string;
109
+ width: string;
110
+ flexDirection: string;
111
+ maxWidth: string;
112
+ };
113
+ };
114
+ };
115
+ metadata: {
116
+ group: string[];
117
+ };
118
+ instance: string;
119
+ items: ({
120
+ instance: string;
121
+ type: string;
122
+ attributes: {
123
+ image: {
124
+ attributeType: string;
125
+ imageSource: string;
126
+ id: string;
127
+ };
128
+ altText: {
129
+ attributeType: string;
130
+ text: string;
131
+ id: string;
132
+ };
133
+ link: {
134
+ attributeType: string;
135
+ id: string;
136
+ };
137
+ text?: undefined;
138
+ seoStyle?: undefined;
139
+ fontVariant?: undefined;
140
+ color?: undefined;
141
+ label?: undefined;
142
+ required?: undefined;
143
+ dataModelField?: undefined;
144
+ conditionConfig?: undefined;
145
+ passwordFieldLabel?: undefined;
146
+ reenteredPasswordFieldLabel?: undefined;
147
+ passwordFieldRequired?: undefined;
148
+ reenteredPasswordFieldRequired?: undefined;
149
+ title?: undefined;
150
+ actionTypes?: undefined;
151
+ action?: undefined;
152
+ };
153
+ config: {
154
+ props: {
155
+ width: string;
156
+ height: string;
157
+ behaveAs: string;
158
+ isRichText?: undefined;
159
+ inputProps?: undefined;
160
+ labelsProps?: undefined;
161
+ validationLabel?: undefined;
162
+ passwordInputProps?: undefined;
163
+ reenteredPasswordInputProps?: undefined;
164
+ fullWidth?: undefined;
165
+ };
166
+ };
167
+ organismLibraryMoleculeId: string;
168
+ moleculeLibraryId: string;
169
+ metadata: {
170
+ group: string[];
171
+ notEditable?: undefined;
172
+ };
173
+ id: string;
174
+ } | {
175
+ instance: string;
176
+ type: string;
177
+ attributes: {
178
+ text: {
179
+ attributeType: string;
180
+ isRichText: boolean;
181
+ required: boolean;
182
+ showRichTextToolbar: boolean;
183
+ text: string;
184
+ id: string;
185
+ };
186
+ seoStyle: {
187
+ attributeType: string;
188
+ options: {
189
+ id: string;
190
+ label: string;
191
+ value: string;
192
+ }[];
193
+ value: string;
194
+ id: string;
195
+ };
196
+ fontVariant: {
197
+ attributeType: string;
198
+ options: {
199
+ id: string;
200
+ label: string;
201
+ value: string;
202
+ }[];
203
+ value: string;
204
+ id: string;
205
+ };
206
+ color: {
207
+ attributeType: string;
208
+ color: string;
209
+ id: string;
210
+ };
211
+ image?: undefined;
212
+ altText?: undefined;
213
+ link?: undefined;
214
+ label?: undefined;
215
+ required?: undefined;
216
+ dataModelField?: undefined;
217
+ conditionConfig?: undefined;
218
+ passwordFieldLabel?: undefined;
219
+ reenteredPasswordFieldLabel?: undefined;
220
+ passwordFieldRequired?: undefined;
221
+ reenteredPasswordFieldRequired?: undefined;
222
+ title?: undefined;
223
+ actionTypes?: undefined;
224
+ action?: undefined;
225
+ };
226
+ config: {
227
+ props: {
228
+ isRichText: boolean;
229
+ width?: undefined;
230
+ height?: undefined;
231
+ behaveAs?: undefined;
232
+ inputProps?: undefined;
233
+ labelsProps?: undefined;
234
+ validationLabel?: undefined;
235
+ passwordInputProps?: undefined;
236
+ reenteredPasswordInputProps?: undefined;
237
+ fullWidth?: undefined;
238
+ };
239
+ };
240
+ organismLibraryMoleculeId: string;
241
+ moleculeLibraryId: string;
242
+ metadata: {
243
+ group: string[];
244
+ notEditable?: undefined;
245
+ };
246
+ id: string;
247
+ } | {
248
+ instance: string;
249
+ type: string;
250
+ metadata: {
251
+ group: string[];
252
+ notEditable: boolean;
253
+ };
254
+ config: {
255
+ props: {
256
+ inputProps: {
257
+ placeholder: string;
258
+ };
259
+ labelsProps: {
260
+ ruleLabel: null;
261
+ };
262
+ width?: undefined;
263
+ height?: undefined;
264
+ behaveAs?: undefined;
265
+ isRichText?: undefined;
266
+ validationLabel?: undefined;
267
+ passwordInputProps?: undefined;
268
+ reenteredPasswordInputProps?: undefined;
269
+ fullWidth?: undefined;
270
+ };
271
+ };
272
+ attributes: {
273
+ label: {
274
+ required: boolean;
275
+ isRichText: boolean;
276
+ attributeType: string;
277
+ showRichTextToolbar: boolean;
278
+ text: string;
279
+ id: string;
280
+ };
281
+ required: {
282
+ attributeType: string;
283
+ value: boolean;
284
+ id: string;
285
+ };
286
+ dataModelField: {
287
+ required: boolean;
288
+ attributeType: string;
289
+ dataModelField: {
290
+ dataModelFieldId: string;
291
+ entitySubtypeId: string;
292
+ dataFieldName: string;
293
+ entitySubtypeName: string;
294
+ defaultValue: null;
295
+ format: {
296
+ id: string;
297
+ label: string;
298
+ value: string;
299
+ code: string;
300
+ config: {
301
+ dataModelFieldType: string;
302
+ };
303
+ };
304
+ };
305
+ id: string;
306
+ };
307
+ conditionConfig: {
308
+ attributeType: string;
309
+ conditionConfig: {
310
+ criteriaList: never[];
311
+ segmentationType: string;
312
+ };
313
+ id: string;
314
+ };
315
+ image?: undefined;
316
+ altText?: undefined;
317
+ link?: undefined;
318
+ text?: undefined;
319
+ seoStyle?: undefined;
320
+ fontVariant?: undefined;
321
+ color?: undefined;
322
+ passwordFieldLabel?: undefined;
323
+ reenteredPasswordFieldLabel?: undefined;
324
+ passwordFieldRequired?: undefined;
325
+ reenteredPasswordFieldRequired?: undefined;
326
+ title?: undefined;
327
+ actionTypes?: undefined;
328
+ action?: undefined;
329
+ };
330
+ organismLibraryMoleculeId: string;
331
+ moleculeLibraryId: string;
332
+ id: string;
333
+ } | {
334
+ instance: string;
335
+ type: string;
336
+ metadata: {
337
+ group: string[];
338
+ notEditable: boolean;
339
+ };
340
+ config: {
341
+ props: {
342
+ validationLabel: string;
343
+ passwordInputProps: {
344
+ inputProps: {
345
+ type: string;
346
+ placeholder: string;
347
+ };
348
+ };
349
+ reenteredPasswordInputProps: {
350
+ inputProps: {
351
+ type: string;
352
+ placeholder: string;
353
+ };
354
+ };
355
+ width?: undefined;
356
+ height?: undefined;
357
+ behaveAs?: undefined;
358
+ isRichText?: undefined;
359
+ inputProps?: undefined;
360
+ labelsProps?: undefined;
361
+ fullWidth?: undefined;
362
+ };
363
+ };
364
+ attributes: {
365
+ passwordFieldLabel: {
366
+ attributeType: string;
367
+ isRichText: boolean;
368
+ required: boolean;
369
+ showRichTextToolbar: boolean;
370
+ text: string;
371
+ id: string;
372
+ };
373
+ reenteredPasswordFieldLabel: {
374
+ attributeType: string;
375
+ isRichText: boolean;
376
+ required: boolean;
377
+ showRichTextToolbar: boolean;
378
+ text: string;
379
+ id: string;
380
+ };
381
+ passwordFieldRequired: {
382
+ attributeType: string;
383
+ id: string;
384
+ };
385
+ reenteredPasswordFieldRequired: {
386
+ attributeType: string;
387
+ id: string;
388
+ };
389
+ dataModelField: {
390
+ attributeType: string;
391
+ required: boolean;
392
+ dataModelField: {
393
+ dataModelFieldId: string;
394
+ entitySubtypeId: string;
395
+ dataFieldName: string;
396
+ entitySubtypeName: string;
397
+ defaultValue: null;
398
+ format: {
399
+ id: string;
400
+ label: string;
401
+ value: string;
402
+ code: string;
403
+ config: {
404
+ dataModelFieldType: string;
405
+ };
406
+ };
407
+ };
408
+ id: string;
409
+ };
410
+ required: {
411
+ attributeType: string;
412
+ value: boolean;
413
+ id: string;
414
+ };
415
+ image?: undefined;
416
+ altText?: undefined;
417
+ link?: undefined;
418
+ text?: undefined;
419
+ seoStyle?: undefined;
420
+ fontVariant?: undefined;
421
+ color?: undefined;
422
+ label?: undefined;
423
+ conditionConfig?: undefined;
424
+ title?: undefined;
425
+ actionTypes?: undefined;
426
+ action?: undefined;
427
+ };
428
+ organismLibraryMoleculeId: string;
429
+ moleculeLibraryId: string;
430
+ id: string;
431
+ } | {
432
+ instance: string;
433
+ type: string;
434
+ attributes: {
435
+ title: {
436
+ attributeType: string;
437
+ isRichText: boolean;
438
+ required: boolean;
439
+ showRichTextToolbar: boolean;
440
+ text: string;
441
+ id: string;
442
+ };
443
+ actionTypes: {
444
+ attributeType: string;
445
+ required: boolean;
446
+ options: {
447
+ id: string;
448
+ label: string;
449
+ value: string;
450
+ }[];
451
+ value: string;
452
+ id: string;
453
+ };
454
+ action: {
455
+ attributeType: string;
456
+ action: {
457
+ type: string;
458
+ submit: {};
459
+ };
460
+ id: string;
461
+ };
462
+ image?: undefined;
463
+ altText?: undefined;
464
+ link?: undefined;
465
+ text?: undefined;
466
+ seoStyle?: undefined;
467
+ fontVariant?: undefined;
468
+ color?: undefined;
469
+ label?: undefined;
470
+ required?: undefined;
471
+ dataModelField?: undefined;
472
+ conditionConfig?: undefined;
473
+ passwordFieldLabel?: undefined;
474
+ reenteredPasswordFieldLabel?: undefined;
475
+ passwordFieldRequired?: undefined;
476
+ reenteredPasswordFieldRequired?: undefined;
477
+ };
478
+ metadata: {
479
+ group: string[];
480
+ notEditable: boolean;
481
+ };
482
+ config: {
483
+ props: {
484
+ fullWidth: boolean;
485
+ width?: undefined;
486
+ height?: undefined;
487
+ behaveAs?: undefined;
488
+ isRichText?: undefined;
489
+ inputProps?: undefined;
490
+ labelsProps?: undefined;
491
+ validationLabel?: undefined;
492
+ passwordInputProps?: undefined;
493
+ reenteredPasswordInputProps?: undefined;
494
+ };
495
+ };
496
+ organismLibraryMoleculeId: string;
497
+ moleculeLibraryId: string;
498
+ id: string;
499
+ })[];
500
+ organismLibraryContainerId: string;
501
+ containerLibraryId: string;
502
+ attributes: {};
503
+ id: string;
504
+ }[];
505
+ organismLibraryContainerId: string;
506
+ containerLibraryId: string;
507
+ attributes: {};
508
+ id: string;
509
+ }[];
510
+ organismLibraryContainerId: string;
511
+ containerLibraryId: string;
512
+ attributes: {};
513
+ id: string;
514
+ };
17
515
  export declare const stateObjectButton: ContainerComponentProps;
18
516
  export declare const stateObjectLink: ContainerComponentProps;
19
517
  export declare const popUP: {
@@ -4,17 +4,23 @@ import { AnyObject } from '../typescript';
4
4
  export declare const ContainerWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, Pick<ContainerProps, "type"> & {
5
5
  containerProps?: Partial<{
6
6
  position: import("containers/types/types").ContainerPositionType;
7
+ alignItems: import("containers/types/types").ContainerAlignItemsType;
7
8
  scrollBehaviour: import("containers/types/types").ContainerScrollBehaviourType;
8
9
  cornerRadius: number | SizesTypes;
9
10
  gap: SizesTypes;
10
11
  styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
11
- sliderProps: import("containers/types/types").SliderProps;
12
+ paddingTop: SizesTypes;
13
+ paddingBottom: SizesTypes;
14
+ paddingLeft: SizesTypes;
15
+ paddingRight: SizesTypes;
16
+ autoplay: boolean;
17
+ autoplayDuration: number;
12
18
  formProps: import("containers/types/types").FormContainerProps;
13
19
  formStepProps: import("containers/types/types").FormStepContainerProps;
14
- padding: import("containers/types/types").Padding;
15
20
  border: string;
16
21
  activeChildrenIds: string[];
17
22
  activeOrganismIds: string[];
23
+ padding: import("containers/types/types").Padding;
18
24
  }> | undefined;
19
25
  metadata?: AnyObject | undefined;
20
26
  }, never>;