@sc-360-v2/storefront-cms-library 0.4.99 → 0.5.2
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/builder.js +1 -1
- package/dist/buyForHeaders.scss +5 -4
- package/dist/cart-summary.scss +2 -0
- package/dist/cartDropdownOverlay.scss +2 -1
- package/dist/coupon.scss +7 -3
- package/dist/customization-tree.scss +4 -3
- package/dist/dropdownTemplate.scss +2 -0
- package/dist/language-selector.scss +9 -8
- package/dist/my-templates.scss +2 -1
- package/dist/option-bar.scss +848 -845
- package/dist/order-status.scss +156 -17
- package/dist/phone-input.scss +3 -3
- package/dist/static-global.scss +1 -1
- package/dist/types/builder/tools/element-edit/addOrder.d.ts +13 -1
- package/dist/types/builder/tools/element-edit/orderStatus.d.ts +190 -15
- package/dist/types/website/constants/data-connector-souces.d.ts +25 -6
- package/dist/user-elements.scss +9 -0
- package/dist/website.js +1 -1
- package/package.json +1 -1
package/dist/buyForHeaders.scss
CHANGED
|
@@ -5058,9 +5058,10 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
5058
5058
|
width: 100%;
|
|
5059
5059
|
height: auto;
|
|
5060
5060
|
min-height: 48px;
|
|
5061
|
-
background:
|
|
5061
|
+
background-color: var(--_thm-py-bs-dt-se-bd-cr);
|
|
5062
5062
|
border-radius: 4px;
|
|
5063
|
-
|
|
5063
|
+
font-family: var(--_thm-py-bs-dt-se-ft);
|
|
5064
|
+
// border: 1px solid #243dc6;
|
|
5064
5065
|
color: #fff;
|
|
5065
5066
|
text-align: center;
|
|
5066
5067
|
font-size: 16px;
|
|
@@ -5070,9 +5071,9 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
5070
5071
|
width: 100%;
|
|
5071
5072
|
height: auto;
|
|
5072
5073
|
min-height: 48px;
|
|
5073
|
-
background:
|
|
5074
|
+
background-color: var(--_thm-py-bs-hr-se-bd-cr);
|
|
5074
5075
|
border-radius: 4px;
|
|
5075
|
-
border: 1px solid #243dc6;
|
|
5076
|
+
// border: 1px solid #243dc6;
|
|
5076
5077
|
color: #fff;
|
|
5077
5078
|
text-align: center;
|
|
5078
5079
|
font-size: 16px;
|
package/dist/cart-summary.scss
CHANGED
|
@@ -250,6 +250,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
250
250
|
--_ctm-mob-dn-pt-wt-pt-wt-im-im-gp,
|
|
251
251
|
var(--_ctm-tab-dn-pt-wt-pt-wt-im-im-gp, var(--_ctm-dn-pt-wt-pt-wt-im-im-gp))
|
|
252
252
|
);
|
|
253
|
+
width: 80%;
|
|
253
254
|
align-items: flex-start;
|
|
254
255
|
.cart_summary_pro_container {
|
|
255
256
|
width: 80px;
|
|
@@ -1276,6 +1277,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
1276
1277
|
var(--_ctm-tab-dn-pt-wt-pt-pe-pg, var(--_ctm-dn-pt-wt-pt-pe-pg))
|
|
1277
1278
|
);
|
|
1278
1279
|
margin-top: 2px;
|
|
1280
|
+
width: 20%;
|
|
1279
1281
|
}
|
|
1280
1282
|
.cart_summary_product_text {
|
|
1281
1283
|
font-family: var(
|
|
@@ -552,9 +552,10 @@ $button-padding: 6px 12px;
|
|
|
552
552
|
padding: 12px;
|
|
553
553
|
text-align: left;
|
|
554
554
|
width: 100%;
|
|
555
|
+
color: var(--_thm-cs-be-se-1);
|
|
555
556
|
&:hover {
|
|
556
557
|
background-color: var(--_gray-100);
|
|
557
|
-
color: var(--_thm-
|
|
558
|
+
color: var(--_thm-cs-be-se-1);
|
|
558
559
|
}
|
|
559
560
|
}
|
|
560
561
|
}
|
package/dist/coupon.scss
CHANGED
|
@@ -569,11 +569,15 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
569
569
|
var(--_ctm-tab-dn-cn-wt-it-fd-sw-cr, var(--_ctm-dn-cn-wt-it-fd-sw-cr))
|
|
570
570
|
);
|
|
571
571
|
transition:
|
|
572
|
-
outline
|
|
572
|
+
outline 0.2s ease,
|
|
573
573
|
border 0.2s ease;
|
|
574
574
|
&:focus {
|
|
575
|
-
|
|
576
|
-
outline:
|
|
575
|
+
outline: 0 none;
|
|
576
|
+
outline-offset: 0;
|
|
577
|
+
box-shadow:
|
|
578
|
+
0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
579
|
+
0px 0px 0px 2px var(--primary-100);
|
|
580
|
+
border: 1px solid var(--primary-300);
|
|
577
581
|
}
|
|
578
582
|
}
|
|
579
583
|
.btn__with__text[data-btn-name="applyButton"] {
|
|
@@ -36,6 +36,7 @@ $link-color: #243dc6;
|
|
|
36
36
|
.dotLine {
|
|
37
37
|
position: absolute;
|
|
38
38
|
left: -5px;
|
|
39
|
+
top: -13px;
|
|
39
40
|
}
|
|
40
41
|
|
|
41
42
|
// Base dot
|
|
@@ -60,9 +61,9 @@ $link-color: #243dc6;
|
|
|
60
61
|
.itemDetails {
|
|
61
62
|
margin: 15px 0;
|
|
62
63
|
p {
|
|
63
|
-
color:
|
|
64
|
+
color: var(--_thm-ty-p2-tt-cr);
|
|
64
65
|
font-size: 12px;
|
|
65
|
-
font-weight:
|
|
66
|
+
font-weight: 600;
|
|
66
67
|
line-height: 18px;
|
|
67
68
|
}
|
|
68
69
|
}
|
|
@@ -94,7 +95,7 @@ $link-color: #243dc6;
|
|
|
94
95
|
line-height: 20px;
|
|
95
96
|
& > span {
|
|
96
97
|
font-weight: 500;
|
|
97
|
-
color: var(--
|
|
98
|
+
color: var(--_thm-ty-p1-tt-cr);
|
|
98
99
|
}
|
|
99
100
|
.link {
|
|
100
101
|
color: $link-color;
|
|
@@ -120,6 +120,7 @@
|
|
|
120
120
|
border-radius: 50%;
|
|
121
121
|
width: 24px;
|
|
122
122
|
height: 24px;
|
|
123
|
+
object-fit: cover;
|
|
123
124
|
}
|
|
124
125
|
}
|
|
125
126
|
}
|
|
@@ -429,6 +430,7 @@
|
|
|
429
430
|
background-size: 100%;
|
|
430
431
|
background-position: center;
|
|
431
432
|
border-radius: 50%;
|
|
433
|
+
object-fit: cover;
|
|
432
434
|
}
|
|
433
435
|
.item-image-svg {
|
|
434
436
|
display: flex;
|
|
@@ -423,14 +423,15 @@
|
|
|
423
423
|
// padding: var(--_ctm-mob-lt-im-pg, var(--_ctm-tab-lt-im-pg, var(--_ctm-lt-im-pg)));
|
|
424
424
|
gap: var(--_ctm-mob-lt-im-sg, var(--_ctm-tab-lt-im-sg, var(--_ctm-lt-im-sg)));
|
|
425
425
|
.language__name {
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
);
|
|
426
|
+
font-family: prepareMediaVariable(--_ctm-dn-wt-pr-tt-ft-fy);
|
|
427
|
+
font-size: prepareMediaVariable(--_ctm-dn-wt-pr-tt-ft-se);
|
|
428
|
+
color: prepareMediaVariable(--_ctm-dn-wt-pr-tt-cr);
|
|
429
|
+
font-weight: prepareMediaVariable(--_ctm-dn-wt-pr-tt-ft-wt);
|
|
430
|
+
text-decoration: prepareMediaVariable(--_ctm-dn-wt-pr-tt-ue);
|
|
431
|
+
font-style: prepareMediaVariable(--_ctm-dn-wt-pr-tt-ft-se-ic);
|
|
432
|
+
text-align: prepareMediaVariable(--_ctm-dn-wt-pr-tt-tt-an);
|
|
433
|
+
letter-spacing: prepareMediaVariable(--_ctm-dn-wt-pr-tt-lr-sg);
|
|
434
|
+
line-height: prepareMediaVariable(--_ctm-dn-wt-pr-tt-le-ht);
|
|
434
435
|
@include restrictToLinesShow(1);
|
|
435
436
|
}
|
|
436
437
|
}
|
package/dist/my-templates.scss
CHANGED
|
@@ -409,7 +409,8 @@ $defaultValues: (
|
|
|
409
409
|
border-bottom: 1px solid var(--_thm-cs-be-se-3);
|
|
410
410
|
font-size: 16px;
|
|
411
411
|
font-weight: 600;
|
|
412
|
-
background-color:
|
|
412
|
+
background-color: #f5f5f5;
|
|
413
|
+
border-radius: 4px 4px 0 0;
|
|
413
414
|
color: var(--_thm-ty-p1-tt-cr);
|
|
414
415
|
}
|
|
415
416
|
.template_summary_body {
|