assui 2.0.128 → 2.0.129

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.
@@ -8,8 +8,5 @@ export interface LabelNumberInputProps extends NumberInputProps {
8
8
  /** 组件dom id */
9
9
  id?: string;
10
10
  }
11
- declare const LabelNumberInput: {
12
- (props: LabelNumberInputProps): JSX.Element;
13
- Option: new (text?: string | undefined, value?: string | undefined, defaultSelected?: boolean | undefined, selected?: boolean | undefined) => HTMLOptionElement;
14
- };
11
+ declare const LabelNumberInput: (props: LabelNumberInputProps) => JSX.Element;
15
12
  export default LabelNumberInput;
@@ -113,5 +113,4 @@ var LabelNumberInput = function LabelNumberInput(props) {
113
113
  }, label)));
114
114
  };
115
115
 
116
- export default LabelNumberInput;
117
- LabelNumberInput.Option = Option;
116
+ export default LabelNumberInput;
@@ -8,8 +8,5 @@ export interface LabelNumberInputProps extends NumberInputProps {
8
8
  /** 组件dom id */
9
9
  id?: string;
10
10
  }
11
- declare const LabelNumberInput: {
12
- (props: LabelNumberInputProps): JSX.Element;
13
- Option: new (text?: string | undefined, value?: string | undefined, defaultSelected?: boolean | undefined, selected?: boolean | undefined) => HTMLOptionElement;
14
- };
11
+ declare const LabelNumberInput: (props: LabelNumberInputProps) => JSX.Element;
15
12
  export default LabelNumberInput;
@@ -131,5 +131,4 @@ var LabelNumberInput = function LabelNumberInput(props) {
131
131
  }, label)));
132
132
  };
133
133
 
134
- exports["default"] = LabelNumberInput;
135
- LabelNumberInput.Option = Option;
134
+ exports["default"] = LabelNumberInput;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "assui",
3
- "version": "2.0.128",
3
+ "version": "2.0.129",
4
4
  "description": "react ui library",
5
5
  "author": "jason <usochen@gmail.com>",
6
6
  "main": "./lib/index.js",
@@ -69,5 +69,5 @@
69
69
  "node": ">=10.0.0"
70
70
  },
71
71
  "license": "MIT",
72
- "gitHead": "8f68b73387f510284d6930b3c90cb1abef3402c5"
72
+ "gitHead": "46b259f3da891a8b3d5ac978cdb44b260bccb298"
73
73
  }