@sc-360-v2/storefront-cms-library 0.3.38 → 0.3.40

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.
Files changed (42) hide show
  1. package/dist/add-products-tab.scss +388 -0
  2. package/dist/badge.scss +84 -82
  3. package/dist/builder.js +1 -1
  4. package/dist/bulk-order-pad.scss +29 -34
  5. package/dist/buyForHeaders.scss +120 -2
  6. package/dist/buyForPopup.scss +41 -7
  7. package/dist/cart-details.scss +62 -65
  8. package/dist/cart-products-sidebar.scss +113 -83
  9. package/dist/cartAttributes.scss +277 -183
  10. package/dist/cartDropdownOverlay.scss +55 -27
  11. package/dist/checkout.scss +1017 -640
  12. package/dist/customization-tree.scss +42 -10
  13. package/dist/dropdownTemplate.scss +35 -25
  14. package/dist/employee-bulk-order.scss +219 -47
  15. package/dist/empty-states.scss +66 -66
  16. package/dist/functions.js +1 -1
  17. package/dist/functions.scss +7 -5
  18. package/dist/icons.js +1 -1
  19. package/dist/index.js +1 -1
  20. package/dist/item-stock.scss +27 -28
  21. package/dist/menu-v2.scss +2 -2
  22. package/dist/modal.scss +128 -75
  23. package/dist/past-orders.scss +272 -258
  24. package/dist/payment-methods.scss +70 -71
  25. package/dist/prefix-list.scss +1 -0
  26. package/dist/product-actions.scss +68 -68
  27. package/dist/product-sizechart.scss +13 -13
  28. package/dist/quick-links.scss +47 -48
  29. package/dist/quick-order-pad.scss +51 -51
  30. package/dist/quotes.scss +118 -116
  31. package/dist/review-cart.scss +196 -0
  32. package/dist/rfqs.scss +118 -116
  33. package/dist/types/builder/elements/add-products-tab/index.d.ts +46 -0
  34. package/dist/types/builder/enums/index.d.ts +2 -0
  35. package/dist/types/builder/index.d.ts +2 -1
  36. package/dist/types/builder/tools/element-edit/addProductsTab.d.ts +542 -0
  37. package/dist/types/builder/tools/element-edit/cartSummary.d.ts +1747 -38
  38. package/dist/types/builder/tools/element-edit/checkout.d.ts +793 -254
  39. package/dist/types/builder/tools/element-edit/index.d.ts +2 -1
  40. package/dist/video.scss +16 -7
  41. package/dist/widget.scss +2 -0
  42. package/package.json +1 -1
