@sc-360-v2/storefront-cms-library 0.3.12 → 0.3.14
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/allocationDetails.scss +7 -1
- package/dist/badge.scss +382 -0
- package/dist/builder.js +1 -1
- package/dist/bulk-variant-picker copy.scss +1123 -0
- package/dist/bulk-variant-picker.scss +2629 -647
- package/dist/cart-summary.scss +11 -4
- package/dist/contact-us.scss +7 -1
- package/dist/filters.scss +42 -0
- package/dist/hotspot.scss +7 -1
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/layouter-pro.scss +3 -1
- package/dist/product-image.scss +23 -13
- package/dist/submit-quote.scss +250 -0
- package/dist/table.scss +8 -2
- package/dist/types/builder/elements/badge/index.d.ts +26 -0
- package/dist/types/builder/enums/index.d.ts +3 -1
- package/dist/types/builder/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/badge.d.ts +47 -0
- package/dist/types/builder/tools/element-edit/bulkVariantPicker copy.d.ts +119 -0
- package/dist/types/builder/tools/element-edit/bulkVariantPicker.d.ts +54 -17
- package/dist/types/builder/tools/element-edit/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/variantPicker.d.ts +1 -1
- package/dist/types/global/types.d.ts +1 -1
- package/dist/uom-selector.scss +0 -1
- package/dist/widget.scss +2 -0
- package/package.json +1 -1
|
@@ -32,7 +32,7 @@ export type CMSEditControlsTypes = "Slider" | "Settings" | string;
|
|
|
32
32
|
export type GlobalVideoAttributes = "src" | "poster" | "controls" | "autoplay" | "loop" | "muted" | "preload" | "crossOrigin" | "playsInline";
|
|
33
33
|
export type CommonBuilderAttributes = "dataDivType" | "dataType" | "dataElementType" | "dataWidgetType" | "dataElementSubChild";
|
|
34
34
|
export type GlobalTableAttributes = "cellPadding" | "cellSpacing" | "border" | "width" | "height" | "align" | "bgColor" | "frame" | "headers" | "rows" | "rules";
|
|
35
|
-
export type StackDirectionType = "horizontal" | "vertical";
|
|
35
|
+
export type StackDirectionType = "horizontal" | "vertical" | string;
|
|
36
36
|
export type FlexSizeType = "none" | "shrink" | "grow" | string;
|
|
37
37
|
export type ShowShubMenuType = "On Hover" | "On Click";
|
|
38
38
|
export type ObjectFitValue = "fill" | "contain" | "cover" | "none" | "scale-down" | string;
|
package/dist/uom-selector.scss
CHANGED
package/dist/widget.scss
CHANGED
|
@@ -109,6 +109,8 @@
|
|
|
109
109
|
@use "./user-elements.scss";
|
|
110
110
|
@use "./filter-results.scss";
|
|
111
111
|
@use "./product-sizechart.scss";
|
|
112
|
+
@use "./badge.scss";
|
|
112
113
|
@use "./toggle-button.scss";
|
|
113
114
|
@use "./employee-bulk-order.scss";
|
|
114
115
|
@use "./confirmationModal.scss";
|
|
116
|
+
@use "./submit-quote.scss";
|