@sc-360-v2/storefront-cms-library 0.4.29 → 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 +2 -1
- package/dist/builder.js +1 -1
- package/dist/bundle copy.scss +2805 -0
- package/dist/bundle.scss +1632 -1614
- package/dist/buyForHeaders.scss +24 -10
- package/dist/buyForPopup.scss +19 -5
- package/dist/language-selector.scss +25 -1
- 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/shipping-payments.scss +5 -4
- package/dist/types/builder/enums/data-connectors.d.ts +0 -1
- package/dist/types/builder/tools/element-edit/bundle.d.ts +64 -26
- package/dist/types/builder/tools/element-edit/bundleDetails.d.ts +868 -84
- 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/website/constants/data-connectors.d.ts +0 -4
- package/dist/website.js +1 -1
- package/package.json +1 -1
|
@@ -21,10 +21,25 @@ export declare enum SelectorKeysEnum {
|
|
|
21
21
|
TILE_CARD_IMAGE_DESIGN = "tileCardImageDesign",
|
|
22
22
|
LIST_VIEW_CARD_DESIGN = "listViewCardDesign",
|
|
23
23
|
BUNDLE_TAG_DESIGN = "bundleTagDesign",
|
|
24
|
+
DIVIDER = "divider",
|
|
24
25
|
DEFAULT_STATE = "defaultState"
|
|
25
26
|
}
|
|
26
27
|
export declare const getDefaultData: () => {
|
|
27
28
|
layout: {
|
|
29
|
+
onHover: {
|
|
30
|
+
value: string;
|
|
31
|
+
propertyType: CMSElementEditTypes;
|
|
32
|
+
};
|
|
33
|
+
fitOptions: {
|
|
34
|
+
value: string;
|
|
35
|
+
propert: string;
|
|
36
|
+
propertyType: CMSElementEditTypes;
|
|
37
|
+
};
|
|
38
|
+
objectPosition: {
|
|
39
|
+
value: string;
|
|
40
|
+
propert: string;
|
|
41
|
+
propertyType: CMSElementEditTypes;
|
|
42
|
+
};
|
|
28
43
|
selectorKey: SelectorKeysEnum;
|
|
29
44
|
width: {
|
|
30
45
|
value: string;
|
|
@@ -40,6 +55,11 @@ export declare const getDefaultData: () => {
|
|
|
40
55
|
};
|
|
41
56
|
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
42
57
|
padding: any;
|
|
58
|
+
overflowItems: {
|
|
59
|
+
value: string;
|
|
60
|
+
property: string;
|
|
61
|
+
propertyType: CMSElementEditTypes;
|
|
62
|
+
};
|
|
43
63
|
overflowContent: CMSIBCommonInterface | undefined;
|
|
44
64
|
scrollDirection: CMSIBCommonInterface | undefined;
|
|
45
65
|
displayScrollbar: CMSIBCommonInterface | undefined;
|
|
@@ -55,15 +75,6 @@ export declare const getDefaultData: () => {
|
|
|
55
75
|
property: string;
|
|
56
76
|
propertyType: CMSElementEditTypes;
|
|
57
77
|
};
|
|
58
|
-
displayStyle: {
|
|
59
|
-
value: string;
|
|
60
|
-
propertyType: CMSElementEditTypes;
|
|
61
|
-
};
|
|
62
|
-
itemsPerSlide: {
|
|
63
|
-
value: number;
|
|
64
|
-
property: string;
|
|
65
|
-
propertyType: CMSElementEditTypes;
|
|
66
|
-
};
|
|
67
78
|
scrollType: {
|
|
68
79
|
value: string;
|
|
69
80
|
property: string;
|
|
@@ -74,6 +85,11 @@ export declare const getDefaultData: () => {
|
|
|
74
85
|
property: string;
|
|
75
86
|
propertyType: CMSElementEditTypes;
|
|
76
87
|
};
|
|
88
|
+
overflowSlides: {
|
|
89
|
+
value: string;
|
|
90
|
+
property: string;
|
|
91
|
+
propertyType: CMSElementEditTypes;
|
|
92
|
+
};
|
|
77
93
|
allowAutoScroll: {
|
|
78
94
|
value: boolean;
|
|
79
95
|
property: string;
|
|
@@ -89,6 +105,16 @@ export declare const getDefaultData: () => {
|
|
|
89
105
|
property: string;
|
|
90
106
|
propertyType: CMSElementEditTypes;
|
|
91
107
|
};
|
|
108
|
+
itemsPerSlide: {
|
|
109
|
+
value: number;
|
|
110
|
+
property: string;
|
|
111
|
+
propertyType: CMSElementEditTypes;
|
|
112
|
+
};
|
|
113
|
+
itemsPerRow: {
|
|
114
|
+
value: number;
|
|
115
|
+
property: string;
|
|
116
|
+
propertyType: CMSElementEditTypes;
|
|
117
|
+
};
|
|
92
118
|
containerHeight: {
|
|
93
119
|
value: number;
|
|
94
120
|
property: string;
|
|
@@ -141,28 +167,17 @@ export declare const getDefaultData: () => {
|
|
|
141
167
|
unit: number;
|
|
142
168
|
propertyType: CMSElementEditTypes;
|
|
143
169
|
};
|
|
144
|
-
|
|
145
|
-
value: boolean;
|
|
170
|
+
imageHeight: {
|
|
146
171
|
property: string;
|
|
147
|
-
|
|
172
|
+
value: string;
|
|
173
|
+
unit: number;
|
|
174
|
+
propertyType?: any;
|
|
175
|
+
isReadOnly?: boolean | undefined;
|
|
176
|
+
parentRef?: string | undefined;
|
|
148
177
|
};
|
|
149
178
|
};
|
|
150
179
|
design: {
|
|
151
180
|
selectorKey: SelectorKeysEnum;
|
|
152
|
-
widgetStyle: {
|
|
153
|
-
selectorKey: SelectorKeysEnum;
|
|
154
|
-
backgroundColor: CMSIBCommonInterface;
|
|
155
|
-
borderColor: CMSIBCommonInterface;
|
|
156
|
-
borderStyle: CMSIBCommonInterface;
|
|
157
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
158
|
-
showBorder: CMSIBCommonInterface;
|
|
159
|
-
showShadow: CMSIBCommonInterface;
|
|
160
|
-
shadowColor: CMSIBCommonInterface;
|
|
161
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
162
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
163
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
164
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
165
|
-
};
|
|
166
181
|
headingDesign: {
|
|
167
182
|
borderColor: CMSIBCommonInterface;
|
|
168
183
|
borderStyle: CMSIBCommonInterface;
|
|
@@ -427,6 +442,29 @@ export declare const getDefaultData: () => {
|
|
|
427
442
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
428
443
|
selectorKey: SelectorKeysEnum;
|
|
429
444
|
};
|
|
445
|
+
divider: {
|
|
446
|
+
showDivider: {
|
|
447
|
+
value: boolean;
|
|
448
|
+
parentRef: string;
|
|
449
|
+
property?: any;
|
|
450
|
+
propertyType?: any;
|
|
451
|
+
isReadOnly?: boolean | undefined;
|
|
452
|
+
};
|
|
453
|
+
dividerWeight: {
|
|
454
|
+
value: string;
|
|
455
|
+
property: string;
|
|
456
|
+
unit: import("../../enums").CMSCSSUnitTypesEnums;
|
|
457
|
+
propertyType: CMSElementEditTypes;
|
|
458
|
+
};
|
|
459
|
+
dividerColor: {
|
|
460
|
+
property: string;
|
|
461
|
+
parentRef: string;
|
|
462
|
+
value?: any;
|
|
463
|
+
propertyType?: any;
|
|
464
|
+
isReadOnly?: boolean | undefined;
|
|
465
|
+
};
|
|
466
|
+
selectorKey: SelectorKeysEnum;
|
|
467
|
+
};
|
|
430
468
|
bundleTabs: {
|
|
431
469
|
selectorKey: SelectorKeysEnum;
|
|
432
470
|
widgetStyle: {
|