@vtj/designer 0.11.16 → 0.12.0-alpha.1

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 (39) hide show
  1. package/dist/Editor-COl9ea8e.js +4 -0
  2. package/dist/index-BHWx6qNv.js +17489 -0
  3. package/dist/index.mjs +69 -13063
  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 +171 -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 +30 -1
  12. package/types/components/shared/binder.d.ts +10 -10
  13. package/types/components/shared/item.d.ts +2 -0
  14. package/types/components/shared/panel.d.ts +1129 -5
  15. package/types/components/widgets/ai/avatar.d.ts +3 -0
  16. package/types/components/widgets/ai/bubble.d.ts +22 -0
  17. package/types/components/widgets/ai/chat-input.d.ts +27 -0
  18. package/types/components/widgets/ai/detail.d.ts +98 -0
  19. package/types/components/widgets/ai/index.d.ts +671 -0
  20. package/types/components/widgets/ai/invite-tip.d.ts +8 -0
  21. package/types/components/widgets/ai/login-tip.d.ts +3 -0
  22. package/types/components/widgets/ai/new-topic.d.ts +17 -0
  23. package/types/components/widgets/ai/no-file-tip.d.ts +3 -0
  24. package/types/components/widgets/ai/pay-tip.d.ts +11 -0
  25. package/types/components/widgets/ai/records.d.ts +18 -0
  26. package/types/components/widgets/ai/stream-markdown.d.ts +13 -0
  27. package/types/components/widgets/apis/form.d.ts +8 -8
  28. package/types/components/widgets/docs/index.d.ts +574 -5
  29. package/types/components/widgets/index.d.ts +1811 -7
  30. package/types/components/widgets/market/index.d.ts +574 -5
  31. package/types/framework/engine.d.ts +50 -1
  32. package/types/framework/index.d.ts +1 -0
  33. package/types/framework/openapi.d.ts +114 -0
  34. package/types/framework/report.d.ts +1 -1
  35. package/types/framework/types.d.ts +4 -0
  36. package/types/managers/widget.d.ts +11 -0
  37. package/types/utils.d.ts +2 -2
  38. package/types/version.d.ts +2 -2
  39. package/dist/Editor-7SLplEph.js +0 -67
@@ -1,4 +1,4 @@
1
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, Ref, ComputedRef, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, Ref, ComputedRef, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, DebuggerEvent, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, nextTick } from 'vue';
2
2
  import { Props } from './logo/index';
3
3
  import { Props } from './toolbar/index';
4
4
  import { Props } from './actions/index';
@@ -7,9 +7,9 @@ import { Props } from '../editor/Editor';
7
7
  import { Props } from './style/index';
8
8
  import { Props } from './previewer/index';
9
9
  import { Props } from './docs/index';
10
- import { ActionMenuItem } from '@vtj/ui';
11
- import { Props } from '../shared/panel';
10
+ import { ActionMenuItem, BaseSize, ContainerDirection, ContainerWrap, ContainerJustifyContent, ContainerAlignItems, ContainerAlignContent, IconParam, HeaderProps, ContainerProps } from '@vtj/ui';
12
11
  import { OnCleanup } from '@vue/reactivity';
12
+ import { Props } from '../shared/panel';
13
13
  import { Props } from './about/index';
