@sc-360-v2/storefront-cms-library 0.4.50 → 0.4.52

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.
Files changed (39) hide show
  1. package/dist/allocationDetails.scss +2253 -2247
  2. package/dist/builder.js +1 -1
  3. package/dist/cart-details.scss +3207 -3207
  4. package/dist/cart.scss +271 -269
  5. package/dist/cartAttributes.scss +932 -935
  6. package/dist/checkout.scss +6496 -6460
  7. package/dist/dropdownTemplate.scss +4 -1
  8. package/dist/filters.scss +2450 -2418
  9. package/dist/functions.scss +91 -1
  10. package/dist/icon-list.scss +277 -268
  11. package/dist/language-selector.scss +702 -528
  12. package/dist/layouter.scss +307 -294
  13. package/dist/login.scss +1605 -1473
  14. package/dist/menu-v2.scss +752 -730
  15. package/dist/my-templates.scss +464 -463
  16. package/dist/myTemplates.scss +5 -5
  17. package/dist/order-status.scss +1877 -1856
  18. package/dist/product-image-allocation.scss +1365 -0
  19. package/dist/product-image.scss +2 -1
  20. package/dist/product-sizechart.scss +1826 -1826
  21. package/dist/profile.scss +23 -20
  22. package/dist/repeater-embla-controls.scss +6 -0
  23. package/dist/repeater.scss +920 -915
  24. package/dist/search.scss +361 -296
  25. package/dist/section.scss +210 -209
  26. package/dist/static-global.scss +5 -0
  27. package/dist/types/builder/tools/element-edit/bundle.d.ts +13 -2
  28. package/dist/types/builder/tools/element-edit/cart.d.ts +1 -0
  29. package/dist/types/builder/tools/element-edit/common.d.ts +5 -0
  30. package/dist/types/builder/tools/element-edit/icon-list.d.ts +17 -0
  31. package/dist/types/builder/tools/element-edit/language-menu.d.ts +1 -0
  32. package/dist/types/builder/tools/element-edit/login.d.ts +1 -0
  33. package/dist/types/builder/tools/element-edit/orderStatus.d.ts +39 -0
  34. package/dist/types/builder/tools/element-edit/repeater.d.ts +2 -0
  35. package/dist/types/builder/tools/element-edit/resetPassword.d.ts +2 -1
  36. package/dist/types/builder/tools/element-edit/search.d.ts +28 -0
  37. package/dist/types/builder/tools/element-edit/userElements.d.ts +48 -88
  38. package/dist/user-elements.scss +2555 -2471
  39. package/package.json +1 -1
@@ -23,6 +23,18 @@ export interface selfDesignInterface {
23
23
  spread: CMSIBCommonInterface;
24
24
  angle: CMSIBCommonInterface;
25
25
  borderRadius: CMSIBCommonInterface;
26
+ itemGap: CMSIBCommonInterface;
27
+ theme: CMSIBCommonInterface;
28
+ font: CMSIBCommonInterface;
29
+ fontSize: CMSIBCommonInterface;
30
+ textColor: CMSIBCommonInterface;
31
+ bold: CMSIBCommonInterface;
32
+ italic: CMSIBCommonInterface;
33
+ linethrough: CMSIBCommonInterface;
34
+ underline: CMSIBCommonInterface;
35
+ textAlign: CMSIBCommonInterface;
36
+ characterSpacing: CMSIBCommonInterface;
37
+ lineHeight: CMSIBCommonInterface;
26
38
  };
