@sc-360-v2/storefront-cms-library 0.5.15 → 0.5.16

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