@sc-360-v2/storefront-cms-library 0.4.29 → 0.4.31

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.
Files changed (33) hide show
  1. package/dist/add-products-tab.scss +2 -1
  2. package/dist/allocationDetails.scss +1 -1
  3. package/dist/allocations.scss +1 -1
  4. package/dist/builder.js +1 -1
  5. package/dist/bulk-order-pad.scss +30 -11
  6. package/dist/bundle copy.scss +2805 -0
  7. package/dist/bundle.scss +2156 -1625
  8. package/dist/button.scss +69 -0
  9. package/dist/buyForHeaders.scss +24 -10
  10. package/dist/buyForPopup.scss +19 -5
  11. package/dist/default-dropdown.scss +15 -1
  12. package/dist/dropdownTemplate.scss +36 -2
  13. package/dist/emtpy-templates.scss +29 -0
  14. package/dist/image-for-product.scss +1 -1
  15. package/dist/language-selector.scss +25 -1
  16. package/dist/multi-select-dropdown.scss +43 -14
  17. package/dist/option-bar.scss +1 -1
  18. package/dist/order-status.scss +1 -1
  19. package/dist/product-actions.scss +1 -1
  20. package/dist/product-image.scss +61 -3
  21. package/dist/quantity-selector.scss +2 -2
  22. package/dist/quick-order-pad.scss +54 -46
  23. package/dist/repeater.scss +1 -1
  24. package/dist/shipping-payments.scss +5 -4
  25. package/dist/types/builder/enums/data-connectors.d.ts +0 -1
  26. package/dist/types/builder/tools/element-edit/bundle.d.ts +951 -88
  27. package/dist/types/builder/tools/element-edit/bundleDetails.d.ts +868 -84
  28. package/dist/types/builder/tools/element-edit/button.d.ts +2 -1
  29. package/dist/types/builder/tools/element-edit/imageInstance.d.ts +33 -0
  30. package/dist/types/builder/tools/element-edit/product-image.d.ts +1 -0
  31. package/dist/types/website/constants/data-connectors.d.ts +0 -4
  32. package/dist/website.js +1 -1
  33. package/package.json +1 -1
@@ -1,5 +1,6 @@
1
1
  import { CMSElementEditTypes } from "../../enums";
2
2
  import { CMSIBCommonInterface } from "../../interfaces/global";
3
+ import { ButtonSelectorKeysEnum } from "./button";
3
4
  import { CMSElementEditPopupInterface } from "./common";
4
5
  export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
5
6
  }
@@ -21,10 +22,25 @@ export declare enum SelectorKeysEnum {
21
22
  TILE_CARD_IMAGE_DESIGN = "tileCardImageDesign",
22
23
  LIST_VIEW_CARD_DESIGN = "listViewCardDesign",
23
24
  BUNDLE_TAG_DESIGN = "bundleTagDesign",
25
+ DIVIDER = "divider",
24
26
  DEFAULT_STATE = "defaultState"
25
27
  }
