@sc-360-v2/storefront-cms-library 0.4.75 → 0.4.76
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/builder.js +1 -1
- package/dist/button.scss +299 -292
- package/dist/cart-summary.scss +318 -0
- package/dist/countdown.scss +774 -751
- package/dist/gallery-slider-temp.scss +235 -14
- package/dist/product-image.scss +225 -13
- package/dist/profile.scss +1 -1
- package/dist/types/builder/tools/element-edit/addProductsTab.d.ts +30 -0
- package/dist/types/builder/tools/element-edit/bundle.d.ts +40 -0
- package/dist/types/builder/tools/element-edit/bundleDetails.d.ts +20 -0
- package/dist/types/builder/tools/element-edit/buttonInstance.d.ts +20 -0
- package/dist/types/builder/tools/element-edit/cartSummary.d.ts +545 -5
- package/dist/types/builder/tools/element-edit/coupon.d.ts +20 -0
- package/dist/types/builder/tools/element-edit/embroidery.d.ts +10 -0
- package/dist/types/builder/tools/element-edit/gallery-slider.d.ts +47 -2
- package/dist/types/builder/tools/element-edit/product-image.d.ts +47 -2
- package/dist/uom-selector.scss +23 -0
- package/package.json +1 -1
|
@@ -34,6 +34,7 @@ export declare enum SelectorKeysEnum {
|
|
|
34
34
|
REVIEW_ORDER = "reviewOrder",
|
|
35
35
|
CREATE_SUB_ORDERS = "createSubOrders",
|
|
36
36
|
SUBMIT_QUOTE = "submitQuote",
|
|
37
|
+
SIGN_UP = "signUp",
|
|
37
38
|
HOVER_STATE = "hoverState",
|
|
38
39
|
DEFAULT_STATE = "defaultState",
|
|
39
40
|
SELECTED_STATE = "selected"
|
|
@@ -65,6 +66,11 @@ export declare const getDefaultData: () => {
|
|
|
65
66
|
property: string;
|
|
66
67
|
propertyType: CMSElementEditTypes;
|
|
67
68
|
};
|
|
69
|
+
showLineItems: {
|
|
70
|
+
value: boolean;
|
|
71
|
+
property: string;
|
|
72
|
+
propertyType: CMSElementEditTypes;
|
|
73
|
+
};
|
|
68
74
|
showNumberOfItems: {
|
|
69
75
|
value: boolean;
|
|
70
76
|
property: string;
|
|
@@ -80,17 +86,17 @@ export declare const getDefaultData: () => {
|
|
|
80
86
|
property: string;
|
|
81
87
|
propertyType: CMSElementEditTypes;
|
|
82
88
|
};
|
|
83
|
-
|
|
89
|
+
showEmbellishmentPrice: {
|
|
84
90
|
value: boolean;
|
|
85
91
|
property: string;
|
|
86
92
|
propertyType: CMSElementEditTypes;
|
|
87
93
|
};
|
|
88
|
-
|
|
94
|
+
showShippingCharges: {
|
|
89
95
|
value: boolean;
|
|
90
96
|
property: string;
|
|
91
97
|
propertyType: CMSElementEditTypes;
|
|
92
98
|
};
|
|
93
|
-
|
|
99
|
+
showTax: {
|
|
94
100
|
value: boolean;
|
|
95
101
|
property: string;
|
|
96
102
|
propertyType: CMSElementEditTypes;
|
|
@@ -105,12 +111,22 @@ export declare const getDefaultData: () => {
|
|
|
105
111
|
property: string;
|
|
106
112
|
propertyType: CMSElementEditTypes;
|
|
107
113
|
};
|
|
108
|
-
|
|
114
|
+
showGiftCardAmount: {
|
|
109
115
|
value: boolean;
|
|
110
116
|
property: string;
|
|
111
117
|
propertyType: CMSElementEditTypes;
|
|
112
118
|
};
|
|
113
|
-
|
|
119
|
+
showDealAmount: {
|
|
120
|
+
value: boolean;
|
|
121
|
+
property: string;
|
|
122
|
+
propertyType: CMSElementEditTypes;
|
|
123
|
+
};
|
|
124
|
+
showAttributesAmount: {
|
|
125
|
+
value: boolean;
|
|
126
|
+
property: string;
|
|
127
|
+
propertyType: CMSElementEditTypes;
|
|
128
|
+
};
|
|
129
|
+
showProductInformation: {
|
|
114
130
|
value: boolean;
|
|
115
131
|
property: string;
|
|
116
132
|
propertyType: CMSElementEditTypes;
|
|
@@ -163,6 +179,14 @@ export declare const getDefaultData: () => {
|
|
|
163
179
|
value: null;
|
|
164
180
|
propertyType: CMSElementEditTypes;
|
|
165
181
|
};
|
|
182
|
+
showSignUpButton: {
|
|
183
|
+
value: boolean;
|
|
184
|
+
propertyType: CMSElementEditTypes;
|
|
185
|
+
};
|
|
186
|
+
signUpButtonLinkTo: {
|
|
187
|
+
value: null;
|
|
188
|
+
propertyType: CMSElementEditTypes;
|
|
189
|
+
};
|
|
166
190
|
showProductImage: {
|
|
167
191
|
value: boolean;
|
|
168
192
|
property: string;
|
|
@@ -2390,6 +2414,11 @@ export declare const getDefaultData: () => {
|
|
|
2390
2414
|
propertyType?: any;
|
|
2391
2415
|
isReadOnly?: boolean | undefined;
|
|
2392
2416
|
};
|
|
2417
|
+
textTransform: {
|
|
2418
|
+
value: string;
|
|
2419
|
+
property: string;
|
|
2420
|
+
propertyType: CMSElementEditTypes;
|
|
2421
|
+
};
|
|
2393
2422
|
buttonStyle: {
|
|
2394
2423
|
parentRef: string;
|
|
2395
2424
|
propertyType: CMSElementEditTypes;
|
|
@@ -2610,6 +2639,11 @@ export declare const getDefaultData: () => {
|
|
|
2610
2639
|
propertyType?: any;
|
|
2611
2640
|
isReadOnly?: boolean | undefined;
|
|
2612
2641
|
};
|
|
2642
|
+
textTransform: {
|
|
2643
|
+
value: string;
|
|
2644
|
+
property: string;
|
|
2645
|
+
propertyType: CMSElementEditTypes;
|
|
2646
|
+
};
|
|
2613
2647
|
buttonStyle: {
|
|
2614
2648
|
parentRef: string;
|
|
2615
2649
|
propertyType: CMSElementEditTypes;
|
|
@@ -2836,6 +2870,11 @@ export declare const getDefaultData: () => {
|
|
|
2836
2870
|
propertyType?: any;
|
|
2837
2871
|
isReadOnly?: boolean | undefined;
|
|
2838
2872
|
};
|
|
2873
|
+
textTransform: {
|
|
2874
|
+
value: string;
|
|
2875
|
+
property: string;
|
|
2876
|
+
propertyType: CMSElementEditTypes;
|
|
2877
|
+
};
|
|
2839
2878
|
buttonStyle: {
|
|
2840
2879
|
parentRef: string;
|
|
2841
2880
|
propertyType: CMSElementEditTypes;
|
|
@@ -3056,6 +3095,11 @@ export declare const getDefaultData: () => {
|
|
|
3056
3095
|
propertyType?: any;
|
|
3057
3096
|
isReadOnly?: boolean | undefined;
|
|
3058
3097
|
};
|
|
3098
|
+
textTransform: {
|
|
3099
|
+
value: string;
|
|
3100
|
+
property: string;
|
|
3101
|
+
propertyType: CMSElementEditTypes;
|
|
3102
|
+
};
|
|
3059
3103
|
buttonStyle: {
|
|
3060
3104
|
parentRef: string;
|
|
3061
3105
|
propertyType: CMSElementEditTypes;
|
|
@@ -3282,6 +3326,11 @@ export declare const getDefaultData: () => {
|
|
|
3282
3326
|
propertyType?: any;
|
|
3283
3327
|
isReadOnly?: boolean | undefined;
|
|
3284
3328
|
};
|
|
3329
|
+
textTransform: {
|
|
3330
|
+
value: string;
|
|
3331
|
+
property: string;
|
|
3332
|
+
propertyType: CMSElementEditTypes;
|
|
3333
|
+
};
|
|
3285
3334
|
buttonStyle: {
|
|
3286
3335
|
parentRef: string;
|
|
3287
3336
|
propertyType: CMSElementEditTypes;
|
|
@@ -3502,6 +3551,11 @@ export declare const getDefaultData: () => {
|
|
|
3502
3551
|
propertyType?: any;
|
|
3503
3552
|
isReadOnly?: boolean | undefined;
|
|
3504
3553
|
};
|
|
3554
|
+
textTransform: {
|
|
3555
|
+
value: string;
|
|
3556
|
+
property: string;
|
|
3557
|
+
propertyType: CMSElementEditTypes;
|
|
3558
|
+
};
|
|
3505
3559
|
buttonStyle: {
|
|
3506
3560
|
parentRef: string;
|
|
3507
3561
|
propertyType: CMSElementEditTypes;
|
|
@@ -3728,6 +3782,11 @@ export declare const getDefaultData: () => {
|
|
|
3728
3782
|
propertyType?: any;
|
|
3729
3783
|
isReadOnly?: boolean | undefined;
|
|
3730
3784
|
};
|
|
3785
|
+
textTransform: {
|
|
3786
|
+
value: string;
|
|
3787
|
+
property: string;
|
|
3788
|
+
propertyType: CMSElementEditTypes;
|
|
3789
|
+
};
|
|
3731
3790
|
buttonStyle: {
|
|
3732
3791
|
parentRef: string;
|
|
3733
3792
|
propertyType: CMSElementEditTypes;
|
|
@@ -3948,6 +4007,11 @@ export declare const getDefaultData: () => {
|
|
|
3948
4007
|
propertyType?: any;
|
|
3949
4008
|
isReadOnly?: boolean | undefined;
|
|
3950
4009
|
};
|
|
4010
|
+
textTransform: {
|
|
4011
|
+
value: string;
|
|
4012
|
+
property: string;
|
|
4013
|
+
propertyType: CMSElementEditTypes;
|
|
4014
|
+
};
|
|
3951
4015
|
buttonStyle: {
|
|
3952
4016
|
parentRef: string;
|
|
3953
4017
|
propertyType: CMSElementEditTypes;
|
|
@@ -4174,6 +4238,11 @@ export declare const getDefaultData: () => {
|
|
|
4174
4238
|
propertyType?: any;
|
|
4175
4239
|
isReadOnly?: boolean | undefined;
|
|
4176
4240
|
};
|
|
4241
|
+
textTransform: {
|
|
4242
|
+
value: string;
|
|
4243
|
+
property: string;
|
|
4244
|
+
propertyType: CMSElementEditTypes;
|
|
4245
|
+
};
|
|
4177
4246
|
buttonStyle: {
|
|
4178
4247
|
parentRef: string;
|
|
4179
4248
|
propertyType: CMSElementEditTypes;
|
|
@@ -4394,6 +4463,11 @@ export declare const getDefaultData: () => {
|
|
|
4394
4463
|
propertyType?: any;
|
|
4395
4464
|
isReadOnly?: boolean | undefined;
|
|
4396
4465
|
};
|
|
4466
|
+
textTransform: {
|
|
4467
|
+
value: string;
|
|
4468
|
+
property: string;
|
|
4469
|
+
propertyType: CMSElementEditTypes;
|
|
4470
|
+
};
|
|
4397
4471
|
buttonStyle: {
|
|
4398
4472
|
parentRef: string;
|
|
4399
4473
|
propertyType: CMSElementEditTypes;
|
|
@@ -4620,6 +4694,11 @@ export declare const getDefaultData: () => {
|
|
|
4620
4694
|
propertyType?: any;
|
|
4621
4695
|
isReadOnly?: boolean | undefined;
|
|
4622
4696
|
};
|
|
4697
|
+
textTransform: {
|
|
4698
|
+
value: string;
|
|
4699
|
+
property: string;
|
|
4700
|
+
propertyType: CMSElementEditTypes;
|
|
4701
|
+
};
|
|
4623
4702
|
buttonStyle: {
|
|
4624
4703
|
parentRef: string;
|
|
4625
4704
|
propertyType: CMSElementEditTypes;
|
|
@@ -4840,6 +4919,467 @@ export declare const getDefaultData: () => {
|
|
|
4840
4919
|
propertyType?: any;
|
|
4841
4920
|
isReadOnly?: boolean | undefined;
|
|
4842
4921
|
};
|
|
4922
|
+
textTransform: {
|
|
4923
|
+
value: string;
|
|
4924
|
+
property: string;
|
|
4925
|
+
propertyType: CMSElementEditTypes;
|
|
4926
|
+
};
|
|
4927
|
+
buttonStyle: {
|
|
4928
|
+
parentRef: string;
|
|
4929
|
+
propertyType: CMSElementEditTypes;
|
|
4930
|
+
};
|
|
4931
|
+
buttonText: {
|
|
4932
|
+
value: string;
|
|
4933
|
+
property: string;
|
|
4934
|
+
propertyType: CMSElementEditTypes;
|
|
4935
|
+
};
|
|
4936
|
+
iconPadding: {
|
|
4937
|
+
value: number;
|
|
4938
|
+
property: string;
|
|
4939
|
+
parentRef: string;
|
|
4940
|
+
propertyType: CMSElementEditTypes;
|
|
4941
|
+
};
|
|
4942
|
+
iconPosition: {
|
|
4943
|
+
parentRef: string;
|
|
4944
|
+
propertyType: CMSElementEditTypes;
|
|
4945
|
+
};
|
|
4946
|
+
iconAndTextSpacing: {
|
|
4947
|
+
property: string;
|
|
4948
|
+
unit: number;
|
|
4949
|
+
parentRef: string;
|
|
4950
|
+
propertyType: CMSElementEditTypes;
|
|
4951
|
+
};
|
|
4952
|
+
alignment: {
|
|
4953
|
+
property: string;
|
|
4954
|
+
parentRef: string;
|
|
4955
|
+
propertyType: CMSElementEditTypes;
|
|
4956
|
+
};
|
|
4957
|
+
buttonType: {
|
|
4958
|
+
value: string;
|
|
4959
|
+
propertyType: CMSElementEditTypes;
|
|
4960
|
+
};
|
|
4961
|
+
width: {
|
|
4962
|
+
value: string;
|
|
4963
|
+
unit: number;
|
|
4964
|
+
};
|
|
4965
|
+
padding: any;
|
|
4966
|
+
selectorKey: SelectorKeysEnum;
|
|
4967
|
+
};
|
|
4968
|
+
selectedState: {
|
|
4969
|
+
selectorKey: SelectorKeysEnum;
|
|
4970
|
+
};
|
|
4971
|
+
};
|
|
4972
|
+
signUp: {
|
|
4973
|
+
selectorKey: SelectorKeysEnum;
|
|
4974
|
+
defaultState: {
|
|
4975
|
+
backgroundColor: {
|
|
4976
|
+
parentRef: string;
|
|
4977
|
+
value?: any;
|
|
4978
|
+
property?: any;
|
|
4979
|
+
propertyType?: any;
|
|
4980
|
+
isReadOnly?: boolean | undefined;
|
|
4981
|
+
};
|
|
4982
|
+
borderColor: {
|
|
4983
|
+
parentRef: string;
|
|
4984
|
+
value?: any;
|
|
4985
|
+
property?: any;
|
|
4986
|
+
propertyType?: any;
|
|
4987
|
+
isReadOnly?: boolean | undefined;
|
|
4988
|
+
};
|
|
4989
|
+
borderStyle: {
|
|
4990
|
+
parentRef: string;
|
|
4991
|
+
value?: any;
|
|
4992
|
+
property?: any;
|
|
4993
|
+
propertyType?: any;
|
|
4994
|
+
isReadOnly?: boolean | undefined;
|
|
4995
|
+
};
|
|
4996
|
+
borderPerSlide: {
|
|
4997
|
+
parentRef: string;
|
|
4998
|
+
isAll: boolean;
|
|
4999
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
5000
|
+
property: string;
|
|
5001
|
+
iscss?: boolean | undefined;
|
|
5002
|
+
propertyType?: any;
|
|
5003
|
+
};
|
|
5004
|
+
showBorder: {
|
|
5005
|
+
value: boolean;
|
|
5006
|
+
parentRef: string;
|
|
5007
|
+
property?: any;
|
|
5008
|
+
propertyType?: any;
|
|
5009
|
+
isReadOnly?: boolean | undefined;
|
|
5010
|
+
};
|
|
5011
|
+
showShadow: {
|
|
5012
|
+
parentRef: string;
|
|
5013
|
+
value?: any;
|
|
5014
|
+
property?: any;
|
|
5015
|
+
propertyType?: any;
|
|
5016
|
+
isReadOnly?: boolean | undefined;
|
|
5017
|
+
};
|
|
5018
|
+
shadowColor: {
|
|
5019
|
+
parentRef: string;
|
|
5020
|
+
value?: any;
|
|
5021
|
+
property?: any;
|
|
5022
|
+
propertyType?: any;
|
|
5023
|
+
isReadOnly?: boolean | undefined;
|
|
5024
|
+
};
|
|
5025
|
+
blur: {
|
|
5026
|
+
parentRef: string;
|
|
5027
|
+
unit?: string | number | undefined;
|
|
5028
|
+
value?: any;
|
|
5029
|
+
property?: any;
|
|
5030
|
+
propertyType?: any;
|
|
5031
|
+
isReadOnly?: boolean | undefined;
|
|
5032
|
+
};
|
|
5033
|
+
spread: {
|
|
5034
|
+
parentRef: string;
|
|
5035
|
+
unit?: string | number | undefined;
|
|
5036
|
+
value?: any;
|
|
5037
|
+
property?: any;
|
|
5038
|
+
propertyType?: any;
|
|
5039
|
+
isReadOnly?: boolean | undefined;
|
|
5040
|
+
};
|
|
5041
|
+
angle: {
|
|
5042
|
+
parentRef: string;
|
|
5043
|
+
unit?: string | number | undefined;
|
|
5044
|
+
value?: any;
|
|
5045
|
+
property?: any;
|
|
5046
|
+
propertyType?: any;
|
|
5047
|
+
isReadOnly?: boolean | undefined;
|
|
5048
|
+
};
|
|
5049
|
+
borderRadius: {
|
|
5050
|
+
parentRef: string;
|
|
5051
|
+
isAll: boolean;
|
|
5052
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
5053
|
+
property: string;
|
|
5054
|
+
iscss?: boolean | undefined;
|
|
5055
|
+
propertyType?: any;
|
|
5056
|
+
};
|
|
5057
|
+
font: {
|
|
5058
|
+
parentRef: string;
|
|
5059
|
+
value?: any;
|
|
5060
|
+
property?: any;
|
|
5061
|
+
propertyType?: any;
|
|
5062
|
+
isReadOnly?: boolean | undefined;
|
|
5063
|
+
};
|
|
5064
|
+
fontSize: {
|
|
5065
|
+
parentRef: string;
|
|
5066
|
+
unit?: string | number | undefined;
|
|
5067
|
+
value?: any;
|
|
5068
|
+
property?: any;
|
|
5069
|
+
propertyType?: any;
|
|
5070
|
+
isReadOnly?: boolean | undefined;
|
|
5071
|
+
};
|
|
5072
|
+
textColor: {
|
|
5073
|
+
parentRef: string;
|
|
5074
|
+
value?: any;
|
|
5075
|
+
property?: any;
|
|
5076
|
+
propertyType?: any;
|
|
5077
|
+
isReadOnly?: boolean | undefined;
|
|
5078
|
+
};
|
|
5079
|
+
bold: {
|
|
5080
|
+
value: string;
|
|
5081
|
+
parentRef: string;
|
|
5082
|
+
property?: any;
|
|
5083
|
+
propertyType?: any;
|
|
5084
|
+
isReadOnly?: boolean | undefined;
|
|
5085
|
+
};
|
|
5086
|
+
italic: {
|
|
5087
|
+
parentRef: string;
|
|
5088
|
+
value?: any;
|
|
5089
|
+
property?: any;
|
|
5090
|
+
propertyType?: any;
|
|
5091
|
+
isReadOnly?: boolean | undefined;
|
|
5092
|
+
};
|
|
5093
|
+
linethrough: {
|
|
5094
|
+
parentRef: string;
|
|
5095
|
+
value?: any;
|
|
5096
|
+
property?: any;
|
|
5097
|
+
propertyType?: any;
|
|
5098
|
+
isReadOnly?: boolean | undefined;
|
|
5099
|
+
};
|
|
5100
|
+
underline: {
|
|
5101
|
+
parentRef: string;
|
|
5102
|
+
value?: any;
|
|
5103
|
+
property?: any;
|
|
5104
|
+
propertyType?: any;
|
|
5105
|
+
isReadOnly?: boolean | undefined;
|
|
5106
|
+
};
|
|
5107
|
+
textAlign: {
|
|
5108
|
+
parentRef: string;
|
|
5109
|
+
value?: any;
|
|
5110
|
+
property?: any;
|
|
5111
|
+
propertyType?: any;
|
|
5112
|
+
isReadOnly?: boolean | undefined;
|
|
5113
|
+
};
|
|
5114
|
+
characterSpacing: {
|
|
5115
|
+
parentRef: string;
|
|
5116
|
+
unit?: string | number | undefined;
|
|
5117
|
+
value?: any;
|
|
5118
|
+
property?: any;
|
|
5119
|
+
propertyType?: any;
|
|
5120
|
+
isReadOnly?: boolean | undefined;
|
|
5121
|
+
};
|
|
5122
|
+
lineHeight: {
|
|
5123
|
+
parentRef: string;
|
|
5124
|
+
unit?: string | number | undefined;
|
|
5125
|
+
value?: any;
|
|
5126
|
+
property?: any;
|
|
5127
|
+
propertyType?: any;
|
|
5128
|
+
isReadOnly?: boolean | undefined;
|
|
5129
|
+
};
|
|
5130
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
5131
|
+
showIcon: {
|
|
5132
|
+
parentRef: string;
|
|
5133
|
+
value?: any;
|
|
5134
|
+
property?: any;
|
|
5135
|
+
propertyType?: any;
|
|
5136
|
+
isReadOnly?: boolean | undefined;
|
|
5137
|
+
};
|
|
5138
|
+
iconSize: {
|
|
5139
|
+
parentRef: string;
|
|
5140
|
+
unit?: string | number | undefined;
|
|
5141
|
+
value?: any;
|
|
5142
|
+
property?: any;
|
|
5143
|
+
propertyType?: any;
|
|
5144
|
+
isReadOnly?: boolean | undefined;
|
|
5145
|
+
};
|
|
5146
|
+
iconColor: {
|
|
5147
|
+
parentRef: string;
|
|
5148
|
+
value?: any;
|
|
5149
|
+
property?: any;
|
|
5150
|
+
propertyType?: any;
|
|
5151
|
+
isReadOnly?: boolean | undefined;
|
|
5152
|
+
};
|
|
5153
|
+
textTransform: {
|
|
5154
|
+
value: string;
|
|
5155
|
+
property: string;
|
|
5156
|
+
propertyType: CMSElementEditTypes;
|
|
5157
|
+
};
|
|
5158
|
+
buttonStyle: {
|
|
5159
|
+
parentRef: string;
|
|
5160
|
+
propertyType: CMSElementEditTypes;
|
|
5161
|
+
};
|
|
5162
|
+
buttonText: {
|
|
5163
|
+
value: string;
|
|
5164
|
+
property: string;
|
|
5165
|
+
propertyType: CMSElementEditTypes;
|
|
5166
|
+
};
|
|
5167
|
+
iconPadding: {
|
|
5168
|
+
value: number;
|
|
5169
|
+
property: string;
|
|
5170
|
+
parentRef: string;
|
|
5171
|
+
propertyType: CMSElementEditTypes;
|
|
5172
|
+
};
|
|
5173
|
+
iconPosition: {
|
|
5174
|
+
parentRef: string;
|
|
5175
|
+
propertyType: CMSElementEditTypes;
|
|
5176
|
+
};
|
|
5177
|
+
iconAndTextSpacing: {
|
|
5178
|
+
property: string;
|
|
5179
|
+
unit: number;
|
|
5180
|
+
parentRef: string;
|
|
5181
|
+
propertyType: CMSElementEditTypes;
|
|
5182
|
+
};
|
|
5183
|
+
alignment: {
|
|
5184
|
+
property: string;
|
|
5185
|
+
parentRef: string;
|
|
5186
|
+
propertyType: CMSElementEditTypes;
|
|
5187
|
+
};
|
|
5188
|
+
buttonType: {
|
|
5189
|
+
value: string;
|
|
5190
|
+
propertyType: CMSElementEditTypes;
|
|
5191
|
+
};
|
|
5192
|
+
width: {
|
|
5193
|
+
value: string;
|
|
5194
|
+
unit: number;
|
|
5195
|
+
};
|
|
5196
|
+
padding: any;
|
|
5197
|
+
selectorKey: SelectorKeysEnum;
|
|
5198
|
+
};
|
|
5199
|
+
hoverState: {
|
|
5200
|
+
backgroundColor: {
|
|
5201
|
+
parentRef: string;
|
|
5202
|
+
value?: any;
|
|
5203
|
+
property?: any;
|
|
5204
|
+
propertyType?: any;
|
|
5205
|
+
isReadOnly?: boolean | undefined;
|
|
5206
|
+
};
|
|
5207
|
+
borderColor: {
|
|
5208
|
+
parentRef: string;
|
|
5209
|
+
value?: any;
|
|
5210
|
+
property?: any;
|
|
5211
|
+
propertyType?: any;
|
|
5212
|
+
isReadOnly?: boolean | undefined;
|
|
5213
|
+
};
|
|
5214
|
+
borderStyle: {
|
|
5215
|
+
parentRef: string;
|
|
5216
|
+
value?: any;
|
|
5217
|
+
property?: any;
|
|
5218
|
+
propertyType?: any;
|
|
5219
|
+
isReadOnly?: boolean | undefined;
|
|
5220
|
+
};
|
|
5221
|
+
borderPerSlide: {
|
|
5222
|
+
parentRef: string;
|
|
5223
|
+
isAll: boolean;
|
|
5224
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
5225
|
+
property: string;
|
|
5226
|
+
iscss?: boolean | undefined;
|
|
5227
|
+
propertyType?: any;
|
|
5228
|
+
};
|
|
5229
|
+
showBorder: {
|
|
5230
|
+
value: boolean;
|
|
5231
|
+
parentRef: string;
|
|
5232
|
+
property?: any;
|
|
5233
|
+
propertyType?: any;
|
|
5234
|
+
isReadOnly?: boolean | undefined;
|
|
5235
|
+
};
|
|
5236
|
+
showShadow: {
|
|
5237
|
+
parentRef: string;
|
|
5238
|
+
value?: any;
|
|
5239
|
+
property?: any;
|
|
5240
|
+
propertyType?: any;
|
|
5241
|
+
isReadOnly?: boolean | undefined;
|
|
5242
|
+
};
|
|
5243
|
+
shadowColor: {
|
|
5244
|
+
parentRef: string;
|
|
5245
|
+
value?: any;
|
|
5246
|
+
property?: any;
|
|
5247
|
+
propertyType?: any;
|
|
5248
|
+
isReadOnly?: boolean | undefined;
|
|
5249
|
+
};
|
|
5250
|
+
blur: {
|
|
5251
|
+
parentRef: string;
|
|
5252
|
+
unit?: string | number | undefined;
|
|
5253
|
+
value?: any;
|
|
5254
|
+
property?: any;
|
|
5255
|
+
propertyType?: any;
|
|
5256
|
+
isReadOnly?: boolean | undefined;
|
|
5257
|
+
};
|
|
5258
|
+
spread: {
|
|
5259
|
+
parentRef: string;
|
|
5260
|
+
unit?: string | number | undefined;
|
|
5261
|
+
value?: any;
|
|
5262
|
+
property?: any;
|
|
5263
|
+
propertyType?: any;
|
|
5264
|
+
isReadOnly?: boolean | undefined;
|
|
5265
|
+
};
|
|
5266
|
+
angle: {
|
|
5267
|
+
parentRef: string;
|
|
5268
|
+
unit?: string | number | undefined;
|
|
5269
|
+
value?: any;
|
|
5270
|
+
property?: any;
|
|
5271
|
+
propertyType?: any;
|
|
5272
|
+
isReadOnly?: boolean | undefined;
|
|
5273
|
+
};
|
|
5274
|
+
borderRadius: {
|
|
5275
|
+
parentRef: string;
|
|
5276
|
+
isAll: boolean;
|
|
5277
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
5278
|
+
property: string;
|
|
5279
|
+
iscss?: boolean | undefined;
|
|
5280
|
+
propertyType?: any;
|
|
5281
|
+
};
|
|
5282
|
+
font: {
|
|
5283
|
+
parentRef: string;
|
|
5284
|
+
value?: any;
|
|
5285
|
+
property?: any;
|
|
5286
|
+
propertyType?: any;
|
|
5287
|
+
isReadOnly?: boolean | undefined;
|
|
5288
|
+
};
|
|
5289
|
+
fontSize: {
|
|
5290
|
+
parentRef: string;
|
|
5291
|
+
unit?: string | number | undefined;
|
|
5292
|
+
value?: any;
|
|
5293
|
+
property?: any;
|
|
5294
|
+
propertyType?: any;
|
|
5295
|
+
isReadOnly?: boolean | undefined;
|
|
5296
|
+
};
|
|
5297
|
+
textColor: {
|
|
5298
|
+
parentRef: string;
|
|
5299
|
+
value?: any;
|
|
5300
|
+
property?: any;
|
|
5301
|
+
propertyType?: any;
|
|
5302
|
+
isReadOnly?: boolean | undefined;
|
|
5303
|
+
};
|
|
5304
|
+
bold: {
|
|
5305
|
+
value: string;
|
|
5306
|
+
parentRef: string;
|
|
5307
|
+
property?: any;
|
|
5308
|
+
propertyType?: any;
|
|
5309
|
+
isReadOnly?: boolean | undefined;
|
|
5310
|
+
};
|
|
5311
|
+
italic: {
|
|
5312
|
+
parentRef: string;
|
|
5313
|
+
value?: any;
|
|
5314
|
+
property?: any;
|
|
5315
|
+
propertyType?: any;
|
|
5316
|
+
isReadOnly?: boolean | undefined;
|
|
5317
|
+
};
|
|
5318
|
+
linethrough: {
|
|
5319
|
+
parentRef: string;
|
|
5320
|
+
value?: any;
|
|
5321
|
+
property?: any;
|
|
5322
|
+
propertyType?: any;
|
|
5323
|
+
isReadOnly?: boolean | undefined;
|
|
5324
|
+
};
|
|
5325
|
+
underline: {
|
|
5326
|
+
parentRef: string;
|
|
5327
|
+
value?: any;
|
|
5328
|
+
property?: any;
|
|
5329
|
+
propertyType?: any;
|
|
5330
|
+
isReadOnly?: boolean | undefined;
|
|
5331
|
+
};
|
|
5332
|
+
textAlign: {
|
|
5333
|
+
parentRef: string;
|
|
5334
|
+
value?: any;
|
|
5335
|
+
property?: any;
|
|
5336
|
+
propertyType?: any;
|
|
5337
|
+
isReadOnly?: boolean | undefined;
|
|
5338
|
+
};
|
|
5339
|
+
characterSpacing: {
|
|
5340
|
+
parentRef: string;
|
|
5341
|
+
unit?: string | number | undefined;
|
|
5342
|
+
value?: any;
|
|
5343
|
+
property?: any;
|
|
5344
|
+
propertyType?: any;
|
|
5345
|
+
isReadOnly?: boolean | undefined;
|
|
5346
|
+
};
|
|
5347
|
+
lineHeight: {
|
|
5348
|
+
parentRef: string;
|
|
5349
|
+
unit?: string | number | undefined;
|
|
5350
|
+
value?: any;
|
|
5351
|
+
property?: any;
|
|
5352
|
+
propertyType?: any;
|
|
5353
|
+
isReadOnly?: boolean | undefined;
|
|
5354
|
+
};
|
|
5355
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
5356
|
+
showIcon: {
|
|
5357
|
+
parentRef: string;
|
|
5358
|
+
value?: any;
|
|
5359
|
+
property?: any;
|
|
5360
|
+
propertyType?: any;
|
|
5361
|
+
isReadOnly?: boolean | undefined;
|
|
5362
|
+
};
|
|
5363
|
+
iconSize: {
|
|
5364
|
+
parentRef: string;
|
|
5365
|
+
unit?: string | number | undefined;
|
|
5366
|
+
value?: any;
|
|
5367
|
+
property?: any;
|
|
5368
|
+
propertyType?: any;
|
|
5369
|
+
isReadOnly?: boolean | undefined;
|
|
5370
|
+
};
|
|
5371
|
+
iconColor: {
|
|
5372
|
+
parentRef: string;
|
|
5373
|
+
value?: any;
|
|
5374
|
+
property?: any;
|
|
5375
|
+
propertyType?: any;
|
|
5376
|
+
isReadOnly?: boolean | undefined;
|
|
5377
|
+
};
|
|
5378
|
+
textTransform: {
|
|
5379
|
+
value: string;
|
|
5380
|
+
property: string;
|
|
5381
|
+
propertyType: CMSElementEditTypes;
|
|
5382
|
+
};
|
|
4843
5383
|
buttonStyle: {
|
|
4844
5384
|
parentRef: string;
|
|
4845
5385
|
propertyType: CMSElementEditTypes;
|