@hi-ui/form 4.1.5 → 4.1.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 +21 -0
- package/lib/cjs/Form.js +2 -2
- package/lib/cjs/FormItem.js +2 -2
- package/lib/cjs/FormLabel.js +3 -3
- package/lib/cjs/FormList.js +2 -2
- package/lib/cjs/FormMessage.js +2 -2
- package/lib/cjs/FormReset.js +3 -3
- package/lib/cjs/FormSubmit.js +3 -3
- package/lib/cjs/styles/index.scss.js +1 -1
- package/lib/cjs/use-form-field.js +2 -2
- package/lib/cjs/use-form.js +3 -3
- package/lib/esm/FormLabel.js +1 -1
- package/lib/esm/index.js +2 -6
- package/lib/esm/styles/index.scss.js +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @hi-ui/form
|
|
2
2
|
|
|
3
|
+
## 4.1.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/button@4.0.10-alpha.0
|
|
11
|
+
- @hi-ui/array-utils@4.0.5-alpha.0
|
|
12
|
+
- @hi-ui/classname@4.0.5-alpha.0
|
|
13
|
+
- @hi-ui/dom-utils@4.0.8-alpha.0
|
|
14
|
+
- @hi-ui/core@4.0.9-alpha.0
|
|
15
|
+
- @hi-ui/object-utils@4.0.5-alpha.0
|
|
16
|
+
- @hi-ui/func-utils@4.0.5-alpha.0
|
|
17
|
+
|
|
18
|
+
## 4.1.6
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- [#2761](https://github.com/XiaoMi/hiui/pull/2761) [`7fc7e2c1a`](https://github.com/XiaoMi/hiui/commit/7fc7e2c1a8c0daa6df77bf01864c262a14df3cc6) Thanks [@zyprepare](https://github.com/zyprepare)! - fix: 修复横向表单错误提示样式问题
|
|
23
|
+
|
|
3
24
|
## 4.1.5
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/lib/cjs/Form.js
CHANGED
|
@@ -19,12 +19,12 @@ var classname = require('@hi-ui/classname');
|
|
|
19
19
|
var env = require('@hi-ui/env');
|
|
20
20
|
var context = require('./context.js');
|
|
21
21
|
var useForm = require('./use-form.js');
|
|
22
|
-
function
|
|
22
|
+
function _interopDefaultCompat(e) {
|
|
23
23
|
return e && _typeof(e) === 'object' && 'default' in e ? e : {
|
|
24
24
|
'default': e
|
|
25
25
|
};
|
|
26
26
|
}
|
|
27
|
-
var React__default = /*#__PURE__*/
|
|
27
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
28
28
|
var _role = 'form';
|
|
29
29
|
var _prefix = classname.getPrefixCls(_role);
|
|
30
30
|
// form 注册表
|
package/lib/cjs/FormItem.js
CHANGED
|
@@ -22,12 +22,12 @@ var FormMessage = require('./FormMessage.js');
|
|
|
22
22
|
var FormField = require('./FormField.js');
|
|
23
23
|
var context = require('./context.js');
|
|
24
24
|
var classname = require('@hi-ui/classname');
|
|
25
|
-
function
|
|
25
|
+
function _interopDefaultCompat(e) {
|
|
26
26
|
return e && _typeof(e) === 'object' && 'default' in e ? e : {
|
|
27
27
|
'default': e
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
|
-
var React__default = /*#__PURE__*/
|
|
30
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
31
31
|
var FormItem = function FormItem(_a) {
|
|
32
32
|
var className = _a.className,
|
|
33
33
|
children = _a.children,
|
package/lib/cjs/FormLabel.js
CHANGED
|
@@ -20,12 +20,12 @@ var env = require('@hi-ui/env');
|
|
|
20
20
|
var context = require('./context.js');
|
|
21
21
|
var typeAssertion = require('@hi-ui/type-assertion');
|
|
22
22
|
var core = require('@hi-ui/core');
|
|
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__*/
|
|
28
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
29
29
|
var _role = 'form-label';
|
|
30
30
|
var _prefix = classname.getPrefixCls(_role);
|
|
31
31
|
var FormLabel = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
@@ -63,7 +63,7 @@ var FormLabel = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
63
63
|
var labelWidth = typeAssertion.isNumeric(labelWidthProp) ? Number(labelWidthProp) : labelWidthProp;
|
|
64
64
|
return {
|
|
65
65
|
labelWidth: labelWidth,
|
|
66
|
-
controlWidth: "calc(100% - " + labelWidth + "px)"
|
|
66
|
+
controlWidth: typeAssertion.isNumeric(labelWidth) ? "calc(100% - " + labelWidth + "px)" : "calc(100% - " + labelWidth + ")"
|
|
67
67
|
};
|
|
68
68
|
}, [labelPlacement, labelWidthProp]),
|
|
69
69
|
labelWidth = _useMemo.labelWidth,
|
package/lib/cjs/FormList.js
CHANGED
|
@@ -18,12 +18,12 @@ var env = require('@hi-ui/env');
|
|
|
18
18
|
var context = require('./context.js');
|
|
19
19
|
var objectUtils = require('@hi-ui/object-utils');
|
|
20
20
|
var typeAssertion = require('@hi-ui/type-assertion');
|
|
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 React__default = /*#__PURE__*/
|
|
26
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
27
27
|
var fieldListSymbol = Symbol('field-list');
|
|
28
28
|
var FormList = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
29
29
|
var children = _ref.children,
|
package/lib/cjs/FormMessage.js
CHANGED
|
@@ -18,12 +18,12 @@ var React = require('react');
|
|
|
18
18
|
var classname = require('@hi-ui/classname');
|
|
19
19
|
var env = require('@hi-ui/env');
|
|
20
20
|
var context = require('./context.js');
|
|
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 React__default = /*#__PURE__*/
|
|
26
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
27
27
|
var _role = 'form-message';
|
|
28
28
|
var _prefix = classname.getPrefixCls(_role);
|
|
29
29
|
var FormMessage = /*#__PURE__*/React.forwardRef(function (_a, ref) {
|
package/lib/cjs/FormReset.js
CHANGED
|
@@ -19,13 +19,13 @@ var classname = require('@hi-ui/classname');
|
|
|
19
19
|
var env = require('@hi-ui/env');
|
|
20
20
|
var context = require('./context.js');
|
|
21
21
|
var Button = require('@hi-ui/button');
|
|
22
|
-
function
|
|
22
|
+
function _interopDefaultCompat(e) {
|
|
23
23
|
return e && _typeof(e) === 'object' && 'default' in e ? e : {
|
|
24
24
|
'default': e
|
|
25
25
|
};
|
|
26
26
|
}
|
|
27
|
-
var React__default = /*#__PURE__*/
|
|
28
|
-
var Button__default = /*#__PURE__*/
|
|
27
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
28
|
+
var Button__default = /*#__PURE__*/_interopDefaultCompat(Button);
|
|
29
29
|
var FORM_RESET_PREFIX = classname.getPrefixCls('form-reset');
|
|
30
30
|
var FormReset = /*#__PURE__*/React.forwardRef(function (_a, ref) {
|
|
31
31
|
var _a$prefixCls = _a.prefixCls,
|
package/lib/cjs/FormSubmit.js
CHANGED
|
@@ -19,13 +19,13 @@ var classname = require('@hi-ui/classname');
|
|
|
19
19
|
var env = require('@hi-ui/env');
|
|
20
20
|
var context = require('./context.js');
|
|
21
21
|
var Button = require('@hi-ui/button');
|
|
22
|
-
function
|
|
22
|
+
function _interopDefaultCompat(e) {
|
|
23
23
|
return e && _typeof(e) === 'object' && 'default' in e ? e : {
|
|
24
24
|
'default': e
|
|
25
25
|
};
|
|
26
26
|
}
|
|
27
|
-
var React__default = /*#__PURE__*/
|
|
28
|
-
var Button__default = /*#__PURE__*/
|
|
27
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
28
|
+
var Button__default = /*#__PURE__*/_interopDefaultCompat(Button);
|
|
29
29
|
var _role = 'form-submit';
|
|
30
30
|
var _prefix = classname.getPrefixCls(_role);
|
|
31
31
|
var FormSubmit = /*#__PURE__*/React.forwardRef(function (_a, ref) {
|
|
@@ -13,6 +13,6 @@ Object.defineProperty(exports, '__esModule', {
|
|
|
13
13
|
value: true
|
|
14
14
|
});
|
|
15
15
|
var css_248z = ".hi-v4-form {max-width: 100%;position: relative;}.hi-v4-form fieldset {margin: 0;padding: 0;border: 0;}.hi-v4-form fieldset + fieldset {margin-top: 16px;}.hi-v4-form legend {margin: 0 0 16px;color: var(--hi-v4-color-gray-800, #1f2937);}.hi-v4-form--placement-horizontal {display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;-webkit-column-gap: var(--hi-v4-spacing-10, 20px);-moz-column-gap: var(--hi-v4-spacing-10, 20px);column-gap: var(--hi-v4-spacing-10, 20px);}.hi-v4-form--placement-horizontal .hi-v4-form-label__indent {min-height: var(--hi-v4-height-8, 32px);}.hi-v4-form-label {font-size: var(--hi-v4-text-size-md, 0.875rem);-webkit-box-sizing: border-box;box-sizing: border-box;margin-right: 0;}.hi-v4-form-label__content {display: -webkit-box;display: -ms-flexbox;display: flex;}.hi-v4-form-label--placement-top > .hi-v4-form-label__content {text-align: left;-webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-direction: column;flex-direction: column;padding-right: 0;}.hi-v4-form-label__content__text, .hi-v4-form-label__content__indent {-ms-flex-negative: 0;flex-shrink: 0;-webkit-box-sizing: border-box;box-sizing: border-box;vertical-align: top;color: var(--hi-v4-color-gray-800, #1f2937);overflow-wrap: break-word;}.hi-v4-form-label__content__text {padding-right: var(--hi-v4-spacing-6, 12px);min-height: var(--hi-v4-height-8, 32px);line-height: var(--hi-v4-height-8, 32px);}.hi-v4-form-label--placement-left > .hi-v4-form-label__content > .hi-v4-form-label__content__text {text-align: left;}.hi-v4-form-label--placement-right > .hi-v4-form-label__content > .hi-v4-form-label__content__text {text-align: right;}.hi-v4-form-label--placement-top > .hi-v4-form-label__content > .hi-v4-form-label__content__text {height: 22px;min-height: 22px;line-height: 22px;padding-right: 0;margin-bottom: var(--hi-v4-spacing-4, 8px);}.hi-v4-form-label--required > .hi-v4-form-label__content > .hi-v4-form-label__content__text::before {margin-right: var(--hi-v4-spacing-2, 4px);content: \"*\";color: var(--hi-v4-color-danger-500, var(--hi-v4-color-red-500, #ff5959));}.hi-v4-form-label__content__control {min-width: 1px;}.hi-v4-form-message {display: block;font-size: var(--hi-v4-text-size-md, 0.875rem);min-height: 24px;padding: 2px 0;-webkit-box-sizing: border-box;box-sizing: border-box;line-height: 20px;-webkit-transform: translateY(-10%);transform: translateY(-10%);opacity: 0;color: var(--hi-v4-color-danger-500, var(--hi-v4-color-red-500, #ff5959));-webkit-transition: all 0.3s;transition: all 0.3s;}.hi-v4-form-message--show {opacity: 1;-webkit-transform: translateY(0);transform: translateY(0);}.hi-v4-form-item {position: relative;}";
|
|
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;
|
|
@@ -19,12 +19,12 @@ var typeAssertion = require('@hi-ui/type-assertion');
|
|
|
19
19
|
var Validater = require('async-validator');
|
|
20
20
|
var arrayUtils = require('@hi-ui/array-utils');
|
|
21
21
|
var index = require('./utils/index.js');
|
|
22
|
-
function
|
|
22
|
+
function _interopDefaultCompat(e) {
|
|
23
23
|
return e && _typeof(e) === 'object' && 'default' in e ? e : {
|
|
24
24
|
'default': e
|
|
25
25
|
};
|
|
26
26
|
}
|
|
27
|
-
var Validater__default = /*#__PURE__*/
|
|
27
|
+
var Validater__default = /*#__PURE__*/_interopDefaultCompat(Validater);
|
|
28
28
|
var useFiledRules = function useFiledRules(props) {
|
|
29
29
|
var field = props.field,
|
|
30
30
|
rulesProp = props.rules,
|
package/lib/cjs/use-form.js
CHANGED
|
@@ -22,13 +22,13 @@ var typeAssertion = require('@hi-ui/type-assertion');
|
|
|
22
22
|
var funcUtils = require('@hi-ui/func-utils');
|
|
23
23
|
var objectUtils = require('@hi-ui/object-utils');
|
|
24
24
|
var domUtils = require('@hi-ui/dom-utils');
|
|
25
|
-
function
|
|
25
|
+
function _interopDefaultCompat(e) {
|
|
26
26
|
return e && _typeof(e) === 'object' && 'default' in e ? e : {
|
|
27
27
|
'default': e
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
|
-
var _regeneratorRuntime__default = /*#__PURE__*/
|
|
31
|
-
var React__default = /*#__PURE__*/
|
|
30
|
+
var _regeneratorRuntime__default = /*#__PURE__*/_interopDefaultCompat(_regeneratorRuntime);
|
|
31
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
32
32
|
var EMPTY_RULES = {};
|
|
33
33
|
var EMPTY_ERRORS = {};
|
|
34
34
|
var EMPTY_TOUCHED = {};
|
package/lib/esm/FormLabel.js
CHANGED
|
@@ -51,7 +51,7 @@ var FormLabel = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
51
51
|
var labelWidth = isNumeric(labelWidthProp) ? Number(labelWidthProp) : labelWidthProp;
|
|
52
52
|
return {
|
|
53
53
|
labelWidth: labelWidth,
|
|
54
|
-
controlWidth: "calc(100% - " + labelWidth + "px)"
|
|
54
|
+
controlWidth: isNumeric(labelWidth) ? "calc(100% - " + labelWidth + "px)" : "calc(100% - " + labelWidth + ")"
|
|
55
55
|
};
|
|
56
56
|
}, [labelPlacement, labelWidthProp]),
|
|
57
57
|
labelWidth = _useMemo.labelWidth,
|
package/lib/esm/index.js
CHANGED
|
@@ -9,19 +9,15 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import './styles/index.scss.js';
|
|
11
11
|
import { Form as Form$1 } from './Form.js';
|
|
12
|
-
export { FORM_REGISTER_TABLE
|
|
12
|
+
export { FORM_REGISTER_TABLE } from './Form.js';
|
|
13
13
|
import { FormItem } from './FormItem.js';
|
|
14
|
-
export { FormItem } from './FormItem.js';
|
|
15
14
|
import { FormList } from './FormList.js';
|
|
16
|
-
export { FormList } from './FormList.js';
|
|
17
15
|
import { FormSubmit } from './FormSubmit.js';
|
|
18
|
-
export { FormSubmit } from './FormSubmit.js';
|
|
19
16
|
import { FormReset } from './FormReset.js';
|
|
20
|
-
export { FormReset } from './FormReset.js';
|
|
21
17
|
var Form = Object.assign(Form$1, {
|
|
22
18
|
Item: FormItem,
|
|
23
19
|
List: FormList,
|
|
24
20
|
Submit: FormSubmit,
|
|
25
21
|
Reset: FormReset
|
|
26
22
|
});
|
|
27
|
-
export { Form as default };
|
|
23
|
+
export { Form$1 as Form, FormItem, FormList, FormReset, FormSubmit, Form as default };
|
|
@@ -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 = ".hi-v4-form {max-width: 100%;position: relative;}.hi-v4-form fieldset {margin: 0;padding: 0;border: 0;}.hi-v4-form fieldset + fieldset {margin-top: 16px;}.hi-v4-form legend {margin: 0 0 16px;color: var(--hi-v4-color-gray-800, #1f2937);}.hi-v4-form--placement-horizontal {display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;-webkit-column-gap: var(--hi-v4-spacing-10, 20px);-moz-column-gap: var(--hi-v4-spacing-10, 20px);column-gap: var(--hi-v4-spacing-10, 20px);}.hi-v4-form--placement-horizontal .hi-v4-form-label__indent {min-height: var(--hi-v4-height-8, 32px);}.hi-v4-form-label {font-size: var(--hi-v4-text-size-md, 0.875rem);-webkit-box-sizing: border-box;box-sizing: border-box;margin-right: 0;}.hi-v4-form-label__content {display: -webkit-box;display: -ms-flexbox;display: flex;}.hi-v4-form-label--placement-top > .hi-v4-form-label__content {text-align: left;-webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-direction: column;flex-direction: column;padding-right: 0;}.hi-v4-form-label__content__text, .hi-v4-form-label__content__indent {-ms-flex-negative: 0;flex-shrink: 0;-webkit-box-sizing: border-box;box-sizing: border-box;vertical-align: top;color: var(--hi-v4-color-gray-800, #1f2937);overflow-wrap: break-word;}.hi-v4-form-label__content__text {padding-right: var(--hi-v4-spacing-6, 12px);min-height: var(--hi-v4-height-8, 32px);line-height: var(--hi-v4-height-8, 32px);}.hi-v4-form-label--placement-left > .hi-v4-form-label__content > .hi-v4-form-label__content__text {text-align: left;}.hi-v4-form-label--placement-right > .hi-v4-form-label__content > .hi-v4-form-label__content__text {text-align: right;}.hi-v4-form-label--placement-top > .hi-v4-form-label__content > .hi-v4-form-label__content__text {height: 22px;min-height: 22px;line-height: 22px;padding-right: 0;margin-bottom: var(--hi-v4-spacing-4, 8px);}.hi-v4-form-label--required > .hi-v4-form-label__content > .hi-v4-form-label__content__text::before {margin-right: var(--hi-v4-spacing-2, 4px);content: \"*\";color: var(--hi-v4-color-danger-500, var(--hi-v4-color-red-500, #ff5959));}.hi-v4-form-label__content__control {min-width: 1px;}.hi-v4-form-message {display: block;font-size: var(--hi-v4-text-size-md, 0.875rem);min-height: 24px;padding: 2px 0;-webkit-box-sizing: border-box;box-sizing: border-box;line-height: 20px;-webkit-transform: translateY(-10%);transform: translateY(-10%);opacity: 0;color: var(--hi-v4-color-danger-500, var(--hi-v4-color-red-500, #ff5959));-webkit-transition: all 0.3s;transition: all 0.3s;}.hi-v4-form-message--show {opacity: 1;-webkit-transform: translateY(0);transform: translateY(0);}.hi-v4-form-item {position: relative;}";
|
|
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/form",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.7-alpha.0",
|
|
4
4
|
"description": "A sub-package for @hi-ui/hiui.",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "HiUI <mi-hiui@xiaomi.com>",
|
|
@@ -43,24 +43,24 @@
|
|
|
43
43
|
"url": "https://github.com/XiaoMi/hiui/issues"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@hi-ui/array-utils": "^4.0.
|
|
47
|
-
"@hi-ui/button": "^4.0.
|
|
48
|
-
"@hi-ui/classname": "^4.0.
|
|
49
|
-
"@hi-ui/dom-utils": "^4.0.
|
|
50
|
-
"@hi-ui/env": "^4.0.
|
|
51
|
-
"@hi-ui/func-utils": "^4.0.
|
|
52
|
-
"@hi-ui/object-utils": "^4.0.
|
|
46
|
+
"@hi-ui/array-utils": "^4.0.5-alpha.0",
|
|
47
|
+
"@hi-ui/button": "^4.0.10-alpha.0",
|
|
48
|
+
"@hi-ui/classname": "^4.0.5-alpha.0",
|
|
49
|
+
"@hi-ui/dom-utils": "^4.0.8-alpha.0",
|
|
50
|
+
"@hi-ui/env": "^4.0.5-alpha.0",
|
|
51
|
+
"@hi-ui/func-utils": "^4.0.5-alpha.0",
|
|
52
|
+
"@hi-ui/object-utils": "^4.0.5-alpha.0",
|
|
53
53
|
"@hi-ui/type-assertion": "^4.0.4",
|
|
54
54
|
"@hi-ui/use-latest": "^4.0.4",
|
|
55
55
|
"async-validator": "^4.0.7"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
|
-
"@hi-ui/core": ">=4.0.
|
|
58
|
+
"@hi-ui/core": ">=4.0.9-alpha.0",
|
|
59
59
|
"react": ">=16.8.6",
|
|
60
60
|
"react-dom": ">=16.8.6"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@hi-ui/core": "^4.0.
|
|
63
|
+
"@hi-ui/core": "^4.0.9-alpha.0",
|
|
64
64
|
"@hi-ui/core-css": "^4.1.5",
|
|
65
65
|
"react": "^17.0.1",
|
|
66
66
|
"react-dom": "^17.0.1"
|