@sc-360-v2/storefront-cms-library 0.3.39 → 0.3.41

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.
@@ -7,14 +7,27 @@ export declare enum SelectorKeysEnum {
7
7
  LAYOUT = "layout",
8
8
  CONTENT = "content",
9
9
  DESIGN = "design",
10
- TITLE_CONTAINER_DESIGN = "titleContainerDesign",
11
- TITLE_DESIGN = "titleDesign",
12
- HEADING_TEXT_DESIGN = "headingTextDesign",
13
- PRIMARY_TEXT_DESIGN = "primaryTextDesign",
14
- TOTAL_AMOUNT_DESIGN = "totalAmountDesign",
15
- SECONDARY_TEXT_DESIGN = "secondaryTextDesign",
16
- PRIMARY_BUTTON_DESIGN = "primaryButtonDesign",
17
- SECONDARY_BUTTON_DESIGN = "secondaryButtonDesign",
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
+ CHECKOUT_BUTTON = "checkoutButton",
30
+ REQUEST_QUOTE_BUTTON = "requestQuoteButton",
18
31
  HOVER_STATE = "hoverState",
19
32
  DEFAULT_STATE = "defaultState"
20
33
  }
@@ -142,7 +155,38 @@ export declare const getDefaultData: () => {
142
155
  };
