qy-ui-for-ls 0.4.53 → 0.4.54

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.
@@ -85,6 +85,13 @@ declare const _default: DefineComponent<ExtractPropTypes<{
85
85
  type: (NumberConstructor | StringConstructor)[];
86
86
  default: undefined;
87
87
  };
88
+ /**
89
+ * 滚动条的最大高度,默认 530px
90
+ */
91
+ maxHeight: {
92
+ type: (NumberConstructor | StringConstructor)[];
93
+ default: number;
94
+ };
88
95
  }>, {
89
96
  getTreeData: () => void;
90
97
  clearCurrent: () => void;
@@ -178,6 +185,13 @@ declare const _default: DefineComponent<ExtractPropTypes<{
178
185
  type: (NumberConstructor | StringConstructor)[];
179
186
  default: undefined;
180
187
  };
188
+ /**
189
+ * 滚动条的最大高度,默认 530px
190
+ */
191
+ maxHeight: {
192
+ type: (NumberConstructor | StringConstructor)[];
193
+ default: number;
194
+ };
181
195
  }>> & Readonly<{
182
196
  onSearch?: ((...args: any[]) => any) | undefined;
183
197
  onNodeClick?: ((...args: any[]) => any) | undefined;
@@ -193,5 +207,6 @@ declare const _default: DefineComponent<ExtractPropTypes<{
193
207
  showExpand: boolean;
194
208
  treeAttrs: Record<string, any>;
195
209
  treeHeight: string | number;
210
+ maxHeight: string | number;
196
211
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
197
212
  export default _default;
@@ -83,6 +83,7 @@ export interface TreeProps {
83
83
  paramKey: string;
84
84
  treeAttrs?: Record<string, any>;
85
85
  treeHeight?: string | number;
86
+ maxHeight?: string | number;
86
87
  }
87
88
  export declare namespace Table {
88
89
  interface Pageable {