@sc-360-v2/storefront-cms-library 0.4.51 → 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 (38) 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 +36 -4
  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/static-global.scss +5 -0
  26. package/dist/types/builder/tools/element-edit/bundle.d.ts +13 -2
  27. package/dist/types/builder/tools/element-edit/cart.d.ts +1 -0
  28. package/dist/types/builder/tools/element-edit/common.d.ts +5 -0
  29. package/dist/types/builder/tools/element-edit/icon-list.d.ts +17 -0
  30. package/dist/types/builder/tools/element-edit/language-menu.d.ts +1 -0
  31. package/dist/types/builder/tools/element-edit/login.d.ts +1 -0
  32. package/dist/types/builder/tools/element-edit/orderStatus.d.ts +39 -0
  33. package/dist/types/builder/tools/element-edit/repeater.d.ts +2 -0
  34. package/dist/types/builder/tools/element-edit/resetPassword.d.ts +2 -1
  35. package/dist/types/builder/tools/element-edit/search.d.ts +28 -0
  36. package/dist/types/builder/tools/element-edit/userElements.d.ts +48 -88
  37. package/dist/user-elements.scss +2555 -2471
  38. package/package.json +1 -1
@@ -285,3 +285,8 @@ $data: (
285
285
  transition: all 400ms ease-in;
286
286
  display: flex;
287
287
  }
288
+ // Error Message
289
+ .error_msg {
290
+ font-size: 12px;
291
+ color: var(--_error-500);
292
+ }
@@ -1,4 +1,4 @@
1
- import { CMSElementEditTypes } from "../../enums";
1
+ import { CMSCSSUnitTypesEnums, CMSElementEditTypes } from "../../enums";
2
2
  import { CMSIBCommonInterface } from "../../interfaces/global";
3
3
  import { ButtonSelectorKeysEnum } from "./button";
4
4
  import { CMSElementEditPopupInterface } from "./common";
@@ -240,6 +240,17 @@ export declare const getDefaultData: () => {
240
240
  selectorKey: SelectorKeysEnum;
241
241
  };
