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