@sc-360-v2/storefront-cms-library 0.4.87 → 0.4.89
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 +8 -0
- package/dist/brand-basic-elements.scss +31 -19
- package/dist/builder.js +1 -1
- package/dist/cart-summary.scss +5 -0
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/login.scss +1 -0
- package/dist/product-basic-elements.scss +5 -0
- package/dist/product-image.scss +1 -1
- package/dist/skeleton.scss +75 -74
- package/dist/types/builder/tools/element-edit/cart.d.ts +1 -0
- package/dist/variant-picker.scss +7 -0
- package/package.json +1 -1
package/dist/login.scss
CHANGED
|
@@ -81,6 +81,7 @@ $overflowSelector: ".flex__overflow";
|
|
|
81
81
|
}
|
|
82
82
|
.text-element {
|
|
83
83
|
word-break: break-word;
|
|
84
|
+
|
|
84
85
|
// background-color: var(--_ctm-mob-dn-bd-cr, var(--_ctm-tab-dn-bd-cr, var(--_ctm-dn-bd-cr)));
|
|
85
86
|
// padding: var(--_ctm-mob-lt-pg, var(--_ctm-tab-lt-pg, var(--_ctm-lt-pg)));
|
|
86
87
|
// display: flex;
|
|
@@ -91,6 +92,10 @@ $overflowSelector: ".flex__overflow";
|
|
|
91
92
|
--_sf-cd-gp: calc(var(--_sf-gp) * 0.5);
|
|
92
93
|
row-gap: var(--_sf-gp);
|
|
93
94
|
width: 100%;
|
|
95
|
+
&:has(.skeleton__element) {
|
|
96
|
+
display: flex;
|
|
97
|
+
align-items: start;
|
|
98
|
+
}
|
|
94
99
|
|
|
95
100
|
&#{$overflowSelector} {
|
|
96
101
|
@include restrictToLinesShow(#{var(--_sf-line-clamp, 1)});
|
package/dist/product-image.scss
CHANGED
package/dist/skeleton.scss
CHANGED
|
@@ -1,74 +1,75 @@
|
|
|
1
|
-
.skeleton__element {
|
|
2
|
-
background-color: var(--_gray-300);
|
|
3
|
-
border-radius: 6px;
|
|
4
|
-
position: var(--_p-relative);
|
|
5
|
-
overflow: hidden;
|
|
6
|
-
display: inline-block;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
rgba(255, 255, 255, 0
|
|
21
|
-
rgba(255, 255, 255, 0)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
}
|
|
1
|
+
.skeleton__element {
|
|
2
|
+
background-color: var(--_gray-300);
|
|
3
|
+
border-radius: 6px;
|
|
4
|
+
position: var(--_p-relative);
|
|
5
|
+
overflow: hidden;
|
|
6
|
+
display: inline-block;
|
|
7
|
+
min-height: 12px;
|
|
8
|
+
&.rounded {
|
|
9
|
+
border-radius: 50%;
|
|
10
|
+
}
|
|
11
|
+
&::before {
|
|
12
|
+
content: "";
|
|
13
|
+
position: absolute;
|
|
14
|
+
top: 0;
|
|
15
|
+
left: 0;
|
|
16
|
+
width: 100%;
|
|
17
|
+
height: 100%;
|
|
18
|
+
background: linear-gradient(
|
|
19
|
+
90deg,
|
|
20
|
+
rgba(255, 255, 255, 0) 0%,
|
|
21
|
+
rgba(255, 255, 255, 0.6) 50%,
|
|
22
|
+
rgba(255, 255, 255, 0) 100%
|
|
23
|
+
);
|
|
24
|
+
animation: skeleton-shimmer 1.5s infinite ease-in-out;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@keyframes skeleton-shimmer {
|
|
29
|
+
0% {
|
|
30
|
+
transform: translateX(-100%);
|
|
31
|
+
}
|
|
32
|
+
100% {
|
|
33
|
+
transform: translateX(100%);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// dropdown skeletons
|
|
38
|
+
.dpd_skeleton {
|
|
39
|
+
display: flex;
|
|
40
|
+
flex-direction: column;
|
|
41
|
+
gap: 4px;
|
|
42
|
+
padding: 4px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// dropdown skeletons
|
|
46
|
+
.opt1_skeleton {
|
|
47
|
+
display: flex;
|
|
48
|
+
flex-direction: column;
|
|
49
|
+
padding: 4px 12px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.opt2_skeleton {
|
|
53
|
+
display: flex;
|
|
54
|
+
flex-direction: column;
|
|
55
|
+
gap: 16px;
|
|
56
|
+
padding: 8px;
|
|
57
|
+
.emp_types {
|
|
58
|
+
display: flex;
|
|
59
|
+
flex-direction: column;
|
|
60
|
+
gap: 6px;
|
|
61
|
+
.emp_type {
|
|
62
|
+
display: flex;
|
|
63
|
+
gap: 8px;
|
|
64
|
+
}
|
|
65
|
+
.emp_dtls {
|
|
66
|
+
display: flex;
|
|
67
|
+
flex-direction: column;
|
|
68
|
+
gap: 6px;
|
|
69
|
+
.emp_code {
|
|
70
|
+
display: flex;
|
|
71
|
+
gap: 8px;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
package/dist/variant-picker.scss
CHANGED
|
@@ -76,6 +76,13 @@ $minWidth: 70px;
|
|
|
76
76
|
gap: var(--_ctm-mob-lt-im-sg, var(--_ctm-tab-lt-im-sg, var(--_ctm-lt-im-sg)));
|
|
77
77
|
padding: var(--_ctm-mob-lt-pg, var(--_ctm-tab-lt-pg, var(--_ctm-lt-pg)));
|
|
78
78
|
white-space: nowrap;
|
|
79
|
+
.variant__option {
|
|
80
|
+
width: 100%;
|
|
81
|
+
.variant__list {
|
|
82
|
+
display: flex;
|
|
83
|
+
gap: 12px;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
79
86
|
|
|
80
87
|
.standard_wrapper {
|
|
81
88
|
// Select Colors
|