@sc-360-v2/storefront-cms-library 0.5.53 → 0.5.54
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 +9 -248
- package/dist/allocations-quota-details.scss +451 -0
- package/dist/allocations.scss +112 -0
- package/dist/builder.js +1 -1
- package/dist/hotspot.scss +1 -1
- package/dist/language-selector.scss +4 -4
- package/dist/login.scss +49 -9
- package/dist/order-status.scss +228 -136
- package/dist/repeater-item.scss +2 -2
- package/dist/request-for-quotes.scss +1 -1
- package/dist/types/builder/tools/element-edit/cartSummary.d.ts +187 -0
- package/dist/types/builder/tools/element-edit/icon-list.d.ts +22 -0
- package/dist/types/builder/tools/element-edit/language-menu.d.ts +0 -1
- package/dist/types/builder/tools/element-edit/orderStatus.d.ts +320 -187
- package/dist/types/builder/tools/element-edit/userElements.d.ts +192 -7
- package/dist/user-elements.scss +253 -221
- package/package.json +1 -1
package/dist/hotspot.scss
CHANGED
|
@@ -210,7 +210,7 @@ $data: (
|
|
|
210
210
|
min-width: 100px;
|
|
211
211
|
width: prepareMediaVariable(--_ctm-dn-tp-dn-tp-wh);
|
|
212
212
|
min-height: 100px;
|
|
213
|
-
height: prepareMediaVariable(--_ctm-dn-tp-dn-ht);
|
|
213
|
+
height: prepareMediaVariable(--_ctm-dn-tp-dn-tp-ht);
|
|
214
214
|
top: var(--_sf-im-psn-tp, 0);
|
|
215
215
|
left: var(--_sf-im-psn-lt, 0);
|
|
216
216
|
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
// Deliberately no final fallback inside these chains: an untouched property stays
|
|
11
11
|
// invalid at computed-value time, which is what lets the consumers fall back to
|
|
12
12
|
// `--_ctm-dn-wt-pr-tt-*`. Those come from the retired Widget Placeholder Text
|
|
13
|
-
// section
|
|
13
|
+
// section — Widget Style absorbed it, so the fallback exists only for pages saved
|
|
14
14
|
// before the merge. Same shape the divider already uses for its
|
|
15
15
|
// hover-falls-back-to-default chain below.
|
|
16
16
|
$widgetFontProps:
|
|
@@ -581,7 +581,7 @@ $widgetFontProps:
|
|
|
581
581
|
min-width: 0;
|
|
582
582
|
|
|
583
583
|
// Widget Style > padding (was Widget Placeholder Text > padding). It used to sit
|
|
584
|
-
// on `.value__selected__new` only, which is the *empty* state
|
|
584
|
+
// on `.value__selected__new` only, which is the *empty* state — as soon as an
|
|
585
585
|
// option was selected the markup switched to this branch and the padding
|
|
586
586
|
// appeared to do nothing.
|
|
587
587
|
padding: var(--_sf-wt-pg, prepareMediaVariable(--_ctm-dn-wt-pr-tt-pg));
|
|
@@ -651,7 +651,7 @@ $widgetFontProps:
|
|
|
651
651
|
// padding: 8px 12px;
|
|
652
652
|
// text-align: left;
|
|
653
653
|
// Same order as `.option_select .language__name` above: Widget Style's per-state
|
|
654
|
-
// typography first, Widget Placeholder Text second. This is the empty branch
|
|
654
|
+
// typography first, Widget Placeholder Text second. This is the empty branch —
|
|
655
655
|
// the two swap in the markup as soon as an option is picked, so they have to
|
|
656
656
|
// resolve identically or the text would jump on first selection.
|
|
657
657
|
font-family: var(--_sf-wt-ft-fy, prepareMediaVariable(--_ctm-dn-wt-pr-tt-ft-fy));
|
|
@@ -811,7 +811,7 @@ $widgetFontProps:
|
|
|
811
811
|
|
|
812
812
|
// Widget Style > Hover > Text Overflow. The clamp pair reaches the DOM as an
|
|
813
813
|
// inline style (it is `controls`, not CSS), so hover cannot be expressed by
|
|
814
|
-
// the variable cascade above
|
|
814
|
+
// the variable cascade above — the element publishes both pairs on the label
|
|
815
815
|
// and this rule chooses the hovered one, falling back to the default pair.
|
|
816
816
|
// Safe to scope on the wrapper: the options list is its sibling, not a
|
|
817
817
|
// descendant, so option labels keep their own Item Style clamp.
|
package/dist/login.scss
CHANGED
|
@@ -191,18 +191,58 @@
|
|
|
191
191
|
// Login Box
|
|
192
192
|
.loginBox {
|
|
193
193
|
width: 100%;
|
|
194
|
-
// background-color: var(
|
|
195
|
-
// --_ctm-mob-dn-wt-bd-cr,
|
|
196
|
-
// var(--_ctm-tab-dn-wt-bd-cr, var(--_ctm-dn-wt-bd-cr))
|
|
197
|
-
// );
|
|
198
|
-
gap: var(--_ctm-mob-dn-wt-im-gp, var(--_ctm-tab-dn-wt-im-gp, var(--_ctm-dn-wt-im-gp)));
|
|
199
194
|
display: flex;
|
|
200
195
|
flex-direction: column;
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
196
|
+
box-sizing: border-box;
|
|
197
|
+
gap: prepareMediaVariable(
|
|
198
|
+
--_ctm-dn-ln-wt-im-gp,
|
|
199
|
+
prepareMediaVariable(--_ctm-dn-wt-im-gp, 0px)
|
|
200
|
+
);
|
|
201
|
+
background-color: prepareMediaVariable(
|
|
202
|
+
--_ctm-dn-ln-wt-bd-cr,
|
|
203
|
+
prepareMediaVariable(--_ctm-dn-wt-bd-cr, transparent)
|
|
204
|
+
);
|
|
205
|
+
padding: prepareMediaVariable(
|
|
206
|
+
--_ctm-dn-ln-wt-pg,
|
|
207
|
+
prepareMediaVariable(--_ctm-dn-wt-pg, 0px)
|
|
208
|
+
);
|
|
209
|
+
|
|
210
|
+
border-color: prepareMediaVariable(
|
|
211
|
+
--_ctm-dn-ln-wt-br-cr,
|
|
212
|
+
prepareMediaVariable(--_ctm-dn-wt-br-cr, transparent)
|
|
213
|
+
);
|
|
214
|
+
border-style: prepareMediaVariable(
|
|
215
|
+
--_ctm-dn-ln-wt-br-se,
|
|
216
|
+
prepareMediaVariable(--_ctm-dn-wt-br-se, none)
|
|
217
|
+
);
|
|
218
|
+
border-width: prepareMediaVariable(
|
|
219
|
+
--_ctm-dn-ln-wt-br-wh,
|
|
220
|
+
prepareMediaVariable(--_ctm-dn-wt-br-wh, 0px)
|
|
221
|
+
);
|
|
222
|
+
border-radius: prepareMediaVariable(
|
|
223
|
+
--_ctm-dn-ln-wt-br-rs,
|
|
224
|
+
prepareMediaVariable(--_ctm-dn-wt-br-rs, 0px)
|
|
225
|
+
);
|
|
226
|
+
|
|
227
|
+
box-shadow: var(
|
|
228
|
+
--_show-shadow,
|
|
229
|
+
prepareMediaVariable(
|
|
230
|
+
--_ctm-dn-ln-wt-sw-ae,
|
|
231
|
+
prepareMediaVariable(--_ctm-dn-wt-sw-ae, 0px 0px)
|
|
232
|
+
)
|
|
233
|
+
prepareMediaVariable(
|
|
234
|
+
--_ctm-dn-ln-wt-sw-br,
|
|
235
|
+
prepareMediaVariable(--_ctm-dn-wt-sw-br, 0px)
|
|
236
|
+
)
|
|
237
|
+
prepareMediaVariable(
|
|
238
|
+
--_ctm-dn-ln-wt-sw-sd,
|
|
239
|
+
prepareMediaVariable(--_ctm-dn-wt-sw-sd, 0px)
|
|
240
|
+
)
|
|
241
|
+
prepareMediaVariable(
|
|
242
|
+
--_ctm-dn-ln-wt-sw-cr,
|
|
243
|
+
prepareMediaVariable(--_ctm-dn-wt-sw-cr, transparent)
|
|
244
|
+
)
|
|
204
245
|
);
|
|
205
|
-
padding: var(--_ctm-mob-dn-wt-pg, var(--_ctm-tab-dn-wt-pg, var(--_ctm-dn-wt-pg)));
|
|
206
246
|
}
|
|
207
247
|
|
|
208
248
|
.login_box_header {
|