@sc-360-v2/storefront-cms-library 0.3.47 → 0.3.49

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.
@@ -1,22 +1,1020 @@
1
+ import { CMSCSSUnitTypesEnums, CMSElementEditTypes } from "../../enums";
1
2
  import { CMSIBCommonInterface } from "../../interfaces/global";
2
- import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
+ import { CMSElementEditPopupInterface } from "./common";
3
4
  export interface ContainerEditPopupInterface extends CMSElementEditPopupInterface {
4
5
  }
5
- interface selfLayoutInterface {
6
- selectorKey: string;
7
- shippingHeaderTitle: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
8
- value: string;
9
- };
10
- paymentHeaderTitle: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
11
- value: string;
12
- };
13
- }
14
6
  export interface selfDesignInterface {
15
7
  selectorKey: string;
16
8
  }
17
- export declare enum selfSelectorKeysEnum {
9
+ export declare enum SelectorKeysEnum {
18
10
  LAYOUT = "layout",
19
- DESIGN = "design"
11
+ CONTENT = "content",
12
+ DESIGN = "design",
13
+ DEFAULT_STATE = "defaultState",
14
+ HOVER_STATE = "hoverState",
15
+ SELECTED_STATE = "selectedState"
20
16
  }
21
- export declare const getDefaultData: (contentWidth?: any) => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
22
- export {};
17
+ export declare const getDefaultData: () => {
18
+ layout: {
19
+ selectorKey: SelectorKeysEnum;
20
+ width: {
21
+ value: number;
22
+ unit: CMSCSSUnitTypesEnums;
23
+ };
24
+ margin: import("../../interfaces/global").CSSPaddingValues | undefined;
25
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
26
+ overflowContent: CMSIBCommonInterface | undefined;
27
+ signInTemplate: {
28
+ value: string;
29
+ propertyType: CMSElementEditTypes;
30
+ };
31
+ accountTemplate: {
32
+ value: string;
33
+ propertyType: CMSElementEditTypes;
34
+ };
35
+ scrollDirection: CMSIBCommonInterface | undefined;
36
+ displayScrollbar: CMSIBCommonInterface | undefined;
37
+ positionType: CMSIBCommonInterface | undefined;
38
+ pinTo: CMSIBCommonInterface | undefined;
39
+ titleAndInputGap: {
40
+ value: number;
41
+ property: string;
42
+ propertyType: CMSElementEditTypes;
43
+ unit: number;
44
+ };
45
+ labelAndInputGap: {
46
+ value: number;
47
+ property: string;
48
+ propertyType: CMSElementEditTypes;
49
+ unit: number;
50
+ };
51
+ accordianIconTextGap: {
52
+ value: number;
53
+ property: string;
54
+ propertyType: CMSElementEditTypes;
55
+ unit: number;
56
+ };
57
+ accordianHeadingAndValueGap: {
58
+ value: number;
59
+ property: string;
60
+ propertyType: CMSElementEditTypes;
61
+ unit: number;
62
+ };
63
+ accordianPadding: {
64
+ property: string;
65
+ isAll?: boolean | undefined;
66
+ sides?: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides | undefined;
67
+ iscss?: boolean | undefined;
68
+ propertyType?: any;
69
+ };
70
+ savedShippingAddressLineGap: {
71
+ value: number;
72
+ property: string;
73
+ propertyType: CMSElementEditTypes;
74
+ unit: number;
75
+ };
76
+ multipleAddressProductInfoVerticalGap: {
77
+ value: number;
78
+ property: string;
79
+ propertyType: CMSElementEditTypes;
80
+ unit: number;
81
+ };
82
+ multipleAddressProductInfoHorizontalGap: {
83
+ value: number;
84
+ property: string;
85
+ propertyType: CMSElementEditTypes;
86
+ unit: number;
87
+ };
88
+ multipleAddressProductImageWidth: {
89
+ value: number;
90
+ property: string;
91
+ propertyType: CMSElementEditTypes;
92
+ unit: number;
93
+ };
94
+ multipleAddressProductImageHeight: {
95
+ value: number;
96
+ property: string;
97
+ propertyType: CMSElementEditTypes;
98
+ unit: number;
99
+ };
100
+ shippingMethodLineGap: {
101
+ value: number;
102
+ property: string;
103
+ propertyType: CMSElementEditTypes;
104
+ unit: number;
105
+ };
106
+ paymentOptionsGapBetweenContainers: {
107
+ value: number;
108
+ property: string;
109
+ propertyType: CMSElementEditTypes;
110
+ unit: number;
111
+ };
112
+ paymentOptionsContainerVerticalGap: {
113
+ value: number;
114
+ property: string;
115
+ propertyType: CMSElementEditTypes;
116
+ unit: number;
117
+ };
118
+ paymentOptionsContainerHorizontalGap: {
119
+ value: number;
120
+ property: string;
121
+ propertyType: CMSElementEditTypes;
122
+ unit: number;
123
+ };
124
+ paymentOptionsContainerIconSize: {
125
+ value: number;
126
+ property: string;
127
+ propertyType: CMSElementEditTypes;
128
+ unit: number;
129
+ };
130
+ paymentOptionsPadding: {
131
+ property: string;
132
+ isAll?: boolean | undefined;
133
+ sides?: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides | undefined;
134
+ iscss?: boolean | undefined;
135
+ propertyType?: any;
136
+ };
137
+ paymentOptionsImageWidth: {
138
+ value: number;
139
+ property: string;
140
+ propertKey: CMSElementEditTypes;
141
+ unit: number;
142
+ };
143
+ paymentOptionsImageHeight: {
144
+ value: number;
145
+ property: string;
146
+ propertyType: CMSElementEditTypes;
147
+ unit: number;
148
+ };
149
+ paymentOptionsNotePadding: {
150
+ property: string;
151
+ isAll?: boolean | undefined;
152
+ sides?: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides | undefined;
153
+ iscss?: boolean | undefined;
154
+ propertyType?: any;
155
+ };
156
+ };
157
+ design: {
158
+ selectorKey: SelectorKeysEnum;
159
+ checkoutHeadingDesign: {
160
+ theme: CMSIBCommonInterface;
161
+ font: CMSIBCommonInterface;
162
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
163
+ textColor: CMSIBCommonInterface;
164
+ bold: CMSIBCommonInterface;
165
+ italic: CMSIBCommonInterface;
166
+ linethrough: CMSIBCommonInterface;
167
+ underline: CMSIBCommonInterface;
168
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
169
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
170
+ selectorKey: string;
171
+ textAlign: CMSIBCommonInterface;
172
+ };
173
+ checkoutOptionAccordianContainerDesign: {
174
+ selectorKey: string;
175
+ accordianTitleDesign: {
176
+ theme: CMSIBCommonInterface;
177
+ font: CMSIBCommonInterface;
178
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
179
+ textColor: CMSIBCommonInterface;
180
+ bold: CMSIBCommonInterface;
181
+ italic: CMSIBCommonInterface;
182
+ linethrough: CMSIBCommonInterface;
183
+ underline: CMSIBCommonInterface;
184
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
185
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
186
+ selectorKey: string;
187
+ };
188
+ accordianButtonDesign: {
189
+ selectorKey: string;
190
+ defaultState: {
191
+ borderColor: CMSIBCommonInterface;
192
+ borderStyle: CMSIBCommonInterface;
193
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
194
+ showBorder: CMSIBCommonInterface;
195
+ backgroundColor: CMSIBCommonInterface;
196
+ showShadow: CMSIBCommonInterface;
197
+ shadowColor: CMSIBCommonInterface;
198
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
199
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
200
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
201
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
202
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
203
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
204
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
205
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
206
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
207
+ theme: CMSIBCommonInterface;
208
+ font: CMSIBCommonInterface;
209
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
210
+ textColor: CMSIBCommonInterface;
211
+ bold: CMSIBCommonInterface;
212
+ italic: CMSIBCommonInterface;
213
+ linethrough: CMSIBCommonInterface;
214
+ underline: CMSIBCommonInterface;
215
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
216
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
217
+ selectorKey: SelectorKeysEnum;
218
+ };
219
+ hoverState: {
220
+ borderColor: CMSIBCommonInterface;
221
+ borderStyle: CMSIBCommonInterface;
222
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
223
+ showBorder: CMSIBCommonInterface;
224
+ backgroundColor: CMSIBCommonInterface;
225
+ showShadow: CMSIBCommonInterface;
226
+ shadowColor: CMSIBCommonInterface;
227
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
228
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
229
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
230
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
231
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
232
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
233
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
234
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
235
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
236
+ theme: CMSIBCommonInterface;
237
+ font: CMSIBCommonInterface;
238
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
239
+ textColor: CMSIBCommonInterface;
240
+ bold: CMSIBCommonInterface;
241
+ italic: CMSIBCommonInterface;
242
+ linethrough: CMSIBCommonInterface;
243
+ underline: CMSIBCommonInterface;
244
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
245
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
246
+ selectorKey: SelectorKeysEnum;
247
+ };
248
+ };
249
+ accordianContainerDesign: {
250
+ borderColor: CMSIBCommonInterface;
251
+ borderStyle: CMSIBCommonInterface;
252
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
253
+ showBorder: CMSIBCommonInterface;
254
+ backgroundColor: CMSIBCommonInterface;
255
+ showShadow: CMSIBCommonInterface;
256
+ shadowColor: CMSIBCommonInterface;
257
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
258
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
259
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
260
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
261
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
262
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
263
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
264
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
265
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
266
+ selectorKey: string;
267
+ };
268
+ };
269
+ singleShippingAddressDesign: {
270
+ selectorKey: string;
271
+ singleShippingAddressLabelDesign: {
272
+ theme: CMSIBCommonInterface;
273
+ font: CMSIBCommonInterface;
274
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
275
+ textColor: CMSIBCommonInterface;
276
+ bold: CMSIBCommonInterface;
277
+ italic: CMSIBCommonInterface;
278
+ linethrough: CMSIBCommonInterface;
279
+ underline: CMSIBCommonInterface;
280
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
281
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
282
+ selectorKey: string;
283
+ };
284
+ inputBoxDesign: {
285
+ selectorKey: string;
286
+ defaultState: {
287
+ borderColor: CMSIBCommonInterface;
288
+ borderStyle: CMSIBCommonInterface;
289
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
290
+ showBorder: CMSIBCommonInterface;
291
+ backgroundColor: CMSIBCommonInterface;
292
+ showShadow: CMSIBCommonInterface;
293
+ shadowColor: CMSIBCommonInterface;
294
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
295
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
296
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
297
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
298
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
299
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
300
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
301
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
302
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
303
+ theme: CMSIBCommonInterface;
304
+ font: CMSIBCommonInterface;
305
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
306
+ textColor: CMSIBCommonInterface;
307
+ bold: CMSIBCommonInterface;
308
+ italic: CMSIBCommonInterface;
309
+ linethrough: CMSIBCommonInterface;
310
+ underline: CMSIBCommonInterface;
311
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
312
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
313
+ selectorKey: SelectorKeysEnum;
314
+ };
315
+ selectedState: {
316
+ borderColor: CMSIBCommonInterface;
317
+ borderStyle: CMSIBCommonInterface;
318
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
319
+ showBorder: CMSIBCommonInterface;
320
+ backgroundColor: CMSIBCommonInterface;
321
+ showShadow: CMSIBCommonInterface;
322
+ shadowColor: CMSIBCommonInterface;
323
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
324
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
325
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
326
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
327
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
328
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
329
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
330
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
331
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
332
+ theme: CMSIBCommonInterface;
333
+ font: CMSIBCommonInterface;
334
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
335
+ textColor: CMSIBCommonInterface;
336
+ bold: CMSIBCommonInterface;
337
+ italic: CMSIBCommonInterface;
338
+ linethrough: CMSIBCommonInterface;
339
+ underline: CMSIBCommonInterface;
340
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
341
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
342
+ selectorKey: SelectorKeysEnum;
343
+ };
344
+ };
345
+ checkboxDesign: {
346
+ theme: CMSIBCommonInterface;
347
+ font: CMSIBCommonInterface;
348
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
349
+ textColor: CMSIBCommonInterface;
350
+ bold: CMSIBCommonInterface;
351
+ italic: CMSIBCommonInterface;
352
+ linethrough: CMSIBCommonInterface;
353
+ underline: CMSIBCommonInterface;
354
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
355
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
356
+ selectorKey: string;
357
+ };
358
+ primaryButtonDesign: {
359
+ selectorKey: string;
360
+ defaultState: {
361
+ borderColor: CMSIBCommonInterface;
362
+ borderStyle: CMSIBCommonInterface;
363
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
364
+ showBorder: CMSIBCommonInterface;
365
+ backgroundColor: CMSIBCommonInterface;
366
+ showShadow: CMSIBCommonInterface;
367
+ shadowColor: CMSIBCommonInterface;
368
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
369
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
370
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
371
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
372
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
373
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
374
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
375
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
376
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
377
+ theme: CMSIBCommonInterface;
378
+ font: CMSIBCommonInterface;
379
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
380
+ textColor: CMSIBCommonInterface;
381
+ bold: CMSIBCommonInterface;
382
+ italic: CMSIBCommonInterface;
383
+ linethrough: CMSIBCommonInterface;
384
+ underline: CMSIBCommonInterface;
385
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
386
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
387
+ selectorKey: SelectorKeysEnum;
388
+ };
389
+ hoverState: {
390
+ borderColor: CMSIBCommonInterface;
391
+ borderStyle: CMSIBCommonInterface;
392
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
393
+ showBorder: CMSIBCommonInterface;
394
+ backgroundColor: CMSIBCommonInterface;
395
+ showShadow: CMSIBCommonInterface;
396
+ shadowColor: CMSIBCommonInterface;
397
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
398
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
399
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
400
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
401
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
402
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
403
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
404
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
405
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
406
+ theme: CMSIBCommonInterface;
407
+ font: CMSIBCommonInterface;
408
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
409
+ textColor: CMSIBCommonInterface;
410
+ bold: CMSIBCommonInterface;
411
+ italic: CMSIBCommonInterface;
412
+ linethrough: CMSIBCommonInterface;
413
+ underline: CMSIBCommonInterface;
414
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
415
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
416
+ selectorKey: SelectorKeysEnum;
417
+ };
418
+ };
419
+ };
420
+ savedShippingAddressDesign: {
421
+ selectorKey: string;
422
+ shippingNameDesign: {
423
+ theme: CMSIBCommonInterface;
424
+ font: CMSIBCommonInterface;
425
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
426
+ textColor: CMSIBCommonInterface;
427
+ bold: CMSIBCommonInterface;
428
+ italic: CMSIBCommonInterface;
429
+ linethrough: CMSIBCommonInterface;
430
+ underline: CMSIBCommonInterface;
431
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
432
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
433
+ selectorKey: string;
434
+ };
435
+ shippingAddressDesign: {
436
+ theme: CMSIBCommonInterface;
437
+ font: CMSIBCommonInterface;
438
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
439
+ textColor: CMSIBCommonInterface;
440
+ bold: CMSIBCommonInterface;
441
+ italic: CMSIBCommonInterface;
442
+ linethrough: CMSIBCommonInterface;
443
+ underline: CMSIBCommonInterface;
444
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
445
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
446
+ selectorKey: string;
447
+ };
448
+ savedShippingAddressLabelDesign: {
449
+ theme: CMSIBCommonInterface;
450
+ font: CMSIBCommonInterface;
451
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
452
+ textColor: CMSIBCommonInterface;
453
+ bold: CMSIBCommonInterface;
454
+ italic: CMSIBCommonInterface;
455
+ linethrough: CMSIBCommonInterface;
456
+ underline: CMSIBCommonInterface;
457
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
458
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
459
+ selectorKey: string;
460
+ };
461
+ savedShippingAddressValueDesign: {
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
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
471
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
472
+ selectorKey: string;
473
+ };
474
+ savedShippingAddressButtonDesign: {
475
+ selectorKey: string;
476
+ defaultState: {
477
+ borderColor: CMSIBCommonInterface;
478
+ borderStyle: CMSIBCommonInterface;
479
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
480
+ showBorder: CMSIBCommonInterface;
481
+ backgroundColor: CMSIBCommonInterface;
482
+ showShadow: CMSIBCommonInterface;
483
+ shadowColor: CMSIBCommonInterface;
484
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
485
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
486
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
487
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
488
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
489
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
490
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
491
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
492
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
493
+ theme: CMSIBCommonInterface;
494
+ font: CMSIBCommonInterface;
495
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
496
+ textColor: CMSIBCommonInterface;
497
+ bold: CMSIBCommonInterface;
498
+ italic: CMSIBCommonInterface;
499
+ linethrough: CMSIBCommonInterface;
500
+ underline: CMSIBCommonInterface;
501
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
502
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
503
+ selectorKey: SelectorKeysEnum;
504
+ };
505
+ hoverState: {
506
+ borderColor: CMSIBCommonInterface;
507
+ borderStyle: CMSIBCommonInterface;
508
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
509
+ showBorder: CMSIBCommonInterface;
510
+ backgroundColor: 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
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
531
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
532
+ selectorKey: SelectorKeysEnum;
533
+ };
534
+ };
535
+ };
536
+ multipleShippingAddressDesign: {
537
+ selectorKey: string;
538
+ productNameDesign: {
539
+ theme: CMSIBCommonInterface;
540
+ font: CMSIBCommonInterface;
541
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
542
+ textColor: CMSIBCommonInterface;
543
+ bold: CMSIBCommonInterface;
544
+ italic: CMSIBCommonInterface;
545
+ linethrough: CMSIBCommonInterface;
546
+ underline: CMSIBCommonInterface;
547
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
548
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
549
+ selectorKey: string;
550
+ };
551
+ productInformationDesign: {
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
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
561
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
562
+ selectorKey: string;
563
+ };
564
+ productQuantityDesign: {
565
+ theme: CMSIBCommonInterface;
566
+ font: CMSIBCommonInterface;
567
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
568
+ textColor: CMSIBCommonInterface;
569
+ bold: CMSIBCommonInterface;
570
+ italic: CMSIBCommonInterface;
571
+ linethrough: CMSIBCommonInterface;
572
+ underline: CMSIBCommonInterface;
573
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
574
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
575
+ selectorKey: string;
576
+ };
577
+ productPriceDesign: {
578
+ theme: CMSIBCommonInterface;
579
+ font: CMSIBCommonInterface;
580
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
581
+ textColor: CMSIBCommonInterface;
582
+ bold: CMSIBCommonInterface;
583
+ italic: CMSIBCommonInterface;
584
+ linethrough: CMSIBCommonInterface;
585
+ underline: CMSIBCommonInterface;
586
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
587
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
588
+ selectorKey: string;
589
+ };
590
+ multipleShippingAddressLabelDesign: {
591
+ theme: CMSIBCommonInterface;
592
+ font: CMSIBCommonInterface;
593
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
594
+ textColor: CMSIBCommonInterface;
595
+ bold: CMSIBCommonInterface;
596
+ italic: CMSIBCommonInterface;
597
+ linethrough: CMSIBCommonInterface;
598
+ underline: CMSIBCommonInterface;
599
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
600
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
601
+ selectorKey: string;
602
+ };
603
+ multipleShippingAddressInputDesign: {
604
+ selectorKey: string;
605
+ defaultState: {
606
+ borderColor: CMSIBCommonInterface;
607
+ borderStyle: CMSIBCommonInterface;
608
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
609
+ showBorder: CMSIBCommonInterface;
610
+ backgroundColor: CMSIBCommonInterface;
611
+ showShadow: CMSIBCommonInterface;
612
+ shadowColor: CMSIBCommonInterface;
613
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
614
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
615
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
616
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
617
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
618
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
619
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
620
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
621
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
622
+ theme: CMSIBCommonInterface;
623
+ font: CMSIBCommonInterface;
624
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
625
+ textColor: CMSIBCommonInterface;
626
+ bold: CMSIBCommonInterface;
627
+ italic: CMSIBCommonInterface;
628
+ linethrough: CMSIBCommonInterface;
629
+ underline: CMSIBCommonInterface;
630
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
631
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
632
+ selectorKey: SelectorKeysEnum;
633
+ };
634
+ selectedState: {
635
+ borderColor: CMSIBCommonInterface;
636
+ borderStyle: CMSIBCommonInterface;
637
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
638
+ showBorder: CMSIBCommonInterface;
639
+ backgroundColor: CMSIBCommonInterface;
640
+ showShadow: CMSIBCommonInterface;
641
+ shadowColor: CMSIBCommonInterface;
642
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
643
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
644
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
645
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
646
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
647
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
648
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
649
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
650
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
651
+ theme: CMSIBCommonInterface;
652
+ font: CMSIBCommonInterface;
653
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
654
+ textColor: CMSIBCommonInterface;
655
+ bold: CMSIBCommonInterface;
656
+ italic: CMSIBCommonInterface;
657
+ linethrough: CMSIBCommonInterface;
658
+ underline: CMSIBCommonInterface;
659
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
660
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
661
+ selectorKey: SelectorKeysEnum;
662
+ };
663
+ };
664
+ discardIcon: {
665
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
666
+ showIcon: CMSIBCommonInterface | undefined;
667
+ iconSize: import("../../interfaces/global").CMSIBSizeInterface;
668
+ iconColor: CMSIBCommonInterface;
669
+ selectorKey: string;
670
+ };
671
+ };
672
+ shippingMethodDesign: {
673
+ selectorKey: string;
674
+ headingDesign: {
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
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
684
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
685
+ selectorKey: string;
686
+ };
687
+ shippingMethodLabelDesign: {
688
+ theme: CMSIBCommonInterface;
689
+ font: CMSIBCommonInterface;
690
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
691
+ textColor: CMSIBCommonInterface;
692
+ bold: CMSIBCommonInterface;
693
+ italic: CMSIBCommonInterface;
694
+ linethrough: CMSIBCommonInterface;
695
+ underline: CMSIBCommonInterface;
696
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
697
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
698
+ selectorKey: string;
699
+ };
700
+ shippingMethodValueDesign: {
701
+ theme: CMSIBCommonInterface;
702
+ font: CMSIBCommonInterface;
703
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
704
+ textColor: CMSIBCommonInterface;
705
+ bold: CMSIBCommonInterface;
706
+ italic: CMSIBCommonInterface;
707
+ linethrough: CMSIBCommonInterface;
708
+ underline: CMSIBCommonInterface;
709
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
710
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
711
+ selectorKey: string;
712
+ };
713
+ };
714
+ paymentOptionsDesign: {
715
+ selectorKey: string;
716
+ paymentOptionsContainerDesign: {
717
+ borderColor: CMSIBCommonInterface;
718
+ borderStyle: CMSIBCommonInterface;
719
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
720
+ showBorder: CMSIBCommonInterface;
721
+ backgroundColor: CMSIBCommonInterface;
722
+ showShadow: CMSIBCommonInterface;
723
+ shadowColor: CMSIBCommonInterface;
724
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
725
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
726
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
727
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
728
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
729
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
730
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
731
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
732
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
733
+ selectorKey: string;
734
+ };
735
+ paymentHeadingDesign: {
736
+ theme: CMSIBCommonInterface;
737
+ font: CMSIBCommonInterface;
738
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
739
+ textColor: CMSIBCommonInterface;
740
+ bold: CMSIBCommonInterface;
741
+ italic: CMSIBCommonInterface;
742
+ linethrough: CMSIBCommonInterface;
743
+ underline: CMSIBCommonInterface;
744
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
745
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
746
+ selectorKey: string;
747
+ };
748
+ paymentNameDesign: {
749
+ theme: CMSIBCommonInterface;
750
+ font: CMSIBCommonInterface;
751
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
752
+ textColor: CMSIBCommonInterface;
753
+ bold: CMSIBCommonInterface;
754
+ italic: CMSIBCommonInterface;
755
+ linethrough: CMSIBCommonInterface;
756
+ underline: CMSIBCommonInterface;
757
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
758
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
759
+ selectorKey: string;
760
+ };
761
+ paymentOptionsLabelDesign: {
762
+ theme: CMSIBCommonInterface;
763
+ font: CMSIBCommonInterface;
764
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
765
+ textColor: CMSIBCommonInterface;
766
+ bold: CMSIBCommonInterface;
767
+ italic: CMSIBCommonInterface;
768
+ linethrough: CMSIBCommonInterface;
769
+ underline: CMSIBCommonInterface;
770
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
771
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
772
+ selectorKey: string;
773
+ };
774
+ paymentOptionsValueDesign: {
775
+ theme: CMSIBCommonInterface;
776
+ font: CMSIBCommonInterface;
777
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
778
+ textColor: CMSIBCommonInterface;
779
+ bold: CMSIBCommonInterface;
780
+ italic: CMSIBCommonInterface;
781
+ linethrough: CMSIBCommonInterface;
782
+ underline: CMSIBCommonInterface;
783
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
784
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
785
+ selectorKey: string;
786
+ };
787
+ paymentOptionsInputDesign: {
788
+ selectorKey: string;
789
+ defaultState: {
790
+ borderColor: CMSIBCommonInterface;
791
+ borderStyle: CMSIBCommonInterface;
792
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
793
+ showBorder: CMSIBCommonInterface;
794
+ backgroundColor: CMSIBCommonInterface;
795
+ showShadow: CMSIBCommonInterface;
796
+ shadowColor: CMSIBCommonInterface;
797
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
798
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
799
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
800
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
801
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
802
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
803
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
804
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
805
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
806
+ theme: CMSIBCommonInterface;
807
+ font: CMSIBCommonInterface;
808
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
809
+ textColor: CMSIBCommonInterface;
810
+ bold: CMSIBCommonInterface;
811
+ italic: CMSIBCommonInterface;
812
+ linethrough: CMSIBCommonInterface;
813
+ underline: CMSIBCommonInterface;
814
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
815
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
816
+ selectorKey: SelectorKeysEnum;
817
+ };
818
+ selectedState: {
819
+ borderColor: CMSIBCommonInterface;
820
+ borderStyle: CMSIBCommonInterface;
821
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
822
+ showBorder: CMSIBCommonInterface;
823
+ backgroundColor: CMSIBCommonInterface;
824
+ showShadow: CMSIBCommonInterface;
825
+ shadowColor: CMSIBCommonInterface;
826
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
827
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
828
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
829
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
830
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
831
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
832
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
833
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
834
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
835
+ theme: CMSIBCommonInterface;
836
+ font: CMSIBCommonInterface;
837
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
838
+ textColor: CMSIBCommonInterface;
839
+ bold: CMSIBCommonInterface;
840
+ italic: CMSIBCommonInterface;
841
+ linethrough: CMSIBCommonInterface;
842
+ underline: CMSIBCommonInterface;
843
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
844
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
845
+ selectorKey: SelectorKeysEnum;
846
+ };
847
+ };
848
+ paymentOptionsButtonDesign: {
849
+ selectorKey: string;
850
+ defaultState: {
851
+ borderColor: CMSIBCommonInterface;
852
+ borderStyle: CMSIBCommonInterface;
853
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
854
+ showBorder: CMSIBCommonInterface;
855
+ backgroundColor: CMSIBCommonInterface;
856
+ showShadow: CMSIBCommonInterface;
857
+ shadowColor: CMSIBCommonInterface;
858
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
859
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
860
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
861
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
862
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
863
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
864
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
865
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
866
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
867
+ theme: CMSIBCommonInterface;
868
+ font: CMSIBCommonInterface;
869
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
870
+ textColor: CMSIBCommonInterface;
871
+ bold: CMSIBCommonInterface;
872
+ italic: CMSIBCommonInterface;
873
+ linethrough: CMSIBCommonInterface;
874
+ underline: CMSIBCommonInterface;
875
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
876
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
877
+ selectorKey: SelectorKeysEnum;
878
+ };
879
+ hoverState: {
880
+ borderColor: CMSIBCommonInterface;
881
+ borderStyle: CMSIBCommonInterface;
882
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
883
+ showBorder: CMSIBCommonInterface;
884
+ backgroundColor: CMSIBCommonInterface;
885
+ showShadow: CMSIBCommonInterface;
886
+ shadowColor: CMSIBCommonInterface;
887
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
888
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
889
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
890
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
891
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
892
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
893
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
894
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
895
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
896
+ theme: CMSIBCommonInterface;
897
+ font: CMSIBCommonInterface;
898
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
899
+ textColor: CMSIBCommonInterface;
900
+ bold: CMSIBCommonInterface;
901
+ italic: CMSIBCommonInterface;
902
+ linethrough: CMSIBCommonInterface;
903
+ underline: CMSIBCommonInterface;
904
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
905
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
906
+ selectorKey: SelectorKeysEnum;
907
+ };
908
+ };
909
+ noteDesign: {
910
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
911
+ showIcon: CMSIBCommonInterface | undefined;
912
+ iconSize: import("../../interfaces/global").CMSIBSizeInterface;
913
+ iconColor: CMSIBCommonInterface;
914
+ borderColor: CMSIBCommonInterface;
915
+ borderStyle: CMSIBCommonInterface;
916
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
917
+ showBorder: CMSIBCommonInterface;
918
+ backgroundColor: CMSIBCommonInterface;
919
+ showShadow: CMSIBCommonInterface;
920
+ shadowColor: CMSIBCommonInterface;
921
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
922
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
923
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
924
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
925
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
926
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
927
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
928
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
929
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
930
+ theme: CMSIBCommonInterface;
931
+ font: CMSIBCommonInterface;
932
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
933
+ textColor: CMSIBCommonInterface;
934
+ bold: CMSIBCommonInterface;
935
+ italic: CMSIBCommonInterface;
936
+ linethrough: CMSIBCommonInterface;
937
+ underline: CMSIBCommonInterface;
938
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
939
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
940
+ selectorKey: string;
941
+ };
942
+ checkboxLabelDesign: {
943
+ theme: CMSIBCommonInterface;
944
+ font: CMSIBCommonInterface;
945
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
946
+ textColor: CMSIBCommonInterface;
947
+ bold: CMSIBCommonInterface;
948
+ italic: CMSIBCommonInterface;
949
+ linethrough: CMSIBCommonInterface;
950
+ underline: CMSIBCommonInterface;
951
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
952
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
953
+ selectorKey: string;
954
+ };
955
+ };
956
+ };
957
+ content: {
958
+ selectorKey: SelectorKeysEnum;
959
+ showTitle: {
960
+ value: boolean;
961
+ property: string;
962
+ propertyType: CMSElementEditTypes;
963
+ };
964
+ title: {
965
+ value: string;
966
+ property: string;
967
+ propertyType: CMSElementEditTypes;
968
+ };
969
+ shippingAddressLabel: {
970
+ value: string;
971
+ property: string;
972
+ propertyType: CMSElementEditTypes;
973
+ };
974
+ shippingMethodLabel: {
975
+ value: string;
976
+ property: string;
977
+ propertyType: CMSElementEditTypes;
978
+ };
979
+ paymentOptionsLabel: {
980
+ value: string;
981
+ property: string;
982
+ propertyType: CMSElementEditTypes;
983
+ };
984
+ creditCardLabel: {
985
+ value: string;
986
+ property: string;
987
+ propertyType: CMSElementEditTypes;
988
+ };
989
+ giftCardLabel: {
990
+ value: string;
991
+ property: string;
992
+ propertyType: CMSElementEditTypes;
993
+ };
994
+ selectBillingAddressLabel: {
995
+ value: string;
996
+ property: string;
997
+ propertyType: CMSElementEditTypes;
998
+ };
999
+ otherPaymentOptionsLabel: {
1000
+ value: string;
1001
+ property: string;
1002
+ propertyType: CMSElementEditTypes;
1003
+ };
1004
+ createAddressLabel: {
1005
+ value: string;
1006
+ property: string;
1007
+ propertyType: CMSElementEditTypes;
1008
+ };
1009
+ showStandardDelivery: {
1010
+ value: boolean;
1011
+ property: string;
1012
+ propertyType: CMSElementEditTypes;
1013
+ };
1014
+ showExpressDelivery: {
1015
+ value: boolean;
1016
+ property: string;
1017
+ propertyType: CMSElementEditTypes;
1018
+ };
1019
+ };
1020
+ };