@snack-uikit/list 0.32.12 → 0.32.14-preview-a84747fe.0
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 +13 -0
- package/dist/cjs/components/Items/PinGroupItem/styles.module.css +10 -10
- package/dist/cjs/helperComponents/Separator/styles.module.css +3 -1
- package/dist/esm/components/Items/PinGroupItem/styles.module.css +10 -10
- package/dist/esm/helperComponents/Separator/styles.module.css +3 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
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
|
+
## <small>0.32.13 (2026-02-18)</small>
|
|
7
|
+
|
|
8
|
+
### Only dependencies have been changed
|
|
9
|
+
* [@snack-uikit/icons@0.27.6]($PUBLIC_PROJECT_URL/blob/master/packages/icons/CHANGELOG.md)
|
|
10
|
+
* [@snack-uikit/info-block@0.6.37]($PUBLIC_PROJECT_URL/blob/master/packages/info-block/CHANGELOG.md)
|
|
11
|
+
* [@snack-uikit/search-private@0.4.35]($PUBLIC_PROJECT_URL/blob/master/packages/search-private/CHANGELOG.md)
|
|
12
|
+
* [@snack-uikit/toggles@0.13.25]($PUBLIC_PROJECT_URL/blob/master/packages/toggles/CHANGELOG.md)
|
|
13
|
+
* [@snack-uikit/truncate-string@0.7.8]($PUBLIC_PROJECT_URL/blob/master/packages/truncate-string/CHANGELOG.md)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
6
19
|
## <small>0.32.12 (2026-01-19)</small>
|
|
7
20
|
|
|
8
21
|
* chore(FF-6693): migrate tests from TestCafe to Playwright ([f32aff8](https://github.com/cloud-ru-tech/snack-uikit/commit/f32aff8))
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
.pinTopItem{
|
|
2
|
-
display:flex;
|
|
3
|
-
flex-direction:column;
|
|
4
|
-
border:none;
|
|
5
|
-
}
|
|
6
1
|
.pinTopItem[data-size=s]{
|
|
7
2
|
padding-bottom:var(--radius-drop-list-container, 4px);
|
|
8
3
|
gap:var(--radius-drop-list-container, 4px);
|
|
@@ -15,16 +10,16 @@
|
|
|
15
10
|
padding-bottom:var(--radius-drop-list-container, 4px);
|
|
16
11
|
gap:var(--radius-drop-list-container, 4px);
|
|
17
12
|
}
|
|
13
|
+
.pinTopItem{
|
|
14
|
+
display:flex;
|
|
15
|
+
flex-direction:column;
|
|
16
|
+
border:none;
|
|
17
|
+
}
|
|
18
18
|
.pinTopItem li,
|
|
19
19
|
.pinTopItem ul{
|
|
20
20
|
list-style-type:none;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
.pinBottomItem{
|
|
24
|
-
display:flex;
|
|
25
|
-
flex-direction:column;
|
|
26
|
-
border:none;
|
|
27
|
-
}
|
|
28
23
|
.pinBottomItem[data-size=s]{
|
|
29
24
|
padding-top:var(--radius-drop-list-container, 4px);
|
|
30
25
|
gap:var(--radius-drop-list-container, 4px);
|
|
@@ -37,6 +32,11 @@
|
|
|
37
32
|
padding-top:var(--radius-drop-list-container, 4px);
|
|
38
33
|
gap:var(--radius-drop-list-container, 4px);
|
|
39
34
|
}
|
|
35
|
+
.pinBottomItem{
|
|
36
|
+
display:flex;
|
|
37
|
+
flex-direction:column;
|
|
38
|
+
border:none;
|
|
39
|
+
}
|
|
40
40
|
.pinBottomItem li,
|
|
41
41
|
.pinBottomItem ul{
|
|
42
42
|
list-style-type:none;
|
|
@@ -82,7 +82,6 @@
|
|
|
82
82
|
.separatorWithoutLabel{
|
|
83
83
|
display:flex;
|
|
84
84
|
align-items:flex-end;
|
|
85
|
-
box-sizing:border-box;
|
|
86
85
|
}
|
|
87
86
|
.separatorWithoutLabel[data-size=s]{
|
|
88
87
|
padding-top:var(--space-drop-list-item-s-container-separator-subheader-vertical-padding, 4px);
|
|
@@ -102,6 +101,9 @@
|
|
|
102
101
|
padding-left:var(--space-drop-list-item-l-container-horizontal-padding, 12px);
|
|
103
102
|
padding-right:var(--space-drop-list-item-l-container-horizontal-padding, 12px);
|
|
104
103
|
}
|
|
104
|
+
.separatorWithoutLabel{
|
|
105
|
+
box-sizing:border-box;
|
|
106
|
+
}
|
|
105
107
|
|
|
106
108
|
.label{
|
|
107
109
|
overflow:hidden;
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
.pinTopItem{
|
|
2
|
-
display:flex;
|
|
3
|
-
flex-direction:column;
|
|
4
|
-
border:none;
|
|
5
|
-
}
|
|
6
1
|
.pinTopItem[data-size=s]{
|
|
7
2
|
padding-bottom:var(--radius-drop-list-container, 4px);
|
|
8
3
|
gap:var(--radius-drop-list-container, 4px);
|
|
@@ -15,16 +10,16 @@
|
|
|
15
10
|
padding-bottom:var(--radius-drop-list-container, 4px);
|
|
16
11
|
gap:var(--radius-drop-list-container, 4px);
|
|
17
12
|
}
|
|
13
|
+
.pinTopItem{
|
|
14
|
+
display:flex;
|
|
15
|
+
flex-direction:column;
|
|
16
|
+
border:none;
|
|
17
|
+
}
|
|
18
18
|
.pinTopItem li,
|
|
19
19
|
.pinTopItem ul{
|
|
20
20
|
list-style-type:none;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
.pinBottomItem{
|
|
24
|
-
display:flex;
|
|
25
|
-
flex-direction:column;
|
|
26
|
-
border:none;
|
|
27
|
-
}
|
|
28
23
|
.pinBottomItem[data-size=s]{
|
|
29
24
|
padding-top:var(--radius-drop-list-container, 4px);
|
|
30
25
|
gap:var(--radius-drop-list-container, 4px);
|
|
@@ -37,6 +32,11 @@
|
|
|
37
32
|
padding-top:var(--radius-drop-list-container, 4px);
|
|
38
33
|
gap:var(--radius-drop-list-container, 4px);
|
|
39
34
|
}
|
|
35
|
+
.pinBottomItem{
|
|
36
|
+
display:flex;
|
|
37
|
+
flex-direction:column;
|
|
38
|
+
border:none;
|
|
39
|
+
}
|
|
40
40
|
.pinBottomItem li,
|
|
41
41
|
.pinBottomItem ul{
|
|
42
42
|
list-style-type:none;
|
|
@@ -82,7 +82,6 @@
|
|
|
82
82
|
.separatorWithoutLabel{
|
|
83
83
|
display:flex;
|
|
84
84
|
align-items:flex-end;
|
|
85
|
-
box-sizing:border-box;
|
|
86
85
|
}
|
|
87
86
|
.separatorWithoutLabel[data-size=s]{
|
|
88
87
|
padding-top:var(--space-drop-list-item-s-container-separator-subheader-vertical-padding, 4px);
|
|
@@ -102,6 +101,9 @@
|
|
|
102
101
|
padding-left:var(--space-drop-list-item-l-container-horizontal-padding, 12px);
|
|
103
102
|
padding-right:var(--space-drop-list-item-l-container-horizontal-padding, 12px);
|
|
104
103
|
}
|
|
104
|
+
.separatorWithoutLabel{
|
|
105
|
+
box-sizing:border-box;
|
|
106
|
+
}
|
|
105
107
|
|
|
106
108
|
.label{
|
|
107
109
|
overflow:hidden;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"title": "List",
|
|
7
|
-
"version": "0.32.
|
|
7
|
+
"version": "0.32.14-preview-a84747fe.0",
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"*.css",
|
|
10
10
|
"*.woff",
|
|
@@ -39,13 +39,13 @@
|
|
|
39
39
|
"@snack-uikit/button": "0.19.17",
|
|
40
40
|
"@snack-uikit/divider": "3.2.11",
|
|
41
41
|
"@snack-uikit/dropdown": "0.5.4",
|
|
42
|
-
"@snack-uikit/icons": "0.27.
|
|
43
|
-
"@snack-uikit/info-block": "0.6.
|
|
42
|
+
"@snack-uikit/icons": "0.27.6",
|
|
43
|
+
"@snack-uikit/info-block": "0.6.37",
|
|
44
44
|
"@snack-uikit/loaders": "0.9.10",
|
|
45
|
-
"@snack-uikit/scroll": "0.10.
|
|
46
|
-
"@snack-uikit/search-private": "0.4.
|
|
47
|
-
"@snack-uikit/toggles": "0.13.
|
|
48
|
-
"@snack-uikit/truncate-string": "0.7.
|
|
45
|
+
"@snack-uikit/scroll": "0.10.7-preview-a84747fe.0",
|
|
46
|
+
"@snack-uikit/search-private": "0.4.35",
|
|
47
|
+
"@snack-uikit/toggles": "0.13.25",
|
|
48
|
+
"@snack-uikit/truncate-string": "0.7.8",
|
|
49
49
|
"@snack-uikit/utils": "4.0.1",
|
|
50
50
|
"@tanstack/react-virtual": "3.11.2",
|
|
51
51
|
"classnames": "2.5.1",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"peerDependencies": {
|
|
55
55
|
"@snack-uikit/locale": "*"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "da9253c3ae205bb5e08e9e02e0f669961cb2ed60"
|
|
58
58
|
}
|