@hi-ui/check-cascader 4.2.5 → 4.2.7-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 +31 -0
- package/lib/cjs/CheckCascader.js +2 -2
- package/lib/cjs/CheckCascaderMenu.js +3 -3
- package/lib/cjs/CheckCascaderMenuList.js +2 -2
- package/lib/cjs/hooks/use-async-switch.js +2 -2
- package/lib/cjs/hooks/use-check.js +3 -1
- package/lib/cjs/icons/index.js +2 -2
- package/lib/cjs/styles/index.scss.js +1 -1
- package/lib/esm/hooks/use-check.js +3 -1
- package/lib/esm/styles/index.scss.js +1 -1
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,36 @@
|
|
1
1
|
# @hi-ui/check-cascader
|
2
2
|
|
3
|
+
## 4.2.7-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/checkbox@4.0.10-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/spinner@4.0.9-alpha.0
|
16
|
+
- @hi-ui/tag-input@4.1.1-alpha.0
|
17
|
+
- @hi-ui/array-utils@4.0.5-alpha.0
|
18
|
+
- @hi-ui/classname@4.0.5-alpha.0
|
19
|
+
- @hi-ui/use-search-mode@4.1.5-alpha.0
|
20
|
+
- @hi-ui/core@4.0.9-alpha.0
|
21
|
+
- @hi-ui/func-utils@4.0.5-alpha.0
|
22
|
+
|
23
|
+
## 4.2.6
|
24
|
+
|
25
|
+
### Patch Changes
|
26
|
+
|
27
|
+
- [#2752](https://github.com/XiaoMi/hiui/pull/2752) [`8cc7d032a`](https://github.com/XiaoMi/hiui/commit/8cc7d032aff1aa62099e71e2e1a3ca3a9a226e30) Thanks [@zyprepare](https://github.com/zyprepare)! - fix: 修复 PARENT 和 CHILD 模式在搜索场景下 id 丢失问题
|
28
|
+
|
29
|
+
- Updated dependencies [[`a9b9c93fc`](https://github.com/XiaoMi/hiui/commit/a9b9c93fc3a3fea60d14052a5afeef9daf7efa1b), [`b3a13135c`](https://github.com/XiaoMi/hiui/commit/b3a13135c77e75291d5864ff7fcf63ddb2ff46b8), [`ca008e4ae`](https://github.com/XiaoMi/hiui/commit/ca008e4ae9753bc1f11efcdcbf09121d1ef07b56)]:
|
30
|
+
- @hi-ui/input@4.1.0
|
31
|
+
- @hi-ui/tag-input@4.1.0
|
32
|
+
- @hi-ui/tree-utils@4.1.6
|
33
|
+
|
3
34
|
## 4.2.5
|
4
35
|
|
5
36
|
### Patch Changes
|
package/lib/cjs/CheckCascader.js
CHANGED
@@ -31,12 +31,12 @@ var useLatest = require('@hi-ui/use-latest');
|
|
31
31
|
var typeAssertion = require('@hi-ui/type-assertion');
|
32
32
|
var core = require('@hi-ui/core');
|
33
33
|
var funcUtils = require('@hi-ui/func-utils');
|
34
|
-
function
|
34
|
+
function _interopDefaultCompat(e) {
|
35
35
|
return e && _typeof(e) === 'object' && 'default' in e ? e : {
|
36
36
|
'default': e
|
37
37
|
};
|
38
38
|
}
|
39
|
-
var React__default = /*#__PURE__*/
|
39
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
40
40
|
var _prefix = classname.getPrefixCls('check-cascader');
|
41
41
|
var NOOP_ARRAY = [];
|
42
42
|
/**
|
@@ -20,13 +20,13 @@ var Checkbox = require('@hi-ui/checkbox');
|
|
20
20
|
var context = require('./context.js');
|
21
21
|
var index = require('./utils/index.js');
|
22
22
|
var treeUtils = require('@hi-ui/tree-utils');
|
23
|
-
function
|
23
|
+
function _interopDefaultCompat(e) {
|
24
24
|
return e && _typeof(e) === 'object' && 'default' in e ? e : {
|
25
25
|
'default': e
|
26
26
|
};
|
27
27
|
}
|
28
|
-
var React__default = /*#__PURE__*/
|
29
|
-
var Checkbox__default = /*#__PURE__*/
|
28
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
29
|
+
var Checkbox__default = /*#__PURE__*/_interopDefaultCompat(Checkbox);
|
30
30
|
var _role = 'check-cascader-menu';
|
31
31
|
var _prefix = classname.getPrefixCls(_role);
|
32
32
|
var CheckCascaderMenu = function CheckCascaderMenu(_ref) {
|
@@ -25,12 +25,12 @@ var useCheck = require('./hooks/use-check.js');
|
|
25
25
|
var useSelect = require('./hooks/use-select.js');
|
26
26
|
var useAsyncSwitch = require('./hooks/use-async-switch.js');
|
27
27
|
var typeAssertion = require('@hi-ui/type-assertion');
|
28
|
-
function
|
28
|
+
function _interopDefaultCompat(e) {
|
29
29
|
return e && _typeof(e) === 'object' && 'default' in e ? e : {
|
30
30
|
'default': e
|
31
31
|
};
|
32
32
|
}
|
33
|
-
var React__default = /*#__PURE__*/
|
33
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
34
34
|
var _role = 'check-cascader-menus';
|
35
35
|
var _prefix = classname.getPrefixCls(_role);
|
36
36
|
var NOOP_ARRAY = [];
|
@@ -18,12 +18,12 @@ var tslib = require('tslib');
|
|
18
18
|
var React = require('react');
|
19
19
|
var useLatest = require('@hi-ui/use-latest');
|
20
20
|
var treeUtils = require('@hi-ui/tree-utils');
|
21
|
-
function
|
21
|
+
function _interopDefaultCompat(e) {
|
22
22
|
return e && _typeof(e) === 'object' && 'default' in e ? e : {
|
23
23
|
'default': e
|
24
24
|
};
|
25
25
|
}
|
26
|
-
var _regeneratorRuntime__default = /*#__PURE__*/
|
26
|
+
var _regeneratorRuntime__default = /*#__PURE__*/_interopDefaultCompat(_regeneratorRuntime);
|
27
27
|
var useAsyncSwitch = function useAsyncSwitch(setCascaderData, onExpand, onLoadChildren) {
|
28
28
|
var _useList = useList(),
|
29
29
|
loadingIds = _useList[0],
|
@@ -31,12 +31,14 @@ var useCheck = function useCheck(checkedMode, disabled, flattedData, defaultChec
|
|
31
31
|
trySetCheckedIds = _useUncontrolledState[1];
|
32
32
|
// 入口数据处理
|
33
33
|
var parsedCheckedIds = index.parseCheckDataDirty(checkedMode, checkedIds, flattedData, allowCheck);
|
34
|
+
// 合并 checkedIds,防止部分模式(PARENT和CHILD)在搜索场景下 id 丢失 (https://github.com/XiaoMi/hiui/issues/2750)
|
35
|
+
var mergedCheckedIds = Array.from(new Set([].concat(parsedCheckedIds, checkedIds)));
|
34
36
|
var cascaded = checkedMode !== 'SEPARATE';
|
35
37
|
return useCheck$1.useCascadeCheck({
|
36
38
|
cascaded: cascaded,
|
37
39
|
disabled: disabled,
|
38
40
|
flattedData: flattedData,
|
39
|
-
checkedIds:
|
41
|
+
checkedIds: mergedCheckedIds,
|
40
42
|
onCheck: function onCheck(checkedIds, checkedNode, shouldChecked, semiCheckedIds) {
|
41
43
|
// 出口数据处理
|
42
44
|
var processedIds = index.processCheckedIds(checkedMode, checkedIds, flattedData, allowCheck);
|
package/lib/cjs/icons/index.js
CHANGED
@@ -16,12 +16,12 @@ Object.defineProperty(exports, '__esModule', {
|
|
16
16
|
var React = require('react');
|
17
17
|
var icons = require('@hi-ui/icons');
|
18
18
|
var spinner = require('@hi-ui/spinner');
|
19
|
-
function
|
19
|
+
function _interopDefaultCompat(e) {
|
20
20
|
return e && _typeof(e) === 'object' && 'default' in e ? e : {
|
21
21
|
'default': e
|
22
22
|
};
|
23
23
|
}
|
24
|
-
var React__default = /*#__PURE__*/
|
24
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
25
25
|
var defaultSuffixIcon = /*#__PURE__*/React__default["default"].createElement(icons.DownOutlined, null);
|
26
26
|
var defaultLeafIcon = /*#__PURE__*/React__default["default"].createElement("span", {
|
27
27
|
style: {
|
@@ -13,6 +13,6 @@ Object.defineProperty(exports, '__esModule', {
|
|
13
13
|
value: true
|
14
14
|
});
|
15
15
|
var css_248z = "@charset \"UTF-8\";.hi-v4-check-cascader__popper .hi-v4-picker__body {padding-left: 0;padding-right: 0;overflow-y: hidden;}.hi-v4-check-cascader__popper .hi-v4-picker__loading, .hi-v4-check-cascader__popper .hi-v4-picker__empty {padding: var(--hi-v4-spacing-5, 10px) var(--hi-v4-spacing-8, 16px);}.hi-v4-check-cascader-panel {white-space: nowrap;-webkit-box-sizing: border-box;box-sizing: border-box;}.hi-v4-check-cascader-panel-search {-webkit-box-sizing: border-box;box-sizing: border-box;padding: 0 10px 10px;position: relative;}.hi-v4-check-cascader-panel-search .hi-v4-input__prefix {font-size: 16px;padding-left: 0;}.hi-v4-check-cascader-panel-search__empty {display: inline-block;margin-top: 20px;font-size: 14px;font-weight: 400;color: #999;line-height: 20px;}.hi-v4-check-cascader-menus {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-sizing: border-box;box-sizing: border-box;overflow-x: auto;}.hi-v4-check-cascader-menus--flatted .hi-v4-check-cascader-menu {-ms-flex-preferred-size: 100%;flex-basis: 100%;}.hi-v4-check-cascader-menu {-webkit-box-sizing: border-box;box-sizing: border-box;margin: 0;padding: 0;border: none;outline: none;font-size: var(--hi-v4-text-size-md, 0.875rem);vertical-align: middle;list-style: none;width: auto;box-sizing: border-box;-ms-flex-negative: 0;flex-shrink: 0;display: inline-block;min-width: 140px;max-height: 256px;overflow: auto;padding: 0 var(--hi-v4-spacing-4, 8px);border-right: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0);}.hi-v4-check-cascader-menu:last-of-type {border: none;}.hi-v4-check-cascader-menu--checkable .hi-v4-check-cascader-menu-checkbox + .title__text {padding-left: 8px;}.hi-v4-check-cascader-menu-item {width: 100%;position: relative;cursor: pointer;display: -webkit-box;display: -ms-flexbox;display: flex;}.hi-v4-check-cascader-menu-checkbox {position: relative;}.hi-v4-check-cascader-menu-checkbox::after {right: 0;top: -8px;bottom: -8px;left: -8px;content: \"\";position: absolute;display: block;}.hi-v4-check-cascader-menu-option {padding: var(--hi-v4-spacing-1, 2px) var(--hi-v4-spacing-3, 6px);-webkit-box-sizing: border-box;box-sizing: border-box;height: var(--hi-v4-height-8, 32px);width: 100%;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;position: relative;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;border-radius: var(--hi-v4-border-radius-md, 4px);}.hi-v4-check-cascader-menu-option:hover {background-color: var(--hi-v4-color-gray-100, #f2f4f7);}.hi-v4-check-cascader-menus--selectchange .hi-v4-check-cascader-menu-option:hover .hi-v4-checkbox__icon {border-color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));}.hi-v4-check-cascader-menu-option.hi-v4-check-cascader-menu-option--selected {background: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe));color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));}.hi-v4-check-cascader-menu-option.hi-v4-check-cascader-menu-option--selected .hi-v4-check-cascader-menu-switcher {color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));}.hi-v4-check-cascader-menu-option--focused {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe));}.hi-v4-check-cascader-menu-option--disabled {cursor: not-allowed;color: var(--hi-v4-color-gray-500, #929aa6);background: transparent;}.hi-v4-check-cascader-menu-option--disabled .hi-v4-check-cascader-menu-switcher {color: var(--hi-v4-color-gray-400, #b5bcc7);}.hi-v4-check-cascader-menu .title__text {-webkit-box-flex: 1;-ms-flex: 1 1;flex: 1 1;}.hi-v4-check-cascader-menu .title__text--cols {display: block;width: 100%;-webkit-box-sizing: border-box;box-sizing: border-box;margin: 0;padding: 0;border: none;outline: none;font-size: var(--hi-v4-text-size-md, 0.875rem);vertical-align: middle;list-style: none;}.hi-v4-check-cascader-menu .title__text--col {display: inline-block;}.hi-v4-check-cascader-menu .title__text--col::after {content: \" / \";}.hi-v4-check-cascader-menu .title__text--col:last-child::after {content: none;}.hi-v4-check-cascader-menu .title__text--matched {color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));}.hi-v4-check-cascader-menu-switcher {-ms-flex-negative: 0;flex-shrink: 0;font-size: 16px;color: var(--hi-v4-color-gray-500, #929aa6);}.hi-v4-check-cascader-menu-switcher--loading {color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));}.hi-v4-tree--icon-loading {-webkit-animation-name: hi-rotate;animation-name: hi-rotate;-webkit-animation-duration: 2s;animation-duration: 2s;-webkit-animation-iteration-count: infinite;animation-iteration-count: infinite;}@-webkit-keyframes hi-rotate {from {-webkit-transform: rotate(0);transform: rotate(0);}to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}}@keyframes hi-rotate {from {-webkit-transform: rotate(0);transform: rotate(0);}to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}}";
|
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;
|
@@ -26,12 +26,14 @@ var useCheck = function useCheck(checkedMode, disabled, flattedData, defaultChec
|
|
26
26
|
trySetCheckedIds = _useUncontrolledState[1];
|
27
27
|
// 入口数据处理
|
28
28
|
var parsedCheckedIds = parseCheckDataDirty(checkedMode, checkedIds, flattedData, allowCheck);
|
29
|
+
// 合并 checkedIds,防止部分模式(PARENT和CHILD)在搜索场景下 id 丢失 (https://github.com/XiaoMi/hiui/issues/2750)
|
30
|
+
var mergedCheckedIds = Array.from(new Set([].concat(parsedCheckedIds, checkedIds)));
|
29
31
|
var cascaded = checkedMode !== 'SEPARATE';
|
30
32
|
return useCascadeCheck({
|
31
33
|
cascaded: cascaded,
|
32
34
|
disabled: disabled,
|
33
35
|
flattedData: flattedData,
|
34
|
-
checkedIds:
|
36
|
+
checkedIds: mergedCheckedIds,
|
35
37
|
onCheck: function onCheck(checkedIds, checkedNode, shouldChecked, semiCheckedIds) {
|
36
38
|
// 出口数据处理
|
37
39
|
var processedIds = processCheckedIds(checkedMode, checkedIds, flattedData, allowCheck);
|
@@ -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 = "@charset \"UTF-8\";.hi-v4-check-cascader__popper .hi-v4-picker__body {padding-left: 0;padding-right: 0;overflow-y: hidden;}.hi-v4-check-cascader__popper .hi-v4-picker__loading, .hi-v4-check-cascader__popper .hi-v4-picker__empty {padding: var(--hi-v4-spacing-5, 10px) var(--hi-v4-spacing-8, 16px);}.hi-v4-check-cascader-panel {white-space: nowrap;-webkit-box-sizing: border-box;box-sizing: border-box;}.hi-v4-check-cascader-panel-search {-webkit-box-sizing: border-box;box-sizing: border-box;padding: 0 10px 10px;position: relative;}.hi-v4-check-cascader-panel-search .hi-v4-input__prefix {font-size: 16px;padding-left: 0;}.hi-v4-check-cascader-panel-search__empty {display: inline-block;margin-top: 20px;font-size: 14px;font-weight: 400;color: #999;line-height: 20px;}.hi-v4-check-cascader-menus {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-sizing: border-box;box-sizing: border-box;overflow-x: auto;}.hi-v4-check-cascader-menus--flatted .hi-v4-check-cascader-menu {-ms-flex-preferred-size: 100%;flex-basis: 100%;}.hi-v4-check-cascader-menu {-webkit-box-sizing: border-box;box-sizing: border-box;margin: 0;padding: 0;border: none;outline: none;font-size: var(--hi-v4-text-size-md, 0.875rem);vertical-align: middle;list-style: none;width: auto;box-sizing: border-box;-ms-flex-negative: 0;flex-shrink: 0;display: inline-block;min-width: 140px;max-height: 256px;overflow: auto;padding: 0 var(--hi-v4-spacing-4, 8px);border-right: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0);}.hi-v4-check-cascader-menu:last-of-type {border: none;}.hi-v4-check-cascader-menu--checkable .hi-v4-check-cascader-menu-checkbox + .title__text {padding-left: 8px;}.hi-v4-check-cascader-menu-item {width: 100%;position: relative;cursor: pointer;display: -webkit-box;display: -ms-flexbox;display: flex;}.hi-v4-check-cascader-menu-checkbox {position: relative;}.hi-v4-check-cascader-menu-checkbox::after {right: 0;top: -8px;bottom: -8px;left: -8px;content: \"\";position: absolute;display: block;}.hi-v4-check-cascader-menu-option {padding: var(--hi-v4-spacing-1, 2px) var(--hi-v4-spacing-3, 6px);-webkit-box-sizing: border-box;box-sizing: border-box;height: var(--hi-v4-height-8, 32px);width: 100%;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;position: relative;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;border-radius: var(--hi-v4-border-radius-md, 4px);}.hi-v4-check-cascader-menu-option:hover {background-color: var(--hi-v4-color-gray-100, #f2f4f7);}.hi-v4-check-cascader-menus--selectchange .hi-v4-check-cascader-menu-option:hover .hi-v4-checkbox__icon {border-color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));}.hi-v4-check-cascader-menu-option.hi-v4-check-cascader-menu-option--selected {background: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe));color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));}.hi-v4-check-cascader-menu-option.hi-v4-check-cascader-menu-option--selected .hi-v4-check-cascader-menu-switcher {color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));}.hi-v4-check-cascader-menu-option--focused {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe));}.hi-v4-check-cascader-menu-option--disabled {cursor: not-allowed;color: var(--hi-v4-color-gray-500, #929aa6);background: transparent;}.hi-v4-check-cascader-menu-option--disabled .hi-v4-check-cascader-menu-switcher {color: var(--hi-v4-color-gray-400, #b5bcc7);}.hi-v4-check-cascader-menu .title__text {-webkit-box-flex: 1;-ms-flex: 1 1;flex: 1 1;}.hi-v4-check-cascader-menu .title__text--cols {display: block;width: 100%;-webkit-box-sizing: border-box;box-sizing: border-box;margin: 0;padding: 0;border: none;outline: none;font-size: var(--hi-v4-text-size-md, 0.875rem);vertical-align: middle;list-style: none;}.hi-v4-check-cascader-menu .title__text--col {display: inline-block;}.hi-v4-check-cascader-menu .title__text--col::after {content: \" / \";}.hi-v4-check-cascader-menu .title__text--col:last-child::after {content: none;}.hi-v4-check-cascader-menu .title__text--matched {color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));}.hi-v4-check-cascader-menu-switcher {-ms-flex-negative: 0;flex-shrink: 0;font-size: 16px;color: var(--hi-v4-color-gray-500, #929aa6);}.hi-v4-check-cascader-menu-switcher--loading {color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));}.hi-v4-tree--icon-loading {-webkit-animation-name: hi-rotate;animation-name: hi-rotate;-webkit-animation-duration: 2s;animation-duration: 2s;-webkit-animation-iteration-count: infinite;animation-iteration-count: infinite;}@-webkit-keyframes hi-rotate {from {-webkit-transform: rotate(0);transform: rotate(0);}to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}}@keyframes hi-rotate {from {-webkit-transform: rotate(0);transform: rotate(0);}to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}}";
|
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/check-cascader",
|
3
|
-
"version": "4.2.
|
3
|
+
"version": "4.2.7-alpha.0",
|
4
4
|
"description": "A sub-package for @hi-ui/hiui.",
|
5
5
|
"keywords": [],
|
6
6
|
"author": "HiUI <mi-hiui@xiaomi.com>",
|
@@ -44,36 +44,36 @@
|
|
44
44
|
"url": "https://github.com/XiaoMi/hiui/issues"
|
45
45
|
},
|
46
46
|
"dependencies": {
|
47
|
-
"@hi-ui/array-utils": "^4.0.
|
48
|
-
"@hi-ui/checkbox": "^4.0.
|
49
|
-
"@hi-ui/classname": "^4.0.
|
50
|
-
"@hi-ui/env": "^4.0.
|
51
|
-
"@hi-ui/func-utils": "^4.0.
|
52
|
-
"@hi-ui/icons": "^4.0.
|
53
|
-
"@hi-ui/input": "^4.0
|
54
|
-
"@hi-ui/picker": "^4.1.
|
55
|
-
"@hi-ui/popper": "^4.1.
|
56
|
-
"@hi-ui/spinner": "^4.0.
|
57
|
-
"@hi-ui/tag-input": "^4.0
|
47
|
+
"@hi-ui/array-utils": "^4.0.5-alpha.0",
|
48
|
+
"@hi-ui/checkbox": "^4.0.10-alpha.0",
|
49
|
+
"@hi-ui/classname": "^4.0.5-alpha.0",
|
50
|
+
"@hi-ui/env": "^4.0.5-alpha.0",
|
51
|
+
"@hi-ui/func-utils": "^4.0.5-alpha.0",
|
52
|
+
"@hi-ui/icons": "^4.0.19-alpha.0",
|
53
|
+
"@hi-ui/input": "^4.1.1-alpha.0",
|
54
|
+
"@hi-ui/picker": "^4.1.6-alpha.0",
|
55
|
+
"@hi-ui/popper": "^4.1.5-alpha.0",
|
56
|
+
"@hi-ui/spinner": "^4.0.9-alpha.0",
|
57
|
+
"@hi-ui/tag-input": "^4.1.1-alpha.0",
|
58
58
|
"@hi-ui/times": "^4.0.4",
|
59
|
-
"@hi-ui/tree-utils": "^4.1.
|
59
|
+
"@hi-ui/tree-utils": "^4.1.6",
|
60
60
|
"@hi-ui/type-assertion": "^4.0.4",
|
61
61
|
"@hi-ui/use-check": "^4.0.5",
|
62
62
|
"@hi-ui/use-data-source": "^4.0.4",
|
63
63
|
"@hi-ui/use-latest": "^4.0.4",
|
64
64
|
"@hi-ui/use-merge-refs": "^4.0.4",
|
65
65
|
"@hi-ui/use-outside-click": "^4.0.4",
|
66
|
-
"@hi-ui/use-search-mode": "^4.1.
|
66
|
+
"@hi-ui/use-search-mode": "^4.1.5-alpha.0",
|
67
67
|
"@hi-ui/use-toggle": "^4.0.4",
|
68
68
|
"@hi-ui/use-uncontrolled-state": "^4.0.4"
|
69
69
|
},
|
70
70
|
"peerDependencies": {
|
71
|
-
"@hi-ui/core": ">=4.0.
|
71
|
+
"@hi-ui/core": ">=4.0.9-alpha.0",
|
72
72
|
"react": ">=16.8.6",
|
73
73
|
"react-dom": ">=16.8.6"
|
74
74
|
},
|
75
75
|
"devDependencies": {
|
76
|
-
"@hi-ui/core": "^4.0.
|
76
|
+
"@hi-ui/core": "^4.0.9-alpha.0",
|
77
77
|
"@hi-ui/core-css": "^4.1.5",
|
78
78
|
"react": "^17.0.1",
|
79
79
|
"react-dom": "^17.0.1"
|