143
156
  design: {
144
157
  selectorKey: SelectorKeysEnum;
145
- titleContainerDesign: {
158
+ accordionArrowsItem: {
159
+ selectorKey: SelectorKeysEnum;
160
+ showIcon: CMSIBCommonInterface | undefined;
161
+ iconColor: CMSIBCommonInterface;
162
+ iconSize: import("../../interfaces/global").CMSIBSizeInterface;
163
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
164
+ iconTwo: {
165
+ property: string;
166
+ unit?: string | number | undefined;
167
+ customIcon?: {
168
+ isCustomIcon: boolean;
169
+ url: string;
170
+ name: string;
171
+ } | undefined;
172
+ value?: any;
173
+ propertyType?: any;
174
+ isReadOnly?: boolean | undefined;
175
+ parentRef?: string | undefined;
176
+ };
177
+ };
178
+ headerContainer: {
179
+ theme: CMSIBCommonInterface;
180
+ font: CMSIBCommonInterface;
181
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
182
+ textColor: CMSIBCommonInterface;
183
+ bold: CMSIBCommonInterface;
184
+ italic: CMSIBCommonInterface;
185
+ linethrough: CMSIBCommonInterface;
186
+ underline: CMSIBCommonInterface;
187
+ textAlign: CMSIBCommonInterface;
188
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
189
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
146
190
  borderColor: CMSIBCommonInterface;
147
191
  borderStyle: CMSIBCommonInterface;
148
192
  borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
@@ -152,6 +196,7 @@ export declare const getDefaultData: () => {
152
196
  shadowColor: CMSIBCommonInterface;
153
197
  blur: import("../../interfaces/global").CMSIBSizeInterface;
154
198
  spread: import("../../interfaces/global").CMSIBSizeInterface;
199
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
155
200
  angle: import("../../interfaces/global").CMSIBSizeInterface;
156
201
  borderRadius: import("../../interfaces/global").CSSPaddingValues;
157
202
  exposure: import("../../interfaces/global").CMSIBSizeInterface;
@@ -161,7 +206,14 @@ export declare const getDefaultData: () => {
161
206
  shadows: import("../../interfaces/global").CMSIBSizeInterface;
162
207
  selectorKey: SelectorKeysEnum;
163
208
  };
164
- titleDesign: {
209
+ cartBodyWidget: {
210
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
211
+ itemGap: {
212
+ value: CMSCSSUnitTypesEnums;
213
+ unit: CMSCSSUnitTypesEnums;
214
+ property: string;
215
+ propertyType: CMSElementEditTypes;
216
+ };
165
217
  theme: CMSIBCommonInterface;
166
218
  font: CMSIBCommonInterface;
167
219
  fontSize: import("../../interfaces/global").CMSIBSizeInterface;
@@ -173,37 +225,1254 @@ export declare const getDefaultData: () => {
173
225
  textAlign: CMSIBCommonInterface;
174
226
  characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
175
227
  lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
228
+ borderColor: CMSIBCommonInterface;
229
+ borderStyle: CMSIBCommonInterface;
230
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
231
+ showBorder: CMSIBCommonInterface;
232
+ backgroundColor: CMSIBCommonInterface;
233
+ showShadow: CMSIBCommonInterface;
234
+ shadowColor: CMSIBCommonInterface;
235
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
236
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
237
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
238
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
239
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
240
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
241
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
242
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
243
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
176
244
  selectorKey: SelectorKeysEnum;
177
245
  };
178
- headingTextDesign: {
179
- theme: CMSIBCommonInterface;
180
- font: CMSIBCommonInterface;
181
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
182
- textColor: CMSIBCommonInterface;
183
- bold: CMSIBCommonInterface;
184
- italic: CMSIBCommonInterface;
185
- linethrough: CMSIBCommonInterface;
186
- underline: CMSIBCommonInterface;
187
- textAlign: CMSIBCommonInterface;
188
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
189
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
246
+ productWidget: {
190
247
  selectorKey: SelectorKeysEnum;
248
+ productWidgetWrapper: {
249
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
250
+ itemGap: {
251
+ value: CMSCSSUnitTypesEnums;
252
+ unit: CMSCSSUnitTypesEnums;
253
+ property: string;
254
+ propertyType: CMSElementEditTypes;
255
+ };
256
+ borderColor: CMSIBCommonInterface;
257
+ borderStyle: CMSIBCommonInterface;
258
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
259
+ showBorder: CMSIBCommonInterface;
260
+ backgroundColor: CMSIBCommonInterface;
261
+ showShadow: CMSIBCommonInterface;
262
+ shadowColor: CMSIBCommonInterface;
263
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
264
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
265
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
266
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
267
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
268
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
269
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
270
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
271
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
272
+ selectorKey: SelectorKeysEnum;
273
+ };
274
+ productWidgetItem: {
275
+ itemGap: {
276
+ value: CMSCSSUnitTypesEnums;
277
+ unit: CMSCSSUnitTypesEnums;
278
+ property: string;
279
+ propertyType: CMSElementEditTypes;
280
+ };
281
+ borderColor: CMSIBCommonInterface;
282
+ borderStyle: CMSIBCommonInterface;
283
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
284
+ showBorder: CMSIBCommonInterface;
285
+ backgroundColor: CMSIBCommonInterface;
286
+ showShadow: CMSIBCommonInterface;
287
+ shadowColor: CMSIBCommonInterface;
288
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
289
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
290
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
291
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
292
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
293
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
294
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
295
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
296
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
297
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
298
+ selectorKey: SelectorKeysEnum;
299
+ };
300
+ productName: {
301
+ theme: CMSIBCommonInterface;
302
+ font: CMSIBCommonInterface;
303
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
304
+ textColor: CMSIBCommonInterface;
305
+ bold: CMSIBCommonInterface;
306
+ italic: CMSIBCommonInterface;
307
+ linethrough: CMSIBCommonInterface;
308
+ underline: CMSIBCommonInterface;
309
+ textAlign: CMSIBCommonInterface;
310
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
311
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
312
+ borderColor: CMSIBCommonInterface;
313
+ borderStyle: CMSIBCommonInterface;
314
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
315
+ showBorder: CMSIBCommonInterface;
316
+ backgroundColor: CMSIBCommonInterface;
317
+ showShadow: CMSIBCommonInterface;
318
+ shadowColor: CMSIBCommonInterface;
319
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
320
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
321
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
322
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
323
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
324
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
325
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
326
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
327
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
328
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
329
+ selectorKey: SelectorKeysEnum;
330
+ };
331
+ productCode: {
332
+ theme: CMSIBCommonInterface;
333
+ font: CMSIBCommonInterface;
334
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
335
+ textColor: CMSIBCommonInterface;
336
+ bold: CMSIBCommonInterface;
337
+ italic: CMSIBCommonInterface;
338
+ linethrough: CMSIBCommonInterface;
339
+ underline: CMSIBCommonInterface;
340
+ textAlign: CMSIBCommonInterface;
341
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
342
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
343
+ borderColor: CMSIBCommonInterface;
344
+ borderStyle: CMSIBCommonInterface;
345
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
346
+ showBorder: CMSIBCommonInterface;
347
+ backgroundColor: CMSIBCommonInterface;
348
+ showShadow: CMSIBCommonInterface;
349
+ shadowColor: CMSIBCommonInterface;
350
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
351
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
352
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
353
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
354
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
355
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
356
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
357
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
358
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
359
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
360
+ selectorKey: SelectorKeysEnum;
361
+ };
362
+ productQty: {
363
+ themeDesc: {
364
+ value: string;
365
+ property: string;
366
+ propertyType: CMSElementEditTypes;
367
+ };
368
+ fontDesc: {
369
+ value: string;
370
+ property: string;
371
+ propertyType: CMSElementEditTypes;
372
+ parentRef: string;
373
+ };
374
+ fontSizeDesc: {
375
+ value: number;
376
+ unit: number;
377
+ property: string;
378
+ propertyType: CMSElementEditTypes;
379
+ parentRef: string;
380
+ };
381
+ textColorDesc: {
382
+ value: {
383
+ hex: string;
384
+ rgb: {
385
+ r: string;
386
+ g: string;
387
+ b: string;
388
+ a: number;
389
+ };
390
+ };
391
+ property: string;
392
+ propertyType: CMSElementEditTypes;
393
+ parentRef: string;
394
+ };
395
+ textHighlightDesc: {
396
+ value: {
397
+ hex: string;
398
+ rgb: {
399
+ r: string;
400
+ g: string;
401
+ b: string;
402
+ a: number;
403
+ };
404
+ };
405
+ property: string;
406
+ propertyType: CMSElementEditTypes;
407
+ };
408
+ boldDesc: {
409
+ value: string;
410
+ property: string;
411
+ propertyType: CMSElementEditTypes;
412
+ parentRef: string;
413
+ };
414
+ italicDesc: {
415
+ value: string;
416
+ property: string;
417
+ propertyType: CMSElementEditTypes;
418
+ parentRef: string;
419
+ };
420
+ linethroughDesc: {
421
+ value: string;
422
+ property: string;
423
+ propertyType: CMSElementEditTypes;
424
+ parentRef: string;
425
+ };
426
+ underlineDesc: {
427
+ value: string;
428
+ property: string;
429
+ propertyType: CMSElementEditTypes;
430
+ parentRef: string;
431
+ };
432
+ textAlignDesc: {
433
+ value: string;
434
+ property: string;
435
+ propertyType: CMSElementEditTypes;
436
+ parentRef: string;
437
+ };
438
+ characterSpacingDesc: {
439
+ value: number;
440
+ unit: number;
441
+ property: string;
442
+ propertyType: CMSElementEditTypes;
443
+ parentRef: string;
444
+ };
445
+ lineHeightDesc: {
446
+ value: number;
447
+ unit: number;
448
+ property: string;
449
+ propertyType: CMSElementEditTypes;
450
+ parentRef: string;
451
+ };
452
+ paragraphSpacingDesc: {
453
+ value: number;
454
+ unit: number;
455
+ property: string;
456
+ propertyType: CMSElementEditTypes;
457
+ parentRef: string;
458
+ };
459
+ theme: {
460
+ value: string;
461
+ property: string;
462
+ propertyType: CMSElementEditTypes;
463
+ };
464
+ font: {
465
+ value: string;
466
+ property: string;
467
+ propertyType: CMSElementEditTypes;
468
+ parentRef: string;
469
+ };
470
+ fontSize: {
471
+ value: number;
472
+ unit: number;
473
+ property: string;
474
+ propertyType: CMSElementEditTypes;
475
+ parentRef: string;
476
+ };
477
+ textColor: {
478
+ value: {
479
+ hex: string;
480
+ rgb: {
481
+ r: string;
482
+ g: string;
483
+ b: string;
484
+ a: number;
485
+ };
486
+ };
487
+ property: string;
488
+ propertyType: CMSElementEditTypes;
489
+ parentRef: string;
490
+ };
491
+ textHighlight: {
492
+ value: {
493
+ hex: string;
494
+ rgb: {
495
+ r: string;
496
+ g: string;
497
+ b: string;
498
+ a: number;
499
+ };
500
+ };
501
+ property: string;
502
+ propertyType: CMSElementEditTypes;
503
+ };
504
+ bold: {
505
+ value: string;
506
+ property: string;
507
+ propertyType: CMSElementEditTypes;
508
+ parentRef: string;
509
+ };
510
+ italic: {
511
+ value: string;
512
+ property: string;
513
+ propertyType: CMSElementEditTypes;
514
+ parentRef: string;
515
+ };
516
+ linethrough: {
517
+ value: string;
518
+ property: string;
519
+ propertyType: CMSElementEditTypes;
520
+ parentRef: string;
521
+ };
522
+ underline: {
523
+ value: string;
524
+ property: string;
525
+ propertyType: CMSElementEditTypes;
526
+ parentRef: string;
527
+ };
528
+ textAlign: {
529
+ value: string;
530
+ property: string;
531
+ propertyType: CMSElementEditTypes;
532
+ parentRef: string;
533
+ };
534
+ characterSpacing: {
535
+ value: number;
536
+ unit: number;
537
+ property: string;
538
+ propertyType: CMSElementEditTypes;
539
+ parentRef: string;
540
+ };
541
+ lineHeight: {
542
+ value: number;
543
+ unit: number;
544
+ property: string;
545
+ propertyType: CMSElementEditTypes;
546
+ parentRef: string;
547
+ };
548
+ paragraphSpacing: {
549
+ value: number;
550
+ unit: number;
551
+ property: string;
552
+ propertyType: CMSElementEditTypes;
553
+ parentRef: string;
554
+ };
555
+ borderColor: CMSIBCommonInterface;
556
+ borderStyle: CMSIBCommonInterface;
557
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
558
+ showBorder: CMSIBCommonInterface;
559
+ backgroundColor: CMSIBCommonInterface;
560
+ showShadow: CMSIBCommonInterface;
561
+ shadowColor: CMSIBCommonInterface;
562
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
563
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
564
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
565
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
566
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
567
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
568
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
569
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
570
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
571
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
572
+ selectorKey: SelectorKeysEnum;
573
+ };
574
+ productEstimatedDate: {
575
+ themeDesc: {
576
+ value: string;
577
+ property: string;
578
+ propertyType: CMSElementEditTypes;
579
+ };
580
+ fontDesc: {
581
+ value: string;
582
+ property: string;
583
+ propertyType: CMSElementEditTypes;
584
+ parentRef: string;
585
+ };
586
+ fontSizeDesc: {
587
+ value: number;
588
+ unit: number;
589
+ property: string;
590
+ propertyType: CMSElementEditTypes;
591
+ parentRef: string;
592
+ };
593
+ textColorDesc: {
594
+ value: {
595
+ hex: string;
596
+ rgb: {
597
+ r: string;
598
+ g: string;
599
+ b: string;
600
+ a: number;
601
+ };
602
+ };
603
+ property: string;
604
+ propertyType: CMSElementEditTypes;
605
+ parentRef: string;
606
+ };
607
+ textHighlightDesc: {
608
+ value: {
609
+ hex: string;
610
+ rgb: {
611
+ r: string;
612
+ g: string;
613
+ b: string;
614
+ a: number;
615
+ };
616
+ };
617
+ property: string;
618
+ propertyType: CMSElementEditTypes;
619
+ };
620
+ boldDesc: {
621
+ value: string;
622
+ property: string;
623
+ propertyType: CMSElementEditTypes;
624
+ parentRef: string;
625
+ };
626
+ italicDesc: {
627
+ value: string;
628
+ property: string;
629
+ propertyType: CMSElementEditTypes;
630
+ parentRef: string;
631
+ };
632
+ linethroughDesc: {
633
+ value: string;
634
+ property: string;
635
+ propertyType: CMSElementEditTypes;
636
+ parentRef: string;
637
+ };
638
+ underlineDesc: {
639
+ value: string;
640
+ property: string;
641
+ propertyType: CMSElementEditTypes;
642
+ parentRef: string;
643
+ };
644
+ textAlignDesc: {
645
+ value: string;
646
+ property: string;
647
+ propertyType: CMSElementEditTypes;
648
+ parentRef: string;
649
+ };
650
+ characterSpacingDesc: {
651
+ value: number;
652
+ unit: number;
653
+ property: string;
654
+ propertyType: CMSElementEditTypes;
655
+ parentRef: string;
656
+ };
657
+ lineHeightDesc: {
658
+ value: number;
659
+ unit: number;
660
+ property: string;
661
+ propertyType: CMSElementEditTypes;
662
+ parentRef: string;
663
+ };
664
+ paragraphSpacingDesc: {
665
+ value: number;
666
+ unit: number;
667
+ property: string;
668
+ propertyType: CMSElementEditTypes;
669
+ parentRef: string;
670
+ };
671
+ theme: {
672
+ value: string;
673
+ property: string;
674
+ propertyType: CMSElementEditTypes;
675
+ };
676
+ font: {
677
+ value: string;
678
+ property: string;
679
+ propertyType: CMSElementEditTypes;
680
+ parentRef: string;
681
+ };
682
+ fontSize: {
683
+ value: number;
684
+ unit: number;
685
+ property: string;
686
+ propertyType: CMSElementEditTypes;
687
+ parentRef: string;
688
+ };
689
+ textColor: {
690
+ value: {
691
+ hex: string;
692
+ rgb: {
693
+ r: string;
694
+ g: string;
695
+ b: string;
696
+ a: number;
697
+ };
698
+ };
699
+ property: string;
700
+ propertyType: CMSElementEditTypes;
701
+ parentRef: string;
702
+ };
703
+ textHighlight: {
704
+ value: {
705
+ hex: string;
706
+ rgb: {
707
+ r: string;
708
+ g: string;
709
+ b: string;
710
+ a: number;
711
+ };
712
+ };
713
+ property: string;
714
+ propertyType: CMSElementEditTypes;
715
+ };
716
+ bold: {
717
+ value: string;
718
+ property: string;
719
+ propertyType: CMSElementEditTypes;
720
+ parentRef: string;
721
+ };
722
+ italic: {
723
+ value: string;
724
+ property: string;
725
+ propertyType: CMSElementEditTypes;
726
+ parentRef: string;
727
+ };
728
+ linethrough: {
729
+ value: string;
730
+ property: string;
731
+ propertyType: CMSElementEditTypes;
732
+ parentRef: string;
733
+ };
734
+ underline: {
735
+ value: string;
736
+ property: string;
737
+ propertyType: CMSElementEditTypes;
738
+ parentRef: string;
739
+ };
740
+ textAlign: {
741
+ value: string;
742
+ property: string;
743
+ propertyType: CMSElementEditTypes;
744
+ parentRef: string;
745
+ };
746
+ characterSpacing: {
747
+ value: number;
748
+ unit: number;
749
+ property: string;
750
+ propertyType: CMSElementEditTypes;
751
+ parentRef: string;
752
+ };
753
+ lineHeight: {
754
+ value: number;
755
+ unit: number;
756
+ property: string;
757
+ propertyType: CMSElementEditTypes;
758
+ parentRef: string;
759
+ };
760
+ paragraphSpacing: {
761
+ value: number;
762
+ unit: number;
763
+ property: string;
764
+ propertyType: CMSElementEditTypes;
765
+ parentRef: string;
766
+ };
767
+ borderColor: CMSIBCommonInterface;
768
+ borderStyle: CMSIBCommonInterface;
769
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
770
+ showBorder: CMSIBCommonInterface;
771
+ backgroundColor: CMSIBCommonInterface;
772
+ showShadow: CMSIBCommonInterface;
773
+ shadowColor: CMSIBCommonInterface;
774
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
775
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
776
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
777
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
778
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
779
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
780
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
781
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
782
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
783
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
784
+ selectorKey: SelectorKeysEnum;
785
+ };
786
+ productImage: {
787
+ borderColor: CMSIBCommonInterface;
788
+ borderStyle: CMSIBCommonInterface;
789
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
790
+ showBorder: CMSIBCommonInterface;
791
+ backgroundColor: CMSIBCommonInterface;
792
+ showShadow: CMSIBCommonInterface;
793
+ shadowColor: CMSIBCommonInterface;
794
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
795
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
796
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
797
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
798
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
799
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
800
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
801
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
802
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
803
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
804
+ selectorKey: SelectorKeysEnum;
805
+ };
806
+ productPrice: {
807
+ theme: CMSIBCommonInterface;
808
+ font: CMSIBCommonInterface;
809
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
810
+ textColor: CMSIBCommonInterface;
811
+ bold: CMSIBCommonInterface;
812
+ italic: CMSIBCommonInterface;
813
+ linethrough: CMSIBCommonInterface;
814
+ underline: CMSIBCommonInterface;
815
+ textAlign: CMSIBCommonInterface;
816
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
817
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
818
+ borderColor: CMSIBCommonInterface;
819
+ borderStyle: CMSIBCommonInterface;
820
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
821
+ showBorder: CMSIBCommonInterface;
822
+ backgroundColor: CMSIBCommonInterface;
823
+ showShadow: CMSIBCommonInterface;
824
+ shadowColor: CMSIBCommonInterface;
825
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
826
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
827
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
828
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
829
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
830
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
831
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
832
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
833
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
834
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
835
+ selectorKey: SelectorKeysEnum;
836
+ };
191
837
  };
192
- primaryTextDesign: {
193
- theme: CMSIBCommonInterface;
194
- font: CMSIBCommonInterface;
195
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
196
- textColor: CMSIBCommonInterface;
197
- bold: CMSIBCommonInterface;
198
- italic: CMSIBCommonInterface;
199
- linethrough: CMSIBCommonInterface;
200
- underline: CMSIBCommonInterface;
201
- textAlign: CMSIBCommonInterface;
202
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
203
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
838
+ numberOfItems: {
839
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
840
+ themeDesc: {
841
+ value: string;
842
+ property: string;
843
+ propertyType: CMSElementEditTypes;
844
+ };
845
+ fontDesc: {
846
+ value: string;
847
+ property: string;
848
+ propertyType: CMSElementEditTypes;
849
+ parentRef: string;
850
+ };
851
+ fontSizeDesc: {
852
+ value: number;
853
+ unit: number;
854
+ property: string;
855
+ propertyType: CMSElementEditTypes;
856
+ parentRef: string;
857
+ };
858
+ textColorDesc: {
859
+ value: {
860
+ hex: string;
861
+ rgb: {
862
+ r: string;
863
+ g: string;
864
+ b: string;
865
+ a: number;
866
+ };
867
+ };
868
+ property: string;
869
+ propertyType: CMSElementEditTypes;
870
+ parentRef: string;
871
+ };
872
+ textHighlightDesc: {
873
+ value: {
874
+ hex: string;
875
+ rgb: {
876
+ r: string;
877
+ g: string;
878
+ b: string;
879
+ a: number;
880
+ };
881
+ };
882
+ property: string;
883
+ propertyType: CMSElementEditTypes;
884
+ };
885
+ boldDesc: {
886
+ value: string;
887
+ property: string;
888
+ propertyType: CMSElementEditTypes;
889
+ parentRef: string;
890
+ };
891
+ italicDesc: {
892
+ value: string;
893
+ property: string;
894
+ propertyType: CMSElementEditTypes;
895
+ parentRef: string;
896
+ };
897
+ linethroughDesc: {
898
+ value: string;
899
+ property: string;
900
+ propertyType: CMSElementEditTypes;
901
+ parentRef: string;
902
+ };
903
+ underlineDesc: {
904
+ value: string;
905
+ property: string;
906
+ propertyType: CMSElementEditTypes;
907
+ parentRef: string;
908
+ };
909
+ textAlignDesc: {
910
+ value: string;
911
+ property: string;
912
+ propertyType: CMSElementEditTypes;
913
+ parentRef: string;
914
+ };
915
+ characterSpacingDesc: {
916
+ value: number;
917
+ unit: number;
918
+ property: string;
919
+ propertyType: CMSElementEditTypes;
920
+ parentRef: string;
921
+ };
922
+ lineHeightDesc: {
923
+ value: number;
924
+ unit: number;
925
+ property: string;
926
+ propertyType: CMSElementEditTypes;
927
+ parentRef: string;
928
+ };
929
+ paragraphSpacingDesc: {
930
+ value: number;
931
+ unit: number;
932
+ property: string;
933
+ propertyType: CMSElementEditTypes;
934
+ parentRef: string;
935
+ };
936
+ theme: {
937
+ value: string;
938
+ property: string;
939
+ propertyType: CMSElementEditTypes;
940
+ };
941
+ font: {
942
+ value: string;
943
+ property: string;
944
+ propertyType: CMSElementEditTypes;
945
+ parentRef: string;
946
+ };
947
+ fontSize: {
948
+ value: number;
949
+ unit: number;
950
+ property: string;
951
+ propertyType: CMSElementEditTypes;
952
+ parentRef: string;
953
+ };
954
+ textColor: {
955
+ value: {
956
+ hex: string;
957
+ rgb: {
958
+ r: string;
959
+ g: string;
960
+ b: string;
961
+ a: number;
962
+ };
963
+ };
964
+ property: string;
965
+ propertyType: CMSElementEditTypes;
966
+ parentRef: string;
967
+ };
968
+ textHighlight: {
969
+ value: {
970
+ hex: string;
971
+ rgb: {
972
+ r: string;
973
+ g: string;
974
+ b: string;
975
+ a: number;
976
+ };
977
+ };
978
+ property: string;
979
+ propertyType: CMSElementEditTypes;
980
+ };
981
+ bold: {
982
+ value: string;
983
+ property: string;
984
+ propertyType: CMSElementEditTypes;
985
+ parentRef: string;
986
+ };
987
+ italic: {
988
+ value: string;
989
+ property: string;
990
+ propertyType: CMSElementEditTypes;
991
+ parentRef: string;
992
+ };
993
+ linethrough: {
994
+ value: string;
995
+ property: string;
996
+ propertyType: CMSElementEditTypes;
997
+ parentRef: string;
998
+ };
999
+ underline: {
1000
+ value: string;
1001
+ property: string;
1002
+ propertyType: CMSElementEditTypes;
1003
+ parentRef: string;
1004
+ };
1005
+ textAlign: {
1006
+ value: string;
1007
+ property: string;
1008
+ propertyType: CMSElementEditTypes;
1009
+ parentRef: string;
1010
+ };
1011
+ characterSpacing: {
1012
+ value: number;
1013
+ unit: number;
1014
+ property: string;
1015
+ propertyType: CMSElementEditTypes;
1016
+ parentRef: string;
1017
+ };
1018
+ lineHeight: {
1019
+ value: number;
1020
+ unit: number;
1021
+ property: string;
1022
+ propertyType: CMSElementEditTypes;
1023
+ parentRef: string;
1024
+ };
1025
+ paragraphSpacing: {
1026
+ value: number;
1027
+ unit: number;
1028
+ property: string;
1029
+ propertyType: CMSElementEditTypes;
1030
+ parentRef: string;
1031
+ };
1032
+ borderColor: CMSIBCommonInterface;
1033
+ borderStyle: CMSIBCommonInterface;
1034
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
1035
+ showBorder: CMSIBCommonInterface;
1036
+ backgroundColor: CMSIBCommonInterface;
1037
+ showShadow: CMSIBCommonInterface;
1038
+ shadowColor: CMSIBCommonInterface;
1039
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
1040
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
1041
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
1042
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
1043
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
1044
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
1045
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
1046
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
1047
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
1048
+ selectorKey: SelectorKeysEnum;
1049
+ };
1050
+ shippingCharges: {
1051
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
1052
+ themeDesc: {
1053
+ value: string;
1054
+ property: string;
1055
+ propertyType: CMSElementEditTypes;
1056
+ };
1057
+ fontDesc: {
1058
+ value: string;
1059
+ property: string;
1060
+ propertyType: CMSElementEditTypes;
1061
+ parentRef: string;
1062
+ };
1063
+ fontSizeDesc: {
1064
+ value: number;
1065
+ unit: number;
1066
+ property: string;
1067
+ propertyType: CMSElementEditTypes;
1068
+ parentRef: string;
1069
+ };
1070
+ textColorDesc: {
1071
+ value: {
1072
+ hex: string;
1073
+ rgb: {
1074
+ r: string;
1075
+ g: string;
1076
+ b: string;
1077
+ a: number;
1078
+ };
1079
+ };
1080
+ property: string;
1081
+ propertyType: CMSElementEditTypes;
1082
+ parentRef: string;
1083
+ };
1084
+ textHighlightDesc: {
1085
+ value: {
1086
+ hex: string;
1087
+ rgb: {
1088
+ r: string;
1089
+ g: string;
1090
+ b: string;
1091
+ a: number;
1092
+ };
1093
+ };
1094
+ property: string;
1095
+ propertyType: CMSElementEditTypes;
1096
+ };
1097
+ boldDesc: {
1098
+ value: string;
1099
+ property: string;
1100
+ propertyType: CMSElementEditTypes;
1101
+ parentRef: string;
1102
+ };
1103
+ italicDesc: {
1104
+ value: string;
1105
+ property: string;
1106
+ propertyType: CMSElementEditTypes;
1107
+ parentRef: string;
1108
+ };
1109
+ linethroughDesc: {
1110
+ value: string;
1111
+ property: string;
1112
+ propertyType: CMSElementEditTypes;
1113
+ parentRef: string;
1114
+ };
1115
+ underlineDesc: {
1116
+ value: string;
1117
+ property: string;
1118
+ propertyType: CMSElementEditTypes;
1119
+ parentRef: string;
1120
+ };
1121
+ textAlignDesc: {
1122
+ value: string;
1123
+ property: string;
1124
+ propertyType: CMSElementEditTypes;
1125
+ parentRef: string;
1126
+ };
1127
+ characterSpacingDesc: {
1128
+ value: number;
1129
+ unit: number;
1130
+ property: string;
1131
+ propertyType: CMSElementEditTypes;
1132
+ parentRef: string;
1133
+ };
1134
+ lineHeightDesc: {
1135
+ value: number;
1136
+ unit: number;
1137
+ property: string;
1138
+ propertyType: CMSElementEditTypes;
1139
+ parentRef: string;
1140
+ };
1141
+ paragraphSpacingDesc: {
1142
+ value: number;
1143
+ unit: number;
1144
+ property: string;
1145
+ propertyType: CMSElementEditTypes;
1146
+ parentRef: string;
1147
+ };
1148
+ theme: {
1149
+ value: string;
1150
+ property: string;
1151
+ propertyType: CMSElementEditTypes;
1152
+ };
1153
+ font: {
1154
+ value: string;
1155
+ property: string;
1156
+ propertyType: CMSElementEditTypes;
1157
+ parentRef: string;
1158
+ };
1159
+ fontSize: {
1160
+ value: number;
1161
+ unit: number;
1162
+ property: string;
1163
+ propertyType: CMSElementEditTypes;
1164
+ parentRef: string;
1165
+ };
1166
+ textColor: {
1167
+ value: {
1168
+ hex: string;
1169
+ rgb: {
1170
+ r: string;
1171
+ g: string;
1172
+ b: string;
1173
+ a: number;
1174
+ };
1175
+ };
1176
+ property: string;
1177
+ propertyType: CMSElementEditTypes;
1178
+ parentRef: string;
1179
+ };
1180
+ textHighlight: {
1181
+ value: {
1182
+ hex: string;
1183
+ rgb: {
1184
+ r: string;
1185
+ g: string;
1186
+ b: string;
1187
+ a: number;
1188
+ };
1189
+ };
1190
+ property: string;
1191
+ propertyType: CMSElementEditTypes;
1192
+ };
1193
+ bold: {
1194
+ value: string;
1195
+ property: string;
1196
+ propertyType: CMSElementEditTypes;
1197
+ parentRef: string;
1198
+ };
1199
+ italic: {
1200
+ value: string;
1201
+ property: string;
1202
+ propertyType: CMSElementEditTypes;
1203
+ parentRef: string;
1204
+ };
1205
+ linethrough: {
1206
+ value: string;
1207
+ property: string;
1208
+ propertyType: CMSElementEditTypes;
1209
+ parentRef: string;
1210
+ };
1211
+ underline: {
1212
+ value: string;
1213
+ property: string;
1214
+ propertyType: CMSElementEditTypes;
1215
+ parentRef: string;
1216
+ };
1217
+ textAlign: {
1218
+ value: string;
1219
+ property: string;
1220
+ propertyType: CMSElementEditTypes;
1221
+ parentRef: string;
1222
+ };
1223
+ characterSpacing: {
1224
+ value: number;
1225
+ unit: number;
1226
+ property: string;
1227
+ propertyType: CMSElementEditTypes;
1228
+ parentRef: string;
1229
+ };
1230
+ lineHeight: {
1231
+ value: number;
1232
+ unit: number;
1233
+ property: string;
1234
+ propertyType: CMSElementEditTypes;
1235
+ parentRef: string;
1236
+ };
1237
+ paragraphSpacing: {
1238
+ value: number;
1239
+ unit: number;
1240
+ property: string;
1241
+ propertyType: CMSElementEditTypes;
1242
+ parentRef: string;
1243
+ };
1244
+ borderColor: CMSIBCommonInterface;
1245
+ borderStyle: CMSIBCommonInterface;
1246
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
1247
+ showBorder: CMSIBCommonInterface;
1248
+ backgroundColor: CMSIBCommonInterface;
1249
+ showShadow: CMSIBCommonInterface;
1250
+ shadowColor: CMSIBCommonInterface;
1251
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
1252
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
1253
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
1254
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
1255
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
1256
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
1257
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
1258
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
1259
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
1260
+ selectorKey: SelectorKeysEnum;
1261
+ };
1262
+ tax: {
1263
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
1264
+ themeDesc: {
1265
+ value: string;
1266
+ property: string;
1267
+ propertyType: CMSElementEditTypes;
1268
+ };
1269
+ fontDesc: {
1270
+ value: string;
1271
+ property: string;
1272
+ propertyType: CMSElementEditTypes;
1273
+ parentRef: string;
1274
+ };
1275
+ fontSizeDesc: {
1276
+ value: number;
1277
+ unit: number;
1278
+ property: string;
1279
+ propertyType: CMSElementEditTypes;
1280
+ parentRef: string;
1281
+ };
1282
+ textColorDesc: {
1283
+ value: {
1284
+ hex: string;
1285
+ rgb: {
1286
+ r: string;
1287
+ g: string;
1288
+ b: string;
1289
+ a: number;
1290
+ };
1291
+ };
1292
+ property: string;
1293
+ propertyType: CMSElementEditTypes;
1294
+ parentRef: string;
1295
+ };
1296
+ textHighlightDesc: {
1297
+ value: {
1298
+ hex: string;
1299
+ rgb: {
1300
+ r: string;
1301
+ g: string;
1302
+ b: string;
1303
+ a: number;
1304
+ };
1305
+ };
1306
+ property: string;
1307
+ propertyType: CMSElementEditTypes;
1308
+ };
1309
+ boldDesc: {
1310
+ value: string;
1311
+ property: string;
1312
+ propertyType: CMSElementEditTypes;
1313
+ parentRef: string;
1314
+ };
1315
+ italicDesc: {
1316
+ value: string;
1317
+ property: string;
1318
+ propertyType: CMSElementEditTypes;
1319
+ parentRef: string;
1320
+ };
1321
+ linethroughDesc: {
1322
+ value: string;
1323
+ property: string;
1324
+ propertyType: CMSElementEditTypes;
1325
+ parentRef: string;
1326
+ };
1327
+ underlineDesc: {
1328
+ value: string;
1329
+ property: string;
1330
+ propertyType: CMSElementEditTypes;
1331
+ parentRef: string;
1332
+ };
1333
+ textAlignDesc: {
1334
+ value: string;
1335
+ property: string;
1336
+ propertyType: CMSElementEditTypes;
1337
+ parentRef: string;
1338
+ };
1339
+ characterSpacingDesc: {
1340
+ value: number;
1341
+ unit: number;
1342
+ property: string;
1343
+ propertyType: CMSElementEditTypes;
1344
+ parentRef: string;
1345
+ };
1346
+ lineHeightDesc: {
1347
+ value: number;
1348
+ unit: number;
1349
+ property: string;
1350
+ propertyType: CMSElementEditTypes;
1351
+ parentRef: string;
1352
+ };
1353
+ paragraphSpacingDesc: {
1354
+ value: number;
1355
+ unit: number;
1356
+ property: string;
1357
+ propertyType: CMSElementEditTypes;
1358
+ parentRef: string;
1359
+ };
1360
+ theme: {
1361
+ value: string;
1362
+ property: string;
1363
+ propertyType: CMSElementEditTypes;
1364
+ };
1365
+ font: {
1366
+ value: string;
1367
+ property: string;
1368
+ propertyType: CMSElementEditTypes;
1369
+ parentRef: string;
1370
+ };
1371
+ fontSize: {
1372
+ value: number;
1373
+ unit: number;
1374
+ property: string;
1375
+ propertyType: CMSElementEditTypes;
1376
+ parentRef: string;
1377
+ };
1378
+ textColor: {
1379
+ value: {
1380
+ hex: string;
1381
+ rgb: {
1382
+ r: string;
1383
+ g: string;
1384
+ b: string;
1385
+ a: number;
1386
+ };
1387
+ };
1388
+ property: string;
1389
+ propertyType: CMSElementEditTypes;
1390
+ parentRef: string;
1391
+ };
1392
+ textHighlight: {
1393
+ value: {
1394
+ hex: string;
1395
+ rgb: {
1396
+ r: string;
1397
+ g: string;
1398
+ b: string;
1399
+ a: number;
1400
+ };
1401
+ };
1402
+ property: string;
1403
+ propertyType: CMSElementEditTypes;
1404
+ };
1405
+ bold: {
1406
+ value: string;
1407
+ property: string;
1408
+ propertyType: CMSElementEditTypes;
1409
+ parentRef: string;
1410
+ };
1411
+ italic: {
1412
+ value: string;
1413
+ property: string;
1414
+ propertyType: CMSElementEditTypes;
1415
+ parentRef: string;
1416
+ };
1417
+ linethrough: {
1418
+ value: string;
1419
+ property: string;
1420
+ propertyType: CMSElementEditTypes;
1421
+ parentRef: string;
1422
+ };
1423
+ underline: {
1424
+ value: string;
1425
+ property: string;
1426
+ propertyType: CMSElementEditTypes;
1427
+ parentRef: string;
1428
+ };
1429
+ textAlign: {
1430
+ value: string;
1431
+ property: string;
1432
+ propertyType: CMSElementEditTypes;
1433
+ parentRef: string;
1434
+ };
1435
+ characterSpacing: {
1436
+ value: number;
1437
+ unit: number;
1438
+ property: string;
1439
+ propertyType: CMSElementEditTypes;
1440
+ parentRef: string;
1441
+ };
1442
+ lineHeight: {
1443
+ value: number;
1444
+ unit: number;
1445
+ property: string;
1446
+ propertyType: CMSElementEditTypes;
1447
+ parentRef: string;
1448
+ };
1449
+ paragraphSpacing: {
1450
+ value: number;
1451
+ unit: number;
1452
+ property: string;
1453
+ propertyType: CMSElementEditTypes;
1454
+ parentRef: string;
1455
+ };
1456
+ borderColor: CMSIBCommonInterface;
1457
+ borderStyle: CMSIBCommonInterface;
1458
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
1459
+ showBorder: CMSIBCommonInterface;
1460
+ backgroundColor: CMSIBCommonInterface;
1461
+ showShadow: CMSIBCommonInterface;
1462
+ shadowColor: CMSIBCommonInterface;
1463
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
1464
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
1465
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
1466
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
1467
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
1468
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
1469
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
1470
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
1471
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
204
1472
  selectorKey: SelectorKeysEnum;
205
1473
  };
206
- secondaryTextDesign: {
1474
+ taxExempt: {
1475
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
207
1476
  theme: CMSIBCommonInterface;
208
1477
  font: CMSIBCommonInterface;
209
1478
  fontSize: import("../../interfaces/global").CMSIBSizeInterface;
@@ -215,9 +1484,26 @@ export declare const getDefaultData: () => {
215
1484
  textAlign: CMSIBCommonInterface;
216
1485
  characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
217
1486
  lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
1487
+ borderColor: CMSIBCommonInterface;
1488
+ borderStyle: CMSIBCommonInterface;
1489
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
1490
+ showBorder: CMSIBCommonInterface;
1491
+ backgroundColor: CMSIBCommonInterface;
1492
+ showShadow: CMSIBCommonInterface;
1493
+ shadowColor: CMSIBCommonInterface;
1494
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
1495
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
1496
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
1497
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
1498
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
1499
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
1500
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
1501
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
1502
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
218
1503
  selectorKey: SelectorKeysEnum;
219
1504
  };
220
- totalAmountDesign: {
1505
+ couponCode: {
1506
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
221
1507
  theme: CMSIBCommonInterface;
222
1508
  font: CMSIBCommonInterface;
223
1509
  fontSize: import("../../interfaces/global").CMSIBSizeInterface;
@@ -229,9 +1515,449 @@ export declare const getDefaultData: () => {
229
1515
  textAlign: CMSIBCommonInterface;
230
1516
  characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
231
1517
  lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
1518
+ borderColor: CMSIBCommonInterface;
1519
+ borderStyle: CMSIBCommonInterface;
1520
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
1521
+ showBorder: CMSIBCommonInterface;
1522
+ backgroundColor: CMSIBCommonInterface;
1523
+ showShadow: CMSIBCommonInterface;
1524
+ shadowColor: CMSIBCommonInterface;
1525
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
1526
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
1527
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
1528
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
1529
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
1530
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
1531
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
1532
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
1533
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
1534
+ selectorKey: SelectorKeysEnum;
1535
+ };
1536
+ subTotal: {
1537
+ themeDesc: {
1538
+ value: string;
1539
+ property: string;
1540
+ propertyType: CMSElementEditTypes;
1541
+ };
1542
+ fontDesc: {
1543
+ value: string;
1544
+ property: string;
1545
+ propertyType: CMSElementEditTypes;
1546
+ parentRef: string;
1547
+ };
1548
+ fontSizeDesc: {
1549
+ value: number;
1550
+ unit: number;
1551
+ property: string;
1552
+ propertyType: CMSElementEditTypes;
1553
+ parentRef: string;
1554
+ };
1555
+ textColorDesc: {
1556
+ value: {
1557
+ hex: string;
1558
+ rgb: {
1559
+ r: string;
1560
+ g: string;
1561
+ b: string;
1562
+ a: number;
1563
+ };
1564
+ };
1565
+ property: string;
1566
+ propertyType: CMSElementEditTypes;
1567
+ parentRef: string;
1568
+ };
1569
+ textHighlightDesc: {
1570
+ value: {
1571
+ hex: string;
1572
+ rgb: {
1573
+ r: string;
1574
+ g: string;
1575
+ b: string;
1576
+ a: number;
1577
+ };
1578
+ };
1579
+ property: string;
1580
+ propertyType: CMSElementEditTypes;
1581
+ };
1582
+ boldDesc: {
1583
+ value: string;
1584
+ property: string;
1585
+ propertyType: CMSElementEditTypes;
1586
+ parentRef: string;
1587
+ };
1588
+ italicDesc: {
1589
+ value: string;
1590
+ property: string;
1591
+ propertyType: CMSElementEditTypes;
1592
+ parentRef: string;
1593
+ };
1594
+ linethroughDesc: {
1595
+ value: string;
1596
+ property: string;
1597
+ propertyType: CMSElementEditTypes;
1598
+ parentRef: string;
1599
+ };
1600
+ underlineDesc: {
1601
+ value: string;
1602
+ property: string;
1603
+ propertyType: CMSElementEditTypes;
1604
+ parentRef: string;
1605
+ };
1606
+ textAlignDesc: {
1607
+ value: string;
1608
+ property: string;
1609
+ propertyType: CMSElementEditTypes;
1610
+ parentRef: string;
1611
+ };
1612
+ characterSpacingDesc: {
1613
+ value: number;
1614
+ unit: number;
1615
+ property: string;
1616
+ propertyType: CMSElementEditTypes;
1617
+ parentRef: string;
1618
+ };
1619
+ lineHeightDesc: {
1620
+ value: number;
1621
+ unit: number;
1622
+ property: string;
1623
+ propertyType: CMSElementEditTypes;
1624
+ parentRef: string;
1625
+ };
1626
+ paragraphSpacingDesc: {
1627
+ value: number;
1628
+ unit: number;
1629
+ property: string;
1630
+ propertyType: CMSElementEditTypes;
1631
+ parentRef: string;
1632
+ };
1633
+ theme: {
1634
+ value: string;
1635
+ property: string;
1636
+ propertyType: CMSElementEditTypes;
1637
+ };
1638
+ font: {
1639
+ value: string;
1640
+ property: string;
1641
+ propertyType: CMSElementEditTypes;
1642
+ parentRef: string;
1643
+ };
1644
+ fontSize: {
1645
+ value: number;
1646
+ unit: number;
1647
+ property: string;
1648
+ propertyType: CMSElementEditTypes;
1649
+ parentRef: string;
1650
+ };
1651
+ textColor: {
1652
+ value: {
1653
+ hex: string;
1654
+ rgb: {
1655
+ r: string;
1656
+ g: string;
1657
+ b: string;
1658
+ a: number;
1659
+ };
1660
+ };
1661
+ property: string;
1662
+ propertyType: CMSElementEditTypes;
1663
+ parentRef: string;
1664
+ };
1665
+ textHighlight: {
1666
+ value: {
1667
+ hex: string;
1668
+ rgb: {
1669
+ r: string;
1670
+ g: string;
1671
+ b: string;
1672
+ a: number;
1673
+ };
1674
+ };
1675
+ property: string;
1676
+ propertyType: CMSElementEditTypes;
1677
+ };
1678
+ bold: {
1679
+ value: string;
1680
+ property: string;
1681
+ propertyType: CMSElementEditTypes;
1682
+ parentRef: string;
1683
+ };
1684
+ italic: {
1685
+ value: string;
1686
+ property: string;
1687
+ propertyType: CMSElementEditTypes;
1688
+ parentRef: string;
1689
+ };
1690
+ linethrough: {
1691
+ value: string;
1692
+ property: string;
1693
+ propertyType: CMSElementEditTypes;
1694
+ parentRef: string;
1695
+ };
1696
+ underline: {
1697
+ value: string;
1698
+ property: string;
1699
+ propertyType: CMSElementEditTypes;
1700
+ parentRef: string;
1701
+ };
1702
+ textAlign: {
1703
+ value: string;
1704
+ property: string;
1705
+ propertyType: CMSElementEditTypes;
1706
+ parentRef: string;
1707
+ };
1708
+ characterSpacing: {
1709
+ value: number;
1710
+ unit: number;
1711
+ property: string;
1712
+ propertyType: CMSElementEditTypes;
1713
+ parentRef: string;
1714
+ };
1715
+ lineHeight: {
1716
+ value: number;
1717
+ unit: number;
1718
+ property: string;
1719
+ propertyType: CMSElementEditTypes;
1720
+ parentRef: string;
1721
+ };
1722
+ paragraphSpacing: {
1723
+ value: number;
1724
+ unit: number;
1725
+ property: string;
1726
+ propertyType: CMSElementEditTypes;
1727
+ parentRef: string;
1728
+ };
1729
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
1730
+ borderColor: CMSIBCommonInterface;
1731
+ borderStyle: CMSIBCommonInterface;
1732
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
1733
+ showBorder: CMSIBCommonInterface;
1734
+ backgroundColor: CMSIBCommonInterface;
1735
+ showShadow: CMSIBCommonInterface;
1736
+ shadowColor: CMSIBCommonInterface;
1737
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
1738
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
1739
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
1740
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
1741
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
1742
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
1743
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
1744
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
1745
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
1746
+ selectorKey: SelectorKeysEnum;
1747
+ };
1748
+ total: {
1749
+ themeDesc: {
1750
+ value: string;
1751
+ property: string;
1752
+ propertyType: CMSElementEditTypes;
1753
+ };
1754
+ fontDesc: {
1755
+ value: string;
1756
+ property: string;
1757
+ propertyType: CMSElementEditTypes;
1758
+ parentRef: string;
1759
+ };
1760
+ fontSizeDesc: {
1761
+ value: number;
1762
+ unit: number;
1763
+ property: string;
1764
+ propertyType: CMSElementEditTypes;
1765
+ parentRef: string;
1766
+ };
1767
+ textColorDesc: {
1768
+ value: {
1769
+ hex: string;
1770
+ rgb: {
1771
+ r: string;
1772
+ g: string;
1773
+ b: string;
1774
+ a: number;
1775
+ };
1776
+ };
1777
+ property: string;
1778
+ propertyType: CMSElementEditTypes;
1779
+ parentRef: string;
1780
+ };
1781
+ textHighlightDesc: {
1782
+ value: {
1783
+ hex: string;
1784
+ rgb: {
1785
+ r: string;
1786
+ g: string;
1787
+ b: string;
1788
+ a: number;
1789
+ };
1790
+ };
1791
+ property: string;
1792
+ propertyType: CMSElementEditTypes;
1793
+ };
1794
+ boldDesc: {
1795
+ value: string;
1796
+ property: string;
1797
+ propertyType: CMSElementEditTypes;
1798
+ parentRef: string;
1799
+ };
1800
+ italicDesc: {
1801
+ value: string;
1802
+ property: string;
1803
+ propertyType: CMSElementEditTypes;
1804
+ parentRef: string;
1805
+ };
1806
+ linethroughDesc: {
1807
+ value: string;
1808
+ property: string;
1809
+ propertyType: CMSElementEditTypes;
1810
+ parentRef: string;
1811
+ };
1812
+ underlineDesc: {
1813
+ value: string;
1814
+ property: string;
1815
+ propertyType: CMSElementEditTypes;
1816
+ parentRef: string;
1817
+ };
1818
+ textAlignDesc: {
1819
+ value: string;
1820
+ property: string;
1821
+ propertyType: CMSElementEditTypes;
1822
+ parentRef: string;
1823
+ };
1824
+ characterSpacingDesc: {
1825
+ value: number;
1826
+ unit: number;
1827
+ property: string;
1828
+ propertyType: CMSElementEditTypes;
1829
+ parentRef: string;
1830
+ };
1831
+ lineHeightDesc: {
1832
+ value: number;
1833
+ unit: number;
1834
+ property: string;
1835
+ propertyType: CMSElementEditTypes;
1836
+ parentRef: string;
1837
+ };
1838
+ paragraphSpacingDesc: {
1839
+ value: number;
1840
+ unit: number;
1841
+ property: string;
1842
+ propertyType: CMSElementEditTypes;
1843
+ parentRef: string;
1844
+ };
1845
+ theme: {
1846
+ value: string;
1847
+ property: string;
1848
+ propertyType: CMSElementEditTypes;
1849
+ };
1850
+ font: {
1851
+ value: string;
1852
+ property: string;
1853
+ propertyType: CMSElementEditTypes;
1854
+ parentRef: string;
1855
+ };
1856
+ fontSize: {
1857
+ value: number;
1858
+ unit: number;
1859
+ property: string;
1860
+ propertyType: CMSElementEditTypes;
1861
+ parentRef: string;
1862
+ };
1863
+ textColor: {
1864
+ value: {
1865
+ hex: string;
1866
+ rgb: {
1867
+ r: string;
1868
+ g: string;
1869
+ b: string;
1870
+ a: number;
1871
+ };
1872
+ };
1873
+ property: string;
1874
+ propertyType: CMSElementEditTypes;
1875
+ parentRef: string;
1876
+ };
1877
+ textHighlight: {
1878
+ value: {
1879
+ hex: string;
1880
+ rgb: {
1881
+ r: string;
1882
+ g: string;
1883
+ b: string;
1884
+ a: number;
1885
+ };
1886
+ };
1887
+ property: string;
1888
+ propertyType: CMSElementEditTypes;
1889
+ };
1890
+ bold: {
1891
+ value: string;
1892
+ property: string;
1893
+ propertyType: CMSElementEditTypes;
1894
+ parentRef: string;
1895
+ };
1896
+ italic: {
1897
+ value: string;
1898
+ property: string;
1899
+ propertyType: CMSElementEditTypes;
1900
+ parentRef: string;
1901
+ };
1902
+ linethrough: {
1903
+ value: string;
1904
+ property: string;
1905
+ propertyType: CMSElementEditTypes;
1906
+ parentRef: string;
1907
+ };
1908
+ underline: {
1909
+ value: string;
1910
+ property: string;
1911
+ propertyType: CMSElementEditTypes;
1912
+ parentRef: string;
1913
+ };
1914
+ textAlign: {
1915
+ value: string;
1916
+ property: string;
1917
+ propertyType: CMSElementEditTypes;
1918
+ parentRef: string;
1919
+ };
1920
+ characterSpacing: {
1921
+ value: number;
1922
+ unit: number;
1923
+ property: string;
1924
+ propertyType: CMSElementEditTypes;
1925
+ parentRef: string;
1926
+ };
1927
+ lineHeight: {
1928
+ value: number;
1929
+ unit: number;
1930
+ property: string;
1931
+ propertyType: CMSElementEditTypes;
1932
+ parentRef: string;
1933
+ };
1934
+ paragraphSpacing: {
1935
+ value: number;
1936
+ unit: number;
1937
+ property: string;
1938
+ propertyType: CMSElementEditTypes;
1939
+ parentRef: string;
1940
+ };
1941
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
1942
+ borderColor: CMSIBCommonInterface;
1943
+ borderStyle: CMSIBCommonInterface;
1944
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
1945
+ showBorder: CMSIBCommonInterface;
1946
+ backgroundColor: CMSIBCommonInterface;
1947
+ showShadow: CMSIBCommonInterface;
1948
+ shadowColor: CMSIBCommonInterface;
1949
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
1950
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
1951
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
1952
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
1953
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
1954
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
1955
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
1956
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
1957
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
232
1958
  selectorKey: SelectorKeysEnum;
233
1959
  };
234
- primaryButtonDesign: {
1960
+ checkoutButton: {
235
1961
  selectorKey: SelectorKeysEnum;
236
1962
  defaultState: {
237
1963
  theme: CMSIBCommonInterface;
@@ -254,6 +1980,7 @@ export declare const getDefaultData: () => {
254
1980
  shadowColor: CMSIBCommonInterface;
255
1981
  blur: import("../../interfaces/global").CMSIBSizeInterface;
256
1982
  spread: import("../../interfaces/global").CMSIBSizeInterface;
1983
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
257
1984
  angle: import("../../interfaces/global").CMSIBSizeInterface;
258
1985
  borderRadius: import("../../interfaces/global").CSSPaddingValues;
259
1986
  exposure: import("../../interfaces/global").CMSIBSizeInterface;
@@ -284,6 +2011,7 @@ export declare const getDefaultData: () => {
284
2011
  shadowColor: CMSIBCommonInterface;
285
2012
  blur: import("../../interfaces/global").CMSIBSizeInterface;
286
2013
  spread: import("../../interfaces/global").CMSIBSizeInterface;
2014
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
287
2015
  angle: import("../../interfaces/global").CMSIBSizeInterface;
288
2016
  borderRadius: import("../../interfaces/global").CSSPaddingValues;
289
2017
  exposure: import("../../interfaces/global").CMSIBSizeInterface;
@@ -294,7 +2022,7 @@ export declare const getDefaultData: () => {
294
2022
  selectorKey: SelectorKeysEnum;
295
2023
  };
296
2024
  };
297
- secondaryButtonDesign: {
2025
+ requestQuoteButton: {
298
2026
  selectorKey: SelectorKeysEnum;
299
2027
  hoverState: {
300
2028
  theme: CMSIBCommonInterface;
@@ -317,6 +2045,7 @@ export declare const getDefaultData: () => {
317
2045
  shadowColor: CMSIBCommonInterface;
318
2046
  blur: import("../../interfaces/global").CMSIBSizeInterface;
319
2047
  spread: import("../../interfaces/global").CMSIBSizeInterface;
2048
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
320
2049
  angle: import("../../interfaces/global").CMSIBSizeInterface;
321
2050
  borderRadius: import("../../interfaces/global").CSSPaddingValues;
322
2051
  exposure: import("../../interfaces/global").CMSIBSizeInterface;
@@ -347,6 +2076,7 @@ export declare const getDefaultData: () => {
347
2076
  shadowColor: CMSIBCommonInterface;
348
2077
  blur: import("../../interfaces/global").CMSIBSizeInterface;
349
2078
  spread: import("../../interfaces/global").CMSIBSizeInterface;
2079
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
350
2080
  angle: import("../../interfaces/global").CMSIBSizeInterface;
351
2081
  borderRadius: import("../../interfaces/global").CSSPaddingValues;
352
2082
  exposure: import("../../interfaces/global").CMSIBSizeInterface;