@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.
Files changed (44) hide show
  1. package/dist/animation-control.scss +23 -0
  2. package/dist/builder.js +1 -1
  3. package/dist/bulk-order-pad.scss +328 -53
  4. package/dist/cart-details.scss +595 -300
  5. package/dist/cart-summary.scss +148 -40
  6. package/dist/cartAttributes.scss +24 -20
  7. package/dist/cartDropdownOverlay.scss +58 -10
  8. package/dist/checkout.scss +225 -79
  9. package/dist/contact-us.scss +3 -0
  10. package/dist/dropdownTemplate.scss +13 -2
  11. package/dist/fb-dropdown.scss +6 -2
  12. package/dist/filters.scss +0 -1
  13. package/dist/form-preview.scss +50 -9
  14. package/dist/form-zindex-module.scss +25 -0
  15. package/dist/functions.scss +72 -2
  16. package/dist/icons.js +1 -1
  17. package/dist/index.js +1 -1
  18. package/dist/light-box-v2.scss +1 -1
  19. package/dist/modal.scss +69 -31
  20. package/dist/order-status.scss +1 -0
  21. package/dist/position-module.scss +74 -0
  22. package/dist/prefix-list.scss +55 -0
  23. package/dist/quick-order-pad.scss +36 -8
  24. package/dist/responsive-behaviour.scss +21 -0
  25. package/dist/section.scss +13 -6
  26. package/dist/shareCartSideBar.scss +29 -14
  27. package/dist/submit-quote.scss +107 -49
  28. package/dist/types/builder/elements/form-builder/index.d.ts +14 -2
  29. package/dist/types/builder/interfaces/global.d.ts +13 -0
  30. package/dist/types/builder/tools/element-edit/amountEstimator.d.ts +441 -0
  31. package/dist/types/builder/tools/element-edit/buttonInstance.d.ts +364 -0
  32. package/dist/types/builder/tools/element-edit/cartSummary.d.ts +123 -55
  33. package/dist/types/builder/tools/element-edit/checkout.d.ts +120 -94
  34. package/dist/types/builder/tools/element-edit/common.d.ts +1 -0
  35. package/dist/types/builder/tools/element-edit/countdown.d.ts +384 -44
  36. package/dist/types/builder/tools/element-edit/dummy.d.ts +0 -0
  37. package/dist/types/builder/tools/element-edit/productActions.d.ts +390 -43
  38. package/dist/types/builder/tools/element-edit/quickLinks.d.ts +192 -22
  39. package/dist/types/builder/tools/element-edit/repeater.d.ts +439 -1
  40. package/dist/types/builder/tools/element-edit/table.d.ts +0 -1
  41. package/dist/types/builder/tools/element-edit/typographyInstance.d.ts +981 -0
  42. package/dist/types/builder/tools/element-edit/video.d.ts +192 -22
  43. package/dist/types/global/types.d.ts +2 -0
  44. package/package.json +1 -1
@@ -178,6 +178,198 @@ export declare const getDefaultData: () => {
178
178
  };
179
179
  };
