@sc-360-v2/storefront-cms-library 0.3.19 → 0.3.21
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/checkout.scss +541 -85
- package/dist/container.scss +2 -0
- package/dist/fb-dropdown.scss +25 -5
- package/dist/product-image.scss +3 -0
- package/dist/types/builder/elements/cart-attributes/index.d.ts +27 -0
- package/dist/types/builder/elements/container/index.d.ts +0 -1
- package/dist/types/builder/elements/form-builder/index.d.ts +36 -2
- package/dist/types/builder/elements/section/index.d.ts +0 -1
- 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 +232 -132
- package/dist/types/builder/tools/element-edit/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/tabs.d.ts +0 -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,85 +39,47 @@ 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;
|
|
58
|
+
unit: number;
|
|
106
59
|
};
|
|
107
60
|
};
|
|
108
61
|
design: {
|
|
109
62
|
selectorKey: SelectorKeysEnum;
|
|
110
|
-
|
|
63
|
+
selectionAccordianContainerDesign: {
|
|
64
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
65
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
66
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
67
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
68
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
69
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
70
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
71
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
72
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
73
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
74
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
75
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
76
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
77
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
78
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
79
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
80
|
+
selectorKey: SelectorKeysEnum;
|
|
81
|
+
};
|
|
82
|
+
selectionAccordianTitleDesign: {
|
|
111
83
|
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
112
84
|
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
113
85
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -119,16 +91,40 @@ export declare const getDefaultData: () => {
|
|
|
119
91
|
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
120
92
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
121
93
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
122
|
-
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
123
94
|
selectorKey: SelectorKeysEnum;
|
|
95
|
+
};
|
|
96
|
+
selectionAccordianButtonDesign: {
|
|
97
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
98
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
99
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
100
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
101
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
102
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
103
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
104
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
105
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
106
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
107
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
108
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
109
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
110
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
111
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
112
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
124
113
|
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
125
114
|
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
126
115
|
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
127
116
|
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
128
117
|
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
129
|
-
|
|
130
|
-
|
|
118
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
119
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
120
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
121
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
122
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
123
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
131
124
|
selectorKey: SelectorKeysEnum;
|
|
125
|
+
};
|
|
126
|
+
inputLabelDesign: {
|
|
127
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
132
128
|
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
133
129
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
134
130
|
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
@@ -138,45 +134,70 @@ export declare const getDefaultData: () => {
|
|
|
138
134
|
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
139
135
|
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
140
136
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
141
|
-
|
|
142
|
-
checkoutItemStyles: {
|
|
137
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
143
138
|
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
|
-
};
|
|
139
|
+
};
|
|
140
|
+
inputBoxDesign: {
|
|
141
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
142
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
143
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
144
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
145
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
146
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
147
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
148
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
149
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
150
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
151
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
152
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
153
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
154
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
155
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
156
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
157
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
168
158
|
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
169
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
170
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
171
159
|
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
172
|
-
|
|
160
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
161
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
162
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
163
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
164
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
165
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
166
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
167
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
168
|
+
selectorKey: SelectorKeysEnum;
|
|
169
|
+
};
|
|
170
|
+
inputButtonDesign: {
|
|
171
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
172
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
173
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
174
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
175
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
176
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
177
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
178
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
179
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
180
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
181
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
173
182
|
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
174
183
|
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
175
184
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
176
|
-
|
|
185
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
177
186
|
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
187
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
188
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
189
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
190
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
191
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
192
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
193
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
194
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
195
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
196
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
197
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
198
|
+
selectorKey: SelectorKeysEnum;
|
|
178
199
|
};
|
|
179
|
-
|
|
200
|
+
secondaryInputButtonDesign: {
|
|
180
201
|
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
181
202
|
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
182
203
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -188,11 +209,11 @@ export declare const getDefaultData: () => {
|
|
|
188
209
|
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
189
210
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
190
211
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
191
|
-
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
192
212
|
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
193
213
|
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
194
214
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
195
215
|
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
216
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
196
217
|
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
197
218
|
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
198
219
|
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -206,7 +227,7 @@ export declare const getDefaultData: () => {
|
|
|
206
227
|
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
207
228
|
selectorKey: SelectorKeysEnum;
|
|
208
229
|
};
|
|
209
|
-
|
|
230
|
+
inputHeadingsDesign: {
|
|
210
231
|
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
211
232
|
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
212
233
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -218,10 +239,28 @@ export declare const getDefaultData: () => {
|
|
|
218
239
|
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
219
240
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
220
241
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
242
|
+
selectorKey: SelectorKeysEnum;
|
|
243
|
+
};
|
|
244
|
+
paymentOptionsContainerDesign: {
|
|
245
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
246
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
247
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
248
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
221
249
|
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
250
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
251
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
252
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
253
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
254
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
255
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
256
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
257
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
258
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
259
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
260
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
222
261
|
selectorKey: SelectorKeysEnum;
|
|
223
262
|
};
|
|
224
|
-
|
|
263
|
+
primaryValueTextDesign: {
|
|
225
264
|
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
226
265
|
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
227
266
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -233,10 +272,9 @@ export declare const getDefaultData: () => {
|
|
|
233
272
|
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
234
273
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
235
274
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
236
|
-
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
237
275
|
selectorKey: SelectorKeysEnum;
|
|
238
276
|
};
|
|
239
|
-
|
|
277
|
+
secondaryValueTextDesign: {
|
|
240
278
|
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
241
279
|
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
242
280
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -248,10 +286,9 @@ export declare const getDefaultData: () => {
|
|
|
248
286
|
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
249
287
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
250
288
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
251
|
-
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
252
289
|
selectorKey: SelectorKeysEnum;
|
|
253
290
|
};
|
|
254
|
-
|
|
291
|
+
discardButtonDesign: {
|
|
255
292
|
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
256
293
|
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
257
294
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -263,11 +300,45 @@ export declare const getDefaultData: () => {
|
|
|
263
300
|
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
264
301
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
265
302
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
303
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
304
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
305
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
306
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
266
307
|
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
308
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
309
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
310
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
311
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
312
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
313
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
314
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
315
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
316
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
317
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
318
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
319
|
+
selectorKey: SelectorKeysEnum;
|
|
320
|
+
};
|
|
321
|
+
noteContainerDesign: {
|
|
322
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
323
|
+
showIcon: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
324
|
+
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
325
|
+
iconColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
326
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
327
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
328
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
329
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
330
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
331
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
332
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
333
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
334
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
335
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
336
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
267
337
|
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
268
338
|
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
269
339
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
270
340
|
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
341
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
271
342
|
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
272
343
|
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
273
344
|
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -281,60 +352,89 @@ export declare const getDefaultData: () => {
|
|
|
281
352
|
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
282
353
|
selectorKey: SelectorKeysEnum;
|
|
283
354
|
};
|
|
355
|
+
checkboxLabelDesign: {
|
|
356
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
357
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
358
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
359
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
360
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
361
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
362
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
363
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
364
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
365
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
366
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
367
|
+
selectorKey: SelectorKeysEnum;
|
|
368
|
+
};
|
|
284
369
|
};
|
|
285
370
|
content: {
|
|
286
371
|
selectorKey: SelectorKeysEnum;
|
|
372
|
+
showTitle: {
|
|
373
|
+
value: boolean;
|
|
374
|
+
property: string;
|
|
375
|
+
propertyType: CMSElementEditTypes;
|
|
376
|
+
};
|
|
287
377
|
title: {
|
|
288
378
|
value: string;
|
|
289
379
|
property: string;
|
|
290
380
|
propertyType: CMSElementEditTypes;
|
|
291
381
|
};
|
|
292
|
-
|
|
382
|
+
showDescription: {
|
|
293
383
|
value: boolean;
|
|
294
384
|
property: string;
|
|
295
385
|
propertyType: CMSElementEditTypes;
|
|
296
386
|
};
|
|
297
|
-
|
|
298
|
-
value:
|
|
387
|
+
description: {
|
|
388
|
+
value: string;
|
|
299
389
|
property: string;
|
|
300
390
|
propertyType: CMSElementEditTypes;
|
|
301
391
|
};
|
|
302
|
-
|
|
303
|
-
value:
|
|
392
|
+
shippingAddressLabel: {
|
|
393
|
+
value: string;
|
|
304
394
|
property: string;
|
|
305
395
|
propertyType: CMSElementEditTypes;
|
|
306
396
|
};
|
|
307
|
-
|
|
308
|
-
value:
|
|
397
|
+
shippingMethodLabel: {
|
|
398
|
+
value: string;
|
|
309
399
|
property: string;
|
|
310
400
|
propertyType: CMSElementEditTypes;
|
|
311
401
|
};
|
|
312
|
-
|
|
313
|
-
value:
|
|
402
|
+
paymentOptionsLabel: {
|
|
403
|
+
value: string;
|
|
314
404
|
property: string;
|
|
315
405
|
propertyType: CMSElementEditTypes;
|
|
316
406
|
};
|
|
317
|
-
|
|
318
|
-
value:
|
|
407
|
+
creditCardLabel: {
|
|
408
|
+
value: string;
|
|
319
409
|
property: string;
|
|
320
410
|
propertyType: CMSElementEditTypes;
|
|
321
411
|
};
|
|
322
|
-
|
|
323
|
-
value:
|
|
412
|
+
giftCardLabel: {
|
|
413
|
+
value: string;
|
|
324
414
|
property: string;
|
|
325
415
|
propertyType: CMSElementEditTypes;
|
|
326
416
|
};
|
|
327
|
-
|
|
328
|
-
value:
|
|
417
|
+
selectBillingAddressLabel: {
|
|
418
|
+
value: string;
|
|
419
|
+
property: string;
|
|
420
|
+
propertyType: CMSElementEditTypes;
|
|
421
|
+
};
|
|
422
|
+
otherPaymentOptionsLabel: {
|
|
423
|
+
value: string;
|
|
424
|
+
property: string;
|
|
425
|
+
propertyType: CMSElementEditTypes;
|
|
426
|
+
};
|
|
427
|
+
createAddressLabel: {
|
|
428
|
+
value: string;
|
|
329
429
|
property: string;
|
|
330
430
|
propertyType: CMSElementEditTypes;
|
|
331
431
|
};
|
|
332
|
-
|
|
432
|
+
showStandardDelivery: {
|
|
333
433
|
value: boolean;
|
|
334
434
|
property: string;
|
|
335
435
|
propertyType: CMSElementEditTypes;
|
|
336
436
|
};
|
|
337
|
-
|
|
437
|
+
showExpressDelivery: {
|
|
338
438
|
value: boolean;
|
|
339
439
|
property: string;
|
|
340
440
|
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