@sc-360-v2/storefront-cms-library 0.4.28 → 0.4.30
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.
- package/dist/add-products-tab.scss +163 -36
- package/dist/builder.js +1 -1
- package/dist/bulk-order-pad.scss +6 -0
- package/dist/bundle copy.scss +2805 -0
- package/dist/bundle.scss +1632 -1614
- package/dist/buyForHeaders.scss +35 -15
- package/dist/buyForPopup.scss +19 -5
- package/dist/default-dropdown.scss +226 -0
- package/dist/filters.scss +78 -20
- package/dist/language-selector.scss +25 -1
- package/dist/modal.scss +8 -0
- package/dist/multi-select-dropdown.scss +23 -13
- package/dist/order-status.scss +1 -1
- package/dist/product-image.scss +61 -3
- package/dist/quick-order-pad.scss +49 -46
- package/dist/repeater.scss +9 -4
- package/dist/review-cart.scss +5 -3
- package/dist/shipping-payments.scss +475 -187
- package/dist/types/builder/enums/data-connectors.d.ts +0 -1
- package/dist/types/builder/tools/element-edit/addProductsTab.d.ts +28 -12
- package/dist/types/builder/tools/element-edit/bundle.d.ts +837 -4
- package/dist/types/builder/tools/element-edit/bundleDetails.d.ts +868 -84
- package/dist/types/builder/tools/element-edit/filters.d.ts +8 -1
- package/dist/types/builder/tools/element-edit/imageInstance.d.ts +33 -0
- package/dist/types/builder/tools/element-edit/product-image.d.ts +1 -0
- package/dist/types/builder/tools/element-edit/variantPicker.d.ts +1 -6
- package/dist/types/website/constants/data-connectors.d.ts +0 -4
- package/dist/website.js +1 -1
- package/dist/widget.scss +1 -0
- package/package.json +1 -1
|
@@ -15,7 +15,6 @@ export declare enum dataConnectorapis {
|
|
|
15
15
|
MARCHANDISER_SETS = "MARCHANDISER_SETS",
|
|
16
16
|
BUNDLES = "BUNDLES",
|
|
17
17
|
BUNLES_BY_ID = "BUNLES_BY_ID",
|
|
18
|
-
BUNDLE_BY_TYPE = "BUNDLE_BY_TYPE",
|
|
19
18
|
PRODUCT_BUNDLE_DETAILS = "PRODUCT_BUNDLE_DETAILS",
|
|
20
19
|
CATEGORY_BUNDLE_DETAILS = "CATEGORY_BUNDLE_DETAILS",
|
|
21
20
|
CATEGORY_GROUPS = "CATEGORY_GROUPS",
|
|
@@ -22,6 +22,7 @@ export declare enum SelectorKeysEnum {
|
|
|
22
22
|
PRODUCT_CARD_DESCRIPTION = "productCardDescription",
|
|
23
23
|
PRODUCT_CARD_PRICE = "productCardPrice",
|
|
24
24
|
PRODUCT_DETAILS = "productDetails",
|
|
25
|
+
PRODUCT_DETAILS_WIDGET = "productDetailsWidget",
|
|
25
26
|
PRODUCT_TITLE = "productTitle",
|
|
26
27
|
PRODUCT_DESCRIPTION = "productDescription",
|
|
27
28
|
PRODUCT_PRICE = "productPrice",
|
|
@@ -883,6 +884,31 @@ export declare const getDefaultData: () => {
|
|
|
883
884
|
};
|
|
884
885
|
productDetails: {
|
|
885
886
|
selectorKey: SelectorKeysEnum;
|
|
887
|
+
productDetailsWidget: {
|
|
888
|
+
padding: any;
|
|
889
|
+
itemGap: {
|
|
890
|
+
value: CMSCSSUnitTypesEnums;
|
|
891
|
+
unit: CMSCSSUnitTypesEnums;
|
|
892
|
+
property: string;
|
|
893
|
+
propertyType: CMSElementEditTypes;
|
|
894
|
+
};
|
|
895
|
+
borderColor: CMSIBCommonInterface;
|
|
896
|
+
borderStyle: CMSIBCommonInterface;
|
|
897
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
898
|
+
showBorder: CMSIBCommonInterface;
|
|
899
|
+
showShadow: CMSIBCommonInterface;
|
|
900
|
+
shadowColor: CMSIBCommonInterface;
|
|
901
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
902
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
903
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
904
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
905
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
906
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
907
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
908
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
909
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
910
|
+
selectorKey: SelectorKeysEnum;
|
|
911
|
+
};
|
|
886
912
|
productTitle: {
|
|
887
913
|
padding: any;
|
|
888
914
|
borderColor: CMSIBCommonInterface;
|
|
@@ -1068,12 +1094,7 @@ export declare const getDefaultData: () => {
|
|
|
1068
1094
|
property: string;
|
|
1069
1095
|
propertyType: CMSElementEditTypes;
|
|
1070
1096
|
};
|
|
1071
|
-
itemPadding:
|
|
1072
|
-
value: number;
|
|
1073
|
-
unit: number;
|
|
1074
|
-
property: string;
|
|
1075
|
-
propertyType: CMSElementEditTypes;
|
|
1076
|
-
};
|
|
1097
|
+
itemPadding: any;
|
|
1077
1098
|
itemSpacing: {
|
|
1078
1099
|
value: string;
|
|
1079
1100
|
property: string;
|
|
@@ -1109,12 +1130,7 @@ export declare const getDefaultData: () => {
|
|
|
1109
1130
|
property: string;
|
|
1110
1131
|
propertyType: CMSElementEditTypes;
|
|
1111
1132
|
};
|
|
1112
|
-
itemPadding:
|
|
1113
|
-
value: number;
|
|
1114
|
-
unit: number;
|
|
1115
|
-
property: string;
|
|
1116
|
-
propertyType: CMSElementEditTypes;
|
|
1117
|
-
};
|
|
1133
|
+
itemPadding: any;
|
|
1118
1134
|
itemSpacing: {
|
|
1119
1135
|
value: string;
|
|
1120
1136
|
property: string;
|