@vtj/designer 0.11.15 → 0.12.0-alpha.0

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.
Files changed (41) hide show
  1. package/dist/Editor-DN_yRaGC.js +4 -0
  2. package/dist/index-BW1rPE3i.js +17483 -0
  3. package/dist/index.mjs +69 -13054
  4. package/dist/style.css +1 -1
  5. package/package.json +10 -8
  6. package/types/components/hooks/index.d.ts +1 -0
  7. package/types/components/hooks/useAI.d.ts +188 -0
  8. package/types/components/hooks/useOpenApi.d.ts +15 -25
  9. package/types/components/hooks/useTemplates.d.ts +1 -1
  10. package/types/components/regions/apps.d.ts +32 -3
  11. package/types/components/regions/index.d.ts +31 -1
  12. package/types/components/regions/workspace.d.ts +1 -0
  13. package/types/components/shared/binder.d.ts +10 -10
  14. package/types/components/shared/item.d.ts +2 -0
  15. package/types/components/shared/panel.d.ts +1129 -5
  16. package/types/components/widgets/ai/avatar.d.ts +3 -0
  17. package/types/components/widgets/ai/bubble.d.ts +22 -0
  18. package/types/components/widgets/ai/chat-input.d.ts +27 -0
  19. package/types/components/widgets/ai/detail.d.ts +98 -0
  20. package/types/components/widgets/ai/index.d.ts +671 -0
  21. package/types/components/widgets/ai/invite-tip.d.ts +8 -0
  22. package/types/components/widgets/ai/login-tip.d.ts +3 -0
  23. package/types/components/widgets/ai/new-topic.d.ts +19 -0
  24. package/types/components/widgets/ai/no-file-tip.d.ts +3 -0
  25. package/types/components/widgets/ai/pay-tip.d.ts +11 -0
  26. package/types/components/widgets/ai/records.d.ts +18 -0
  27. package/types/components/widgets/ai/stream-markdown.d.ts +13 -0
  28. package/types/components/widgets/apis/form.d.ts +8 -8
  29. package/types/components/widgets/docs/index.d.ts +574 -5
  30. package/types/components/widgets/index.d.ts +1811 -7
  31. package/types/components/widgets/market/index.d.ts +574 -5
  32. package/types/framework/engine.d.ts +50 -1
  33. package/types/framework/index.d.ts +1 -0
  34. package/types/framework/openapi.d.ts +100 -0
  35. package/types/framework/renderer.d.ts +1 -0
  36. package/types/framework/report.d.ts +1 -1
  37. package/types/framework/types.d.ts +4 -0
  38. package/types/managers/widget.d.ts +11 -0
  39. package/types/utils.d.ts +2 -2
  40. package/types/version.d.ts +2 -2
  41. package/dist/Editor-7SLplEph.js +0 -67
@@ -1,7 +1,7 @@
1
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
2
- import { ActionMenuItem } from '@vtj/ui';
3
- import { Props } from '../../shared/panel';
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComputedRef, GlobalComponents, GlobalDirectives, DebuggerEvent, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, Ref, nextTick } from 'vue';
2
+ import { ActionMenuItem, BaseSize, ContainerDirection, ContainerWrap, ContainerJustifyContent, ContainerAlignItems, ContainerAlignContent, IconParam, HeaderProps, ContainerProps } from '@vtj/ui';
4
3
  import { OnCleanup } from '@vue/reactivity';
