@sc-360-v2/storefront-cms-library 0.4.21 → 0.4.23
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 +11 -4
- package/dist/builder.js +1 -1
- package/dist/countdown.scss +16 -12
- package/dist/order-status.scss +86 -37
- package/dist/section.scss +8 -1
- package/dist/types/builder/tools/element-edit/common.d.ts +6 -0
- package/dist/types/builder/tools/element-edit/countdown.d.ts +4 -25
- package/dist/types/builder/tools/element-edit/productPrice.d.ts +12 -1
- package/dist/types/website/constants/data-connector-souces.d.ts +410 -0
- package/dist/types/website/index.d.ts +2 -1
- package/dist/website.js +1 -1
- package/package.json +1 -1
package/dist/allocations.scss
CHANGED
|
@@ -21,8 +21,10 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
21
21
|
& > div {
|
|
22
22
|
&.wrapper {
|
|
23
23
|
width: 100%;
|
|
24
|
-
min-width: 400px;
|
|
25
|
-
max-width: 700px;
|
|
24
|
+
// min-width: 400px;
|
|
25
|
+
// max-width: 700px;
|
|
26
|
+
width: 100%;
|
|
27
|
+
height: prepareMediaVariable(--_ctm-lt-ht);
|
|
26
28
|
}
|
|
27
29
|
}
|
|
28
30
|
|
|
@@ -554,7 +556,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
554
556
|
align-self: stretch;
|
|
555
557
|
align-items: center;
|
|
556
558
|
overflow-x: auto;
|
|
557
|
-
|
|
559
|
+
width: 100%;
|
|
558
560
|
.table__common_parent {
|
|
559
561
|
// width: var(--_sf-nw-wh, var(--_tst-lt-wh));
|
|
560
562
|
width: 100%;
|
|
@@ -700,6 +702,9 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
700
702
|
}
|
|
701
703
|
|
|
702
704
|
.table__wrapper {
|
|
705
|
+
flex: 1 1 auto;
|
|
706
|
+
min-width: 0;
|
|
707
|
+
overflow-x: auto;
|
|
703
708
|
padding: var(
|
|
704
709
|
--_ctm-mob-lt-pg,
|
|
705
710
|
var(--_ctm-tab-lt-pg, var(--_ctm-lt-pg, var(--_tst-lt-pg)))
|
|
@@ -768,7 +773,9 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
768
773
|
width: 100%;
|
|
769
774
|
// height: 100%;
|
|
770
775
|
text-align: var(--_ctm-mob-lt-ct-at, var(--_ctm-tab-lt-ct-at, var(--_ctm-lt-ct-at)));
|
|
771
|
-
|
|
776
|
+
width: max-content;
|
|
777
|
+
min-width: 100%;
|
|
778
|
+
table-layout: auto;
|
|
772
779
|
th,
|
|
773
780
|
td {
|
|
774
781
|
border: none;
|