@sc-360-v2/storefront-cms-library 0.3.28 → 0.3.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/animation-control.scss +23 -0
- package/dist/builder.js +1 -1
- package/dist/bulk-order-pad.scss +328 -53
- package/dist/cart-details.scss +595 -300
- package/dist/cart-summary.scss +148 -40
- package/dist/cartAttributes.scss +24 -20
- package/dist/cartDropdownOverlay.scss +58 -10
- package/dist/checkout.scss +225 -79
- package/dist/contact-us.scss +3 -0
- package/dist/dropdownTemplate.scss +13 -2
- package/dist/fb-dropdown.scss +6 -2
- package/dist/filters.scss +0 -1
- package/dist/form-preview.scss +50 -9
- package/dist/form-zindex-module.scss +25 -0
- package/dist/functions.scss +72 -2
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/light-box-v2.scss +1 -1
- package/dist/modal.scss +69 -31
- package/dist/order-status.scss +1 -0
- package/dist/position-module.scss +74 -0
- package/dist/prefix-list.scss +55 -0
- package/dist/quick-order-pad.scss +36 -8
- package/dist/responsive-behaviour.scss +21 -0
- package/dist/section.scss +13 -6
- package/dist/shareCartSideBar.scss +29 -14
- package/dist/submit-quote.scss +107 -49
- package/dist/types/builder/elements/form-builder/index.d.ts +14 -2
- package/dist/types/builder/interfaces/global.d.ts +13 -0
- package/dist/types/builder/tools/element-edit/amountEstimator.d.ts +441 -0
- package/dist/types/builder/tools/element-edit/buttonInstance.d.ts +364 -0
- package/dist/types/builder/tools/element-edit/cartSummary.d.ts +123 -55
- package/dist/types/builder/tools/element-edit/checkout.d.ts +120 -94
- package/dist/types/builder/tools/element-edit/common.d.ts +1 -0
- package/dist/types/builder/tools/element-edit/countdown.d.ts +384 -44
- package/dist/types/builder/tools/element-edit/dummy.d.ts +0 -0
- package/dist/types/builder/tools/element-edit/productActions.d.ts +390 -43
- package/dist/types/builder/tools/element-edit/quickLinks.d.ts +192 -22
- package/dist/types/builder/tools/element-edit/repeater.d.ts +439 -1
- package/dist/types/builder/tools/element-edit/table.d.ts +0 -1
- package/dist/types/builder/tools/element-edit/typographyInstance.d.ts +981 -0
- package/dist/types/builder/tools/element-edit/video.d.ts +192 -22
- package/dist/types/global/types.d.ts +2 -0
- package/package.json +1 -1
|
@@ -168,64 +168,130 @@ export declare const getDefaultData: () => {
|
|
|
168
168
|
selectorKey: SelectorKeysEnum;
|
|
169
169
|
};
|
|
170
170
|
inputButtonDesign: {
|
|
171
|
-
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
172
|
-
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
173
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
174
|
-
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
175
|
-
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
176
|
-
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
177
|
-
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
178
|
-
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
179
|
-
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
180
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
181
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
182
|
-
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
183
|
-
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
184
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
185
|
-
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
186
|
-
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
187
|
-
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
188
|
-
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
189
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
190
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
191
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
192
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
193
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
194
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
195
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
196
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
197
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
198
171
|
selectorKey: SelectorKeysEnum;
|
|
172
|
+
defaultState: {
|
|
173
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
174
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
175
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
176
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
177
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
178
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
179
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
180
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
181
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
182
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
183
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
184
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
185
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
186
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
187
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
188
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
189
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
190
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
191
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
192
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
193
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
194
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
195
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
196
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
197
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
198
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
199
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
200
|
+
selectorKey: SelectorKeysEnum;
|
|
201
|
+
};
|
|
202
|
+
hoverState: {
|
|
203
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
204
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
205
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
206
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
207
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
208
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
209
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
210
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
211
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
212
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
213
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
214
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
215
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
216
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
217
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
218
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
219
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
220
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
221
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
222
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
223
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
224
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
225
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
226
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
227
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
228
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
229
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
230
|
+
selectorKey: SelectorKeysEnum;
|
|
231
|
+
};
|
|
199
232
|
};
|
|
200
233
|
secondaryInputButtonDesign: {
|
|
201
|
-
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
202
|
-
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
203
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
204
|
-
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
205
|
-
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
206
|
-
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
207
|
-
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
208
|
-
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
209
|
-
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
210
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
211
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
212
|
-
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
213
|
-
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
214
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
215
|
-
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
216
|
-
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
217
|
-
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
218
|
-
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
219
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
220
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
221
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
222
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
223
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
224
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
225
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
226
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
227
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
228
234
|
selectorKey: SelectorKeysEnum;
|
|
235
|
+
defaultState: {
|
|
236
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
237
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
238
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
239
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
240
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
241
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
242
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
243
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
244
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
245
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
246
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
247
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
248
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
249
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
250
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
251
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
252
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
253
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
254
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
255
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
256
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
257
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
258
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
259
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
260
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
261
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
262
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
263
|
+
selectorKey: SelectorKeysEnum;
|
|
264
|
+
};
|
|
265
|
+
hoverState: {
|
|
266
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
267
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
268
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
269
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
270
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
271
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
272
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
273
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
274
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
275
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
276
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
277
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
278
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
279
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
280
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
281
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
282
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
283
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
284
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
285
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
286
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
287
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
288
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
289
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
290
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
291
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
292
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
293
|
+
selectorKey: SelectorKeysEnum;
|
|
294
|
+
};
|
|
229
295
|
};
|
|
230
296
|
inputHeadingsDesign: {
|
|
231
297
|
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
@@ -288,36 +354,6 @@ export declare const getDefaultData: () => {
|
|
|
288
354
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
289
355
|
selectorKey: SelectorKeysEnum;
|
|
290
356
|
};
|
|
291
|
-
discardButtonDesign: {
|
|
292
|
-
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
293
|
-
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
294
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
295
|
-
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
296
|
-
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
297
|
-
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
298
|
-
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
299
|
-
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
300
|
-
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
301
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
302
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
303
|
-
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
304
|
-
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
305
|
-
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
306
|
-
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
307
|
-
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
308
|
-
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
309
|
-
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
310
|
-
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
311
|
-
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
312
|
-
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
313
|
-
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
314
|
-
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
315
|
-
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
316
|
-
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
317
|
-
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
318
|
-
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
319
|
-
selectorKey: SelectorKeysEnum;
|
|
320
|
-
};
|
|
321
357
|
noteContainerDesign: {
|
|
322
358
|
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
323
359
|
showIcon: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
@@ -379,16 +415,6 @@ export declare const getDefaultData: () => {
|
|
|
379
415
|
property: string;
|
|
380
416
|
propertyType: CMSElementEditTypes;
|
|
381
417
|
};
|
|
382
|
-
showDescription: {
|
|
383
|
-
value: boolean;
|
|
384
|
-
property: string;
|
|
385
|
-
propertyType: CMSElementEditTypes;
|
|
386
|
-
};
|
|
387
|
-
description: {
|
|
388
|
-
value: string;
|
|
389
|
-
property: string;
|
|
390
|
-
propertyType: CMSElementEditTypes;
|
|
391
|
-
};
|
|
392
418
|
shippingAddressLabel: {
|
|
393
419
|
value: string;
|
|
394
420
|
property: string;
|
|
@@ -92,6 +92,7 @@ export interface CMSElementEditPopupDesignInterface {
|
|
|
92
92
|
textPosition: CMSIBCommonInterface;
|
|
93
93
|
verticalAlignment: CMSIBCommonInterface;
|
|
94
94
|
textHorizontalPadding: CMSIBSizeInterface;
|
|
95
|
+
dividerColor: CMSIBCommonInterface;
|
|
95
96
|
}
|
|
96
97
|
export interface CMSElementEditPopupInterface<L = CMSElementEditPopupLayoutInterface, D = CMSElementEditPopupDesignInterface> {
|
|
97
98
|
layout?: L;
|