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.
- package/es/label-condition-input/index.d.ts +1 -4
- package/es/label-condition-input/index.js +1 -2
- package/es/label-tree-select/index.d.ts +1 -4
- package/es/label-tree-select/index.js +1 -2
- package/lib/label-condition-input/index.d.ts +1 -4
- package/lib/label-condition-input/index.js +1 -2
- package/lib/label-tree-select/index.d.ts +1 -4
- package/lib/label-tree-select/index.js +1 -2
- package/package.json +2 -2
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "assui",
|
|
3
|
-
"version": "2.1.
|
|
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": "
|
|
79
|
+
"gitHead": "5f8bc7120d684bc5e2510b6cd01858953e48d7f2"
|
|
80
80
|
}
|