@sc-360-v2/storefront-cms-library 0.2.97 → 0.2.98
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/button.scss +1 -1
- package/dist/buy-for-tab.scss +8 -7
- package/dist/icon-list.scss +80 -16
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/menu-v2.scss +695 -0
- package/dist/tab-v2.scss +8 -7
- package/dist/types/builder/tools/element-edit/amountEstimator.d.ts +6 -1
- package/dist/types/builder/tools/element-edit/icon-list.d.ts +73 -7
- package/dist/types/builder/tools/element-edit/menu_v2.d.ts +4 -0
- package/dist/widget.scss +1 -0
- package/package.json +1 -1
package/dist/tab-v2.scss
CHANGED
|
@@ -446,15 +446,16 @@ $tabBodyWrapper: #{$tabBody}__wrapper;
|
|
|
446
446
|
// width: max-content;
|
|
447
447
|
|
|
448
448
|
font-family: var(
|
|
449
|
-
|
|
450
|
-
var(
|
|
451
|
-
--_sf-tbs-hr-ft-fy,
|
|
449
|
+
--_sf-tbs-sd-ft-fy,
|
|
452
450
|
var(
|
|
453
|
-
--
|
|
454
|
-
var(
|
|
451
|
+
--_sf-tbs-hr-ft-fy,
|
|
452
|
+
var(
|
|
453
|
+
--_ctm-mob-tbs-dn-ts-dt-se-ft-fy,
|
|
454
|
+
var(--_ctm-tab-tbs-dn-ts-dt-se-ft-fy, var(--_ctm-tbs-dn-ts-dt-se-ft-fy))
|
|
455
|
+
)
|
|
455
456
|
)
|
|
456
|
-
)
|
|
457
|
-
|
|
457
|
+
),
|
|
458
|
+
sans-serif;
|
|
458
459
|
font-size: var(
|
|
459
460
|
--_sf-tbs-sd-ft-sz,
|
|
460
461
|
var(
|
|
@@ -124,6 +124,10 @@ interface selfDesignInterface {
|
|
|
124
124
|
selectorKey: string;
|
|
125
125
|
[key: string]: any;
|
|
126
126
|
};
|
|
127
|
+
widgetStyle: {
|
|
128
|
+
selectorKey: string;
|
|
129
|
+
[key: string]: any;
|
|
130
|
+
};
|
|
127
131
|
}
|
|
128
132
|
export declare enum AmountEstimatorsSelectorKeysEnum {
|
|
129
133
|
LAYOUT = "layout",
|
|
@@ -152,7 +156,8 @@ export declare enum AmountEstimatorsSelectorKeysEnum {
|
|
|
152
156
|
HOVER_STATE = "hover",
|
|
153
157
|
DEFAULT_STATE = "default",
|
|
154
158
|
SELECTED_STATE = "selectedState",
|
|
155
|
-
DATA_CONNECTOR = "dataConnector"
|
|
159
|
+
DATA_CONNECTOR = "dataConnector",
|
|
160
|
+
WIDGET_STYLE = "widgetStyle"
|
|
156
161
|
}
|
|
157
162
|
export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
|
|
158
163
|
export {};
|
|
@@ -8,7 +8,9 @@ declare enum SelectorKeysEnum {
|
|
|
8
8
|
HOVER_STATE = "hoverState",
|
|
9
9
|
LIST = "list",
|
|
10
10
|
ICON = "icon",
|
|
11
|
-
TEXT = "text"
|
|
11
|
+
TEXT = "text",
|
|
12
|
+
DESCRIPTION = "description",
|
|
13
|
+
TEXTCONTAINER = "textContainer"
|
|
12
14
|
}
|
|
13
15
|
export declare const getDefaultData: () => {
|
|
14
16
|
layout: {
|
|
@@ -28,12 +30,6 @@ export declare const getDefaultData: () => {
|
|
|
28
30
|
design: {
|
|
29
31
|
selectorKey: SelectorKeysEnum;
|
|
30
32
|
list: {
|
|
31
|
-
listGap: {
|
|
32
|
-
value: number;
|
|
33
|
-
unit: CMSCSSUnitTypesEnums;
|
|
34
|
-
property: string;
|
|
35
|
-
propertyType: CMSElementEditTypes;
|
|
36
|
-
};
|
|
37
33
|
showDivider: {
|
|
38
34
|
value: boolean;
|
|
39
35
|
parentRef: string;
|
|
@@ -67,6 +63,12 @@ export declare const getDefaultData: () => {
|
|
|
67
63
|
propertyType?: any;
|
|
68
64
|
isReadOnly?: boolean | undefined;
|
|
69
65
|
};
|
|
66
|
+
listGap: {
|
|
67
|
+
value: number;
|
|
68
|
+
unit: CMSCSSUnitTypesEnums;
|
|
69
|
+
property: string;
|
|
70
|
+
propertyType: CMSElementEditTypes;
|
|
71
|
+
};
|
|
70
72
|
borderColor: CMSIBCommonInterface;
|
|
71
73
|
borderStyle: CMSIBCommonInterface;
|
|
72
74
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -143,6 +145,69 @@ export declare const getDefaultData: () => {
|
|
|
143
145
|
selectorKey: SelectorKeysEnum;
|
|
144
146
|
};
|
|
145
147
|
};
|
|
148
|
+
description: {
|
|
149
|
+
theme: CMSIBCommonInterface;
|
|
150
|
+
font: CMSIBCommonInterface;
|
|
151
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
152
|
+
textColor: CMSIBCommonInterface;
|
|
153
|
+
bold: CMSIBCommonInterface;
|
|
154
|
+
italic: CMSIBCommonInterface;
|
|
155
|
+
linethrough: CMSIBCommonInterface;
|
|
156
|
+
underline: CMSIBCommonInterface;
|
|
157
|
+
textAlign: CMSIBCommonInterface;
|
|
158
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
159
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
160
|
+
selectorKey: SelectorKeysEnum;
|
|
161
|
+
};
|
|
162
|
+
textContainer: {
|
|
163
|
+
dividerWidth: {
|
|
164
|
+
isSpecial: boolean;
|
|
165
|
+
value: string;
|
|
166
|
+
property: string;
|
|
167
|
+
unit: CMSCSSUnitTypesEnums;
|
|
168
|
+
propertyType: CMSElementEditTypes;
|
|
169
|
+
};
|
|
170
|
+
dividerPosition: {
|
|
171
|
+
value: string;
|
|
172
|
+
property: string;
|
|
173
|
+
propertyType: CMSElementEditTypes;
|
|
174
|
+
};
|
|
175
|
+
showDivider: {
|
|
176
|
+
value: boolean;
|
|
177
|
+
parentRef: string;
|
|
178
|
+
property?: any;
|
|
179
|
+
propertyType?: any;
|
|
180
|
+
isReadOnly?: boolean | undefined;
|
|
181
|
+
};
|
|
182
|
+
dividerStyle: {
|
|
183
|
+
property: string;
|
|
184
|
+
value?: any;
|
|
185
|
+
propertyType?: any;
|
|
186
|
+
isReadOnly?: boolean | undefined;
|
|
187
|
+
parentRef?: string | undefined;
|
|
188
|
+
};
|
|
189
|
+
dividerWeight: {
|
|
190
|
+
value: string;
|
|
191
|
+
property: string;
|
|
192
|
+
unit: CMSCSSUnitTypesEnums;
|
|
193
|
+
propertyType: CMSElementEditTypes;
|
|
194
|
+
};
|
|
195
|
+
dividerColor: {
|
|
196
|
+
property: string;
|
|
197
|
+
value: null;
|
|
198
|
+
parentRef: string;
|
|
199
|
+
propertyType?: any;
|
|
200
|
+
isReadOnly?: boolean | undefined;
|
|
201
|
+
};
|
|
202
|
+
selectorKey: SelectorKeysEnum;
|
|
203
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
204
|
+
itemGap: {
|
|
205
|
+
value: CMSCSSUnitTypesEnums;
|
|
206
|
+
unit: CMSCSSUnitTypesEnums;
|
|
207
|
+
property: string;
|
|
208
|
+
propertyType: CMSElementEditTypes;
|
|
209
|
+
};
|
|
210
|
+
};
|
|
146
211
|
};
|
|
147
212
|
content: {
|
|
148
213
|
selectorKey: SelectorKeysEnum;
|
|
@@ -151,6 +216,7 @@ export declare const getDefaultData: () => {
|
|
|
151
216
|
title: string;
|
|
152
217
|
contentSource: {
|
|
153
218
|
title: string;
|
|
219
|
+
description: string;
|
|
154
220
|
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
155
221
|
content: {};
|
|
156
222
|
};
|
|
@@ -24,6 +24,8 @@ declare enum SelectorKeysEnum {
|
|
|
24
24
|
MENU_ITEM_STYLE = "menuItemStyle",
|
|
25
25
|
SUB_MENU_CONTAINER = "subMenuContainer",
|
|
26
26
|
SUBMENU_ITEM_STYLE = "subMenuItemStyle",
|
|
27
|
+
HAMBURGER_OPTIONS = "hamburgerOptions",
|
|
28
|
+
HAMBURGER_STYLE = "hamburgerStyle",
|
|
27
29
|
SELECTED_STATE = "selected"
|
|
28
30
|
}
|
|
29
31
|
export interface selfDesignInterface {
|
|
@@ -32,6 +34,8 @@ export interface selfDesignInterface {
|
|
|
32
34
|
[SelectorKeysEnum.MENU_ITEM_STYLE]: any;
|
|
33
35
|
[SelectorKeysEnum.SUB_MENU_CONTAINER]: any;
|
|
34
36
|
[SelectorKeysEnum.SUBMENU_ITEM_STYLE]: any;
|
|
37
|
+
[SelectorKeysEnum.HAMBURGER_OPTIONS]: any;
|
|
38
|
+
[SelectorKeysEnum.HAMBURGER_STYLE]: any;
|
|
35
39
|
}
|
|
36
40
|
export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
|
|
37
41
|
export {};
|
package/dist/widget.scss
CHANGED