@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/login.scss CHANGED
@@ -277,6 +277,7 @@
277
277
  );
278
278
  }
279
279
  .desc {
280
+ word-break: break-word;
280
281
  font-family: var(
281
282
  --_ctm-mob-dn-dn-ft-fy,
282
283
  var(--_ctm-tab-dn-dn-ft-fy, var(--_ctm-dn-dn-ft-fy))
@@ -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)});
@@ -91,7 +91,7 @@
91
91
  border-radius: 8px;
92
92
  overflow: hidden;
93
93
  background: white;
94
- cursor: zoom-in;
94
+ // cursor: zoom-in;
95
95
 
96
96
  img {
97
97
  width: 100%;
@@ -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
- &.rounded {
8
- border-radius: 50%;
9
- }
10
- &::before {
11
- content: "";
12
- position: absolute;
13
- top: 0;
14
- left: 0;
15
- width: 100%;
16
- height: 100%;
17
- background: linear-gradient(
18
- 90deg,
19
- rgba(255, 255, 255, 0) 0%,
20
- rgba(255, 255, 255, 0.6) 50%,
21
- rgba(255, 255, 255, 0) 100%
22
- );
23
- animation: skeleton-shimmer 1.5s infinite ease-in-out;
24
- }
25
- }
26
-
27
- @keyframes skeleton-shimmer {
28
- 0% {
29
- transform: translateX(-100%);
30
- }
31
- 100% {
32
- transform: translateX(100%);
33
- }
34
- }
35
-
36
- // dropdown skeletons
37
- .dpd_skeleton {
38
- display: flex;
39
- flex-direction: column;
40
- gap: 4px;
41
- padding: 4px;
42
- }
43
-
44
- // dropdown skeletons
45
- .opt1_skeleton {
46
- display: flex;
47
- flex-direction: column;
48
- padding: 4px 12px;
49
- }
50
-
51
- .opt2_skeleton {
52
- display: flex;
53
- flex-direction: column;
54
- gap: 16px;
55
- padding: 8px;
56
- .emp_types {
57
- display: flex;
58
- flex-direction: column;
59
- gap: 6px;
60
- .emp_type {
61
- display: flex;
62
- gap: 8px;
63
- }
64
- .emp_dtls {
65
- display: flex;
66
- flex-direction: column;
67
- gap: 6px;
68
- .emp_code {
69
- display: flex;
70
- gap: 8px;
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
+ }
@@ -78,6 +78,7 @@ export interface selfDesignInterface {
78
78
  textAlign: CMSIBCommonInterface;
79
79
  characterSpacing: CMSIBCommonInterface;
80
80
  lineHeight: CMSIBCommonInterface;
81
+ padding: CMSIBCommonInterface;
81
82
  };
82
83
  }
83
84
  export declare enum cartSelectorKeysEnum {
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sc-360-v2/storefront-cms-library",
3
- "version": "0.4.87",
3
+ "version": "0.4.89",
4
4
  "main": "/dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "exports": {