@das-fed/upf-ui 6.4.0-dev.184 → 6.4.0-dev.185

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.
@@ -72,6 +72,9 @@ export interface Props {
72
72
  load?: (data: any, level: number) => Promise<any>
73
73
 
74
74
 
75
+ batchLoad?: (parentIds: string[]) => Promise<Record<string, any[]>>
76
+
77
+
75
78
  search?: (text: string) => Promise<any>
76
79
 
77
80
 
@@ -248,6 +248,7 @@ declare const DasTreeV2Ref: () => import("vue").Ref<({
248
248
  readonly searchEmptyText?: string | undefined;
249
249
  readonly rootNodeId?: string | undefined;
250
250
  readonly load?: ((data: any, level: number) => Promise<any>) | undefined;
251
+ readonly batchLoad?: ((parentIds: string[]) => Promise<Record<string, any[]>>) | undefined;
251
252
  readonly search?: ((text: string) => Promise<any>) | undefined;
252
253
  readonly renderDom?: boolean | undefined;
253
254
  readonly overlayZIndex?: string | undefined;
@@ -483,6 +484,7 @@ declare const DasTreeV2Ref: () => import("vue").Ref<({
483
484
  readonly searchEmptyText?: string | undefined;
484
485
  readonly rootNodeId?: string | undefined;
485
486
  readonly load?: ((data: any, level: number) => Promise<any>) | undefined;
487
+ readonly batchLoad?: ((parentIds: string[]) => Promise<Record<string, any[]>>) | undefined;
486
488
  readonly search?: ((text: string) => Promise<any>) | undefined;
487
489
  readonly renderDom?: boolean | undefined;
488
490
  readonly overlayZIndex?: string | undefined;