assui 2.0.35 → 2.0.37
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.
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import type { InputProps } from 'antd/es/input';
|
|
3
|
-
import Input from 'antd/es/input';
|
|
4
3
|
import * as numberTypeEnum from './const/numberType';
|
|
5
4
|
export interface NumberInputProps extends Omit<InputProps, 'onChange' | 'onBlur'> {
|
|
6
5
|
/** 输入框的内容 */
|
|
@@ -34,6 +33,6 @@ export interface NumberInputProps extends Omit<InputProps, 'onChange' | 'onBlur'
|
|
|
34
33
|
/** 可以点击清除图标删除内容 */
|
|
35
34
|
allowClear?: boolean;
|
|
36
35
|
}
|
|
37
|
-
declare const NumberInput: React.ForwardRefExoticComponent<NumberInputProps & React.RefAttributes<
|
|
36
|
+
declare const NumberInput: React.ForwardRefExoticComponent<NumberInputProps & React.RefAttributes<unknown>>;
|
|
38
37
|
export { numberTypeEnum };
|
|
39
38
|
export default NumberInput;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import type { InputProps } from 'antd/es/input';
|
|
3
|
-
import Input from 'antd/es/input';
|
|
4
3
|
import * as numberTypeEnum from './const/numberType';
|
|
5
4
|
export interface NumberInputProps extends Omit<InputProps, 'onChange' | 'onBlur'> {
|
|
6
5
|
/** 输入框的内容 */
|
|
@@ -34,6 +33,6 @@ export interface NumberInputProps extends Omit<InputProps, 'onChange' | 'onBlur'
|
|
|
34
33
|
/** 可以点击清除图标删除内容 */
|
|
35
34
|
allowClear?: boolean;
|
|
36
35
|
}
|
|
37
|
-
declare const NumberInput: React.ForwardRefExoticComponent<NumberInputProps & React.RefAttributes<
|
|
36
|
+
declare const NumberInput: React.ForwardRefExoticComponent<NumberInputProps & React.RefAttributes<unknown>>;
|
|
38
37
|
export { numberTypeEnum };
|
|
39
38
|
export default NumberInput;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "assui",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.37",
|
|
4
4
|
"description": "react ui library",
|
|
5
5
|
"author": "jason <usochen@gmail.com>",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@ahooksjs/use-url-state": "^2.5.8",
|
|
34
34
|
"@tinymce/tinymce-react": "^3.13.0",
|
|
35
35
|
"@types/react-beautiful-dnd": "^13.1.2",
|
|
36
|
-
"a-icons": "^1.0.
|
|
36
|
+
"a-icons": "^1.0.22",
|
|
37
37
|
"ahooks": "^2.10.9",
|
|
38
38
|
"bignumber.js": "^9.0.1",
|
|
39
39
|
"copy-to-clipboard": "^3.3.1",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"node": ">=10.0.0"
|
|
70
70
|
},
|
|
71
71
|
"license": "MIT",
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "c8560d2661d2987b9ccfef8f788d66935044c626"
|
|
73
73
|
}
|