@sc-360-v2/storefront-cms-library 0.3.35 → 0.3.36
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-order.scss +22 -8
- package/dist/builder.js +1 -1
- package/dist/cart-details.scss +14 -1
- package/dist/cart.scss +1 -4
- package/dist/cartAttributes.scss +191 -0
- package/dist/cartDropdownOverlay.scss +74 -72
- package/dist/customization-tree.scss +13 -3
- package/dist/loader.scss +55 -0
- package/dist/modal.scss +15 -4
- package/dist/overflow-module.scss +63 -0
- package/dist/section.scss +4 -0
- package/dist/types/builder/interfaces/global.d.ts +6 -0
- package/dist/types/builder/tools/element-edit/buyForWithTab.d.ts +11 -10
- package/dist/types/builder/tools/element-edit/common.d.ts +7 -0
- package/dist/types/builder/tools/element-edit/tabsV2.d.ts +11 -10
- package/package.json +1 -1
|
@@ -22,16 +22,6 @@ declare enum SelectorKeysEnum {
|
|
|
22
22
|
}
|
|
23
23
|
export declare const getDefaultData: () => {
|
|
24
24
|
layout: {
|
|
25
|
-
selectorKey: SelectorKeysEnum;
|
|
26
|
-
width: {
|
|
27
|
-
[key: string]: any;
|
|
28
|
-
} | undefined;
|
|
29
|
-
height: import("../../interfaces/global").CMSIBSizeInterface | undefined;
|
|
30
|
-
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
31
|
-
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
32
|
-
overflowContent: CMSIBCommonInterface | undefined;
|
|
33
|
-
scrollDirection: CMSIBCommonInterface | undefined;
|
|
34
|
-
displayScrollbar: CMSIBCommonInterface | undefined;
|
|
35
25
|
positionType: CMSIBCommonInterface | undefined;
|
|
36
26
|
pinTo: CMSIBCommonInterface | undefined;
|
|
37
27
|
tabPosition: {
|
|
@@ -89,6 +79,17 @@ export declare const getDefaultData: () => {
|
|
|
89
79
|
property: string;
|
|
90
80
|
propertyType: CMSElementEditTypes;
|
|
91
81
|
};
|
|
82
|
+
overflowContent: CMSIBCommonInterface | undefined;
|
|
83
|
+
scrollDirection: CMSIBCommonInterface | undefined;
|
|
84
|
+
displayScrollbar: CMSIBCommonInterface | undefined;
|
|
85
|
+
maxHeight: import("../../interfaces/global").CMSIBSizeInterface | undefined;
|
|
86
|
+
selectorKey: SelectorKeysEnum;
|
|
87
|
+
width: {
|
|
88
|
+
[key: string]: any;
|
|
89
|
+
} | undefined;
|
|
90
|
+
height: import("../../interfaces/global").CMSIBSizeInterface | undefined;
|
|
91
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
92
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
92
93
|
};
|
|
93
94
|
design: {
|
|
94
95
|
selectorKey: SelectorKeysEnum;
|
|
@@ -7,6 +7,7 @@ export interface CMSElementEditPopupLayoutInterface {
|
|
|
7
7
|
};
|
|
8
8
|
height?: CMSIBSizeInterface;
|
|
9
9
|
minHeight?: CMSIBSizeInterface;
|
|
10
|
+
maxHeight?: CMSIBSizeInterface;
|
|
10
11
|
margin?: CSSPaddingValues;
|
|
11
12
|
padding?: CSSPaddingValues;
|
|
12
13
|
overflowContent?: CMSIBCommonInterface;
|
|
@@ -103,3 +104,9 @@ export interface CMSElementEditPopupInterface<L = CMSElementEditPopupLayoutInter
|
|
|
103
104
|
dataConnector?: any;
|
|
104
105
|
}
|
|
105
106
|
export declare const cssInputInstances: CMSElementEditPopupLayoutInterface & CMSElementEditPopupDesignInterface;
|
|
107
|
+
export declare const overflowDefaultSchema: {
|
|
108
|
+
overflowContent: CMSIBCommonInterface | undefined;
|
|
109
|
+
scrollDirection: CMSIBCommonInterface | undefined;
|
|
110
|
+
displayScrollbar: CMSIBCommonInterface | undefined;
|
|
111
|
+
maxHeight: CMSIBSizeInterface | undefined;
|
|
112
|
+
};
|
|
@@ -13,16 +13,6 @@ declare enum SelectorKeysEnum {
|
|
|
13
13
|
}
|
|
14
14
|
export declare const getDefaultData: () => {
|
|
15
15
|
layout: {
|
|
16
|
-
selectorKey: SelectorKeysEnum;
|
|
17
|
-
width: {
|
|
18
|
-
[key: string]: any;
|
|
19
|
-
} | undefined;
|
|
20
|
-
height: import("../../interfaces/global").CMSIBSizeInterface | undefined;
|
|
21
|
-
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
22
|
-
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
23
|
-
overflowContent: CMSIBCommonInterface | undefined;
|
|
24
|
-
scrollDirection: CMSIBCommonInterface | undefined;
|
|
25
|
-
displayScrollbar: CMSIBCommonInterface | undefined;
|
|
26
16
|
positionType: CMSIBCommonInterface | undefined;
|
|
27
17
|
pinTo: CMSIBCommonInterface | undefined;
|
|
28
18
|
tabPosition: {
|
|
@@ -80,6 +70,17 @@ export declare const getDefaultData: () => {
|
|
|
80
70
|
property: string;
|
|
81
71
|
propertyType: CMSElementEditTypes;
|
|
82
72
|
};
|
|
73
|
+
overflowContent: CMSIBCommonInterface | undefined;
|
|
74
|
+
scrollDirection: CMSIBCommonInterface | undefined;
|
|
75
|
+
displayScrollbar: CMSIBCommonInterface | undefined;
|
|
76
|
+
maxHeight: import("../../interfaces/global").CMSIBSizeInterface | undefined;
|
|
77
|
+
selectorKey: SelectorKeysEnum;
|
|
78
|
+
width: {
|
|
79
|
+
[key: string]: any;
|
|
80
|
+
} | undefined;
|
|
81
|
+
height: import("../../interfaces/global").CMSIBSizeInterface | undefined;
|
|
82
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
83
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
83
84
|
};
|
|
84
85
|
design: {
|
|
85
86
|
selectorKey: SelectorKeysEnum;
|