4
+ import { Props } from '../../shared/panel';
5
5
  declare const _default: DefineComponent<{}, {
6
6
  openDesigner: () => void;
7
7
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
@@ -33,6 +33,565 @@ declare const _default: DefineComponent<{}, {
33
33
  };
34
34
  $refs: {
35
35
  [x: string]: unknown;
36
+ } & {
37
+ panelRef: ({
38
+ $: ComponentInternalInstance;
39
+ $data: {};
40
+ $props: Partial<{
41
+ radius: boolean;
42
+ fit: boolean;
43
+ border: boolean;
44
+ card: boolean;
45
+ }> & Omit<{
46
+ readonly fit: boolean;
47
+ readonly radius: boolean;
48
+ readonly border: boolean;
49
+ readonly card: boolean;
50
+ readonly size?: BaseSize | undefined;
51
+ readonly height?: string | number | undefined;
52
+ readonly width?: string | number | undefined;
53
+ readonly body?: Readonly<Partial< ExtractPropTypes<{
54
+ tag: {
55
+ type: StringConstructor;
56
+ default: string;
57
+ };
58
+ fit: {
59
+ type: BooleanConstructor;
60
+ default: boolean;
61
+ };
62
+ width: {
63
+ type: (StringConstructor | NumberConstructor)[];
64
+ };
65
+ height: {
66
+ type: (StringConstructor | NumberConstructor)[];
67
+ };
68
+ flex: {
69
+ type: BooleanConstructor;
70
+ default: boolean;
71
+ };
72
+ inline: {
73
+ type: BooleanConstructor;
74
+ };
75
+ direction: {
76
+ type: PropType<ContainerDirection>;
77
+ default: string;
78
+ };
79
+ wrap: {
80
+ type: PropType<ContainerWrap>;
81
+ default: string;
82
+ };
83
+ justify: {
84
+ type: PropType<ContainerJustifyContent>;
85
+ default: string;
86
+ };
87
+ align: {
88
+ type: PropType<ContainerAlignItems>;
89
+ default: string;
90
+ };
91
+ alignContent: {
92
+ type: PropType<ContainerAlignContent>;
93
+ default: string;
94
+ };
95
+ grow: {
96
+ type: BooleanConstructor;
97
+ default: boolean;
98
+ };
99
+ shrink: {
100
+ type: BooleanConstructor;
101
+ default: boolean;
102
+ };
103
+ alignSelf: {
104
+ type: PropType<"auto" | ContainerAlignItems>;
105
+ default: string;
106
+ };
107
+ overflow: {
108
+ type: PropType<"auto" | "hidden" | "visible">;
109
+ };
110
+ padding: {
111
+ type: BooleanConstructor;
112
+ default: boolean;
113
+ };
114
+ gap: {
115
+ type: BooleanConstructor;
116
+ };
117
+ autoPointer: {
118
+ type: BooleanConstructor;
119
+ };
120
+ }>>> | undefined;
121
+ readonly footer?: Readonly<Partial< ExtractPropTypes<{
122
+ tag: {
123
+ type: StringConstructor;
124
+ default: string;
125
+ };
126
+ fit: {
127
+ type: BooleanConstructor;
128
+ default: boolean;
129
+ };
130
+ width: {
131
+ type: (StringConstructor | NumberConstructor)[];
132
+ };
133
+ height: {
134
+ type: (StringConstructor | NumberConstructor)[];
135
+ };
136
+ flex: {
137
+ type: BooleanConstructor;
138
+ default: boolean;
139
+ };
140
+ inline: {
141
+ type: BooleanConstructor;
142
+ };
143
+ direction: {
144
+ type: PropType<ContainerDirection>;
145
+ default: string;
146
+ };
147
+ wrap: {
148
+ type: PropType<ContainerWrap>;
149
+ default: string;
150
+ };
151
+ justify: {
152
+ type: PropType<ContainerJustifyContent>;
153
+ default: string;
154
+ };
155
+ align: {
156
+ type: PropType<ContainerAlignItems>;
157
+ default: string;
158
+ };
159
+ alignContent: {
160
+ type: PropType<ContainerAlignContent>;
161
+ default: string;
162
+ };
163
+ grow: {
164
+ type: BooleanConstructor;
165
+ default: boolean;
166
+ };
167
+ shrink: {
168
+ type: BooleanConstructor;
169
+ default: boolean;
170
+ };
171
+ alignSelf: {
172
+ type: PropType<"auto" | ContainerAlignItems>;
173
+ default: string;
174
+ };
175
+ overflow: {
176
+ type: PropType<"auto" | "hidden" | "visible">;
177
+ };
178
+ padding: {
179
+ type: BooleanConstructor;
180
+ default: boolean;
181
+ };
182
+ gap: {
183
+ type: BooleanConstructor;
184
+ };
185
+ autoPointer: {
186
+ type: BooleanConstructor;
187
+ };
188
+ }>>> | undefined;
189
+ readonly header?: string | Readonly<Partial< ExtractPropTypes<{
190
+ size: {
191
+ type: PropType<BaseSize>;
192
+ default: string;
193
+ };
194
+ content: {
195
+ type: StringConstructor;
196
+ default: string;
197
+ };
198
+ subtitle: {
199
+ type: StringConstructor;
200
+ };
201
+ icon: {
202
+ type: PropType<IconParam>;
203
+ };
204
+ border: {
205
+ type: BooleanConstructor;
206
+ };
207
+ more: {
208
+ type: BooleanConstructor;
209
+ };
210
+ }>>> | null | undefined;
211
+ readonly shadow?: "hover" | "none" | "always" | undefined;
212
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "fit" | "radius" | "border" | "card">;
213
+ $attrs: {
214
+ [x: string]: unknown;
215
+ };
216
+ $refs: {
217
+ [x: string]: unknown;
218
+ } & {
219
+ bodyRef: ({
220
+ $: ComponentInternalInstance;
221
+ $data: {};
222
+ $props: Partial<{
223
+ padding: boolean;
224
+ tag: string;
225
+ wrap: ContainerWrap;
226
+ fit: boolean;
227
+ flex: boolean;
228
+ inline: boolean;
229
+ direction: ContainerDirection;
230
+ justify: ContainerJustifyContent;
231
+ align: ContainerAlignItems;
232
+ alignContent: ContainerAlignContent;
233
+ grow: boolean;
234
+ shrink: boolean;
235
+ alignSelf: "auto" | ContainerAlignItems;
236
+ gap: boolean;
237
+ autoPointer: boolean;
238
+ }> & Omit<{
239
+ readonly padding: boolean;
240
+ readonly tag: string;
241
+ readonly wrap: ContainerWrap;
242
+ readonly fit: boolean;
243
+ readonly flex: boolean;
244
+ readonly inline: boolean;
245
+ readonly direction: ContainerDirection;
246
+ readonly justify: ContainerJustifyContent;
247
+ readonly align: ContainerAlignItems;
248
+ readonly alignContent: ContainerAlignContent;
249
+ readonly grow: boolean;
250
+ readonly shrink: boolean;
251
+ readonly alignSelf: "auto" | ContainerAlignItems;
252
+ readonly gap: boolean;
253
+ readonly autoPointer: boolean;
254
+ readonly width?: string | number | undefined;
255
+ readonly height?: string | number | undefined;
256
+ readonly overflow?: "hidden" | "auto" | "visible" | undefined;
257
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer">;
258
+ $attrs: {
259
+ [x: string]: unknown;
260
+ };
261
+ $refs: {
262
+ [x: string]: unknown;
263
+ } & {
264
+ elRef: unknown;
265
+ };
266
+ $slots: Readonly<{
267
+ [name: string]: Slot<any> | undefined;
268
+ }>;
269
+ $root: ComponentPublicInstance | null;
270
+ $parent: ComponentPublicInstance | null;
271
+ $host: Element | null;
272
+ $emit: (event: string, ...args: any[]) => void;
273
+ $el: any;
274
+ $options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
275
+ tag: {
276
+ type: StringConstructor;
277
+ default: string;
278
+ };
279
+ fit: {
280
+ type: BooleanConstructor;
281
+ default: boolean;
282
+ };
283
+ width: {
284
+ type: (StringConstructor | NumberConstructor)[];
285
+ };
286
+ height: {
287
+ type: (StringConstructor | NumberConstructor)[];
288
+ };
289
+ flex: {
290
+ type: BooleanConstructor;
291
+ default: boolean;
292
+ };
293
+ inline: {
294
+ type: BooleanConstructor;
295
+ };
296
+ direction: {
297
+ type: PropType<ContainerDirection>;
298
+ default: string;
299
+ };
300
+ wrap: {
301
+ type: PropType<ContainerWrap>;
302
+ default: string;
303
+ };
304
+ justify: {
305
+ type: PropType<ContainerJustifyContent>;
306
+ default: string;
307
+ };
308
+ align: {
309
+ type: PropType<ContainerAlignItems>;
310
+ default: string;
311
+ };
312
+ alignContent: {
313
+ type: PropType<ContainerAlignContent>;
314
+ default: string;
315
+ };
316
+ grow: {
317
+ type: BooleanConstructor;
318
+ default: boolean;
319
+ };
320
+ shrink: {
321
+ type: BooleanConstructor;
322
+ default: boolean;
323
+ };
324
+ alignSelf: {
325
+ type: PropType<"auto" | ContainerAlignItems>;
326
+ default: string;
327
+ };
328
+ overflow: {
329
+ type: PropType<"auto" | "hidden" | "visible">;
330
+ };
331
+ padding: {
332
+ type: BooleanConstructor;
333
+ default: boolean;
334
+ };
335
+ gap: {
336
+ type: BooleanConstructor;
337
+ };
338
+ autoPointer: {
339
+ type: BooleanConstructor;
340
+ };
341
+ }>> & Readonly<{}>, {
342
+ $vtjEl: ComputedRef<any>;
343
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
344
+ padding: boolean;
345
+ tag: string;
346
+ wrap: ContainerWrap;
347
+ fit: boolean;
348
+ flex: boolean;
349
+ inline: boolean;
350
+ direction: ContainerDirection;
351
+ justify: ContainerJustifyContent;
352
+ align: ContainerAlignItems;
353
+ alignContent: ContainerAlignContent;
354
+ grow: boolean;
355
+ shrink: boolean;
356
+ alignSelf: "auto" | ContainerAlignItems;
357
+ gap: boolean;
358
+ autoPointer: boolean;
359
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
360
+ beforeCreate?: (() => void) | (() => void)[];
361
+ created?: (() => void) | (() => void)[];
362
+ beforeMount?: (() => void) | (() => void)[];
363
+ mounted?: (() => void) | (() => void)[];
364
+ beforeUpdate?: (() => void) | (() => void)[];
365
+ updated?: (() => void) | (() => void)[];
366
+ activated?: (() => void) | (() => void)[];
367
+ deactivated?: (() => void) | (() => void)[];
368
+ beforeDestroy?: (() => void) | (() => void)[];
369
+ beforeUnmount?: (() => void) | (() => void)[];
370
+ destroyed?: (() => void) | (() => void)[];
371
+ unmounted?: (() => void) | (() => void)[];
372
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
373
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
374
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
375
+ };
376
+ $forceUpdate: () => void;
377
+ $nextTick: nextTick;
378
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
379
+ } & Readonly<{
380
+ padding: boolean;
381
+ tag: string;
382
+ wrap: ContainerWrap;
383
+ fit: boolean;
384
+ flex: boolean;
385
+ inline: boolean;
386
+ direction: ContainerDirection;
387
+ justify: ContainerJustifyContent;
388
+ align: ContainerAlignItems;
389
+ alignContent: ContainerAlignContent;
390
+ grow: boolean;
391
+ shrink: boolean;
392
+ alignSelf: "auto" | ContainerAlignItems;
393
+ gap: boolean;
394
+ autoPointer: boolean;
395
+ }> & Omit<Readonly< ExtractPropTypes<{
396
+ tag: {
397
+ type: StringConstructor;
398
+ default: string;
399
+ };
400
+ fit: {
401
+ type: BooleanConstructor;
402
+ default: boolean;
403
+ };
404
+ width: {
405
+ type: (StringConstructor | NumberConstructor)[];
406
+ };
407
+ height: {
408
+ type: (StringConstructor | NumberConstructor)[];
409
+ };
410
+ flex: {
411
+ type: BooleanConstructor;
412
+ default: boolean;
413
+ };
414
+ inline: {
415
+ type: BooleanConstructor;
416
+ };
417
+ direction: {
418
+ type: PropType<ContainerDirection>;
419
+ default: string;
420
+ };
421
+ wrap: {
422
+ type: PropType<ContainerWrap>;
423
+ default: string;
424
+ };
425
+ justify: {
426
+ type: PropType<ContainerJustifyContent>;
427
+ default: string;
428
+ };
429
+ align: {
430
+ type: PropType<ContainerAlignItems>;
431
+ default: string;
432
+ };
433
+ alignContent: {
434
+ type: PropType<ContainerAlignContent>;
435
+ default: string;
436
+ };
437
+ grow: {
438
+ type: BooleanConstructor;
439
+ default: boolean;
440
+ };
441
+ shrink: {
442
+ type: BooleanConstructor;
443
+ default: boolean;
444
+ };
445
+ alignSelf: {
446
+ type: PropType<"auto" | ContainerAlignItems>;
447
+ default: string;
448
+ };
449
+ overflow: {
450
+ type: PropType<"auto" | "hidden" | "visible">;
451
+ };
452
+ padding: {
453
+ type: BooleanConstructor;
454
+ default: boolean;
455
+ };
456
+ gap: {
457
+ type: BooleanConstructor;
458
+ };
459
+ autoPointer: {
460
+ type: BooleanConstructor;
461
+ };
462
+ }>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> & ShallowUnwrapRef<{
463
+ $vtjEl: ComputedRef<any>;
464
+ }> & {} & ComponentCustomProperties & {} & {
465
+ $slots: {
466
+ default?(_: {}): any;
467
+ };
468
+ }) | null;
469
+ };
470
+ $slots: Readonly<{
471
+ [name: string]: Slot<any> | undefined;
472
+ }>;
473
+ $root: ComponentPublicInstance | null;
474
+ $parent: ComponentPublicInstance | null;
475
+ $host: Element | null;
476
+ $emit: (event: string, ...args: any[]) => void;
477
+ $el: any;
478
+ $options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
479
+ fit: {
480
+ type: BooleanConstructor;
481
+ default: boolean;
482
+ };
483
+ width: {
484
+ type: (StringConstructor | NumberConstructor)[];
485
+ };
486
+ height: {
487
+ type: (StringConstructor | NumberConstructor)[];
488
+ };
489
+ border: {
490
+ type: BooleanConstructor;
491
+ default: boolean;
492
+ };
493
+ radius: {
494
+ type: BooleanConstructor;
495
+ default: boolean;
496
+ };
497
+ card: {
498
+ type: BooleanConstructor;
499
+ };
500
+ size: {
501
+ type: PropType<BaseSize>;
502
+ };
503
+ shadow: {
504
+ type: PropType<"none" | "always" | "hover">;
505
+ };
506
+ header: {
507
+ type: PropType<string | HeaderProps | null>;
508
+ };
509
+ body: {
510
+ type: PropType<ContainerProps>;
511
+ };
512
+ footer: {
513
+ type: PropType<ContainerProps>;
514
+ };
515
+ }>> & Readonly<{}>, {
516
+ bodyRef: Ref<any, any>;
517
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
518
+ radius: boolean;
519
+ fit: boolean;
520
+ border: boolean;
521
+ card: boolean;
522
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
523
+ beforeCreate?: (() => void) | (() => void)[];
524
+ created?: (() => void) | (() => void)[];
525
+ beforeMount?: (() => void) | (() => void)[];
526
+ mounted?: (() => void) | (() => void)[];
527
+ beforeUpdate?: (() => void) | (() => void)[];
528
+ updated?: (() => void) | (() => void)[];
529
+ activated?: (() => void) | (() => void)[];
530
+ deactivated?: (() => void) | (() => void)[];
531
+ beforeDestroy?: (() => void) | (() => void)[];
532
+ beforeUnmount?: (() => void) | (() => void)[];
533
+ destroyed?: (() => void) | (() => void)[];
534
+ unmounted?: (() => void) | (() => void)[];
535
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
536
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
537
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
538
+ };
539
+ $forceUpdate: () => void;
540
+ $nextTick: nextTick;
541
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
542
+ } & Readonly<{
543
+ radius: boolean;
544
+ fit: boolean;
545
+ border: boolean;
546
+ card: boolean;
547
+ }> & Omit<Readonly< ExtractPropTypes<{
548
+ fit: {
549
+ type: BooleanConstructor;
550
+ default: boolean;
551
+ };
552
+ width: {
553
+ type: (StringConstructor | NumberConstructor)[];
554
+ };
555
+ height: {
556
+ type: (StringConstructor | NumberConstructor)[];
557
+ };
558
+ border: {
559
+ type: BooleanConstructor;
560
+ default: boolean;
561
+ };
562
+ radius: {
563
+ type: BooleanConstructor;
564
+ default: boolean;
565
+ };
566
+ card: {
567
+ type: BooleanConstructor;
568
+ };
569
+ size: {
570
+ type: PropType<BaseSize>;
571
+ };
572
+ shadow: {
573
+ type: PropType<"none" | "always" | "hover">;
574
+ };
575
+ header: {
576
+ type: PropType<string | HeaderProps | null>;
577
+ };
578
+ body: {
579
+ type: PropType<ContainerProps>;
580
+ };
581
+ footer: {
582
+ type: PropType<ContainerProps>;
583
+ };
584
+ }>> & Readonly<{}>, "fit" | "radius" | "border" | "card" | "bodyRef"> & ShallowUnwrapRef<{
585
+ bodyRef: Ref<any, any>;
586
+ }> & {} & ComponentCustomProperties & {} & {
587
+ $slots: {
588
+ header?(_: {}): any;
589
+ title?(_: {}): any;
590
+ actions?(_: {}): any;
591
+ default?(_: {}): any;
592
+ footer?(_: {}): any;
593
+ };
594
+ }) | null;
36
595
  };
37
596
  $slots: Readonly<{
38
597
  [name: string]: Slot<any> | undefined;
@@ -50,7 +609,12 @@ declare const _default: DefineComponent<{}, {
50
609
  onEdit?: ((...args: any[]) => any) | undefined;
51
610
  onRemove?: ((...args: any[]) => any) | undefined;
52
611
  onSave?: ((...args: any[]) => any) | undefined;
53
- }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
612
+ }>, {
613
+ panelRef: Ref<any, any>;
614
+ scrollToBottom: () => void;
615
+ autoScrollToBottom: (diff?: number) => void;
616
+ scrollToTop: () => void;
617
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
54
618
  command: (...args: any[]) => void;
55
619
  refresh: (...args: any[]) => void;
56
620
  plus: (...args: any[]) => void;
@@ -92,7 +656,12 @@ declare const _default: DefineComponent<{}, {
92
656
  onEdit?: ((...args: any[]) => any) | undefined;
93
657
  onRemove?: ((...args: any[]) => any) | undefined;
94
658
  onSave?: ((...args: any[]) => any) | undefined;
95
- }>, "header" | "menus"> & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {} & {
659
+ }>, "panelRef" | "scrollToBottom" | "autoScrollToBottom" | "scrollToTop" | ("header" | "menus")> & ShallowUnwrapRef<{
660
+ panelRef: Ref<any, any>;
661
+ scrollToBottom: () => void;
662
+ autoScrollToBottom: (diff?: number) => void;
663
+ scrollToTop: () => void;
664
+ }> & {} & ComponentCustomProperties & {} & {
96
665
  $slots: {
97
666
  actions?(_: {}): any;
98
667
  default?(_: {}): any;