@hi-ui/tree-select 4.1.3 → 4.1.5-alpha.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 +29 -0
- package/lib/cjs/TreeSelect.js +2 -2
- package/lib/cjs/styles/index.scss.js +1 -1
- package/lib/esm/styles/index.scss.js +1 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,34 @@
|
|
1
1
|
# @hi-ui/tree-select
|
2
2
|
|
3
|
+
## 4.1.5-alpha.0
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- 1a00f9fc4: build: style-inject(node 环境下有问题) 替换为 @hi-ui/style-inject
|
8
|
+
- Updated dependencies [1a00f9fc4]
|
9
|
+
- @hi-ui/env@4.0.5-alpha.0
|
10
|
+
- @hi-ui/icons@4.0.19-alpha.0
|
11
|
+
- @hi-ui/highlighter@4.0.9-alpha.0
|
12
|
+
- @hi-ui/input@4.1.1-alpha.0
|
13
|
+
- @hi-ui/picker@4.1.6-alpha.0
|
14
|
+
- @hi-ui/popper@4.1.5-alpha.0
|
15
|
+
- @hi-ui/tree@4.5.10-alpha.0
|
16
|
+
- @hi-ui/array-utils@4.0.5-alpha.0
|
17
|
+
- @hi-ui/classname@4.0.5-alpha.0
|
18
|
+
- @hi-ui/use-search-mode@4.1.5-alpha.0
|
19
|
+
- @hi-ui/core@4.0.9-alpha.0
|
20
|
+
- @hi-ui/func-utils@4.0.5-alpha.0
|
21
|
+
|
22
|
+
## 4.1.4
|
23
|
+
|
24
|
+
### Patch Changes
|
25
|
+
|
26
|
+
- [#2682](https://github.com/XiaoMi/hiui/pull/2682) [`41765fbed`](https://github.com/XiaoMi/hiui/commit/41765fbed0b3b9c8a574a0d7358b2d3f876162c5) Thanks [@zyprepare](https://github.com/zyprepare)! - fix: 下拉框盒模型设置为 content-box
|
27
|
+
|
28
|
+
- Updated dependencies [[`ba6e0265d`](https://github.com/XiaoMi/hiui/commit/ba6e0265da07964423d3a684dd068dcf50865dbc), [`41765fbed`](https://github.com/XiaoMi/hiui/commit/41765fbed0b3b9c8a574a0d7358b2d3f876162c5)]:
|
29
|
+
- @hi-ui/popper@4.1.4
|
30
|
+
- @hi-ui/picker@4.1.5
|
31
|
+
|
3
32
|
## 4.1.3
|
4
33
|
|
5
34
|
### Patch Changes
|
package/lib/cjs/TreeSelect.js
CHANGED
@@ -30,12 +30,12 @@ var icons = require('@hi-ui/icons');
|
|
30
30
|
var core = require('@hi-ui/core');
|
31
31
|
var funcUtils = require('@hi-ui/func-utils');
|
32
32
|
var useSearchMode = require('@hi-ui/use-search-mode');
|
33
|
-
function
|
33
|
+
function _interopDefaultCompat(e) {
|
34
34
|
return e && _typeof(e) === 'object' && 'default' in e ? e : {
|
35
35
|
'default': e
|
36
36
|
};
|
37
37
|
}
|
38
|
-
var React__default = /*#__PURE__*/
|
38
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
39
39
|
var TREE_SELECT_PREFIX = classname.getPrefixCls('tree-select');
|
40
40
|
var DEFAULT_DATA = [];
|
41
41
|
// const DEFAULT_VALUE = [] as []
|
@@ -13,6 +13,6 @@ Object.defineProperty(exports, '__esModule', {
|
|
13
13
|
value: true
|
14
14
|
});
|
15
15
|
var css_248z = "";
|
16
|
-
var __styleInject__ = require('style-inject')["default"];
|
16
|
+
var __styleInject__ = require('@hi-ui/style-inject')["default"];
|
17
17
|
__styleInject__(css_248z);
|
18
18
|
exports["default"] = css_248z;
|
@@ -7,7 +7,7 @@
|
|
7
7
|
* This source code is licensed under the MIT license found in the
|
8
8
|
* LICENSE file in the root directory of this source tree.
|
9
9
|
*/
|
10
|
-
import __styleInject__ from 'style-inject';
|
10
|
+
import __styleInject__ from '@hi-ui/style-inject';
|
11
11
|
var css_248z = "";
|
12
12
|
__styleInject__(css_248z);
|
13
13
|
export { css_248z as default };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@hi-ui/tree-select",
|
3
|
-
"version": "4.1.
|
3
|
+
"version": "4.1.5-alpha.0",
|
4
4
|
"description": "A sub-package for @hi-ui/hiui.",
|
5
5
|
"keywords": [],
|
6
6
|
"author": "HiUI <mi-hiui@xiaomi.com>",
|
@@ -43,30 +43,30 @@
|
|
43
43
|
"url": "https://github.com/XiaoMi/hiui/issues"
|
44
44
|
},
|
45
45
|
"dependencies": {
|
46
|
-
"@hi-ui/array-utils": "^4.0.
|
47
|
-
"@hi-ui/classname": "^4.0.
|
48
|
-
"@hi-ui/env": "^4.0.
|
49
|
-
"@hi-ui/func-utils": "^4.0.
|
50
|
-
"@hi-ui/highlighter": "^4.0.
|
51
|
-
"@hi-ui/icons": "^4.0.
|
52
|
-
"@hi-ui/input": "^4.0
|
53
|
-
"@hi-ui/picker": "^4.1.
|
54
|
-
"@hi-ui/popper": "^4.1.
|
55
|
-
"@hi-ui/tree": "^4.5.
|
46
|
+
"@hi-ui/array-utils": "^4.0.5-alpha.0",
|
47
|
+
"@hi-ui/classname": "^4.0.5-alpha.0",
|
48
|
+
"@hi-ui/env": "^4.0.5-alpha.0",
|
49
|
+
"@hi-ui/func-utils": "^4.0.5-alpha.0",
|
50
|
+
"@hi-ui/highlighter": "^4.0.9-alpha.0",
|
51
|
+
"@hi-ui/icons": "^4.0.19-alpha.0",
|
52
|
+
"@hi-ui/input": "^4.1.1-alpha.0",
|
53
|
+
"@hi-ui/picker": "^4.1.6-alpha.0",
|
54
|
+
"@hi-ui/popper": "^4.1.5-alpha.0",
|
55
|
+
"@hi-ui/tree": "^4.5.10-alpha.0",
|
56
56
|
"@hi-ui/tree-utils": "^4.1.4",
|
57
57
|
"@hi-ui/type-assertion": "^4.0.4",
|
58
58
|
"@hi-ui/use-data-source": "^4.0.4",
|
59
|
-
"@hi-ui/use-search-mode": "^4.1.
|
59
|
+
"@hi-ui/use-search-mode": "^4.1.5-alpha.0",
|
60
60
|
"@hi-ui/use-toggle": "^4.0.4",
|
61
61
|
"@hi-ui/use-uncontrolled-state": "^4.0.4"
|
62
62
|
},
|
63
63
|
"peerDependencies": {
|
64
|
-
"@hi-ui/core": ">=4.0.
|
64
|
+
"@hi-ui/core": ">=4.0.9-alpha.0",
|
65
65
|
"react": ">=16.8.6",
|
66
66
|
"react-dom": ">=16.8.6"
|
67
67
|
},
|
68
68
|
"devDependencies": {
|
69
|
-
"@hi-ui/core": "^4.0.
|
69
|
+
"@hi-ui/core": "^4.0.9-alpha.0",
|
70
70
|
"@hi-ui/core-css": "^4.1.5",
|
71
71
|
"react": "^17.0.1",
|
72
72
|
"react-dom": "^17.0.1"
|