14
14
  export declare const widgets: {
15
15
  Logo: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< Props> & Readonly<{}>, {
@@ -233,6 +233,565 @@ export declare const widgets: {
233
233
  };
234
234
  $refs: {
235
235
  [x: string]: unknown;
236
+ } & {
237
+ panelRef: ({
238
+ $: ComponentInternalInstance;
239
+ $data: {};
240
+ $props: Partial<{
241
+ radius: boolean;
242
+ fit: boolean;
243
+ border: boolean;
244
+ card: boolean;
245
+ }> & Omit<{
246
+ readonly fit: boolean;
247
+ readonly radius: boolean;
248
+ readonly border: boolean;
249
+ readonly card: boolean;
250
+ readonly size?: BaseSize | undefined;
251
+ readonly height?: string | number | undefined;
252
+ readonly width?: string | number | undefined;
253
+ readonly body?: Readonly<Partial< ExtractPropTypes<{
254
+ tag: {
255
+ type: StringConstructor;
256
+ default: string;
257
+ };
258
+ fit: {
259
+ type: BooleanConstructor;
260
+ default: boolean;
261
+ };
262
+ width: {
263
+ type: (StringConstructor | NumberConstructor)[];
264
+ };
265
+ height: {
266
+ type: (StringConstructor | NumberConstructor)[];
267
+ };
268
+ flex: {
269
+ type: BooleanConstructor;
270
+ default: boolean;
271
+ };
272
+ inline: {
273
+ type: BooleanConstructor;
274
+ };
275
+ direction: {
276
+ type: PropType<ContainerDirection>;
277
+ default: string;
278
+ };
279
+ wrap: {
280
+ type: PropType<ContainerWrap>;
281
+ default: string;
282
+ };
283
+ justify: {
284
+ type: PropType<ContainerJustifyContent>;
285
+ default: string;
286
+ };
287
+ align: {
288
+ type: PropType<ContainerAlignItems>;
289
+ default: string;
290
+ };
291
+ alignContent: {
292
+ type: PropType<ContainerAlignContent>;
293
+ default: string;
294
+ };
295
+ grow: {
296
+ type: BooleanConstructor;
297
+ default: boolean;
298
+ };
299
+ shrink: {
300
+ type: BooleanConstructor;
301
+ default: boolean;
302
+ };
303
+ alignSelf: {
304
+ type: PropType<"auto" | ContainerAlignItems>;
305
+ default: string;
306
+ };
307
+ overflow: {
308
+ type: PropType<"auto" | "hidden" | "visible">;
309
+ };
310
+ padding: {
311
+ type: BooleanConstructor;
312
+ default: boolean;
313
+ };
314
+ gap: {
315
+ type: BooleanConstructor;
316
+ };
317
+ autoPointer: {
318
+ type: BooleanConstructor;
319
+ };
320
+ }>>> | undefined;
321
+ readonly footer?: Readonly<Partial< ExtractPropTypes<{
322
+ tag: {
323
+ type: StringConstructor;
324
+ default: string;
325
+ };
326
+ fit: {
327
+ type: BooleanConstructor;
328
+ default: boolean;
329
+ };
330
+ width: {
331
+ type: (StringConstructor | NumberConstructor)[];
332
+ };
333
+ height: {
334
+ type: (StringConstructor | NumberConstructor)[];
335
+ };
336
+ flex: {
337
+ type: BooleanConstructor;
338
+ default: boolean;
339
+ };
340
+ inline: {
341
+ type: BooleanConstructor;
342
+ };
343
+ direction: {
344
+ type: PropType<ContainerDirection>;
345
+ default: string;
346
+ };
347
+ wrap: {
348
+ type: PropType<ContainerWrap>;
349
+ default: string;
350
+ };
351
+ justify: {
352
+ type: PropType<ContainerJustifyContent>;
353
+ default: string;
354
+ };
355
+ align: {
356
+ type: PropType<ContainerAlignItems>;
357
+ default: string;
358
+ };
359
+ alignContent: {
360
+ type: PropType<ContainerAlignContent>;
361
+ default: string;
362
+ };
363
+ grow: {
364
+ type: BooleanConstructor;
365
+ default: boolean;
366
+ };
367
+ shrink: {
368
+ type: BooleanConstructor;
369
+ default: boolean;
370
+ };
371
+ alignSelf: {
372
+ type: PropType<"auto" | ContainerAlignItems>;
373
+ default: string;
374
+ };
375
+ overflow: {
376
+ type: PropType<"auto" | "hidden" | "visible">;
377
+ };
378
+ padding: {
379
+ type: BooleanConstructor;
380
+ default: boolean;
381
+ };
382
+ gap: {
383
+ type: BooleanConstructor;
384
+ };
385
+ autoPointer: {
386
+ type: BooleanConstructor;
387
+ };
388
+ }>>> | undefined;
389
+ readonly header?: string | Readonly<Partial< ExtractPropTypes<{
390
+ size: {
391
+ type: PropType<BaseSize>;
392
+ default: string;
393
+ };
394
+ content: {
395
+ type: StringConstructor;
396
+ default: string;
397
+ };
398
+ subtitle: {
399
+ type: StringConstructor;
400
+ };
401
+ icon: {
402
+ type: PropType<IconParam>;
403
+ };
404
+ border: {
405
+ type: BooleanConstructor;
406
+ };
407
+ more: {
408
+ type: BooleanConstructor;
409
+ };
410
+ }>>> | null | undefined;
411
+ readonly shadow?: "hover" | "none" | "always" | undefined;
412
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "fit" | "radius" | "border" | "card">;
413
+ $attrs: {
414
+ [x: string]: unknown;
415
+ };
416
+ $refs: {
417
+ [x: string]: unknown;
418
+ } & {
419
+ bodyRef: ({
420
+ $: ComponentInternalInstance;
421
+ $data: {};
422
+ $props: Partial<{
423
+ padding: boolean;
424
+ tag: string;
425
+ wrap: ContainerWrap;
426
+ fit: boolean;
427
+ flex: boolean;
428
+ inline: boolean;
429
+ direction: ContainerDirection;
430
+ justify: ContainerJustifyContent;
431
+ align: ContainerAlignItems;
432
+ alignContent: ContainerAlignContent;
433
+ grow: boolean;
434
+ shrink: boolean;
435
+ alignSelf: "auto" | ContainerAlignItems;
436
+ gap: boolean;
437
+ autoPointer: boolean;
438
+ }> & Omit<{
439
+ readonly padding: boolean;
440
+ readonly tag: string;
441
+ readonly wrap: ContainerWrap;
442
+ readonly fit: boolean;
443
+ readonly flex: boolean;
444
+ readonly inline: boolean;
445
+ readonly direction: ContainerDirection;
446
+ readonly justify: ContainerJustifyContent;
447
+ readonly align: ContainerAlignItems;
448
+ readonly alignContent: ContainerAlignContent;
449
+ readonly grow: boolean;
450
+ readonly shrink: boolean;
451
+ readonly alignSelf: "auto" | ContainerAlignItems;
452
+ readonly gap: boolean;
453
+ readonly autoPointer: boolean;
454
+ readonly width?: string | number | undefined;
455
+ readonly height?: string | number | undefined;
456
+ readonly overflow?: "hidden" | "auto" | "visible" | undefined;
457
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer">;
458
+ $attrs: {
459
+ [x: string]: unknown;
460
+ };
461
+ $refs: {
462
+ [x: string]: unknown;
463
+ } & {
464
+ elRef: unknown;
465
+ };
466
+ $slots: Readonly<{
467
+ [name: string]: Slot<any> | undefined;
468
+ }>;
469
+ $root: ComponentPublicInstance | null;
470
+ $parent: ComponentPublicInstance | null;
471
+ $host: Element | null;
472
+ $emit: (event: string, ...args: any[]) => void;
473
+ $el: any;
474
+ $options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
475
+ tag: {
476
+ type: StringConstructor;
477
+ default: string;
478
+ };
479
+ fit: {
480
+ type: BooleanConstructor;
481
+ default: boolean;
482
+ };
483
+ width: {
484
+ type: (StringConstructor | NumberConstructor)[];
485
+ };
486
+ height: {
487
+ type: (StringConstructor | NumberConstructor)[];
488
+ };
489
+ flex: {
490
+ type: BooleanConstructor;
491
+ default: boolean;
492
+ };
493
+ inline: {
494
+ type: BooleanConstructor;
495
+ };
496
+ direction: {
497
+ type: PropType<ContainerDirection>;
498
+ default: string;
499
+ };
500
+ wrap: {
501
+ type: PropType<ContainerWrap>;
502
+ default: string;
503
+ };
504
+ justify: {
505
+ type: PropType<ContainerJustifyContent>;
506
+ default: string;
507
+ };
508
+ align: {
509
+ type: PropType<ContainerAlignItems>;
510
+ default: string;
511
+ };
512
+ alignContent: {
513
+ type: PropType<ContainerAlignContent>;
514
+ default: string;
515
+ };
516
+ grow: {
517
+ type: BooleanConstructor;
518
+ default: boolean;
519
+ };
520
+ shrink: {
521
+ type: BooleanConstructor;
522
+ default: boolean;
523
+ };
524
+ alignSelf: {
525
+ type: PropType<"auto" | ContainerAlignItems>;
526
+ default: string;
527
+ };
528
+ overflow: {
529
+ type: PropType<"auto" | "hidden" | "visible">;
530
+ };
531
+ padding: {
532
+ type: BooleanConstructor;
533
+ default: boolean;
534
+ };
535
+ gap: {
536
+ type: BooleanConstructor;
537
+ };
538
+ autoPointer: {
539
+ type: BooleanConstructor;
540
+ };
541
+ }>> & Readonly<{}>, {
542
+ $vtjEl: ComputedRef<any>;
543
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
544
+ padding: boolean;
545
+ tag: string;
546
+ wrap: ContainerWrap;
547
+ fit: boolean;
548
+ flex: boolean;
549
+ inline: boolean;
550
+ direction: ContainerDirection;
551
+ justify: ContainerJustifyContent;
552
+ align: ContainerAlignItems;
553
+ alignContent: ContainerAlignContent;
554
+ grow: boolean;
555
+ shrink: boolean;
556
+ alignSelf: "auto" | ContainerAlignItems;
557
+ gap: boolean;
558
+ autoPointer: boolean;
559
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
560
+ beforeCreate?: (() => void) | (() => void)[];
561
+ created?: (() => void) | (() => void)[];
562
+ beforeMount?: (() => void) | (() => void)[];
563
+ mounted?: (() => void) | (() => void)[];
564
+ beforeUpdate?: (() => void) | (() => void)[];
565
+ updated?: (() => void) | (() => void)[];
566
+ activated?: (() => void) | (() => void)[];
567
+ deactivated?: (() => void) | (() => void)[];
568
+ beforeDestroy?: (() => void) | (() => void)[];
569
+ beforeUnmount?: (() => void) | (() => void)[];
570
+ destroyed?: (() => void) | (() => void)[];
571
+ unmounted?: (() => void) | (() => void)[];
572
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
573
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
574
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
575
+ };
576
+ $forceUpdate: () => void;
577
+ $nextTick: nextTick;
578
+ $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;
579
+ } & Readonly<{
580
+ padding: boolean;
581
+ tag: string;
582
+ wrap: ContainerWrap;
583
+ fit: boolean;
584
+ flex: boolean;
585
+ inline: boolean;
586
+ direction: ContainerDirection;
587
+ justify: ContainerJustifyContent;
588
+ align: ContainerAlignItems;
589
+ alignContent: ContainerAlignContent;
590
+ grow: boolean;
591
+ shrink: boolean;
592
+ alignSelf: "auto" | ContainerAlignItems;
593
+ gap: boolean;
594
+ autoPointer: boolean;
595
+ }> & Omit<Readonly< ExtractPropTypes<{
596
+ tag: {
597
+ type: StringConstructor;
598
+ default: string;
599
+ };
600
+ fit: {
601
+ type: BooleanConstructor;
602
+ default: boolean;
603
+ };
604
+ width: {
605
+ type: (StringConstructor | NumberConstructor)[];
606
+ };
607
+ height: {
608
+ type: (StringConstructor | NumberConstructor)[];
609
+ };
610
+ flex: {
611
+ type: BooleanConstructor;
612
+ default: boolean;
613
+ };
614
+ inline: {
615
+ type: BooleanConstructor;
616
+ };
617
+ direction: {
618
+ type: PropType<ContainerDirection>;
619
+ default: string;
620
+ };
621
+ wrap: {
622
+ type: PropType<ContainerWrap>;
623
+ default: string;
624
+ };
625
+ justify: {
626
+ type: PropType<ContainerJustifyContent>;
627
+ default: string;
628
+ };
629
+ align: {
630
+ type: PropType<ContainerAlignItems>;
631
+ default: string;
632
+ };
633
+ alignContent: {
634
+ type: PropType<ContainerAlignContent>;
635
+ default: string;
636
+ };
637
+ grow: {
638
+ type: BooleanConstructor;
639
+ default: boolean;
640
+ };
641
+ shrink: {
642
+ type: BooleanConstructor;
643
+ default: boolean;
644
+ };
645
+ alignSelf: {
646
+ type: PropType<"auto" | ContainerAlignItems>;
647
+ default: string;
648
+ };
649
+ overflow: {
650
+ type: PropType<"auto" | "hidden" | "visible">;
651
+ };
652
+ padding: {
653
+ type: BooleanConstructor;
654
+ default: boolean;
655
+ };
656
+ gap: {
657
+ type: BooleanConstructor;
658
+ };
659
+ autoPointer: {
660
+ type: BooleanConstructor;
661
+ };
662
+ }>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> & ShallowUnwrapRef<{
663
+ $vtjEl: ComputedRef<any>;
664
+ }> & {} & ComponentCustomProperties & {} & {
665
+ $slots: {
666
+ default?(_: {}): any;
667
+ };
668
+ }) | null;
669
+ };
670
+ $slots: Readonly<{
671
+ [name: string]: Slot<any> | undefined;
672
+ }>;
673
+ $root: ComponentPublicInstance | null;
674
+ $parent: ComponentPublicInstance | null;
675
+ $host: Element | null;
676
+ $emit: (event: string, ...args: any[]) => void;
677
+ $el: any;
678
+ $options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
679
+ fit: {
680
+ type: BooleanConstructor;
681
+ default: boolean;
682
+ };
683
+ width: {
684
+ type: (StringConstructor | NumberConstructor)[];
685
+ };
686
+ height: {
687
+ type: (StringConstructor | NumberConstructor)[];
688
+ };
689
+ border: {
690
+ type: BooleanConstructor;
691
+ default: boolean;
692
+ };
693
+ radius: {
694
+ type: BooleanConstructor;
695
+ default: boolean;
696
+ };
697
+ card: {
698
+ type: BooleanConstructor;
699
+ };
700
+ size: {
701
+ type: PropType<BaseSize>;
702
+ };
703
+ shadow: {
704
+ type: PropType<"none" | "always" | "hover">;
705
+ };
706
+ header: {
707
+ type: PropType<string | HeaderProps | null>;
708
+ };
709
+ body: {
710
+ type: PropType<ContainerProps>;
711
+ };
712
+ footer: {
713
+ type: PropType<ContainerProps>;
714
+ };
715
+ }>> & Readonly<{}>, {
716
+ bodyRef: Ref<any, any>;
717
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
718
+ radius: boolean;
719
+ fit: boolean;
720
+ border: boolean;
721
+ card: boolean;
722
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
723
+ beforeCreate?: (() => void) | (() => void)[];
724
+ created?: (() => void) | (() => void)[];
725
+ beforeMount?: (() => void) | (() => void)[];
726
+ mounted?: (() => void) | (() => void)[];
727
+ beforeUpdate?: (() => void) | (() => void)[];
728
+ updated?: (() => void) | (() => void)[];
729
+ activated?: (() => void) | (() => void)[];
730
+ deactivated?: (() => void) | (() => void)[];
731
+ beforeDestroy?: (() => void) | (() => void)[];
732
+ beforeUnmount?: (() => void) | (() => void)[];
733
+ destroyed?: (() => void) | (() => void)[];
734
+ unmounted?: (() => void) | (() => void)[];
735
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
736
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
737
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
738
+ };
739
+ $forceUpdate: () => void;
740
+ $nextTick: nextTick;
741
+ $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;
742
+ } & Readonly<{
743
+ radius: boolean;
744
+ fit: boolean;
745
+ border: boolean;
746
+ card: boolean;
747
+ }> & Omit<Readonly< ExtractPropTypes<{
748
+ fit: {
749
+ type: BooleanConstructor;
750
+ default: boolean;
751
+ };
752
+ width: {
753
+ type: (StringConstructor | NumberConstructor)[];
754
+ };
755
+ height: {
756
+ type: (StringConstructor | NumberConstructor)[];
757
+ };
758
+ border: {
759
+ type: BooleanConstructor;
760
+ default: boolean;
761
+ };
762
+ radius: {
763
+ type: BooleanConstructor;
764
+ default: boolean;
765
+ };
766
+ card: {
767
+ type: BooleanConstructor;
768
+ };
769
+ size: {
770
+ type: PropType<BaseSize>;
771
+ };
772
+ shadow: {
773
+ type: PropType<"none" | "always" | "hover">;
774
+ };
775
+ header: {
776
+ type: PropType<string | HeaderProps | null>;
777
+ };
778
+ body: {
779
+ type: PropType<ContainerProps>;
780
+ };
781
+ footer: {
782
+ type: PropType<ContainerProps>;
783
+ };
784
+ }>> & Readonly<{}>, "fit" | "radius" | "border" | "card" | "bodyRef"> & ShallowUnwrapRef<{
785
+ bodyRef: Ref<any, any>;
786
+ }> & {} & ComponentCustomProperties & {} & {
787
+ $slots: {
788
+ header?(_: {}): any;
789
+ title?(_: {}): any;
790
+ actions?(_: {}): any;
791
+ default?(_: {}): any;
792
+ footer?(_: {}): any;
793
+ };
794
+ }) | null;
236
795
  };
237
796
  $slots: Readonly<{
238
797
  [name: string]: Slot<any> | undefined;
@@ -250,7 +809,12 @@ export declare const widgets: {
250
809
  onEdit?: ((...args: any[]) => any) | undefined;
251
810
  onRemove?: ((...args: any[]) => any) | undefined;
252
811
  onSave?: ((...args: any[]) => any) | undefined;
253
- }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
812
+ }>, {
813
+ panelRef: Ref<any, any>;
814
+ scrollToBottom: () => void;
815
+ autoScrollToBottom: (diff?: number) => void;
816
+ scrollToTop: () => void;
817
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
254
818
  command: (...args: any[]) => void;
255
819
  refresh: (...args: any[]) => void;
256
820
  plus: (...args: any[]) => void;
@@ -292,7 +856,12 @@ export declare const widgets: {
292
856
  onEdit?: ((...args: any[]) => any) | undefined;
293
857
  onRemove?: ((...args: any[]) => any) | undefined;
294
858
  onSave?: ((...args: any[]) => any) | undefined;
295
- }>, "header" | "menus"> & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {} & {
859
+ }>, "panelRef" | "scrollToBottom" | "autoScrollToBottom" | "scrollToTop" | ("header" | "menus")> & ShallowUnwrapRef<{
860
+ panelRef: Ref<any, any>;
861
+ scrollToBottom: () => void;
862
+ autoScrollToBottom: (diff?: number) => void;
863
+ scrollToTop: () => void;
864
+ }> & {} & ComponentCustomProperties & {} & {
296
865
  $slots: {
297
866
  actions?(_: {}): any;
298
867
  default?(_: {}): any;
@@ -335,6 +904,565 @@ export declare const widgets: {
335
904
  };
336
905
  $refs: {
337
906
  [x: string]: unknown;
907
+ } & {
908
+ panelRef: ({
909
+ $: ComponentInternalInstance;
910
+ $data: {};
911
+ $props: Partial<{
912
+ radius: boolean;
913
+ fit: boolean;
914
+ border: boolean;
915
+ card: boolean;
916
+ }> & Omit<{
917
+ readonly fit: boolean;
918
+ readonly radius: boolean;
919
+ readonly border: boolean;
920
+ readonly card: boolean;
921
+ readonly size?: BaseSize | undefined;
922
+ readonly height?: string | number | undefined;
923
+ readonly width?: string | number | undefined;
924
+ readonly body?: Readonly<Partial< ExtractPropTypes<{
925
+ tag: {
926
+ type: StringConstructor;
927
+ default: string;
928
+ };
929
+ fit: {
930
+ type: BooleanConstructor;
931
+ default: boolean;
932
+ };
933
+ width: {
934
+ type: (StringConstructor | NumberConstructor)[];
935
+ };
936
+ height: {
937
+ type: (StringConstructor | NumberConstructor)[];
938
+ };
939
+ flex: {
940
+ type: BooleanConstructor;
941
+ default: boolean;
942
+ };
943
+ inline: {
944
+ type: BooleanConstructor;
945
+ };
946
+ direction: {
947
+ type: PropType<ContainerDirection>;
948
+ default: string;
949
+ };
950
+ wrap: {
951
+ type: PropType<ContainerWrap>;
952
+ default: string;
953
+ };
954
+ justify: {
955
+ type: PropType<ContainerJustifyContent>;
956
+ default: string;
957
+ };
958
+ align: {
959
+ type: PropType<ContainerAlignItems>;
960
+ default: string;
961
+ };
962
+ alignContent: {
963
+ type: PropType<ContainerAlignContent>;
964
+ default: string;
965
+ };
966
+ grow: {
967
+ type: BooleanConstructor;
968
+ default: boolean;
969
+ };
970
+ shrink: {
971
+ type: BooleanConstructor;
972
+ default: boolean;
973
+ };
974
+ alignSelf: {
975
+ type: PropType<"auto" | ContainerAlignItems>;
976
+ default: string;
977
+ };
978
+ overflow: {
979
+ type: PropType<"auto" | "hidden" | "visible">;
980
+ };
981
+ padding: {
982
+ type: BooleanConstructor;
983
+ default: boolean;
984
+ };
985
+ gap: {
986
+ type: BooleanConstructor;
987
+ };
988
+ autoPointer: {
989
+ type: BooleanConstructor;
990
+ };
991
+ }>>> | undefined;
992
+ readonly footer?: Readonly<Partial< ExtractPropTypes<{
993
+ tag: {
994
+ type: StringConstructor;
995
+ default: string;
996
+ };
997
+ fit: {
998
+ type: BooleanConstructor;
999
+ default: boolean;
1000
+ };
1001
+ width: {
1002
+ type: (StringConstructor | NumberConstructor)[];
1003
+ };
1004
+ height: {
1005
+ type: (StringConstructor | NumberConstructor)[];
1006
+ };
1007
+ flex: {
1008
+ type: BooleanConstructor;
1009
+ default: boolean;
1010
+ };
1011
+ inline: {
1012
+ type: BooleanConstructor;
1013
+ };
1014
+ direction: {
1015
+ type: PropType<ContainerDirection>;
1016
+ default: string;
1017
+ };
1018
+ wrap: {
1019
+ type: PropType<ContainerWrap>;
1020
+ default: string;
1021
+ };
1022
+ justify: {
1023
+ type: PropType<ContainerJustifyContent>;
1024
+ default: string;
1025
+ };
1026
+ align: {
1027
+ type: PropType<ContainerAlignItems>;
1028
+ default: string;
1029
+ };
1030
+ alignContent: {
1031
+ type: PropType<ContainerAlignContent>;
1032
+ default: string;
1033
+ };
1034
+ grow: {
1035
+ type: BooleanConstructor;
1036
+ default: boolean;
1037
+ };
1038
+ shrink: {
1039
+ type: BooleanConstructor;
1040
+ default: boolean;
1041
+ };
1042
+ alignSelf: {
1043
+ type: PropType<"auto" | ContainerAlignItems>;
1044
+ default: string;
1045
+ };
1046
+ overflow: {
1047
+ type: PropType<"auto" | "hidden" | "visible">;
1048
+ };
1049
+ padding: {
1050
+ type: BooleanConstructor;
1051
+ default: boolean;
1052
+ };
1053
+ gap: {
1054
+ type: BooleanConstructor;
1055
+ };
1056
+ autoPointer: {
1057
+ type: BooleanConstructor;
1058
+ };
1059
+ }>>> | undefined;
1060
+ readonly header?: string | Readonly<Partial< ExtractPropTypes<{
1061
+ size: {
1062
+ type: PropType<BaseSize>;
1063
+ default: string;
1064
+ };
1065
+ content: {
1066
+ type: StringConstructor;
1067
+ default: string;
1068
+ };
1069
+ subtitle: {
1070
+ type: StringConstructor;
1071
+ };
1072
+ icon: {
1073
+ type: PropType<IconParam>;
1074
+ };
1075
+ border: {
1076
+ type: BooleanConstructor;
1077
+ };
1078
+ more: {
1079
+ type: BooleanConstructor;
1080
+ };
1081
+ }>>> | null | undefined;
1082
+ readonly shadow?: "hover" | "none" | "always" | undefined;
1083
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "fit" | "radius" | "border" | "card">;
1084
+ $attrs: {
1085
+ [x: string]: unknown;
1086
+ };
1087
+ $refs: {
1088
+ [x: string]: unknown;
1089
+ } & {
1090
+ bodyRef: ({
1091
+ $: ComponentInternalInstance;
1092
+ $data: {};
1093
+ $props: Partial<{
1094
+ padding: boolean;
1095
+ tag: string;
1096
+ wrap: ContainerWrap;
1097
+ fit: boolean;
1098
+ flex: boolean;
1099
+ inline: boolean;
1100
+ direction: ContainerDirection;
1101
+ justify: ContainerJustifyContent;
1102
+ align: ContainerAlignItems;
1103
+ alignContent: ContainerAlignContent;
1104
+ grow: boolean;
1105
+ shrink: boolean;
1106
+ alignSelf: "auto" | ContainerAlignItems;
1107
+ gap: boolean;
1108
+ autoPointer: boolean;
1109
+ }> & Omit<{
1110
+ readonly padding: boolean;
1111
+ readonly tag: string;
1112
+ readonly wrap: ContainerWrap;
1113
+ readonly fit: boolean;
1114
+ readonly flex: boolean;
1115
+ readonly inline: boolean;
1116
+ readonly direction: ContainerDirection;
1117
+ readonly justify: ContainerJustifyContent;
1118
+ readonly align: ContainerAlignItems;
1119
+ readonly alignContent: ContainerAlignContent;
1120
+ readonly grow: boolean;
1121
+ readonly shrink: boolean;
1122
+ readonly alignSelf: "auto" | ContainerAlignItems;
1123
+ readonly gap: boolean;
1124
+ readonly autoPointer: boolean;
1125
+ readonly width?: string | number | undefined;
1126
+ readonly height?: string | number | undefined;
1127
+ readonly overflow?: "hidden" | "auto" | "visible" | undefined;
1128
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer">;
1129
+ $attrs: {
1130
+ [x: string]: unknown;
1131
+ };
1132
+ $refs: {
1133
+ [x: string]: unknown;
1134
+ } & {
1135
+ elRef: unknown;
1136
+ };
1137
+ $slots: Readonly<{
1138
+ [name: string]: Slot<any> | undefined;
1139
+ }>;
1140
+ $root: ComponentPublicInstance | null;
1141
+ $parent: ComponentPublicInstance | null;
1142
+ $host: Element | null;
1143
+ $emit: (event: string, ...args: any[]) => void;
1144
+ $el: any;
1145
+ $options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
1146
+ tag: {
1147
+ type: StringConstructor;
1148
+ default: string;
1149
+ };
1150
+ fit: {
1151
+ type: BooleanConstructor;
1152
+ default: boolean;
1153
+ };
1154
+ width: {
1155
+ type: (StringConstructor | NumberConstructor)[];
1156
+ };
1157
+ height: {
1158
+ type: (StringConstructor | NumberConstructor)[];
1159
+ };
1160
+ flex: {
1161
+ type: BooleanConstructor;
1162
+ default: boolean;
1163
+ };
1164
+ inline: {
1165
+ type: BooleanConstructor;
1166
+ };
1167
+ direction: {
1168
+ type: PropType<ContainerDirection>;
1169
+ default: string;
1170
+ };
1171
+ wrap: {
1172
+ type: PropType<ContainerWrap>;
1173
+ default: string;
1174
+ };
1175
+ justify: {
1176
+ type: PropType<ContainerJustifyContent>;
1177
+ default: string;
1178
+ };
1179
+ align: {
1180
+ type: PropType<ContainerAlignItems>;
1181
+ default: string;
1182
+ };
1183
+ alignContent: {
1184
+ type: PropType<ContainerAlignContent>;
1185
+ default: string;
1186
+ };
1187
+ grow: {
1188
+ type: BooleanConstructor;
1189
+ default: boolean;
1190
+ };
1191
+ shrink: {
1192
+ type: BooleanConstructor;
1193
+ default: boolean;
1194
+ };
1195
+ alignSelf: {
1196
+ type: PropType<"auto" | ContainerAlignItems>;
1197
+ default: string;
1198
+ };
1199
+ overflow: {
1200
+ type: PropType<"auto" | "hidden" | "visible">;
1201
+ };
1202
+ padding: {
1203
+ type: BooleanConstructor;
1204
+ default: boolean;
1205
+ };
1206
+ gap: {
1207
+ type: BooleanConstructor;
1208
+ };
1209
+ autoPointer: {
1210
+ type: BooleanConstructor;
1211
+ };
1212
+ }>> & Readonly<{}>, {
1213
+ $vtjEl: ComputedRef<any>;
1214
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
1215
+ padding: boolean;
1216
+ tag: string;
1217
+ wrap: ContainerWrap;
1218
+ fit: boolean;
1219
+ flex: boolean;
1220
+ inline: boolean;
1221
+ direction: ContainerDirection;
1222
+ justify: ContainerJustifyContent;
1223
+ align: ContainerAlignItems;
1224
+ alignContent: ContainerAlignContent;
1225
+ grow: boolean;
1226
+ shrink: boolean;
1227
+ alignSelf: "auto" | ContainerAlignItems;
1228
+ gap: boolean;
1229
+ autoPointer: boolean;
1230
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
1231
+ beforeCreate?: (() => void) | (() => void)[];
1232
+ created?: (() => void) | (() => void)[];
1233
+ beforeMount?: (() => void) | (() => void)[];
1234
+ mounted?: (() => void) | (() => void)[];
1235
+ beforeUpdate?: (() => void) | (() => void)[];
1236
+ updated?: (() => void) | (() => void)[];
1237
+ activated?: (() => void) | (() => void)[];
1238
+ deactivated?: (() => void) | (() => void)[];
1239
+ beforeDestroy?: (() => void) | (() => void)[];
1240
+ beforeUnmount?: (() => void) | (() => void)[];
1241
+ destroyed?: (() => void) | (() => void)[];
1242
+ unmounted?: (() => void) | (() => void)[];
1243
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1244
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1245
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
1246
+ };
1247
+ $forceUpdate: () => void;
1248
+ $nextTick: nextTick;
1249
+ $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;
1250
+ } & Readonly<{
1251
+ padding: boolean;
1252
+ tag: string;
1253
+ wrap: ContainerWrap;
1254
+ fit: boolean;
1255
+ flex: boolean;
1256
+ inline: boolean;
1257
+ direction: ContainerDirection;
1258
+ justify: ContainerJustifyContent;
1259
+ align: ContainerAlignItems;
1260
+ alignContent: ContainerAlignContent;
1261
+ grow: boolean;
1262
+ shrink: boolean;
1263
+ alignSelf: "auto" | ContainerAlignItems;
1264
+ gap: boolean;
1265
+ autoPointer: boolean;
1266
+ }> & Omit<Readonly< ExtractPropTypes<{
1267
+ tag: {
1268
+ type: StringConstructor;
1269
+ default: string;
1270
+ };
1271
+ fit: {
1272
+ type: BooleanConstructor;
1273
+ default: boolean;
1274
+ };
1275
+ width: {
1276
+ type: (StringConstructor | NumberConstructor)[];
1277
+ };
1278
+ height: {
1279
+ type: (StringConstructor | NumberConstructor)[];
1280
+ };
1281
+ flex: {
1282
+ type: BooleanConstructor;
1283
+ default: boolean;
1284
+ };
1285
+ inline: {
1286
+ type: BooleanConstructor;
1287
+ };
1288
+ direction: {
1289
+ type: PropType<ContainerDirection>;
1290
+ default: string;
1291
+ };
1292
+ wrap: {
1293
+ type: PropType<ContainerWrap>;
1294
+ default: string;
1295
+ };
1296
+ justify: {
1297
+ type: PropType<ContainerJustifyContent>;
1298
+ default: string;
1299
+ };
1300
+ align: {
1301
+ type: PropType<ContainerAlignItems>;
1302
+ default: string;
1303
+ };
1304
+ alignContent: {
1305
+ type: PropType<ContainerAlignContent>;
1306
+ default: string;
1307
+ };
1308
+ grow: {
1309
+ type: BooleanConstructor;
1310
+ default: boolean;
1311
+ };
1312
+ shrink: {
1313
+ type: BooleanConstructor;
1314
+ default: boolean;
1315
+ };
1316
+ alignSelf: {
1317
+ type: PropType<"auto" | ContainerAlignItems>;
1318
+ default: string;
1319
+ };
1320
+ overflow: {
1321
+ type: PropType<"auto" | "hidden" | "visible">;
1322
+ };
1323
+ padding: {
1324
+ type: BooleanConstructor;
1325
+ default: boolean;
1326
+ };
1327
+ gap: {
1328
+ type: BooleanConstructor;
1329
+ };
1330
+ autoPointer: {
1331
+ type: BooleanConstructor;
1332
+ };
1333
+ }>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> & ShallowUnwrapRef<{
1334
+ $vtjEl: ComputedRef<any>;
1335
+ }> & {} & ComponentCustomProperties & {} & {
1336
+ $slots: {
1337
+ default?(_: {}): any;
1338
+ };
1339
+ }) | null;
1340
+ };
1341
+ $slots: Readonly<{
1342
+ [name: string]: Slot<any> | undefined;
1343
+ }>;
1344
+ $root: ComponentPublicInstance | null;
1345
+ $parent: ComponentPublicInstance | null;
1346
+ $host: Element | null;
1347
+ $emit: (event: string, ...args: any[]) => void;
1348
+ $el: any;
1349
+ $options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
1350
+ fit: {
1351
+ type: BooleanConstructor;
1352
+ default: boolean;
1353
+ };
1354
+ width: {
1355
+ type: (StringConstructor | NumberConstructor)[];
1356
+ };
1357
+ height: {
1358
+ type: (StringConstructor | NumberConstructor)[];
1359
+ };
1360
+ border: {
1361
+ type: BooleanConstructor;
1362
+ default: boolean;
1363
+ };
1364
+ radius: {
1365
+ type: BooleanConstructor;
1366
+ default: boolean;
1367
+ };
1368
+ card: {
1369
+ type: BooleanConstructor;
1370
+ };
1371
+ size: {
1372
+ type: PropType<BaseSize>;
1373
+ };
1374
+ shadow: {
1375
+ type: PropType<"none" | "always" | "hover">;
1376
+ };
1377
+ header: {
1378
+ type: PropType<string | HeaderProps | null>;
1379
+ };
1380
+ body: {
1381
+ type: PropType<ContainerProps>;
1382
+ };
1383
+ footer: {
1384
+ type: PropType<ContainerProps>;
1385
+ };
1386
+ }>> & Readonly<{}>, {
1387
+ bodyRef: Ref<any, any>;
1388
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
1389
+ radius: boolean;
1390
+ fit: boolean;
1391
+ border: boolean;
1392
+ card: boolean;
1393
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
1394
+ beforeCreate?: (() => void) | (() => void)[];
1395
+ created?: (() => void) | (() => void)[];
1396
+ beforeMount?: (() => void) | (() => void)[];
1397
+ mounted?: (() => void) | (() => void)[];
1398
+ beforeUpdate?: (() => void) | (() => void)[];
1399
+ updated?: (() => void) | (() => void)[];
1400
+ activated?: (() => void) | (() => void)[];
1401
+ deactivated?: (() => void) | (() => void)[];
1402
+ beforeDestroy?: (() => void) | (() => void)[];
1403
+ beforeUnmount?: (() => void) | (() => void)[];
1404
+ destroyed?: (() => void) | (() => void)[];
1405
+ unmounted?: (() => void) | (() => void)[];
1406
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1407
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1408
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
1409
+ };
1410
+ $forceUpdate: () => void;
1411
+ $nextTick: nextTick;
1412
+ $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;
1413
+ } & Readonly<{
1414
+ radius: boolean;
1415
+ fit: boolean;
1416
+ border: boolean;
1417
+ card: boolean;
1418
+ }> & Omit<Readonly< ExtractPropTypes<{
1419
+ fit: {
1420
+ type: BooleanConstructor;
1421
+ default: boolean;
1422
+ };
1423
+ width: {
1424
+ type: (StringConstructor | NumberConstructor)[];
1425
+ };
1426
+ height: {
1427
+ type: (StringConstructor | NumberConstructor)[];
1428
+ };
1429
+ border: {
1430
+ type: BooleanConstructor;
1431
+ default: boolean;
1432
+ };
1433
+ radius: {
1434
+ type: BooleanConstructor;
1435
+ default: boolean;
1436
+ };
1437
+ card: {
1438
+ type: BooleanConstructor;
1439
+ };
1440
+ size: {
1441
+ type: PropType<BaseSize>;
1442
+ };
1443
+ shadow: {
1444
+ type: PropType<"none" | "always" | "hover">;
1445
+ };
1446
+ header: {
1447
+ type: PropType<string | HeaderProps | null>;
1448
+ };
1449
+ body: {
1450
+ type: PropType<ContainerProps>;
1451
+ };
1452
+ footer: {
1453
+ type: PropType<ContainerProps>;
1454
+ };
1455
+ }>> & Readonly<{}>, "fit" | "radius" | "border" | "card" | "bodyRef"> & ShallowUnwrapRef<{
1456
+ bodyRef: Ref<any, any>;
1457
+ }> & {} & ComponentCustomProperties & {} & {
1458
+ $slots: {
1459
+ header?(_: {}): any;
1460
+ title?(_: {}): any;
1461
+ actions?(_: {}): any;
1462
+ default?(_: {}): any;
1463
+ footer?(_: {}): any;
1464
+ };
1465
+ }) | null;
338
1466
  };
339
1467
  $slots: Readonly<{
340
1468
  [name: string]: Slot<any> | undefined;
@@ -352,7 +1480,12 @@ export declare const widgets: {
352
1480
  onEdit?: ((...args: any[]) => any) | undefined;
353
1481
  onRemove?: ((...args: any[]) => any) | undefined;
354
1482
  onSave?: ((...args: any[]) => any) | undefined;
355
- }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1483
+ }>, {
1484
+ panelRef: Ref<any, any>;
1485
+ scrollToBottom: () => void;
1486
+ autoScrollToBottom: (diff?: number) => void;
1487
+ scrollToTop: () => void;
1488
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
356
1489
  command: (...args: any[]) => void;
357
1490
  refresh: (...args: any[]) => void;
358
1491
  plus: (...args: any[]) => void;
@@ -394,7 +1527,12 @@ export declare const widgets: {
394
1527
  onEdit?: ((...args: any[]) => any) | undefined;
395
1528
  onRemove?: ((...args: any[]) => any) | undefined;
396
1529
  onSave?: ((...args: any[]) => any) | undefined;
397
- }>, "header" | "menus"> & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {} & {
1530
+ }>, "panelRef" | "scrollToBottom" | "autoScrollToBottom" | "scrollToTop" | ("header" | "menus")> & ShallowUnwrapRef<{
1531
+ panelRef: Ref<any, any>;
1532
+ scrollToBottom: () => void;
1533
+ autoScrollToBottom: (diff?: number) => void;
1534
+ scrollToTop: () => void;
1535
+ }> & {} & ComponentCustomProperties & {} & {
398
1536
  $slots: {
399
1537
  actions?(_: {}): any;
400
1538
  default?(_: {}): any;
@@ -407,4 +1545,670 @@ export declare const widgets: {
407
1545
  refreshTemplates: () => void;
408
1546
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
409
1547
  UserAvatar: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1548
+ AI: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
1549
+ panelRef: ({
1550
+ $: ComponentInternalInstance;
1551
+ $data: {};
1552
+ $props: {
1553
+ readonly title?: string | undefined;
1554
+ readonly subtitle?: string | undefined;
1555
+ readonly plus?: boolean | undefined;
1556
+ readonly refresh?: boolean | undefined;
1557
+ readonly back?: boolean | undefined;
1558
+ readonly edit?: boolean | undefined;
1559
+ readonly remove?: boolean | undefined;
1560
+ readonly save?: boolean | undefined;
1561
+ readonly header?: boolean | undefined;
1562
+ readonly collapsable?: boolean | undefined;
1563
+ readonly menus?: ActionMenuItem[] | undefined;
1564
+ readonly onCommand?: ((...args: any[]) => any) | undefined;
1565
+ readonly onRefresh?: ((...args: any[]) => any) | undefined;
1566
+ readonly onPlus?: ((...args: any[]) => any) | undefined;
1567
+ readonly onBack?: ((...args: any[]) => any) | undefined;
1568
+ readonly onEdit?: ((...args: any[]) => any) | undefined;
1569
+ readonly onRemove?: ((...args: any[]) => any) | undefined;
1570
+ readonly onSave?: ((...args: any[]) => any) | undefined;
1571
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
1572
+ $attrs: {
1573
+ [x: string]: unknown;
1574
+ };
1575
+ $refs: {
1576
+ [x: string]: unknown;
1577
+ } & {
1578
+ panelRef: ({
1579
+ $: ComponentInternalInstance;
1580
+ $data: {};
1581
+ $props: Partial<{
1582
+ radius: boolean;
1583
+ fit: boolean;
1584
+ border: boolean;
1585
+ card: boolean;
1586
+ }> & Omit<{
1587
+ readonly fit: boolean;
1588
+ readonly radius: boolean;
1589
+ readonly border: boolean;
1590
+ readonly card: boolean;
1591
+ readonly size?: BaseSize | undefined;
1592
+ readonly height?: string | number | undefined;
1593
+ readonly width?: string | number | undefined;
1594
+ readonly body?: Readonly<Partial< ExtractPropTypes<{
1595
+ tag: {
1596
+ type: StringConstructor;
1597
+ default: string;
1598
+ };
1599
+ fit: {
1600
+ type: BooleanConstructor;
1601
+ default: boolean;
1602
+ };
1603
+ width: {
1604
+ type: (StringConstructor | NumberConstructor)[];
1605
+ };
1606
+ height: {
1607
+ type: (StringConstructor | NumberConstructor)[];
1608
+ };
1609
+ flex: {
1610
+ type: BooleanConstructor;
1611
+ default: boolean;
1612
+ };
1613
+ inline: {
1614
+ type: BooleanConstructor;
1615
+ };
1616
+ direction: {
1617
+ type: PropType<ContainerDirection>;
1618
+ default: string;
1619
+ };
1620
+ wrap: {
1621
+ type: PropType<ContainerWrap>;
1622
+ default: string;
1623
+ };
1624
+ justify: {
1625
+ type: PropType<ContainerJustifyContent>;
1626
+ default: string;
1627
+ };
1628
+ align: {
1629
+ type: PropType<ContainerAlignItems>;
1630
+ default: string;
1631
+ };
1632
+ alignContent: {
1633
+ type: PropType<ContainerAlignContent>;
1634
+ default: string;
1635
+ };
1636
+ grow: {
1637
+ type: BooleanConstructor;
1638
+ default: boolean;
1639
+ };
1640
+ shrink: {
1641
+ type: BooleanConstructor;
1642
+ default: boolean;
1643
+ };
1644
+ alignSelf: {
1645
+ type: PropType<"auto" | ContainerAlignItems>;
1646
+ default: string;
1647
+ };
1648
+ overflow: {
1649
+ type: PropType<"auto" | "hidden" | "visible">;
1650
+ };
1651
+ padding: {
1652
+ type: BooleanConstructor;
1653
+ default: boolean;
1654
+ };
1655
+ gap: {
1656
+ type: BooleanConstructor;
1657
+ };
1658
+ autoPointer: {
1659
+ type: BooleanConstructor;
1660
+ };
1661
+ }>>> | undefined;
1662
+ readonly footer?: Readonly<Partial< ExtractPropTypes<{
1663
+ tag: {
1664
+ type: StringConstructor;
1665
+ default: string;
1666
+ };
1667
+ fit: {
1668
+ type: BooleanConstructor;
1669
+ default: boolean;
1670
+ };
1671
+ width: {
1672
+ type: (StringConstructor | NumberConstructor)[];
1673
+ };
1674
+ height: {
1675
+ type: (StringConstructor | NumberConstructor)[];
1676
+ };
1677
+ flex: {
1678
+ type: BooleanConstructor;
1679
+ default: boolean;
1680
+ };
1681
+ inline: {
1682
+ type: BooleanConstructor;
1683
+ };
1684
+ direction: {
1685
+ type: PropType<ContainerDirection>;
1686
+ default: string;
1687
+ };
1688
+ wrap: {
1689
+ type: PropType<ContainerWrap>;
1690
+ default: string;
1691
+ };
1692
+ justify: {
1693
+ type: PropType<ContainerJustifyContent>;
1694
+ default: string;
1695
+ };
1696
+ align: {
1697
+ type: PropType<ContainerAlignItems>;
1698
+ default: string;
1699
+ };
1700
+ alignContent: {
1701
+ type: PropType<ContainerAlignContent>;
1702
+ default: string;
1703
+ };
1704
+ grow: {
1705
+ type: BooleanConstructor;
1706
+ default: boolean;
1707
+ };
1708
+ shrink: {
1709
+ type: BooleanConstructor;
1710
+ default: boolean;
1711
+ };
1712
+ alignSelf: {
1713
+ type: PropType<"auto" | ContainerAlignItems>;
1714
+ default: string;
1715
+ };
1716
+ overflow: {
1717
+ type: PropType<"auto" | "hidden" | "visible">;
1718
+ };
1719
+ padding: {
1720
+ type: BooleanConstructor;
1721
+ default: boolean;
1722
+ };
1723
+ gap: {
1724
+ type: BooleanConstructor;
1725
+ };
1726
+ autoPointer: {
1727
+ type: BooleanConstructor;
1728
+ };
1729
+ }>>> | undefined;
1730
+ readonly header?: string | Readonly<Partial< ExtractPropTypes<{
1731
+ size: {
1732
+ type: PropType<BaseSize>;
1733
+ default: string;
1734
+ };
1735
+ content: {
1736
+ type: StringConstructor;
1737
+ default: string;
1738
+ };
1739
+ subtitle: {
1740
+ type: StringConstructor;
1741
+ };
1742
+ icon: {
1743
+ type: PropType<IconParam>;
1744
+ };
1745
+ border: {
1746
+ type: BooleanConstructor;
1747
+ };
1748
+ more: {
1749
+ type: BooleanConstructor;
1750
+ };
1751
+ }>>> | null | undefined;
1752
+ readonly shadow?: "hover" | "none" | "always" | undefined;
1753
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "fit" | "radius" | "border" | "card">;
1754
+ $attrs: {
1755
+ [x: string]: unknown;
1756
+ };
1757
+ $refs: {
1758
+ [x: string]: unknown;
1759
+ } & {
1760
+ bodyRef: ({
1761
+ $: ComponentInternalInstance;
1762
+ $data: {};
1763
+ $props: Partial<{
1764
+ padding: boolean;
1765
+ tag: string;
1766
+ wrap: ContainerWrap;
1767
+ fit: boolean;
1768
+ flex: boolean;
1769
+ inline: boolean;
1770
+ direction: ContainerDirection;
1771
+ justify: ContainerJustifyContent;
1772
+ align: ContainerAlignItems;
1773
+ alignContent: ContainerAlignContent;
1774
+ grow: boolean;
1775
+ shrink: boolean;
1776
+ alignSelf: "auto" | ContainerAlignItems;
1777
+ gap: boolean;
1778
+ autoPointer: boolean;
1779
+ }> & Omit<{
1780
+ readonly padding: boolean;
1781
+ readonly tag: string;
1782
+ readonly wrap: ContainerWrap;
1783
+ readonly fit: boolean;
1784
+ readonly flex: boolean;
1785
+ readonly inline: boolean;
1786
+ readonly direction: ContainerDirection;
1787
+ readonly justify: ContainerJustifyContent;
1788
+ readonly align: ContainerAlignItems;
1789
+ readonly alignContent: ContainerAlignContent;
1790
+ readonly grow: boolean;
1791
+ readonly shrink: boolean;
1792
+ readonly alignSelf: "auto" | ContainerAlignItems;
1793
+ readonly gap: boolean;
1794
+ readonly autoPointer: boolean;
1795
+ readonly width?: string | number | undefined;
1796
+ readonly height?: string | number | undefined;
1797
+ readonly overflow?: "hidden" | "auto" | "visible" | undefined;
1798
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer">;
1799
+ $attrs: {
1800
+ [x: string]: unknown;
1801
+ };
1802
+ $refs: {
1803
+ [x: string]: unknown;
1804
+ } & {
1805
+ elRef: unknown;
1806
+ };
1807
+ $slots: Readonly<{
1808
+ [name: string]: Slot<any> | undefined;
1809
+ }>;
1810
+ $root: ComponentPublicInstance | null;
1811
+ $parent: ComponentPublicInstance | null;
1812
+ $host: Element | null;
1813
+ $emit: (event: string, ...args: any[]) => void;
1814
+ $el: any;
1815
+ $options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
1816
+ tag: {
1817
+ type: StringConstructor;
1818
+ default: string;
1819
+ };
1820
+ fit: {
1821
+ type: BooleanConstructor;
1822
+ default: boolean;
1823
+ };
1824
+ width: {
1825
+ type: (StringConstructor | NumberConstructor)[];
1826
+ };
1827
+ height: {
1828
+ type: (StringConstructor | NumberConstructor)[];
1829
+ };
1830
+ flex: {
1831
+ type: BooleanConstructor;
1832
+ default: boolean;
1833
+ };
1834
+ inline: {
1835
+ type: BooleanConstructor;
1836
+ };
1837
+ direction: {
1838
+ type: PropType<ContainerDirection>;
1839
+ default: string;
1840
+ };
1841
+ wrap: {
1842
+ type: PropType<ContainerWrap>;
1843
+ default: string;
1844
+ };
1845
+ justify: {
1846
+ type: PropType<ContainerJustifyContent>;
1847
+ default: string;
1848
+ };
1849
+ align: {
1850
+ type: PropType<ContainerAlignItems>;
1851
+ default: string;
1852
+ };
1853
+ alignContent: {
1854
+ type: PropType<ContainerAlignContent>;
1855
+ default: string;
1856
+ };
1857
+ grow: {
1858
+ type: BooleanConstructor;
1859
+ default: boolean;
1860
+ };
1861
+ shrink: {
1862
+ type: BooleanConstructor;
1863
+ default: boolean;
1864
+ };
1865
+ alignSelf: {
1866
+ type: PropType<"auto" | ContainerAlignItems>;
1867
+ default: string;
1868
+ };
1869
+ overflow: {
1870
+ type: PropType<"auto" | "hidden" | "visible">;
1871
+ };
1872
+ padding: {
1873
+ type: BooleanConstructor;
1874
+ default: boolean;
1875
+ };
1876
+ gap: {
1877
+ type: BooleanConstructor;
1878
+ };
1879
+ autoPointer: {
1880
+ type: BooleanConstructor;
1881
+ };
1882
+ }>> & Readonly<{}>, {
1883
+ $vtjEl: ComputedRef<any>;
1884
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
1885
+ padding: boolean;
1886
+ tag: string;
1887
+ wrap: ContainerWrap;
1888
+ fit: boolean;
1889
+ flex: boolean;
1890
+ inline: boolean;
1891
+ direction: ContainerDirection;
1892
+ justify: ContainerJustifyContent;
1893
+ align: ContainerAlignItems;
1894
+ alignContent: ContainerAlignContent;
1895
+ grow: boolean;
1896
+ shrink: boolean;
1897
+ alignSelf: "auto" | ContainerAlignItems;
1898
+ gap: boolean;
1899
+ autoPointer: boolean;
1900
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
1901
+ beforeCreate?: (() => void) | (() => void)[];
1902
+ created?: (() => void) | (() => void)[];
1903
+ beforeMount?: (() => void) | (() => void)[];
1904
+ mounted?: (() => void) | (() => void)[];
1905
+ beforeUpdate?: (() => void) | (() => void)[];
1906
+ updated?: (() => void) | (() => void)[];
1907
+ activated?: (() => void) | (() => void)[];
1908
+ deactivated?: (() => void) | (() => void)[];
1909
+ beforeDestroy?: (() => void) | (() => void)[];
1910
+ beforeUnmount?: (() => void) | (() => void)[];
1911
+ destroyed?: (() => void) | (() => void)[];
1912
+ unmounted?: (() => void) | (() => void)[];
1913
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1914
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1915
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
1916
+ };
1917
+ $forceUpdate: () => void;
1918
+ $nextTick: nextTick;
1919
+ $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;
1920
+ } & Readonly<{
1921
+ padding: boolean;
1922
+ tag: string;
1923
+ wrap: ContainerWrap;
1924
+ fit: boolean;
1925
+ flex: boolean;
1926
+ inline: boolean;
1927
+ direction: ContainerDirection;
1928
+ justify: ContainerJustifyContent;
1929
+ align: ContainerAlignItems;
1930
+ alignContent: ContainerAlignContent;
1931
+ grow: boolean;
1932
+ shrink: boolean;
1933
+ alignSelf: "auto" | ContainerAlignItems;
1934
+ gap: boolean;
1935
+ autoPointer: boolean;
1936
+ }> & Omit<Readonly< ExtractPropTypes<{
1937
+ tag: {
1938
+ type: StringConstructor;
1939
+ default: string;
1940
+ };
1941
+ fit: {
1942
+ type: BooleanConstructor;
1943
+ default: boolean;
1944
+ };
1945
+ width: {
1946
+ type: (StringConstructor | NumberConstructor)[];
1947
+ };
1948
+ height: {
1949
+ type: (StringConstructor | NumberConstructor)[];
1950
+ };
1951
+ flex: {
1952
+ type: BooleanConstructor;
1953
+ default: boolean;
1954
+ };
1955
+ inline: {
1956
+ type: BooleanConstructor;
1957
+ };
1958
+ direction: {
1959
+ type: PropType<ContainerDirection>;
1960
+ default: string;
1961
+ };
1962
+ wrap: {
1963
+ type: PropType<ContainerWrap>;
1964
+ default: string;
1965
+ };
1966
+ justify: {
1967
+ type: PropType<ContainerJustifyContent>;
1968
+ default: string;
1969
+ };
1970
+ align: {
1971
+ type: PropType<ContainerAlignItems>;
1972
+ default: string;
1973
+ };
1974
+ alignContent: {
1975
+ type: PropType<ContainerAlignContent>;
1976
+ default: string;
1977
+ };
1978
+ grow: {
1979
+ type: BooleanConstructor;
1980
+ default: boolean;
1981
+ };
1982
+ shrink: {
1983
+ type: BooleanConstructor;
1984
+ default: boolean;
1985
+ };
1986
+ alignSelf: {
1987
+ type: PropType<"auto" | ContainerAlignItems>;
1988
+ default: string;
1989
+ };
1990
+ overflow: {
1991
+ type: PropType<"auto" | "hidden" | "visible">;
1992
+ };
1993
+ padding: {
1994
+ type: BooleanConstructor;
1995
+ default: boolean;
1996
+ };
1997
+ gap: {
1998
+ type: BooleanConstructor;
1999
+ };
2000
+ autoPointer: {
2001
+ type: BooleanConstructor;
2002
+ };
2003
+ }>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> & ShallowUnwrapRef<{
2004
+ $vtjEl: ComputedRef<any>;
2005
+ }> & {} & ComponentCustomProperties & {} & {
2006
+ $slots: {
2007
+ default?(_: {}): any;
2008
+ };
2009
+ }) | null;
2010
+ };
2011
+ $slots: Readonly<{
2012
+ [name: string]: Slot<any> | undefined;
2013
+ }>;
2014
+ $root: ComponentPublicInstance | null;
2015
+ $parent: ComponentPublicInstance | null;
2016
+ $host: Element | null;
2017
+ $emit: (event: string, ...args: any[]) => void;
2018
+ $el: any;
2019
+ $options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
2020
+ fit: {
2021
+ type: BooleanConstructor;
2022
+ default: boolean;
2023
+ };
2024
+ width: {
2025
+ type: (StringConstructor | NumberConstructor)[];
2026
+ };
2027
+ height: {
2028
+ type: (StringConstructor | NumberConstructor)[];
2029
+ };
2030
+ border: {
2031
+ type: BooleanConstructor;
2032
+ default: boolean;
2033
+ };
2034
+ radius: {
2035
+ type: BooleanConstructor;
2036
+ default: boolean;
2037
+ };
2038
+ card: {
2039
+ type: BooleanConstructor;
2040
+ };
2041
+ size: {
2042
+ type: PropType<BaseSize>;
2043
+ };
2044
+ shadow: {
2045
+ type: PropType<"none" | "always" | "hover">;
2046
+ };
2047
+ header: {
2048
+ type: PropType<string | HeaderProps | null>;
2049
+ };
2050
+ body: {
2051
+ type: PropType<ContainerProps>;
2052
+ };
2053
+ footer: {
2054
+ type: PropType<ContainerProps>;
2055
+ };
2056
+ }>> & Readonly<{}>, {
2057
+ bodyRef: Ref<any, any>;
2058
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
2059
+ radius: boolean;
2060
+ fit: boolean;
2061
+ border: boolean;
2062
+ card: boolean;
2063
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
2064
+ beforeCreate?: (() => void) | (() => void)[];
2065
+ created?: (() => void) | (() => void)[];
2066
+ beforeMount?: (() => void) | (() => void)[];
2067
+ mounted?: (() => void) | (() => void)[];
2068
+ beforeUpdate?: (() => void) | (() => void)[];
2069
+ updated?: (() => void) | (() => void)[];
2070
+ activated?: (() => void) | (() => void)[];
2071
+ deactivated?: (() => void) | (() => void)[];
2072
+ beforeDestroy?: (() => void) | (() => void)[];
2073
+ beforeUnmount?: (() => void) | (() => void)[];
2074
+ destroyed?: (() => void) | (() => void)[];
2075
+ unmounted?: (() => void) | (() => void)[];
2076
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
2077
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
2078
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
2079
+ };
2080
+ $forceUpdate: () => void;
2081
+ $nextTick: nextTick;
2082
+ $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;
2083
+ } & Readonly<{
2084
+ radius: boolean;
2085
+ fit: boolean;
2086
+ border: boolean;
2087
+ card: boolean;
2088
+ }> & Omit<Readonly< ExtractPropTypes<{
2089
+ fit: {
2090
+ type: BooleanConstructor;
2091
+ default: boolean;
2092
+ };
2093
+ width: {
2094
+ type: (StringConstructor | NumberConstructor)[];
2095
+ };
2096
+ height: {
2097
+ type: (StringConstructor | NumberConstructor)[];
2098
+ };
2099
+ border: {
2100
+ type: BooleanConstructor;
2101
+ default: boolean;
2102
+ };
2103
+ radius: {
2104
+ type: BooleanConstructor;
2105
+ default: boolean;
2106
+ };
2107
+ card: {
2108
+ type: BooleanConstructor;
2109
+ };
2110
+ size: {
2111
+ type: PropType<BaseSize>;
2112
+ };
2113
+ shadow: {
2114
+ type: PropType<"none" | "always" | "hover">;
2115
+ };
2116
+ header: {
2117
+ type: PropType<string | HeaderProps | null>;
2118
+ };
2119
+ body: {
2120
+ type: PropType<ContainerProps>;
2121
+ };
2122
+ footer: {
2123
+ type: PropType<ContainerProps>;
2124
+ };
2125
+ }>> & Readonly<{}>, "fit" | "radius" | "border" | "card" | "bodyRef"> & ShallowUnwrapRef<{
2126
+ bodyRef: Ref<any, any>;
2127
+ }> & {} & ComponentCustomProperties & {} & {
2128
+ $slots: {
2129
+ header?(_: {}): any;
2130
+ title?(_: {}): any;
2131
+ actions?(_: {}): any;
2132
+ default?(_: {}): any;
2133
+ footer?(_: {}): any;
2134
+ };
2135
+ }) | null;
2136
+ };
2137
+ $slots: Readonly<{
2138
+ [name: string]: Slot<any> | undefined;
2139
+ }>;
2140
+ $root: ComponentPublicInstance | null;
2141
+ $parent: ComponentPublicInstance | null;
2142
+ $host: Element | null;
2143
+ $emit: ((event: "command", ...args: any[]) => void) & ((event: "refresh", ...args: any[]) => void) & ((event: "plus", ...args: any[]) => void) & ((event: "back", ...args: any[]) => void) & ((event: "edit", ...args: any[]) => void) & ((event: "remove", ...args: any[]) => void) & ((event: "save", ...args: any[]) => void);
2144
+ $el: any;
2145
+ $options: ComponentOptionsBase<Readonly< Props> & Readonly<{
2146
+ onCommand?: ((...args: any[]) => any) | undefined;
2147
+ onRefresh?: ((...args: any[]) => any) | undefined;
2148
+ onPlus?: ((...args: any[]) => any) | undefined;
2149
+ onBack?: ((...args: any[]) => any) | undefined;
2150
+ onEdit?: ((...args: any[]) => any) | undefined;
2151
+ onRemove?: ((...args: any[]) => any) | undefined;
2152
+ onSave?: ((...args: any[]) => any) | undefined;
2153
+ }>, {
2154
+ panelRef: Ref<any, any>;
2155
+ scrollToBottom: () => void;
2156
+ autoScrollToBottom: (diff?: number) => void;
2157
+ scrollToTop: () => void;
2158
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2159
+ command: (...args: any[]) => void;
2160
+ refresh: (...args: any[]) => void;
2161
+ plus: (...args: any[]) => void;
2162
+ back: (...args: any[]) => void;
2163
+ edit: (...args: any[]) => void;
2164
+ remove: (...args: any[]) => void;
2165
+ save: (...args: any[]) => void;
2166
+ }, string, {
2167
+ header: boolean;
2168
+ menus: ActionMenuItem[];
2169
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
2170
+ beforeCreate?: (() => void) | (() => void)[];
2171
+ created?: (() => void) | (() => void)[];
2172
+ beforeMount?: (() => void) | (() => void)[];
2173
+ mounted?: (() => void) | (() => void)[];
2174
+ beforeUpdate?: (() => void) | (() => void)[];
2175
+ updated?: (() => void) | (() => void)[];
2176
+ activated?: (() => void) | (() => void)[];
2177
+ deactivated?: (() => void) | (() => void)[];
2178
+ beforeDestroy?: (() => void) | (() => void)[];
2179
+ beforeUnmount?: (() => void) | (() => void)[];
2180
+ destroyed?: (() => void) | (() => void)[];
2181
+ unmounted?: (() => void) | (() => void)[];
2182
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
2183
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
2184
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
2185
+ };
2186
+ $forceUpdate: () => void;
2187
+ $nextTick: nextTick;
2188
+ $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;
2189
+ } & Readonly<{
2190
+ header: boolean;
2191
+ menus: ActionMenuItem[];
2192
+ }> & Omit<Readonly< Props> & Readonly<{
2193
+ onCommand?: ((...args: any[]) => any) | undefined;
2194
+ onRefresh?: ((...args: any[]) => any) | undefined;
2195
+ onPlus?: ((...args: any[]) => any) | undefined;
2196
+ onBack?: ((...args: any[]) => any) | undefined;
2197
+ onEdit?: ((...args: any[]) => any) | undefined;
2198
+ onRemove?: ((...args: any[]) => any) | undefined;
2199
+ onSave?: ((...args: any[]) => any) | undefined;
2200
+ }>, "panelRef" | "scrollToBottom" | "autoScrollToBottom" | "scrollToTop" | ("header" | "menus")> & ShallowUnwrapRef<{
2201
+ panelRef: Ref<any, any>;
2202
+ scrollToBottom: () => void;
2203
+ autoScrollToBottom: (diff?: number) => void;
2204
+ scrollToTop: () => void;
2205
+ }> & {} & ComponentCustomProperties & {} & {
2206
+ $slots: {
2207
+ actions?(_: {}): any;
2208
+ default?(_: {}): any;
2209
+ footer?(_: {}): any;
2210
+ };
2211
+ }) | null;
2212
+ listRef: HTMLDivElement;
2213
+ }, any>;
410
2214
  };