@snack-uikit/card 0.9.3-preview-314cc4de.0 → 0.9.3
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 0.9.3 (2024-02-01)
|
|
7
|
+
|
|
8
|
+
### Only dependencies have been changed
|
|
9
|
+
* [@snack-uikit/list@0.1.3](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/list/CHANGELOG.md)
|
|
10
|
+
* [@snack-uikit/tag@0.7.1](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/tag/CHANGELOG.md)
|
|
11
|
+
* [@snack-uikit/truncate-string@0.4.6](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/truncate-string/CHANGELOG.md)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## 0.9.2 (2024-01-31)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
.composition{
|
|
12
12
|
border-radius:var(--radius-card-container, 20px);
|
|
13
13
|
box-sizing:border-box;
|
|
14
|
-
height:100%;
|
|
15
14
|
}
|
|
16
15
|
|
|
17
16
|
.card{
|
|
@@ -82,7 +81,6 @@
|
|
|
82
81
|
}
|
|
83
82
|
.card[data-pointer][data-checked] .contentWrapper{
|
|
84
83
|
position:relative;
|
|
85
|
-
height:100%;
|
|
86
84
|
}
|
|
87
85
|
.card[data-pointer][data-checked] .contentWrapper::before{
|
|
88
86
|
content:"";
|
|
@@ -126,7 +124,6 @@
|
|
|
126
124
|
|
|
127
125
|
.body{
|
|
128
126
|
display:block;
|
|
129
|
-
width:100%;
|
|
130
127
|
color:var(--sys-neutral-text-support, #565656);
|
|
131
128
|
text-align:initial;
|
|
132
129
|
}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"title": "Card",
|
|
7
|
-
"version": "0.9.3
|
|
7
|
+
"version": "0.9.3",
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"*.css",
|
|
10
10
|
"*.woff",
|
|
@@ -35,13 +35,13 @@
|
|
|
35
35
|
"@snack-uikit/button": "0.15.1",
|
|
36
36
|
"@snack-uikit/icon-predefined": "0.4.1",
|
|
37
37
|
"@snack-uikit/icons": "0.20.0",
|
|
38
|
-
"@snack-uikit/list": "0.1.
|
|
38
|
+
"@snack-uikit/list": "0.1.3",
|
|
39
39
|
"@snack-uikit/promo-tag": "0.4.1",
|
|
40
|
-
"@snack-uikit/tag": "0.7.
|
|
41
|
-
"@snack-uikit/truncate-string": "0.4.
|
|
40
|
+
"@snack-uikit/tag": "0.7.1",
|
|
41
|
+
"@snack-uikit/truncate-string": "0.4.6",
|
|
42
42
|
"@snack-uikit/typography": "0.6.1",
|
|
43
43
|
"@snack-uikit/utils": "3.2.0",
|
|
44
44
|
"classnames": "2.3.2"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "0726752996aeaf01f58b892fef581c38c1528ea1"
|
|
47
47
|
}
|
|
@@ -18,7 +18,6 @@ $sizes: 's', 'm', 'l';
|
|
|
18
18
|
@include composite-var($card-composition-container);
|
|
19
19
|
|
|
20
20
|
box-sizing: border-box;
|
|
21
|
-
height: 100%;
|
|
22
21
|
}
|
|
23
22
|
|
|
24
23
|
.card {
|
|
@@ -108,7 +107,6 @@ $sizes: 's', 'm', 'l';
|
|
|
108
107
|
|
|
109
108
|
.contentWrapper {
|
|
110
109
|
position: relative;
|
|
111
|
-
height: 100%;
|
|
112
110
|
|
|
113
111
|
&::before {
|
|
114
112
|
content: '';
|
|
@@ -162,7 +160,6 @@ $sizes: 's', 'm', 'l';
|
|
|
162
160
|
|
|
163
161
|
.body {
|
|
164
162
|
display: block;
|
|
165
|
-
width: 100%;
|
|
166
163
|
color: $sys-neutral-text-support;
|
|
167
164
|
text-align: initial;
|
|
168
165
|
}
|