@@ -0,0 +1,542 @@
1
+ import { CMSCSSUnitTypesEnums, CMSElementEditTypes } from "../../enums";
2
+ import { CMSIBCommonInterface } from "../../interfaces/global";
3
+ import { CMSElementEditPopupInterface } from "./common";
4
+ export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
5
+ }
6
+ export declare enum SelectorKeysEnum {
7
+ LAYOUT = "layout",
8
+ CONTENT = "content",
9
+ DESIGN = "design",
10
+ DATA_CONNECTOR = "dataConnector",
11
+ DEFAULT_STATE = "defaultState",
12
+ SELECTED_STATE = "selectedState",
13
+ HOVER_STATE = "hoverState",
14
+ ALLOCATIONS_HEADING_SDESIGN = "allocationsHeadingDesign",
15
+ ALLOCATIONS_NAME_DESIGN = "allocationsNameDesign",
16
+ ALLOCATIONS_DESCRIPTION_DESIGN = "allocationsDescriptionDesign",
17
+ PRODUCT_CARDS_SCROLL_DESIGN = "productCardsScrollDesign",
18
+ PRODUCT_CARD_DESIGN = "productCardDesign",
19
+ PRODUCT_CARD_NAME_DESIGN = "productCardNameDesign",
20
+ PRODUCT_CARD_INFO_DESIGN = "productCardInfoDesign",
21
+ PRODUCT_CARD_PRICE_DESIGN = "productCardPriceDesign",
22
+ PRODUCT_PANEL_DESIGN = "productPanelDesign",
23
+ PRODUCT_NAME_DESIGN = "productNameDesign",
24
+ PRODUCT_INFO_DESIGN = "productInfoDesign",
25
+ PRODUCT_PRICE_DESIGN = "productPriceDesign",
26
+ SELECT_BUTTON_DESIGN = "selectButtonDesign",
27
+ ADD_TO_CART_BUTTON_DESIGN = "addToCartButtonDesign"
28
+ }
29
+ export declare const getDefaultData: () => {
30
+ layout: {
31
+ selectorKey: SelectorKeysEnum;
32
+ width: {
33
+ value: number;
34
+ unit: CMSCSSUnitTypesEnums;
35
+ };
36
+ margin: import("../../interfaces/global").CSSPaddingValues | undefined;
37
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
38
+ overflowContent: CMSIBCommonInterface | undefined;
39
+ scrollDirection: CMSIBCommonInterface | undefined;
40
+ displayScrollbar: CMSIBCommonInterface | undefined;
41
+ positionType: CMSIBCommonInterface | undefined;
42
+ pinTo: CMSIBCommonInterface | undefined;
43
+ showTitle: {
44
+ value: boolean;
45
+ property: string;
46
+ propertyType: CMSElementEditTypes;
47
+ };
48
+ cartTitle: {
49
+ value: string;
50
+ property: string;
51
+ propertyType: CMSElementEditTypes;
52
+ };
53
+ showNumberOfItems: {
54
+ value: boolean;
55
+ property: string;
56
+ propertyType: CMSElementEditTypes;
57
+ };
58
+ cartItemsCountLabel: {
59
+ value: string;
60
+ property: string;
61
+ propertyType: CMSElementEditTypes;
62
+ };
63
+ showActions: {
64
+ value: boolean;
65
+ property: string;
66
+ propertyType: CMSElementEditTypes;
67
+ };
68
+ showContinueShopping: {
69
+ value: boolean;
70
+ property: string;
71
+ propertyType: CMSElementEditTypes;
72
+ };
73
+ continueShoppingLinkTo: {
74
+ value: null;
75
+ property: string;
76
+ propertyType: CMSElementEditTypes;
77
+ };
78
+ continueShoppingLink: {
79
+ value: string;
80
+ property: string;
81
+ propertyType: CMSElementEditTypes;
82
+ };
83
+ showAddFromWishlist: {
84
+ value: boolean;
85
+ property: string;
86
+ propertyType: CMSElementEditTypes;
87
+ };
88
+ showCartGrouping: {
89
+ value: boolean;
90
+ property: string;
91
+ propertyType: CMSElementEditTypes;
92
+ };
93
+ showMoveToTemplate: {
94
+ value: boolean;
95
+ property: string;
96
+ propertyType: CMSElementEditTypes;
97
+ };
98
+ showClearCart: {
99
+ value: boolean;
100
+ property: string;
101
+ propertyType: CMSElementEditTypes;
102
+ };
103
+ clearCartLinkTo: {
104
+ value: string;
105
+ property: string;
106
+ propertyType: CMSElementEditTypes;
107
+ };
108
+ clearCartLink: {
109
+ value: string;
110
+ property: string;
111
+ propertyType: CMSElementEditTypes;
112
+ };
113
+ showDownloadCart: {
114
+ value: boolean;
115
+ property: string;
116
+ propertyType: CMSElementEditTypes;
117
+ };
118
+ showShareCart: {
119
+ value: boolean;
120
+ property: string;
121
+ propertyType: CMSElementEditTypes;
122
+ };
123
+ showPrintCart: {
124
+ value: boolean;
125
+ property: string;
126
+ propertyType: CMSElementEditTypes;
127
+ };
128
+ maxNumberOfActionsToShow: {
129
+ value: number;
130
+ property: string;
131
+ propertyType: CMSElementEditTypes;
132
+ };
133
+ };
134
+ design: {
135
+ selectorKey: SelectorKeysEnum;
136
+ allocationsHeadingDesign: {
137
+ selectorKey: SelectorKeysEnum;
138
+ allocationsNameDesign: {
139
+ borderColor: CMSIBCommonInterface;
140
+ borderStyle: CMSIBCommonInterface;
141
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
142
+ showBorder: CMSIBCommonInterface;
143
+ showShadow: CMSIBCommonInterface;
144
+ shadowColor: CMSIBCommonInterface;
145
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
146
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
147
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
148
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
149
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
150
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
151
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
152
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
153
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
154
+ theme: CMSIBCommonInterface;
155
+ font: CMSIBCommonInterface;
156
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
157
+ textColor: CMSIBCommonInterface;
158
+ bold: CMSIBCommonInterface;
159
+ italic: CMSIBCommonInterface;
160
+ linethrough: CMSIBCommonInterface;
161
+ underline: CMSIBCommonInterface;
162
+ textAlign: CMSIBCommonInterface;
163
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
164
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
165
+ backgroundColor: CMSIBCommonInterface;
166
+ selectorKey: SelectorKeysEnum;
167
+ };
168
+ allocationsDescriptionDesign: {
169
+ borderColor: CMSIBCommonInterface;
170
+ borderStyle: CMSIBCommonInterface;
171
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
172
+ showBorder: CMSIBCommonInterface;
173
+ showShadow: CMSIBCommonInterface;
174
+ shadowColor: CMSIBCommonInterface;
175
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
176
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
177
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
178
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
179
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
180
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
181
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
182
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
183
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
184
+ theme: CMSIBCommonInterface;
185
+ font: CMSIBCommonInterface;
186
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
187
+ textColor: CMSIBCommonInterface;
188
+ bold: CMSIBCommonInterface;
189
+ italic: CMSIBCommonInterface;
190
+ linethrough: CMSIBCommonInterface;
191
+ underline: CMSIBCommonInterface;
192
+ textAlign: CMSIBCommonInterface;
193
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
194
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
195
+ backgroundColor: CMSIBCommonInterface;
196
+ selectorKey: SelectorKeysEnum;
197
+ };
198
+ };
199
+ productCardsScrollDesign: {
200
+ selectorKey: SelectorKeysEnum;
201
+ productCardDesign: {
202
+ selectorKey: SelectorKeysEnum;
203
+ defaultState: {
204
+ borderColor: CMSIBCommonInterface;
205
+ borderStyle: CMSIBCommonInterface;
206
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
207
+ showBorder: CMSIBCommonInterface;
208
+ showShadow: CMSIBCommonInterface;
209
+ shadowColor: CMSIBCommonInterface;
210
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
211
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
212
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
213
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
214
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
215
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
216
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
217
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
218
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
219
+ selectorKey: SelectorKeysEnum;
220
+ };
221
+ selectedState: {
222
+ borderColor: CMSIBCommonInterface;
223
+ borderStyle: CMSIBCommonInterface;
224
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
225
+ showBorder: CMSIBCommonInterface;
226
+ showShadow: CMSIBCommonInterface;
227
+ shadowColor: CMSIBCommonInterface;
228
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
229
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
230
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
231
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
232
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
233
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
234
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
235
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
236
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
237
+ selectorKey: SelectorKeysEnum;
238
+ };
239
+ hoverState: {
240
+ borderColor: CMSIBCommonInterface;
241
+ borderStyle: CMSIBCommonInterface;
242
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
243
+ showBorder: CMSIBCommonInterface;
244
+ showShadow: CMSIBCommonInterface;
245
+ shadowColor: CMSIBCommonInterface;
246
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
247
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
248
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
249
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
250
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
251
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
252
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
253
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
254
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
255
+ selectorKey: SelectorKeysEnum;
256
+ };
257
+ };
258
+ productCardNameDesign: {
259
+ theme: CMSIBCommonInterface;
260
+ font: CMSIBCommonInterface;
261
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
262
+ textColor: CMSIBCommonInterface;
263
+ bold: CMSIBCommonInterface;
264
+ italic: CMSIBCommonInterface;
265
+ linethrough: CMSIBCommonInterface;
266
+ underline: CMSIBCommonInterface;
267
+ textAlign: CMSIBCommonInterface;
268
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
269
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
270
+ backgroundColor: CMSIBCommonInterface;
271
+ selectorKey: SelectorKeysEnum;
272
+ };
273
+ productCardInfoDesign: {
274
+ theme: CMSIBCommonInterface;
275
+ font: CMSIBCommonInterface;
276
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
277
+ textColor: CMSIBCommonInterface;
278
+ bold: CMSIBCommonInterface;
279
+ italic: CMSIBCommonInterface;
280
+ linethrough: CMSIBCommonInterface;
281
+ underline: CMSIBCommonInterface;
282
+ textAlign: CMSIBCommonInterface;
283
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
284
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
285
+ backgroundColor: CMSIBCommonInterface;
286
+ selectorKey: SelectorKeysEnum;
287
+ };
288
+ productCardPriceDesign: {
289
+ theme: CMSIBCommonInterface;
290
+ font: CMSIBCommonInterface;
291
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
292
+ textColor: CMSIBCommonInterface;
293
+ bold: CMSIBCommonInterface;
294
+ italic: CMSIBCommonInterface;
295
+ linethrough: CMSIBCommonInterface;
296
+ underline: CMSIBCommonInterface;
297
+ textAlign: CMSIBCommonInterface;
298
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
299
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
300
+ backgroundColor: CMSIBCommonInterface;
301
+ selectorKey: SelectorKeysEnum;
302
+ };
303
+ };
304
+ productPanelDesign: {
305
+ selectorKey: SelectorKeysEnum;
306
+ productNameDesign: {
307
+ theme: CMSIBCommonInterface;
308
+ font: CMSIBCommonInterface;
309
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
310
+ textColor: CMSIBCommonInterface;
311
+ bold: CMSIBCommonInterface;
312
+ italic: CMSIBCommonInterface;
313
+ linethrough: CMSIBCommonInterface;
314
+ underline: CMSIBCommonInterface;
315
+ textAlign: CMSIBCommonInterface;
316
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
317
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
318
+ backgroundColor: CMSIBCommonInterface;
319
+ selectorKey: SelectorKeysEnum;
320
+ };
321
+ productPriceDesign: {
322
+ theme: CMSIBCommonInterface;
323
+ font: CMSIBCommonInterface;
324
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
325
+ textColor: CMSIBCommonInterface;
326
+ bold: CMSIBCommonInterface;
327
+ italic: CMSIBCommonInterface;
328
+ linethrough: CMSIBCommonInterface;
329
+ underline: CMSIBCommonInterface;
330
+ textAlign: CMSIBCommonInterface;
331
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
332
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
333
+ backgroundColor: CMSIBCommonInterface;
334
+ selectorKey: SelectorKeysEnum;
335
+ };
336
+ productInfoDesign: {
337
+ theme: CMSIBCommonInterface;
338
+ font: CMSIBCommonInterface;
339
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
340
+ textColor: CMSIBCommonInterface;
341
+ bold: CMSIBCommonInterface;
342
+ italic: CMSIBCommonInterface;
343
+ linethrough: CMSIBCommonInterface;
344
+ underline: CMSIBCommonInterface;
345
+ textAlign: CMSIBCommonInterface;
346
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
347
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
348
+ backgroundColor: CMSIBCommonInterface;
349
+ selectorKey: SelectorKeysEnum;
350
+ };
351
+ selectButtonDesign: {
352
+ selectorKey: SelectorKeysEnum;
353
+ selectedState: {
354
+ borderColor: CMSIBCommonInterface;
355
+ borderStyle: CMSIBCommonInterface;
356
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
357
+ showBorder: CMSIBCommonInterface;
358
+ showShadow: CMSIBCommonInterface;
359
+ shadowColor: CMSIBCommonInterface;
360
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
361
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
362
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
363
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
364
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
365
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
366
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
367
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
368
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
369
+ theme: CMSIBCommonInterface;
370
+ font: CMSIBCommonInterface;
371
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
372
+ textColor: CMSIBCommonInterface;
373
+ bold: CMSIBCommonInterface;
374
+ italic: CMSIBCommonInterface;
375
+ linethrough: CMSIBCommonInterface;
376
+ underline: CMSIBCommonInterface;
377
+ textAlign: CMSIBCommonInterface;
378
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
379
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
380
+ backgroundColor: CMSIBCommonInterface;
381
+ selectorKey: SelectorKeysEnum;
382
+ };
383
+ hoverState: {
384
+ borderColor: CMSIBCommonInterface;
385
+ borderStyle: CMSIBCommonInterface;
386
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
387
+ showBorder: CMSIBCommonInterface;
388
+ showShadow: CMSIBCommonInterface;
389
+ shadowColor: CMSIBCommonInterface;
390
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
391
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
392
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
393
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
394
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
395
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
396
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
397
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
398
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
399
+ theme: CMSIBCommonInterface;
400
+ font: CMSIBCommonInterface;
401
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
402
+ textColor: CMSIBCommonInterface;
403
+ bold: CMSIBCommonInterface;
404
+ italic: CMSIBCommonInterface;
405
+ linethrough: CMSIBCommonInterface;
406
+ underline: CMSIBCommonInterface;
407
+ textAlign: CMSIBCommonInterface;
408
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
409
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
410
+ backgroundColor: CMSIBCommonInterface;
411
+ selectorKey: SelectorKeysEnum;
412
+ };
413
+ defaultState: {
414
+ borderColor: CMSIBCommonInterface;
415
+ borderStyle: CMSIBCommonInterface;
416
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
417
+ showBorder: CMSIBCommonInterface;
418
+ showShadow: CMSIBCommonInterface;
419
+ shadowColor: CMSIBCommonInterface;
420
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
421
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
422
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
423
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
424
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
425
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
426
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
427
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
428
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
429
+ theme: CMSIBCommonInterface;
430
+ font: CMSIBCommonInterface;
431
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
432
+ textColor: CMSIBCommonInterface;
433
+ bold: CMSIBCommonInterface;
434
+ italic: CMSIBCommonInterface;
435
+ linethrough: CMSIBCommonInterface;
436
+ underline: CMSIBCommonInterface;
437
+ textAlign: CMSIBCommonInterface;
438
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
439
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
440
+ backgroundColor: CMSIBCommonInterface;
441
+ selectorKey: SelectorKeysEnum;
442
+ };
443
+ };
444
+ addToCartButtonDesign: {
445
+ selectorKey: SelectorKeysEnum;
446
+ selectedState: {
447
+ borderColor: CMSIBCommonInterface;
448
+ borderStyle: CMSIBCommonInterface;
449
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
450
+ showBorder: CMSIBCommonInterface;
451
+ showShadow: CMSIBCommonInterface;
452
+ shadowColor: CMSIBCommonInterface;
453
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
454
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
455
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
456
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
457
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
458
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
459
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
460
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
461
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
462
+ theme: CMSIBCommonInterface;
463
+ font: CMSIBCommonInterface;
464
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
465
+ textColor: CMSIBCommonInterface;
466
+ bold: CMSIBCommonInterface;
467
+ italic: CMSIBCommonInterface;
468
+ linethrough: CMSIBCommonInterface;
469
+ underline: CMSIBCommonInterface;
470
+ textAlign: CMSIBCommonInterface;
471
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
472
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
473
+ backgroundColor: CMSIBCommonInterface;
474
+ selectorKey: SelectorKeysEnum;
475
+ };
476
+ hoverState: {
477
+ borderColor: CMSIBCommonInterface;
478
+ borderStyle: CMSIBCommonInterface;
479
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
480
+ showBorder: CMSIBCommonInterface;
481
+ showShadow: CMSIBCommonInterface;
482
+ shadowColor: CMSIBCommonInterface;
483
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
484
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
485
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
486
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
487
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
488
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
489
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
490
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
491
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
492
+ theme: CMSIBCommonInterface;
493
+ font: CMSIBCommonInterface;
494
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
495
+ textColor: CMSIBCommonInterface;
496
+ bold: CMSIBCommonInterface;
497
+ italic: CMSIBCommonInterface;
498
+ linethrough: CMSIBCommonInterface;
499
+ underline: CMSIBCommonInterface;
500
+ textAlign: CMSIBCommonInterface;
501
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
502
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
503
+ backgroundColor: CMSIBCommonInterface;
504
+ selectorKey: SelectorKeysEnum;
505
+ };
506
+ defaultState: {
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;
534
+ selectorKey: SelectorKeysEnum;
535
+ };
536
+ };
537
+ };
538
+ };
539
+ content: {
540
+ selectorKey: SelectorKeysEnum;
541
+ };
542
+ };