ydb-ui-components 1.2.3 → 2.0.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
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.0](https://github.com/ydb-platform/ydb-ui-components/compare/v1.2.3...v2.0.0) (2022-05-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* major version update of peer dependency @yandex-cloud/uikit, see changelog here: https://github.com/yandex-cloud/uikit/blob/main/CHANGELOG_V2.md
|
|
9
|
+
|
|
10
|
+
### chore
|
|
11
|
+
|
|
12
|
+
* update @yandex-cloud/uikit to v2.3.1 ([ba67dd6](https://github.com/ydb-platform/ydb-ui-components/commit/ba67dd6f8f01b2a58ed67bd064ad8962f2f8a244))
|
|
13
|
+
* update @yandex-cloud/i18n to v0.6.0 ([237c2cd](https://github.com/ydb-platform/ydb-ui-components/commit/237c2cdd5064565da2cf62fbebb0fc0ae1195d0e))
|
|
14
|
+
|
|
3
15
|
### [1.2.3](https://github.com/ydb-platform/ydb-ui-components/compare/v1.2.2...v1.2.3) (2022-05-23)
|
|
4
16
|
|
|
5
17
|
|
|
@@ -15,9 +15,9 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
|
|
|
15
15
|
|
|
16
16
|
const COMPONENT = 'ydb-navigation-tree';
|
|
17
17
|
|
|
18
|
-
_i18n.i18n.registerKeyset(
|
|
18
|
+
_i18n.i18n.registerKeyset('en', COMPONENT, _en.default);
|
|
19
19
|
|
|
20
|
-
_i18n.i18n.registerKeyset(
|
|
20
|
+
_i18n.i18n.registerKeyset('ru', COMPONENT, _ru.default);
|
|
21
21
|
|
|
22
22
|
var _default = _i18n.i18n.keyset(COMPONENT);
|
|
23
23
|
|
|
@@ -46,8 +46,9 @@ function TreeView(_ref) {
|
|
|
46
46
|
className: b('actions')
|
|
47
47
|
}, /*#__PURE__*/_react.default.createElement(_uikit.DropdownMenu, {
|
|
48
48
|
defaultSwitcherProps: {
|
|
49
|
-
view: '
|
|
50
|
-
size: 's'
|
|
49
|
+
view: 'flat-secondary',
|
|
50
|
+
size: 's',
|
|
51
|
+
pin: 'brick-brick'
|
|
51
52
|
},
|
|
52
53
|
items: actions
|
|
53
54
|
})));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ydb-ui-components",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "build/index.js",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"@types/react-treeview": "^0.4.3",
|
|
40
40
|
"@yandex-cloud/browserslist-config": "^1.0.1",
|
|
41
41
|
"@yandex-cloud/eslint-config": "^1.0.0",
|
|
42
|
-
"@yandex-cloud/i18n": "^0.
|
|
42
|
+
"@yandex-cloud/i18n": "^0.6.0",
|
|
43
43
|
"@yandex-cloud/prettier-config": "^1.0.0",
|
|
44
44
|
"@yandex-cloud/stylelint-config": "^1.1.0",
|
|
45
45
|
"@yandex-cloud/tsconfig": "^1.0.0",
|
|
46
|
-
"@yandex-cloud/uikit": "^
|
|
46
|
+
"@yandex-cloud/uikit": "^2.3.1",
|
|
47
47
|
"css-loader": "^5.2.7",
|
|
48
48
|
"eslint": "^8.11.0",
|
|
49
49
|
"gulp": "^4.0.2",
|
|
@@ -66,8 +66,8 @@
|
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
68
68
|
"@yandex-cloud/browserslist-config": "^1.0.1",
|
|
69
|
-
"@yandex-cloud/i18n": "^0.
|
|
70
|
-
"@yandex-cloud/uikit": "^
|
|
69
|
+
"@yandex-cloud/i18n": "^0.6.0",
|
|
70
|
+
"@yandex-cloud/uikit": "^2.3.1",
|
|
71
71
|
"react": "^16.0.0",
|
|
72
72
|
"react-dom": "^16.0.0"
|
|
73
73
|
},
|