@sc-360-v2/storefront-cms-library 0.3.19 → 0.3.20
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/cartAttributes.scss +38 -0
- package/dist/fb-dropdown.scss +25 -5
- package/dist/types/builder/elements/cart-attributes/index.d.ts +27 -0
- package/dist/types/builder/elements/form-builder/index.d.ts +12 -2
- package/dist/types/builder/enums/index.d.ts +1 -0
- package/dist/types/builder/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/cartAttributes.d.ts +13 -0
- package/dist/types/builder/tools/element-edit/checkout.d.ts +324 -132
- package/dist/types/builder/tools/element-edit/index.d.ts +2 -1
- package/dist/widget.scss +1 -0
- package/package.json +1 -1
|
@@ -6,14 +6,24 @@ export declare enum SelectorKeysEnum {
|
|
|
6
6
|
LAYOUT = "layout",
|
|
7
7
|
CONTENT = "content",
|
|
8
8
|
DESIGN = "design",
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
9
|
+
SELECTION_ACCORDIAN_CONTAINER_DESIGN = "selectionAccordianContainerDesign",
|
|
10
|
+
SELECTION_ACCORDIAN_TITLE_DESIGN = "selectionAccordianTitleDesign",
|
|
11
|
+
SELECTION_ACCORDIAN_BUTTON_DESIGN = "selectionAccordianButtonDesign",
|
|
12
|
+
INPUT_LABEL_DESIGN = "inputLabelDesign",
|
|
13
|
+
INPUT_BOX_DESIGN = "inputBoxDesign",
|
|
14
|
+
INPUT_BUTTON_DESIGN = "inputButtonDesign",
|
|
15
|
+
SECONDARY_INPUT_BUTTON_DESIGN = "secondaryInputButtonDesign",
|
|
16
|
+
INPUT_HEADINGS_DESIGN = "inputHeadingsDesign",
|
|
17
|
+
PAYMENT_OPTIONS_CONTAINER_DESIGN = "paymentOptionsContainerDesign",
|
|
18
|
+
PAYMENT_OPTIONS_BUTTON_DESIGN = "paymentOptionsButtonDesign",
|
|
19
|
+
DEFAULT_STATE = "defaultState",
|
|
20
|
+
HOVER_STATE = "hoverState",
|
|
21
|
+
SELECTED_STATE = "selectedState",
|
|
22
|
+
PRIMARY_VALUE_TEXT_DESIGN = "primaryValueTextDesign",
|
|
23
|
+
SECONDARY_VALUE_TEXT_DESIGN = "secondaryValueTextDesign",
|
|
24
|
+
DISCARD_BUTTON_DESIGN = "discardButtonDesign",
|
|
25
|
+
NOTE_CONTAINER_DESIGN = "noteContainerDesign",
|
|
26
|
+
CHECKBOX_LABEL_DESIGN = "checkboxLabelDesign"
|
|
17
27
|
}
|
|
18
28
|
export declare const getDefaultData: () => {
|
|
19
29
|
layout: {
|
|
@@ -29,77 +39,19 @@ export declare const getDefaultData: () => {
|
|
|
29
39
|
displayScrollbar: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
30
40
|
positionType: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
31
41
|
pinTo: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
32
|
-
|
|
33
|
-
value:
|
|
34
|
-
property: string;
|
|
35
|
-
propertyType: CMSElementEditTypes;
|
|
36
|
-
};
|
|
37
|
-
showNumberOfItems: {
|
|
38
|
-
value: boolean;
|
|
39
|
-
property: string;
|
|
40
|
-
propertyType: CMSElementEditTypes;
|
|
41
|
-
};
|
|
42
|
-
showActions: {
|
|
43
|
-
value: boolean;
|
|
44
|
-
property: string;
|
|
45
|
-
propertyType: CMSElementEditTypes;
|
|
46
|
-
};
|
|
47
|
-
showContinueShopping: {
|
|
48
|
-
value: boolean;
|
|
49
|
-
property: string;
|
|
50
|
-
propertyType: CMSElementEditTypes;
|
|
51
|
-
};
|
|
52
|
-
continueShoppingLinkTo: {
|
|
53
|
-
value: null;
|
|
54
|
-
property: string;
|
|
55
|
-
propertyType: CMSElementEditTypes;
|
|
56
|
-
};
|
|
57
|
-
continueShoppingLink: {
|
|
58
|
-
value: string;
|
|
59
|
-
property: string;
|
|
60
|
-
propertyType: CMSElementEditTypes;
|
|
61
|
-
};
|
|
62
|
-
showAddFromWishlist: {
|
|
63
|
-
value: boolean;
|
|
64
|
-
property: string;
|
|
65
|
-
propertyType: CMSElementEditTypes;
|
|
66
|
-
};
|
|
67
|
-
showCheckoutGrouping: {
|
|
68
|
-
value: boolean;
|
|
69
|
-
property: string;
|
|
70
|
-
propertyType: CMSElementEditTypes;
|
|
71
|
-
};
|
|
72
|
-
showClearCheckout: {
|
|
73
|
-
value: boolean;
|
|
74
|
-
property: string;
|
|
75
|
-
propertyType: CMSElementEditTypes;
|
|
76
|
-
};
|
|
77
|
-
clearCheckoutLinkTo: {
|
|
78
|
-
value: string;
|
|
79
|
-
property: string;
|
|
80
|
-
propertyType: CMSElementEditTypes;
|
|
81
|
-
};
|
|
82
|
-
clearCheckoutLink: {
|
|
83
|
-
value: string;
|
|
84
|
-
property: string;
|
|
85
|
-
propertyType: CMSElementEditTypes;
|
|
86
|
-
};
|
|
87
|
-
showDownloadCheckout: {
|
|
88
|
-
value: boolean;
|
|
89
|
-
property: string;
|
|
90
|
-
propertyType: CMSElementEditTypes;
|
|
91
|
-
};
|
|
92
|
-
showShareCheckout: {
|
|
93
|
-
value: boolean;
|
|
42
|
+
titleAndInputGap: {
|
|
43
|
+
value: number;
|
|
94
44
|
property: string;
|
|
95
45
|
propertyType: CMSElementEditTypes;
|
|
46
|
+
unit: number;
|
|
96
47
|
};
|
|
97
|
-
|
|
98
|
-
value:
|
|
48
|
+
itemGap: {
|
|
49
|
+
value: number;
|
|
99
50
|
property: string;
|
|
51
|
+
unit: number;
|
|
100
52
|
propertyType: CMSElementEditTypes;
|
|
101
53
|
};
|
|
102
|
-
|
|
54
|
+
labelAndInputGap: {
|
|
103
55
|
value: number;
|
|
104
56
|
property: string;
|
|
105
57
|
propertyType: CMSElementEditTypes;
|
|
@@ -107,7 +59,26 @@ export declare const getDefaultData: () => {
|
|
|
107
59
|
};
|
|
108
60
|
design: {
|
|
109
61
|
selectorKey: SelectorKeysEnum;
|
|
110
|
-
|
|
62
|
+
selectionAccordianContainerDesign: {
|
|
63
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
64
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
65
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
66
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
67
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
68
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
69
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
70
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
71
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
72
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
73
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
74
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
75
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
76
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
77
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
78
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
79
|
+
selectorKey: SelectorKeysEnum;
|
|
80
|
+
};
|
|
81
|
+
selectionAccordianTitleDesign: {
|
|
111
82
|
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
112
83
|
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
113
84
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -119,16 +90,40 @@ export declare const getDefaultData: () => {
|
|
|
119
90
|
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
120
91
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
121
92
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
122
|
-
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
123
93
|
selectorKey: SelectorKeysEnum;
|
|
94
|
+
};
|
|
95
|
+
selectionAccordianButtonDesign: {
|
|
96
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
97
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
98
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
99
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
100
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
101
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
102
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
103
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
104
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
105
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
106
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
107
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
108
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
109
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
110
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
111
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
124
112
|
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
125
113
|
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
126
114
|
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
127
115
|
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
128
116
|
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
129
|
-
|
|
130
|
-
|
|
117
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
118
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
119
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
120
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
121
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
122
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
131
123
|
selectorKey: SelectorKeysEnum;
|
|
124
|
+
};
|
|
125
|
+
inputLabelDesign: {
|
|
126
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
132
127
|
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
133
128
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
134
129
|
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
@@ -138,45 +133,70 @@ export declare const getDefaultData: () => {
|
|
|
138
133
|
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
139
134
|
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
140
135
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
141
|
-
|
|
142
|
-
checkoutItemStyles: {
|
|
136
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
143
137
|
selectorKey: SelectorKeysEnum;
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
};
|
|
164
|
-
};
|
|
165
|
-
property: string;
|
|
166
|
-
propertyType: CMSElementEditTypes;
|
|
167
|
-
};
|
|
138
|
+
};
|
|
139
|
+
inputBoxDesign: {
|
|
140
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
141
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
142
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
143
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
144
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
145
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
146
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
147
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
148
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
149
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
150
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
151
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
152
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
153
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
154
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
155
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
156
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
168
157
|
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
169
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
170
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
171
158
|
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
172
|
-
|
|
159
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
160
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
161
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
162
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
163
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
164
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
165
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
166
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
167
|
+
selectorKey: SelectorKeysEnum;
|
|
168
|
+
};
|
|
169
|
+
inputButtonDesign: {
|
|
170
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
171
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
172
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
173
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
174
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
175
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
176
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
177
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
178
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
179
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
180
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
173
181
|
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
174
182
|
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
175
183
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
176
|
-
|
|
184
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
177
185
|
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
186
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
187
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
188
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
189
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
190
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
191
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
192
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
193
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
194
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
195
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
196
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
197
|
+
selectorKey: SelectorKeysEnum;
|
|
178
198
|
};
|
|
179
|
-
|
|
199
|
+
secondaryInputButtonDesign: {
|
|
180
200
|
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
181
201
|
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
182
202
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -188,11 +208,11 @@ export declare const getDefaultData: () => {
|
|
|
188
208
|
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
189
209
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
190
210
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
191
|
-
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
192
211
|
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
193
212
|
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
194
213
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
195
214
|
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
215
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
196
216
|
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
197
217
|
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
198
218
|
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -206,7 +226,7 @@ export declare const getDefaultData: () => {
|
|
|
206
226
|
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
207
227
|
selectorKey: SelectorKeysEnum;
|
|
208
228
|
};
|
|
209
|
-
|
|
229
|
+
inputHeadingsDesign: {
|
|
210
230
|
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
211
231
|
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
212
232
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -218,10 +238,121 @@ export declare const getDefaultData: () => {
|
|
|
218
238
|
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
219
239
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
220
240
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
241
|
+
selectorKey: SelectorKeysEnum;
|
|
242
|
+
};
|
|
243
|
+
paymentOptionsContainerDesign: {
|
|
244
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
245
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
246
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
247
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
221
248
|
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
249
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
250
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
251
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
252
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
253
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
254
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
255
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
256
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
257
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
258
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
259
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
260
|
+
selectorKey: SelectorKeysEnum;
|
|
261
|
+
};
|
|
262
|
+
paymentOptionsButtonDesign: {
|
|
222
263
|
selectorKey: SelectorKeysEnum;
|
|
264
|
+
defaultState: {
|
|
265
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
266
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
267
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
268
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
269
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
270
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
271
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
272
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
273
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
274
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
275
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
276
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
277
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
278
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
279
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
280
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
281
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
282
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
283
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
284
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
285
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
286
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
287
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
288
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
289
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
290
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
291
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
292
|
+
selectorKey: SelectorKeysEnum;
|
|
293
|
+
};
|
|
294
|
+
hoverState: {
|
|
295
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
296
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
297
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
298
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
299
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
300
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
301
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
302
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
303
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
304
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
305
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
306
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
307
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
308
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
309
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
310
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
311
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
312
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
313
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
314
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
315
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
316
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
317
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
318
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
319
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
320
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
321
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
322
|
+
selectorKey: SelectorKeysEnum;
|
|
323
|
+
};
|
|
324
|
+
selectedState: {
|
|
325
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
326
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
327
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
328
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
329
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
330
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
331
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
332
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
333
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
334
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
335
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
336
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
337
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
338
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
339
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
340
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
341
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
342
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
343
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
344
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
345
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
346
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
347
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
348
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
349
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
350
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
351
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
352
|
+
selectorKey: SelectorKeysEnum;
|
|
353
|
+
};
|
|
223
354
|
};
|
|
224
|
-
|
|
355
|
+
primaryValueTextDesign: {
|
|
225
356
|
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
226
357
|
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
227
358
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -233,10 +364,9 @@ export declare const getDefaultData: () => {
|
|
|
233
364
|
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
234
365
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
235
366
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
236
|
-
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
237
367
|
selectorKey: SelectorKeysEnum;
|
|
238
368
|
};
|
|
239
|
-
|
|
369
|
+
secondaryValueTextDesign: {
|
|
240
370
|
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
241
371
|
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
242
372
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -248,10 +378,9 @@ export declare const getDefaultData: () => {
|
|
|
248
378
|
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
249
379
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
250
380
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
251
|
-
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
252
381
|
selectorKey: SelectorKeysEnum;
|
|
253
382
|
};
|
|
254
|
-
|
|
383
|
+
discardButtonDesign: {
|
|
255
384
|
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
256
385
|
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
257
386
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -263,11 +392,45 @@ export declare const getDefaultData: () => {
|
|
|
263
392
|
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
264
393
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
265
394
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
395
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
396
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
397
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
398
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
266
399
|
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
400
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
401
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
402
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
403
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
404
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
405
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
406
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
407
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
408
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
409
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
410
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
411
|
+
selectorKey: SelectorKeysEnum;
|
|
412
|
+
};
|
|
413
|
+
noteContainerDesign: {
|
|
414
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
415
|
+
showIcon: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
416
|
+
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
417
|
+
iconColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
418
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
419
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
420
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
421
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
422
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
423
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
424
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
425
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
426
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
427
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
428
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
267
429
|
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
268
430
|
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
269
431
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
270
432
|
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
433
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
271
434
|
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
272
435
|
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
273
436
|
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -281,60 +444,89 @@ export declare const getDefaultData: () => {
|
|
|
281
444
|
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
282
445
|
selectorKey: SelectorKeysEnum;
|
|
283
446
|
};
|
|
447
|
+
checkboxLabelDesign: {
|
|
448
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
449
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
450
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
451
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
452
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
453
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
454
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
455
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
456
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
457
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
458
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
459
|
+
selectorKey: SelectorKeysEnum;
|
|
460
|
+
};
|
|
284
461
|
};
|
|
285
462
|
content: {
|
|
286
463
|
selectorKey: SelectorKeysEnum;
|
|
464
|
+
showTitle: {
|
|
465
|
+
value: boolean;
|
|
466
|
+
property: string;
|
|
467
|
+
propertyType: CMSElementEditTypes;
|
|
468
|
+
};
|
|
287
469
|
title: {
|
|
288
470
|
value: string;
|
|
289
471
|
property: string;
|
|
290
472
|
propertyType: CMSElementEditTypes;
|
|
291
473
|
};
|
|
292
|
-
|
|
474
|
+
showDescription: {
|
|
293
475
|
value: boolean;
|
|
294
476
|
property: string;
|
|
295
477
|
propertyType: CMSElementEditTypes;
|
|
296
478
|
};
|
|
297
|
-
|
|
298
|
-
value:
|
|
479
|
+
description: {
|
|
480
|
+
value: string;
|
|
299
481
|
property: string;
|
|
300
482
|
propertyType: CMSElementEditTypes;
|
|
301
483
|
};
|
|
302
|
-
|
|
303
|
-
value:
|
|
484
|
+
shippingAddressLabel: {
|
|
485
|
+
value: string;
|
|
304
486
|
property: string;
|
|
305
487
|
propertyType: CMSElementEditTypes;
|
|
306
488
|
};
|
|
307
|
-
|
|
308
|
-
value:
|
|
489
|
+
shippingMethodLabel: {
|
|
490
|
+
value: string;
|
|
309
491
|
property: string;
|
|
310
492
|
propertyType: CMSElementEditTypes;
|
|
311
493
|
};
|
|
312
|
-
|
|
313
|
-
value:
|
|
494
|
+
paymentOptionsLabel: {
|
|
495
|
+
value: string;
|
|
314
496
|
property: string;
|
|
315
497
|
propertyType: CMSElementEditTypes;
|
|
316
498
|
};
|
|
317
|
-
|
|
318
|
-
value:
|
|
499
|
+
creditCardLabel: {
|
|
500
|
+
value: string;
|
|
319
501
|
property: string;
|
|
320
502
|
propertyType: CMSElementEditTypes;
|
|
321
503
|
};
|
|
322
|
-
|
|
323
|
-
value:
|
|
504
|
+
giftCardLabel: {
|
|
505
|
+
value: string;
|
|
324
506
|
property: string;
|
|
325
507
|
propertyType: CMSElementEditTypes;
|
|
326
508
|
};
|
|
327
|
-
|
|
328
|
-
value:
|
|
509
|
+
selectBillingAddressLabel: {
|
|
510
|
+
value: string;
|
|
511
|
+
property: string;
|
|
512
|
+
propertyType: CMSElementEditTypes;
|
|
513
|
+
};
|
|
514
|
+
otherPaymentOptionsLabel: {
|
|
515
|
+
value: string;
|
|
516
|
+
property: string;
|
|
517
|
+
propertyType: CMSElementEditTypes;
|
|
518
|
+
};
|
|
519
|
+
createAddressLabel: {
|
|
520
|
+
value: string;
|
|
329
521
|
property: string;
|
|
330
522
|
propertyType: CMSElementEditTypes;
|
|
331
523
|
};
|
|
332
|
-
|
|
524
|
+
showStandardDelivery: {
|
|
333
525
|
value: boolean;
|
|
334
526
|
property: string;
|
|
335
527
|
propertyType: CMSElementEditTypes;
|
|
336
528
|
};
|
|
337
|
-
|
|
529
|
+
showExpressDelivery: {
|
|
338
530
|
value: boolean;
|
|
339
531
|
property: string;
|
|
340
532
|
propertyType: CMSElementEditTypes;
|
|
@@ -95,4 +95,5 @@ import * as filterResults from "./filterResults";
|
|
|
95
95
|
import * as productSizeChart from "./productSizeChart";
|
|
96
96
|
import * as userElements from "./userElements";
|
|
97
97
|
import * as badge from "./badge";
|
|
98
|
-
|
|
98
|
+
import * as cartAttributes from "./cartAttributes";
|
|
99
|
+
export { amountEstimator, bulkVariantPicker, button, code, staticText, common, container, countdown, embed, faq, gallerySlider, grid, image, imageHotspot, map, paymentMethods, pickupLocations, price, productActions, productHighlights, productImage, productInventory, productPromotions, quantitySelector, scroll, section, shippingEstimator, slideShowLayouter, social, stack, storeLocations, table, tabs, text, uomSelector, variantPicker, video, volumePricing, lightbox, cart, profile, repeater, repeaterItem, product, menu, productOptions, productDetails, category, subCategory, brand, bundle, brandImage, filters, sort, pastOrders, quotes, rfqs, lightBoxV2, allocations, search, layouter, layouterItem, categoryDetails, contactUs, login, resetPassword, breadcrumbs, iconLibrary, searchResultsHeading, itemStock, cartDetails, cartSummary, checkout, allocationDetails, line, tabsV2, tabContainer, marchandiserSets, createForm, quickLinks, addOrder, buyForWithTabs, buyForTabsContainer, toaster, spotlight, bundleDetails, productCustomizations, iconList, orderStatus, menuV2, menuItem, layouterPro, layouterProItem, filterResults, productSizeChart, userElements, badge, cartAttributes, };
|
package/dist/widget.scss
CHANGED