@sc-360-v2/storefront-cms-library 0.3.53 → 0.3.55
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-order.scss +3 -0
- package/dist/add-products-tab.scss +15 -1
- package/dist/builder.js +1 -1
- package/dist/buy-for-tab.scss +15 -15
- package/dist/buyForHeaders.scss +6 -7
- package/dist/cart-details.scss +32 -42
- package/dist/cart-products-sidebar.scss +32 -16
- package/dist/cart-summary.scss +2 -4
- package/dist/cartDropdownOverlay.scss +3 -1
- package/dist/checkout.scss +4 -0
- package/dist/confirmationModal.scss +48 -0
- package/dist/container.scss +15 -15
- package/dist/customization-tree.scss +5 -1
- package/dist/dropdownTemplate.scss +5 -2
- package/dist/employee-bulk-order.scss +3233 -319
- package/dist/grid.scss +36 -0
- package/dist/icons.js +1 -1
- package/dist/image-temp.scss +47 -22
- package/dist/index.js +1 -1
- package/dist/layouter-pro-item.scss +1 -1
- package/dist/layouter-pro.scss +5 -5
- package/dist/modal.scss +357 -16
- package/dist/order-status.scss +49 -5
- package/dist/section.scss +5 -1
- package/dist/shareCartSideBar.scss +10 -8
- package/dist/shipping-payments.scss +19 -15
- package/dist/store-locations.scss +252 -160
- package/dist/tab-v2.scss +15 -15
- package/dist/text-temp.scss +4 -1
- package/dist/types/builder/tools/element-edit/cartSummary.d.ts +36 -0
- package/dist/types/builder/tools/element-edit/grid.d.ts +26 -0
- package/dist/types/builder/tools/element-edit/language-menu.d.ts +77 -0
- package/dist/types/builder/tools/element-edit/orderStatus.d.ts +4 -0
- package/dist/types/builder/tools/element-edit/userElements.d.ts +407 -0
- package/dist/user-elements.scss +1449 -490
- package/package.json +1 -1
package/dist/grid.scss
CHANGED
|
@@ -2,6 +2,13 @@ $activeElementSelector: "[data-has-clicked='true']";
|
|
|
2
2
|
$elementSelector: "[data-div-type='element']";
|
|
3
3
|
|
|
4
4
|
@use "./functions.scss" as *;
|
|
5
|
+
|
|
6
|
+
$flex: "flx";
|
|
7
|
+
$grid: "grd";
|
|
8
|
+
$flexRow: "rw";
|
|
9
|
+
$flexRowReverse: "rw-rv";
|
|
10
|
+
$flexColumn: "cln";
|
|
11
|
+
$flexColumnReverse: "cln-rv";
|
|
5
12
|
[data-div-type="grid"] {
|
|
6
13
|
position: var(--_p-relative);
|
|
7
14
|
display: var(--_d-grid);
|
|
@@ -78,6 +85,35 @@ $elementSelector: "[data-div-type='element']";
|
|
|
78
85
|
border-style: var(--_hide-grid-border, prepareMediaVariable(--_ctm-gri-dn-br-se));
|
|
79
86
|
border-width: var(--_hide-grid-border, prepareMediaVariable(--_ctm-gri-dn-br-wh));
|
|
80
87
|
border-radius: var(--_hide-grid-border, prepareMediaVariable(--_ctm-gri-dn-br-rs));
|
|
88
|
+
|
|
89
|
+
&:is(.#{$flex} > *) {
|
|
90
|
+
display: var(--_d-flex) !important;
|
|
91
|
+
column-gap: prepareMediaVariable(--_ctm-gri-lt-cn-gp);
|
|
92
|
+
row-gap: prepareMediaVariable(--_ctm-gri-lt-rw-gp);
|
|
93
|
+
flex-wrap: prepareMediaVariable(--_ctm-gri-lt-fx-wp);
|
|
94
|
+
overflow: prepareMediaVariable(--_ctm-gri-lt-fx-ow);
|
|
95
|
+
|
|
96
|
+
&.#{$flexRow} {
|
|
97
|
+
flex-direction: row;
|
|
98
|
+
align-items: prepareMediaVariable(--_ctm-gri-lt-an-is);
|
|
99
|
+
justify-content: prepareMediaVariable(--_ctm-gri-lt-jy-ct);
|
|
100
|
+
}
|
|
101
|
+
&.#{$flexRowReverse} {
|
|
102
|
+
flex-direction: row-reverse;
|
|
103
|
+
align-items: prepareMediaVariable(--_ctm-gri-lt-an-is);
|
|
104
|
+
justify-content: prepareMediaVariable(--_ctm-gri-lt-jy-ct);
|
|
105
|
+
}
|
|
106
|
+
&.#{$flexColumn} {
|
|
107
|
+
flex-direction: column;
|
|
108
|
+
justify-content: prepareMediaVariable(--_ctm-gri-lt-an-is);
|
|
109
|
+
align-items: prepareMediaVariable(--_ctm-gri-lt-jy-ct);
|
|
110
|
+
}
|
|
111
|
+
&.#{$flexColumnReverse} {
|
|
112
|
+
flex-direction: column-reverse;
|
|
113
|
+
justify-content: prepareMediaVariable(--_ctm-gri-lt-an-is);
|
|
114
|
+
align-items: prepareMediaVariable(--_ctm-gri-lt-jy-ct);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
81
117
|
}
|
|
82
118
|
}
|
|
83
119
|
}
|