@snack-uikit/toolbar 0.6.0 → 0.6.2
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,29 @@
|
|
|
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.6.2 (2024-01-23)
|
|
7
|
+
|
|
8
|
+
### Only dependencies have been changed
|
|
9
|
+
* [@snack-uikit/droplist@0.12.5](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/droplist/CHANGELOG.md)
|
|
10
|
+
* [@snack-uikit/icons@0.20.0](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/icons/CHANGELOG.md)
|
|
11
|
+
* [@snack-uikit/search-private@0.1.1](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/search-private/CHANGELOG.md)
|
|
12
|
+
* [@snack-uikit/toggles@0.9.4](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/toggles/CHANGELOG.md)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## 0.6.1 (2024-01-18)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Dependencies
|
|
22
|
+
|
|
23
|
+
* **FF-4075:** change search package to private ([94c9414](https://github.com/cloud-ru-tech/snack-uikit/commit/94c94144a291db75bf1264b678f04068c9b3b069))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
6
29
|
# 0.6.0 (2024-01-18)
|
|
7
30
|
|
|
8
31
|
|
|
@@ -13,7 +13,7 @@ import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-run
|
|
|
13
13
|
import cn from 'classnames';
|
|
14
14
|
import { ButtonFunction } from '@snack-uikit/button';
|
|
15
15
|
import { UpdateSVG } from '@snack-uikit/icons';
|
|
16
|
-
import { SearchPrivate } from '@snack-uikit/search';
|
|
16
|
+
import { SearchPrivate } from '@snack-uikit/search-private';
|
|
17
17
|
import { extractSupportProps } from '@snack-uikit/utils';
|
|
18
18
|
import { TEST_IDS } from '../../constants';
|
|
19
19
|
import { DeleteAction, MoreActions, Separator } from '../../helperComponents';
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"title": "Toolbar",
|
|
7
|
-
"version": "0.6.
|
|
7
|
+
"version": "0.6.2",
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"*.css",
|
|
10
10
|
"*.woff",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"scripts": {},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@snack-uikit/button": "0.15.1",
|
|
36
|
-
"@snack-uikit/droplist": "0.12.
|
|
37
|
-
"@snack-uikit/icons": "0.
|
|
38
|
-
"@snack-uikit/search": "0.
|
|
39
|
-
"@snack-uikit/toggles": "0.9.
|
|
36
|
+
"@snack-uikit/droplist": "0.12.5",
|
|
37
|
+
"@snack-uikit/icons": "0.20.0",
|
|
38
|
+
"@snack-uikit/search-private": "0.1.1",
|
|
39
|
+
"@snack-uikit/toggles": "0.9.4",
|
|
40
40
|
"@snack-uikit/utils": "3.2.0",
|
|
41
41
|
"classnames": "2.3.2"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "c292f4c45173928f57cc5c9f3cb02efb26887b64"
|
|
44
44
|
}
|
|
@@ -2,7 +2,7 @@ import cn from 'classnames';
|
|
|
2
2
|
|
|
3
3
|
import { ButtonFunction } from '@snack-uikit/button';
|
|
4
4
|
import { UpdateSVG } from '@snack-uikit/icons';
|
|
5
|
-
import { SearchPrivate } from '@snack-uikit/search';
|
|
5
|
+
import { SearchPrivate } from '@snack-uikit/search-private';
|
|
6
6
|
import { extractSupportProps, WithSupportProps } from '@snack-uikit/utils';
|
|
7
7
|
|
|
8
8
|
import { TEST_IDS } from '../../constants';
|