@sc-360-v2/storefront-cms-library 0.5.55 → 0.5.58

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.
@@ -471,36 +471,243 @@ export declare const getDefaultData: () => {
471
471
  selectButtonDesign: {
472
472
  selectorKey: SelectorKeysEnum;
473
473
  selectedState: {
474
- borderColor: CMSIBCommonInterface;
475
- borderStyle: CMSIBCommonInterface;
476
- borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
477
- showBorder: CMSIBCommonInterface;
478
- backgroundColor: CMSIBCommonInterface;
479
- showShadow: CMSIBCommonInterface;
480
- shadowColor: CMSIBCommonInterface;
481
- blur: import("../../interfaces/global").CMSIBSizeInterface;
482
- spread: import("../../interfaces/global").CMSIBSizeInterface;
483
- angle: import("../../interfaces/global").CMSIBSizeInterface;
484
- borderRadius: import("../../interfaces/global").CSSPaddingValues;
474
+ buttonText: {
475
+ value: string;
476
+ property: string;
477
+ propertyType: CMSElementEditTypes;
478
+ };
479
+ backgroundColor: {
480
+ parentRef: string;
481
+ value?: any;
482
+ property?: any;
483
+ propertyType?: any;
484
+ isReadOnly?: boolean | undefined;
485
+ };
486
+ borderColor: {
487
+ parentRef: string;
488
+ value?: any;
489
+ property?: any;
490
+ propertyType?: any;
491
+ isReadOnly?: boolean | undefined;
492
+ };
493
+ borderStyle: {
494
+ parentRef: string;
495
+ value?: any;
496
+ property?: any;
497
+ propertyType?: any;
498
+ isReadOnly?: boolean | undefined;
499
+ };
500
+ borderPerSlide: {
501
+ parentRef: string;
502
+ isAll: boolean;
503
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
504
+ property: string;
505
+ iscss?: boolean | undefined;
506
+ propertyType?: any;
507
+ };
508
+ showBorder: {
509
+ value: boolean;
510
+ parentRef: string;
511
+ property?: any;
512
+ propertyType?: any;
513
+ isReadOnly?: boolean | undefined;
514
+ };
515
+ showShadow: {
516
+ parentRef: string;
517
+ value?: any;
518
+ property?: any;
519
+ propertyType?: any;
520
+ isReadOnly?: boolean | undefined;
521
+ };
522
+ shadowColor: {
523
+ parentRef: string;
524
+ value?: any;
525
+ property?: any;
526
+ propertyType?: any;
527
+ isReadOnly?: boolean | undefined;
528
+ };
529
+ blur: {
530
+ parentRef: string;
531
+ unit?: string | number | undefined;
532
+ value?: any;
533
+ property?: any;
534
+ propertyType?: any;
535
+ isReadOnly?: boolean | undefined;
536
+ };
537
+ spread: {
538
+ parentRef: string;
539
+ unit?: string | number | undefined;
540
+ value?: any;
541
+ property?: any;
542
+ propertyType?: any;
543
+ isReadOnly?: boolean | undefined;
544
+ };
545
+ angle: {
546
+ parentRef: string;
547
+ unit?: string | number | undefined;
548
+ value?: any;
549
+ property?: any;
550
+ propertyType?: any;
551
+ isReadOnly?: boolean | undefined;
552
+ };
553
+ borderRadius: {
554
+ parentRef: string;
555
+ isAll: boolean;
556
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
557
+ property: string;
558
+ iscss?: boolean | undefined;
559
+ propertyType?: any;
560
+ };
561
+ font: {
562
+ parentRef: string;
563
+ value?: any;
564
+ property?: any;
565
+ propertyType?: any;
566
+ isReadOnly?: boolean | undefined;
567
+ };
568
+ fontSize: {
569
+ parentRef: string;
570
+ unit?: string | number | undefined;
571
+ value?: any;
572
+ property?: any;
573
+ propertyType?: any;
574
+ isReadOnly?: boolean | undefined;
575
+ };
576
+ textColor: {
577
+ parentRef: string;
578
+ value?: any;
579
+ property?: any;
580
+ propertyType?: any;
581
+ isReadOnly?: boolean | undefined;
582
+ };
583
+ bold: {
584
+ value: string;
585
+ parentRef: string;
586
+ property?: any;
587
+ propertyType?: any;
588
+ isReadOnly?: boolean | undefined;
589
+ };
590
+ italic: {
591
+ parentRef: string;
592
+ value?: any;
593
+ property?: any;
594
+ propertyType?: any;
595
+ isReadOnly?: boolean | undefined;
596
+ };
597
+ linethrough: {
598
+ parentRef: string;
599
+ value?: any;
600
+ property?: any;
601
+ propertyType?: any;
602
+ isReadOnly?: boolean | undefined;
603
+ };
604
+ underline: {
605
+ parentRef: string;
606
+ value?: any;
607
+ property?: any;
608
+ propertyType?: any;
609
+ isReadOnly?: boolean | undefined;
610
+ };
611
+ textAlign: {
612
+ parentRef: string;
613
+ value?: any;
614
+ property?: any;
615
+ propertyType?: any;
616
+ isReadOnly?: boolean | undefined;
617
+ };
618
+ characterSpacing: {
619
+ parentRef: string;
620
+ unit?: string | number | undefined;
621
+ value?: any;
622
+ property?: any;
623
+ propertyType?: any;
624
+ isReadOnly?: boolean | undefined;
625
+ };
626
+ lineHeight: {
627
+ parentRef: string;
628
+ unit?: string | number | undefined;
629
+ value?: any;
630
+ property?: any;
631
+ propertyType?: any;
632
+ isReadOnly?: boolean | undefined;
633
+ };
634
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
635
+ showIcon: {
636
+ parentRef: string;
637
+ value?: any;
638
+ property?: any;
639
+ propertyType?: any;
640
+ isReadOnly?: boolean | undefined;
641
+ };
642
+ iconSize: {
643
+ parentRef: string;
644
+ unit?: string | number | undefined;
645
+ value?: any;
646
+ property?: any;
647
+ propertyType?: any;
648
+ isReadOnly?: boolean | undefined;
649
+ };
650
+ iconColor: {
651
+ parentRef: string;
652
+ value?: any;
653
+ property?: any;
654
+ propertyType?: any;
655
+ isReadOnly?: boolean | undefined;
656
+ };
657
+ strokeWidth: import("../../interfaces/global").CMSIBSizeInterface;
658
+ textTransform: {
659
+ value: string;
660
+ property: string;
661
+ propertyType: CMSElementEditTypes;
662
+ };
663
+ buttonStyle: {
664
+ parentRef: string;
665
+ propertyType: CMSElementEditTypes;
666
+ };
667
+ iconPadding: {
668
+ value: number;
669
+ property: string;
670
+ parentRef: string;
671
+ propertyType: CMSElementEditTypes;
672
+ };
673
+ iconPosition: {
674
+ parentRef: string;
675
+ propertyType: CMSElementEditTypes;
676
+ };
677
+ iconAndTextSpacing: {
678
+ property: string;
679
+ unit: number;
680
+ parentRef: string;
681
+ propertyType: CMSElementEditTypes;
682
+ };
683
+ alignment: {
684
+ property: string;
685
+ parentRef: string;
686
+ propertyType: CMSElementEditTypes;
687
+ };
688
+ buttonType: {
689
+ value: string;
690
+ propertyType: CMSElementEditTypes;
691
+ };
692
+ width: {
693
+ value: string;
694
+ unit: number;
695
+ };
696
+ padding: any;
485
697
  exposure: import("../../interfaces/global").CMSIBSizeInterface;
486
698
  contrast: import("../../interfaces/global").CMSIBSizeInterface;
487
699
  saturation: import("../../interfaces/global").CMSIBSizeInterface;
488
700
  highlights: import("../../interfaces/global").CMSIBSizeInterface;
489
701
  shadows: import("../../interfaces/global").CMSIBSizeInterface;
490
702
  theme: CMSIBCommonInterface;
491
- font: CMSIBCommonInterface;
492
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
493
- textColor: CMSIBCommonInterface;
494
- bold: CMSIBCommonInterface;
495
- italic: CMSIBCommonInterface;
496
- linethrough: CMSIBCommonInterface;
497
- underline: CMSIBCommonInterface;
498
- textAlign: CMSIBCommonInterface;
499
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
500
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
501
703
  selectorKey: SelectorKeysEnum;
502
704
  };
503
705
  hoverState: {
706
+ buttonText: {
707
+ value: string;
708
+ property: string;
709
+ propertyType: CMSElementEditTypes;
710
+ };
504
711
  backgroundColor: {
505
712
  parentRef: string;
506
713
  value?: any;
@@ -696,11 +903,6 @@ export declare const getDefaultData: () => {
696
903
  parentRef: string;
697
904
  propertyType: CMSElementEditTypes;
698
905
  };
699
- buttonText: {
700
- value: string;
701
- property: string;
702
- propertyType: CMSElementEditTypes;
703
- };
704
906
  iconPadding: {
705
907
  value: number;
706
908
  property: string;
@@ -1005,6 +1207,11 @@ export declare const getDefaultData: () => {
1005
1207
  selectorKey: SelectorKeysEnum;
1006
1208
  };
1007
1209
  hoverState: {
1210
+ buttonText: {
1211
+ value: string;
1212
+ property: string;
1213
+ propertyType: CMSElementEditTypes;
1214
+ };
1008
1215
  backgroundColor: {
1009
1216
  parentRef: string;
1010
1217
  value?: any;
@@ -1200,11 +1407,6 @@ export declare const getDefaultData: () => {
1200
1407
  parentRef: string;
1201
1408
  propertyType: CMSElementEditTypes;
1202
1409
  };
1203
- buttonText: {
1204
- value: string;
1205
- property: string;
1206
- propertyType: CMSElementEditTypes;
1207
- };
1208
1410
  iconPadding: {
1209
1411
  value: number;
1210
1412
  property: string;
@@ -457,6 +457,39 @@ export declare const getDefaultData: () => {
457
457
  };
458
458
  breakUpDetails: {
459
459
  padding: any;
460
+ textOverflow: {
461
+ value: boolean;
462
+ property: string;
463
+ propertyType: CMSElementEditTypes;
464
+ };
465
+ numberOfDisplayedLines: {
466
+ unit: CMSCSSUnitTypesEnums;
467
+ value: number;
468
+ property: string;
469
+ propertyType: CMSElementEditTypes;
470
+ };
471
+ textTransformDesc: {
472
+ value: string;
473
+ property: string;
474
+ propertyType: CMSElementEditTypes;
475
+ };
476
+ wordWrapDesc: {
477
+ value: string;
478
+ property: string;
479
+ propertyType: CMSElementEditTypes;
480
+ };
481
+ wordBreakDesc: {
482
+ value: string;
483
+ property: string;
484
+ propertyType: CMSElementEditTypes;
485
+ };
486
+ textTransform: {
487
+ value: string;
488
+ property: string;
489
+ propertyType: CMSElementEditTypes;
490
+ };
491
+ wordWrap: import("../../interfaces/global").CMSIBCommonInterface;
492
+ wordBreak: import("../../interfaces/global").CMSIBCommonInterface;
460
493
  themeDesc: {
461
494
  value: string;
462
495
  property: string;
@@ -1,3 +1,4 @@
1
+ import { AlignItemsValue, JustifyContentValue } from "../../../global/types";
1
2
  import { CMSIBCommonInterface } from "../../interfaces/global";
2
3
  import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
4
  interface selfLayoutInterface {
@@ -26,6 +27,12 @@ interface selfLayoutInterface {
26
27
  afterLoginDynamicLabel2: CMSIBCommonInterface;
27
28
  textAvatarSize: CMSIBCommonInterface;
28
29
  alignment: CMSIBCommonInterface;
30
+ justifyContent: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
31
+ value: JustifyContentValue;
32
+ };
33
+ alignItems: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
34
+ value: AlignItemsValue;
35
+ };
29
36
  }
30
37
  interface selfContentInterface {
31
38
  selectorKey: string;
@@ -177,6 +177,24 @@ export declare const getDefaultData: () => {
177
177
  iconSize: import("../../interfaces/global").CMSIBSizeInterface;
178
178
  iconColor: CMSIBCommonInterface;
179
179
  strokeWidth: import("../../interfaces/global").CMSIBSizeInterface;
180
+ textOverflow: {
181
+ value: boolean;
182
+ property: string;
183
+ propertyType: CMSElementEditTypes;
184
+ };
185
+ numberOfDisplayedLines: {
186
+ unit: CMSCSSUnitTypesEnums;
187
+ value: number;
188
+ property: string;
189
+ propertyType: CMSElementEditTypes;
190
+ };
191
+ textTransform: {
192
+ value: string;
193
+ property: string;
194
+ propertyType: CMSElementEditTypes;
195
+ };
196
+ wordWrap: CMSIBCommonInterface;
197
+ wordBreak: CMSIBCommonInterface;
180
198
  theme: CMSIBCommonInterface;
181
199
  backgroundColor: CMSIBCommonInterface;
182
200
  showBorder: CMSIBCommonInterface;
@@ -11,6 +11,9 @@ export interface VideoControlInterface {
11
11
  selectorKey?: string;
12
12
  autoplay?: CMSIBCommonInterface;
13
13
  showControls?: ControlInterface;
14
+ muted?: CMSIBCommonInterface;
15
+ allowFullscreen?: CMSIBCommonInterface;
16
+ showMoreOptions?: CMSIBCommonInterface;
14
17
  positionType?: CMSIBCommonInterface;
15
18
  loopVideo?: CMSIBCommonInterface;
16
19
  loopCount?: CMSIBCommonInterface;
@@ -113,6 +116,18 @@ export declare const getDefaultData: () => {
113
116
  value: string;
114
117
  propertyType: CMSElementEditTypes;
115
118
  };
119
+ muted: {
120
+ value: boolean;
121
+ propertyType: CMSElementEditTypes;
122
+ };
123
+ allowFullscreen: {
124
+ value: boolean;
125
+ propertyType: CMSElementEditTypes;
126
+ };
127
+ showMoreOptions: {
128
+ value: boolean;
129
+ propertyType: CMSElementEditTypes;
130
+ };
116
131
  loopVideo: {
117
132
  value: boolean;
118
133
  propertyType: CMSElementEditTypes;