@snack-uikit/table 0.23.6 → 0.23.7
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.23.7 (2024-10-16)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **PDS-755:** fix error icon in table notification list ([e4b0409](https://github.com/cloud-ru-tech/snack-uikit/commit/e4b040948862f54ed219558a9023d816c4d4fa3f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## 0.23.6 (2024-10-14)
|
|
7
18
|
|
|
8
19
|
### Only dependencies have been changed
|
|
@@ -6,7 +6,7 @@ export function useEmptyState({ noDataState: noDataStateProp, noResultsState: no
|
|
|
6
6
|
return useMemo(() => {
|
|
7
7
|
const noDataState = Object.assign({ icon: { icon: SearchSVG, appearance: 'neutral', decor: true }, title: t('noData.title') }, noDataStateProp);
|
|
8
8
|
const noResultsState = Object.assign({ icon: { icon: SearchSVG, appearance: 'neutral', decor: true }, title: t('noResults.title'), description: t('noResults.description') }, noResultsStateProp);
|
|
9
|
-
const errorDataState = Object.assign({ icon: { icon: CrossSVG, appearance: '
|
|
9
|
+
const errorDataState = Object.assign({ icon: { icon: CrossSVG, appearance: 'neutral', decor: true }, title: t('errorData.title'), description: t('errorData.description') }, errorDataStateProp);
|
|
10
10
|
return {
|
|
11
11
|
noDataState,
|
|
12
12
|
noResultsState,
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"title": "Table",
|
|
7
|
-
"version": "0.23.
|
|
7
|
+
"version": "0.23.7",
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"*.css",
|
|
10
10
|
"*.woff",
|
|
@@ -33,16 +33,16 @@
|
|
|
33
33
|
"scripts": {},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@snack-uikit/button": "0.17.5",
|
|
36
|
-
"@snack-uikit/chips": "0.16.
|
|
36
|
+
"@snack-uikit/chips": "0.16.2",
|
|
37
37
|
"@snack-uikit/icon-predefined": "0.5.2",
|
|
38
38
|
"@snack-uikit/icons": "0.22.1",
|
|
39
39
|
"@snack-uikit/info-block": "0.4.9",
|
|
40
|
-
"@snack-uikit/list": "0.17.
|
|
40
|
+
"@snack-uikit/list": "0.17.2",
|
|
41
41
|
"@snack-uikit/pagination": "0.7.1",
|
|
42
42
|
"@snack-uikit/scroll": "0.6.2",
|
|
43
43
|
"@snack-uikit/skeleton": "0.3.5",
|
|
44
44
|
"@snack-uikit/toggles": "0.10.4",
|
|
45
|
-
"@snack-uikit/toolbar": "0.7.
|
|
45
|
+
"@snack-uikit/toolbar": "0.7.62",
|
|
46
46
|
"@snack-uikit/truncate-string": "0.4.24",
|
|
47
47
|
"@snack-uikit/typography": "0.6.3",
|
|
48
48
|
"@snack-uikit/utils": "3.4.0",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"@snack-uikit/locale": "*"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "995adf216ab5c2a02a2722d6e7ed6c928d4e0c63"
|
|
61
61
|
}
|
|
@@ -31,7 +31,7 @@ export function useEmptyState({
|
|
|
31
31
|
};
|
|
32
32
|
|
|
33
33
|
const errorDataState: EmptyStateProps = {
|
|
34
|
-
icon: { icon: CrossSVG, appearance: '
|
|
34
|
+
icon: { icon: CrossSVG, appearance: 'neutral', decor: true },
|
|
35
35
|
title: t('errorData.title'),
|
|
36
36
|
description: t('errorData.description'),
|
|
37
37
|
...errorDataStateProp,
|