@sc-360-v2/storefront-cms-library 0.3.38 → 0.3.39
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 +388 -0
- package/dist/badge.scss +84 -82
- package/dist/builder.js +1 -1
- package/dist/bulk-order-pad.scss +29 -34
- package/dist/cart-details.scss +54 -57
- package/dist/cart-products-sidebar.scss +113 -83
- package/dist/cartAttributes.scss +180 -183
- package/dist/cartDropdownOverlay.scss +49 -27
- package/dist/checkout.scss +127 -38
- package/dist/customization-tree.scss +42 -10
- package/dist/dropdownTemplate.scss +35 -25
- package/dist/employee-bulk-order.scss +219 -47
- package/dist/empty-states.scss +66 -66
- package/dist/functions.scss +7 -5
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/item-stock.scss +27 -28
- package/dist/menu-v2.scss +2 -2
- package/dist/modal.scss +104 -75
- package/dist/past-orders.scss +272 -258
- package/dist/payment-methods.scss +70 -71
- package/dist/prefix-list.scss +1 -0
- package/dist/product-actions.scss +68 -68
- package/dist/product-sizechart.scss +13 -13
- package/dist/quick-links.scss +47 -48
- package/dist/quick-order-pad.scss +51 -51
- package/dist/quotes.scss +118 -116
- package/dist/rfqs.scss +118 -116
- package/dist/types/builder/elements/add-products-tab/index.d.ts +46 -0
- package/dist/types/builder/enums/index.d.ts +2 -0
- package/dist/types/builder/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/addProductsTab.d.ts +418 -0
- package/dist/types/builder/tools/element-edit/index.d.ts +2 -1
- package/dist/widget.scss +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,418 @@
|
|
|
1
|
+
import { CMSCSSUnitTypesEnums, CMSElementEditTypes } from "../../enums";
|
|
2
|
+
import { CMSIBCommonInterface } from "../../interfaces/global";
|
|
3
|
+
import { CMSElementEditPopupInterface } from "./common";
|
|
4
|
+
export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
|
|
5
|
+
}
|
|
6
|
+
export declare enum SelectorKeysEnum {
|
|
7
|
+
LAYOUT = "layout",
|
|
8
|
+
CONTENT = "content",
|
|
9
|
+
DESIGN = "design",
|
|
10
|
+
PRODUCT_HEADING_STYLES = "productHeadingStyles",
|
|
11
|
+
PRODUCT_ITEM_STYLES = "productItemStyles",
|
|
12
|
+
PRODUCT_ACTIONS_STYLES = "productActionsStyles",
|
|
13
|
+
PRODUCT_NAME_STYLES = "productNameStyles",
|
|
14
|
+
PRODUCT_PRICE_STYLES = "productPriceStyles",
|
|
15
|
+
PRODUCT_INFORMATION_STYLES = "productInformationStyles",
|
|
16
|
+
PRODUCT_QUANTITY_STYLES = "productQuantityStyles",
|
|
17
|
+
PRODUCT_IMAGE_STYLES = "productImageStyles",
|
|
18
|
+
PRODUCT_REQUIRED_INFO = "productRequiredInfo",
|
|
19
|
+
PRODUCT_ATTRIBUTES_ITEMS = "productAttributesItems"
|
|
20
|
+
}
|
|
21
|
+
export declare const getDefaultData: () => {
|
|
22
|
+
layout: {
|
|
23
|
+
selectorKey: SelectorKeysEnum;
|
|
24
|
+
width: {
|
|
25
|
+
value: number;
|
|
26
|
+
unit: CMSCSSUnitTypesEnums;
|
|
27
|
+
};
|
|
28
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
29
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
30
|
+
overflowContent: CMSIBCommonInterface | undefined;
|
|
31
|
+
scrollDirection: CMSIBCommonInterface | undefined;
|
|
32
|
+
displayScrollbar: CMSIBCommonInterface | undefined;
|
|
33
|
+
positionType: CMSIBCommonInterface | undefined;
|
|
34
|
+
pinTo: CMSIBCommonInterface | undefined;
|
|
35
|
+
showTitle: {
|
|
36
|
+
value: boolean;
|
|
37
|
+
property: string;
|
|
38
|
+
propertyType: CMSElementEditTypes;
|
|
39
|
+
};
|
|
40
|
+
cartTitle: {
|
|
41
|
+
value: string;
|
|
42
|
+
property: string;
|
|
43
|
+
propertyType: CMSElementEditTypes;
|
|
44
|
+
};
|
|
45
|
+
showNumberOfItems: {
|
|
46
|
+
value: boolean;
|
|
47
|
+
property: string;
|
|
48
|
+
propertyType: CMSElementEditTypes;
|
|
49
|
+
};
|
|
50
|
+
cartItemsCountLabel: {
|
|
51
|
+
value: string;
|
|
52
|
+
property: string;
|
|
53
|
+
propertyType: CMSElementEditTypes;
|
|
54
|
+
};
|
|
55
|
+
showActions: {
|
|
56
|
+
value: boolean;
|
|
57
|
+
property: string;
|
|
58
|
+
propertyType: CMSElementEditTypes;
|
|
59
|
+
};
|
|
60
|
+
showContinueShopping: {
|
|
61
|
+
value: boolean;
|
|
62
|
+
property: string;
|
|
63
|
+
propertyType: CMSElementEditTypes;
|
|
64
|
+
};
|
|
65
|
+
continueShoppingLinkTo: {
|
|
66
|
+
value: null;
|
|
67
|
+
property: string;
|
|
68
|
+
propertyType: CMSElementEditTypes;
|
|
69
|
+
};
|
|
70
|
+
continueShoppingLink: {
|
|
71
|
+
value: string;
|
|
72
|
+
property: string;
|
|
73
|
+
propertyType: CMSElementEditTypes;
|
|
74
|
+
};
|
|
75
|
+
showAddFromWishlist: {
|
|
76
|
+
value: boolean;
|
|
77
|
+
property: string;
|
|
78
|
+
propertyType: CMSElementEditTypes;
|
|
79
|
+
};
|
|
80
|
+
showCartGrouping: {
|
|
81
|
+
value: boolean;
|
|
82
|
+
property: string;
|
|
83
|
+
propertyType: CMSElementEditTypes;
|
|
84
|
+
};
|
|
85
|
+
showMoveToTemplate: {
|
|
86
|
+
value: boolean;
|
|
87
|
+
property: string;
|
|
88
|
+
propertyType: CMSElementEditTypes;
|
|
89
|
+
};
|
|
90
|
+
showClearCart: {
|
|
91
|
+
value: boolean;
|
|
92
|
+
property: string;
|
|
93
|
+
propertyType: CMSElementEditTypes;
|
|
94
|
+
};
|
|
95
|
+
clearCartLinkTo: {
|
|
96
|
+
value: string;
|
|
97
|
+
property: string;
|
|
98
|
+
propertyType: CMSElementEditTypes;
|
|
99
|
+
};
|
|
100
|
+
clearCartLink: {
|
|
101
|
+
value: string;
|
|
102
|
+
property: string;
|
|
103
|
+
propertyType: CMSElementEditTypes;
|
|
104
|
+
};
|
|
105
|
+
showDownloadCart: {
|
|
106
|
+
value: boolean;
|
|
107
|
+
property: string;
|
|
108
|
+
propertyType: CMSElementEditTypes;
|
|
109
|
+
};
|
|
110
|
+
showShareCart: {
|
|
111
|
+
value: boolean;
|
|
112
|
+
property: string;
|
|
113
|
+
propertyType: CMSElementEditTypes;
|
|
114
|
+
};
|
|
115
|
+
showPrintCart: {
|
|
116
|
+
value: boolean;
|
|
117
|
+
property: string;
|
|
118
|
+
propertyType: CMSElementEditTypes;
|
|
119
|
+
};
|
|
120
|
+
maxNumberOfActionsToShow: {
|
|
121
|
+
value: number;
|
|
122
|
+
property: string;
|
|
123
|
+
propertyType: CMSElementEditTypes;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
design: {
|
|
127
|
+
selectorKey: SelectorKeysEnum;
|
|
128
|
+
productHeadingStyles: {
|
|
129
|
+
theme: CMSIBCommonInterface;
|
|
130
|
+
font: CMSIBCommonInterface;
|
|
131
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
132
|
+
textColor: CMSIBCommonInterface;
|
|
133
|
+
bold: CMSIBCommonInterface;
|
|
134
|
+
italic: CMSIBCommonInterface;
|
|
135
|
+
linethrough: CMSIBCommonInterface;
|
|
136
|
+
underline: CMSIBCommonInterface;
|
|
137
|
+
textAlign: CMSIBCommonInterface;
|
|
138
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
139
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
140
|
+
backgroundColor: CMSIBCommonInterface;
|
|
141
|
+
selectorKey: SelectorKeysEnum;
|
|
142
|
+
showShadow: CMSIBCommonInterface;
|
|
143
|
+
shadowColor: CMSIBCommonInterface;
|
|
144
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
145
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
146
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
147
|
+
};
|
|
148
|
+
productItemStyles: {
|
|
149
|
+
selectorKey: SelectorKeysEnum;
|
|
150
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
151
|
+
margin: {
|
|
152
|
+
isAll: boolean;
|
|
153
|
+
sides: {
|
|
154
|
+
top: {
|
|
155
|
+
value: number;
|
|
156
|
+
unit: number;
|
|
157
|
+
};
|
|
158
|
+
right: {
|
|
159
|
+
value: number;
|
|
160
|
+
unit: number;
|
|
161
|
+
};
|
|
162
|
+
bottom: {
|
|
163
|
+
value: number;
|
|
164
|
+
unit: number;
|
|
165
|
+
};
|
|
166
|
+
left: {
|
|
167
|
+
value: number;
|
|
168
|
+
unit: number;
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
property: string;
|
|
172
|
+
propertyType: CMSElementEditTypes;
|
|
173
|
+
};
|
|
174
|
+
shadowColor: CMSIBCommonInterface;
|
|
175
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
176
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
177
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
178
|
+
showBorder: CMSIBCommonInterface;
|
|
179
|
+
borderColor: CMSIBCommonInterface;
|
|
180
|
+
borderStyle: CMSIBCommonInterface;
|
|
181
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
182
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
183
|
+
backgroundColor: CMSIBCommonInterface;
|
|
184
|
+
};
|
|
185
|
+
productActionsStyles: {
|
|
186
|
+
theme: CMSIBCommonInterface;
|
|
187
|
+
font: CMSIBCommonInterface;
|
|
188
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
189
|
+
textColor: CMSIBCommonInterface;
|
|
190
|
+
bold: CMSIBCommonInterface;
|
|
191
|
+
italic: CMSIBCommonInterface;
|
|
192
|
+
linethrough: CMSIBCommonInterface;
|
|
193
|
+
underline: CMSIBCommonInterface;
|
|
194
|
+
textAlign: CMSIBCommonInterface;
|
|
195
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
196
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
197
|
+
backgroundColor: CMSIBCommonInterface;
|
|
198
|
+
borderColor: CMSIBCommonInterface;
|
|
199
|
+
borderStyle: CMSIBCommonInterface;
|
|
200
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
201
|
+
showBorder: CMSIBCommonInterface;
|
|
202
|
+
showShadow: CMSIBCommonInterface;
|
|
203
|
+
shadowColor: CMSIBCommonInterface;
|
|
204
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
205
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
206
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
207
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
208
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
209
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
210
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
211
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
212
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
213
|
+
selectorKey: SelectorKeysEnum;
|
|
214
|
+
};
|
|
215
|
+
productNameStyles: {
|
|
216
|
+
theme: CMSIBCommonInterface;
|
|
217
|
+
font: CMSIBCommonInterface;
|
|
218
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
219
|
+
textColor: CMSIBCommonInterface;
|
|
220
|
+
bold: CMSIBCommonInterface;
|
|
221
|
+
italic: CMSIBCommonInterface;
|
|
222
|
+
linethrough: CMSIBCommonInterface;
|
|
223
|
+
underline: CMSIBCommonInterface;
|
|
224
|
+
textAlign: CMSIBCommonInterface;
|
|
225
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
226
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
227
|
+
backgroundColor: CMSIBCommonInterface;
|
|
228
|
+
selectorKey: SelectorKeysEnum;
|
|
229
|
+
};
|
|
230
|
+
productPriceStyles: {
|
|
231
|
+
theme: CMSIBCommonInterface;
|
|
232
|
+
font: CMSIBCommonInterface;
|
|
233
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
234
|
+
textColor: CMSIBCommonInterface;
|
|
235
|
+
bold: CMSIBCommonInterface;
|
|
236
|
+
italic: CMSIBCommonInterface;
|
|
237
|
+
linethrough: CMSIBCommonInterface;
|
|
238
|
+
underline: CMSIBCommonInterface;
|
|
239
|
+
textAlign: CMSIBCommonInterface;
|
|
240
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
241
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
242
|
+
backgroundColor: CMSIBCommonInterface;
|
|
243
|
+
selectorKey: SelectorKeysEnum;
|
|
244
|
+
};
|
|
245
|
+
productInformationStyles: {
|
|
246
|
+
theme: CMSIBCommonInterface;
|
|
247
|
+
font: CMSIBCommonInterface;
|
|
248
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
249
|
+
textColor: CMSIBCommonInterface;
|
|
250
|
+
bold: CMSIBCommonInterface;
|
|
251
|
+
italic: CMSIBCommonInterface;
|
|
252
|
+
linethrough: CMSIBCommonInterface;
|
|
253
|
+
underline: CMSIBCommonInterface;
|
|
254
|
+
textAlign: CMSIBCommonInterface;
|
|
255
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
256
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
257
|
+
backgroundColor: CMSIBCommonInterface;
|
|
258
|
+
selectorKey: SelectorKeysEnum;
|
|
259
|
+
};
|
|
260
|
+
productQuantityStyles: {
|
|
261
|
+
theme: CMSIBCommonInterface;
|
|
262
|
+
font: CMSIBCommonInterface;
|
|
263
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
264
|
+
textColor: CMSIBCommonInterface;
|
|
265
|
+
bold: CMSIBCommonInterface;
|
|
266
|
+
italic: CMSIBCommonInterface;
|
|
267
|
+
linethrough: CMSIBCommonInterface;
|
|
268
|
+
underline: CMSIBCommonInterface;
|
|
269
|
+
textAlign: CMSIBCommonInterface;
|
|
270
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
271
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
272
|
+
backgroundColor: CMSIBCommonInterface;
|
|
273
|
+
borderColor: CMSIBCommonInterface;
|
|
274
|
+
borderStyle: CMSIBCommonInterface;
|
|
275
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
276
|
+
showBorder: CMSIBCommonInterface;
|
|
277
|
+
showShadow: CMSIBCommonInterface;
|
|
278
|
+
shadowColor: CMSIBCommonInterface;
|
|
279
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
280
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
281
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
282
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
283
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
284
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
285
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
286
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
287
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
288
|
+
selectorKey: SelectorKeysEnum;
|
|
289
|
+
};
|
|
290
|
+
productImageStyles: {
|
|
291
|
+
selectorKey: SelectorKeysEnum;
|
|
292
|
+
borderColor: CMSIBCommonInterface;
|
|
293
|
+
borderStyle: CMSIBCommonInterface;
|
|
294
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
295
|
+
showBorder: CMSIBCommonInterface;
|
|
296
|
+
showShadow: CMSIBCommonInterface;
|
|
297
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
298
|
+
};
|
|
299
|
+
productAttributesItems: {
|
|
300
|
+
theme: CMSIBCommonInterface;
|
|
301
|
+
font: CMSIBCommonInterface;
|
|
302
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
303
|
+
textColor: CMSIBCommonInterface;
|
|
304
|
+
bold: CMSIBCommonInterface;
|
|
305
|
+
italic: CMSIBCommonInterface;
|
|
306
|
+
linethrough: CMSIBCommonInterface;
|
|
307
|
+
underline: CMSIBCommonInterface;
|
|
308
|
+
textAlign: CMSIBCommonInterface;
|
|
309
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
310
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
311
|
+
backgroundColor: CMSIBCommonInterface;
|
|
312
|
+
borderColor: CMSIBCommonInterface;
|
|
313
|
+
borderStyle: CMSIBCommonInterface;
|
|
314
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
315
|
+
showBorder: CMSIBCommonInterface;
|
|
316
|
+
showShadow: CMSIBCommonInterface;
|
|
317
|
+
shadowColor: CMSIBCommonInterface;
|
|
318
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
319
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
320
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
321
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
322
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
323
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
324
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
325
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
326
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
327
|
+
selectorKey: SelectorKeysEnum;
|
|
328
|
+
};
|
|
329
|
+
productRequiredInfo: {
|
|
330
|
+
theme: CMSIBCommonInterface;
|
|
331
|
+
font: CMSIBCommonInterface;
|
|
332
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
333
|
+
textColor: CMSIBCommonInterface;
|
|
334
|
+
bold: CMSIBCommonInterface;
|
|
335
|
+
italic: CMSIBCommonInterface;
|
|
336
|
+
linethrough: CMSIBCommonInterface;
|
|
337
|
+
underline: CMSIBCommonInterface;
|
|
338
|
+
textAlign: CMSIBCommonInterface;
|
|
339
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
340
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
341
|
+
backgroundColor: CMSIBCommonInterface;
|
|
342
|
+
borderColor: CMSIBCommonInterface;
|
|
343
|
+
borderStyle: CMSIBCommonInterface;
|
|
344
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
345
|
+
showBorder: CMSIBCommonInterface;
|
|
346
|
+
showShadow: CMSIBCommonInterface;
|
|
347
|
+
shadowColor: CMSIBCommonInterface;
|
|
348
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
349
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
350
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
351
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
352
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
353
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
354
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
355
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
356
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
357
|
+
selectorKey: SelectorKeysEnum;
|
|
358
|
+
};
|
|
359
|
+
};
|
|
360
|
+
content: {
|
|
361
|
+
selectorKey: SelectorKeysEnum;
|
|
362
|
+
showProductTitle: {
|
|
363
|
+
value: boolean;
|
|
364
|
+
property: string;
|
|
365
|
+
propertyType: CMSElementEditTypes;
|
|
366
|
+
};
|
|
367
|
+
showQuantity: {
|
|
368
|
+
value: boolean;
|
|
369
|
+
property: string;
|
|
370
|
+
propertyType: CMSElementEditTypes;
|
|
371
|
+
};
|
|
372
|
+
showPrice: {
|
|
373
|
+
value: boolean;
|
|
374
|
+
property: string;
|
|
375
|
+
propertyType: CMSElementEditTypes;
|
|
376
|
+
};
|
|
377
|
+
showProductCode: {
|
|
378
|
+
value: boolean;
|
|
379
|
+
property: string;
|
|
380
|
+
propertyType: CMSElementEditTypes;
|
|
381
|
+
};
|
|
382
|
+
showProductOptions: {
|
|
383
|
+
value: boolean;
|
|
384
|
+
property: string;
|
|
385
|
+
propertyType: CMSElementEditTypes;
|
|
386
|
+
};
|
|
387
|
+
showProductImage: {
|
|
388
|
+
value: boolean;
|
|
389
|
+
property: string;
|
|
390
|
+
propertyType: CMSElementEditTypes;
|
|
391
|
+
};
|
|
392
|
+
showCustomizations: {
|
|
393
|
+
value: boolean;
|
|
394
|
+
property: string;
|
|
395
|
+
propertyType: CMSElementEditTypes;
|
|
396
|
+
};
|
|
397
|
+
showCartItemAttributes: {
|
|
398
|
+
value: boolean;
|
|
399
|
+
property: string;
|
|
400
|
+
propertyType: CMSElementEditTypes;
|
|
401
|
+
};
|
|
402
|
+
showEdit: {
|
|
403
|
+
value: boolean;
|
|
404
|
+
property: string;
|
|
405
|
+
propertyType: CMSElementEditTypes;
|
|
406
|
+
};
|
|
407
|
+
showMoveToWishlist: {
|
|
408
|
+
value: boolean;
|
|
409
|
+
property: string;
|
|
410
|
+
propertyType: CMSElementEditTypes;
|
|
411
|
+
};
|
|
412
|
+
showRemove: {
|
|
413
|
+
value: boolean;
|
|
414
|
+
property: string;
|
|
415
|
+
propertyType: CMSElementEditTypes;
|
|
416
|
+
};
|
|
417
|
+
};
|
|
418
|
+
};
|
|
@@ -98,4 +98,5 @@ import * as badge from "./badge";
|
|
|
98
98
|
import * as languageMenu from "./language-menu";
|
|
99
99
|
import * as cartAttributes from "./cartAttributes";
|
|
100
100
|
import * as loader from "./loader";
|
|
101
|
-
|
|
101
|
+
import * as addProductsTab from "./addProductsTab";
|
|
102
|
+
export { amountEstimator, bulkVariantPicker, button, code, staticText, common, container, countdown, embed, faq, gallerySlider, grid, image, imageHotspot, map, paymentMethods, pickupLocations, price, productActions, productHighlights, productImage, productInventory, productPromotions, quantitySelector, scroll, section, shippingEstimator, slideShowLayouter, social, stack, storeLocations, table, tabs, text, uomSelector, variantPicker, video, volumePricing, lightbox, cart, profile, repeater, repeaterItem, product, menu, productOptions, productDetails, category, subCategory, brand, bundle, brandImage, filters, sort, pastOrders, quotes, rfqs, lightBoxV2, allocations, search, layouter, layouterItem, categoryDetails, contactUs, login, resetPassword, breadcrumbs, iconLibrary, searchResultsHeading, itemStock, cartDetails, cartSummary, checkout, allocationDetails, line, tabsV2, tabContainer, marchandiserSets, createForm, quickLinks, addOrder, buyForWithTabs, buyForTabsContainer, toaster, spotlight, bundleDetails, productCustomizations, iconList, orderStatus, menuV2, menuItem, layouterPro, layouterProItem, filterResults, productSizeChart, userElements, badge, cartAttributes, languageMenu, loader, addProductsTab, };
|
package/dist/widget.scss
CHANGED