@sc-360-v2/storefront-cms-library 0.3.41 → 0.3.43
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/buyForHeaders.scss +5 -0
- package/dist/cart-details.scss +348 -42
- package/dist/cart-summary.scss +1347 -167
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/order-status.scss +1068 -202
- package/dist/prefix-list.scss +19 -10
- package/dist/quick-order-pad.scss +3 -0
- package/dist/section.scss +6 -2
- package/dist/transform-properties-module.scss +20 -0
- package/dist/types/builder/enums/index.d.ts +1 -0
- package/dist/types/builder/interfaces/global.d.ts +25 -0
- package/dist/types/builder/tools/element-edit/addProductsTab.d.ts +306 -460
- package/dist/types/builder/tools/element-edit/allocationDetails.d.ts +7 -1
- package/dist/types/builder/tools/element-edit/cartAttributes.d.ts +818 -99
- package/dist/types/builder/tools/element-edit/cartDetails.d.ts +234 -13
- package/dist/types/builder/tools/element-edit/cartSummary.d.ts +4 -31
- package/dist/types/builder/tools/element-edit/common.d.ts +6 -0
- package/dist/types/builder/tools/element-edit/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/orderStatus.d.ts +1076 -101
- package/dist/types/builder/tools/element-edit/quotaDetails.d.ts +34 -0
- package/package.json +1 -1
|
@@ -11,6 +11,20 @@ export declare enum SelectorKeysEnum {
|
|
|
11
11
|
DEFAULT_STATE = "defaultState",
|
|
12
12
|
SELECTED_STATE = "selectedState",
|
|
13
13
|
HOVER_STATE = "hoverState",
|
|
14
|
+
HEADER_TITILE = "headerTitle",
|
|
15
|
+
ALLOCATION = "allocation",
|
|
16
|
+
ALLOCATION_TITLE = "title",
|
|
17
|
+
ALLOCATION_QUOTA = "quotaLeft",
|
|
18
|
+
ALLOCATION_PAYMENT_METHOD = "eligiblePaymentMethod",
|
|
19
|
+
PRODUCT_CARD = "productCard",
|
|
20
|
+
PRODUCT_CARD_WIDGET = "productCardWidget",
|
|
21
|
+
PRODUCT_CARD_TITLE = "productCardTitle",
|
|
22
|
+
PRODUCT_CARD_DESCRIPTION = "productCardDescription",
|
|
23
|
+
PRODUCT_CARD_PRICE = "productCardPrice",
|
|
24
|
+
PRODUCT_DETAILS = "productDetails",
|
|
25
|
+
PRODUCT_TITLE = "productTitle",
|
|
26
|
+
PRODUCT_DESCRIPTION = "productDescription",
|
|
27
|
+
PRODUCT_PRICE = "productPrice",
|
|
14
28
|
ALLOCATIONS_HEADING_SDESIGN = "allocationsHeadingDesign",
|
|
15
29
|
ALLOCATIONS_NAME_DESIGN = "allocationsNameDesign",
|
|
16
30
|
ALLOCATIONS_DESCRIPTION_DESIGN = "allocationsDescriptionDesign",
|
|
@@ -136,9 +150,69 @@ export declare const getDefaultData: () => {
|
|
|
136
150
|
};
|
|
137
151
|
design: {
|
|
138
152
|
selectorKey: SelectorKeysEnum;
|
|
139
|
-
|
|
153
|
+
headerTitle: {
|
|
154
|
+
borderColor: CMSIBCommonInterface;
|
|
155
|
+
borderStyle: CMSIBCommonInterface;
|
|
156
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
157
|
+
showBorder: CMSIBCommonInterface;
|
|
158
|
+
showShadow: CMSIBCommonInterface;
|
|
159
|
+
shadowColor: CMSIBCommonInterface;
|
|
160
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
161
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
162
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
163
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
164
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
165
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
166
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
167
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
168
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
169
|
+
theme: CMSIBCommonInterface;
|
|
170
|
+
font: CMSIBCommonInterface;
|
|
171
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
172
|
+
textColor: CMSIBCommonInterface;
|
|
173
|
+
bold: CMSIBCommonInterface;
|
|
174
|
+
italic: CMSIBCommonInterface;
|
|
175
|
+
linethrough: CMSIBCommonInterface;
|
|
176
|
+
underline: CMSIBCommonInterface;
|
|
177
|
+
textAlign: CMSIBCommonInterface;
|
|
178
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
179
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
180
|
+
backgroundColor: CMSIBCommonInterface;
|
|
140
181
|
selectorKey: SelectorKeysEnum;
|
|
141
|
-
|
|
182
|
+
};
|
|
183
|
+
allocation: {
|
|
184
|
+
selectorKey: SelectorKeysEnum;
|
|
185
|
+
title: {
|
|
186
|
+
borderColor: CMSIBCommonInterface;
|
|
187
|
+
borderStyle: CMSIBCommonInterface;
|
|
188
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
189
|
+
showBorder: CMSIBCommonInterface;
|
|
190
|
+
showShadow: CMSIBCommonInterface;
|
|
191
|
+
shadowColor: CMSIBCommonInterface;
|
|
192
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
193
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
194
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
195
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
196
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
197
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
198
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
199
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
200
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
201
|
+
theme: CMSIBCommonInterface;
|
|
202
|
+
font: CMSIBCommonInterface;
|
|
203
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
204
|
+
textColor: CMSIBCommonInterface;
|
|
205
|
+
bold: CMSIBCommonInterface;
|
|
206
|
+
italic: CMSIBCommonInterface;
|
|
207
|
+
linethrough: CMSIBCommonInterface;
|
|
208
|
+
underline: CMSIBCommonInterface;
|
|
209
|
+
textAlign: CMSIBCommonInterface;
|
|
210
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
211
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
212
|
+
backgroundColor: CMSIBCommonInterface;
|
|
213
|
+
selectorKey: SelectorKeysEnum;
|
|
214
|
+
};
|
|
215
|
+
quotaLeft: {
|
|
142
216
|
borderColor: CMSIBCommonInterface;
|
|
143
217
|
borderStyle: CMSIBCommonInterface;
|
|
144
218
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -168,7 +242,7 @@ export declare const getDefaultData: () => {
|
|
|
168
242
|
backgroundColor: CMSIBCommonInterface;
|
|
169
243
|
selectorKey: SelectorKeysEnum;
|
|
170
244
|
};
|
|
171
|
-
|
|
245
|
+
eligiblePaymentMethod: {
|
|
172
246
|
borderColor: CMSIBCommonInterface;
|
|
173
247
|
borderStyle: CMSIBCommonInterface;
|
|
174
248
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -199,66 +273,56 @@ export declare const getDefaultData: () => {
|
|
|
199
273
|
selectorKey: SelectorKeysEnum;
|
|
200
274
|
};
|
|
201
275
|
};
|
|
202
|
-
|
|
276
|
+
productCard: {
|
|
203
277
|
selectorKey: SelectorKeysEnum;
|
|
204
|
-
|
|
278
|
+
productCardWidget: {
|
|
279
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
280
|
+
borderColor: CMSIBCommonInterface;
|
|
281
|
+
borderStyle: CMSIBCommonInterface;
|
|
282
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
283
|
+
showBorder: CMSIBCommonInterface;
|
|
284
|
+
showShadow: CMSIBCommonInterface;
|
|
285
|
+
shadowColor: CMSIBCommonInterface;
|
|
286
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
287
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
288
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
289
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
290
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
291
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
292
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
293
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
294
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
295
|
+
theme: CMSIBCommonInterface;
|
|
296
|
+
font: CMSIBCommonInterface;
|
|
297
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
298
|
+
textColor: CMSIBCommonInterface;
|
|
299
|
+
bold: CMSIBCommonInterface;
|
|
300
|
+
italic: CMSIBCommonInterface;
|
|
301
|
+
linethrough: CMSIBCommonInterface;
|
|
302
|
+
underline: CMSIBCommonInterface;
|
|
303
|
+
textAlign: CMSIBCommonInterface;
|
|
304
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
305
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
306
|
+
backgroundColor: CMSIBCommonInterface;
|
|
205
307
|
selectorKey: SelectorKeysEnum;
|
|
206
|
-
defaultState: {
|
|
207
|
-
borderColor: CMSIBCommonInterface;
|
|
208
|
-
borderStyle: CMSIBCommonInterface;
|
|
209
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
210
|
-
showBorder: CMSIBCommonInterface;
|
|
211
|
-
showShadow: CMSIBCommonInterface;
|
|
212
|
-
shadowColor: CMSIBCommonInterface;
|
|
213
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
214
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
215
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
216
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
217
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
218
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
219
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
220
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
221
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
222
|
-
selectorKey: SelectorKeysEnum;
|
|
223
|
-
};
|
|
224
|
-
selectedState: {
|
|
225
|
-
borderColor: CMSIBCommonInterface;
|
|
226
|
-
borderStyle: CMSIBCommonInterface;
|
|
227
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
228
|
-
showBorder: CMSIBCommonInterface;
|
|
229
|
-
showShadow: CMSIBCommonInterface;
|
|
230
|
-
shadowColor: CMSIBCommonInterface;
|
|
231
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
232
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
233
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
234
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
235
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
236
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
237
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
238
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
239
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
240
|
-
selectorKey: SelectorKeysEnum;
|
|
241
|
-
};
|
|
242
|
-
hoverState: {
|
|
243
|
-
borderColor: CMSIBCommonInterface;
|
|
244
|
-
borderStyle: CMSIBCommonInterface;
|
|
245
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
246
|
-
showBorder: CMSIBCommonInterface;
|
|
247
|
-
showShadow: CMSIBCommonInterface;
|
|
248
|
-
shadowColor: CMSIBCommonInterface;
|
|
249
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
250
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
251
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
252
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
253
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
254
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
255
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
256
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
257
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
258
|
-
selectorKey: SelectorKeysEnum;
|
|
259
|
-
};
|
|
260
308
|
};
|
|
261
|
-
|
|
309
|
+
productCardTitle: {
|
|
310
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
311
|
+
borderColor: CMSIBCommonInterface;
|
|
312
|
+
borderStyle: CMSIBCommonInterface;
|
|
313
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
314
|
+
showBorder: CMSIBCommonInterface;
|
|
315
|
+
showShadow: CMSIBCommonInterface;
|
|
316
|
+
shadowColor: CMSIBCommonInterface;
|
|
317
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
318
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
319
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
320
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
321
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
322
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
323
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
324
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
325
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
262
326
|
theme: CMSIBCommonInterface;
|
|
263
327
|
font: CMSIBCommonInterface;
|
|
264
328
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -273,7 +337,23 @@ export declare const getDefaultData: () => {
|
|
|
273
337
|
backgroundColor: CMSIBCommonInterface;
|
|
274
338
|
selectorKey: SelectorKeysEnum;
|
|
275
339
|
};
|
|
276
|
-
|
|
340
|
+
productCardDescription: {
|
|
341
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
342
|
+
borderColor: CMSIBCommonInterface;
|
|
343
|
+
borderStyle: CMSIBCommonInterface;
|
|
344
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
345
|
+
showBorder: CMSIBCommonInterface;
|
|
346
|
+
showShadow: CMSIBCommonInterface;
|
|
347
|
+
shadowColor: CMSIBCommonInterface;
|
|
348
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
349
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
350
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
351
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
352
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
353
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
354
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
355
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
356
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
277
357
|
theme: CMSIBCommonInterface;
|
|
278
358
|
font: CMSIBCommonInterface;
|
|
279
359
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -288,7 +368,23 @@ export declare const getDefaultData: () => {
|
|
|
288
368
|
backgroundColor: CMSIBCommonInterface;
|
|
289
369
|
selectorKey: SelectorKeysEnum;
|
|
290
370
|
};
|
|
291
|
-
|
|
371
|
+
productCardPrice: {
|
|
372
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
373
|
+
borderColor: CMSIBCommonInterface;
|
|
374
|
+
borderStyle: CMSIBCommonInterface;
|
|
375
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
376
|
+
showBorder: CMSIBCommonInterface;
|
|
377
|
+
showShadow: CMSIBCommonInterface;
|
|
378
|
+
shadowColor: CMSIBCommonInterface;
|
|
379
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
380
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
381
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
382
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
383
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
384
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
385
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
386
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
387
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
292
388
|
theme: CMSIBCommonInterface;
|
|
293
389
|
font: CMSIBCommonInterface;
|
|
294
390
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -304,9 +400,25 @@ export declare const getDefaultData: () => {
|
|
|
304
400
|
selectorKey: SelectorKeysEnum;
|
|
305
401
|
};
|
|
306
402
|
};
|
|
307
|
-
|
|
403
|
+
productDetails: {
|
|
308
404
|
selectorKey: SelectorKeysEnum;
|
|
309
|
-
|
|
405
|
+
productTitle: {
|
|
406
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
407
|
+
borderColor: CMSIBCommonInterface;
|
|
408
|
+
borderStyle: CMSIBCommonInterface;
|
|
409
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
410
|
+
showBorder: CMSIBCommonInterface;
|
|
411
|
+
showShadow: CMSIBCommonInterface;
|
|
412
|
+
shadowColor: CMSIBCommonInterface;
|
|
413
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
414
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
415
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
416
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
417
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
418
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
419
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
420
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
421
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
310
422
|
theme: CMSIBCommonInterface;
|
|
311
423
|
font: CMSIBCommonInterface;
|
|
312
424
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -321,7 +433,23 @@ export declare const getDefaultData: () => {
|
|
|
321
433
|
backgroundColor: CMSIBCommonInterface;
|
|
322
434
|
selectorKey: SelectorKeysEnum;
|
|
323
435
|
};
|
|
324
|
-
|
|
436
|
+
productDescription: {
|
|
437
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
438
|
+
borderColor: CMSIBCommonInterface;
|
|
439
|
+
borderStyle: CMSIBCommonInterface;
|
|
440
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
441
|
+
showBorder: CMSIBCommonInterface;
|
|
442
|
+
showShadow: CMSIBCommonInterface;
|
|
443
|
+
shadowColor: CMSIBCommonInterface;
|
|
444
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
445
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
446
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
447
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
448
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
449
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
450
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
451
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
452
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
325
453
|
theme: CMSIBCommonInterface;
|
|
326
454
|
font: CMSIBCommonInterface;
|
|
327
455
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -336,7 +464,23 @@ export declare const getDefaultData: () => {
|
|
|
336
464
|
backgroundColor: CMSIBCommonInterface;
|
|
337
465
|
selectorKey: SelectorKeysEnum;
|
|
338
466
|
};
|
|
339
|
-
|
|
467
|
+
productPrice: {
|
|
468
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
469
|
+
borderColor: CMSIBCommonInterface;
|
|
470
|
+
borderStyle: CMSIBCommonInterface;
|
|
471
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
472
|
+
showBorder: CMSIBCommonInterface;
|
|
473
|
+
showShadow: CMSIBCommonInterface;
|
|
474
|
+
shadowColor: CMSIBCommonInterface;
|
|
475
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
476
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
477
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
478
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
479
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
480
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
481
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
482
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
483
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
340
484
|
theme: CMSIBCommonInterface;
|
|
341
485
|
font: CMSIBCommonInterface;
|
|
342
486
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -351,69 +495,28 @@ export declare const getDefaultData: () => {
|
|
|
351
495
|
backgroundColor: CMSIBCommonInterface;
|
|
352
496
|
selectorKey: SelectorKeysEnum;
|
|
353
497
|
};
|
|
354
|
-
|
|
498
|
+
variantPicker: {
|
|
355
499
|
selectorKey: SelectorKeysEnum;
|
|
356
|
-
|
|
357
|
-
borderColor: CMSIBCommonInterface;
|
|
358
|
-
borderStyle: CMSIBCommonInterface;
|
|
359
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
360
|
-
showBorder: CMSIBCommonInterface;
|
|
361
|
-
showShadow: CMSIBCommonInterface;
|
|
362
|
-
shadowColor: CMSIBCommonInterface;
|
|
363
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
364
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
365
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
366
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
367
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
368
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
369
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
370
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
371
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
372
|
-
theme: CMSIBCommonInterface;
|
|
373
|
-
font: CMSIBCommonInterface;
|
|
374
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
375
|
-
textColor: CMSIBCommonInterface;
|
|
376
|
-
bold: CMSIBCommonInterface;
|
|
377
|
-
italic: CMSIBCommonInterface;
|
|
378
|
-
linethrough: CMSIBCommonInterface;
|
|
379
|
-
underline: CMSIBCommonInterface;
|
|
380
|
-
textAlign: CMSIBCommonInterface;
|
|
381
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
382
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
383
|
-
backgroundColor: CMSIBCommonInterface;
|
|
500
|
+
optionStyle: {
|
|
384
501
|
selectorKey: SelectorKeysEnum;
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
theme: CMSIBCommonInterface;
|
|
403
|
-
font: CMSIBCommonInterface;
|
|
404
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
405
|
-
textColor: CMSIBCommonInterface;
|
|
406
|
-
bold: CMSIBCommonInterface;
|
|
407
|
-
italic: CMSIBCommonInterface;
|
|
408
|
-
linethrough: CMSIBCommonInterface;
|
|
409
|
-
underline: CMSIBCommonInterface;
|
|
410
|
-
textAlign: CMSIBCommonInterface;
|
|
411
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
412
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
502
|
+
contentAlignment: {
|
|
503
|
+
value: string;
|
|
504
|
+
property: string;
|
|
505
|
+
propertyType: CMSElementEditTypes;
|
|
506
|
+
};
|
|
507
|
+
horizontalPadding: {
|
|
508
|
+
value: string;
|
|
509
|
+
unit: number;
|
|
510
|
+
property: string;
|
|
511
|
+
propertyType: CMSElementEditTypes;
|
|
512
|
+
};
|
|
513
|
+
verticalPadding: {
|
|
514
|
+
value: string;
|
|
515
|
+
property: string;
|
|
516
|
+
unit: number;
|
|
517
|
+
propertyType: CMSElementEditTypes;
|
|
518
|
+
};
|
|
413
519
|
backgroundColor: CMSIBCommonInterface;
|
|
414
|
-
selectorKey: SelectorKeysEnum;
|
|
415
|
-
};
|
|
416
|
-
defaultState: {
|
|
417
520
|
borderColor: CMSIBCommonInterface;
|
|
418
521
|
borderStyle: CMSIBCommonInterface;
|
|
419
522
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -424,161 +527,78 @@ export declare const getDefaultData: () => {
|
|
|
424
527
|
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
425
528
|
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
426
529
|
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
427
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
428
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
429
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
430
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
431
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
432
|
-
theme: CMSIBCommonInterface;
|
|
433
|
-
font: CMSIBCommonInterface;
|
|
434
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
435
|
-
textColor: CMSIBCommonInterface;
|
|
436
|
-
bold: CMSIBCommonInterface;
|
|
437
|
-
italic: CMSIBCommonInterface;
|
|
438
|
-
linethrough: CMSIBCommonInterface;
|
|
439
|
-
underline: CMSIBCommonInterface;
|
|
440
|
-
textAlign: CMSIBCommonInterface;
|
|
441
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
442
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
443
|
-
backgroundColor: CMSIBCommonInterface;
|
|
444
|
-
selectorKey: SelectorKeysEnum;
|
|
445
530
|
};
|
|
446
|
-
|
|
447
|
-
swatchOptionValueStyle: {
|
|
448
|
-
selectorKey: SelectorKeysEnum;
|
|
449
|
-
selectedState: {
|
|
450
|
-
borderColor: CMSIBCommonInterface;
|
|
451
|
-
borderStyle: CMSIBCommonInterface;
|
|
452
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
453
|
-
showBorder: CMSIBCommonInterface;
|
|
454
|
-
showShadow: CMSIBCommonInterface;
|
|
455
|
-
shadowColor: CMSIBCommonInterface;
|
|
456
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
457
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
458
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
459
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
460
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
461
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
462
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
463
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
464
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
465
|
-
selectorKey: SelectorKeysEnum;
|
|
466
|
-
};
|
|
467
|
-
hoverState: {
|
|
468
|
-
borderColor: CMSIBCommonInterface;
|
|
469
|
-
borderStyle: CMSIBCommonInterface;
|
|
470
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
471
|
-
showBorder: CMSIBCommonInterface;
|
|
472
|
-
showShadow: CMSIBCommonInterface;
|
|
473
|
-
shadowColor: CMSIBCommonInterface;
|
|
474
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
475
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
476
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
477
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
478
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
479
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
480
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
481
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
482
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
483
|
-
selectorKey: SelectorKeysEnum;
|
|
484
|
-
};
|
|
485
|
-
defaultState: {
|
|
486
|
-
borderColor: CMSIBCommonInterface;
|
|
487
|
-
borderStyle: CMSIBCommonInterface;
|
|
488
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
489
|
-
showBorder: CMSIBCommonInterface;
|
|
490
|
-
showShadow: CMSIBCommonInterface;
|
|
491
|
-
shadowColor: CMSIBCommonInterface;
|
|
492
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
493
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
494
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
495
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
496
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
497
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
498
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
499
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
500
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
531
|
+
swatchOptionValueStyle: {
|
|
501
532
|
selectorKey: SelectorKeysEnum;
|
|
533
|
+
defaultState: {
|
|
534
|
+
selectorKey: SelectorKeysEnum;
|
|
535
|
+
backgroundColor: CMSIBCommonInterface;
|
|
536
|
+
borderColor: CMSIBCommonInterface;
|
|
537
|
+
borderStyle: CMSIBCommonInterface;
|
|
538
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
539
|
+
showBorder: CMSIBCommonInterface;
|
|
540
|
+
showShadow: CMSIBCommonInterface;
|
|
541
|
+
shadowColor: CMSIBCommonInterface;
|
|
542
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
543
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
544
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
545
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
546
|
+
backgroundShape: {
|
|
547
|
+
value: string;
|
|
548
|
+
propertyType: CMSElementEditTypes;
|
|
549
|
+
};
|
|
550
|
+
swatchShape: {
|
|
551
|
+
value: string;
|
|
552
|
+
propertyType: CMSElementEditTypes;
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
hoverState: {
|
|
556
|
+
selectorKey: SelectorKeysEnum;
|
|
557
|
+
};
|
|
558
|
+
selectedState: {
|
|
559
|
+
selectorKey: SelectorKeysEnum;
|
|
560
|
+
};
|
|
502
561
|
};
|
|
503
|
-
|
|
504
|
-
singleOptionValueStyle: {
|
|
505
|
-
selectorKey: SelectorKeysEnum;
|
|
506
|
-
selectedState: {
|
|
507
|
-
borderColor: CMSIBCommonInterface;
|
|
508
|
-
borderStyle: CMSIBCommonInterface;
|
|
509
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
510
|
-
showBorder: CMSIBCommonInterface;
|
|
511
|
-
showShadow: CMSIBCommonInterface;
|
|
512
|
-
shadowColor: CMSIBCommonInterface;
|
|
513
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
514
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
515
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
516
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
517
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
518
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
519
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
520
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
521
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
522
|
-
theme: CMSIBCommonInterface;
|
|
523
|
-
font: CMSIBCommonInterface;
|
|
524
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
525
|
-
textColor: CMSIBCommonInterface;
|
|
526
|
-
bold: CMSIBCommonInterface;
|
|
527
|
-
italic: CMSIBCommonInterface;
|
|
528
|
-
linethrough: CMSIBCommonInterface;
|
|
529
|
-
underline: CMSIBCommonInterface;
|
|
530
|
-
textAlign: CMSIBCommonInterface;
|
|
531
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
532
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
533
|
-
backgroundColor: CMSIBCommonInterface;
|
|
562
|
+
singleOptionValueStyle: {
|
|
534
563
|
selectorKey: SelectorKeysEnum;
|
|
564
|
+
defaultState: {
|
|
565
|
+
selectorKey: SelectorKeysEnum;
|
|
566
|
+
backgroundColor: CMSIBCommonInterface;
|
|
567
|
+
borderColor: CMSIBCommonInterface;
|
|
568
|
+
borderStyle: CMSIBCommonInterface;
|
|
569
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
570
|
+
showBorder: CMSIBCommonInterface;
|
|
571
|
+
showShadow: CMSIBCommonInterface;
|
|
572
|
+
shadowColor: CMSIBCommonInterface;
|
|
573
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
574
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
575
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
576
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
577
|
+
backgroundShape: {
|
|
578
|
+
value: string;
|
|
579
|
+
propertyType: CMSElementEditTypes;
|
|
580
|
+
};
|
|
581
|
+
theme: CMSIBCommonInterface;
|
|
582
|
+
font: CMSIBCommonInterface;
|
|
583
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
584
|
+
textColor: CMSIBCommonInterface;
|
|
585
|
+
bold: CMSIBCommonInterface;
|
|
586
|
+
italic: CMSIBCommonInterface;
|
|
587
|
+
linethrough: CMSIBCommonInterface;
|
|
588
|
+
underline: CMSIBCommonInterface;
|
|
589
|
+
textAlign: CMSIBCommonInterface;
|
|
590
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
591
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
592
|
+
};
|
|
593
|
+
hoverState: {
|
|
594
|
+
selectorKey: SelectorKeysEnum;
|
|
595
|
+
};
|
|
596
|
+
selectedState: {
|
|
597
|
+
selectorKey: SelectorKeysEnum;
|
|
598
|
+
};
|
|
535
599
|
};
|
|
536
|
-
|
|
537
|
-
borderColor: CMSIBCommonInterface;
|
|
538
|
-
borderStyle: CMSIBCommonInterface;
|
|
539
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
540
|
-
showBorder: CMSIBCommonInterface;
|
|
541
|
-
showShadow: CMSIBCommonInterface;
|
|
542
|
-
shadowColor: CMSIBCommonInterface;
|
|
543
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
544
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
545
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
546
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
547
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
548
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
549
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
550
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
551
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
552
|
-
theme: CMSIBCommonInterface;
|
|
553
|
-
font: CMSIBCommonInterface;
|
|
554
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
555
|
-
textColor: CMSIBCommonInterface;
|
|
556
|
-
bold: CMSIBCommonInterface;
|
|
557
|
-
italic: CMSIBCommonInterface;
|
|
558
|
-
linethrough: CMSIBCommonInterface;
|
|
559
|
-
underline: CMSIBCommonInterface;
|
|
560
|
-
textAlign: CMSIBCommonInterface;
|
|
561
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
562
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
563
|
-
backgroundColor: CMSIBCommonInterface;
|
|
600
|
+
optionTitle: {
|
|
564
601
|
selectorKey: SelectorKeysEnum;
|
|
565
|
-
};
|
|
566
|
-
defaultState: {
|
|
567
|
-
borderColor: CMSIBCommonInterface;
|
|
568
|
-
borderStyle: CMSIBCommonInterface;
|
|
569
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
570
|
-
showBorder: CMSIBCommonInterface;
|
|
571
|
-
showShadow: CMSIBCommonInterface;
|
|
572
|
-
shadowColor: CMSIBCommonInterface;
|
|
573
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
574
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
575
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
576
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
577
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
578
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
579
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
580
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
581
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
582
602
|
theme: CMSIBCommonInterface;
|
|
583
603
|
font: CMSIBCommonInterface;
|
|
584
604
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -590,195 +610,21 @@ export declare const getDefaultData: () => {
|
|
|
590
610
|
textAlign: CMSIBCommonInterface;
|
|
591
611
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
592
612
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
593
|
-
backgroundColor: CMSIBCommonInterface;
|
|
594
|
-
selectorKey: SelectorKeysEnum;
|
|
595
613
|
};
|
|
596
614
|
};
|
|
597
615
|
optionTitle: {
|
|
598
616
|
selectorKey: SelectorKeysEnum;
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
611
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
612
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
613
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
614
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
615
|
-
theme: CMSIBCommonInterface;
|
|
616
|
-
font: CMSIBCommonInterface;
|
|
617
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
618
|
-
textColor: CMSIBCommonInterface;
|
|
619
|
-
bold: CMSIBCommonInterface;
|
|
620
|
-
italic: CMSIBCommonInterface;
|
|
621
|
-
linethrough: CMSIBCommonInterface;
|
|
622
|
-
underline: CMSIBCommonInterface;
|
|
623
|
-
textAlign: CMSIBCommonInterface;
|
|
624
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
625
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
626
|
-
backgroundColor: CMSIBCommonInterface;
|
|
627
|
-
selectorKey: SelectorKeysEnum;
|
|
628
|
-
};
|
|
629
|
-
hoverState: {
|
|
630
|
-
borderColor: CMSIBCommonInterface;
|
|
631
|
-
borderStyle: CMSIBCommonInterface;
|
|
632
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
633
|
-
showBorder: CMSIBCommonInterface;
|
|
634
|
-
showShadow: CMSIBCommonInterface;
|
|
635
|
-
shadowColor: CMSIBCommonInterface;
|
|
636
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
637
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
638
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
639
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
640
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
641
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
642
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
643
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
644
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
645
|
-
theme: CMSIBCommonInterface;
|
|
646
|
-
font: CMSIBCommonInterface;
|
|
647
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
648
|
-
textColor: CMSIBCommonInterface;
|
|
649
|
-
bold: CMSIBCommonInterface;
|
|
650
|
-
italic: CMSIBCommonInterface;
|
|
651
|
-
linethrough: CMSIBCommonInterface;
|
|
652
|
-
underline: CMSIBCommonInterface;
|
|
653
|
-
textAlign: CMSIBCommonInterface;
|
|
654
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
655
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
656
|
-
backgroundColor: CMSIBCommonInterface;
|
|
657
|
-
selectorKey: SelectorKeysEnum;
|
|
658
|
-
};
|
|
659
|
-
defaultState: {
|
|
660
|
-
borderColor: CMSIBCommonInterface;
|
|
661
|
-
borderStyle: CMSIBCommonInterface;
|
|
662
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
663
|
-
showBorder: CMSIBCommonInterface;
|
|
664
|
-
showShadow: CMSIBCommonInterface;
|
|
665
|
-
shadowColor: CMSIBCommonInterface;
|
|
666
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
667
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
668
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
669
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
670
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
671
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
672
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
673
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
674
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
675
|
-
theme: CMSIBCommonInterface;
|
|
676
|
-
font: CMSIBCommonInterface;
|
|
677
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
678
|
-
textColor: CMSIBCommonInterface;
|
|
679
|
-
bold: CMSIBCommonInterface;
|
|
680
|
-
italic: CMSIBCommonInterface;
|
|
681
|
-
linethrough: CMSIBCommonInterface;
|
|
682
|
-
underline: CMSIBCommonInterface;
|
|
683
|
-
textAlign: CMSIBCommonInterface;
|
|
684
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
685
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
686
|
-
backgroundColor: CMSIBCommonInterface;
|
|
687
|
-
selectorKey: SelectorKeysEnum;
|
|
688
|
-
};
|
|
689
|
-
};
|
|
690
|
-
addToCartButtonDesign: {
|
|
691
|
-
selectorKey: SelectorKeysEnum;
|
|
692
|
-
selectedState: {
|
|
693
|
-
borderColor: CMSIBCommonInterface;
|
|
694
|
-
borderStyle: CMSIBCommonInterface;
|
|
695
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
696
|
-
showBorder: CMSIBCommonInterface;
|
|
697
|
-
showShadow: CMSIBCommonInterface;
|
|
698
|
-
shadowColor: CMSIBCommonInterface;
|
|
699
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
700
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
701
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
702
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
703
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
704
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
705
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
706
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
707
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
708
|
-
theme: CMSIBCommonInterface;
|
|
709
|
-
font: CMSIBCommonInterface;
|
|
710
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
711
|
-
textColor: CMSIBCommonInterface;
|
|
712
|
-
bold: CMSIBCommonInterface;
|
|
713
|
-
italic: CMSIBCommonInterface;
|
|
714
|
-
linethrough: CMSIBCommonInterface;
|
|
715
|
-
underline: CMSIBCommonInterface;
|
|
716
|
-
textAlign: CMSIBCommonInterface;
|
|
717
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
718
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
719
|
-
backgroundColor: CMSIBCommonInterface;
|
|
720
|
-
selectorKey: SelectorKeysEnum;
|
|
721
|
-
};
|
|
722
|
-
hoverState: {
|
|
723
|
-
borderColor: CMSIBCommonInterface;
|
|
724
|
-
borderStyle: CMSIBCommonInterface;
|
|
725
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
726
|
-
showBorder: CMSIBCommonInterface;
|
|
727
|
-
showShadow: CMSIBCommonInterface;
|
|
728
|
-
shadowColor: CMSIBCommonInterface;
|
|
729
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
730
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
731
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
732
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
733
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
734
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
735
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
736
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
737
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
738
|
-
theme: CMSIBCommonInterface;
|
|
739
|
-
font: CMSIBCommonInterface;
|
|
740
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
741
|
-
textColor: CMSIBCommonInterface;
|
|
742
|
-
bold: CMSIBCommonInterface;
|
|
743
|
-
italic: CMSIBCommonInterface;
|
|
744
|
-
linethrough: CMSIBCommonInterface;
|
|
745
|
-
underline: CMSIBCommonInterface;
|
|
746
|
-
textAlign: CMSIBCommonInterface;
|
|
747
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
748
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
749
|
-
backgroundColor: CMSIBCommonInterface;
|
|
750
|
-
selectorKey: SelectorKeysEnum;
|
|
751
|
-
};
|
|
752
|
-
defaultState: {
|
|
753
|
-
borderColor: CMSIBCommonInterface;
|
|
754
|
-
borderStyle: CMSIBCommonInterface;
|
|
755
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
756
|
-
showBorder: CMSIBCommonInterface;
|
|
757
|
-
showShadow: CMSIBCommonInterface;
|
|
758
|
-
shadowColor: CMSIBCommonInterface;
|
|
759
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
760
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
761
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
762
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
763
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
764
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
765
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
766
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
767
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
768
|
-
theme: CMSIBCommonInterface;
|
|
769
|
-
font: CMSIBCommonInterface;
|
|
770
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
771
|
-
textColor: CMSIBCommonInterface;
|
|
772
|
-
bold: CMSIBCommonInterface;
|
|
773
|
-
italic: CMSIBCommonInterface;
|
|
774
|
-
linethrough: CMSIBCommonInterface;
|
|
775
|
-
underline: CMSIBCommonInterface;
|
|
776
|
-
textAlign: CMSIBCommonInterface;
|
|
777
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
778
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
779
|
-
backgroundColor: CMSIBCommonInterface;
|
|
780
|
-
selectorKey: SelectorKeysEnum;
|
|
781
|
-
};
|
|
617
|
+
theme: CMSIBCommonInterface;
|
|
618
|
+
font: CMSIBCommonInterface;
|
|
619
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
620
|
+
textColor: CMSIBCommonInterface;
|
|
621
|
+
bold: CMSIBCommonInterface;
|
|
622
|
+
italic: CMSIBCommonInterface;
|
|
623
|
+
linethrough: CMSIBCommonInterface;
|
|
624
|
+
underline: CMSIBCommonInterface;
|
|
625
|
+
textAlign: CMSIBCommonInterface;
|
|
626
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
627
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
782
628
|
};
|
|
783
629
|
};
|
|
784
630
|
};
|