@hi-ui/tree-select 4.2.1-alpha.0 → 5.0.0-canary.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 +44 -0
- package/package.json +22 -21
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,49 @@
|
|
1
1
|
# @hi-ui/tree-select
|
2
2
|
|
3
|
+
## 5.0.0-canary.0
|
4
|
+
|
5
|
+
### Major Changes
|
6
|
+
|
7
|
+
- 225ebaa51: feat: 组件的 package.json 中的 exports 统一加上 types 配置 (5.0)
|
8
|
+
|
9
|
+
### Minor Changes
|
10
|
+
|
11
|
+
- 428716024: <br>
|
12
|
+
- feat(picker): 下拉选择类组件增加 xs 尺寸 (5.0)
|
13
|
+
- feat(input): 输入框组件增加 xs 尺寸 (5.0)
|
14
|
+
|
15
|
+
### Patch Changes
|
16
|
+
|
17
|
+
- Updated dependencies [428716024]
|
18
|
+
- Updated dependencies [225ebaa51]
|
19
|
+
- Updated dependencies [428716024]
|
20
|
+
- @hi-ui/input@5.0.0-canary.0
|
21
|
+
- @hi-ui/picker@5.0.0-canary.0
|
22
|
+
- @hi-ui/core@5.0.0-canary.0
|
23
|
+
- @hi-ui/use-data-source@5.0.0-canary.0
|
24
|
+
- @hi-ui/use-search-mode@5.0.0-canary.0
|
25
|
+
- @hi-ui/use-toggle@5.0.0-canary.0
|
26
|
+
- @hi-ui/use-uncontrolled-state@5.0.0-canary.0
|
27
|
+
- @hi-ui/icons@5.0.0-canary.0
|
28
|
+
- @hi-ui/highlighter@5.0.0-canary.0
|
29
|
+
- @hi-ui/popper@5.0.0-canary.0
|
30
|
+
- @hi-ui/tree@5.0.0-canary.0
|
31
|
+
- @hi-ui/array-utils@5.0.0-canary.0
|
32
|
+
- @hi-ui/classname@5.0.0-canary.0
|
33
|
+
- @hi-ui/env@5.0.0-canary.0
|
34
|
+
- @hi-ui/func-utils@5.0.0-canary.0
|
35
|
+
- @hi-ui/tree-utils@5.0.0-canary.0
|
36
|
+
- @hi-ui/type-assertion@5.0.0-canary.0
|
37
|
+
|
38
|
+
## 4.2.1
|
39
|
+
|
40
|
+
### Patch Changes
|
41
|
+
|
42
|
+
- [#2994](https://github.com/XiaoMi/hiui/pull/2994) [`4d6b26507`](https://github.com/XiaoMi/hiui/commit/4d6b26507479030686d5da65e1bec8b353b80bfa) Thanks [@zyprepare](https://github.com/zyprepare)! - fix: 修复 keyword 设置后数据没有过滤的问题
|
43
|
+
|
44
|
+
- Updated dependencies [[`908d6cd96`](https://github.com/XiaoMi/hiui/commit/908d6cd9657551203917230d9a91de45e65354c2)]:
|
45
|
+
- @hi-ui/tree@4.6.1
|
46
|
+
|
3
47
|
## 4.2.0
|
4
48
|
|
5
49
|
### Minor Changes
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@hi-ui/tree-select",
|
3
|
-
"version": "
|
3
|
+
"version": "5.0.0-canary.0",
|
4
4
|
"description": "A sub-package for @hi-ui/hiui.",
|
5
5
|
"keywords": [],
|
6
6
|
"author": "HiUI <mi-hiui@xiaomi.com>",
|
@@ -20,7 +20,8 @@
|
|
20
20
|
"exports": {
|
21
21
|
".": {
|
22
22
|
"require": "./lib/cjs/index.js",
|
23
|
-
"default": "./lib/esm/index.js"
|
23
|
+
"default": "./lib/esm/index.js",
|
24
|
+
"types": "./lib/types/index.d.ts"
|
24
25
|
}
|
25
26
|
},
|
26
27
|
"publishConfig": {
|
@@ -43,31 +44,31 @@
|
|
43
44
|
"url": "https://github.com/XiaoMi/hiui/issues"
|
44
45
|
},
|
45
46
|
"dependencies": {
|
46
|
-
"@hi-ui/array-utils": "^
|
47
|
-
"@hi-ui/classname": "^
|
48
|
-
"@hi-ui/env": "^
|
49
|
-
"@hi-ui/func-utils": "^
|
50
|
-
"@hi-ui/highlighter": "^
|
51
|
-
"@hi-ui/icons": "^
|
52
|
-
"@hi-ui/input": "^
|
53
|
-
"@hi-ui/picker": "^
|
54
|
-
"@hi-ui/popper": "^
|
55
|
-
"@hi-ui/tree": "^
|
56
|
-
"@hi-ui/tree-utils": "^
|
57
|
-
"@hi-ui/type-assertion": "^
|
58
|
-
"@hi-ui/use-data-source": "^
|
59
|
-
"@hi-ui/use-search-mode": "^
|
60
|
-
"@hi-ui/use-toggle": "^
|
61
|
-
"@hi-ui/use-uncontrolled-state": "^
|
47
|
+
"@hi-ui/array-utils": "^5.0.0-canary.0",
|
48
|
+
"@hi-ui/classname": "^5.0.0-canary.0",
|
49
|
+
"@hi-ui/env": "^5.0.0-canary.0",
|
50
|
+
"@hi-ui/func-utils": "^5.0.0-canary.0",
|
51
|
+
"@hi-ui/highlighter": "^5.0.0-canary.0",
|
52
|
+
"@hi-ui/icons": "^5.0.0-canary.0",
|
53
|
+
"@hi-ui/input": "^5.0.0-canary.0",
|
54
|
+
"@hi-ui/picker": "^5.0.0-canary.0",
|
55
|
+
"@hi-ui/popper": "^5.0.0-canary.0",
|
56
|
+
"@hi-ui/tree": "^5.0.0-canary.0",
|
57
|
+
"@hi-ui/tree-utils": "^5.0.0-canary.0",
|
58
|
+
"@hi-ui/type-assertion": "^5.0.0-canary.0",
|
59
|
+
"@hi-ui/use-data-source": "^5.0.0-canary.0",
|
60
|
+
"@hi-ui/use-search-mode": "^5.0.0-canary.0",
|
61
|
+
"@hi-ui/use-toggle": "^5.0.0-canary.0",
|
62
|
+
"@hi-ui/use-uncontrolled-state": "^5.0.0-canary.0"
|
62
63
|
},
|
63
64
|
"peerDependencies": {
|
64
|
-
"@hi-ui/core": ">=
|
65
|
+
"@hi-ui/core": ">=5.0.0-canary.0",
|
65
66
|
"react": ">=16.8.6",
|
66
67
|
"react-dom": ">=16.8.6"
|
67
68
|
},
|
68
69
|
"devDependencies": {
|
69
|
-
"@hi-ui/core": "^
|
70
|
-
"@hi-ui/core-css": "^
|
70
|
+
"@hi-ui/core": "^5.0.0-canary.0",
|
71
|
+
"@hi-ui/core-css": "^5.0.0-canary.0",
|
71
72
|
"react": "^17.0.1",
|
72
73
|
"react-dom": "^17.0.1"
|
73
74
|
}
|