@sc-360-v2/storefront-cms-library 0.5.51 → 0.5.53

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 (50) hide show
  1. package/dist/add-order.scss +62 -13
  2. package/dist/allocationDetails.scss +438 -224
  3. package/dist/allocations.scss +172 -13
  4. package/dist/breadcrumbs.scss +13 -0
  5. package/dist/builder.js +1 -1
  6. package/dist/cart-details.scss +214 -0
  7. package/dist/cart-summary.scss +237 -854
  8. package/dist/cart.scss +57 -55
  9. package/dist/category-groups-product-image.scss +72 -21
  10. package/dist/faq.scss +48 -5
  11. package/dist/hotspot.scss +141 -74
  12. package/dist/icon-library.scss +78 -74
  13. package/dist/icon-list.scss +19 -1
  14. package/dist/image-temp.scss +17 -3
  15. package/dist/language-selector.scss +260 -76
  16. package/dist/light-box-v2.scss +4 -3
  17. package/dist/menu-v2.scss +51 -3
  18. package/dist/modal.scss +251 -28
  19. package/dist/my-templates.scss +11 -2
  20. package/dist/my-wishlist.scss +27 -17
  21. package/dist/product-basic-elements.scss +0 -246
  22. package/dist/product-image-allocation.scss +51 -15
  23. package/dist/product-image-bundles.scss +72 -15
  24. package/dist/product-image.scss +178 -19
  25. package/dist/profile.scss +44 -19
  26. package/dist/quota-details.scss +111 -11
  27. package/dist/repeater-embla-controls.scss +9 -1
  28. package/dist/repeater-grid-toggle.scss +42 -18
  29. package/dist/repeater-item.scss +34 -22
  30. package/dist/repeater.scss +69 -102
  31. package/dist/request-for-quotes.scss +15 -1
  32. package/dist/scroll.scss +52 -11
  33. package/dist/search.scss +1 -1
  34. package/dist/skeleton.scss +24 -35
  35. package/dist/tab-container.scss +14 -12
  36. package/dist/tab-v2.scss +178 -68
  37. package/dist/text-temp-v2.scss +11 -0
  38. package/dist/types/builder/tools/element-edit/allocationDetails.d.ts +17 -1
  39. package/dist/types/builder/tools/element-edit/breadcrumbs.d.ts +0 -5
  40. package/dist/types/builder/tools/element-edit/iconLibrary.d.ts +7 -1
  41. package/dist/types/builder/tools/element-edit/imageHotspot.d.ts +0 -1
  42. package/dist/types/builder/tools/element-edit/language-menu.d.ts +0 -14
  43. package/dist/types/builder/tools/element-edit/product-image.d.ts +1 -0
  44. package/dist/types/builder/tools/element-edit/repeater.d.ts +1 -1
  45. package/dist/types/builder/tools/element-edit/tabsV2.d.ts +55 -1
  46. package/dist/types/builder/tools/element-edit/userElements.d.ts +5 -0
  47. package/dist/types/builder/tools/element-edit/video.d.ts +32 -0
  48. package/dist/user-elements.scss +6 -0
  49. package/dist/video.scss +548 -476
  50. package/package.json +1 -1
@@ -184,6 +184,21 @@ export declare const getDefaultData: () => {
184
184
  };
185
185
  };
186
186
  videoWidgetDesign: {
187
+ textTransformDesc: {
188
+ value: string;
189
+ property: string;
190
+ propertyType: CMSElementEditTypes;
191
+ };
192
+ wordWrapDesc: {
193
+ value: string;
194
+ property: string;
195
+ propertyType: CMSElementEditTypes;
196
+ };
197
+ wordBreakDesc: {
198
+ value: string;
199
+ property: string;
200
+ propertyType: CMSElementEditTypes;
201
+ };
187
202
  themeDesc: {
188
203
  value: string;
189
204
  property: string;
@@ -285,6 +300,13 @@ export declare const getDefaultData: () => {
285
300
  propertyType: CMSElementEditTypes;
286
301
  parentRef: string;
287
302
  };
303
+ textTransform: {
304
+ value: string;
305
+ property: string;
306
+ propertyType: CMSElementEditTypes;
307
+ };
308
+ wordWrap: CMSIBCommonInterface;
309
+ wordBreak: CMSIBCommonInterface;
288
310
  theme: {
289
311
  value: string;
290
312
  property: string;
@@ -477,6 +499,16 @@ export declare const getDefaultData: () => {
477
499
  propertyType: CMSElementEditTypes;
478
500
  };
479
501
  backgroundColor: CMSIBCommonInterface;
502
+ padding: any;
503
+ showBorder: CMSIBCommonInterface;
504
+ borderColor: CMSIBCommonInterface;
505
+ borderStyle: CMSIBCommonInterface;
506
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
507
+ showShadow: CMSIBCommonInterface;
508
+ shadowColor: CMSIBCommonInterface;
509
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
510
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
511
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
480
512
  };
481
513
  };
482
514
  };
@@ -1069,6 +1069,12 @@ $resizeActive: '[data-cms-element-resizer="true"]';
1069
1069
  }
1070
1070
 
1071
1071
  .quote_item_wrapper {
1072
+ // Set only on the storefront, where clicking a quota row selects that
1073
+ // allocation and its profile. Builder/preview rows are dummy data.
1074
+ &[data-is-clickable="true"] {
1075
+ cursor: pointer;
1076
+ }
1077
+
1072
1078
  display: flex;
1073
1079
  flex-direction: row;
1074
1080
  gap: prepareMediaVariable(--_ctm-lt-qa-im-sg);