180
180
  videoWidgetDesign: {
181
+ themeDesc: {
182
+ value: string;
183
+ property: string;
184
+ propertyType: CMSElementEditTypes;
185
+ };
186
+ fontDesc: {
187
+ value: string;
188
+ property: string;
189
+ propertyType: CMSElementEditTypes;
190
+ parentRef: string;
191
+ };
192
+ fontSizeDesc: {
193
+ value: number;
194
+ unit: number;
195
+ property: string;
196
+ propertyType: CMSElementEditTypes;
197
+ parentRef: string;
198
+ };
199
+ textColorDesc: {
200
+ value: {
201
+ hex: string;
202
+ rgb: {
203
+ r: string;
204
+ g: string;
205
+ b: string;
206
+ a: number;
207
+ };
208
+ };
209
+ property: string;
210
+ propertyType: CMSElementEditTypes;
211
+ parentRef: string;
212
+ };
213
+ textHighlightDesc: {
214
+ value: {
215
+ hex: string;
216
+ rgb: {
217
+ r: string;
218
+ g: string;
219
+ b: string;
220
+ a: number;
221
+ };
222
+ };
223
+ property: string;
224
+ propertyType: CMSElementEditTypes;
225
+ };
226
+ boldDesc: {
227
+ value: string;
228
+ property: string;
229
+ propertyType: CMSElementEditTypes;
230
+ parentRef: string;
231
+ };
232
+ italicDesc: {
233
+ value: string;
234
+ property: string;
235
+ propertyType: CMSElementEditTypes;
236
+ parentRef: string;
237
+ };
238
+ linethroughDesc: {
239
+ value: string;
240
+ property: string;
241
+ propertyType: CMSElementEditTypes;
242
+ parentRef: string;
243
+ };
244
+ underlineDesc: {
245
+ value: string;
246
+ property: string;
247
+ propertyType: CMSElementEditTypes;
248
+ parentRef: string;
249
+ };
250
+ textAlignDesc: {
251
+ value: string;
252
+ property: string;
253
+ propertyType: CMSElementEditTypes;
254
+ parentRef: string;
255
+ };
256
+ characterSpacingDesc: {
257
+ value: number;
258
+ unit: number;
259
+ property: string;
260
+ propertyType: CMSElementEditTypes;
261
+ parentRef: string;
262
+ };
263
+ lineHeightDesc: {
264
+ value: number;
265
+ unit: number;
266
+ property: string;
267
+ propertyType: CMSElementEditTypes;
268
+ parentRef: string;
269
+ };
270
+ paragraphSpacingDesc: {
271
+ value: number;
272
+ unit: number;
273
+ property: string;
274
+ propertyType: CMSElementEditTypes;
275
+ parentRef: string;
276
+ };
277
+ theme: {
278
+ value: string;
279
+ property: string;
280
+ propertyType: CMSElementEditTypes;
281
+ };
282
+ font: {
283
+ value: string;
284
+ property: string;
285
+ propertyType: CMSElementEditTypes;
286
+ parentRef: string;
287
+ };
288
+ fontSize: {
289
+ value: number;
290
+ unit: number;
291
+ property: string;
292
+ propertyType: CMSElementEditTypes;
293
+ parentRef: string;
294
+ };
295
+ textColor: {
296
+ value: {
297
+ hex: string;
298
+ rgb: {
299
+ r: string;
300
+ g: string;
301
+ b: string;
302
+ a: number;
303
+ };
304
+ };
305
+ property: string;
306
+ propertyType: CMSElementEditTypes;
307
+ parentRef: string;
308
+ };
309
+ textHighlight: {
310
+ value: {
311
+ hex: string;
312
+ rgb: {
313
+ r: string;
314
+ g: string;
315
+ b: string;
316
+ a: number;
317
+ };
318
+ };
319
+ property: string;
320
+ propertyType: CMSElementEditTypes;
321
+ };
322
+ bold: {
323
+ value: string;
324
+ property: string;
325
+ propertyType: CMSElementEditTypes;
326
+ parentRef: string;
327
+ };
328
+ italic: {
329
+ value: string;
330
+ property: string;
331
+ propertyType: CMSElementEditTypes;
332
+ parentRef: string;
333
+ };
334
+ linethrough: {
335
+ value: string;
336
+ property: string;
337
+ propertyType: CMSElementEditTypes;
338
+ parentRef: string;
339
+ };
340
+ underline: {
341
+ value: string;
342
+ property: string;
343
+ propertyType: CMSElementEditTypes;
344
+ parentRef: string;
345
+ };
346
+ textAlign: {
347
+ value: string;
348
+ property: string;
349
+ propertyType: CMSElementEditTypes;
350
+ parentRef: string;
351
+ };
352
+ characterSpacing: {
353
+ value: number;
354
+ unit: number;
355
+ property: string;
356
+ propertyType: CMSElementEditTypes;
357
+ parentRef: string;
358
+ };
359
+ lineHeight: {
360
+ value: number;
361
+ unit: number;
362
+ property: string;
363
+ propertyType: CMSElementEditTypes;
364
+ parentRef: string;
365
+ };
366
+ paragraphSpacing: {
367
+ value: number;
368
+ unit: number;
369
+ property: string;
370
+ propertyType: CMSElementEditTypes;
371
+ parentRef: string;
372
+ };
181
373
  selectorKey: VideoSelectorKeysEnum;
182
374
  backgroundColor: CMSIBCommonInterface;
183
375
  borderColor: CMSIBCommonInterface;
@@ -193,28 +385,6 @@ export declare const getDefaultData: () => {
193
385
  showIcon: CMSIBCommonInterface | undefined;
194
386
  iconSize: import("../../interfaces/global").CMSIBSizeInterface;
195
387
  iconColor: CMSIBCommonInterface;
196
- theme: CMSIBCommonInterface;
197
- font: CMSIBCommonInterface;
198
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
199
- textColor: CMSIBCommonInterface;
200
- bold: CMSIBCommonInterface;
201
- italic: CMSIBCommonInterface;
202
- linethrough: CMSIBCommonInterface;
203
- underline: CMSIBCommonInterface;
204
- textAlign: CMSIBCommonInterface;
205
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
206
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
207
- themeDesc: CMSIBCommonInterface;
208
- fontDesc: CMSIBCommonInterface;
209
- fontSizeDesc: import("../../interfaces/global").CMSIBSizeInterface;
210
- textColorDesc: CMSIBCommonInterface;
211
- boldDesc: CMSIBCommonInterface;
212
- italicDesc: CMSIBCommonInterface;
213
- linethroughDesc: CMSIBCommonInterface;
214
- underlineDesc: CMSIBCommonInterface;
215
- textAlignDesc: CMSIBCommonInterface;
216
- characterSpacingDesc: import("../../interfaces/global").CMSIBSizeInterface | undefined;
217
- lineHeightDesc: import("../../interfaces/global").CMSIBSizeInterface;
218
388
  };
219
389
  videoTextLayout: {
220
390
  selectorKey: VideoSelectorKeysEnum;
@@ -47,3 +47,5 @@ export type SpotlightDisplayStyleType = "carousel" | "slider";
47
47
  export type SpotlightSectionType = "single" | "multi";
48
48
  export type SpotlightLineDisplayType = "solid" | "dots";
49
49
  export type SpotlightLineType = "bend" | "auto" | "straight";
50
+ export type HorizontalOrientation = "left" | "right";
51
+ export type VerticalOrientation = "top" | "bottom";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sc-360-v2/storefront-cms-library",
3
- "version": "0.3.28",
3
+ "version": "0.3.30",
4
4
  "main": "/dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "exports": {