assui 2.1.54 → 2.1.55

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.
@@ -12,8 +12,5 @@ export interface LabelConditionInputProps extends Omit<ConditionInputProps, 'onB
12
12
  /** 组件dom id */
13
13
  id?: string;
14
14
  }
15
- declare const LabelConditionInput: {
16
- (props: LabelConditionInputProps): JSX.Element;
17
- Option: new (text?: string | undefined, value?: string | undefined, defaultSelected?: boolean | undefined, selected?: boolean | undefined) => HTMLOptionElement;
18
- };
15
+ declare const LabelConditionInput: (props: LabelConditionInputProps) => JSX.Element;
19
16
  export default LabelConditionInput;
@@ -112,5 +112,4 @@ var LabelConditionInput = function LabelConditionInput(props) {
112
112
  }, label)));
113
113
  };
114
114
 
115
- export default LabelConditionInput;
116
- LabelConditionInput.Option = Option;
115
+ export default LabelConditionInput;
@@ -7,8 +7,5 @@ export interface LabelTreeSelectProps extends Omit<TreeSelectProps<string[]>, 'o
7
7
  unit?: React.ReactNode;
8
8
  onDropdownVisibleChange?: (value: boolean) => void;
9
9
  }
10
- declare const LabelTreeSelect: {
11
- (props: LabelTreeSelectProps): JSX.Element;
12
- Option: new (text?: string | undefined, value?: string | undefined, defaultSelected?: boolean | undefined, selected?: boolean | undefined) => HTMLOptionElement;
13
- };
10
+ declare const LabelTreeSelect: (props: LabelTreeSelectProps) => JSX.Element;
14
11
  export default LabelTreeSelect;
@@ -109,5 +109,4 @@ var LabelTreeSelect = function LabelTreeSelect(props) {
109
109
  }, label));
110
110
  };
111
111
 
112
- export default LabelTreeSelect;
113
- LabelTreeSelect.Option = Option;
112
+ export default LabelTreeSelect;
@@ -12,8 +12,5 @@ export interface LabelConditionInputProps extends Omit<ConditionInputProps, 'onB
12
12
  /** 组件dom id */
13
13
  id?: string;
14
14
  }
15
- declare const LabelConditionInput: {
16
- (props: LabelConditionInputProps): JSX.Element;
17
- Option: new (text?: string | undefined, value?: string | undefined, defaultSelected?: boolean | undefined, selected?: boolean | undefined) => HTMLOptionElement;
18
- };
15
+ declare const LabelConditionInput: (props: LabelConditionInputProps) => JSX.Element;
19
16
  export default LabelConditionInput;
@@ -129,5 +129,4 @@ var LabelConditionInput = function LabelConditionInput(props) {
129
129
  }, label)));
130
130
  };
131
131
 
132
- exports["default"] = LabelConditionInput;
133
- LabelConditionInput.Option = Option;
132
+ exports["default"] = LabelConditionInput;
@@ -7,8 +7,5 @@ export interface LabelTreeSelectProps extends Omit<TreeSelectProps<string[]>, 'o
7
7
  unit?: React.ReactNode;
8
8
  onDropdownVisibleChange?: (value: boolean) => void;
9
9
  }
10
- declare const LabelTreeSelect: {
11
- (props: LabelTreeSelectProps): JSX.Element;
12
- Option: new (text?: string | undefined, value?: string | undefined, defaultSelected?: boolean | undefined, selected?: boolean | undefined) => HTMLOptionElement;
13
- };
10
+ declare const LabelTreeSelect: (props: LabelTreeSelectProps) => JSX.Element;
14
11
  export default LabelTreeSelect;
@@ -125,5 +125,4 @@ var LabelTreeSelect = function LabelTreeSelect(props) {
125
125
  }, label));
126
126
  };
127
127
 
128
- exports["default"] = LabelTreeSelect;
129
- LabelTreeSelect.Option = Option;
128
+ exports["default"] = LabelTreeSelect;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "assui",
3
- "version": "2.1.54",
3
+ "version": "2.1.55",
4
4
  "description": "react ui library",
5
5
  "author": "jason <usochen@gmail.com>",
6
6
  "main": "./lib/index.js",
@@ -76,5 +76,5 @@
76
76
  "node": ">=10.0.0"
77
77
  },
78
78
  "license": "MIT",
79
- "gitHead": "17d94d75438b08256e76b9839610f2f26a474bf1"
79
+ "gitHead": "5f8bc7120d684bc5e2510b6cd01858953e48d7f2"
80
80
  }