27
39
  searchIcon: {
28
40
  selectorKey: string;
@@ -31,8 +43,23 @@ export interface selfDesignInterface {
31
43
  iconColor: CMSIBCommonInterface;
32
44
  icon: CMSIBCommonInterface;
33
45
  };
46
+ searchBarFocus: {
47
+ selectorKey: string;
48
+ backgroundColor: CMSIBCommonInterface;
49
+ borderColor: CMSIBCommonInterface;
50
+ borderStyle: CMSIBCommonInterface;
51
+ borderPerSlide: CMSIBCommonInterface;
52
+ showBorder: CMSIBCommonInterface;
53
+ showShadow: CMSIBCommonInterface;
54
+ shadowColor: CMSIBCommonInterface;
55
+ blur: CMSIBCommonInterface;
56
+ spread: CMSIBCommonInterface;
57
+ angle: CMSIBCommonInterface;
58
+ borderRadius: CMSIBCommonInterface;
59
+ };
34
60
  placeholderText: {
35
61
  selectorKey: string;
62
+ theme: CMSIBCommonInterface;
36
63
  font: CMSIBCommonInterface;
37
64
  fontSize: CMSIBCommonInterface;
38
65
  textColor: CMSIBCommonInterface;
@@ -51,6 +78,7 @@ export declare enum searchSelectorKeysEnum {
51
78
  SEARCHBAR = "searchBar",
52
79
  PLACEHOLDER_TEXT = "placeholderText",
53
80
  SEARCH_ICON = "searchIcon",
81
+ SEARCH_BAR_FOCUS = "searchBarFocus",
54
82
  MINI_CART_TEXT = "miniSearchText",
55
83
  DROPDOWN_DISPLAY_STYLE = "dropdownDisplayStyle"
56
84
  }
@@ -207,6 +207,7 @@ export declare const getDefaultData: () => {
207
207
  userInfoDesign: {
208
208
  selectorKey: SelectorKeysEnum;
209
209
  fillAndOpacity: {
210
+ itemGap: import("../../interfaces/global").CMSIBSizeInterface;
210
211
  showDivider: {
211
212
  value: boolean;
212
213
  parentRef: string;
@@ -731,94 +732,6 @@ export declare const getDefaultData: () => {
731
732
  };
732
733
  dropdownStyle: {
733
734
  selectorKey: SelectorKeysEnum;
734
- layoutSettings: {
735
- selectorKey: SelectorKeysEnum;
736
- width: {
737
- value: string;
738
- unit: number;
739
- };
740
- height: {
741
- value: string;
742
- unit: number;
743
- isReadOnly: boolean;
744
- property?: any;
745
- propertyType?: any;
746
- parentRef?: string | undefined;
747
- };
748
- margin: import("../../interfaces/global").CSSPaddingValues | undefined;
749
- padding: any;
750
- whenClicked: {
751
- value: string;
752
- property: string;
753
- propertyType: CMSElementEditTypes;
754
- };
755
- showSearchText: {
756
- value: boolean;
757
- property: string;
758
- propertyType: CMSElementEditTypes;
759
- };
760
- searchText: {
761
- value: string;
762
- property: string;
763
- propertyType: CMSElementEditTypes;
764
- };
765
- searchPlaceholderText: {
766
- value: string;
767
- property: string;
768
- propertyType: CMSElementEditTypes;
769
- };
770
- showNoOfItems: {
771
- value: boolean;
772
- property: string;
773
- propertyType: CMSElementEditTypes;
774
- };
775
- positionType: CMSIBCommonInterface | undefined;
776
- pinTo: CMSIBCommonInterface | undefined;
777
- displayStyle: {
778
- value: string;
779
- propertyType: CMSElementEditTypes;
780
- };
781
- alignment: {
782
- value: string;
783
- property: string;
784
- propertyType: CMSElementEditTypes;
785
- };
786
- menuType: {
787
- value: string;
788
- propertyType: CMSElementEditTypes;
789
- };
790
- flagStyle: {
791
- value: string;
792
- propertyType: CMSElementEditTypes;
793
- };
794
- flagSize: {
795
- value: number;
796
- property: string;
797
- unit: number;
798
- propertyType: CMSElementEditTypes;
799
- };
800
- showFlags: {
801
- value: boolean;
802
- propertyType: CMSElementEditTypes;
803
- };
804
- itemPadding: any;
805
- itemSpacing: {
806
- value: string;
807
- unit: number;
808
- property: string;
809
- propertyType: CMSElementEditTypes;
810
- };
811
- gapBetweenItems: {
812
- value: string;
813
- unit: number;
814
- property: string;
815
- propertyType: CMSElementEditTypes;
816
- };
817
- placeholderText: {
818
- value: string;
819
- propertyType: CMSElementEditTypes;
820
- };
821
- };
822
735
  widgetStyle: {
823
736
  showDivider: {
824
737
  value: boolean;
@@ -840,6 +753,49 @@ export declare const getDefaultData: () => {
840
753
  propertyType?: any;
841
754
  isReadOnly?: boolean | undefined;
842
755
  };
756
+ theme: CMSIBCommonInterface;
757
+ font: CMSIBCommonInterface;
758
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
759
+ textColor: CMSIBCommonInterface;
760
+ bold: CMSIBCommonInterface;
761
+ italic: CMSIBCommonInterface;
762
+ linethrough: CMSIBCommonInterface;
763
+ underline: CMSIBCommonInterface;
764
+ textAlign: CMSIBCommonInterface;
765
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
766
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
767
+ backgroundColor: CMSIBCommonInterface;
768
+ selectorKey: SelectorKeysEnum;
769
+ borderColor: CMSIBCommonInterface;
770
+ borderStyle: CMSIBCommonInterface;
771
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
772
+ showBorder: CMSIBCommonInterface;
773
+ showShadow: CMSIBCommonInterface;
774
+ shadowColor: CMSIBCommonInterface;
775
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
776
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
777
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
778
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
779
+ padding: any;
780
+ itemGap: import("../../interfaces/global").CMSIBSizeInterface;
781
+ };
782
+ widgetPlaceholderText: {
783
+ padding: any;
784
+ theme: CMSIBCommonInterface;
785
+ font: CMSIBCommonInterface;
786
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
787
+ textColor: CMSIBCommonInterface;
788
+ bold: CMSIBCommonInterface;
789
+ italic: CMSIBCommonInterface;
790
+ linethrough: CMSIBCommonInterface;
791
+ underline: CMSIBCommonInterface;
792
+ textAlign: CMSIBCommonInterface;
793
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
794
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
795
+ backgroundColor: CMSIBCommonInterface;
796
+ selectorKey: SelectorKeysEnum;
797
+ };
798
+ widgetDropdown: {
843
799
  selectorKey: SelectorKeysEnum;
844
800
  backgroundColor: CMSIBCommonInterface;
845
801
  borderColor: CMSIBCommonInterface;
@@ -852,6 +808,8 @@ export declare const getDefaultData: () => {
852
808
  spread: import("../../interfaces/global").CMSIBSizeInterface;
853
809
  angle: import("../../interfaces/global").CMSIBSizeInterface;
854
810
  borderRadius: import("../../interfaces/global").CSSPaddingValues;
811
+ padding: any;
812
+ itemGap: import("../../interfaces/global").CMSIBSizeInterface;
855
813
  };
856
814
  itemStyle: {
857
815
  selectorKey: SelectorKeysEnum;
@@ -879,6 +837,8 @@ export declare const getDefaultData: () => {
879
837
  textAlign: CMSIBCommonInterface;
880
838
  characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
881
839
  lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
840
+ padding: any;
841
+ itemGap: import("../../interfaces/global").CMSIBSizeInterface;
882
842
  };
883
843
  hoverState: {
884
844
  selectorKey: SelectorKeysEnum;