@sc-360-v2/storefront-cms-library 0.4.80 → 0.4.81
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/allocations.scss +1613 -1603
- package/dist/builder.js +1 -1
- package/dist/buyForHeaders.scss +6 -0
- package/dist/buyForPopup.scss +0 -2
- package/dist/cart.scss +16 -8
- package/dist/shipping-payments.scss +0 -1
- package/dist/types/builder/tools/element-edit/bundleDetails.d.ts +152 -1
- package/dist/types/builder/tools/element-edit/userElements.d.ts +10 -0
- package/dist/user-elements.scss +2 -0
- package/package.json +1 -1
package/dist/buyForHeaders.scss
CHANGED
|
@@ -4927,6 +4927,12 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
4927
4927
|
font-size: 14px;
|
|
4928
4928
|
font-weight: 600;
|
|
4929
4929
|
}
|
|
4930
|
+
.cart_summary_shippingLabel_text {
|
|
4931
|
+
color: #667085;
|
|
4932
|
+
font-weight: 400;
|
|
4933
|
+
font-size: 14px;
|
|
4934
|
+
text-align: left;
|
|
4935
|
+
}
|
|
4930
4936
|
}
|
|
4931
4937
|
.cart_summary_content_details_wrapper {
|
|
4932
4938
|
display: flex;
|
package/dist/buyForPopup.scss
CHANGED
|
@@ -72,7 +72,6 @@
|
|
|
72
72
|
padding-inline: 16px;
|
|
73
73
|
.est__dropdown {
|
|
74
74
|
border: 1px solid var(--_gray-300) !important;
|
|
75
|
-
height: 44px;
|
|
76
75
|
&:focus-within {
|
|
77
76
|
box-shadow: 0px 0px 0px 3px var(--_gray-100);
|
|
78
77
|
border-radius: inherit;
|
|
@@ -80,7 +79,6 @@
|
|
|
80
79
|
}
|
|
81
80
|
.list .list__option {
|
|
82
81
|
font-size: 14px;
|
|
83
|
-
margin: 4px;
|
|
84
82
|
border-radius: 4px;
|
|
85
83
|
}
|
|
86
84
|
.est__dropdown__button {
|
package/dist/cart.scss
CHANGED
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
&.cart__button {
|
|
49
49
|
display: flex;
|
|
50
50
|
position: relative;
|
|
51
|
-
inset: var(
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
);
|
|
51
|
+
// inset: var(
|
|
52
|
+
// --_ctm-mob-dn-ct-in-in-pn-wh-ss,
|
|
53
|
+
// var(--_ctm-tab-dn-ct-in-in-pn-wh-ss, var(--_ctm-dn-ct-in-in-pn-wh-ss))
|
|
54
|
+
// );
|
|
55
55
|
}
|
|
56
56
|
svg {
|
|
57
57
|
width: var(
|
|
@@ -148,11 +148,19 @@
|
|
|
148
148
|
var(--_ctm-tab-dn-ct-is-ct-sw-cr, var(--_ctm-dn-ct-is-ct-sw-cr, none))
|
|
149
149
|
)
|
|
150
150
|
);
|
|
151
|
-
height: 20px;
|
|
152
|
-
width: 20px;
|
|
151
|
+
// height: 20px;
|
|
152
|
+
// width: 20px;
|
|
153
|
+
padding: var(
|
|
154
|
+
--_ctm-mob-dn-ct-is-ct-pg,
|
|
155
|
+
var(--_ctm-tab-dn-ct-is-ct-pg, var(--_ctm-dn-ct-is-ct-pg))
|
|
156
|
+
);
|
|
153
157
|
position: absolute;
|
|
154
|
-
top: -3px;
|
|
155
|
-
right: -7px;
|
|
158
|
+
// top: -3px;
|
|
159
|
+
// right: -7px;
|
|
160
|
+
inset: var(
|
|
161
|
+
--_ctm-mob-dn-ct-in-in-pn-wh-ss,
|
|
162
|
+
var(--_ctm-tab-dn-ct-in-in-pn-wh-ss, var(--_ctm-dn-ct-in-in-pn-wh-ss))
|
|
163
|
+
);
|
|
156
164
|
display: flex;
|
|
157
165
|
align-items: center;
|
|
158
166
|
justify-content: center;
|
|
@@ -32,7 +32,15 @@ export declare enum SelectorKeysEnum {
|
|
|
32
32
|
PRODUCT_INFO_DESIGN = "productInfoDesign",
|
|
33
33
|
PRODUCT_PRICE_DESIGN = "productPriceDesign",
|
|
34
34
|
SELECT_BUTTON_DESIGN = "selectButtonDesign",
|
|
35
|
-
ADD_TO_CART_BUTTON_DESIGN = "addToCartButtonDesign"
|
|
35
|
+
ADD_TO_CART_BUTTON_DESIGN = "addToCartButtonDesign",
|
|
36
|
+
PRODUCT_CARD_QUANTITY = "productCardQuantity",
|
|
37
|
+
QUANTITY_INPUT = "quantityInput",
|
|
38
|
+
QUANTITY_LABEL = "quantityLabel",
|
|
39
|
+
ADD_TO_CART_LAYOUT = "addToCartLayout",
|
|
40
|
+
ADD_TO_CART_TITLE = "addToCartTitle",
|
|
41
|
+
ADD_TO_CART_LABEL = "addToCartLabel",
|
|
42
|
+
ADD_TO_CART_QUANTITY_INPUT = "addToCartInput",
|
|
43
|
+
ADD_TO_CART_PRICE = "addToCartPrice"
|
|
36
44
|
}
|
|
37
45
|
export declare const getDefaultData: () => {
|
|
38
46
|
layout: {
|
|
@@ -1464,6 +1472,149 @@ export declare const getDefaultData: () => {
|
|
|
1464
1472
|
paginationLine: any;
|
|
1465
1473
|
layout: any;
|
|
1466
1474
|
};
|
|
1475
|
+
productQuantity: {
|
|
1476
|
+
selectorKey: SelectorKeysEnum;
|
|
1477
|
+
quantityInput: {
|
|
1478
|
+
padding: any;
|
|
1479
|
+
theme: CMSIBCommonInterface;
|
|
1480
|
+
font: CMSIBCommonInterface;
|
|
1481
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1482
|
+
textColor: CMSIBCommonInterface;
|
|
1483
|
+
bold: CMSIBCommonInterface;
|
|
1484
|
+
italic: CMSIBCommonInterface;
|
|
1485
|
+
linethrough: CMSIBCommonInterface;
|
|
1486
|
+
underline: CMSIBCommonInterface;
|
|
1487
|
+
textAlign: CMSIBCommonInterface;
|
|
1488
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1489
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1490
|
+
backgroundColor: CMSIBCommonInterface;
|
|
1491
|
+
borderColor: CMSIBCommonInterface;
|
|
1492
|
+
borderStyle: CMSIBCommonInterface;
|
|
1493
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
1494
|
+
showBorder: CMSIBCommonInterface;
|
|
1495
|
+
showShadow: CMSIBCommonInterface;
|
|
1496
|
+
shadowColor: CMSIBCommonInterface;
|
|
1497
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1498
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1499
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1500
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
1501
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1502
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1503
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1504
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1505
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1506
|
+
selectorKey: SelectorKeysEnum;
|
|
1507
|
+
};
|
|
1508
|
+
quantityLabel: {
|
|
1509
|
+
theme: CMSIBCommonInterface;
|
|
1510
|
+
font: CMSIBCommonInterface;
|
|
1511
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1512
|
+
textColor: CMSIBCommonInterface;
|
|
1513
|
+
bold: CMSIBCommonInterface;
|
|
1514
|
+
italic: CMSIBCommonInterface;
|
|
1515
|
+
linethrough: CMSIBCommonInterface;
|
|
1516
|
+
underline: CMSIBCommonInterface;
|
|
1517
|
+
textAlign: CMSIBCommonInterface;
|
|
1518
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1519
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1520
|
+
backgroundColor: CMSIBCommonInterface;
|
|
1521
|
+
selectorKey: SelectorKeysEnum;
|
|
1522
|
+
};
|
|
1523
|
+
};
|
|
1524
|
+
addToCartLayout: {
|
|
1525
|
+
selectorKey: SelectorKeysEnum;
|
|
1526
|
+
quantityLabel: {
|
|
1527
|
+
theme: CMSIBCommonInterface;
|
|
1528
|
+
font: CMSIBCommonInterface;
|
|
1529
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1530
|
+
textColor: CMSIBCommonInterface;
|
|
1531
|
+
bold: CMSIBCommonInterface;
|
|
1532
|
+
italic: CMSIBCommonInterface;
|
|
1533
|
+
linethrough: CMSIBCommonInterface;
|
|
1534
|
+
underline: CMSIBCommonInterface;
|
|
1535
|
+
textAlign: CMSIBCommonInterface;
|
|
1536
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1537
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1538
|
+
backgroundColor: CMSIBCommonInterface;
|
|
1539
|
+
selectorKey: SelectorKeysEnum;
|
|
1540
|
+
};
|
|
1541
|
+
priceLabel: {
|
|
1542
|
+
theme: CMSIBCommonInterface;
|
|
1543
|
+
font: CMSIBCommonInterface;
|
|
1544
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1545
|
+
textColor: CMSIBCommonInterface;
|
|
1546
|
+
bold: CMSIBCommonInterface;
|
|
1547
|
+
italic: CMSIBCommonInterface;
|
|
1548
|
+
linethrough: CMSIBCommonInterface;
|
|
1549
|
+
underline: CMSIBCommonInterface;
|
|
1550
|
+
textAlign: CMSIBCommonInterface;
|
|
1551
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1552
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1553
|
+
backgroundColor: CMSIBCommonInterface;
|
|
1554
|
+
selectorKey: SelectorKeysEnum;
|
|
1555
|
+
};
|
|
1556
|
+
input: {
|
|
1557
|
+
padding: any;
|
|
1558
|
+
theme: CMSIBCommonInterface;
|
|
1559
|
+
font: CMSIBCommonInterface;
|
|
1560
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1561
|
+
textColor: CMSIBCommonInterface;
|
|
1562
|
+
bold: CMSIBCommonInterface;
|
|
1563
|
+
italic: CMSIBCommonInterface;
|
|
1564
|
+
linethrough: CMSIBCommonInterface;
|
|
1565
|
+
underline: CMSIBCommonInterface;
|
|
1566
|
+
textAlign: CMSIBCommonInterface;
|
|
1567
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1568
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1569
|
+
backgroundColor: CMSIBCommonInterface;
|
|
1570
|
+
borderColor: CMSIBCommonInterface;
|
|
1571
|
+
borderStyle: CMSIBCommonInterface;
|
|
1572
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
1573
|
+
showBorder: CMSIBCommonInterface;
|
|
1574
|
+
showShadow: CMSIBCommonInterface;
|
|
1575
|
+
shadowColor: CMSIBCommonInterface;
|
|
1576
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1577
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1578
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1579
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
1580
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1581
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1582
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1583
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1584
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1585
|
+
selectorKey: SelectorKeysEnum;
|
|
1586
|
+
};
|
|
1587
|
+
title: {
|
|
1588
|
+
theme: CMSIBCommonInterface;
|
|
1589
|
+
font: CMSIBCommonInterface;
|
|
1590
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1591
|
+
textColor: CMSIBCommonInterface;
|
|
1592
|
+
bold: CMSIBCommonInterface;
|
|
1593
|
+
italic: CMSIBCommonInterface;
|
|
1594
|
+
linethrough: CMSIBCommonInterface;
|
|
1595
|
+
underline: CMSIBCommonInterface;
|
|
1596
|
+
textAlign: CMSIBCommonInterface;
|
|
1597
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1598
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1599
|
+
backgroundColor: CMSIBCommonInterface;
|
|
1600
|
+
selectorKey: SelectorKeysEnum;
|
|
1601
|
+
};
|
|
1602
|
+
price: {
|
|
1603
|
+
theme: CMSIBCommonInterface;
|
|
1604
|
+
font: CMSIBCommonInterface;
|
|
1605
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1606
|
+
textColor: CMSIBCommonInterface;
|
|
1607
|
+
bold: CMSIBCommonInterface;
|
|
1608
|
+
italic: CMSIBCommonInterface;
|
|
1609
|
+
linethrough: CMSIBCommonInterface;
|
|
1610
|
+
underline: CMSIBCommonInterface;
|
|
1611
|
+
textAlign: CMSIBCommonInterface;
|
|
1612
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1613
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1614
|
+
backgroundColor: CMSIBCommonInterface;
|
|
1615
|
+
selectorKey: SelectorKeysEnum;
|
|
1616
|
+
};
|
|
1617
|
+
};
|
|
1467
1618
|
};
|
|
1468
1619
|
errorMessage: {
|
|
1469
1620
|
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
@@ -363,6 +363,11 @@ export declare const getDefaultData: () => {
|
|
|
363
363
|
selectorKey: SelectorKeysEnum;
|
|
364
364
|
};
|
|
365
365
|
quotaHeadingDesign: {
|
|
366
|
+
maxCharacters: {
|
|
367
|
+
value: number;
|
|
368
|
+
property: string;
|
|
369
|
+
propertyType: CMSElementEditTypes;
|
|
370
|
+
};
|
|
366
371
|
theme: CMSIBCommonInterface;
|
|
367
372
|
font: CMSIBCommonInterface;
|
|
368
373
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -475,6 +480,11 @@ export declare const getDefaultData: () => {
|
|
|
475
480
|
selectorKey: SelectorKeysEnum;
|
|
476
481
|
};
|
|
477
482
|
allowanceHeadingDesign: {
|
|
483
|
+
maxCharacters: {
|
|
484
|
+
value: number;
|
|
485
|
+
property: string;
|
|
486
|
+
propertyType: CMSElementEditTypes;
|
|
487
|
+
};
|
|
478
488
|
theme: CMSIBCommonInterface;
|
|
479
489
|
font: CMSIBCommonInterface;
|
|
480
490
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
package/dist/user-elements.scss
CHANGED