@para-ui/core 2.2.2 → 2.2.5
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/AutoBox/index.js +1 -1
- package/Breadcrumbs/index.js +1 -1
- package/Checkbox/index.js +1 -1
- package/CheckboxGroup/index.js +1 -1
- package/ComboSelect/index.js +1 -1
- package/ComboSelect/interface.d.ts +2 -0
- package/ComboSelect/utils.d.ts +2 -3
- package/Form/index.js +1 -1
- package/FormItem/index.js +2 -2
- package/InputLang/index.js +1 -1
- package/OperateBtn/index.js +1 -1
- package/Pagination/index.js +1 -1
- package/Popover/index.js +1 -1
- package/README.md +14 -0
- package/Radio/index.js +1 -1
- package/RadioGroup/index.js +1 -1
- package/Select/index.js +1 -1
- package/SelectInput/index.js +1 -1
- package/Table/index.js +1 -1
- package/Transfer/index.js +1 -1
- package/Tree/index.js +1 -1
- package/cdn/AutoBox/index.js +1 -1
- package/cdn/Breadcrumbs/index.js +1 -1
- package/cdn/Checkbox/index.js +1 -1
- package/cdn/CheckboxGroup/index.js +1 -1
- package/cdn/ComboSelect/index.js +1 -1
- package/cdn/Form/index.js +1 -1
- package/cdn/FormItem/index.js +1 -1
- package/cdn/InputLang/index.js +1 -1
- package/cdn/OperateBtn/index.js +1 -1
- package/cdn/Pagination/index.js +1 -1
- package/cdn/Popover/index.js +1 -1
- package/cdn/Radio/index.js +1 -1
- package/cdn/RadioGroup/index.js +1 -1
- package/cdn/Select/index.js +1 -1
- package/cdn/SelectInput/index.js +1 -1
- package/cdn/Table/index.js +1 -1
- package/cdn/Transfer/index.js +1 -1
- package/cdn/Tree/index.js +1 -1
- package/index.js +1 -1
- package/package.json +2 -2
package/ComboSelect/utils.d.ts
CHANGED
|
@@ -4,10 +4,9 @@ export declare const anchorOriginMap: {
|
|
|
4
4
|
export declare const getReplaceField: (mode: string, repl: any, tableP: any, treeP: any) => any;
|
|
5
5
|
export declare const toArray: (list: any) => any[];
|
|
6
6
|
export declare const isRemoteLoad: (mode: string, props: any) => boolean;
|
|
7
|
-
export declare const getOverlaySize: (mode: string, isRemoteLoad?: boolean, maxHeight?: number) => {
|
|
7
|
+
export declare const getOverlaySize: (mode: string, isRemoteLoad?: boolean, maxHeight?: number, height?: number) => {
|
|
8
8
|
height: string;
|
|
9
|
-
maxHeight?: undefined;
|
|
10
9
|
} | {
|
|
11
|
-
|
|
10
|
+
[x: string]: string;
|
|
12
11
|
height?: undefined;
|
|
13
12
|
};
|