@sc-360-v2/storefront-cms-library 0.4.28 → 0.4.30
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/add-products-tab.scss +163 -36
- package/dist/builder.js +1 -1
- package/dist/bulk-order-pad.scss +6 -0
- package/dist/bundle copy.scss +2805 -0
- package/dist/bundle.scss +1632 -1614
- package/dist/buyForHeaders.scss +35 -15
- package/dist/buyForPopup.scss +19 -5
- package/dist/default-dropdown.scss +226 -0
- package/dist/filters.scss +78 -20
- package/dist/language-selector.scss +25 -1
- package/dist/modal.scss +8 -0
- package/dist/multi-select-dropdown.scss +23 -13
- package/dist/order-status.scss +1 -1
- package/dist/product-image.scss +61 -3
- package/dist/quick-order-pad.scss +49 -46
- package/dist/repeater.scss +9 -4
- package/dist/review-cart.scss +5 -3
- package/dist/shipping-payments.scss +475 -187
- package/dist/types/builder/enums/data-connectors.d.ts +0 -1
- package/dist/types/builder/tools/element-edit/addProductsTab.d.ts +28 -12
- package/dist/types/builder/tools/element-edit/bundle.d.ts +837 -4
- package/dist/types/builder/tools/element-edit/bundleDetails.d.ts +868 -84
- package/dist/types/builder/tools/element-edit/filters.d.ts +8 -1
- package/dist/types/builder/tools/element-edit/imageInstance.d.ts +33 -0
- package/dist/types/builder/tools/element-edit/product-image.d.ts +1 -0
- package/dist/types/builder/tools/element-edit/variantPicker.d.ts +1 -6
- package/dist/types/website/constants/data-connectors.d.ts +0 -4
- package/dist/website.js +1 -1
- package/dist/widget.scss +1 -0
- package/package.json +1 -1
|
@@ -20,10 +20,26 @@ export declare enum SelectorKeysEnum {
|
|
|
20
20
|
TILE_CARD_DESIGN = "tileCardDesign",
|
|
21
21
|
TILE_CARD_IMAGE_DESIGN = "tileCardImageDesign",
|
|
22
22
|
LIST_VIEW_CARD_DESIGN = "listViewCardDesign",
|
|
23
|
-
BUNDLE_TAG_DESIGN = "bundleTagDesign"
|
|
23
|
+
BUNDLE_TAG_DESIGN = "bundleTagDesign",
|
|
24
|
+
DIVIDER = "divider",
|
|
25
|
+
DEFAULT_STATE = "defaultState"
|
|
24
26
|
}
|
|
25
27
|
export declare const getDefaultData: () => {
|
|
26
28
|
layout: {
|
|
29
|
+
onHover: {
|
|
30
|
+
value: string;
|
|
31
|
+
propertyType: CMSElementEditTypes;
|
|
32
|
+
};
|
|
33
|
+
fitOptions: {
|
|
34
|
+
value: string;
|
|
35
|
+
propert: string;
|
|
36
|
+
propertyType: CMSElementEditTypes;
|
|
37
|
+
};
|
|
38
|
+
objectPosition: {
|
|
39
|
+
value: string;
|
|
40
|
+
propert: string;
|
|
41
|
+
propertyType: CMSElementEditTypes;
|
|
42
|
+
};
|
|
27
43
|
selectorKey: SelectorKeysEnum;
|
|
28
44
|
width: {
|
|
29
45
|
value: string;
|
|
@@ -39,6 +55,11 @@ export declare const getDefaultData: () => {
|
|
|
39
55
|
};
|
|
40
56
|
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
41
57
|
padding: any;
|
|
58
|
+
overflowItems: {
|
|
59
|
+
value: string;
|
|
60
|
+
property: string;
|
|
61
|
+
propertyType: CMSElementEditTypes;
|
|
62
|
+
};
|
|
42
63
|
overflowContent: CMSIBCommonInterface | undefined;
|
|
43
64
|
scrollDirection: CMSIBCommonInterface | undefined;
|
|
44
65
|
displayScrollbar: CMSIBCommonInterface | undefined;
|
|
@@ -64,6 +85,11 @@ export declare const getDefaultData: () => {
|
|
|
64
85
|
property: string;
|
|
65
86
|
propertyType: CMSElementEditTypes;
|
|
66
87
|
};
|
|
88
|
+
overflowSlides: {
|
|
89
|
+
value: string;
|
|
90
|
+
property: string;
|
|
91
|
+
propertyType: CMSElementEditTypes;
|
|
92
|
+
};
|
|
67
93
|
allowAutoScroll: {
|
|
68
94
|
value: boolean;
|
|
69
95
|
property: string;
|
|
@@ -84,6 +110,11 @@ export declare const getDefaultData: () => {
|
|
|
84
110
|
property: string;
|
|
85
111
|
propertyType: CMSElementEditTypes;
|
|
86
112
|
};
|
|
113
|
+
itemsPerRow: {
|
|
114
|
+
value: number;
|
|
115
|
+
property: string;
|
|
116
|
+
propertyType: CMSElementEditTypes;
|
|
117
|
+
};
|
|
87
118
|
containerHeight: {
|
|
88
119
|
value: number;
|
|
89
120
|
property: string;
|
|
@@ -136,10 +167,13 @@ export declare const getDefaultData: () => {
|
|
|
136
167
|
unit: number;
|
|
137
168
|
propertyType: CMSElementEditTypes;
|
|
138
169
|
};
|
|
139
|
-
|
|
140
|
-
value: boolean;
|
|
170
|
+
imageHeight: {
|
|
141
171
|
property: string;
|
|
142
|
-
|
|
172
|
+
value: string;
|
|
173
|
+
unit: number;
|
|
174
|
+
propertyType?: any;
|
|
175
|
+
isReadOnly?: boolean | undefined;
|
|
176
|
+
parentRef?: string | undefined;
|
|
143
177
|
};
|
|
144
178
|
};
|
|
145
179
|
design: {
|
|
@@ -408,6 +442,805 @@ export declare const getDefaultData: () => {
|
|
|
408
442
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
409
443
|
selectorKey: SelectorKeysEnum;
|
|
410
444
|
};
|
|
445
|
+
divider: {
|
|
446
|
+
showDivider: {
|
|
447
|
+
value: boolean;
|
|
448
|
+
parentRef: string;
|
|
449
|
+
property?: any;
|
|
450
|
+
propertyType?: any;
|
|
451
|
+
isReadOnly?: boolean | undefined;
|
|
452
|
+
};
|
|
453
|
+
dividerWeight: {
|
|
454
|
+
value: string;
|
|
455
|
+
property: string;
|
|
456
|
+
unit: import("../../enums").CMSCSSUnitTypesEnums;
|
|
457
|
+
propertyType: CMSElementEditTypes;
|
|
458
|
+
};
|
|
459
|
+
dividerColor: {
|
|
460
|
+
property: string;
|
|
461
|
+
parentRef: string;
|
|
462
|
+
value?: any;
|
|
463
|
+
propertyType?: any;
|
|
464
|
+
isReadOnly?: boolean | undefined;
|
|
465
|
+
};
|
|
466
|
+
selectorKey: SelectorKeysEnum;
|
|
467
|
+
};
|
|
468
|
+
bundleTabs: {
|
|
469
|
+
selectorKey: SelectorKeysEnum;
|
|
470
|
+
widgetStyle: {
|
|
471
|
+
selectorKey: SelectorKeysEnum;
|
|
472
|
+
itemGap: import("../../interfaces/global").CMSIBSizeInterface;
|
|
473
|
+
backgroundColor: CMSIBCommonInterface;
|
|
474
|
+
borderColor: CMSIBCommonInterface;
|
|
475
|
+
borderStyle: CMSIBCommonInterface;
|
|
476
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
477
|
+
showBorder: CMSIBCommonInterface;
|
|
478
|
+
showShadow: CMSIBCommonInterface;
|
|
479
|
+
shadowColor: CMSIBCommonInterface;
|
|
480
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
481
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
482
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
483
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
484
|
+
};
|
|
485
|
+
bundleTab: {
|
|
486
|
+
selectorKey: SelectorKeysEnum;
|
|
487
|
+
defaultState: {
|
|
488
|
+
backgroundColor: {
|
|
489
|
+
parentRef: string;
|
|
490
|
+
value?: any;
|
|
491
|
+
property?: any;
|
|
492
|
+
propertyType?: any;
|
|
493
|
+
isReadOnly?: boolean | undefined;
|
|
494
|
+
};
|
|
495
|
+
borderColor: {
|
|
496
|
+
parentRef: string;
|
|
497
|
+
value?: any;
|
|
498
|
+
property?: any;
|
|
499
|
+
propertyType?: any;
|
|
500
|
+
isReadOnly?: boolean | undefined;
|
|
501
|
+
};
|
|
502
|
+
borderStyle: {
|
|
503
|
+
parentRef: string;
|
|
504
|
+
value?: any;
|
|
505
|
+
property?: any;
|
|
506
|
+
propertyType?: any;
|
|
507
|
+
isReadOnly?: boolean | undefined;
|
|
508
|
+
};
|
|
509
|
+
borderPerSlide: {
|
|
510
|
+
parentRef: string;
|
|
511
|
+
isAll: boolean;
|
|
512
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
513
|
+
property: string;
|
|
514
|
+
iscss?: boolean | undefined;
|
|
515
|
+
propertyType?: any;
|
|
516
|
+
};
|
|
517
|
+
showBorder: {
|
|
518
|
+
value: boolean;
|
|
519
|
+
parentRef: string;
|
|
520
|
+
property?: any;
|
|
521
|
+
propertyType?: any;
|
|
522
|
+
isReadOnly?: boolean | undefined;
|
|
523
|
+
};
|
|
524
|
+
showShadow: {
|
|
525
|
+
parentRef: string;
|
|
526
|
+
value?: any;
|
|
527
|
+
property?: any;
|
|
528
|
+
propertyType?: any;
|
|
529
|
+
isReadOnly?: boolean | undefined;
|
|
530
|
+
};
|
|
531
|
+
shadowColor: {
|
|
532
|
+
parentRef: string;
|
|
533
|
+
value?: any;
|
|
534
|
+
property?: any;
|
|
535
|
+
propertyType?: any;
|
|
536
|
+
isReadOnly?: boolean | undefined;
|
|
537
|
+
};
|
|
538
|
+
blur: {
|
|
539
|
+
parentRef: string;
|
|
540
|
+
unit?: string | number | undefined;
|
|
541
|
+
value?: any;
|
|
542
|
+
property?: any;
|
|
543
|
+
propertyType?: any;
|
|
544
|
+
isReadOnly?: boolean | undefined;
|
|
545
|
+
};
|
|
546
|
+
spread: {
|
|
547
|
+
parentRef: string;
|
|
548
|
+
unit?: string | number | undefined;
|
|
549
|
+
value?: any;
|
|
550
|
+
property?: any;
|
|
551
|
+
propertyType?: any;
|
|
552
|
+
isReadOnly?: boolean | undefined;
|
|
553
|
+
};
|
|
554
|
+
angle: {
|
|
555
|
+
parentRef: string;
|
|
556
|
+
unit?: string | number | undefined;
|
|
557
|
+
value?: any;
|
|
558
|
+
property?: any;
|
|
559
|
+
propertyType?: any;
|
|
560
|
+
isReadOnly?: boolean | undefined;
|
|
561
|
+
};
|
|
562
|
+
borderRadius: {
|
|
563
|
+
parentRef: string;
|
|
564
|
+
isAll: boolean;
|
|
565
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
566
|
+
property: string;
|
|
567
|
+
iscss?: boolean | undefined;
|
|
568
|
+
propertyType?: any;
|
|
569
|
+
};
|
|
570
|
+
font: {
|
|
571
|
+
parentRef: string;
|
|
572
|
+
value?: any;
|
|
573
|
+
property?: any;
|
|
574
|
+
propertyType?: any;
|
|
575
|
+
isReadOnly?: boolean | undefined;
|
|
576
|
+
};
|
|
577
|
+
fontSize: {
|
|
578
|
+
parentRef: string;
|
|
579
|
+
unit?: string | number | undefined;
|
|
580
|
+
value?: any;
|
|
581
|
+
property?: any;
|
|
582
|
+
propertyType?: any;
|
|
583
|
+
isReadOnly?: boolean | undefined;
|
|
584
|
+
};
|
|
585
|
+
textColor: {
|
|
586
|
+
parentRef: string;
|
|
587
|
+
value?: any;
|
|
588
|
+
property?: any;
|
|
589
|
+
propertyType?: any;
|
|
590
|
+
isReadOnly?: boolean | undefined;
|
|
591
|
+
};
|
|
592
|
+
bold: {
|
|
593
|
+
value: string;
|
|
594
|
+
parentRef: string;
|
|
595
|
+
property?: any;
|
|
596
|
+
propertyType?: any;
|
|
597
|
+
isReadOnly?: boolean | undefined;
|
|
598
|
+
};
|
|
599
|
+
italic: {
|
|
600
|
+
parentRef: string;
|
|
601
|
+
value?: any;
|
|
602
|
+
property?: any;
|
|
603
|
+
propertyType?: any;
|
|
604
|
+
isReadOnly?: boolean | undefined;
|
|
605
|
+
};
|
|
606
|
+
linethrough: {
|
|
607
|
+
parentRef: string;
|
|
608
|
+
value?: any;
|
|
609
|
+
property?: any;
|
|
610
|
+
propertyType?: any;
|
|
611
|
+
isReadOnly?: boolean | undefined;
|
|
612
|
+
};
|
|
613
|
+
underline: {
|
|
614
|
+
parentRef: string;
|
|
615
|
+
value?: any;
|
|
616
|
+
property?: any;
|
|
617
|
+
propertyType?: any;
|
|
618
|
+
isReadOnly?: boolean | undefined;
|
|
619
|
+
};
|
|
620
|
+
textAlign: {
|
|
621
|
+
parentRef: string;
|
|
622
|
+
value?: any;
|
|
623
|
+
property?: any;
|
|
624
|
+
propertyType?: any;
|
|
625
|
+
isReadOnly?: boolean | undefined;
|
|
626
|
+
};
|
|
627
|
+
characterSpacing: {
|
|
628
|
+
parentRef: string;
|
|
629
|
+
unit?: string | number | undefined;
|
|
630
|
+
value?: any;
|
|
631
|
+
property?: any;
|
|
632
|
+
propertyType?: any;
|
|
633
|
+
isReadOnly?: boolean | undefined;
|
|
634
|
+
};
|
|
635
|
+
lineHeight: {
|
|
636
|
+
parentRef: string;
|
|
637
|
+
unit?: string | number | undefined;
|
|
638
|
+
value?: any;
|
|
639
|
+
property?: any;
|
|
640
|
+
propertyType?: any;
|
|
641
|
+
isReadOnly?: boolean | undefined;
|
|
642
|
+
};
|
|
643
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
644
|
+
showIcon: {
|
|
645
|
+
parentRef: string;
|
|
646
|
+
value?: any;
|
|
647
|
+
property?: any;
|
|
648
|
+
propertyType?: any;
|
|
649
|
+
isReadOnly?: boolean | undefined;
|
|
650
|
+
};
|
|
651
|
+
iconSize: {
|
|
652
|
+
parentRef: string;
|
|
653
|
+
unit?: string | number | undefined;
|
|
654
|
+
value?: any;
|
|
655
|
+
property?: any;
|
|
656
|
+
propertyType?: any;
|
|
657
|
+
isReadOnly?: boolean | undefined;
|
|
658
|
+
};
|
|
659
|
+
iconColor: {
|
|
660
|
+
parentRef: string;
|
|
661
|
+
value?: any;
|
|
662
|
+
property?: any;
|
|
663
|
+
propertyType?: any;
|
|
664
|
+
isReadOnly?: boolean | undefined;
|
|
665
|
+
};
|
|
666
|
+
selectorKey: SelectorKeysEnum;
|
|
667
|
+
padding: any;
|
|
668
|
+
};
|
|
669
|
+
hoverState: {
|
|
670
|
+
backgroundColor: {
|
|
671
|
+
parentRef: string;
|
|
672
|
+
value?: any;
|
|
673
|
+
property?: any;
|
|
674
|
+
propertyType?: any;
|
|
675
|
+
isReadOnly?: boolean | undefined;
|
|
676
|
+
};
|
|
677
|
+
borderColor: {
|
|
678
|
+
parentRef: string;
|
|
679
|
+
value?: any;
|
|
680
|
+
property?: any;
|
|
681
|
+
propertyType?: any;
|
|
682
|
+
isReadOnly?: boolean | undefined;
|
|
683
|
+
};
|
|
684
|
+
borderStyle: {
|
|
685
|
+
parentRef: string;
|
|
686
|
+
value?: any;
|
|
687
|
+
property?: any;
|
|
688
|
+
propertyType?: any;
|
|
689
|
+
isReadOnly?: boolean | undefined;
|
|
690
|
+
};
|
|
691
|
+
borderPerSlide: {
|
|
692
|
+
parentRef: string;
|
|
693
|
+
isAll: boolean;
|
|
694
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
695
|
+
property: string;
|
|
696
|
+
iscss?: boolean | undefined;
|
|
697
|
+
propertyType?: any;
|
|
698
|
+
};
|
|
699
|
+
showBorder: {
|
|
700
|
+
value: boolean;
|
|
701
|
+
parentRef: string;
|
|
702
|
+
property?: any;
|
|
703
|
+
propertyType?: any;
|
|
704
|
+
isReadOnly?: boolean | undefined;
|
|
705
|
+
};
|
|
706
|
+
showShadow: {
|
|
707
|
+
parentRef: string;
|
|
708
|
+
value?: any;
|
|
709
|
+
property?: any;
|
|
710
|
+
propertyType?: any;
|
|
711
|
+
isReadOnly?: boolean | undefined;
|
|
712
|
+
};
|
|
713
|
+
shadowColor: {
|
|
714
|
+
parentRef: string;
|
|
715
|
+
value?: any;
|
|
716
|
+
property?: any;
|
|
717
|
+
propertyType?: any;
|
|
718
|
+
isReadOnly?: boolean | undefined;
|
|
719
|
+
};
|
|
720
|
+
blur: {
|
|
721
|
+
parentRef: string;
|
|
722
|
+
unit?: string | number | undefined;
|
|
723
|
+
value?: any;
|
|
724
|
+
property?: any;
|
|
725
|
+
propertyType?: any;
|
|
726
|
+
isReadOnly?: boolean | undefined;
|
|
727
|
+
};
|
|
728
|
+
spread: {
|
|
729
|
+
parentRef: string;
|
|
730
|
+
unit?: string | number | undefined;
|
|
731
|
+
value?: any;
|
|
732
|
+
property?: any;
|
|
733
|
+
propertyType?: any;
|
|
734
|
+
isReadOnly?: boolean | undefined;
|
|
735
|
+
};
|
|
736
|
+
angle: {
|
|
737
|
+
parentRef: string;
|
|
738
|
+
unit?: string | number | undefined;
|
|
739
|
+
value?: any;
|
|
740
|
+
property?: any;
|
|
741
|
+
propertyType?: any;
|
|
742
|
+
isReadOnly?: boolean | undefined;
|
|
743
|
+
};
|
|
744
|
+
borderRadius: {
|
|
745
|
+
parentRef: string;
|
|
746
|
+
isAll: boolean;
|
|
747
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
748
|
+
property: string;
|
|
749
|
+
iscss?: boolean | undefined;
|
|
750
|
+
propertyType?: any;
|
|
751
|
+
};
|
|
752
|
+
font: {
|
|
753
|
+
parentRef: string;
|
|
754
|
+
value?: any;
|
|
755
|
+
property?: any;
|
|
756
|
+
propertyType?: any;
|
|
757
|
+
isReadOnly?: boolean | undefined;
|
|
758
|
+
};
|
|
759
|
+
fontSize: {
|
|
760
|
+
parentRef: string;
|
|
761
|
+
unit?: string | number | undefined;
|
|
762
|
+
value?: any;
|
|
763
|
+
property?: any;
|
|
764
|
+
propertyType?: any;
|
|
765
|
+
isReadOnly?: boolean | undefined;
|
|
766
|
+
};
|
|
767
|
+
textColor: {
|
|
768
|
+
parentRef: string;
|
|
769
|
+
value?: any;
|
|
770
|
+
property?: any;
|
|
771
|
+
propertyType?: any;
|
|
772
|
+
isReadOnly?: boolean | undefined;
|
|
773
|
+
};
|
|
774
|
+
bold: {
|
|
775
|
+
value: string;
|
|
776
|
+
parentRef: string;
|
|
777
|
+
property?: any;
|
|
778
|
+
propertyType?: any;
|
|
779
|
+
isReadOnly?: boolean | undefined;
|
|
780
|
+
};
|
|
781
|
+
italic: {
|
|
782
|
+
parentRef: string;
|
|
783
|
+
value?: any;
|
|
784
|
+
property?: any;
|
|
785
|
+
propertyType?: any;
|
|
786
|
+
isReadOnly?: boolean | undefined;
|
|
787
|
+
};
|
|
788
|
+
linethrough: {
|
|
789
|
+
parentRef: string;
|
|
790
|
+
value?: any;
|
|
791
|
+
property?: any;
|
|
792
|
+
propertyType?: any;
|
|
793
|
+
isReadOnly?: boolean | undefined;
|
|
794
|
+
};
|
|
795
|
+
underline: {
|
|
796
|
+
parentRef: string;
|
|
797
|
+
value?: any;
|
|
798
|
+
property?: any;
|
|
799
|
+
propertyType?: any;
|
|
800
|
+
isReadOnly?: boolean | undefined;
|
|
801
|
+
};
|
|
802
|
+
textAlign: {
|
|
803
|
+
parentRef: string;
|
|
804
|
+
value?: any;
|
|
805
|
+
property?: any;
|
|
806
|
+
propertyType?: any;
|
|
807
|
+
isReadOnly?: boolean | undefined;
|
|
808
|
+
};
|
|
809
|
+
characterSpacing: {
|
|
810
|
+
parentRef: string;
|
|
811
|
+
unit?: string | number | undefined;
|
|
812
|
+
value?: any;
|
|
813
|
+
property?: any;
|
|
814
|
+
propertyType?: any;
|
|
815
|
+
isReadOnly?: boolean | undefined;
|
|
816
|
+
};
|
|
817
|
+
lineHeight: {
|
|
818
|
+
parentRef: string;
|
|
819
|
+
unit?: string | number | undefined;
|
|
820
|
+
value?: any;
|
|
821
|
+
property?: any;
|
|
822
|
+
propertyType?: any;
|
|
823
|
+
isReadOnly?: boolean | undefined;
|
|
824
|
+
};
|
|
825
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
826
|
+
showIcon: {
|
|
827
|
+
parentRef: string;
|
|
828
|
+
value?: any;
|
|
829
|
+
property?: any;
|
|
830
|
+
propertyType?: any;
|
|
831
|
+
isReadOnly?: boolean | undefined;
|
|
832
|
+
};
|
|
833
|
+
iconSize: {
|
|
834
|
+
parentRef: string;
|
|
835
|
+
unit?: string | number | undefined;
|
|
836
|
+
value?: any;
|
|
837
|
+
property?: any;
|
|
838
|
+
propertyType?: any;
|
|
839
|
+
isReadOnly?: boolean | undefined;
|
|
840
|
+
};
|
|
841
|
+
iconColor: {
|
|
842
|
+
parentRef: string;
|
|
843
|
+
value?: any;
|
|
844
|
+
property?: any;
|
|
845
|
+
propertyType?: any;
|
|
846
|
+
isReadOnly?: boolean | undefined;
|
|
847
|
+
};
|
|
848
|
+
selectorKey: SelectorKeysEnum;
|
|
849
|
+
padding: any;
|
|
850
|
+
};
|
|
851
|
+
selectedState: {
|
|
852
|
+
selectorKey: SelectorKeysEnum;
|
|
853
|
+
};
|
|
854
|
+
};
|
|
855
|
+
};
|
|
856
|
+
categoryTabs: {
|
|
857
|
+
selectorKey: SelectorKeysEnum;
|
|
858
|
+
widgetStyle: {
|
|
859
|
+
selectorKey: SelectorKeysEnum;
|
|
860
|
+
itemGap: import("../../interfaces/global").CMSIBSizeInterface;
|
|
861
|
+
backgroundColor: CMSIBCommonInterface;
|
|
862
|
+
borderColor: CMSIBCommonInterface;
|
|
863
|
+
borderStyle: CMSIBCommonInterface;
|
|
864
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
865
|
+
showBorder: CMSIBCommonInterface;
|
|
866
|
+
showShadow: CMSIBCommonInterface;
|
|
867
|
+
shadowColor: CMSIBCommonInterface;
|
|
868
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
869
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
870
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
871
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
872
|
+
};
|
|
873
|
+
categoryTab: {
|
|
874
|
+
selectorKey: SelectorKeysEnum;
|
|
875
|
+
defaultState: {
|
|
876
|
+
backgroundColor: {
|
|
877
|
+
parentRef: string;
|
|
878
|
+
value?: any;
|
|
879
|
+
property?: any;
|
|
880
|
+
propertyType?: any;
|
|
881
|
+
isReadOnly?: boolean | undefined;
|
|
882
|
+
};
|
|
883
|
+
borderColor: {
|
|
884
|
+
parentRef: string;
|
|
885
|
+
value?: any;
|
|
886
|
+
property?: any;
|
|
887
|
+
propertyType?: any;
|
|
888
|
+
isReadOnly?: boolean | undefined;
|
|
889
|
+
};
|
|
890
|
+
borderStyle: {
|
|
891
|
+
parentRef: string;
|
|
892
|
+
value?: any;
|
|
893
|
+
property?: any;
|
|
894
|
+
propertyType?: any;
|
|
895
|
+
isReadOnly?: boolean | undefined;
|
|
896
|
+
};
|
|
897
|
+
borderPerSlide: {
|
|
898
|
+
parentRef: string;
|
|
899
|
+
isAll: boolean;
|
|
900
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
901
|
+
property: string;
|
|
902
|
+
iscss?: boolean | undefined;
|
|
903
|
+
propertyType?: any;
|
|
904
|
+
};
|
|
905
|
+
showBorder: {
|
|
906
|
+
value: boolean;
|
|
907
|
+
parentRef: string;
|
|
908
|
+
property?: any;
|
|
909
|
+
propertyType?: any;
|
|
910
|
+
isReadOnly?: boolean | undefined;
|
|
911
|
+
};
|
|
912
|
+
showShadow: {
|
|
913
|
+
parentRef: string;
|
|
914
|
+
value?: any;
|
|
915
|
+
property?: any;
|
|
916
|
+
propertyType?: any;
|
|
917
|
+
isReadOnly?: boolean | undefined;
|
|
918
|
+
};
|
|
919
|
+
shadowColor: {
|
|
920
|
+
parentRef: string;
|
|
921
|
+
value?: any;
|
|
922
|
+
property?: any;
|
|
923
|
+
propertyType?: any;
|
|
924
|
+
isReadOnly?: boolean | undefined;
|
|
925
|
+
};
|
|
926
|
+
blur: {
|
|
927
|
+
parentRef: string;
|
|
928
|
+
unit?: string | number | undefined;
|
|
929
|
+
value?: any;
|
|
930
|
+
property?: any;
|
|
931
|
+
propertyType?: any;
|
|
932
|
+
isReadOnly?: boolean | undefined;
|
|
933
|
+
};
|
|
934
|
+
spread: {
|
|
935
|
+
parentRef: string;
|
|
936
|
+
unit?: string | number | undefined;
|
|
937
|
+
value?: any;
|
|
938
|
+
property?: any;
|
|
939
|
+
propertyType?: any;
|
|
940
|
+
isReadOnly?: boolean | undefined;
|
|
941
|
+
};
|
|
942
|
+
angle: {
|
|
943
|
+
parentRef: string;
|
|
944
|
+
unit?: string | number | undefined;
|
|
945
|
+
value?: any;
|
|
946
|
+
property?: any;
|
|
947
|
+
propertyType?: any;
|
|
948
|
+
isReadOnly?: boolean | undefined;
|
|
949
|
+
};
|
|
950
|
+
borderRadius: {
|
|
951
|
+
parentRef: string;
|
|
952
|
+
isAll: boolean;
|
|
953
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
954
|
+
property: string;
|
|
955
|
+
iscss?: boolean | undefined;
|
|
956
|
+
propertyType?: any;
|
|
957
|
+
};
|
|
958
|
+
font: {
|
|
959
|
+
parentRef: string;
|
|
960
|
+
value?: any;
|
|
961
|
+
property?: any;
|
|
962
|
+
propertyType?: any;
|
|
963
|
+
isReadOnly?: boolean | undefined;
|
|
964
|
+
};
|
|
965
|
+
fontSize: {
|
|
966
|
+
parentRef: string;
|
|
967
|
+
unit?: string | number | undefined;
|
|
968
|
+
value?: any;
|
|
969
|
+
property?: any;
|
|
970
|
+
propertyType?: any;
|
|
971
|
+
isReadOnly?: boolean | undefined;
|
|
972
|
+
};
|
|
973
|
+
textColor: {
|
|
974
|
+
parentRef: string;
|
|
975
|
+
value?: any;
|
|
976
|
+
property?: any;
|
|
977
|
+
propertyType?: any;
|
|
978
|
+
isReadOnly?: boolean | undefined;
|
|
979
|
+
};
|
|
980
|
+
bold: {
|
|
981
|
+
value: string;
|
|
982
|
+
parentRef: string;
|
|
983
|
+
property?: any;
|
|
984
|
+
propertyType?: any;
|
|
985
|
+
isReadOnly?: boolean | undefined;
|
|
986
|
+
};
|
|
987
|
+
italic: {
|
|
988
|
+
parentRef: string;
|
|
989
|
+
value?: any;
|
|
990
|
+
property?: any;
|
|
991
|
+
propertyType?: any;
|
|
992
|
+
isReadOnly?: boolean | undefined;
|
|
993
|
+
};
|
|
994
|
+
linethrough: {
|
|
995
|
+
parentRef: string;
|
|
996
|
+
value?: any;
|
|
997
|
+
property?: any;
|
|
998
|
+
propertyType?: any;
|
|
999
|
+
isReadOnly?: boolean | undefined;
|
|
1000
|
+
};
|
|
1001
|
+
underline: {
|
|
1002
|
+
parentRef: string;
|
|
1003
|
+
value?: any;
|
|
1004
|
+
property?: any;
|
|
1005
|
+
propertyType?: any;
|
|
1006
|
+
isReadOnly?: boolean | undefined;
|
|
1007
|
+
};
|
|
1008
|
+
textAlign: {
|
|
1009
|
+
parentRef: string;
|
|
1010
|
+
value?: any;
|
|
1011
|
+
property?: any;
|
|
1012
|
+
propertyType?: any;
|
|
1013
|
+
isReadOnly?: boolean | undefined;
|
|
1014
|
+
};
|
|
1015
|
+
characterSpacing: {
|
|
1016
|
+
parentRef: string;
|
|
1017
|
+
unit?: string | number | undefined;
|
|
1018
|
+
value?: any;
|
|
1019
|
+
property?: any;
|
|
1020
|
+
propertyType?: any;
|
|
1021
|
+
isReadOnly?: boolean | undefined;
|
|
1022
|
+
};
|
|
1023
|
+
lineHeight: {
|
|
1024
|
+
parentRef: string;
|
|
1025
|
+
unit?: string | number | undefined;
|
|
1026
|
+
value?: any;
|
|
1027
|
+
property?: any;
|
|
1028
|
+
propertyType?: any;
|
|
1029
|
+
isReadOnly?: boolean | undefined;
|
|
1030
|
+
};
|
|
1031
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
1032
|
+
showIcon: {
|
|
1033
|
+
parentRef: string;
|
|
1034
|
+
value?: any;
|
|
1035
|
+
property?: any;
|
|
1036
|
+
propertyType?: any;
|
|
1037
|
+
isReadOnly?: boolean | undefined;
|
|
1038
|
+
};
|
|
1039
|
+
iconSize: {
|
|
1040
|
+
parentRef: string;
|
|
1041
|
+
unit?: string | number | undefined;
|
|
1042
|
+
value?: any;
|
|
1043
|
+
property?: any;
|
|
1044
|
+
propertyType?: any;
|
|
1045
|
+
isReadOnly?: boolean | undefined;
|
|
1046
|
+
};
|
|
1047
|
+
iconColor: {
|
|
1048
|
+
parentRef: string;
|
|
1049
|
+
value?: any;
|
|
1050
|
+
property?: any;
|
|
1051
|
+
propertyType?: any;
|
|
1052
|
+
isReadOnly?: boolean | undefined;
|
|
1053
|
+
};
|
|
1054
|
+
selectorKey: SelectorKeysEnum;
|
|
1055
|
+
padding: any;
|
|
1056
|
+
};
|
|
1057
|
+
hoverState: {
|
|
1058
|
+
backgroundColor: {
|
|
1059
|
+
parentRef: string;
|
|
1060
|
+
value?: any;
|
|
1061
|
+
property?: any;
|
|
1062
|
+
propertyType?: any;
|
|
1063
|
+
isReadOnly?: boolean | undefined;
|
|
1064
|
+
};
|
|
1065
|
+
borderColor: {
|
|
1066
|
+
parentRef: string;
|
|
1067
|
+
value?: any;
|
|
1068
|
+
property?: any;
|
|
1069
|
+
propertyType?: any;
|
|
1070
|
+
isReadOnly?: boolean | undefined;
|
|
1071
|
+
};
|
|
1072
|
+
borderStyle: {
|
|
1073
|
+
parentRef: string;
|
|
1074
|
+
value?: any;
|
|
1075
|
+
property?: any;
|
|
1076
|
+
propertyType?: any;
|
|
1077
|
+
isReadOnly?: boolean | undefined;
|
|
1078
|
+
};
|
|
1079
|
+
borderPerSlide: {
|
|
1080
|
+
parentRef: string;
|
|
1081
|
+
isAll: boolean;
|
|
1082
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
1083
|
+
property: string;
|
|
1084
|
+
iscss?: boolean | undefined;
|
|
1085
|
+
propertyType?: any;
|
|
1086
|
+
};
|
|
1087
|
+
showBorder: {
|
|
1088
|
+
value: boolean;
|
|
1089
|
+
parentRef: string;
|
|
1090
|
+
property?: any;
|
|
1091
|
+
propertyType?: any;
|
|
1092
|
+
isReadOnly?: boolean | undefined;
|
|
1093
|
+
};
|
|
1094
|
+
showShadow: {
|
|
1095
|
+
parentRef: string;
|
|
1096
|
+
value?: any;
|
|
1097
|
+
property?: any;
|
|
1098
|
+
propertyType?: any;
|
|
1099
|
+
isReadOnly?: boolean | undefined;
|
|
1100
|
+
};
|
|
1101
|
+
shadowColor: {
|
|
1102
|
+
parentRef: string;
|
|
1103
|
+
value?: any;
|
|
1104
|
+
property?: any;
|
|
1105
|
+
propertyType?: any;
|
|
1106
|
+
isReadOnly?: boolean | undefined;
|
|
1107
|
+
};
|
|
1108
|
+
blur: {
|
|
1109
|
+
parentRef: string;
|
|
1110
|
+
unit?: string | number | undefined;
|
|
1111
|
+
value?: any;
|
|
1112
|
+
property?: any;
|
|
1113
|
+
propertyType?: any;
|
|
1114
|
+
isReadOnly?: boolean | undefined;
|
|
1115
|
+
};
|
|
1116
|
+
spread: {
|
|
1117
|
+
parentRef: string;
|
|
1118
|
+
unit?: string | number | undefined;
|
|
1119
|
+
value?: any;
|
|
1120
|
+
property?: any;
|
|
1121
|
+
propertyType?: any;
|
|
1122
|
+
isReadOnly?: boolean | undefined;
|
|
1123
|
+
};
|
|
1124
|
+
angle: {
|
|
1125
|
+
parentRef: string;
|
|
1126
|
+
unit?: string | number | undefined;
|
|
1127
|
+
value?: any;
|
|
1128
|
+
property?: any;
|
|
1129
|
+
propertyType?: any;
|
|
1130
|
+
isReadOnly?: boolean | undefined;
|
|
1131
|
+
};
|
|
1132
|
+
borderRadius: {
|
|
1133
|
+
parentRef: string;
|
|
1134
|
+
isAll: boolean;
|
|
1135
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
1136
|
+
property: string;
|
|
1137
|
+
iscss?: boolean | undefined;
|
|
1138
|
+
propertyType?: any;
|
|
1139
|
+
};
|
|
1140
|
+
font: {
|
|
1141
|
+
parentRef: string;
|
|
1142
|
+
value?: any;
|
|
1143
|
+
property?: any;
|
|
1144
|
+
propertyType?: any;
|
|
1145
|
+
isReadOnly?: boolean | undefined;
|
|
1146
|
+
};
|
|
1147
|
+
fontSize: {
|
|
1148
|
+
parentRef: string;
|
|
1149
|
+
unit?: string | number | undefined;
|
|
1150
|
+
value?: any;
|
|
1151
|
+
property?: any;
|
|
1152
|
+
propertyType?: any;
|
|
1153
|
+
isReadOnly?: boolean | undefined;
|
|
1154
|
+
};
|
|
1155
|
+
textColor: {
|
|
1156
|
+
parentRef: string;
|
|
1157
|
+
value?: any;
|
|
1158
|
+
property?: any;
|
|
1159
|
+
propertyType?: any;
|
|
1160
|
+
isReadOnly?: boolean | undefined;
|
|
1161
|
+
};
|
|
1162
|
+
bold: {
|
|
1163
|
+
value: string;
|
|
1164
|
+
parentRef: string;
|
|
1165
|
+
property?: any;
|
|
1166
|
+
propertyType?: any;
|
|
1167
|
+
isReadOnly?: boolean | undefined;
|
|
1168
|
+
};
|
|
1169
|
+
italic: {
|
|
1170
|
+
parentRef: string;
|
|
1171
|
+
value?: any;
|
|
1172
|
+
property?: any;
|
|
1173
|
+
propertyType?: any;
|
|
1174
|
+
isReadOnly?: boolean | undefined;
|
|
1175
|
+
};
|
|
1176
|
+
linethrough: {
|
|
1177
|
+
parentRef: string;
|
|
1178
|
+
value?: any;
|
|
1179
|
+
property?: any;
|
|
1180
|
+
propertyType?: any;
|
|
1181
|
+
isReadOnly?: boolean | undefined;
|
|
1182
|
+
};
|
|
1183
|
+
underline: {
|
|
1184
|
+
parentRef: string;
|
|
1185
|
+
value?: any;
|
|
1186
|
+
property?: any;
|
|
1187
|
+
propertyType?: any;
|
|
1188
|
+
isReadOnly?: boolean | undefined;
|
|
1189
|
+
};
|
|
1190
|
+
textAlign: {
|
|
1191
|
+
parentRef: string;
|
|
1192
|
+
value?: any;
|
|
1193
|
+
property?: any;
|
|
1194
|
+
propertyType?: any;
|
|
1195
|
+
isReadOnly?: boolean | undefined;
|
|
1196
|
+
};
|
|
1197
|
+
characterSpacing: {
|
|
1198
|
+
parentRef: string;
|
|
1199
|
+
unit?: string | number | undefined;
|
|
1200
|
+
value?: any;
|
|
1201
|
+
property?: any;
|
|
1202
|
+
propertyType?: any;
|
|
1203
|
+
isReadOnly?: boolean | undefined;
|
|
1204
|
+
};
|
|
1205
|
+
lineHeight: {
|
|
1206
|
+
parentRef: string;
|
|
1207
|
+
unit?: string | number | undefined;
|
|
1208
|
+
value?: any;
|
|
1209
|
+
property?: any;
|
|
1210
|
+
propertyType?: any;
|
|
1211
|
+
isReadOnly?: boolean | undefined;
|
|
1212
|
+
};
|
|
1213
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
1214
|
+
showIcon: {
|
|
1215
|
+
parentRef: string;
|
|
1216
|
+
value?: any;
|
|
1217
|
+
property?: any;
|
|
1218
|
+
propertyType?: any;
|
|
1219
|
+
isReadOnly?: boolean | undefined;
|
|
1220
|
+
};
|
|
1221
|
+
iconSize: {
|
|
1222
|
+
parentRef: string;
|
|
1223
|
+
unit?: string | number | undefined;
|
|
1224
|
+
value?: any;
|
|
1225
|
+
property?: any;
|
|
1226
|
+
propertyType?: any;
|
|
1227
|
+
isReadOnly?: boolean | undefined;
|
|
1228
|
+
};
|
|
1229
|
+
iconColor: {
|
|
1230
|
+
parentRef: string;
|
|
1231
|
+
value?: any;
|
|
1232
|
+
property?: any;
|
|
1233
|
+
propertyType?: any;
|
|
1234
|
+
isReadOnly?: boolean | undefined;
|
|
1235
|
+
};
|
|
1236
|
+
selectorKey: SelectorKeysEnum;
|
|
1237
|
+
padding: any;
|
|
1238
|
+
};
|
|
1239
|
+
selectedState: {
|
|
1240
|
+
selectorKey: SelectorKeysEnum;
|
|
1241
|
+
};
|
|
1242
|
+
};
|
|
1243
|
+
};
|
|
411
1244
|
};
|
|
412
1245
|
content: {
|
|
413
1246
|
selectorKey: SelectorKeysEnum;
|