@hi-ui/hiui 4.6.2 → 4.6.4
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 +26 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,31 @@
|
|
1
1
|
# @hi-ui/hiui
|
2
2
|
|
3
|
+
## 4.6.4
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [#2972](https://github.com/XiaoMi/hiui/pull/2972) [`83c9dd9`](https://github.com/XiaoMi/hiui/commit/83c9dd9f393e0f9355985eb213347b07b119b1a6) Thanks [@zyprepare](https://github.com/zyprepare)! - fix(env): 去掉 inject-head-style 依赖
|
8
|
+
|
9
|
+
## 4.6.3
|
10
|
+
|
11
|
+
### Patch Changes
|
12
|
+
|
13
|
+
- [#2970](https://github.com/XiaoMi/hiui/pull/2970) [`657d180`](https://github.com/XiaoMi/hiui/commit/657d1802ac424e2498f9036047cc74a34659d5d6) Thanks [@xiamiao1121](https://github.com/xiamiao1121)! - feat(check-select): 支持按 Enter 键是否选中当前项功能,checkedOnEntered 默认为 true
|
14
|
+
|
15
|
+
- [#2968](https://github.com/XiaoMi/hiui/pull/2968) [`6ed4e8eeb`](https://github.com/XiaoMi/hiui/commit/6ed4e8eeb1edb97ed23aa3d5366f993575a6df57) Thanks [@zyprepare](https://github.com/zyprepare)! - feat(table): 行选中增加单选
|
16
|
+
|
17
|
+
- [#2952](https://github.com/XiaoMi/hiui/pull/2952) [`f7137e3db`](https://github.com/XiaoMi/hiui/commit/f7137e3dbff8a3a2735f9e7d8a09fc942c8a8a86) Thanks [@xiamiao1121](https://github.com/xiamiao1121)! - feat(check-tree-select): 新增支持过滤已选择项
|
18
|
+
|
19
|
+
- [#2964](https://github.com/XiaoMi/hiui/pull/2964) [`7bdd549d0`](https://github.com/XiaoMi/hiui/commit/7bdd549d0fcb6a6b903742333e352e184723aa3b) Thanks [@xiamiao1121](https://github.com/xiamiao1121)! - feat(tree): 新增 icon 支持自定义渲染函数
|
20
|
+
|
21
|
+
- [#2966](https://github.com/XiaoMi/hiui/pull/2966) [`bc306526c`](https://github.com/XiaoMi/hiui/commit/bc306526c948cb2b1ecd73b63e903d941c78dd9a) Thanks [@xiamiao1121](https://github.com/xiamiao1121)! - fix(tree): 修复组件指定 fieldNames={{ title: 'name' }} 后,menuOptions 里 type 为 editNode 时会出现改不了节点的情况
|
22
|
+
|
23
|
+
- Updated dependencies [[`bc306526c`](https://github.com/XiaoMi/hiui/commit/bc306526c948cb2b1ecd73b63e903d941c78dd9a), [`f7137e3db`](https://github.com/XiaoMi/hiui/commit/f7137e3dbff8a3a2735f9e7d8a09fc942c8a8a86), [`7bdd549d0`](https://github.com/XiaoMi/hiui/commit/7bdd549d0fcb6a6b903742333e352e184723aa3b), [`6ed4e8eeb`](https://github.com/XiaoMi/hiui/commit/6ed4e8eeb1edb97ed23aa3d5366f993575a6df57), [`657d180`](https://github.com/XiaoMi/hiui/commit/657d1802ac424e2498f9036047cc74a34659d5d6)]:
|
24
|
+
- @hi-ui/tree@4.6.0
|
25
|
+
- @hi-ui/check-tree-select@4.6.0
|
26
|
+
- @hi-ui/table@4.6.0
|
27
|
+
- @hi-ui/check-select@4.5.0
|
28
|
+
|
3
29
|
## 4.6.2
|
4
30
|
|
5
31
|
### Patch Changes
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@hi-ui/hiui",
|
3
|
-
"version": "4.6.
|
3
|
+
"version": "4.6.4",
|
4
4
|
"description": "The root-package for @hi-ui/hiui.",
|
5
5
|
"keywords": [],
|
6
6
|
"author": "HiUI <mi-hiui@xiaomi.com>",
|
@@ -54,8 +54,8 @@
|
|
54
54
|
"@hi-ui/carousel": "^4.1.1",
|
55
55
|
"@hi-ui/cascader": "^4.3.0",
|
56
56
|
"@hi-ui/check-cascader": "^4.3.0",
|
57
|
-
"@hi-ui/check-select": "^4.
|
58
|
-
"@hi-ui/check-tree-select": "^4.
|
57
|
+
"@hi-ui/check-select": "^4.5.0",
|
58
|
+
"@hi-ui/check-tree-select": "^4.6.0",
|
59
59
|
"@hi-ui/checkbox": "^4.0.10",
|
60
60
|
"@hi-ui/collapse": "^4.1.6",
|
61
61
|
"@hi-ui/counter": "^4.1.9",
|
@@ -97,7 +97,7 @@
|
|
97
97
|
"@hi-ui/stepper": "^4.1.0",
|
98
98
|
"@hi-ui/svg-icon": "^4.0.8",
|
99
99
|
"@hi-ui/switch": "^4.0.11",
|
100
|
-
"@hi-ui/table": "^4.
|
100
|
+
"@hi-ui/table": "^4.6.0",
|
101
101
|
"@hi-ui/tabs": "^4.1.6",
|
102
102
|
"@hi-ui/tag": "^4.2.1",
|
103
103
|
"@hi-ui/textarea": "^4.1.7",
|
@@ -105,7 +105,7 @@
|
|
105
105
|
"@hi-ui/timeline": "^4.0.8",
|
106
106
|
"@hi-ui/tooltip": "^4.0.11",
|
107
107
|
"@hi-ui/transfer": "^4.1.0",
|
108
|
-
"@hi-ui/tree": "^4.
|
108
|
+
"@hi-ui/tree": "^4.6.0",
|
109
109
|
"@hi-ui/tree-select": "^4.2.0",
|
110
110
|
"@hi-ui/upload": "^4.2.3",
|
111
111
|
"@hi-ui/watermark": "^4.0.8",
|