@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.
@@ -47,6 +47,8 @@ export interface ComboSelectProps {
47
47
  popoverClassName?: string;
48
48
  /**容器最大高度*/
49
49
  maxHeight?: number;
50
+ /**容器高度*/
51
+ height?: number;
50
52
  /**大小*/
51
53
  size?: 'large' | 'medium' | 'small';
52
54
  /**选择器footer actions*/
@@ -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
- maxHeight: string;
10
+ [x: string]: string;
12
11
  height?: undefined;
13
12
  };