26
28
  export declare const getDefaultData: () => {
27
29
  layout: {
30
+ onHover: {
31
+ value: string;
32
+ propertyType: CMSElementEditTypes;
33
+ };
34
+ fitOptions: {
35
+ value: string;
36
+ propert: string;
37
+ propertyType: CMSElementEditTypes;
38
+ };
39
+ objectPosition: {
40
+ value: string;
41
+ propert: string;
42
+ propertyType: CMSElementEditTypes;
43
+ };
28
44
  selectorKey: SelectorKeysEnum;
29
45
  width: {
30
46
  value: string;
@@ -40,6 +56,11 @@ export declare const getDefaultData: () => {
40
56
  };
41
57
  margin: import("../../interfaces/global").CSSPaddingValues | undefined;
42
58
  padding: any;
59
+ overflowItems: {
60
+ value: string;
61
+ property: string;
62
+ propertyType: CMSElementEditTypes;
63
+ };
43
64
  overflowContent: CMSIBCommonInterface | undefined;
44
65
  scrollDirection: CMSIBCommonInterface | undefined;
45
66
  displayScrollbar: CMSIBCommonInterface | undefined;
@@ -55,15 +76,6 @@ export declare const getDefaultData: () => {
55
76
  property: string;
56
77
  propertyType: CMSElementEditTypes;
57
78
  };
58
- displayStyle: {
59
- value: string;
60
- propertyType: CMSElementEditTypes;
61
- };
62
- itemsPerSlide: {
63
- value: number;
64
- property: string;
65
- propertyType: CMSElementEditTypes;
66
- };
67
79
  scrollType: {
68
80
  value: string;
69
81
  property: string;
@@ -74,6 +86,11 @@ export declare const getDefaultData: () => {
74
86
  property: string;
75
87
  propertyType: CMSElementEditTypes;
76
88
  };
89
+ overflowSlides: {
90
+ value: string;
91
+ property: string;
92
+ propertyType: CMSElementEditTypes;
93
+ };
77
94
  allowAutoScroll: {
78
95
  value: boolean;
79
96
  property: string;
@@ -89,6 +106,16 @@ export declare const getDefaultData: () => {
89
106
  property: string;
90
107
  propertyType: CMSElementEditTypes;
91
108
  };
109
+ itemsPerSlide: {
110
+ value: number;
111
+ property: string;
112
+ propertyType: CMSElementEditTypes;
113
+ };
114
+ itemsPerRow: {
115
+ value: number;
116
+ property: string;
117
+ propertyType: CMSElementEditTypes;
118
+ };
92
119
  containerHeight: {
93
120
  value: number;
94
121
  property: string;
@@ -141,28 +168,17 @@ export declare const getDefaultData: () => {
141
168
  unit: number;
142
169
  propertyType: CMSElementEditTypes;
143
170
  };
144
- showDivider: {
145
- value: boolean;
171
+ imageHeight: {
146
172
  property: string;
147
- propertyType: CMSElementEditTypes;
173
+ value: string;
174
+ unit: number;
175
+ propertyType?: any;
176
+ isReadOnly?: boolean | undefined;
177
+ parentRef?: string | undefined;
148
178
  };
149
179
  };
150
180
  design: {
151
181
  selectorKey: SelectorKeysEnum;
152
- widgetStyle: {
153
- selectorKey: SelectorKeysEnum;
154
- backgroundColor: CMSIBCommonInterface;
155
- borderColor: CMSIBCommonInterface;
156
- borderStyle: CMSIBCommonInterface;
157
- borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
158
- showBorder: CMSIBCommonInterface;
159
- showShadow: CMSIBCommonInterface;
160
- shadowColor: CMSIBCommonInterface;
161
- blur: import("../../interfaces/global").CMSIBSizeInterface;
162
- spread: import("../../interfaces/global").CMSIBSizeInterface;
163
- angle: import("../../interfaces/global").CMSIBSizeInterface;
164
- borderRadius: import("../../interfaces/global").CSSPaddingValues;
165
- };
166
182
  headingDesign: {
167
183
  borderColor: CMSIBCommonInterface;
168
184
  borderStyle: CMSIBCommonInterface;
@@ -273,72 +289,896 @@ export declare const getDefaultData: () => {
273
289
  selectorKey: SelectorKeysEnum;
274
290
  };
275
291
  bundleNavigationButtonDesign: {
276
- icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
277
- showIcon: CMSIBCommonInterface | undefined;
278
- iconSize: import("../../interfaces/global").CMSIBSizeInterface;
279
- iconColor: CMSIBCommonInterface;
280
- borderColor: CMSIBCommonInterface;
281
- borderStyle: CMSIBCommonInterface;
282
- borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
283
- showBorder: CMSIBCommonInterface;
284
- backgroundColor: CMSIBCommonInterface;
285
- showShadow: CMSIBCommonInterface;
286
- shadowColor: CMSIBCommonInterface;
287
- blur: import("../../interfaces/global").CMSIBSizeInterface;
288
- spread: import("../../interfaces/global").CMSIBSizeInterface;
289
- angle: import("../../interfaces/global").CMSIBSizeInterface;
290
- borderRadius: import("../../interfaces/global").CSSPaddingValues;
291
- exposure: import("../../interfaces/global").CMSIBSizeInterface;
292
- contrast: import("../../interfaces/global").CMSIBSizeInterface;
293
- saturation: import("../../interfaces/global").CMSIBSizeInterface;
294
- highlights: import("../../interfaces/global").CMSIBSizeInterface;
295
- shadows: import("../../interfaces/global").CMSIBSizeInterface;
296
- theme: CMSIBCommonInterface;
297
- font: CMSIBCommonInterface;
298
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
299
- textColor: CMSIBCommonInterface;
300
- bold: CMSIBCommonInterface;
301
- italic: CMSIBCommonInterface;
302
- linethrough: CMSIBCommonInterface;
303
- underline: CMSIBCommonInterface;
304
- textAlign: CMSIBCommonInterface;
305
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
306
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
307
292
  selectorKey: SelectorKeysEnum;
293
+ defaultState: {
294
+ backgroundColor: {
295
+ parentRef: string;
296
+ value?: any;
297
+ property?: any;
298
+ propertyType?: any;
299
+ isReadOnly?: boolean | undefined;
300
+ };
301
+ borderColor: {
302
+ parentRef: string;
303
+ value?: any;
304
+ property?: any;
305
+ propertyType?: any;
306
+ isReadOnly?: boolean | undefined;
307
+ };
308
+ borderStyle: {
309
+ parentRef: string;
310
+ value?: any;
311
+ property?: any;
312
+ propertyType?: any;
313
+ isReadOnly?: boolean | undefined;
314
+ };
315
+ borderPerSlide: {
316
+ parentRef: string;
317
+ isAll: boolean;
318
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
319
+ property: string;
320
+ iscss?: boolean | undefined;
321
+ propertyType?: any;
322
+ };
323
+ showBorder: {
324
+ value: boolean;
325
+ parentRef: string;
326
+ property?: any;
327
+ propertyType?: any;
328
+ isReadOnly?: boolean | undefined;
329
+ };
330
+ showShadow: {
331
+ parentRef: string;
332
+ value?: any;
333
+ property?: any;
334
+ propertyType?: any;
335
+ isReadOnly?: boolean | undefined;
336
+ };
337
+ shadowColor: {
338
+ parentRef: string;
339
+ value?: any;
340
+ property?: any;
341
+ propertyType?: any;
342
+ isReadOnly?: boolean | undefined;
343
+ };
344
+ blur: {
345
+ parentRef: string;
346
+ unit?: string | number | undefined;
347
+ value?: any;
348
+ property?: any;
349
+ propertyType?: any;
350
+ isReadOnly?: boolean | undefined;
351
+ };
352
+ spread: {
353
+ parentRef: string;
354
+ unit?: string | number | undefined;
355
+ value?: any;
356
+ property?: any;
357
+ propertyType?: any;
358
+ isReadOnly?: boolean | undefined;
359
+ };
360
+ angle: {
361
+ parentRef: string;
362
+ unit?: string | number | undefined;
363
+ value?: any;
364
+ property?: any;
365
+ propertyType?: any;
366
+ isReadOnly?: boolean | undefined;
367
+ };
368
+ borderRadius: {
369
+ parentRef: string;
370
+ isAll: boolean;
371
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
372
+ property: string;
373
+ iscss?: boolean | undefined;
374
+ propertyType?: any;
375
+ };
376
+ font: {
377
+ parentRef: string;
378
+ value?: any;
379
+ property?: any;
380
+ propertyType?: any;
381
+ isReadOnly?: boolean | undefined;
382
+ };
383
+ fontSize: {
384
+ parentRef: string;
385
+ unit?: string | number | undefined;
386
+ value?: any;
387
+ property?: any;
388
+ propertyType?: any;
389
+ isReadOnly?: boolean | undefined;
390
+ };
391
+ textColor: {
392
+ parentRef: string;
393
+ value?: any;
394
+ property?: any;
395
+ propertyType?: any;
396
+ isReadOnly?: boolean | undefined;
397
+ };
398
+ bold: {
399
+ value: string;
400
+ parentRef: string;
401
+ property?: any;
402
+ propertyType?: any;
403
+ isReadOnly?: boolean | undefined;
404
+ };
405
+ italic: {
406
+ parentRef: string;
407
+ value?: any;
408
+ property?: any;
409
+ propertyType?: any;
410
+ isReadOnly?: boolean | undefined;
411
+ };
412
+ linethrough: {
413
+ parentRef: string;
414
+ value?: any;
415
+ property?: any;
416
+ propertyType?: any;
417
+ isReadOnly?: boolean | undefined;
418
+ };
419
+ underline: {
420
+ parentRef: string;
421
+ value?: any;
422
+ property?: any;
423
+ propertyType?: any;
424
+ isReadOnly?: boolean | undefined;
425
+ };
426
+ textAlign: {
427
+ parentRef: string;
428
+ value?: any;
429
+ property?: any;
430
+ propertyType?: any;
431
+ isReadOnly?: boolean | undefined;
432
+ };
433
+ characterSpacing: {
434
+ parentRef: string;
435
+ unit?: string | number | undefined;
436
+ value?: any;
437
+ property?: any;
438
+ propertyType?: any;
439
+ isReadOnly?: boolean | undefined;
440
+ };
441
+ lineHeight: {
442
+ parentRef: string;
443
+ unit?: string | number | undefined;
444
+ value?: any;
445
+ property?: any;
446
+ propertyType?: any;
447
+ isReadOnly?: boolean | undefined;
448
+ };
449
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
450
+ showIcon: {
451
+ parentRef: string;
452
+ value?: any;
453
+ property?: any;
454
+ propertyType?: any;
455
+ isReadOnly?: boolean | undefined;
456
+ };
457
+ iconSize: {
458
+ parentRef: string;
459
+ unit?: string | number | undefined;
460
+ value?: any;
461
+ property?: any;
462
+ propertyType?: any;
463
+ isReadOnly?: boolean | undefined;
464
+ };
465
+ iconColor: {
466
+ parentRef: string;
467
+ value?: any;
468
+ property?: any;
469
+ propertyType?: any;
470
+ isReadOnly?: boolean | undefined;
471
+ };
472
+ buttonStyle: {
473
+ parentRef: string;
474
+ propertyType: CMSElementEditTypes;
475
+ };
476
+ buttonText: {
477
+ value: string;
478
+ property: string;
479
+ propertyType: CMSElementEditTypes;
480
+ };
481
+ iconPadding: {
482
+ value: number;
483
+ property: string;
484
+ parentRef: string;
485
+ propertyType: CMSElementEditTypes;
486
+ };
487
+ iconPosition: {
488
+ parentRef: string;
489
+ propertyType: CMSElementEditTypes;
490
+ };
491
+ iconAndTextSpacing: {
492
+ property: string;
493
+ unit: number;
494
+ parentRef: string;
495
+ propertyType: CMSElementEditTypes;
496
+ };
497
+ alignment: {
498
+ property: string;
499
+ parentRef: string;
500
+ propertyType: CMSElementEditTypes;
501
+ };
502
+ buttonType: {
503
+ value: string;
504
+ propertyType: CMSElementEditTypes;
505
+ };
506
+ width: {
507
+ value: string;
508
+ unit: number;
509
+ };
510
+ padding: any;
511
+ selectorKey: ButtonSelectorKeysEnum;
512
+ };
513
+ hoverState: {
514
+ backgroundColor: {
515
+ parentRef: string;
516
+ value?: any;
517
+ property?: any;
518
+ propertyType?: any;
519
+ isReadOnly?: boolean | undefined;
520
+ };
521
+ borderColor: {
522
+ parentRef: string;
523
+ value?: any;
524
+ property?: any;
525
+ propertyType?: any;
526
+ isReadOnly?: boolean | undefined;
527
+ };
528
+ borderStyle: {
529
+ parentRef: string;
530
+ value?: any;
531
+ property?: any;
532
+ propertyType?: any;
533
+ isReadOnly?: boolean | undefined;
534
+ };
535
+ borderPerSlide: {
536
+ parentRef: string;
537
+ isAll: boolean;
538
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
539
+ property: string;
540
+ iscss?: boolean | undefined;
541
+ propertyType?: any;
542
+ };
543
+ showBorder: {
544
+ value: boolean;
545
+ parentRef: string;
546
+ property?: any;
547
+ propertyType?: any;
548
+ isReadOnly?: boolean | undefined;
549
+ };
550
+ showShadow: {
551
+ parentRef: string;
552
+ value?: any;
553
+ property?: any;
554
+ propertyType?: any;
555
+ isReadOnly?: boolean | undefined;
556
+ };
557
+ shadowColor: {
558
+ parentRef: string;
559
+ value?: any;
560
+ property?: any;
561
+ propertyType?: any;
562
+ isReadOnly?: boolean | undefined;
563
+ };
564
+ blur: {
565
+ parentRef: string;
566
+ unit?: string | number | undefined;
567
+ value?: any;
568
+ property?: any;
569
+ propertyType?: any;
570
+ isReadOnly?: boolean | undefined;
571
+ };
572
+ spread: {
573
+ parentRef: string;
574
+ unit?: string | number | undefined;
575
+ value?: any;
576
+ property?: any;
577
+ propertyType?: any;
578
+ isReadOnly?: boolean | undefined;
579
+ };
580
+ angle: {
581
+ parentRef: string;
582
+ unit?: string | number | undefined;
583
+ value?: any;
584
+ property?: any;
585
+ propertyType?: any;
586
+ isReadOnly?: boolean | undefined;
587
+ };
588
+ borderRadius: {
589
+ parentRef: string;
590
+ isAll: boolean;
591
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
592
+ property: string;
593
+ iscss?: boolean | undefined;
594
+ propertyType?: any;
595
+ };
596
+ font: {
597
+ parentRef: string;
598
+ value?: any;
599
+ property?: any;
600
+ propertyType?: any;
601
+ isReadOnly?: boolean | undefined;
602
+ };
603
+ fontSize: {
604
+ parentRef: string;
605
+ unit?: string | number | undefined;
606
+ value?: any;
607
+ property?: any;
608
+ propertyType?: any;
609
+ isReadOnly?: boolean | undefined;
610
+ };
611
+ textColor: {
612
+ parentRef: string;
613
+ value?: any;
614
+ property?: any;
615
+ propertyType?: any;
616
+ isReadOnly?: boolean | undefined;
617
+ };
618
+ bold: {
619
+ value: string;
620
+ parentRef: string;
621
+ property?: any;
622
+ propertyType?: any;
623
+ isReadOnly?: boolean | undefined;
624
+ };
625
+ italic: {
626
+ parentRef: string;
627
+ value?: any;
628
+ property?: any;
629
+ propertyType?: any;
630
+ isReadOnly?: boolean | undefined;
631
+ };
632
+ linethrough: {
633
+ parentRef: string;
634
+ value?: any;
635
+ property?: any;
636
+ propertyType?: any;
637
+ isReadOnly?: boolean | undefined;
638
+ };
639
+ underline: {
640
+ parentRef: string;
641
+ value?: any;
642
+ property?: any;
643
+ propertyType?: any;
644
+ isReadOnly?: boolean | undefined;
645
+ };
646
+ textAlign: {
647
+ parentRef: string;
648
+ value?: any;
649
+ property?: any;
650
+ propertyType?: any;
651
+ isReadOnly?: boolean | undefined;
652
+ };
653
+ characterSpacing: {
654
+ parentRef: string;
655
+ unit?: string | number | undefined;
656
+ value?: any;
657
+ property?: any;
658
+ propertyType?: any;
659
+ isReadOnly?: boolean | undefined;
660
+ };
661
+ lineHeight: {
662
+ parentRef: string;
663
+ unit?: string | number | undefined;
664
+ value?: any;
665
+ property?: any;
666
+ propertyType?: any;
667
+ isReadOnly?: boolean | undefined;
668
+ };
669
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
670
+ showIcon: {
671
+ parentRef: string;
672
+ value?: any;
673
+ property?: any;
674
+ propertyType?: any;
675
+ isReadOnly?: boolean | undefined;
676
+ };
677
+ iconSize: {
678
+ parentRef: string;
679
+ unit?: string | number | undefined;
680
+ value?: any;
681
+ property?: any;
682
+ propertyType?: any;
683
+ isReadOnly?: boolean | undefined;
684
+ };
685
+ iconColor: {
686
+ parentRef: string;
687
+ value?: any;
688
+ property?: any;
689
+ propertyType?: any;
690
+ isReadOnly?: boolean | undefined;
691
+ };
692
+ buttonStyle: {
693
+ parentRef: string;
694
+ propertyType: CMSElementEditTypes;
695
+ };
696
+ buttonText: {
697
+ value: string;
698
+ property: string;
699
+ propertyType: CMSElementEditTypes;
700
+ };
701
+ iconPadding: {
702
+ value: number;
703
+ property: string;
704
+ parentRef: string;
705
+ propertyType: CMSElementEditTypes;
706
+ };
707
+ iconPosition: {
708
+ parentRef: string;
709
+ propertyType: CMSElementEditTypes;
710
+ };
711
+ iconAndTextSpacing: {
712
+ property: string;
713
+ unit: number;
714
+ parentRef: string;
715
+ propertyType: CMSElementEditTypes;
716
+ };
717
+ alignment: {
718
+ property: string;
719
+ parentRef: string;
720
+ propertyType: CMSElementEditTypes;
721
+ };
722
+ buttonType: {
723
+ value: string;
724
+ propertyType: CMSElementEditTypes;
725
+ };
726
+ width: {
727
+ value: string;
728
+ unit: number;
729
+ };
730
+ padding: any;
731
+ selectorKey: ButtonSelectorKeysEnum;
732
+ };
733
+ selectedState: {
734
+ selectorKey: ButtonSelectorKeysEnum;
735
+ };
308
736
  };
309
737
  bundleDetailsPageButtonDesign: {
310
- icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
311
- showIcon: CMSIBCommonInterface | undefined;
312
- iconSize: import("../../interfaces/global").CMSIBSizeInterface;
313
- iconColor: CMSIBCommonInterface;
314
- borderColor: CMSIBCommonInterface;
315
- borderStyle: CMSIBCommonInterface;
316
- borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
317
- showBorder: CMSIBCommonInterface;
318
- backgroundColor: CMSIBCommonInterface;
319
- showShadow: CMSIBCommonInterface;
320
- shadowColor: CMSIBCommonInterface;
321
- blur: import("../../interfaces/global").CMSIBSizeInterface;
322
- spread: import("../../interfaces/global").CMSIBSizeInterface;
323
- angle: import("../../interfaces/global").CMSIBSizeInterface;
324
- borderRadius: import("../../interfaces/global").CSSPaddingValues;
325
- exposure: import("../../interfaces/global").CMSIBSizeInterface;
326
- contrast: import("../../interfaces/global").CMSIBSizeInterface;
327
- saturation: import("../../interfaces/global").CMSIBSizeInterface;
328
- highlights: import("../../interfaces/global").CMSIBSizeInterface;
329
- shadows: import("../../interfaces/global").CMSIBSizeInterface;
330
- theme: CMSIBCommonInterface;
331
- font: CMSIBCommonInterface;
332
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
333
- textColor: CMSIBCommonInterface;
334
- bold: CMSIBCommonInterface;
335
- italic: CMSIBCommonInterface;
336
- linethrough: CMSIBCommonInterface;
337
- underline: CMSIBCommonInterface;
338
- textAlign: CMSIBCommonInterface;
339
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
340
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
341
738
  selectorKey: SelectorKeysEnum;
739
+ defaultState: {
740
+ backgroundColor: {
741
+ parentRef: string;
742
+ value?: any;
743
+ property?: any;
744
+ propertyType?: any;
745
+ isReadOnly?: boolean | undefined;
746
+ };
747
+ borderColor: {
748
+ parentRef: string;
749
+ value?: any;
750
+ property?: any;
751
+ propertyType?: any;
752
+ isReadOnly?: boolean | undefined;
753
+ };
754
+ borderStyle: {
755
+ parentRef: string;
756
+ value?: any;
757
+ property?: any;
758
+ propertyType?: any;
759
+ isReadOnly?: boolean | undefined;
760
+ };
761
+ borderPerSlide: {
762
+ parentRef: string;
763
+ isAll: boolean;
764
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
765
+ property: string;
766
+ iscss?: boolean | undefined;
767
+ propertyType?: any;
768
+ };
769
+ showBorder: {
770
+ value: boolean;
771
+ parentRef: string;
772
+ property?: any;
773
+ propertyType?: any;
774
+ isReadOnly?: boolean | undefined;
775
+ };
776
+ showShadow: {
777
+ parentRef: string;
778
+ value?: any;
779
+ property?: any;
780
+ propertyType?: any;
781
+ isReadOnly?: boolean | undefined;
782
+ };
783
+ shadowColor: {
784
+ parentRef: string;
785
+ value?: any;
786
+ property?: any;
787
+ propertyType?: any;
788
+ isReadOnly?: boolean | undefined;
789
+ };
790
+ blur: {
791
+ parentRef: string;
792
+ unit?: string | number | undefined;
793
+ value?: any;
794
+ property?: any;
795
+ propertyType?: any;
796
+ isReadOnly?: boolean | undefined;
797
+ };
798
+ spread: {
799
+ parentRef: string;
800
+ unit?: string | number | undefined;
801
+ value?: any;
802
+ property?: any;
803
+ propertyType?: any;
804
+ isReadOnly?: boolean | undefined;
805
+ };
806
+ angle: {
807
+ parentRef: string;
808
+ unit?: string | number | undefined;
809
+ value?: any;
810
+ property?: any;
811
+ propertyType?: any;
812
+ isReadOnly?: boolean | undefined;
813
+ };
814
+ borderRadius: {
815
+ parentRef: string;
816
+ isAll: boolean;
817
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
818
+ property: string;
819
+ iscss?: boolean | undefined;
820
+ propertyType?: any;
821
+ };
822
+ font: {
823
+ parentRef: string;
824
+ value?: any;
825
+ property?: any;
826
+ propertyType?: any;
827
+ isReadOnly?: boolean | undefined;
828
+ };
829
+ fontSize: {
830
+ parentRef: string;
831
+ unit?: string | number | undefined;
832
+ value?: any;
833
+ property?: any;
834
+ propertyType?: any;
835
+ isReadOnly?: boolean | undefined;
836
+ };
837
+ textColor: {
838
+ parentRef: string;
839
+ value?: any;
840
+ property?: any;
841
+ propertyType?: any;
842
+ isReadOnly?: boolean | undefined;
843
+ };
844
+ bold: {
845
+ value: string;
846
+ parentRef: string;
847
+ property?: any;
848
+ propertyType?: any;
849
+ isReadOnly?: boolean | undefined;
850
+ };
851
+ italic: {
852
+ parentRef: string;
853
+ value?: any;
854
+ property?: any;
855
+ propertyType?: any;
856
+ isReadOnly?: boolean | undefined;
857
+ };
858
+ linethrough: {
859
+ parentRef: string;
860
+ value?: any;
861
+ property?: any;
862
+ propertyType?: any;
863
+ isReadOnly?: boolean | undefined;
864
+ };
865
+ underline: {
866
+ parentRef: string;
867
+ value?: any;
868
+ property?: any;
869
+ propertyType?: any;
870
+ isReadOnly?: boolean | undefined;
871
+ };
872
+ textAlign: {
873
+ parentRef: string;
874
+ value?: any;
875
+ property?: any;
876
+ propertyType?: any;
877
+ isReadOnly?: boolean | undefined;
878
+ };
879
+ characterSpacing: {
880
+ parentRef: string;
881
+ unit?: string | number | undefined;
882
+ value?: any;
883
+ property?: any;
884
+ propertyType?: any;
885
+ isReadOnly?: boolean | undefined;
886
+ };
887
+ lineHeight: {
888
+ parentRef: string;
889
+ unit?: string | number | undefined;
890
+ value?: any;
891
+ property?: any;
892
+ propertyType?: any;
893
+ isReadOnly?: boolean | undefined;
894
+ };
895
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
896
+ showIcon: {
897
+ parentRef: string;
898
+ value?: any;
899
+ property?: any;
900
+ propertyType?: any;
901
+ isReadOnly?: boolean | undefined;
902
+ };
903
+ iconSize: {
904
+ parentRef: string;
905
+ unit?: string | number | undefined;
906
+ value?: any;
907
+ property?: any;
908
+ propertyType?: any;
909
+ isReadOnly?: boolean | undefined;
910
+ };
911
+ iconColor: {
912
+ parentRef: string;
913
+ value?: any;
914
+ property?: any;
915
+ propertyType?: any;
916
+ isReadOnly?: boolean | undefined;
917
+ };
918
+ buttonStyle: {
919
+ parentRef: string;
920
+ propertyType: CMSElementEditTypes;
921
+ };
922
+ buttonText: {
923
+ value: string;
924
+ property: string;
925
+ propertyType: CMSElementEditTypes;
926
+ };
927
+ iconPadding: {
928
+ value: number;
929
+ property: string;
930
+ parentRef: string;
931
+ propertyType: CMSElementEditTypes;
932
+ };
933
+ iconPosition: {
934
+ parentRef: string;
935
+ propertyType: CMSElementEditTypes;
936
+ };
937
+ iconAndTextSpacing: {
938
+ property: string;
939
+ unit: number;
940
+ parentRef: string;
941
+ propertyType: CMSElementEditTypes;
942
+ };
943
+ alignment: {
944
+ property: string;
945
+ parentRef: string;
946
+ propertyType: CMSElementEditTypes;
947
+ };
948
+ buttonType: {
949
+ value: string;
950
+ propertyType: CMSElementEditTypes;
951
+ };
952
+ width: {
953
+ value: string;
954
+ unit: number;
955
+ };
956
+ padding: any;
957
+ selectorKey: ButtonSelectorKeysEnum;
958
+ };
959
+ hoverState: {
960
+ backgroundColor: {
961
+ parentRef: string;
962
+ value?: any;
963
+ property?: any;
964
+ propertyType?: any;
965
+ isReadOnly?: boolean | undefined;
966
+ };
967
+ borderColor: {
968
+ parentRef: string;
969
+ value?: any;
970
+ property?: any;
971
+ propertyType?: any;
972
+ isReadOnly?: boolean | undefined;
973
+ };
974
+ borderStyle: {
975
+ parentRef: string;
976
+ value?: any;
977
+ property?: any;
978
+ propertyType?: any;
979
+ isReadOnly?: boolean | undefined;
980
+ };
981
+ borderPerSlide: {
982
+ parentRef: string;
983
+ isAll: boolean;
984
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
985
+ property: string;
986
+ iscss?: boolean | undefined;
987
+ propertyType?: any;
988
+ };
989
+ showBorder: {
990
+ value: boolean;
991
+ parentRef: string;
992
+ property?: any;
993
+ propertyType?: any;
994
+ isReadOnly?: boolean | undefined;
995
+ };
996
+ showShadow: {
997
+ parentRef: string;
998
+ value?: any;
999
+ property?: any;
1000
+ propertyType?: any;
1001
+ isReadOnly?: boolean | undefined;
1002
+ };
1003
+ shadowColor: {
1004
+ parentRef: string;
1005
+ value?: any;
1006
+ property?: any;
1007
+ propertyType?: any;
1008
+ isReadOnly?: boolean | undefined;
1009
+ };
1010
+ blur: {
1011
+ parentRef: string;
1012
+ unit?: string | number | undefined;
1013
+ value?: any;
1014
+ property?: any;
1015
+ propertyType?: any;
1016
+ isReadOnly?: boolean | undefined;
1017
+ };
1018
+ spread: {
1019
+ parentRef: string;
1020
+ unit?: string | number | undefined;
1021
+ value?: any;
1022
+ property?: any;
1023
+ propertyType?: any;
1024
+ isReadOnly?: boolean | undefined;
1025
+ };
1026
+ angle: {
1027
+ parentRef: string;
1028
+ unit?: string | number | undefined;
1029
+ value?: any;
1030
+ property?: any;
1031
+ propertyType?: any;
1032
+ isReadOnly?: boolean | undefined;
1033
+ };
1034
+ borderRadius: {
1035
+ parentRef: string;
1036
+ isAll: boolean;
1037
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
1038
+ property: string;
1039
+ iscss?: boolean | undefined;
1040
+ propertyType?: any;
1041
+ };
1042
+ font: {
1043
+ parentRef: string;
1044
+ value?: any;
1045
+ property?: any;
1046
+ propertyType?: any;
1047
+ isReadOnly?: boolean | undefined;
1048
+ };
1049
+ fontSize: {
1050
+ parentRef: string;
1051
+ unit?: string | number | undefined;
1052
+ value?: any;
1053
+ property?: any;
1054
+ propertyType?: any;
1055
+ isReadOnly?: boolean | undefined;
1056
+ };
1057
+ textColor: {
1058
+ parentRef: string;
1059
+ value?: any;
1060
+ property?: any;
1061
+ propertyType?: any;
1062
+ isReadOnly?: boolean | undefined;
1063
+ };
1064
+ bold: {
1065
+ value: string;
1066
+ parentRef: string;
1067
+ property?: any;
1068
+ propertyType?: any;
1069
+ isReadOnly?: boolean | undefined;
1070
+ };
1071
+ italic: {
1072
+ parentRef: string;
1073
+ value?: any;
1074
+ property?: any;
1075
+ propertyType?: any;
1076
+ isReadOnly?: boolean | undefined;
1077
+ };
1078
+ linethrough: {
1079
+ parentRef: string;
1080
+ value?: any;
1081
+ property?: any;
1082
+ propertyType?: any;
1083
+ isReadOnly?: boolean | undefined;
1084
+ };
1085
+ underline: {
1086
+ parentRef: string;
1087
+ value?: any;
1088
+ property?: any;
1089
+ propertyType?: any;
1090
+ isReadOnly?: boolean | undefined;
1091
+ };
1092
+ textAlign: {
1093
+ parentRef: string;
1094
+ value?: any;
1095
+ property?: any;
1096
+ propertyType?: any;
1097
+ isReadOnly?: boolean | undefined;
1098
+ };
1099
+ characterSpacing: {
1100
+ parentRef: string;
1101
+ unit?: string | number | undefined;
1102
+ value?: any;
1103
+ property?: any;
1104
+ propertyType?: any;
1105
+ isReadOnly?: boolean | undefined;
1106
+ };
1107
+ lineHeight: {
1108
+ parentRef: string;
1109
+ unit?: string | number | undefined;
1110
+ value?: any;
1111
+ property?: any;
1112
+ propertyType?: any;
1113
+ isReadOnly?: boolean | undefined;
1114
+ };
1115
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
1116
+ showIcon: {
1117
+ parentRef: string;
1118
+ value?: any;
1119
+ property?: any;
1120
+ propertyType?: any;
1121
+ isReadOnly?: boolean | undefined;
1122
+ };
1123
+ iconSize: {
1124
+ parentRef: string;
1125
+ unit?: string | number | undefined;
1126
+ value?: any;
1127
+ property?: any;
1128
+ propertyType?: any;
1129
+ isReadOnly?: boolean | undefined;
1130
+ };
1131
+ iconColor: {
1132
+ parentRef: string;
1133
+ value?: any;
1134
+ property?: any;
1135
+ propertyType?: any;
1136
+ isReadOnly?: boolean | undefined;
1137
+ };
1138
+ buttonStyle: {
1139
+ parentRef: string;
1140
+ propertyType: CMSElementEditTypes;
1141
+ };
1142
+ buttonText: {
1143
+ value: string;
1144
+ property: string;
1145
+ propertyType: CMSElementEditTypes;
1146
+ };
1147
+ iconPadding: {
1148
+ value: number;
1149
+ property: string;
1150
+ parentRef: string;
1151
+ propertyType: CMSElementEditTypes;
1152
+ };
1153
+ iconPosition: {
1154
+ parentRef: string;
1155
+ propertyType: CMSElementEditTypes;
1156
+ };
1157
+ iconAndTextSpacing: {
1158
+ property: string;
1159
+ unit: number;
1160
+ parentRef: string;
1161
+ propertyType: CMSElementEditTypes;
1162
+ };
1163
+ alignment: {
1164
+ property: string;
1165
+ parentRef: string;
1166
+ propertyType: CMSElementEditTypes;
1167
+ };
1168
+ buttonType: {
1169
+ value: string;
1170
+ propertyType: CMSElementEditTypes;
1171
+ };
1172
+ width: {
1173
+ value: string;
1174
+ unit: number;
1175
+ };
1176
+ padding: any;
1177
+ selectorKey: ButtonSelectorKeysEnum;
1178
+ };
1179
+ selectedState: {
1180
+ selectorKey: ButtonSelectorKeysEnum;
1181
+ };
342
1182
  };
343
1183
  tileCardDesign: {
344
1184
  borderColor: CMSIBCommonInterface;
@@ -427,6 +1267,29 @@ export declare const getDefaultData: () => {
427
1267
  lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
428
1268
  selectorKey: SelectorKeysEnum;
429
1269
  };
1270
+ divider: {
1271
+ showDivider: {
1272
+ value: boolean;
1273
+ parentRef: string;
1274
+ property?: any;
1275
+ propertyType?: any;
1276
+ isReadOnly?: boolean | undefined;
1277
+ };
1278
+ dividerWeight: {
1279
+ value: string;
1280
+ property: string;
1281
+ unit: import("../../enums").CMSCSSUnitTypesEnums;
1282
+ propertyType: CMSElementEditTypes;
1283
+ };
1284
+ dividerColor: {
1285
+ property: string;
1286
+ parentRef: string;
1287
+ value?: any;
1288
+ propertyType?: any;
1289
+ isReadOnly?: boolean | undefined;
1290
+ };
1291
+ selectorKey: SelectorKeysEnum;
1292
+ };
430
1293
  bundleTabs: {
431
1294
  selectorKey: SelectorKeysEnum;
432
1295
  widgetStyle: {