242
242
  productNameDesign: {
243
+ textOverflow: {
244
+ value: boolean;
245
+ property: string;
246
+ propertyType: CMSElementEditTypes;
247
+ };
248
+ numberOfDisplayedLines: {
249
+ unit: CMSCSSUnitTypesEnums;
250
+ value: number;
251
+ property: string;
252
+ propertyType: CMSElementEditTypes;
253
+ };
243
254
  borderColor: CMSIBCommonInterface;
244
255
  borderStyle: CMSIBCommonInterface;
245
256
  borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
@@ -1278,7 +1289,7 @@ export declare const getDefaultData: () => {
1278
1289
  dividerWeight: {
1279
1290
  value: string;
1280
1291
  property: string;
1281
- unit: import("../../enums").CMSCSSUnitTypesEnums;
1292
+ unit: CMSCSSUnitTypesEnums;
1282
1293
  propertyType: CMSElementEditTypes;
1283
1294
  };
1284
1295
  dividerColor: {
@@ -26,6 +26,7 @@ export interface selfDesignInterface {
26
26
  iconSize: CMSIBCommonInterface;
27
27
  iconColor: CMSIBCommonInterface;
28
28
  icon: CMSIBCommonInterface;
29
+ strokeWidth?: CMSIBCommonInterface | any;
29
30
  };
30
31
  miniCartText: {
31
32
  selectorKey: string;
@@ -25,6 +25,8 @@ export interface CMSElementEditPopupLayoutInterface {
25
25
  dividerBetweenListItems?: CMSIBSizeInterface;
26
26
  maxItemsToDisplay?: CMSIBSizeInterface;
27
27
  dataConnector?: any;
28
+ fitOptions?: any;
29
+ objectPosition?: any;
28
30
  }
29
31
  export interface CMSElementEditPopupDesignInterface {
30
32
  backgroundColor: CMSIBCommonInterface;
@@ -59,6 +61,9 @@ export interface CMSElementEditPopupDesignInterface {
59
61
  characterSpacing: CMSIBSizeInterface;
60
62
  paragraphSpacing: CMSIBSizeInterface;
61
63
  lineHeight: CMSIBSizeInterface;
64
+ textTransform?: any;
65
+ textOverflow?: any;
66
+ numberOfDisplayedLines?: any;
62
67
  fontDesc: CMSIBCommonInterface;
63
68
  themeDesc: CMSIBCommonInterface;
64
69
  fontSizeDesc: CMSIBSizeInterface;
@@ -37,6 +37,18 @@ export declare const getDefaultData: () => {
37
37
  value: number;
38
38
  unit: CMSCSSUnitTypesEnums;
39
39
  };
40
+ rowGap: {
41
+ property: string;
42
+ propertyType: CMSElementEditTypes;
43
+ value: number;
44
+ unit: CMSCSSUnitTypesEnums;
45
+ };
46
+ columnGap: {
47
+ property: string;
48
+ propertyType: CMSElementEditTypes;
49
+ value: number;
50
+ unit: CMSCSSUnitTypesEnums;
51
+ };
40
52
  justifyContent: {
41
53
  property: string;
42
54
  propertyType: CMSElementEditTypes;
@@ -47,6 +59,11 @@ export declare const getDefaultData: () => {
47
59
  propertyType: CMSElementEditTypes;
48
60
  value: string;
49
61
  };
62
+ flexWrap: {
63
+ property: string;
64
+ propertyType: CMSElementEditTypes;
65
+ value: string;
66
+ };
50
67
  };
51
68
  design: {
52
69
  selectorKey: SelectorKeysEnum;
@@ -98,6 +98,7 @@ export declare enum selfEnums {
98
98
  MINI_CART_TEXT = "miniSearchText",
99
99
  DROPDOWN_DISPLAY_STYLE = "dropdownDisplayStyle",
100
100
  WIDGET_STYLE = "widgetStyle",
101
+ WIDGET_PLACEHOLDER_TEXT = "widgetPlaceholderText",
101
102
  WIDGET_DROPDOWN = "widgetDropdown",
102
103
  OPTION_STYLE = "optionStyle",
103
104
  HOVER_STATE = "hover",
@@ -3,6 +3,7 @@ export interface LoginEditPopupInterface extends CMSElementEditPopupInterface {
3
3
  }
4
4
  interface selfLayoutInterface {
5
5
  selectorKey: string;
6
+ [key: string]: any;
6
7
  }
7
8
  export interface selfDesignInterface {
8
9
  selectorKey: string;
@@ -22,6 +22,7 @@ export declare enum orderSelectorKeysEnum {
22
22
  ORDER_NAME = "orderName",
23
23
  ORDER_ID = "orderId",
24
24
  ORDER_DATE = "orderDate",
25
+ SHIPPING_METHOD = "shippingMethod",
25
26
  QUICK_ACTIONS = "quickActions",
26
27
  CONTAINER = "container",
27
28
  QUICK_HEADER = "quickHeader",
@@ -471,6 +472,44 @@ export declare const getDefaultData: () => {
471
472
  shadows: import("../../interfaces/global").CMSIBSizeInterface;
472
473
  selectorKey: orderSelectorKeysEnum;
473
474
  };
475
+ shippingMethod: {
476
+ padding: any;
477
+ itemGap: {
478
+ value: CMSCSSUnitTypesEnums;
479
+ unit: CMSCSSUnitTypesEnums;
480
+ property: string;
481
+ propertyType: CMSElementEditTypes;
482
+ };
483
+ theme: import("../../interfaces/global").CMSIBCommonInterface;
484
+ font: import("../../interfaces/global").CMSIBCommonInterface;
485
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
486
+ textColor: import("../../interfaces/global").CMSIBCommonInterface;
487
+ bold: import("../../interfaces/global").CMSIBCommonInterface;
488
+ italic: import("../../interfaces/global").CMSIBCommonInterface;
489
+ linethrough: import("../../interfaces/global").CMSIBCommonInterface;
490
+ underline: import("../../interfaces/global").CMSIBCommonInterface;
491
+ textAlign: import("../../interfaces/global").CMSIBCommonInterface;
492
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
493
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
494
+ backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
495
+ margin: import("../../interfaces/global").CSSPaddingValues | undefined;
496
+ borderColor: import("../../interfaces/global").CMSIBCommonInterface;
497
+ borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
498
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
499
+ showBorder: import("../../interfaces/global").CMSIBCommonInterface;
500
+ showShadow: import("../../interfaces/global").CMSIBCommonInterface;
501
+ shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
502
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
503
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
504
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
505
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
506
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
507
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
508
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
509
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
510
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
511
+ selectorKey: orderSelectorKeysEnum;
512
+ };
474
513
  };
475
514
  quickActions: {
476
515
  selectorKey: orderSelectorKeysEnum;
@@ -8,6 +8,8 @@ interface selfLayoutInterface {
8
8
  value: RepeaterDisplayStyleType;
9
9
  };
10
10
  itemGap: Pick<CMSIBCommonInterface, "property" | "propertyType"> & PaddingProps;
11
+ rowGap: Pick<CMSIBCommonInterface, "property" | "propertyType"> & PaddingProps;
12
+ columnGap: Pick<CMSIBCommonInterface, "property" | "propertyType"> & PaddingProps;
11
13
  itemGapList: Pick<CMSIBCommonInterface, "property" | "propertyType"> & PaddingProps;
12
14
  justifyContent: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
13
15
  value: JustifyContentValue;
@@ -12,6 +12,7 @@ export declare enum resetPasswordSelectorKeysEnum {
12
12
  LAYOUT = "layout",
13
13
  DESIGN = "design",
14
14
  WIDGET = "widget",
15
+ WIDGET_DETAILS = "widgetDetails",
15
16
  FIELD_ITEMS = "fieldItems",
16
17
  FORM = "form",
17
18
  LABEL = "label",
@@ -24,7 +25,7 @@ export declare enum resetPasswordSelectorKeysEnum {
24
25
  TITLE = "title",
25
26
  DESCRIPTION = "description",
26
27
  RESET_BUTTON = "resetButton",
27
- GO_TO_BACK_LOGIN_BUTTON = "goToBackLoginButton",
28
+ GO_BACK_TO_LOGIN = "goBackToLogin",
28
29
  ACTIONS = "actions",
29
30
  PASSWORD_ICON = "passwordIcon",
30
31
  FIELD_ICON = "fieldIcon"
@@ -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;