@sc-360-v2/storefront-cms-library 0.3.56 → 0.3.57
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/builder.js +1 -1
- package/dist/cart-summary.scss +6 -1
- package/dist/checkout.scss +5299 -403
- package/dist/employee-bulk-order.scss +26 -4
- package/dist/icon-list.scss +117 -29
- package/dist/modal.scss +2 -2
- package/dist/section.scss +25 -24
- package/dist/shipping-payments.scss +761 -653
- package/dist/stack.scss +4 -3
- package/dist/types/builder/elements/form-builder/index.d.ts +1 -0
- package/dist/types/builder/interfaces/global.d.ts +1 -1
- package/dist/types/builder/tools/element-edit/checkout.d.ts +1935 -541
- package/dist/types/builder/tools/element-edit/icon-list.d.ts +53 -1
- package/dist/types/helper/helper-functions copy.d.ts +7 -0
- package/package.json +1 -1
|
@@ -20,16 +20,49 @@ export declare const getDefaultData: () => {
|
|
|
20
20
|
} | undefined;
|
|
21
21
|
height: import("../../interfaces/global").CMSIBSizeInterface | undefined;
|
|
22
22
|
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
23
|
-
padding:
|
|
23
|
+
padding: {
|
|
24
|
+
value: number;
|
|
25
|
+
isAll?: boolean | undefined;
|
|
26
|
+
sides?: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides | undefined;
|
|
27
|
+
property?: string | undefined;
|
|
28
|
+
iscss?: boolean | undefined;
|
|
29
|
+
propertyType?: any;
|
|
30
|
+
};
|
|
24
31
|
overflowContent: CMSIBCommonInterface | undefined;
|
|
25
32
|
scrollDirection: CMSIBCommonInterface | undefined;
|
|
26
33
|
displayScrollbar: CMSIBCommonInterface | undefined;
|
|
27
34
|
positionType: CMSIBCommonInterface | undefined;
|
|
28
35
|
pinTo: CMSIBCommonInterface | undefined;
|
|
36
|
+
direction: {
|
|
37
|
+
value: string;
|
|
38
|
+
property: string;
|
|
39
|
+
propertyType: CMSElementEditTypes;
|
|
40
|
+
};
|
|
41
|
+
itemGap: {
|
|
42
|
+
property: string;
|
|
43
|
+
propertyType: CMSElementEditTypes;
|
|
44
|
+
value: number;
|
|
45
|
+
unit: CMSCSSUnitTypesEnums;
|
|
46
|
+
};
|
|
47
|
+
justifyContent: {
|
|
48
|
+
property: string;
|
|
49
|
+
propertyType: CMSElementEditTypes;
|
|
50
|
+
value: string;
|
|
51
|
+
};
|
|
52
|
+
alignItems: {
|
|
53
|
+
property: string;
|
|
54
|
+
propertyType: CMSElementEditTypes;
|
|
55
|
+
value: string;
|
|
56
|
+
};
|
|
29
57
|
};
|
|
30
58
|
design: {
|
|
31
59
|
selectorKey: SelectorKeysEnum;
|
|
32
60
|
list: {
|
|
61
|
+
dividerPosition: {
|
|
62
|
+
value: string;
|
|
63
|
+
property: string;
|
|
64
|
+
propertyType: CMSElementEditTypes;
|
|
65
|
+
};
|
|
33
66
|
showDivider: {
|
|
34
67
|
value: boolean;
|
|
35
68
|
parentRef: string;
|
|
@@ -63,6 +96,13 @@ export declare const getDefaultData: () => {
|
|
|
63
96
|
propertyType?: any;
|
|
64
97
|
isReadOnly?: boolean | undefined;
|
|
65
98
|
};
|
|
99
|
+
dividerBorderRadius: {
|
|
100
|
+
property: string;
|
|
101
|
+
isAll: boolean;
|
|
102
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
103
|
+
iscss?: boolean | undefined;
|
|
104
|
+
propertyType?: any;
|
|
105
|
+
};
|
|
66
106
|
listGap: {
|
|
67
107
|
value: number;
|
|
68
108
|
unit: CMSCSSUnitTypesEnums;
|
|
@@ -199,6 +239,13 @@ export declare const getDefaultData: () => {
|
|
|
199
239
|
propertyType?: any;
|
|
200
240
|
isReadOnly?: boolean | undefined;
|
|
201
241
|
};
|
|
242
|
+
dividerBorderRadius: {
|
|
243
|
+
property: string;
|
|
244
|
+
isAll: boolean;
|
|
245
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
246
|
+
iscss?: boolean | undefined;
|
|
247
|
+
propertyType?: any;
|
|
248
|
+
};
|
|
202
249
|
selectorKey: SelectorKeysEnum;
|
|
203
250
|
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
204
251
|
itemGap: {
|
|
@@ -207,6 +254,11 @@ export declare const getDefaultData: () => {
|
|
|
207
254
|
property: string;
|
|
208
255
|
propertyType: CMSElementEditTypes;
|
|
209
256
|
};
|
|
257
|
+
verticalAlignment: {
|
|
258
|
+
value: string;
|
|
259
|
+
property: string;
|
|
260
|
+
propertyType: CMSElementEditTypes;
|
|
261
|
+
};
|
|
210
262
|
};
|
|
211
263
|
};
|
|
212
264
|
content: {
|