@sc-360-v2/storefront-cms-library 0.3.78 → 0.3.80

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.
@@ -0,0 +1,4792 @@
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
+ ACCORDION_ARROWS_ITEM = "accordionarrowsItem",
11
+ TITLE_CONTAINER_DESIGN = "headerContainer",
12
+ CART_BODY_WIDGET = "cartBodyWidget",
13
+ PRODUCT_WIDGET = "productWidget",
14
+ PRODUCT_WIDGET_WRAPPER = "productWidgetWrapper",
15
+ PRODUCT_WIDGET_ITEM = "productWidgetItem",
16
+ PRODUCT_NAME = "productName",
17
+ PRODUCT_CODE = "productCode",
18
+ PRODUCT_QTY = "productQty",
19
+ PRODUCT_ESTIMATED_DATE = "productEstimatedDate",
20
+ PRODUCT_IMAGE = "productImage",
21
+ PRODUCT_PRICE = "productPrice",
22
+ NUMBER_OF_ITEMS = "numberOfItems",
23
+ SHIPPING_CHARGES = "shippingCharges",
24
+ TAX = "tax",
25
+ TAX_EXEMPT = "taxExempt",
26
+ COUPON_CODE = "couponCode",
27
+ SUB_TOTAL = "subTotal",
28
+ TOTAL = "total",
29
+ CART_ACTIONS = "cartActions",
30
+ CHECKOUT = "checkout",
31
+ PLACE_ORDER = "placeOrder",
32
+ REQUEST_QUOTE = "requestQuote",
33
+ REVIEW_ORDER = "reviewOrder",
34
+ CREATE_SUB_ORDERS = "createSubOrders",
35
+ SUBMIT_QUOTE = "submitQuote",
36
+ HOVER_STATE = "hoverState",
37
+ DEFAULT_STATE = "defaultState",
38
+ SELECTED_STATE = "selected"
39
+ }
40
+ export declare const getDefaultData: () => {
41
+ layout: {
42
+ selectorKey: SelectorKeysEnum;
43
+ width: {
44
+ value: number;
45
+ unit: CMSCSSUnitTypesEnums;
46
+ };
47
+ height: {
48
+ value: number;
49
+ unit: CMSCSSUnitTypesEnums;
50
+ property?: any;
51
+ propertyType?: any;
52
+ isReadOnly?: boolean | undefined;
53
+ parentRef?: string | undefined;
54
+ };
55
+ margin: import("../../interfaces/global").CSSPaddingValues | undefined;
56
+ padding: any;
57
+ overflowContent: CMSIBCommonInterface | undefined;
58
+ scrollDirection: CMSIBCommonInterface | undefined;
59
+ displayScrollbar: CMSIBCommonInterface | undefined;
60
+ positionType: CMSIBCommonInterface | undefined;
61
+ pinTo: CMSIBCommonInterface | undefined;
62
+ showTitle: {
63
+ value: boolean;
64
+ property: string;
65
+ propertyType: CMSElementEditTypes;
66
+ };
67
+ showNumberOfItems: {
68
+ value: boolean;
69
+ property: string;
70
+ propertyType: CMSElementEditTypes;
71
+ };
72
+ showEnterCouponCode: {
73
+ value: boolean;
74
+ property: string;
75
+ propertyType: CMSElementEditTypes;
76
+ };
77
+ showSubTotal: {
78
+ value: boolean;
79
+ property: string;
80
+ propertyType: CMSElementEditTypes;
81
+ };
82
+ showShippingCharges: {
83
+ value: boolean;
84
+ property: string;
85
+ propertyType: CMSElementEditTypes;
86
+ };
87
+ showTax: {
88
+ value: boolean;
89
+ property: string;
90
+ propertyType: CMSElementEditTypes;
91
+ };
92
+ showTaxExempt: {
93
+ value: boolean;
94
+ property: string;
95
+ propertyType: CMSElementEditTypes;
96
+ };
97
+ showTotal: {
98
+ value: boolean;
99
+ property: string;
100
+ propertyType: CMSElementEditTypes;
101
+ };
102
+ showProductInformation: {
103
+ value: boolean;
104
+ property: string;
105
+ propertyType: CMSElementEditTypes;
106
+ };
107
+ showCheckoutButton: {
108
+ value: boolean;
109
+ propertyType: CMSElementEditTypes;
110
+ };
111
+ checkoutButtonLinkTo: {
112
+ value: boolean;
113
+ propertyType: CMSElementEditTypes;
114
+ };
115
+ placeOrderButtonLinkTo: {
116
+ value: null;
117
+ propertyType: CMSElementEditTypes;
118
+ };
119
+ showPlaceOrderButton: {
120
+ value: boolean;
121
+ propertyType: CMSElementEditTypes;
122
+ };
123
+ showRequestQuoteButton: {
124
+ value: boolean;
125
+ propertyType: CMSElementEditTypes;
126
+ };
127
+ requestQuoteButtonLinkTo: {
128
+ value: null;
129
+ propertyType: CMSElementEditTypes;
130
+ };
131
+ showReviewOrderButton: {
132
+ value: boolean;
133
+ propertyType: CMSElementEditTypes;
134
+ };
135
+ reviewOrderButtonLinkTo: {
136
+ value: null;
137
+ propertyType: CMSElementEditTypes;
138
+ };
139
+ showCreateSubOrdersButton: {
140
+ value: boolean;
141
+ propertyType: CMSElementEditTypes;
142
+ };
143
+ createSubOrdersButtonLinkTo: {
144
+ value: null;
145
+ propertyType: CMSElementEditTypes;
146
+ };
147
+ showSubmitQuoteButton: {
148
+ value: boolean;
149
+ propertyType: CMSElementEditTypes;
150
+ };
151
+ submitQuoteButtonLinkTo: {
152
+ value: null;
153
+ propertyType: CMSElementEditTypes;
154
+ };
155
+ showProductImage: {
156
+ value: boolean;
157
+ property: string;
158
+ propertyType: CMSElementEditTypes;
159
+ };
160
+ showProductCode: {
161
+ value: boolean;
162
+ property: string;
163
+ propertyType: CMSElementEditTypes;
164
+ };
165
+ showProductPrice: {
166
+ value: boolean;
167
+ property: string;
168
+ propertyType: CMSElementEditTypes;
169
+ };
170
+ showProductQty: {
171
+ value: boolean;
172
+ property: string;
173
+ propertyType: CMSElementEditTypes;
174
+ };
175
+ showEstimatedDelivery: {
176
+ value: boolean;
177
+ property: string;
178
+ propertyType: CMSElementEditTypes;
179
+ };
180
+ itemGap: {
181
+ value: number;
182
+ property: string;
183
+ propertyType: CMSElementEditTypes;
184
+ unit: number;
185
+ };
186
+ showDivider: {
187
+ value: boolean;
188
+ property: string;
189
+ propertyType: CMSElementEditTypes;
190
+ };
191
+ };
192
+ design: {
193
+ selectorKey: SelectorKeysEnum;
194
+ accordionArrowsItem: {
195
+ selectorKey: SelectorKeysEnum;
196
+ showIcon: CMSIBCommonInterface | undefined;
197
+ iconColor: CMSIBCommonInterface;
198
+ iconSize: import("../../interfaces/global").CMSIBSizeInterface;
199
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
200
+ showIconDesc: CMSIBCommonInterface | undefined;
201
+ iconColorDesc: CMSIBCommonInterface;
202
+ iconSizeDesc: import("../../interfaces/global").CMSIBSizeInterface;
203
+ iconDesc: import("../../interfaces/global").CMSIBIconInterface | undefined;
204
+ };
205
+ headerContainer: {
206
+ theme: CMSIBCommonInterface;
207
+ font: CMSIBCommonInterface;
208
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
209
+ textColor: CMSIBCommonInterface;
210
+ bold: CMSIBCommonInterface;
211
+ italic: CMSIBCommonInterface;
212
+ linethrough: CMSIBCommonInterface;
213
+ underline: CMSIBCommonInterface;
214
+ textAlign: CMSIBCommonInterface;
215
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
216
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
217
+ borderColor: CMSIBCommonInterface;
218
+ borderStyle: CMSIBCommonInterface;
219
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
220
+ showBorder: CMSIBCommonInterface;
221
+ backgroundColor: CMSIBCommonInterface;
222
+ showShadow: CMSIBCommonInterface;
223
+ shadowColor: CMSIBCommonInterface;
224
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
225
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
226
+ padding: any;
227
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
228
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
229
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
230
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
231
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
232
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
233
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
234
+ selectorKey: SelectorKeysEnum;
235
+ };
236
+ cartBodyWidget: {
237
+ padding: any;
238
+ itemGap: {
239
+ value: CMSCSSUnitTypesEnums;
240
+ unit: CMSCSSUnitTypesEnums;
241
+ property: string;
242
+ propertyType: CMSElementEditTypes;
243
+ };
244
+ theme: CMSIBCommonInterface;
245
+ font: CMSIBCommonInterface;
246
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
247
+ textColor: CMSIBCommonInterface;
248
+ bold: CMSIBCommonInterface;
249
+ italic: CMSIBCommonInterface;
250
+ linethrough: CMSIBCommonInterface;
251
+ underline: CMSIBCommonInterface;
252
+ textAlign: CMSIBCommonInterface;
253
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
254
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
255
+ borderColor: CMSIBCommonInterface;
256
+ borderStyle: CMSIBCommonInterface;
257
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
258
+ showBorder: CMSIBCommonInterface;
259
+ backgroundColor: CMSIBCommonInterface;
260
+ showShadow: CMSIBCommonInterface;
261
+ shadowColor: CMSIBCommonInterface;
262
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
263
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
264
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
265
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
266
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
267
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
268
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
269
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
270
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
271
+ selectorKey: SelectorKeysEnum;
272
+ };
273
+ productWidget: {
274
+ selectorKey: SelectorKeysEnum;
275
+ productWidgetWrapper: {
276
+ padding: any;
277
+ itemGap: {
278
+ value: CMSCSSUnitTypesEnums;
279
+ unit: CMSCSSUnitTypesEnums;
280
+ property: string;
281
+ propertyType: CMSElementEditTypes;
282
+ };
283
+ borderColor: CMSIBCommonInterface;
284
+ borderStyle: CMSIBCommonInterface;
285
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
286
+ showBorder: CMSIBCommonInterface;
287
+ backgroundColor: CMSIBCommonInterface;
288
+ showShadow: CMSIBCommonInterface;
289
+ shadowColor: CMSIBCommonInterface;
290
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
291
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
292
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
293
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
294
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
295
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
296
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
297
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
298
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
299
+ selectorKey: SelectorKeysEnum;
300
+ };
301
+ productWidgetItem: {
302
+ itemGap: {
303
+ value: CMSCSSUnitTypesEnums;
304
+ unit: CMSCSSUnitTypesEnums;
305
+ property: string;
306
+ propertyType: CMSElementEditTypes;
307
+ };
308
+ borderColor: CMSIBCommonInterface;
309
+ borderStyle: CMSIBCommonInterface;
310
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
311
+ showBorder: CMSIBCommonInterface;
312
+ backgroundColor: CMSIBCommonInterface;
313
+ showShadow: CMSIBCommonInterface;
314
+ shadowColor: CMSIBCommonInterface;
315
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
316
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
317
+ padding: any;
318
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
319
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
320
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
321
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
322
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
323
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
324
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
325
+ selectorKey: SelectorKeysEnum;
326
+ };
327
+ productName: {
328
+ theme: CMSIBCommonInterface;
329
+ font: CMSIBCommonInterface;
330
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
331
+ textColor: CMSIBCommonInterface;
332
+ bold: CMSIBCommonInterface;
333
+ italic: CMSIBCommonInterface;
334
+ linethrough: CMSIBCommonInterface;
335
+ underline: CMSIBCommonInterface;
336
+ textAlign: CMSIBCommonInterface;
337
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
338
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
339
+ borderColor: CMSIBCommonInterface;
340
+ borderStyle: CMSIBCommonInterface;
341
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
342
+ showBorder: CMSIBCommonInterface;
343
+ backgroundColor: CMSIBCommonInterface;
344
+ showShadow: CMSIBCommonInterface;
345
+ shadowColor: CMSIBCommonInterface;
346
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
347
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
348
+ padding: any;
349
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
350
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
351
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
352
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
353
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
354
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
355
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
356
+ selectorKey: SelectorKeysEnum;
357
+ };
358
+ productCode: {
359
+ theme: CMSIBCommonInterface;
360
+ font: CMSIBCommonInterface;
361
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
362
+ textColor: CMSIBCommonInterface;
363
+ bold: CMSIBCommonInterface;
364
+ italic: CMSIBCommonInterface;
365
+ linethrough: CMSIBCommonInterface;
366
+ underline: CMSIBCommonInterface;
367
+ textAlign: CMSIBCommonInterface;
368
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
369
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
370
+ borderColor: CMSIBCommonInterface;
371
+ borderStyle: CMSIBCommonInterface;
372
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
373
+ showBorder: CMSIBCommonInterface;
374
+ backgroundColor: CMSIBCommonInterface;
375
+ showShadow: CMSIBCommonInterface;
376
+ shadowColor: CMSIBCommonInterface;
377
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
378
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
379
+ padding: any;
380
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
381
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
382
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
383
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
384
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
385
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
386
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
387
+ selectorKey: SelectorKeysEnum;
388
+ };
389
+ productQty: {
390
+ themeDesc: {
391
+ value: string;
392
+ property: string;
393
+ propertyType: CMSElementEditTypes;
394
+ };
395
+ fontDesc: {
396
+ value: string;
397
+ property: string;
398
+ propertyType: CMSElementEditTypes;
399
+ parentRef: string;
400
+ };
401
+ fontSizeDesc: {
402
+ value: number;
403
+ unit: number;
404
+ property: string;
405
+ propertyType: CMSElementEditTypes;
406
+ parentRef: string;
407
+ };
408
+ textColorDesc: {
409
+ value: {
410
+ hex: string;
411
+ rgb: {
412
+ r: string;
413
+ g: string;
414
+ b: string;
415
+ a: number;
416
+ };
417
+ };
418
+ property: string;
419
+ propertyType: CMSElementEditTypes;
420
+ parentRef: string;
421
+ };
422
+ textHighlightDesc: {
423
+ value: {
424
+ hex: string;
425
+ rgb: {
426
+ r: string;
427
+ g: string;
428
+ b: string;
429
+ a: number;
430
+ };
431
+ };
432
+ property: string;
433
+ propertyType: CMSElementEditTypes;
434
+ };
435
+ boldDesc: {
436
+ value: string;
437
+ property: string;
438
+ propertyType: CMSElementEditTypes;
439
+ parentRef: string;
440
+ };
441
+ italicDesc: {
442
+ value: string;
443
+ property: string;
444
+ propertyType: CMSElementEditTypes;
445
+ parentRef: string;
446
+ };
447
+ linethroughDesc: {
448
+ value: string;
449
+ property: string;
450
+ propertyType: CMSElementEditTypes;
451
+ parentRef: string;
452
+ };
453
+ underlineDesc: {
454
+ value: string;
455
+ property: string;
456
+ propertyType: CMSElementEditTypes;
457
+ parentRef: string;
458
+ };
459
+ textAlignDesc: {
460
+ value: string;
461
+ property: string;
462
+ propertyType: CMSElementEditTypes;
463
+ parentRef: string;
464
+ };
465
+ characterSpacingDesc: {
466
+ value: number;
467
+ unit: number;
468
+ property: string;
469
+ propertyType: CMSElementEditTypes;
470
+ parentRef: string;
471
+ };
472
+ lineHeightDesc: {
473
+ value: number;
474
+ unit: number;
475
+ property: string;
476
+ propertyType: CMSElementEditTypes;
477
+ parentRef: string;
478
+ };
479
+ paragraphSpacingDesc: {
480
+ value: number;
481
+ unit: number;
482
+ property: string;
483
+ propertyType: CMSElementEditTypes;
484
+ parentRef: string;
485
+ };
486
+ theme: {
487
+ value: string;
488
+ property: string;
489
+ propertyType: CMSElementEditTypes;
490
+ };
491
+ font: {
492
+ value: string;
493
+ property: string;
494
+ propertyType: CMSElementEditTypes;
495
+ parentRef: string;
496
+ };
497
+ fontSize: {
498
+ value: number;
499
+ unit: number;
500
+ property: string;
501
+ propertyType: CMSElementEditTypes;
502
+ parentRef: string;
503
+ };
504
+ textColor: {
505
+ value: {
506
+ hex: string;
507
+ rgb: {
508
+ r: string;
509
+ g: string;
510
+ b: string;
511
+ a: number;
512
+ };
513
+ };
514
+ property: string;
515
+ propertyType: CMSElementEditTypes;
516
+ parentRef: string;
517
+ };
518
+ textHighlight: {
519
+ value: {
520
+ hex: string;
521
+ rgb: {
522
+ r: string;
523
+ g: string;
524
+ b: string;
525
+ a: number;
526
+ };
527
+ };
528
+ property: string;
529
+ propertyType: CMSElementEditTypes;
530
+ };
531
+ bold: {
532
+ value: string;
533
+ property: string;
534
+ propertyType: CMSElementEditTypes;
535
+ parentRef: string;
536
+ };
537
+ italic: {
538
+ value: string;
539
+ property: string;
540
+ propertyType: CMSElementEditTypes;
541
+ parentRef: string;
542
+ };
543
+ linethrough: {
544
+ value: string;
545
+ property: string;
546
+ propertyType: CMSElementEditTypes;
547
+ parentRef: string;
548
+ };
549
+ underline: {
550
+ value: string;
551
+ property: string;
552
+ propertyType: CMSElementEditTypes;
553
+ parentRef: string;
554
+ };
555
+ textAlign: {
556
+ value: string;
557
+ property: string;
558
+ propertyType: CMSElementEditTypes;
559
+ parentRef: string;
560
+ };
561
+ characterSpacing: {
562
+ value: number;
563
+ unit: number;
564
+ property: string;
565
+ propertyType: CMSElementEditTypes;
566
+ parentRef: string;
567
+ };
568
+ lineHeight: {
569
+ value: number;
570
+ unit: number;
571
+ property: string;
572
+ propertyType: CMSElementEditTypes;
573
+ parentRef: string;
574
+ };
575
+ paragraphSpacing: {
576
+ value: number;
577
+ unit: number;
578
+ property: string;
579
+ propertyType: CMSElementEditTypes;
580
+ parentRef: string;
581
+ };
582
+ borderColor: CMSIBCommonInterface;
583
+ borderStyle: CMSIBCommonInterface;
584
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
585
+ showBorder: CMSIBCommonInterface;
586
+ backgroundColor: CMSIBCommonInterface;
587
+ showShadow: CMSIBCommonInterface;
588
+ shadowColor: CMSIBCommonInterface;
589
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
590
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
591
+ padding: any;
592
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
593
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
594
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
595
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
596
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
597
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
598
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
599
+ selectorKey: SelectorKeysEnum;
600
+ };
601
+ productEstimatedDate: {
602
+ themeDesc: {
603
+ value: string;
604
+ property: string;
605
+ propertyType: CMSElementEditTypes;
606
+ };
607
+ fontDesc: {
608
+ value: string;
609
+ property: string;
610
+ propertyType: CMSElementEditTypes;
611
+ parentRef: string;
612
+ };
613
+ fontSizeDesc: {
614
+ value: number;
615
+ unit: number;
616
+ property: string;
617
+ propertyType: CMSElementEditTypes;
618
+ parentRef: string;
619
+ };
620
+ textColorDesc: {
621
+ value: {
622
+ hex: string;
623
+ rgb: {
624
+ r: string;
625
+ g: string;
626
+ b: string;
627
+ a: number;
628
+ };
629
+ };
630
+ property: string;
631
+ propertyType: CMSElementEditTypes;
632
+ parentRef: string;
633
+ };
634
+ textHighlightDesc: {
635
+ value: {
636
+ hex: string;
637
+ rgb: {
638
+ r: string;
639
+ g: string;
640
+ b: string;
641
+ a: number;
642
+ };
643
+ };
644
+ property: string;
645
+ propertyType: CMSElementEditTypes;
646
+ };
647
+ boldDesc: {
648
+ value: string;
649
+ property: string;
650
+ propertyType: CMSElementEditTypes;
651
+ parentRef: string;
652
+ };
653
+ italicDesc: {
654
+ value: string;
655
+ property: string;
656
+ propertyType: CMSElementEditTypes;
657
+ parentRef: string;
658
+ };
659
+ linethroughDesc: {
660
+ value: string;
661
+ property: string;
662
+ propertyType: CMSElementEditTypes;
663
+ parentRef: string;
664
+ };
665
+ underlineDesc: {
666
+ value: string;
667
+ property: string;
668
+ propertyType: CMSElementEditTypes;
669
+ parentRef: string;
670
+ };
671
+ textAlignDesc: {
672
+ value: string;
673
+ property: string;
674
+ propertyType: CMSElementEditTypes;
675
+ parentRef: string;
676
+ };
677
+ characterSpacingDesc: {
678
+ value: number;
679
+ unit: number;
680
+ property: string;
681
+ propertyType: CMSElementEditTypes;
682
+ parentRef: string;
683
+ };
684
+ lineHeightDesc: {
685
+ value: number;
686
+ unit: number;
687
+ property: string;
688
+ propertyType: CMSElementEditTypes;
689
+ parentRef: string;
690
+ };
691
+ paragraphSpacingDesc: {
692
+ value: number;
693
+ unit: number;
694
+ property: string;
695
+ propertyType: CMSElementEditTypes;
696
+ parentRef: string;
697
+ };
698
+ theme: {
699
+ value: string;
700
+ property: string;
701
+ propertyType: CMSElementEditTypes;
702
+ };
703
+ font: {
704
+ value: string;
705
+ property: string;
706
+ propertyType: CMSElementEditTypes;
707
+ parentRef: string;
708
+ };
709
+ fontSize: {
710
+ value: number;
711
+ unit: number;
712
+ property: string;
713
+ propertyType: CMSElementEditTypes;
714
+ parentRef: string;
715
+ };
716
+ textColor: {
717
+ value: {
718
+ hex: string;
719
+ rgb: {
720
+ r: string;
721
+ g: string;
722
+ b: string;
723
+ a: number;
724
+ };
725
+ };
726
+ property: string;
727
+ propertyType: CMSElementEditTypes;
728
+ parentRef: string;
729
+ };
730
+ textHighlight: {
731
+ value: {
732
+ hex: string;
733
+ rgb: {
734
+ r: string;
735
+ g: string;
736
+ b: string;
737
+ a: number;
738
+ };
739
+ };
740
+ property: string;
741
+ propertyType: CMSElementEditTypes;
742
+ };
743
+ bold: {
744
+ value: string;
745
+ property: string;
746
+ propertyType: CMSElementEditTypes;
747
+ parentRef: string;
748
+ };
749
+ italic: {
750
+ value: string;
751
+ property: string;
752
+ propertyType: CMSElementEditTypes;
753
+ parentRef: string;
754
+ };
755
+ linethrough: {
756
+ value: string;
757
+ property: string;
758
+ propertyType: CMSElementEditTypes;
759
+ parentRef: string;
760
+ };
761
+ underline: {
762
+ value: string;
763
+ property: string;
764
+ propertyType: CMSElementEditTypes;
765
+ parentRef: string;
766
+ };
767
+ textAlign: {
768
+ value: string;
769
+ property: string;
770
+ propertyType: CMSElementEditTypes;
771
+ parentRef: string;
772
+ };
773
+ characterSpacing: {
774
+ value: number;
775
+ unit: number;
776
+ property: string;
777
+ propertyType: CMSElementEditTypes;
778
+ parentRef: string;
779
+ };
780
+ lineHeight: {
781
+ value: number;
782
+ unit: number;
783
+ property: string;
784
+ propertyType: CMSElementEditTypes;
785
+ parentRef: string;
786
+ };
787
+ paragraphSpacing: {
788
+ value: number;
789
+ unit: number;
790
+ property: string;
791
+ propertyType: CMSElementEditTypes;
792
+ parentRef: string;
793
+ };
794
+ borderColor: CMSIBCommonInterface;
795
+ borderStyle: CMSIBCommonInterface;
796
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
797
+ showBorder: CMSIBCommonInterface;
798
+ backgroundColor: CMSIBCommonInterface;
799
+ showShadow: CMSIBCommonInterface;
800
+ shadowColor: CMSIBCommonInterface;
801
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
802
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
803
+ padding: any;
804
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
805
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
806
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
807
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
808
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
809
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
810
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
811
+ selectorKey: SelectorKeysEnum;
812
+ };
813
+ productImage: {
814
+ borderColor: CMSIBCommonInterface;
815
+ borderStyle: CMSIBCommonInterface;
816
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
817
+ showBorder: CMSIBCommonInterface;
818
+ backgroundColor: CMSIBCommonInterface;
819
+ showShadow: CMSIBCommonInterface;
820
+ shadowColor: CMSIBCommonInterface;
821
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
822
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
823
+ padding: any;
824
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
825
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
826
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
827
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
828
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
829
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
830
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
831
+ selectorKey: SelectorKeysEnum;
832
+ };
833
+ productPrice: {
834
+ theme: CMSIBCommonInterface;
835
+ font: CMSIBCommonInterface;
836
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
837
+ textColor: CMSIBCommonInterface;
838
+ bold: CMSIBCommonInterface;
839
+ italic: CMSIBCommonInterface;
840
+ linethrough: CMSIBCommonInterface;
841
+ underline: CMSIBCommonInterface;
842
+ textAlign: CMSIBCommonInterface;
843
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
844
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
845
+ borderColor: CMSIBCommonInterface;
846
+ borderStyle: CMSIBCommonInterface;
847
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
848
+ showBorder: CMSIBCommonInterface;
849
+ backgroundColor: CMSIBCommonInterface;
850
+ showShadow: CMSIBCommonInterface;
851
+ shadowColor: CMSIBCommonInterface;
852
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
853
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
854
+ padding: any;
855
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
856
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
857
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
858
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
859
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
860
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
861
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
862
+ selectorKey: SelectorKeysEnum;
863
+ };
864
+ };
865
+ numberOfItems: {
866
+ padding: any;
867
+ themeDesc: {
868
+ value: string;
869
+ property: string;
870
+ propertyType: CMSElementEditTypes;
871
+ };
872
+ fontDesc: {
873
+ value: string;
874
+ property: string;
875
+ propertyType: CMSElementEditTypes;
876
+ parentRef: string;
877
+ };
878
+ fontSizeDesc: {
879
+ value: number;
880
+ unit: number;
881
+ property: string;
882
+ propertyType: CMSElementEditTypes;
883
+ parentRef: string;
884
+ };
885
+ textColorDesc: {
886
+ value: {
887
+ hex: string;
888
+ rgb: {
889
+ r: string;
890
+ g: string;
891
+ b: string;
892
+ a: number;
893
+ };
894
+ };
895
+ property: string;
896
+ propertyType: CMSElementEditTypes;
897
+ parentRef: string;
898
+ };
899
+ textHighlightDesc: {
900
+ value: {
901
+ hex: string;
902
+ rgb: {
903
+ r: string;
904
+ g: string;
905
+ b: string;
906
+ a: number;
907
+ };
908
+ };
909
+ property: string;
910
+ propertyType: CMSElementEditTypes;
911
+ };
912
+ boldDesc: {
913
+ value: string;
914
+ property: string;
915
+ propertyType: CMSElementEditTypes;
916
+ parentRef: string;
917
+ };
918
+ italicDesc: {
919
+ value: string;
920
+ property: string;
921
+ propertyType: CMSElementEditTypes;
922
+ parentRef: string;
923
+ };
924
+ linethroughDesc: {
925
+ value: string;
926
+ property: string;
927
+ propertyType: CMSElementEditTypes;
928
+ parentRef: string;
929
+ };
930
+ underlineDesc: {
931
+ value: string;
932
+ property: string;
933
+ propertyType: CMSElementEditTypes;
934
+ parentRef: string;
935
+ };
936
+ textAlignDesc: {
937
+ value: string;
938
+ property: string;
939
+ propertyType: CMSElementEditTypes;
940
+ parentRef: string;
941
+ };
942
+ characterSpacingDesc: {
943
+ value: number;
944
+ unit: number;
945
+ property: string;
946
+ propertyType: CMSElementEditTypes;
947
+ parentRef: string;
948
+ };
949
+ lineHeightDesc: {
950
+ value: number;
951
+ unit: number;
952
+ property: string;
953
+ propertyType: CMSElementEditTypes;
954
+ parentRef: string;
955
+ };
956
+ paragraphSpacingDesc: {
957
+ value: number;
958
+ unit: number;
959
+ property: string;
960
+ propertyType: CMSElementEditTypes;
961
+ parentRef: string;
962
+ };
963
+ theme: {
964
+ value: string;
965
+ property: string;
966
+ propertyType: CMSElementEditTypes;
967
+ };
968
+ font: {
969
+ value: string;
970
+ property: string;
971
+ propertyType: CMSElementEditTypes;
972
+ parentRef: string;
973
+ };
974
+ fontSize: {
975
+ value: number;
976
+ unit: number;
977
+ property: string;
978
+ propertyType: CMSElementEditTypes;
979
+ parentRef: string;
980
+ };
981
+ textColor: {
982
+ value: {
983
+ hex: string;
984
+ rgb: {
985
+ r: string;
986
+ g: string;
987
+ b: string;
988
+ a: number;
989
+ };
990
+ };
991
+ property: string;
992
+ propertyType: CMSElementEditTypes;
993
+ parentRef: string;
994
+ };
995
+ textHighlight: {
996
+ value: {
997
+ hex: string;
998
+ rgb: {
999
+ r: string;
1000
+ g: string;
1001
+ b: string;
1002
+ a: number;
1003
+ };
1004
+ };
1005
+ property: string;
1006
+ propertyType: CMSElementEditTypes;
1007
+ };
1008
+ bold: {
1009
+ value: string;
1010
+ property: string;
1011
+ propertyType: CMSElementEditTypes;
1012
+ parentRef: string;
1013
+ };
1014
+ italic: {
1015
+ value: string;
1016
+ property: string;
1017
+ propertyType: CMSElementEditTypes;
1018
+ parentRef: string;
1019
+ };
1020
+ linethrough: {
1021
+ value: string;
1022
+ property: string;
1023
+ propertyType: CMSElementEditTypes;
1024
+ parentRef: string;
1025
+ };
1026
+ underline: {
1027
+ value: string;
1028
+ property: string;
1029
+ propertyType: CMSElementEditTypes;
1030
+ parentRef: string;
1031
+ };
1032
+ textAlign: {
1033
+ value: string;
1034
+ property: string;
1035
+ propertyType: CMSElementEditTypes;
1036
+ parentRef: string;
1037
+ };
1038
+ characterSpacing: {
1039
+ value: number;
1040
+ unit: number;
1041
+ property: string;
1042
+ propertyType: CMSElementEditTypes;
1043
+ parentRef: string;
1044
+ };
1045
+ lineHeight: {
1046
+ value: number;
1047
+ unit: number;
1048
+ property: string;
1049
+ propertyType: CMSElementEditTypes;
1050
+ parentRef: string;
1051
+ };
1052
+ paragraphSpacing: {
1053
+ value: number;
1054
+ unit: number;
1055
+ property: string;
1056
+ propertyType: CMSElementEditTypes;
1057
+ parentRef: string;
1058
+ };
1059
+ borderColor: CMSIBCommonInterface;
1060
+ borderStyle: CMSIBCommonInterface;
1061
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
1062
+ showBorder: CMSIBCommonInterface;
1063
+ backgroundColor: CMSIBCommonInterface;
1064
+ showShadow: CMSIBCommonInterface;
1065
+ shadowColor: CMSIBCommonInterface;
1066
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
1067
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
1068
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
1069
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
1070
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
1071
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
1072
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
1073
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
1074
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
1075
+ selectorKey: SelectorKeysEnum;
1076
+ };
1077
+ shippingCharges: {
1078
+ padding: any;
1079
+ themeDesc: {
1080
+ value: string;
1081
+ property: string;
1082
+ propertyType: CMSElementEditTypes;
1083
+ };
1084
+ fontDesc: {
1085
+ value: string;
1086
+ property: string;
1087
+ propertyType: CMSElementEditTypes;
1088
+ parentRef: string;
1089
+ };
1090
+ fontSizeDesc: {
1091
+ value: number;
1092
+ unit: number;
1093
+ property: string;
1094
+ propertyType: CMSElementEditTypes;
1095
+ parentRef: string;
1096
+ };
1097
+ textColorDesc: {
1098
+ value: {
1099
+ hex: string;
1100
+ rgb: {
1101
+ r: string;
1102
+ g: string;
1103
+ b: string;
1104
+ a: number;
1105
+ };
1106
+ };
1107
+ property: string;
1108
+ propertyType: CMSElementEditTypes;
1109
+ parentRef: string;
1110
+ };
1111
+ textHighlightDesc: {
1112
+ value: {
1113
+ hex: string;
1114
+ rgb: {
1115
+ r: string;
1116
+ g: string;
1117
+ b: string;
1118
+ a: number;
1119
+ };
1120
+ };
1121
+ property: string;
1122
+ propertyType: CMSElementEditTypes;
1123
+ };
1124
+ boldDesc: {
1125
+ value: string;
1126
+ property: string;
1127
+ propertyType: CMSElementEditTypes;
1128
+ parentRef: string;
1129
+ };
1130
+ italicDesc: {
1131
+ value: string;
1132
+ property: string;
1133
+ propertyType: CMSElementEditTypes;
1134
+ parentRef: string;
1135
+ };
1136
+ linethroughDesc: {
1137
+ value: string;
1138
+ property: string;
1139
+ propertyType: CMSElementEditTypes;
1140
+ parentRef: string;
1141
+ };
1142
+ underlineDesc: {
1143
+ value: string;
1144
+ property: string;
1145
+ propertyType: CMSElementEditTypes;
1146
+ parentRef: string;
1147
+ };
1148
+ textAlignDesc: {
1149
+ value: string;
1150
+ property: string;
1151
+ propertyType: CMSElementEditTypes;
1152
+ parentRef: string;
1153
+ };
1154
+ characterSpacingDesc: {
1155
+ value: number;
1156
+ unit: number;
1157
+ property: string;
1158
+ propertyType: CMSElementEditTypes;
1159
+ parentRef: string;
1160
+ };
1161
+ lineHeightDesc: {
1162
+ value: number;
1163
+ unit: number;
1164
+ property: string;
1165
+ propertyType: CMSElementEditTypes;
1166
+ parentRef: string;
1167
+ };
1168
+ paragraphSpacingDesc: {
1169
+ value: number;
1170
+ unit: number;
1171
+ property: string;
1172
+ propertyType: CMSElementEditTypes;
1173
+ parentRef: string;
1174
+ };
1175
+ theme: {
1176
+ value: string;
1177
+ property: string;
1178
+ propertyType: CMSElementEditTypes;
1179
+ };
1180
+ font: {
1181
+ value: string;
1182
+ property: string;
1183
+ propertyType: CMSElementEditTypes;
1184
+ parentRef: string;
1185
+ };
1186
+ fontSize: {
1187
+ value: number;
1188
+ unit: number;
1189
+ property: string;
1190
+ propertyType: CMSElementEditTypes;
1191
+ parentRef: string;
1192
+ };
1193
+ textColor: {
1194
+ value: {
1195
+ hex: string;
1196
+ rgb: {
1197
+ r: string;
1198
+ g: string;
1199
+ b: string;
1200
+ a: number;
1201
+ };
1202
+ };
1203
+ property: string;
1204
+ propertyType: CMSElementEditTypes;
1205
+ parentRef: string;
1206
+ };
1207
+ textHighlight: {
1208
+ value: {
1209
+ hex: string;
1210
+ rgb: {
1211
+ r: string;
1212
+ g: string;
1213
+ b: string;
1214
+ a: number;
1215
+ };
1216
+ };
1217
+ property: string;
1218
+ propertyType: CMSElementEditTypes;
1219
+ };
1220
+ bold: {
1221
+ value: string;
1222
+ property: string;
1223
+ propertyType: CMSElementEditTypes;
1224
+ parentRef: string;
1225
+ };
1226
+ italic: {
1227
+ value: string;
1228
+ property: string;
1229
+ propertyType: CMSElementEditTypes;
1230
+ parentRef: string;
1231
+ };
1232
+ linethrough: {
1233
+ value: string;
1234
+ property: string;
1235
+ propertyType: CMSElementEditTypes;
1236
+ parentRef: string;
1237
+ };
1238
+ underline: {
1239
+ value: string;
1240
+ property: string;
1241
+ propertyType: CMSElementEditTypes;
1242
+ parentRef: string;
1243
+ };
1244
+ textAlign: {
1245
+ value: string;
1246
+ property: string;
1247
+ propertyType: CMSElementEditTypes;
1248
+ parentRef: string;
1249
+ };
1250
+ characterSpacing: {
1251
+ value: number;
1252
+ unit: number;
1253
+ property: string;
1254
+ propertyType: CMSElementEditTypes;
1255
+ parentRef: string;
1256
+ };
1257
+ lineHeight: {
1258
+ value: number;
1259
+ unit: number;
1260
+ property: string;
1261
+ propertyType: CMSElementEditTypes;
1262
+ parentRef: string;
1263
+ };
1264
+ paragraphSpacing: {
1265
+ value: number;
1266
+ unit: number;
1267
+ property: string;
1268
+ propertyType: CMSElementEditTypes;
1269
+ parentRef: string;
1270
+ };
1271
+ borderColor: CMSIBCommonInterface;
1272
+ borderStyle: CMSIBCommonInterface;
1273
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
1274
+ showBorder: CMSIBCommonInterface;
1275
+ backgroundColor: CMSIBCommonInterface;
1276
+ showShadow: CMSIBCommonInterface;
1277
+ shadowColor: CMSIBCommonInterface;
1278
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
1279
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
1280
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
1281
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
1282
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
1283
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
1284
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
1285
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
1286
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
1287
+ selectorKey: SelectorKeysEnum;
1288
+ };
1289
+ tax: {
1290
+ padding: any;
1291
+ themeDesc: {
1292
+ value: string;
1293
+ property: string;
1294
+ propertyType: CMSElementEditTypes;
1295
+ };
1296
+ fontDesc: {
1297
+ value: string;
1298
+ property: string;
1299
+ propertyType: CMSElementEditTypes;
1300
+ parentRef: string;
1301
+ };
1302
+ fontSizeDesc: {
1303
+ value: number;
1304
+ unit: number;
1305
+ property: string;
1306
+ propertyType: CMSElementEditTypes;
1307
+ parentRef: string;
1308
+ };
1309
+ textColorDesc: {
1310
+ value: {
1311
+ hex: string;
1312
+ rgb: {
1313
+ r: string;
1314
+ g: string;
1315
+ b: string;
1316
+ a: number;
1317
+ };
1318
+ };
1319
+ property: string;
1320
+ propertyType: CMSElementEditTypes;
1321
+ parentRef: string;
1322
+ };
1323
+ textHighlightDesc: {
1324
+ value: {
1325
+ hex: string;
1326
+ rgb: {
1327
+ r: string;
1328
+ g: string;
1329
+ b: string;
1330
+ a: number;
1331
+ };
1332
+ };
1333
+ property: string;
1334
+ propertyType: CMSElementEditTypes;
1335
+ };
1336
+ boldDesc: {
1337
+ value: string;
1338
+ property: string;
1339
+ propertyType: CMSElementEditTypes;
1340
+ parentRef: string;
1341
+ };
1342
+ italicDesc: {
1343
+ value: string;
1344
+ property: string;
1345
+ propertyType: CMSElementEditTypes;
1346
+ parentRef: string;
1347
+ };
1348
+ linethroughDesc: {
1349
+ value: string;
1350
+ property: string;
1351
+ propertyType: CMSElementEditTypes;
1352
+ parentRef: string;
1353
+ };
1354
+ underlineDesc: {
1355
+ value: string;
1356
+ property: string;
1357
+ propertyType: CMSElementEditTypes;
1358
+ parentRef: string;
1359
+ };
1360
+ textAlignDesc: {
1361
+ value: string;
1362
+ property: string;
1363
+ propertyType: CMSElementEditTypes;
1364
+ parentRef: string;
1365
+ };
1366
+ characterSpacingDesc: {
1367
+ value: number;
1368
+ unit: number;
1369
+ property: string;
1370
+ propertyType: CMSElementEditTypes;
1371
+ parentRef: string;
1372
+ };
1373
+ lineHeightDesc: {
1374
+ value: number;
1375
+ unit: number;
1376
+ property: string;
1377
+ propertyType: CMSElementEditTypes;
1378
+ parentRef: string;
1379
+ };
1380
+ paragraphSpacingDesc: {
1381
+ value: number;
1382
+ unit: number;
1383
+ property: string;
1384
+ propertyType: CMSElementEditTypes;
1385
+ parentRef: string;
1386
+ };
1387
+ theme: {
1388
+ value: string;
1389
+ property: string;
1390
+ propertyType: CMSElementEditTypes;
1391
+ };
1392
+ font: {
1393
+ value: string;
1394
+ property: string;
1395
+ propertyType: CMSElementEditTypes;
1396
+ parentRef: string;
1397
+ };
1398
+ fontSize: {
1399
+ value: number;
1400
+ unit: number;
1401
+ property: string;
1402
+ propertyType: CMSElementEditTypes;
1403
+ parentRef: string;
1404
+ };
1405
+ textColor: {
1406
+ value: {
1407
+ hex: string;
1408
+ rgb: {
1409
+ r: string;
1410
+ g: string;
1411
+ b: string;
1412
+ a: number;
1413
+ };
1414
+ };
1415
+ property: string;
1416
+ propertyType: CMSElementEditTypes;
1417
+ parentRef: string;
1418
+ };
1419
+ textHighlight: {
1420
+ value: {
1421
+ hex: string;
1422
+ rgb: {
1423
+ r: string;
1424
+ g: string;
1425
+ b: string;
1426
+ a: number;
1427
+ };
1428
+ };
1429
+ property: string;
1430
+ propertyType: CMSElementEditTypes;
1431
+ };
1432
+ bold: {
1433
+ value: string;
1434
+ property: string;
1435
+ propertyType: CMSElementEditTypes;
1436
+ parentRef: string;
1437
+ };
1438
+ italic: {
1439
+ value: string;
1440
+ property: string;
1441
+ propertyType: CMSElementEditTypes;
1442
+ parentRef: string;
1443
+ };
1444
+ linethrough: {
1445
+ value: string;
1446
+ property: string;
1447
+ propertyType: CMSElementEditTypes;
1448
+ parentRef: string;
1449
+ };
1450
+ underline: {
1451
+ value: string;
1452
+ property: string;
1453
+ propertyType: CMSElementEditTypes;
1454
+ parentRef: string;
1455
+ };
1456
+ textAlign: {
1457
+ value: string;
1458
+ property: string;
1459
+ propertyType: CMSElementEditTypes;
1460
+ parentRef: string;
1461
+ };
1462
+ characterSpacing: {
1463
+ value: number;
1464
+ unit: number;
1465
+ property: string;
1466
+ propertyType: CMSElementEditTypes;
1467
+ parentRef: string;
1468
+ };
1469
+ lineHeight: {
1470
+ value: number;
1471
+ unit: number;
1472
+ property: string;
1473
+ propertyType: CMSElementEditTypes;
1474
+ parentRef: string;
1475
+ };
1476
+ paragraphSpacing: {
1477
+ value: number;
1478
+ unit: number;
1479
+ property: string;
1480
+ propertyType: CMSElementEditTypes;
1481
+ parentRef: string;
1482
+ };
1483
+ borderColor: CMSIBCommonInterface;
1484
+ borderStyle: CMSIBCommonInterface;
1485
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
1486
+ showBorder: CMSIBCommonInterface;
1487
+ backgroundColor: CMSIBCommonInterface;
1488
+ showShadow: CMSIBCommonInterface;
1489
+ shadowColor: CMSIBCommonInterface;
1490
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
1491
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
1492
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
1493
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
1494
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
1495
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
1496
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
1497
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
1498
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
1499
+ selectorKey: SelectorKeysEnum;
1500
+ };
1501
+ taxExempt: {
1502
+ padding: any;
1503
+ theme: CMSIBCommonInterface;
1504
+ font: CMSIBCommonInterface;
1505
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
1506
+ textColor: CMSIBCommonInterface;
1507
+ bold: CMSIBCommonInterface;
1508
+ italic: CMSIBCommonInterface;
1509
+ linethrough: CMSIBCommonInterface;
1510
+ underline: CMSIBCommonInterface;
1511
+ textAlign: CMSIBCommonInterface;
1512
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
1513
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
1514
+ borderColor: CMSIBCommonInterface;
1515
+ borderStyle: CMSIBCommonInterface;
1516
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
1517
+ showBorder: CMSIBCommonInterface;
1518
+ backgroundColor: CMSIBCommonInterface;
1519
+ showShadow: CMSIBCommonInterface;
1520
+ shadowColor: CMSIBCommonInterface;
1521
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
1522
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
1523
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
1524
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
1525
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
1526
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
1527
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
1528
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
1529
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
1530
+ selectorKey: SelectorKeysEnum;
1531
+ };
1532
+ couponCode: {
1533
+ padding: any;
1534
+ theme: CMSIBCommonInterface;
1535
+ font: CMSIBCommonInterface;
1536
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
1537
+ textColor: CMSIBCommonInterface;
1538
+ bold: CMSIBCommonInterface;
1539
+ italic: CMSIBCommonInterface;
1540
+ linethrough: CMSIBCommonInterface;
1541
+ underline: CMSIBCommonInterface;
1542
+ textAlign: CMSIBCommonInterface;
1543
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
1544
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
1545
+ borderColor: CMSIBCommonInterface;
1546
+ borderStyle: CMSIBCommonInterface;
1547
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
1548
+ showBorder: CMSIBCommonInterface;
1549
+ backgroundColor: CMSIBCommonInterface;
1550
+ showShadow: CMSIBCommonInterface;
1551
+ shadowColor: CMSIBCommonInterface;
1552
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
1553
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
1554
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
1555
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
1556
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
1557
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
1558
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
1559
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
1560
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
1561
+ selectorKey: SelectorKeysEnum;
1562
+ };
1563
+ subTotal: {
1564
+ themeDesc: {
1565
+ value: string;
1566
+ property: string;
1567
+ propertyType: CMSElementEditTypes;
1568
+ };
1569
+ fontDesc: {
1570
+ value: string;
1571
+ property: string;
1572
+ propertyType: CMSElementEditTypes;
1573
+ parentRef: string;
1574
+ };
1575
+ fontSizeDesc: {
1576
+ value: number;
1577
+ unit: number;
1578
+ property: string;
1579
+ propertyType: CMSElementEditTypes;
1580
+ parentRef: string;
1581
+ };
1582
+ textColorDesc: {
1583
+ value: {
1584
+ hex: string;
1585
+ rgb: {
1586
+ r: string;
1587
+ g: string;
1588
+ b: string;
1589
+ a: number;
1590
+ };
1591
+ };
1592
+ property: string;
1593
+ propertyType: CMSElementEditTypes;
1594
+ parentRef: string;
1595
+ };
1596
+ textHighlightDesc: {
1597
+ value: {
1598
+ hex: string;
1599
+ rgb: {
1600
+ r: string;
1601
+ g: string;
1602
+ b: string;
1603
+ a: number;
1604
+ };
1605
+ };
1606
+ property: string;
1607
+ propertyType: CMSElementEditTypes;
1608
+ };
1609
+ boldDesc: {
1610
+ value: string;
1611
+ property: string;
1612
+ propertyType: CMSElementEditTypes;
1613
+ parentRef: string;
1614
+ };
1615
+ italicDesc: {
1616
+ value: string;
1617
+ property: string;
1618
+ propertyType: CMSElementEditTypes;
1619
+ parentRef: string;
1620
+ };
1621
+ linethroughDesc: {
1622
+ value: string;
1623
+ property: string;
1624
+ propertyType: CMSElementEditTypes;
1625
+ parentRef: string;
1626
+ };
1627
+ underlineDesc: {
1628
+ value: string;
1629
+ property: string;
1630
+ propertyType: CMSElementEditTypes;
1631
+ parentRef: string;
1632
+ };
1633
+ textAlignDesc: {
1634
+ value: string;
1635
+ property: string;
1636
+ propertyType: CMSElementEditTypes;
1637
+ parentRef: string;
1638
+ };
1639
+ characterSpacingDesc: {
1640
+ value: number;
1641
+ unit: number;
1642
+ property: string;
1643
+ propertyType: CMSElementEditTypes;
1644
+ parentRef: string;
1645
+ };
1646
+ lineHeightDesc: {
1647
+ value: number;
1648
+ unit: number;
1649
+ property: string;
1650
+ propertyType: CMSElementEditTypes;
1651
+ parentRef: string;
1652
+ };
1653
+ paragraphSpacingDesc: {
1654
+ value: number;
1655
+ unit: number;
1656
+ property: string;
1657
+ propertyType: CMSElementEditTypes;
1658
+ parentRef: string;
1659
+ };
1660
+ theme: {
1661
+ value: string;
1662
+ property: string;
1663
+ propertyType: CMSElementEditTypes;
1664
+ };
1665
+ font: {
1666
+ value: string;
1667
+ property: string;
1668
+ propertyType: CMSElementEditTypes;
1669
+ parentRef: string;
1670
+ };
1671
+ fontSize: {
1672
+ value: number;
1673
+ unit: number;
1674
+ property: string;
1675
+ propertyType: CMSElementEditTypes;
1676
+ parentRef: string;
1677
+ };
1678
+ textColor: {
1679
+ value: {
1680
+ hex: string;
1681
+ rgb: {
1682
+ r: string;
1683
+ g: string;
1684
+ b: string;
1685
+ a: number;
1686
+ };
1687
+ };
1688
+ property: string;
1689
+ propertyType: CMSElementEditTypes;
1690
+ parentRef: string;
1691
+ };
1692
+ textHighlight: {
1693
+ value: {
1694
+ hex: string;
1695
+ rgb: {
1696
+ r: string;
1697
+ g: string;
1698
+ b: string;
1699
+ a: number;
1700
+ };
1701
+ };
1702
+ property: string;
1703
+ propertyType: CMSElementEditTypes;
1704
+ };
1705
+ bold: {
1706
+ value: string;
1707
+ property: string;
1708
+ propertyType: CMSElementEditTypes;
1709
+ parentRef: string;
1710
+ };
1711
+ italic: {
1712
+ value: string;
1713
+ property: string;
1714
+ propertyType: CMSElementEditTypes;
1715
+ parentRef: string;
1716
+ };
1717
+ linethrough: {
1718
+ value: string;
1719
+ property: string;
1720
+ propertyType: CMSElementEditTypes;
1721
+ parentRef: string;
1722
+ };
1723
+ underline: {
1724
+ value: string;
1725
+ property: string;
1726
+ propertyType: CMSElementEditTypes;
1727
+ parentRef: string;
1728
+ };
1729
+ textAlign: {
1730
+ value: string;
1731
+ property: string;
1732
+ propertyType: CMSElementEditTypes;
1733
+ parentRef: string;
1734
+ };
1735
+ characterSpacing: {
1736
+ value: number;
1737
+ unit: number;
1738
+ property: string;
1739
+ propertyType: CMSElementEditTypes;
1740
+ parentRef: string;
1741
+ };
1742
+ lineHeight: {
1743
+ value: number;
1744
+ unit: number;
1745
+ property: string;
1746
+ propertyType: CMSElementEditTypes;
1747
+ parentRef: string;
1748
+ };
1749
+ paragraphSpacing: {
1750
+ value: number;
1751
+ unit: number;
1752
+ property: string;
1753
+ propertyType: CMSElementEditTypes;
1754
+ parentRef: string;
1755
+ };
1756
+ padding: any;
1757
+ borderColor: CMSIBCommonInterface;
1758
+ borderStyle: CMSIBCommonInterface;
1759
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
1760
+ showBorder: CMSIBCommonInterface;
1761
+ backgroundColor: CMSIBCommonInterface;
1762
+ showShadow: CMSIBCommonInterface;
1763
+ shadowColor: CMSIBCommonInterface;
1764
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
1765
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
1766
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
1767
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
1768
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
1769
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
1770
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
1771
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
1772
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
1773
+ selectorKey: SelectorKeysEnum;
1774
+ };
1775
+ total: {
1776
+ themeDesc: {
1777
+ value: string;
1778
+ property: string;
1779
+ propertyType: CMSElementEditTypes;
1780
+ };
1781
+ fontDesc: {
1782
+ value: string;
1783
+ property: string;
1784
+ propertyType: CMSElementEditTypes;
1785
+ parentRef: string;
1786
+ };
1787
+ fontSizeDesc: {
1788
+ value: number;
1789
+ unit: number;
1790
+ property: string;
1791
+ propertyType: CMSElementEditTypes;
1792
+ parentRef: string;
1793
+ };
1794
+ textColorDesc: {
1795
+ value: {
1796
+ hex: string;
1797
+ rgb: {
1798
+ r: string;
1799
+ g: string;
1800
+ b: string;
1801
+ a: number;
1802
+ };
1803
+ };
1804
+ property: string;
1805
+ propertyType: CMSElementEditTypes;
1806
+ parentRef: string;
1807
+ };
1808
+ textHighlightDesc: {
1809
+ value: {
1810
+ hex: string;
1811
+ rgb: {
1812
+ r: string;
1813
+ g: string;
1814
+ b: string;
1815
+ a: number;
1816
+ };
1817
+ };
1818
+ property: string;
1819
+ propertyType: CMSElementEditTypes;
1820
+ };
1821
+ boldDesc: {
1822
+ value: string;
1823
+ property: string;
1824
+ propertyType: CMSElementEditTypes;
1825
+ parentRef: string;
1826
+ };
1827
+ italicDesc: {
1828
+ value: string;
1829
+ property: string;
1830
+ propertyType: CMSElementEditTypes;
1831
+ parentRef: string;
1832
+ };
1833
+ linethroughDesc: {
1834
+ value: string;
1835
+ property: string;
1836
+ propertyType: CMSElementEditTypes;
1837
+ parentRef: string;
1838
+ };
1839
+ underlineDesc: {
1840
+ value: string;
1841
+ property: string;
1842
+ propertyType: CMSElementEditTypes;
1843
+ parentRef: string;
1844
+ };
1845
+ textAlignDesc: {
1846
+ value: string;
1847
+ property: string;
1848
+ propertyType: CMSElementEditTypes;
1849
+ parentRef: string;
1850
+ };
1851
+ characterSpacingDesc: {
1852
+ value: number;
1853
+ unit: number;
1854
+ property: string;
1855
+ propertyType: CMSElementEditTypes;
1856
+ parentRef: string;
1857
+ };
1858
+ lineHeightDesc: {
1859
+ value: number;
1860
+ unit: number;
1861
+ property: string;
1862
+ propertyType: CMSElementEditTypes;
1863
+ parentRef: string;
1864
+ };
1865
+ paragraphSpacingDesc: {
1866
+ value: number;
1867
+ unit: number;
1868
+ property: string;
1869
+ propertyType: CMSElementEditTypes;
1870
+ parentRef: string;
1871
+ };
1872
+ theme: {
1873
+ value: string;
1874
+ property: string;
1875
+ propertyType: CMSElementEditTypes;
1876
+ };
1877
+ font: {
1878
+ value: string;
1879
+ property: string;
1880
+ propertyType: CMSElementEditTypes;
1881
+ parentRef: string;
1882
+ };
1883
+ fontSize: {
1884
+ value: number;
1885
+ unit: number;
1886
+ property: string;
1887
+ propertyType: CMSElementEditTypes;
1888
+ parentRef: string;
1889
+ };
1890
+ textColor: {
1891
+ value: {
1892
+ hex: string;
1893
+ rgb: {
1894
+ r: string;
1895
+ g: string;
1896
+ b: string;
1897
+ a: number;
1898
+ };
1899
+ };
1900
+ property: string;
1901
+ propertyType: CMSElementEditTypes;
1902
+ parentRef: string;
1903
+ };
1904
+ textHighlight: {
1905
+ value: {
1906
+ hex: string;
1907
+ rgb: {
1908
+ r: string;
1909
+ g: string;
1910
+ b: string;
1911
+ a: number;
1912
+ };
1913
+ };
1914
+ property: string;
1915
+ propertyType: CMSElementEditTypes;
1916
+ };
1917
+ bold: {
1918
+ value: string;
1919
+ property: string;
1920
+ propertyType: CMSElementEditTypes;
1921
+ parentRef: string;
1922
+ };
1923
+ italic: {
1924
+ value: string;
1925
+ property: string;
1926
+ propertyType: CMSElementEditTypes;
1927
+ parentRef: string;
1928
+ };
1929
+ linethrough: {
1930
+ value: string;
1931
+ property: string;
1932
+ propertyType: CMSElementEditTypes;
1933
+ parentRef: string;
1934
+ };
1935
+ underline: {
1936
+ value: string;
1937
+ property: string;
1938
+ propertyType: CMSElementEditTypes;
1939
+ parentRef: string;
1940
+ };
1941
+ textAlign: {
1942
+ value: string;
1943
+ property: string;
1944
+ propertyType: CMSElementEditTypes;
1945
+ parentRef: string;
1946
+ };
1947
+ characterSpacing: {
1948
+ value: number;
1949
+ unit: number;
1950
+ property: string;
1951
+ propertyType: CMSElementEditTypes;
1952
+ parentRef: string;
1953
+ };
1954
+ lineHeight: {
1955
+ value: number;
1956
+ unit: number;
1957
+ property: string;
1958
+ propertyType: CMSElementEditTypes;
1959
+ parentRef: string;
1960
+ };
1961
+ paragraphSpacing: {
1962
+ value: number;
1963
+ unit: number;
1964
+ property: string;
1965
+ propertyType: CMSElementEditTypes;
1966
+ parentRef: string;
1967
+ };
1968
+ padding: any;
1969
+ borderColor: CMSIBCommonInterface;
1970
+ borderStyle: CMSIBCommonInterface;
1971
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
1972
+ showBorder: CMSIBCommonInterface;
1973
+ backgroundColor: CMSIBCommonInterface;
1974
+ showShadow: CMSIBCommonInterface;
1975
+ shadowColor: CMSIBCommonInterface;
1976
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
1977
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
1978
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
1979
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
1980
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
1981
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
1982
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
1983
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
1984
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
1985
+ selectorKey: SelectorKeysEnum;
1986
+ };
1987
+ cartActions: {
1988
+ selectorKey: SelectorKeysEnum;
1989
+ checkout: {
1990
+ selectorKey: SelectorKeysEnum;
1991
+ defaultState: {
1992
+ backgroundColor: {
1993
+ value: null;
1994
+ parentRef: string;
1995
+ property?: any;
1996
+ propertyType?: any;
1997
+ isReadOnly?: boolean | undefined;
1998
+ };
1999
+ borderColor: {
2000
+ value: null;
2001
+ parentRef: string;
2002
+ property?: any;
2003
+ propertyType?: any;
2004
+ isReadOnly?: boolean | undefined;
2005
+ };
2006
+ borderStyle: {
2007
+ value: null;
2008
+ parentRef: string;
2009
+ property?: any;
2010
+ propertyType?: any;
2011
+ isReadOnly?: boolean | undefined;
2012
+ };
2013
+ borderPerSlide: {
2014
+ value: null;
2015
+ parentRef: string;
2016
+ isAll: boolean;
2017
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
2018
+ property: string;
2019
+ iscss?: boolean | undefined;
2020
+ propertyType?: any;
2021
+ };
2022
+ showBorder: {
2023
+ value: boolean;
2024
+ parentRef: string;
2025
+ property?: any;
2026
+ propertyType?: any;
2027
+ isReadOnly?: boolean | undefined;
2028
+ };
2029
+ showShadow: {
2030
+ value: null;
2031
+ parentRef: string;
2032
+ property?: any;
2033
+ propertyType?: any;
2034
+ isReadOnly?: boolean | undefined;
2035
+ };
2036
+ shadowColor: {
2037
+ value: null;
2038
+ parentRef: string;
2039
+ property?: any;
2040
+ propertyType?: any;
2041
+ isReadOnly?: boolean | undefined;
2042
+ };
2043
+ blur: {
2044
+ value: null;
2045
+ parentRef: string;
2046
+ unit?: string | number | undefined;
2047
+ property?: any;
2048
+ propertyType?: any;
2049
+ isReadOnly?: boolean | undefined;
2050
+ };
2051
+ spread: {
2052
+ value: null;
2053
+ parentRef: string;
2054
+ unit?: string | number | undefined;
2055
+ property?: any;
2056
+ propertyType?: any;
2057
+ isReadOnly?: boolean | undefined;
2058
+ };
2059
+ angle: {
2060
+ value: null;
2061
+ parentRef: string;
2062
+ unit?: string | number | undefined;
2063
+ property?: any;
2064
+ propertyType?: any;
2065
+ isReadOnly?: boolean | undefined;
2066
+ };
2067
+ borderRadius: {
2068
+ value: null;
2069
+ parentRef: string;
2070
+ isAll: boolean;
2071
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
2072
+ property: string;
2073
+ iscss?: boolean | undefined;
2074
+ propertyType?: any;
2075
+ };
2076
+ font: {
2077
+ value: null;
2078
+ parentRef: string;
2079
+ property?: any;
2080
+ propertyType?: any;
2081
+ isReadOnly?: boolean | undefined;
2082
+ };
2083
+ fontSize: {
2084
+ value: null;
2085
+ parentRef: string;
2086
+ unit?: string | number | undefined;
2087
+ property?: any;
2088
+ propertyType?: any;
2089
+ isReadOnly?: boolean | undefined;
2090
+ };
2091
+ textColor: {
2092
+ value: null;
2093
+ parentRef: string;
2094
+ property?: any;
2095
+ propertyType?: any;
2096
+ isReadOnly?: boolean | undefined;
2097
+ };
2098
+ bold: {
2099
+ value: string;
2100
+ parentRef: string;
2101
+ property?: any;
2102
+ propertyType?: any;
2103
+ isReadOnly?: boolean | undefined;
2104
+ };
2105
+ italic: {
2106
+ value: null;
2107
+ parentRef: string;
2108
+ property?: any;
2109
+ propertyType?: any;
2110
+ isReadOnly?: boolean | undefined;
2111
+ };
2112
+ linethrough: {
2113
+ value: null;
2114
+ parentRef: string;
2115
+ property?: any;
2116
+ propertyType?: any;
2117
+ isReadOnly?: boolean | undefined;
2118
+ };
2119
+ underline: {
2120
+ value: null;
2121
+ parentRef: string;
2122
+ property?: any;
2123
+ propertyType?: any;
2124
+ isReadOnly?: boolean | undefined;
2125
+ };
2126
+ textAlign: {
2127
+ value: null;
2128
+ parentRef: string;
2129
+ property?: any;
2130
+ propertyType?: any;
2131
+ isReadOnly?: boolean | undefined;
2132
+ };
2133
+ characterSpacing: {
2134
+ value: null;
2135
+ parentRef: string;
2136
+ unit?: string | number | undefined;
2137
+ property?: any;
2138
+ propertyType?: any;
2139
+ isReadOnly?: boolean | undefined;
2140
+ };
2141
+ lineHeight: {
2142
+ value: null;
2143
+ parentRef: string;
2144
+ unit?: string | number | undefined;
2145
+ property?: any;
2146
+ propertyType?: any;
2147
+ isReadOnly?: boolean | undefined;
2148
+ };
2149
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
2150
+ showIcon: {
2151
+ value: null;
2152
+ parentRef: string;
2153
+ property?: any;
2154
+ propertyType?: any;
2155
+ isReadOnly?: boolean | undefined;
2156
+ };
2157
+ iconSize: {
2158
+ value: null;
2159
+ parentRef: string;
2160
+ unit?: string | number | undefined;
2161
+ property?: any;
2162
+ propertyType?: any;
2163
+ isReadOnly?: boolean | undefined;
2164
+ };
2165
+ iconColor: {
2166
+ value: null;
2167
+ parentRef: string;
2168
+ property?: any;
2169
+ propertyType?: any;
2170
+ isReadOnly?: boolean | undefined;
2171
+ };
2172
+ buttonStyle: {
2173
+ value: null;
2174
+ parentRef: string;
2175
+ propertyType: CMSElementEditTypes;
2176
+ };
2177
+ buttonText: {
2178
+ value: string;
2179
+ property: string;
2180
+ propertyType: CMSElementEditTypes;
2181
+ };
2182
+ iconPadding: {
2183
+ value: number;
2184
+ property: string;
2185
+ parentRef: string;
2186
+ propertyType: CMSElementEditTypes;
2187
+ };
2188
+ iconPosition: {
2189
+ value: null;
2190
+ parentRef: string;
2191
+ propertyType: CMSElementEditTypes;
2192
+ };
2193
+ iconAndTextSpacing: {
2194
+ value: null;
2195
+ property: string;
2196
+ unit: number;
2197
+ parentRef: string;
2198
+ propertyType: CMSElementEditTypes;
2199
+ };
2200
+ alignment: {
2201
+ value: null;
2202
+ property: string;
2203
+ parentRef: string;
2204
+ propertyType: CMSElementEditTypes;
2205
+ };
2206
+ buttonType: {
2207
+ value: string;
2208
+ propertyType: CMSElementEditTypes;
2209
+ };
2210
+ width: {
2211
+ value: string;
2212
+ unit: number;
2213
+ };
2214
+ padding: any;
2215
+ selectorKey: SelectorKeysEnum;
2216
+ };
2217
+ hoverState: {
2218
+ backgroundColor: {
2219
+ value: null;
2220
+ parentRef: string;
2221
+ property?: any;
2222
+ propertyType?: any;
2223
+ isReadOnly?: boolean | undefined;
2224
+ };
2225
+ borderColor: {
2226
+ value: null;
2227
+ parentRef: string;
2228
+ property?: any;
2229
+ propertyType?: any;
2230
+ isReadOnly?: boolean | undefined;
2231
+ };
2232
+ borderStyle: {
2233
+ value: null;
2234
+ parentRef: string;
2235
+ property?: any;
2236
+ propertyType?: any;
2237
+ isReadOnly?: boolean | undefined;
2238
+ };
2239
+ borderPerSlide: {
2240
+ value: null;
2241
+ parentRef: string;
2242
+ isAll: boolean;
2243
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
2244
+ property: string;
2245
+ iscss?: boolean | undefined;
2246
+ propertyType?: any;
2247
+ };
2248
+ showBorder: {
2249
+ value: boolean;
2250
+ parentRef: string;
2251
+ property?: any;
2252
+ propertyType?: any;
2253
+ isReadOnly?: boolean | undefined;
2254
+ };
2255
+ showShadow: {
2256
+ value: null;
2257
+ parentRef: string;
2258
+ property?: any;
2259
+ propertyType?: any;
2260
+ isReadOnly?: boolean | undefined;
2261
+ };
2262
+ shadowColor: {
2263
+ value: null;
2264
+ parentRef: string;
2265
+ property?: any;
2266
+ propertyType?: any;
2267
+ isReadOnly?: boolean | undefined;
2268
+ };
2269
+ blur: {
2270
+ value: null;
2271
+ parentRef: string;
2272
+ unit?: string | number | undefined;
2273
+ property?: any;
2274
+ propertyType?: any;
2275
+ isReadOnly?: boolean | undefined;
2276
+ };
2277
+ spread: {
2278
+ value: null;
2279
+ parentRef: string;
2280
+ unit?: string | number | undefined;
2281
+ property?: any;
2282
+ propertyType?: any;
2283
+ isReadOnly?: boolean | undefined;
2284
+ };
2285
+ angle: {
2286
+ value: null;
2287
+ parentRef: string;
2288
+ unit?: string | number | undefined;
2289
+ property?: any;
2290
+ propertyType?: any;
2291
+ isReadOnly?: boolean | undefined;
2292
+ };
2293
+ borderRadius: {
2294
+ value: null;
2295
+ parentRef: string;
2296
+ isAll: boolean;
2297
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
2298
+ property: string;
2299
+ iscss?: boolean | undefined;
2300
+ propertyType?: any;
2301
+ };
2302
+ font: {
2303
+ value: null;
2304
+ parentRef: string;
2305
+ property?: any;
2306
+ propertyType?: any;
2307
+ isReadOnly?: boolean | undefined;
2308
+ };
2309
+ fontSize: {
2310
+ value: null;
2311
+ parentRef: string;
2312
+ unit?: string | number | undefined;
2313
+ property?: any;
2314
+ propertyType?: any;
2315
+ isReadOnly?: boolean | undefined;
2316
+ };
2317
+ textColor: {
2318
+ value: null;
2319
+ parentRef: string;
2320
+ property?: any;
2321
+ propertyType?: any;
2322
+ isReadOnly?: boolean | undefined;
2323
+ };
2324
+ bold: {
2325
+ value: string;
2326
+ parentRef: string;
2327
+ property?: any;
2328
+ propertyType?: any;
2329
+ isReadOnly?: boolean | undefined;
2330
+ };
2331
+ italic: {
2332
+ value: null;
2333
+ parentRef: string;
2334
+ property?: any;
2335
+ propertyType?: any;
2336
+ isReadOnly?: boolean | undefined;
2337
+ };
2338
+ linethrough: {
2339
+ value: null;
2340
+ parentRef: string;
2341
+ property?: any;
2342
+ propertyType?: any;
2343
+ isReadOnly?: boolean | undefined;
2344
+ };
2345
+ underline: {
2346
+ value: null;
2347
+ parentRef: string;
2348
+ property?: any;
2349
+ propertyType?: any;
2350
+ isReadOnly?: boolean | undefined;
2351
+ };
2352
+ textAlign: {
2353
+ value: null;
2354
+ parentRef: string;
2355
+ property?: any;
2356
+ propertyType?: any;
2357
+ isReadOnly?: boolean | undefined;
2358
+ };
2359
+ characterSpacing: {
2360
+ value: null;
2361
+ parentRef: string;
2362
+ unit?: string | number | undefined;
2363
+ property?: any;
2364
+ propertyType?: any;
2365
+ isReadOnly?: boolean | undefined;
2366
+ };
2367
+ lineHeight: {
2368
+ value: null;
2369
+ parentRef: string;
2370
+ unit?: string | number | undefined;
2371
+ property?: any;
2372
+ propertyType?: any;
2373
+ isReadOnly?: boolean | undefined;
2374
+ };
2375
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
2376
+ showIcon: {
2377
+ value: null;
2378
+ parentRef: string;
2379
+ property?: any;
2380
+ propertyType?: any;
2381
+ isReadOnly?: boolean | undefined;
2382
+ };
2383
+ iconSize: {
2384
+ value: null;
2385
+ parentRef: string;
2386
+ unit?: string | number | undefined;
2387
+ property?: any;
2388
+ propertyType?: any;
2389
+ isReadOnly?: boolean | undefined;
2390
+ };
2391
+ iconColor: {
2392
+ value: null;
2393
+ parentRef: string;
2394
+ property?: any;
2395
+ propertyType?: any;
2396
+ isReadOnly?: boolean | undefined;
2397
+ };
2398
+ buttonStyle: {
2399
+ value: null;
2400
+ parentRef: string;
2401
+ propertyType: CMSElementEditTypes;
2402
+ };
2403
+ buttonText: {
2404
+ value: string;
2405
+ property: string;
2406
+ propertyType: CMSElementEditTypes;
2407
+ };
2408
+ iconPadding: {
2409
+ value: number;
2410
+ property: string;
2411
+ parentRef: string;
2412
+ propertyType: CMSElementEditTypes;
2413
+ };
2414
+ iconPosition: {
2415
+ value: null;
2416
+ parentRef: string;
2417
+ propertyType: CMSElementEditTypes;
2418
+ };
2419
+ iconAndTextSpacing: {
2420
+ value: null;
2421
+ property: string;
2422
+ unit: number;
2423
+ parentRef: string;
2424
+ propertyType: CMSElementEditTypes;
2425
+ };
2426
+ alignment: {
2427
+ value: null;
2428
+ property: string;
2429
+ parentRef: string;
2430
+ propertyType: CMSElementEditTypes;
2431
+ };
2432
+ buttonType: {
2433
+ value: string;
2434
+ propertyType: CMSElementEditTypes;
2435
+ };
2436
+ width: {
2437
+ value: string;
2438
+ unit: number;
2439
+ };
2440
+ padding: any;
2441
+ selectorKey: SelectorKeysEnum;
2442
+ };
2443
+ selectedState: {
2444
+ selectorKey: SelectorKeysEnum;
2445
+ };
2446
+ };
2447
+ placeOrder: {
2448
+ selectorKey: SelectorKeysEnum;
2449
+ defaultState: {
2450
+ backgroundColor: {
2451
+ value: null;
2452
+ parentRef: string;
2453
+ property?: any;
2454
+ propertyType?: any;
2455
+ isReadOnly?: boolean | undefined;
2456
+ };
2457
+ borderColor: {
2458
+ value: null;
2459
+ parentRef: string;
2460
+ property?: any;
2461
+ propertyType?: any;
2462
+ isReadOnly?: boolean | undefined;
2463
+ };
2464
+ borderStyle: {
2465
+ value: null;
2466
+ parentRef: string;
2467
+ property?: any;
2468
+ propertyType?: any;
2469
+ isReadOnly?: boolean | undefined;
2470
+ };
2471
+ borderPerSlide: {
2472
+ value: null;
2473
+ parentRef: string;
2474
+ isAll: boolean;
2475
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
2476
+ property: string;
2477
+ iscss?: boolean | undefined;
2478
+ propertyType?: any;
2479
+ };
2480
+ showBorder: {
2481
+ value: boolean;
2482
+ parentRef: string;
2483
+ property?: any;
2484
+ propertyType?: any;
2485
+ isReadOnly?: boolean | undefined;
2486
+ };
2487
+ showShadow: {
2488
+ value: null;
2489
+ parentRef: string;
2490
+ property?: any;
2491
+ propertyType?: any;
2492
+ isReadOnly?: boolean | undefined;
2493
+ };
2494
+ shadowColor: {
2495
+ value: null;
2496
+ parentRef: string;
2497
+ property?: any;
2498
+ propertyType?: any;
2499
+ isReadOnly?: boolean | undefined;
2500
+ };
2501
+ blur: {
2502
+ value: null;
2503
+ parentRef: string;
2504
+ unit?: string | number | undefined;
2505
+ property?: any;
2506
+ propertyType?: any;
2507
+ isReadOnly?: boolean | undefined;
2508
+ };
2509
+ spread: {
2510
+ value: null;
2511
+ parentRef: string;
2512
+ unit?: string | number | undefined;
2513
+ property?: any;
2514
+ propertyType?: any;
2515
+ isReadOnly?: boolean | undefined;
2516
+ };
2517
+ angle: {
2518
+ value: null;
2519
+ parentRef: string;
2520
+ unit?: string | number | undefined;
2521
+ property?: any;
2522
+ propertyType?: any;
2523
+ isReadOnly?: boolean | undefined;
2524
+ };
2525
+ borderRadius: {
2526
+ value: null;
2527
+ parentRef: string;
2528
+ isAll: boolean;
2529
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
2530
+ property: string;
2531
+ iscss?: boolean | undefined;
2532
+ propertyType?: any;
2533
+ };
2534
+ font: {
2535
+ value: null;
2536
+ parentRef: string;
2537
+ property?: any;
2538
+ propertyType?: any;
2539
+ isReadOnly?: boolean | undefined;
2540
+ };
2541
+ fontSize: {
2542
+ value: null;
2543
+ parentRef: string;
2544
+ unit?: string | number | undefined;
2545
+ property?: any;
2546
+ propertyType?: any;
2547
+ isReadOnly?: boolean | undefined;
2548
+ };
2549
+ textColor: {
2550
+ value: null;
2551
+ parentRef: string;
2552
+ property?: any;
2553
+ propertyType?: any;
2554
+ isReadOnly?: boolean | undefined;
2555
+ };
2556
+ bold: {
2557
+ value: string;
2558
+ parentRef: string;
2559
+ property?: any;
2560
+ propertyType?: any;
2561
+ isReadOnly?: boolean | undefined;
2562
+ };
2563
+ italic: {
2564
+ value: null;
2565
+ parentRef: string;
2566
+ property?: any;
2567
+ propertyType?: any;
2568
+ isReadOnly?: boolean | undefined;
2569
+ };
2570
+ linethrough: {
2571
+ value: null;
2572
+ parentRef: string;
2573
+ property?: any;
2574
+ propertyType?: any;
2575
+ isReadOnly?: boolean | undefined;
2576
+ };
2577
+ underline: {
2578
+ value: null;
2579
+ parentRef: string;
2580
+ property?: any;
2581
+ propertyType?: any;
2582
+ isReadOnly?: boolean | undefined;
2583
+ };
2584
+ textAlign: {
2585
+ value: null;
2586
+ parentRef: string;
2587
+ property?: any;
2588
+ propertyType?: any;
2589
+ isReadOnly?: boolean | undefined;
2590
+ };
2591
+ characterSpacing: {
2592
+ value: null;
2593
+ parentRef: string;
2594
+ unit?: string | number | undefined;
2595
+ property?: any;
2596
+ propertyType?: any;
2597
+ isReadOnly?: boolean | undefined;
2598
+ };
2599
+ lineHeight: {
2600
+ value: null;
2601
+ parentRef: string;
2602
+ unit?: string | number | undefined;
2603
+ property?: any;
2604
+ propertyType?: any;
2605
+ isReadOnly?: boolean | undefined;
2606
+ };
2607
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
2608
+ showIcon: {
2609
+ value: null;
2610
+ parentRef: string;
2611
+ property?: any;
2612
+ propertyType?: any;
2613
+ isReadOnly?: boolean | undefined;
2614
+ };
2615
+ iconSize: {
2616
+ value: null;
2617
+ parentRef: string;
2618
+ unit?: string | number | undefined;
2619
+ property?: any;
2620
+ propertyType?: any;
2621
+ isReadOnly?: boolean | undefined;
2622
+ };
2623
+ iconColor: {
2624
+ value: null;
2625
+ parentRef: string;
2626
+ property?: any;
2627
+ propertyType?: any;
2628
+ isReadOnly?: boolean | undefined;
2629
+ };
2630
+ buttonStyle: {
2631
+ value: null;
2632
+ parentRef: string;
2633
+ propertyType: CMSElementEditTypes;
2634
+ };
2635
+ buttonText: {
2636
+ value: string;
2637
+ property: string;
2638
+ propertyType: CMSElementEditTypes;
2639
+ };
2640
+ iconPadding: {
2641
+ value: number;
2642
+ property: string;
2643
+ parentRef: string;
2644
+ propertyType: CMSElementEditTypes;
2645
+ };
2646
+ iconPosition: {
2647
+ value: null;
2648
+ parentRef: string;
2649
+ propertyType: CMSElementEditTypes;
2650
+ };
2651
+ iconAndTextSpacing: {
2652
+ value: null;
2653
+ property: string;
2654
+ unit: number;
2655
+ parentRef: string;
2656
+ propertyType: CMSElementEditTypes;
2657
+ };
2658
+ alignment: {
2659
+ value: null;
2660
+ property: string;
2661
+ parentRef: string;
2662
+ propertyType: CMSElementEditTypes;
2663
+ };
2664
+ buttonType: {
2665
+ value: string;
2666
+ propertyType: CMSElementEditTypes;
2667
+ };
2668
+ width: {
2669
+ value: string;
2670
+ unit: number;
2671
+ };
2672
+ padding: any;
2673
+ selectorKey: SelectorKeysEnum;
2674
+ };
2675
+ hoverState: {
2676
+ backgroundColor: {
2677
+ value: null;
2678
+ parentRef: string;
2679
+ property?: any;
2680
+ propertyType?: any;
2681
+ isReadOnly?: boolean | undefined;
2682
+ };
2683
+ borderColor: {
2684
+ value: null;
2685
+ parentRef: string;
2686
+ property?: any;
2687
+ propertyType?: any;
2688
+ isReadOnly?: boolean | undefined;
2689
+ };
2690
+ borderStyle: {
2691
+ value: null;
2692
+ parentRef: string;
2693
+ property?: any;
2694
+ propertyType?: any;
2695
+ isReadOnly?: boolean | undefined;
2696
+ };
2697
+ borderPerSlide: {
2698
+ value: null;
2699
+ parentRef: string;
2700
+ isAll: boolean;
2701
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
2702
+ property: string;
2703
+ iscss?: boolean | undefined;
2704
+ propertyType?: any;
2705
+ };
2706
+ showBorder: {
2707
+ value: boolean;
2708
+ parentRef: string;
2709
+ property?: any;
2710
+ propertyType?: any;
2711
+ isReadOnly?: boolean | undefined;
2712
+ };
2713
+ showShadow: {
2714
+ value: null;
2715
+ parentRef: string;
2716
+ property?: any;
2717
+ propertyType?: any;
2718
+ isReadOnly?: boolean | undefined;
2719
+ };
2720
+ shadowColor: {
2721
+ value: null;
2722
+ parentRef: string;
2723
+ property?: any;
2724
+ propertyType?: any;
2725
+ isReadOnly?: boolean | undefined;
2726
+ };
2727
+ blur: {
2728
+ value: null;
2729
+ parentRef: string;
2730
+ unit?: string | number | undefined;
2731
+ property?: any;
2732
+ propertyType?: any;
2733
+ isReadOnly?: boolean | undefined;
2734
+ };
2735
+ spread: {
2736
+ value: null;
2737
+ parentRef: string;
2738
+ unit?: string | number | undefined;
2739
+ property?: any;
2740
+ propertyType?: any;
2741
+ isReadOnly?: boolean | undefined;
2742
+ };
2743
+ angle: {
2744
+ value: null;
2745
+ parentRef: string;
2746
+ unit?: string | number | undefined;
2747
+ property?: any;
2748
+ propertyType?: any;
2749
+ isReadOnly?: boolean | undefined;
2750
+ };
2751
+ borderRadius: {
2752
+ value: null;
2753
+ parentRef: string;
2754
+ isAll: boolean;
2755
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
2756
+ property: string;
2757
+ iscss?: boolean | undefined;
2758
+ propertyType?: any;
2759
+ };
2760
+ font: {
2761
+ value: null;
2762
+ parentRef: string;
2763
+ property?: any;
2764
+ propertyType?: any;
2765
+ isReadOnly?: boolean | undefined;
2766
+ };
2767
+ fontSize: {
2768
+ value: null;
2769
+ parentRef: string;
2770
+ unit?: string | number | undefined;
2771
+ property?: any;
2772
+ propertyType?: any;
2773
+ isReadOnly?: boolean | undefined;
2774
+ };
2775
+ textColor: {
2776
+ value: null;
2777
+ parentRef: string;
2778
+ property?: any;
2779
+ propertyType?: any;
2780
+ isReadOnly?: boolean | undefined;
2781
+ };
2782
+ bold: {
2783
+ value: string;
2784
+ parentRef: string;
2785
+ property?: any;
2786
+ propertyType?: any;
2787
+ isReadOnly?: boolean | undefined;
2788
+ };
2789
+ italic: {
2790
+ value: null;
2791
+ parentRef: string;
2792
+ property?: any;
2793
+ propertyType?: any;
2794
+ isReadOnly?: boolean | undefined;
2795
+ };
2796
+ linethrough: {
2797
+ value: null;
2798
+ parentRef: string;
2799
+ property?: any;
2800
+ propertyType?: any;
2801
+ isReadOnly?: boolean | undefined;
2802
+ };
2803
+ underline: {
2804
+ value: null;
2805
+ parentRef: string;
2806
+ property?: any;
2807
+ propertyType?: any;
2808
+ isReadOnly?: boolean | undefined;
2809
+ };
2810
+ textAlign: {
2811
+ value: null;
2812
+ parentRef: string;
2813
+ property?: any;
2814
+ propertyType?: any;
2815
+ isReadOnly?: boolean | undefined;
2816
+ };
2817
+ characterSpacing: {
2818
+ value: null;
2819
+ parentRef: string;
2820
+ unit?: string | number | undefined;
2821
+ property?: any;
2822
+ propertyType?: any;
2823
+ isReadOnly?: boolean | undefined;
2824
+ };
2825
+ lineHeight: {
2826
+ value: null;
2827
+ parentRef: string;
2828
+ unit?: string | number | undefined;
2829
+ property?: any;
2830
+ propertyType?: any;
2831
+ isReadOnly?: boolean | undefined;
2832
+ };
2833
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
2834
+ showIcon: {
2835
+ value: null;
2836
+ parentRef: string;
2837
+ property?: any;
2838
+ propertyType?: any;
2839
+ isReadOnly?: boolean | undefined;
2840
+ };
2841
+ iconSize: {
2842
+ value: null;
2843
+ parentRef: string;
2844
+ unit?: string | number | undefined;
2845
+ property?: any;
2846
+ propertyType?: any;
2847
+ isReadOnly?: boolean | undefined;
2848
+ };
2849
+ iconColor: {
2850
+ value: null;
2851
+ parentRef: string;
2852
+ property?: any;
2853
+ propertyType?: any;
2854
+ isReadOnly?: boolean | undefined;
2855
+ };
2856
+ buttonStyle: {
2857
+ value: null;
2858
+ parentRef: string;
2859
+ propertyType: CMSElementEditTypes;
2860
+ };
2861
+ buttonText: {
2862
+ value: string;
2863
+ property: string;
2864
+ propertyType: CMSElementEditTypes;
2865
+ };
2866
+ iconPadding: {
2867
+ value: number;
2868
+ property: string;
2869
+ parentRef: string;
2870
+ propertyType: CMSElementEditTypes;
2871
+ };
2872
+ iconPosition: {
2873
+ value: null;
2874
+ parentRef: string;
2875
+ propertyType: CMSElementEditTypes;
2876
+ };
2877
+ iconAndTextSpacing: {
2878
+ value: null;
2879
+ property: string;
2880
+ unit: number;
2881
+ parentRef: string;
2882
+ propertyType: CMSElementEditTypes;
2883
+ };
2884
+ alignment: {
2885
+ value: null;
2886
+ property: string;
2887
+ parentRef: string;
2888
+ propertyType: CMSElementEditTypes;
2889
+ };
2890
+ buttonType: {
2891
+ value: string;
2892
+ propertyType: CMSElementEditTypes;
2893
+ };
2894
+ width: {
2895
+ value: string;
2896
+ unit: number;
2897
+ };
2898
+ padding: any;
2899
+ selectorKey: SelectorKeysEnum;
2900
+ };
2901
+ selectedState: {
2902
+ selectorKey: SelectorKeysEnum;
2903
+ };
2904
+ };
2905
+ requestQuote: {
2906
+ selectorKey: SelectorKeysEnum;
2907
+ defaultState: {
2908
+ backgroundColor: {
2909
+ value: null;
2910
+ parentRef: string;
2911
+ property?: any;
2912
+ propertyType?: any;
2913
+ isReadOnly?: boolean | undefined;
2914
+ };
2915
+ borderColor: {
2916
+ value: null;
2917
+ parentRef: string;
2918
+ property?: any;
2919
+ propertyType?: any;
2920
+ isReadOnly?: boolean | undefined;
2921
+ };
2922
+ borderStyle: {
2923
+ value: null;
2924
+ parentRef: string;
2925
+ property?: any;
2926
+ propertyType?: any;
2927
+ isReadOnly?: boolean | undefined;
2928
+ };
2929
+ borderPerSlide: {
2930
+ value: null;
2931
+ parentRef: string;
2932
+ isAll: boolean;
2933
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
2934
+ property: string;
2935
+ iscss?: boolean | undefined;
2936
+ propertyType?: any;
2937
+ };
2938
+ showBorder: {
2939
+ value: boolean;
2940
+ parentRef: string;
2941
+ property?: any;
2942
+ propertyType?: any;
2943
+ isReadOnly?: boolean | undefined;
2944
+ };
2945
+ showShadow: {
2946
+ value: null;
2947
+ parentRef: string;
2948
+ property?: any;
2949
+ propertyType?: any;
2950
+ isReadOnly?: boolean | undefined;
2951
+ };
2952
+ shadowColor: {
2953
+ value: null;
2954
+ parentRef: string;
2955
+ property?: any;
2956
+ propertyType?: any;
2957
+ isReadOnly?: boolean | undefined;
2958
+ };
2959
+ blur: {
2960
+ value: null;
2961
+ parentRef: string;
2962
+ unit?: string | number | undefined;
2963
+ property?: any;
2964
+ propertyType?: any;
2965
+ isReadOnly?: boolean | undefined;
2966
+ };
2967
+ spread: {
2968
+ value: null;
2969
+ parentRef: string;
2970
+ unit?: string | number | undefined;
2971
+ property?: any;
2972
+ propertyType?: any;
2973
+ isReadOnly?: boolean | undefined;
2974
+ };
2975
+ angle: {
2976
+ value: null;
2977
+ parentRef: string;
2978
+ unit?: string | number | undefined;
2979
+ property?: any;
2980
+ propertyType?: any;
2981
+ isReadOnly?: boolean | undefined;
2982
+ };
2983
+ borderRadius: {
2984
+ value: null;
2985
+ parentRef: string;
2986
+ isAll: boolean;
2987
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
2988
+ property: string;
2989
+ iscss?: boolean | undefined;
2990
+ propertyType?: any;
2991
+ };
2992
+ font: {
2993
+ value: null;
2994
+ parentRef: string;
2995
+ property?: any;
2996
+ propertyType?: any;
2997
+ isReadOnly?: boolean | undefined;
2998
+ };
2999
+ fontSize: {
3000
+ value: null;
3001
+ parentRef: string;
3002
+ unit?: string | number | undefined;
3003
+ property?: any;
3004
+ propertyType?: any;
3005
+ isReadOnly?: boolean | undefined;
3006
+ };
3007
+ textColor: {
3008
+ value: null;
3009
+ parentRef: string;
3010
+ property?: any;
3011
+ propertyType?: any;
3012
+ isReadOnly?: boolean | undefined;
3013
+ };
3014
+ bold: {
3015
+ value: string;
3016
+ parentRef: string;
3017
+ property?: any;
3018
+ propertyType?: any;
3019
+ isReadOnly?: boolean | undefined;
3020
+ };
3021
+ italic: {
3022
+ value: null;
3023
+ parentRef: string;
3024
+ property?: any;
3025
+ propertyType?: any;
3026
+ isReadOnly?: boolean | undefined;
3027
+ };
3028
+ linethrough: {
3029
+ value: null;
3030
+ parentRef: string;
3031
+ property?: any;
3032
+ propertyType?: any;
3033
+ isReadOnly?: boolean | undefined;
3034
+ };
3035
+ underline: {
3036
+ value: null;
3037
+ parentRef: string;
3038
+ property?: any;
3039
+ propertyType?: any;
3040
+ isReadOnly?: boolean | undefined;
3041
+ };
3042
+ textAlign: {
3043
+ value: null;
3044
+ parentRef: string;
3045
+ property?: any;
3046
+ propertyType?: any;
3047
+ isReadOnly?: boolean | undefined;
3048
+ };
3049
+ characterSpacing: {
3050
+ value: null;
3051
+ parentRef: string;
3052
+ unit?: string | number | undefined;
3053
+ property?: any;
3054
+ propertyType?: any;
3055
+ isReadOnly?: boolean | undefined;
3056
+ };
3057
+ lineHeight: {
3058
+ value: null;
3059
+ parentRef: string;
3060
+ unit?: string | number | undefined;
3061
+ property?: any;
3062
+ propertyType?: any;
3063
+ isReadOnly?: boolean | undefined;
3064
+ };
3065
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
3066
+ showIcon: {
3067
+ value: null;
3068
+ parentRef: string;
3069
+ property?: any;
3070
+ propertyType?: any;
3071
+ isReadOnly?: boolean | undefined;
3072
+ };
3073
+ iconSize: {
3074
+ value: null;
3075
+ parentRef: string;
3076
+ unit?: string | number | undefined;
3077
+ property?: any;
3078
+ propertyType?: any;
3079
+ isReadOnly?: boolean | undefined;
3080
+ };
3081
+ iconColor: {
3082
+ value: null;
3083
+ parentRef: string;
3084
+ property?: any;
3085
+ propertyType?: any;
3086
+ isReadOnly?: boolean | undefined;
3087
+ };
3088
+ buttonStyle: {
3089
+ value: null;
3090
+ parentRef: string;
3091
+ propertyType: CMSElementEditTypes;
3092
+ };
3093
+ buttonText: {
3094
+ value: string;
3095
+ property: string;
3096
+ propertyType: CMSElementEditTypes;
3097
+ };
3098
+ iconPadding: {
3099
+ value: number;
3100
+ property: string;
3101
+ parentRef: string;
3102
+ propertyType: CMSElementEditTypes;
3103
+ };
3104
+ iconPosition: {
3105
+ value: null;
3106
+ parentRef: string;
3107
+ propertyType: CMSElementEditTypes;
3108
+ };
3109
+ iconAndTextSpacing: {
3110
+ value: null;
3111
+ property: string;
3112
+ unit: number;
3113
+ parentRef: string;
3114
+ propertyType: CMSElementEditTypes;
3115
+ };
3116
+ alignment: {
3117
+ value: null;
3118
+ property: string;
3119
+ parentRef: string;
3120
+ propertyType: CMSElementEditTypes;
3121
+ };
3122
+ buttonType: {
3123
+ value: string;
3124
+ propertyType: CMSElementEditTypes;
3125
+ };
3126
+ width: {
3127
+ value: string;
3128
+ unit: number;
3129
+ };
3130
+ padding: any;
3131
+ selectorKey: SelectorKeysEnum;
3132
+ };
3133
+ hoverState: {
3134
+ backgroundColor: {
3135
+ value: null;
3136
+ parentRef: string;
3137
+ property?: any;
3138
+ propertyType?: any;
3139
+ isReadOnly?: boolean | undefined;
3140
+ };
3141
+ borderColor: {
3142
+ value: null;
3143
+ parentRef: string;
3144
+ property?: any;
3145
+ propertyType?: any;
3146
+ isReadOnly?: boolean | undefined;
3147
+ };
3148
+ borderStyle: {
3149
+ value: null;
3150
+ parentRef: string;
3151
+ property?: any;
3152
+ propertyType?: any;
3153
+ isReadOnly?: boolean | undefined;
3154
+ };
3155
+ borderPerSlide: {
3156
+ value: null;
3157
+ parentRef: string;
3158
+ isAll: boolean;
3159
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
3160
+ property: string;
3161
+ iscss?: boolean | undefined;
3162
+ propertyType?: any;
3163
+ };
3164
+ showBorder: {
3165
+ value: boolean;
3166
+ parentRef: string;
3167
+ property?: any;
3168
+ propertyType?: any;
3169
+ isReadOnly?: boolean | undefined;
3170
+ };
3171
+ showShadow: {
3172
+ value: null;
3173
+ parentRef: string;
3174
+ property?: any;
3175
+ propertyType?: any;
3176
+ isReadOnly?: boolean | undefined;
3177
+ };
3178
+ shadowColor: {
3179
+ value: null;
3180
+ parentRef: string;
3181
+ property?: any;
3182
+ propertyType?: any;
3183
+ isReadOnly?: boolean | undefined;
3184
+ };
3185
+ blur: {
3186
+ value: null;
3187
+ parentRef: string;
3188
+ unit?: string | number | undefined;
3189
+ property?: any;
3190
+ propertyType?: any;
3191
+ isReadOnly?: boolean | undefined;
3192
+ };
3193
+ spread: {
3194
+ value: null;
3195
+ parentRef: string;
3196
+ unit?: string | number | undefined;
3197
+ property?: any;
3198
+ propertyType?: any;
3199
+ isReadOnly?: boolean | undefined;
3200
+ };
3201
+ angle: {
3202
+ value: null;
3203
+ parentRef: string;
3204
+ unit?: string | number | undefined;
3205
+ property?: any;
3206
+ propertyType?: any;
3207
+ isReadOnly?: boolean | undefined;
3208
+ };
3209
+ borderRadius: {
3210
+ value: null;
3211
+ parentRef: string;
3212
+ isAll: boolean;
3213
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
3214
+ property: string;
3215
+ iscss?: boolean | undefined;
3216
+ propertyType?: any;
3217
+ };
3218
+ font: {
3219
+ value: null;
3220
+ parentRef: string;
3221
+ property?: any;
3222
+ propertyType?: any;
3223
+ isReadOnly?: boolean | undefined;
3224
+ };
3225
+ fontSize: {
3226
+ value: null;
3227
+ parentRef: string;
3228
+ unit?: string | number | undefined;
3229
+ property?: any;
3230
+ propertyType?: any;
3231
+ isReadOnly?: boolean | undefined;
3232
+ };
3233
+ textColor: {
3234
+ value: null;
3235
+ parentRef: string;
3236
+ property?: any;
3237
+ propertyType?: any;
3238
+ isReadOnly?: boolean | undefined;
3239
+ };
3240
+ bold: {
3241
+ value: string;
3242
+ parentRef: string;
3243
+ property?: any;
3244
+ propertyType?: any;
3245
+ isReadOnly?: boolean | undefined;
3246
+ };
3247
+ italic: {
3248
+ value: null;
3249
+ parentRef: string;
3250
+ property?: any;
3251
+ propertyType?: any;
3252
+ isReadOnly?: boolean | undefined;
3253
+ };
3254
+ linethrough: {
3255
+ value: null;
3256
+ parentRef: string;
3257
+ property?: any;
3258
+ propertyType?: any;
3259
+ isReadOnly?: boolean | undefined;
3260
+ };
3261
+ underline: {
3262
+ value: null;
3263
+ parentRef: string;
3264
+ property?: any;
3265
+ propertyType?: any;
3266
+ isReadOnly?: boolean | undefined;
3267
+ };
3268
+ textAlign: {
3269
+ value: null;
3270
+ parentRef: string;
3271
+ property?: any;
3272
+ propertyType?: any;
3273
+ isReadOnly?: boolean | undefined;
3274
+ };
3275
+ characterSpacing: {
3276
+ value: null;
3277
+ parentRef: string;
3278
+ unit?: string | number | undefined;
3279
+ property?: any;
3280
+ propertyType?: any;
3281
+ isReadOnly?: boolean | undefined;
3282
+ };
3283
+ lineHeight: {
3284
+ value: null;
3285
+ parentRef: string;
3286
+ unit?: string | number | undefined;
3287
+ property?: any;
3288
+ propertyType?: any;
3289
+ isReadOnly?: boolean | undefined;
3290
+ };
3291
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
3292
+ showIcon: {
3293
+ value: null;
3294
+ parentRef: string;
3295
+ property?: any;
3296
+ propertyType?: any;
3297
+ isReadOnly?: boolean | undefined;
3298
+ };
3299
+ iconSize: {
3300
+ value: null;
3301
+ parentRef: string;
3302
+ unit?: string | number | undefined;
3303
+ property?: any;
3304
+ propertyType?: any;
3305
+ isReadOnly?: boolean | undefined;
3306
+ };
3307
+ iconColor: {
3308
+ value: null;
3309
+ parentRef: string;
3310
+ property?: any;
3311
+ propertyType?: any;
3312
+ isReadOnly?: boolean | undefined;
3313
+ };
3314
+ buttonStyle: {
3315
+ value: null;
3316
+ parentRef: string;
3317
+ propertyType: CMSElementEditTypes;
3318
+ };
3319
+ buttonText: {
3320
+ value: string;
3321
+ property: string;
3322
+ propertyType: CMSElementEditTypes;
3323
+ };
3324
+ iconPadding: {
3325
+ value: number;
3326
+ property: string;
3327
+ parentRef: string;
3328
+ propertyType: CMSElementEditTypes;
3329
+ };
3330
+ iconPosition: {
3331
+ value: null;
3332
+ parentRef: string;
3333
+ propertyType: CMSElementEditTypes;
3334
+ };
3335
+ iconAndTextSpacing: {
3336
+ value: null;
3337
+ property: string;
3338
+ unit: number;
3339
+ parentRef: string;
3340
+ propertyType: CMSElementEditTypes;
3341
+ };
3342
+ alignment: {
3343
+ value: null;
3344
+ property: string;
3345
+ parentRef: string;
3346
+ propertyType: CMSElementEditTypes;
3347
+ };
3348
+ buttonType: {
3349
+ value: string;
3350
+ propertyType: CMSElementEditTypes;
3351
+ };
3352
+ width: {
3353
+ value: string;
3354
+ unit: number;
3355
+ };
3356
+ padding: any;
3357
+ selectorKey: SelectorKeysEnum;
3358
+ };
3359
+ selectedState: {
3360
+ selectorKey: SelectorKeysEnum;
3361
+ };
3362
+ };
3363
+ reviewOrder: {
3364
+ selectorKey: SelectorKeysEnum;
3365
+ defaultState: {
3366
+ backgroundColor: {
3367
+ value: null;
3368
+ parentRef: string;
3369
+ property?: any;
3370
+ propertyType?: any;
3371
+ isReadOnly?: boolean | undefined;
3372
+ };
3373
+ borderColor: {
3374
+ value: null;
3375
+ parentRef: string;
3376
+ property?: any;
3377
+ propertyType?: any;
3378
+ isReadOnly?: boolean | undefined;
3379
+ };
3380
+ borderStyle: {
3381
+ value: null;
3382
+ parentRef: string;
3383
+ property?: any;
3384
+ propertyType?: any;
3385
+ isReadOnly?: boolean | undefined;
3386
+ };
3387
+ borderPerSlide: {
3388
+ value: null;
3389
+ parentRef: string;
3390
+ isAll: boolean;
3391
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
3392
+ property: string;
3393
+ iscss?: boolean | undefined;
3394
+ propertyType?: any;
3395
+ };
3396
+ showBorder: {
3397
+ value: boolean;
3398
+ parentRef: string;
3399
+ property?: any;
3400
+ propertyType?: any;
3401
+ isReadOnly?: boolean | undefined;
3402
+ };
3403
+ showShadow: {
3404
+ value: null;
3405
+ parentRef: string;
3406
+ property?: any;
3407
+ propertyType?: any;
3408
+ isReadOnly?: boolean | undefined;
3409
+ };
3410
+ shadowColor: {
3411
+ value: null;
3412
+ parentRef: string;
3413
+ property?: any;
3414
+ propertyType?: any;
3415
+ isReadOnly?: boolean | undefined;
3416
+ };
3417
+ blur: {
3418
+ value: null;
3419
+ parentRef: string;
3420
+ unit?: string | number | undefined;
3421
+ property?: any;
3422
+ propertyType?: any;
3423
+ isReadOnly?: boolean | undefined;
3424
+ };
3425
+ spread: {
3426
+ value: null;
3427
+ parentRef: string;
3428
+ unit?: string | number | undefined;
3429
+ property?: any;
3430
+ propertyType?: any;
3431
+ isReadOnly?: boolean | undefined;
3432
+ };
3433
+ angle: {
3434
+ value: null;
3435
+ parentRef: string;
3436
+ unit?: string | number | undefined;
3437
+ property?: any;
3438
+ propertyType?: any;
3439
+ isReadOnly?: boolean | undefined;
3440
+ };
3441
+ borderRadius: {
3442
+ value: null;
3443
+ parentRef: string;
3444
+ isAll: boolean;
3445
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
3446
+ property: string;
3447
+ iscss?: boolean | undefined;
3448
+ propertyType?: any;
3449
+ };
3450
+ font: {
3451
+ value: null;
3452
+ parentRef: string;
3453
+ property?: any;
3454
+ propertyType?: any;
3455
+ isReadOnly?: boolean | undefined;
3456
+ };
3457
+ fontSize: {
3458
+ value: null;
3459
+ parentRef: string;
3460
+ unit?: string | number | undefined;
3461
+ property?: any;
3462
+ propertyType?: any;
3463
+ isReadOnly?: boolean | undefined;
3464
+ };
3465
+ textColor: {
3466
+ value: null;
3467
+ parentRef: string;
3468
+ property?: any;
3469
+ propertyType?: any;
3470
+ isReadOnly?: boolean | undefined;
3471
+ };
3472
+ bold: {
3473
+ value: string;
3474
+ parentRef: string;
3475
+ property?: any;
3476
+ propertyType?: any;
3477
+ isReadOnly?: boolean | undefined;
3478
+ };
3479
+ italic: {
3480
+ value: null;
3481
+ parentRef: string;
3482
+ property?: any;
3483
+ propertyType?: any;
3484
+ isReadOnly?: boolean | undefined;
3485
+ };
3486
+ linethrough: {
3487
+ value: null;
3488
+ parentRef: string;
3489
+ property?: any;
3490
+ propertyType?: any;
3491
+ isReadOnly?: boolean | undefined;
3492
+ };
3493
+ underline: {
3494
+ value: null;
3495
+ parentRef: string;
3496
+ property?: any;
3497
+ propertyType?: any;
3498
+ isReadOnly?: boolean | undefined;
3499
+ };
3500
+ textAlign: {
3501
+ value: null;
3502
+ parentRef: string;
3503
+ property?: any;
3504
+ propertyType?: any;
3505
+ isReadOnly?: boolean | undefined;
3506
+ };
3507
+ characterSpacing: {
3508
+ value: null;
3509
+ parentRef: string;
3510
+ unit?: string | number | undefined;
3511
+ property?: any;
3512
+ propertyType?: any;
3513
+ isReadOnly?: boolean | undefined;
3514
+ };
3515
+ lineHeight: {
3516
+ value: null;
3517
+ parentRef: string;
3518
+ unit?: string | number | undefined;
3519
+ property?: any;
3520
+ propertyType?: any;
3521
+ isReadOnly?: boolean | undefined;
3522
+ };
3523
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
3524
+ showIcon: {
3525
+ value: null;
3526
+ parentRef: string;
3527
+ property?: any;
3528
+ propertyType?: any;
3529
+ isReadOnly?: boolean | undefined;
3530
+ };
3531
+ iconSize: {
3532
+ value: null;
3533
+ parentRef: string;
3534
+ unit?: string | number | undefined;
3535
+ property?: any;
3536
+ propertyType?: any;
3537
+ isReadOnly?: boolean | undefined;
3538
+ };
3539
+ iconColor: {
3540
+ value: null;
3541
+ parentRef: string;
3542
+ property?: any;
3543
+ propertyType?: any;
3544
+ isReadOnly?: boolean | undefined;
3545
+ };
3546
+ buttonStyle: {
3547
+ value: null;
3548
+ parentRef: string;
3549
+ propertyType: CMSElementEditTypes;
3550
+ };
3551
+ buttonText: {
3552
+ value: string;
3553
+ property: string;
3554
+ propertyType: CMSElementEditTypes;
3555
+ };
3556
+ iconPadding: {
3557
+ value: number;
3558
+ property: string;
3559
+ parentRef: string;
3560
+ propertyType: CMSElementEditTypes;
3561
+ };
3562
+ iconPosition: {
3563
+ value: null;
3564
+ parentRef: string;
3565
+ propertyType: CMSElementEditTypes;
3566
+ };
3567
+ iconAndTextSpacing: {
3568
+ value: null;
3569
+ property: string;
3570
+ unit: number;
3571
+ parentRef: string;
3572
+ propertyType: CMSElementEditTypes;
3573
+ };
3574
+ alignment: {
3575
+ value: null;
3576
+ property: string;
3577
+ parentRef: string;
3578
+ propertyType: CMSElementEditTypes;
3579
+ };
3580
+ buttonType: {
3581
+ value: string;
3582
+ propertyType: CMSElementEditTypes;
3583
+ };
3584
+ width: {
3585
+ value: string;
3586
+ unit: number;
3587
+ };
3588
+ padding: any;
3589
+ selectorKey: SelectorKeysEnum;
3590
+ };
3591
+ hoverState: {
3592
+ backgroundColor: {
3593
+ value: null;
3594
+ parentRef: string;
3595
+ property?: any;
3596
+ propertyType?: any;
3597
+ isReadOnly?: boolean | undefined;
3598
+ };
3599
+ borderColor: {
3600
+ value: null;
3601
+ parentRef: string;
3602
+ property?: any;
3603
+ propertyType?: any;
3604
+ isReadOnly?: boolean | undefined;
3605
+ };
3606
+ borderStyle: {
3607
+ value: null;
3608
+ parentRef: string;
3609
+ property?: any;
3610
+ propertyType?: any;
3611
+ isReadOnly?: boolean | undefined;
3612
+ };
3613
+ borderPerSlide: {
3614
+ value: null;
3615
+ parentRef: string;
3616
+ isAll: boolean;
3617
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
3618
+ property: string;
3619
+ iscss?: boolean | undefined;
3620
+ propertyType?: any;
3621
+ };
3622
+ showBorder: {
3623
+ value: boolean;
3624
+ parentRef: string;
3625
+ property?: any;
3626
+ propertyType?: any;
3627
+ isReadOnly?: boolean | undefined;
3628
+ };
3629
+ showShadow: {
3630
+ value: null;
3631
+ parentRef: string;
3632
+ property?: any;
3633
+ propertyType?: any;
3634
+ isReadOnly?: boolean | undefined;
3635
+ };
3636
+ shadowColor: {
3637
+ value: null;
3638
+ parentRef: string;
3639
+ property?: any;
3640
+ propertyType?: any;
3641
+ isReadOnly?: boolean | undefined;
3642
+ };
3643
+ blur: {
3644
+ value: null;
3645
+ parentRef: string;
3646
+ unit?: string | number | undefined;
3647
+ property?: any;
3648
+ propertyType?: any;
3649
+ isReadOnly?: boolean | undefined;
3650
+ };
3651
+ spread: {
3652
+ value: null;
3653
+ parentRef: string;
3654
+ unit?: string | number | undefined;
3655
+ property?: any;
3656
+ propertyType?: any;
3657
+ isReadOnly?: boolean | undefined;
3658
+ };
3659
+ angle: {
3660
+ value: null;
3661
+ parentRef: string;
3662
+ unit?: string | number | undefined;
3663
+ property?: any;
3664
+ propertyType?: any;
3665
+ isReadOnly?: boolean | undefined;
3666
+ };
3667
+ borderRadius: {
3668
+ value: null;
3669
+ parentRef: string;
3670
+ isAll: boolean;
3671
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
3672
+ property: string;
3673
+ iscss?: boolean | undefined;
3674
+ propertyType?: any;
3675
+ };
3676
+ font: {
3677
+ value: null;
3678
+ parentRef: string;
3679
+ property?: any;
3680
+ propertyType?: any;
3681
+ isReadOnly?: boolean | undefined;
3682
+ };
3683
+ fontSize: {
3684
+ value: null;
3685
+ parentRef: string;
3686
+ unit?: string | number | undefined;
3687
+ property?: any;
3688
+ propertyType?: any;
3689
+ isReadOnly?: boolean | undefined;
3690
+ };
3691
+ textColor: {
3692
+ value: null;
3693
+ parentRef: string;
3694
+ property?: any;
3695
+ propertyType?: any;
3696
+ isReadOnly?: boolean | undefined;
3697
+ };
3698
+ bold: {
3699
+ value: string;
3700
+ parentRef: string;
3701
+ property?: any;
3702
+ propertyType?: any;
3703
+ isReadOnly?: boolean | undefined;
3704
+ };
3705
+ italic: {
3706
+ value: null;
3707
+ parentRef: string;
3708
+ property?: any;
3709
+ propertyType?: any;
3710
+ isReadOnly?: boolean | undefined;
3711
+ };
3712
+ linethrough: {
3713
+ value: null;
3714
+ parentRef: string;
3715
+ property?: any;
3716
+ propertyType?: any;
3717
+ isReadOnly?: boolean | undefined;
3718
+ };
3719
+ underline: {
3720
+ value: null;
3721
+ parentRef: string;
3722
+ property?: any;
3723
+ propertyType?: any;
3724
+ isReadOnly?: boolean | undefined;
3725
+ };
3726
+ textAlign: {
3727
+ value: null;
3728
+ parentRef: string;
3729
+ property?: any;
3730
+ propertyType?: any;
3731
+ isReadOnly?: boolean | undefined;
3732
+ };
3733
+ characterSpacing: {
3734
+ value: null;
3735
+ parentRef: string;
3736
+ unit?: string | number | undefined;
3737
+ property?: any;
3738
+ propertyType?: any;
3739
+ isReadOnly?: boolean | undefined;
3740
+ };
3741
+ lineHeight: {
3742
+ value: null;
3743
+ parentRef: string;
3744
+ unit?: string | number | undefined;
3745
+ property?: any;
3746
+ propertyType?: any;
3747
+ isReadOnly?: boolean | undefined;
3748
+ };
3749
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
3750
+ showIcon: {
3751
+ value: null;
3752
+ parentRef: string;
3753
+ property?: any;
3754
+ propertyType?: any;
3755
+ isReadOnly?: boolean | undefined;
3756
+ };
3757
+ iconSize: {
3758
+ value: null;
3759
+ parentRef: string;
3760
+ unit?: string | number | undefined;
3761
+ property?: any;
3762
+ propertyType?: any;
3763
+ isReadOnly?: boolean | undefined;
3764
+ };
3765
+ iconColor: {
3766
+ value: null;
3767
+ parentRef: string;
3768
+ property?: any;
3769
+ propertyType?: any;
3770
+ isReadOnly?: boolean | undefined;
3771
+ };
3772
+ buttonStyle: {
3773
+ value: null;
3774
+ parentRef: string;
3775
+ propertyType: CMSElementEditTypes;
3776
+ };
3777
+ buttonText: {
3778
+ value: string;
3779
+ property: string;
3780
+ propertyType: CMSElementEditTypes;
3781
+ };
3782
+ iconPadding: {
3783
+ value: number;
3784
+ property: string;
3785
+ parentRef: string;
3786
+ propertyType: CMSElementEditTypes;
3787
+ };
3788
+ iconPosition: {
3789
+ value: null;
3790
+ parentRef: string;
3791
+ propertyType: CMSElementEditTypes;
3792
+ };
3793
+ iconAndTextSpacing: {
3794
+ value: null;
3795
+ property: string;
3796
+ unit: number;
3797
+ parentRef: string;
3798
+ propertyType: CMSElementEditTypes;
3799
+ };
3800
+ alignment: {
3801
+ value: null;
3802
+ property: string;
3803
+ parentRef: string;
3804
+ propertyType: CMSElementEditTypes;
3805
+ };
3806
+ buttonType: {
3807
+ value: string;
3808
+ propertyType: CMSElementEditTypes;
3809
+ };
3810
+ width: {
3811
+ value: string;
3812
+ unit: number;
3813
+ };
3814
+ padding: any;
3815
+ selectorKey: SelectorKeysEnum;
3816
+ };
3817
+ selectedState: {
3818
+ selectorKey: SelectorKeysEnum;
3819
+ };
3820
+ };
3821
+ createSubOrders: {
3822
+ selectorKey: SelectorKeysEnum;
3823
+ defaultState: {
3824
+ backgroundColor: {
3825
+ value: null;
3826
+ parentRef: string;
3827
+ property?: any;
3828
+ propertyType?: any;
3829
+ isReadOnly?: boolean | undefined;
3830
+ };
3831
+ borderColor: {
3832
+ value: null;
3833
+ parentRef: string;
3834
+ property?: any;
3835
+ propertyType?: any;
3836
+ isReadOnly?: boolean | undefined;
3837
+ };
3838
+ borderStyle: {
3839
+ value: null;
3840
+ parentRef: string;
3841
+ property?: any;
3842
+ propertyType?: any;
3843
+ isReadOnly?: boolean | undefined;
3844
+ };
3845
+ borderPerSlide: {
3846
+ value: null;
3847
+ parentRef: string;
3848
+ isAll: boolean;
3849
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
3850
+ property: string;
3851
+ iscss?: boolean | undefined;
3852
+ propertyType?: any;
3853
+ };
3854
+ showBorder: {
3855
+ value: boolean;
3856
+ parentRef: string;
3857
+ property?: any;
3858
+ propertyType?: any;
3859
+ isReadOnly?: boolean | undefined;
3860
+ };
3861
+ showShadow: {
3862
+ value: null;
3863
+ parentRef: string;
3864
+ property?: any;
3865
+ propertyType?: any;
3866
+ isReadOnly?: boolean | undefined;
3867
+ };
3868
+ shadowColor: {
3869
+ value: null;
3870
+ parentRef: string;
3871
+ property?: any;
3872
+ propertyType?: any;
3873
+ isReadOnly?: boolean | undefined;
3874
+ };
3875
+ blur: {
3876
+ value: null;
3877
+ parentRef: string;
3878
+ unit?: string | number | undefined;
3879
+ property?: any;
3880
+ propertyType?: any;
3881
+ isReadOnly?: boolean | undefined;
3882
+ };
3883
+ spread: {
3884
+ value: null;
3885
+ parentRef: string;
3886
+ unit?: string | number | undefined;
3887
+ property?: any;
3888
+ propertyType?: any;
3889
+ isReadOnly?: boolean | undefined;
3890
+ };
3891
+ angle: {
3892
+ value: null;
3893
+ parentRef: string;
3894
+ unit?: string | number | undefined;
3895
+ property?: any;
3896
+ propertyType?: any;
3897
+ isReadOnly?: boolean | undefined;
3898
+ };
3899
+ borderRadius: {
3900
+ value: null;
3901
+ parentRef: string;
3902
+ isAll: boolean;
3903
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
3904
+ property: string;
3905
+ iscss?: boolean | undefined;
3906
+ propertyType?: any;
3907
+ };
3908
+ font: {
3909
+ value: null;
3910
+ parentRef: string;
3911
+ property?: any;
3912
+ propertyType?: any;
3913
+ isReadOnly?: boolean | undefined;
3914
+ };
3915
+ fontSize: {
3916
+ value: null;
3917
+ parentRef: string;
3918
+ unit?: string | number | undefined;
3919
+ property?: any;
3920
+ propertyType?: any;
3921
+ isReadOnly?: boolean | undefined;
3922
+ };
3923
+ textColor: {
3924
+ value: null;
3925
+ parentRef: string;
3926
+ property?: any;
3927
+ propertyType?: any;
3928
+ isReadOnly?: boolean | undefined;
3929
+ };
3930
+ bold: {
3931
+ value: string;
3932
+ parentRef: string;
3933
+ property?: any;
3934
+ propertyType?: any;
3935
+ isReadOnly?: boolean | undefined;
3936
+ };
3937
+ italic: {
3938
+ value: null;
3939
+ parentRef: string;
3940
+ property?: any;
3941
+ propertyType?: any;
3942
+ isReadOnly?: boolean | undefined;
3943
+ };
3944
+ linethrough: {
3945
+ value: null;
3946
+ parentRef: string;
3947
+ property?: any;
3948
+ propertyType?: any;
3949
+ isReadOnly?: boolean | undefined;
3950
+ };
3951
+ underline: {
3952
+ value: null;
3953
+ parentRef: string;
3954
+ property?: any;
3955
+ propertyType?: any;
3956
+ isReadOnly?: boolean | undefined;
3957
+ };
3958
+ textAlign: {
3959
+ value: null;
3960
+ parentRef: string;
3961
+ property?: any;
3962
+ propertyType?: any;
3963
+ isReadOnly?: boolean | undefined;
3964
+ };
3965
+ characterSpacing: {
3966
+ value: null;
3967
+ parentRef: string;
3968
+ unit?: string | number | undefined;
3969
+ property?: any;
3970
+ propertyType?: any;
3971
+ isReadOnly?: boolean | undefined;
3972
+ };
3973
+ lineHeight: {
3974
+ value: null;
3975
+ parentRef: string;
3976
+ unit?: string | number | undefined;
3977
+ property?: any;
3978
+ propertyType?: any;
3979
+ isReadOnly?: boolean | undefined;
3980
+ };
3981
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
3982
+ showIcon: {
3983
+ value: null;
3984
+ parentRef: string;
3985
+ property?: any;
3986
+ propertyType?: any;
3987
+ isReadOnly?: boolean | undefined;
3988
+ };
3989
+ iconSize: {
3990
+ value: null;
3991
+ parentRef: string;
3992
+ unit?: string | number | undefined;
3993
+ property?: any;
3994
+ propertyType?: any;
3995
+ isReadOnly?: boolean | undefined;
3996
+ };
3997
+ iconColor: {
3998
+ value: null;
3999
+ parentRef: string;
4000
+ property?: any;
4001
+ propertyType?: any;
4002
+ isReadOnly?: boolean | undefined;
4003
+ };
4004
+ buttonStyle: {
4005
+ value: null;
4006
+ parentRef: string;
4007
+ propertyType: CMSElementEditTypes;
4008
+ };
4009
+ buttonText: {
4010
+ value: string;
4011
+ property: string;
4012
+ propertyType: CMSElementEditTypes;
4013
+ };
4014
+ iconPadding: {
4015
+ value: number;
4016
+ property: string;
4017
+ parentRef: string;
4018
+ propertyType: CMSElementEditTypes;
4019
+ };
4020
+ iconPosition: {
4021
+ value: null;
4022
+ parentRef: string;
4023
+ propertyType: CMSElementEditTypes;
4024
+ };
4025
+ iconAndTextSpacing: {
4026
+ value: null;
4027
+ property: string;
4028
+ unit: number;
4029
+ parentRef: string;
4030
+ propertyType: CMSElementEditTypes;
4031
+ };
4032
+ alignment: {
4033
+ value: null;
4034
+ property: string;
4035
+ parentRef: string;
4036
+ propertyType: CMSElementEditTypes;
4037
+ };
4038
+ buttonType: {
4039
+ value: string;
4040
+ propertyType: CMSElementEditTypes;
4041
+ };
4042
+ width: {
4043
+ value: string;
4044
+ unit: number;
4045
+ };
4046
+ padding: any;
4047
+ selectorKey: SelectorKeysEnum;
4048
+ };
4049
+ hoverState: {
4050
+ backgroundColor: {
4051
+ value: null;
4052
+ parentRef: string;
4053
+ property?: any;
4054
+ propertyType?: any;
4055
+ isReadOnly?: boolean | undefined;
4056
+ };
4057
+ borderColor: {
4058
+ value: null;
4059
+ parentRef: string;
4060
+ property?: any;
4061
+ propertyType?: any;
4062
+ isReadOnly?: boolean | undefined;
4063
+ };
4064
+ borderStyle: {
4065
+ value: null;
4066
+ parentRef: string;
4067
+ property?: any;
4068
+ propertyType?: any;
4069
+ isReadOnly?: boolean | undefined;
4070
+ };
4071
+ borderPerSlide: {
4072
+ value: null;
4073
+ parentRef: string;
4074
+ isAll: boolean;
4075
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
4076
+ property: string;
4077
+ iscss?: boolean | undefined;
4078
+ propertyType?: any;
4079
+ };
4080
+ showBorder: {
4081
+ value: boolean;
4082
+ parentRef: string;
4083
+ property?: any;
4084
+ propertyType?: any;
4085
+ isReadOnly?: boolean | undefined;
4086
+ };
4087
+ showShadow: {
4088
+ value: null;
4089
+ parentRef: string;
4090
+ property?: any;
4091
+ propertyType?: any;
4092
+ isReadOnly?: boolean | undefined;
4093
+ };
4094
+ shadowColor: {
4095
+ value: null;
4096
+ parentRef: string;
4097
+ property?: any;
4098
+ propertyType?: any;
4099
+ isReadOnly?: boolean | undefined;
4100
+ };
4101
+ blur: {
4102
+ value: null;
4103
+ parentRef: string;
4104
+ unit?: string | number | undefined;
4105
+ property?: any;
4106
+ propertyType?: any;
4107
+ isReadOnly?: boolean | undefined;
4108
+ };
4109
+ spread: {
4110
+ value: null;
4111
+ parentRef: string;
4112
+ unit?: string | number | undefined;
4113
+ property?: any;
4114
+ propertyType?: any;
4115
+ isReadOnly?: boolean | undefined;
4116
+ };
4117
+ angle: {
4118
+ value: null;
4119
+ parentRef: string;
4120
+ unit?: string | number | undefined;
4121
+ property?: any;
4122
+ propertyType?: any;
4123
+ isReadOnly?: boolean | undefined;
4124
+ };
4125
+ borderRadius: {
4126
+ value: null;
4127
+ parentRef: string;
4128
+ isAll: boolean;
4129
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
4130
+ property: string;
4131
+ iscss?: boolean | undefined;
4132
+ propertyType?: any;
4133
+ };
4134
+ font: {
4135
+ value: null;
4136
+ parentRef: string;
4137
+ property?: any;
4138
+ propertyType?: any;
4139
+ isReadOnly?: boolean | undefined;
4140
+ };
4141
+ fontSize: {
4142
+ value: null;
4143
+ parentRef: string;
4144
+ unit?: string | number | undefined;
4145
+ property?: any;
4146
+ propertyType?: any;
4147
+ isReadOnly?: boolean | undefined;
4148
+ };
4149
+ textColor: {
4150
+ value: null;
4151
+ parentRef: string;
4152
+ property?: any;
4153
+ propertyType?: any;
4154
+ isReadOnly?: boolean | undefined;
4155
+ };
4156
+ bold: {
4157
+ value: string;
4158
+ parentRef: string;
4159
+ property?: any;
4160
+ propertyType?: any;
4161
+ isReadOnly?: boolean | undefined;
4162
+ };
4163
+ italic: {
4164
+ value: null;
4165
+ parentRef: string;
4166
+ property?: any;
4167
+ propertyType?: any;
4168
+ isReadOnly?: boolean | undefined;
4169
+ };
4170
+ linethrough: {
4171
+ value: null;
4172
+ parentRef: string;
4173
+ property?: any;
4174
+ propertyType?: any;
4175
+ isReadOnly?: boolean | undefined;
4176
+ };
4177
+ underline: {
4178
+ value: null;
4179
+ parentRef: string;
4180
+ property?: any;
4181
+ propertyType?: any;
4182
+ isReadOnly?: boolean | undefined;
4183
+ };
4184
+ textAlign: {
4185
+ value: null;
4186
+ parentRef: string;
4187
+ property?: any;
4188
+ propertyType?: any;
4189
+ isReadOnly?: boolean | undefined;
4190
+ };
4191
+ characterSpacing: {
4192
+ value: null;
4193
+ parentRef: string;
4194
+ unit?: string | number | undefined;
4195
+ property?: any;
4196
+ propertyType?: any;
4197
+ isReadOnly?: boolean | undefined;
4198
+ };
4199
+ lineHeight: {
4200
+ value: null;
4201
+ parentRef: string;
4202
+ unit?: string | number | undefined;
4203
+ property?: any;
4204
+ propertyType?: any;
4205
+ isReadOnly?: boolean | undefined;
4206
+ };
4207
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
4208
+ showIcon: {
4209
+ value: null;
4210
+ parentRef: string;
4211
+ property?: any;
4212
+ propertyType?: any;
4213
+ isReadOnly?: boolean | undefined;
4214
+ };
4215
+ iconSize: {
4216
+ value: null;
4217
+ parentRef: string;
4218
+ unit?: string | number | undefined;
4219
+ property?: any;
4220
+ propertyType?: any;
4221
+ isReadOnly?: boolean | undefined;
4222
+ };
4223
+ iconColor: {
4224
+ value: null;
4225
+ parentRef: string;
4226
+ property?: any;
4227
+ propertyType?: any;
4228
+ isReadOnly?: boolean | undefined;
4229
+ };
4230
+ buttonStyle: {
4231
+ value: null;
4232
+ parentRef: string;
4233
+ propertyType: CMSElementEditTypes;
4234
+ };
4235
+ buttonText: {
4236
+ value: string;
4237
+ property: string;
4238
+ propertyType: CMSElementEditTypes;
4239
+ };
4240
+ iconPadding: {
4241
+ value: number;
4242
+ property: string;
4243
+ parentRef: string;
4244
+ propertyType: CMSElementEditTypes;
4245
+ };
4246
+ iconPosition: {
4247
+ value: null;
4248
+ parentRef: string;
4249
+ propertyType: CMSElementEditTypes;
4250
+ };
4251
+ iconAndTextSpacing: {
4252
+ value: null;
4253
+ property: string;
4254
+ unit: number;
4255
+ parentRef: string;
4256
+ propertyType: CMSElementEditTypes;
4257
+ };
4258
+ alignment: {
4259
+ value: null;
4260
+ property: string;
4261
+ parentRef: string;
4262
+ propertyType: CMSElementEditTypes;
4263
+ };
4264
+ buttonType: {
4265
+ value: string;
4266
+ propertyType: CMSElementEditTypes;
4267
+ };
4268
+ width: {
4269
+ value: string;
4270
+ unit: number;
4271
+ };
4272
+ padding: any;
4273
+ selectorKey: SelectorKeysEnum;
4274
+ };
4275
+ selectedState: {
4276
+ selectorKey: SelectorKeysEnum;
4277
+ };
4278
+ };
4279
+ submitQuote: {
4280
+ selectorKey: SelectorKeysEnum;
4281
+ defaultState: {
4282
+ backgroundColor: {
4283
+ value: null;
4284
+ parentRef: string;
4285
+ property?: any;
4286
+ propertyType?: any;
4287
+ isReadOnly?: boolean | undefined;
4288
+ };
4289
+ borderColor: {
4290
+ value: null;
4291
+ parentRef: string;
4292
+ property?: any;
4293
+ propertyType?: any;
4294
+ isReadOnly?: boolean | undefined;
4295
+ };
4296
+ borderStyle: {
4297
+ value: null;
4298
+ parentRef: string;
4299
+ property?: any;
4300
+ propertyType?: any;
4301
+ isReadOnly?: boolean | undefined;
4302
+ };
4303
+ borderPerSlide: {
4304
+ value: null;
4305
+ parentRef: string;
4306
+ isAll: boolean;
4307
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
4308
+ property: string;
4309
+ iscss?: boolean | undefined;
4310
+ propertyType?: any;
4311
+ };
4312
+ showBorder: {
4313
+ value: boolean;
4314
+ parentRef: string;
4315
+ property?: any;
4316
+ propertyType?: any;
4317
+ isReadOnly?: boolean | undefined;
4318
+ };
4319
+ showShadow: {
4320
+ value: null;
4321
+ parentRef: string;
4322
+ property?: any;
4323
+ propertyType?: any;
4324
+ isReadOnly?: boolean | undefined;
4325
+ };
4326
+ shadowColor: {
4327
+ value: null;
4328
+ parentRef: string;
4329
+ property?: any;
4330
+ propertyType?: any;
4331
+ isReadOnly?: boolean | undefined;
4332
+ };
4333
+ blur: {
4334
+ value: null;
4335
+ parentRef: string;
4336
+ unit?: string | number | undefined;
4337
+ property?: any;
4338
+ propertyType?: any;
4339
+ isReadOnly?: boolean | undefined;
4340
+ };
4341
+ spread: {
4342
+ value: null;
4343
+ parentRef: string;
4344
+ unit?: string | number | undefined;
4345
+ property?: any;
4346
+ propertyType?: any;
4347
+ isReadOnly?: boolean | undefined;
4348
+ };
4349
+ angle: {
4350
+ value: null;
4351
+ parentRef: string;
4352
+ unit?: string | number | undefined;
4353
+ property?: any;
4354
+ propertyType?: any;
4355
+ isReadOnly?: boolean | undefined;
4356
+ };
4357
+ borderRadius: {
4358
+ value: null;
4359
+ parentRef: string;
4360
+ isAll: boolean;
4361
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
4362
+ property: string;
4363
+ iscss?: boolean | undefined;
4364
+ propertyType?: any;
4365
+ };
4366
+ font: {
4367
+ value: null;
4368
+ parentRef: string;
4369
+ property?: any;
4370
+ propertyType?: any;
4371
+ isReadOnly?: boolean | undefined;
4372
+ };
4373
+ fontSize: {
4374
+ value: null;
4375
+ parentRef: string;
4376
+ unit?: string | number | undefined;
4377
+ property?: any;
4378
+ propertyType?: any;
4379
+ isReadOnly?: boolean | undefined;
4380
+ };
4381
+ textColor: {
4382
+ value: null;
4383
+ parentRef: string;
4384
+ property?: any;
4385
+ propertyType?: any;
4386
+ isReadOnly?: boolean | undefined;
4387
+ };
4388
+ bold: {
4389
+ value: string;
4390
+ parentRef: string;
4391
+ property?: any;
4392
+ propertyType?: any;
4393
+ isReadOnly?: boolean | undefined;
4394
+ };
4395
+ italic: {
4396
+ value: null;
4397
+ parentRef: string;
4398
+ property?: any;
4399
+ propertyType?: any;
4400
+ isReadOnly?: boolean | undefined;
4401
+ };
4402
+ linethrough: {
4403
+ value: null;
4404
+ parentRef: string;
4405
+ property?: any;
4406
+ propertyType?: any;
4407
+ isReadOnly?: boolean | undefined;
4408
+ };
4409
+ underline: {
4410
+ value: null;
4411
+ parentRef: string;
4412
+ property?: any;
4413
+ propertyType?: any;
4414
+ isReadOnly?: boolean | undefined;
4415
+ };
4416
+ textAlign: {
4417
+ value: null;
4418
+ parentRef: string;
4419
+ property?: any;
4420
+ propertyType?: any;
4421
+ isReadOnly?: boolean | undefined;
4422
+ };
4423
+ characterSpacing: {
4424
+ value: null;
4425
+ parentRef: string;
4426
+ unit?: string | number | undefined;
4427
+ property?: any;
4428
+ propertyType?: any;
4429
+ isReadOnly?: boolean | undefined;
4430
+ };
4431
+ lineHeight: {
4432
+ value: null;
4433
+ parentRef: string;
4434
+ unit?: string | number | undefined;
4435
+ property?: any;
4436
+ propertyType?: any;
4437
+ isReadOnly?: boolean | undefined;
4438
+ };
4439
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
4440
+ showIcon: {
4441
+ value: null;
4442
+ parentRef: string;
4443
+ property?: any;
4444
+ propertyType?: any;
4445
+ isReadOnly?: boolean | undefined;
4446
+ };
4447
+ iconSize: {
4448
+ value: null;
4449
+ parentRef: string;
4450
+ unit?: string | number | undefined;
4451
+ property?: any;
4452
+ propertyType?: any;
4453
+ isReadOnly?: boolean | undefined;
4454
+ };
4455
+ iconColor: {
4456
+ value: null;
4457
+ parentRef: string;
4458
+ property?: any;
4459
+ propertyType?: any;
4460
+ isReadOnly?: boolean | undefined;
4461
+ };
4462
+ buttonStyle: {
4463
+ value: null;
4464
+ parentRef: string;
4465
+ propertyType: CMSElementEditTypes;
4466
+ };
4467
+ buttonText: {
4468
+ value: string;
4469
+ property: string;
4470
+ propertyType: CMSElementEditTypes;
4471
+ };
4472
+ iconPadding: {
4473
+ value: number;
4474
+ property: string;
4475
+ parentRef: string;
4476
+ propertyType: CMSElementEditTypes;
4477
+ };
4478
+ iconPosition: {
4479
+ value: null;
4480
+ parentRef: string;
4481
+ propertyType: CMSElementEditTypes;
4482
+ };
4483
+ iconAndTextSpacing: {
4484
+ value: null;
4485
+ property: string;
4486
+ unit: number;
4487
+ parentRef: string;
4488
+ propertyType: CMSElementEditTypes;
4489
+ };
4490
+ alignment: {
4491
+ value: null;
4492
+ property: string;
4493
+ parentRef: string;
4494
+ propertyType: CMSElementEditTypes;
4495
+ };
4496
+ buttonType: {
4497
+ value: string;
4498
+ propertyType: CMSElementEditTypes;
4499
+ };
4500
+ width: {
4501
+ value: string;
4502
+ unit: number;
4503
+ };
4504
+ padding: any;
4505
+ selectorKey: SelectorKeysEnum;
4506
+ };
4507
+ hoverState: {
4508
+ backgroundColor: {
4509
+ value: null;
4510
+ parentRef: string;
4511
+ property?: any;
4512
+ propertyType?: any;
4513
+ isReadOnly?: boolean | undefined;
4514
+ };
4515
+ borderColor: {
4516
+ value: null;
4517
+ parentRef: string;
4518
+ property?: any;
4519
+ propertyType?: any;
4520
+ isReadOnly?: boolean | undefined;
4521
+ };
4522
+ borderStyle: {
4523
+ value: null;
4524
+ parentRef: string;
4525
+ property?: any;
4526
+ propertyType?: any;
4527
+ isReadOnly?: boolean | undefined;
4528
+ };
4529
+ borderPerSlide: {
4530
+ value: null;
4531
+ parentRef: string;
4532
+ isAll: boolean;
4533
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
4534
+ property: string;
4535
+ iscss?: boolean | undefined;
4536
+ propertyType?: any;
4537
+ };
4538
+ showBorder: {
4539
+ value: boolean;
4540
+ parentRef: string;
4541
+ property?: any;
4542
+ propertyType?: any;
4543
+ isReadOnly?: boolean | undefined;
4544
+ };
4545
+ showShadow: {
4546
+ value: null;
4547
+ parentRef: string;
4548
+ property?: any;
4549
+ propertyType?: any;
4550
+ isReadOnly?: boolean | undefined;
4551
+ };
4552
+ shadowColor: {
4553
+ value: null;
4554
+ parentRef: string;
4555
+ property?: any;
4556
+ propertyType?: any;
4557
+ isReadOnly?: boolean | undefined;
4558
+ };
4559
+ blur: {
4560
+ value: null;
4561
+ parentRef: string;
4562
+ unit?: string | number | undefined;
4563
+ property?: any;
4564
+ propertyType?: any;
4565
+ isReadOnly?: boolean | undefined;
4566
+ };
4567
+ spread: {
4568
+ value: null;
4569
+ parentRef: string;
4570
+ unit?: string | number | undefined;
4571
+ property?: any;
4572
+ propertyType?: any;
4573
+ isReadOnly?: boolean | undefined;
4574
+ };
4575
+ angle: {
4576
+ value: null;
4577
+ parentRef: string;
4578
+ unit?: string | number | undefined;
4579
+ property?: any;
4580
+ propertyType?: any;
4581
+ isReadOnly?: boolean | undefined;
4582
+ };
4583
+ borderRadius: {
4584
+ value: null;
4585
+ parentRef: string;
4586
+ isAll: boolean;
4587
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
4588
+ property: string;
4589
+ iscss?: boolean | undefined;
4590
+ propertyType?: any;
4591
+ };
4592
+ font: {
4593
+ value: null;
4594
+ parentRef: string;
4595
+ property?: any;
4596
+ propertyType?: any;
4597
+ isReadOnly?: boolean | undefined;
4598
+ };
4599
+ fontSize: {
4600
+ value: null;
4601
+ parentRef: string;
4602
+ unit?: string | number | undefined;
4603
+ property?: any;
4604
+ propertyType?: any;
4605
+ isReadOnly?: boolean | undefined;
4606
+ };
4607
+ textColor: {
4608
+ value: null;
4609
+ parentRef: string;
4610
+ property?: any;
4611
+ propertyType?: any;
4612
+ isReadOnly?: boolean | undefined;
4613
+ };
4614
+ bold: {
4615
+ value: string;
4616
+ parentRef: string;
4617
+ property?: any;
4618
+ propertyType?: any;
4619
+ isReadOnly?: boolean | undefined;
4620
+ };
4621
+ italic: {
4622
+ value: null;
4623
+ parentRef: string;
4624
+ property?: any;
4625
+ propertyType?: any;
4626
+ isReadOnly?: boolean | undefined;
4627
+ };
4628
+ linethrough: {
4629
+ value: null;
4630
+ parentRef: string;
4631
+ property?: any;
4632
+ propertyType?: any;
4633
+ isReadOnly?: boolean | undefined;
4634
+ };
4635
+ underline: {
4636
+ value: null;
4637
+ parentRef: string;
4638
+ property?: any;
4639
+ propertyType?: any;
4640
+ isReadOnly?: boolean | undefined;
4641
+ };
4642
+ textAlign: {
4643
+ value: null;
4644
+ parentRef: string;
4645
+ property?: any;
4646
+ propertyType?: any;
4647
+ isReadOnly?: boolean | undefined;
4648
+ };
4649
+ characterSpacing: {
4650
+ value: null;
4651
+ parentRef: string;
4652
+ unit?: string | number | undefined;
4653
+ property?: any;
4654
+ propertyType?: any;
4655
+ isReadOnly?: boolean | undefined;
4656
+ };
4657
+ lineHeight: {
4658
+ value: null;
4659
+ parentRef: string;
4660
+ unit?: string | number | undefined;
4661
+ property?: any;
4662
+ propertyType?: any;
4663
+ isReadOnly?: boolean | undefined;
4664
+ };
4665
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
4666
+ showIcon: {
4667
+ value: null;
4668
+ parentRef: string;
4669
+ property?: any;
4670
+ propertyType?: any;
4671
+ isReadOnly?: boolean | undefined;
4672
+ };
4673
+ iconSize: {
4674
+ value: null;
4675
+ parentRef: string;
4676
+ unit?: string | number | undefined;
4677
+ property?: any;
4678
+ propertyType?: any;
4679
+ isReadOnly?: boolean | undefined;
4680
+ };
4681
+ iconColor: {
4682
+ value: null;
4683
+ parentRef: string;
4684
+ property?: any;
4685
+ propertyType?: any;
4686
+ isReadOnly?: boolean | undefined;
4687
+ };
4688
+ buttonStyle: {
4689
+ value: null;
4690
+ parentRef: string;
4691
+ propertyType: CMSElementEditTypes;
4692
+ };
4693
+ buttonText: {
4694
+ value: string;
4695
+ property: string;
4696
+ propertyType: CMSElementEditTypes;
4697
+ };
4698
+ iconPadding: {
4699
+ value: number;
4700
+ property: string;
4701
+ parentRef: string;
4702
+ propertyType: CMSElementEditTypes;
4703
+ };
4704
+ iconPosition: {
4705
+ value: null;
4706
+ parentRef: string;
4707
+ propertyType: CMSElementEditTypes;
4708
+ };
4709
+ iconAndTextSpacing: {
4710
+ value: null;
4711
+ property: string;
4712
+ unit: number;
4713
+ parentRef: string;
4714
+ propertyType: CMSElementEditTypes;
4715
+ };
4716
+ alignment: {
4717
+ value: null;
4718
+ property: string;
4719
+ parentRef: string;
4720
+ propertyType: CMSElementEditTypes;
4721
+ };
4722
+ buttonType: {
4723
+ value: string;
4724
+ propertyType: CMSElementEditTypes;
4725
+ };
4726
+ width: {
4727
+ value: string;
4728
+ unit: number;
4729
+ };
4730
+ padding: any;
4731
+ selectorKey: SelectorKeysEnum;
4732
+ };
4733
+ selectedState: {
4734
+ selectorKey: SelectorKeysEnum;
4735
+ };
4736
+ };
4737
+ };
4738
+ };
4739
+ content: {
4740
+ selectorKey: SelectorKeysEnum;
4741
+ title: {
4742
+ value: string;
4743
+ property: string;
4744
+ propertyType: CMSElementEditTypes;
4745
+ };
4746
+ checkOutButtonText: {
4747
+ value: string;
4748
+ property: string;
4749
+ propertyType: CMSElementEditTypes;
4750
+ };
4751
+ subTotalLabel: {
4752
+ value: string;
4753
+ property: string;
4754
+ propertyType: CMSElementEditTypes;
4755
+ };
4756
+ numberOfItemsLabel: {
4757
+ value: string;
4758
+ property: string;
4759
+ propertyType: CMSElementEditTypes;
4760
+ };
4761
+ taxLabel: {
4762
+ value: string;
4763
+ property: string;
4764
+ propertyType: CMSElementEditTypes;
4765
+ };
4766
+ taxExemptLabel: {
4767
+ value: string;
4768
+ property: string;
4769
+ propertyType: CMSElementEditTypes;
4770
+ };
4771
+ shippingChargesLabel: {
4772
+ value: string;
4773
+ property: string;
4774
+ propertyType: CMSElementEditTypes;
4775
+ };
4776
+ enterCouponCodeLabel: {
4777
+ value: string;
4778
+ property: string;
4779
+ propertyType: CMSElementEditTypes;
4780
+ };
4781
+ applyCouponCodeLabel: {
4782
+ value: string;
4783
+ property: string;
4784
+ propertyType: CMSElementEditTypes;
4785
+ };
4786
+ totalLabel: {
4787
+ value: string;
4788
+ property: string;
4789
+ propertyType: CMSElementEditTypes;
4790
+ };
4791
+ };
4792
+ };