@onereach/ui-components 8.19.3 → 8.19.4-beta.3979.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 (27) hide show
  1. package/dist/bundled/v2/{OrTree-962e1cbd.js → OrTree-7fe33341.js} +20 -5
  2. package/dist/bundled/v2/components/OrTreeV3/OrTree.js +1 -1
  3. package/dist/bundled/v2/components/OrTreeV3/index.js +1 -1
  4. package/dist/bundled/v2/components/OrTreeV3/types.d.ts +2 -0
  5. package/dist/bundled/v2/components/index.js +1 -1
  6. package/dist/bundled/v2/index.js +2 -2
  7. package/dist/bundled/v3/components/OrTreeV3/index.js +20 -5
  8. package/dist/bundled/v3/components/OrTreeV3/types.d.ts +2 -0
  9. package/dist/bundled/v3/index.js +1 -1
  10. package/dist/esm/v2/{OrTree-a485bc1d.js → OrTree-776198d7.js} +20 -5
  11. package/dist/esm/v2/components/index.js +1 -1
  12. package/dist/esm/v2/components/or-tree-v3/index.js +1 -1
  13. package/dist/esm/v2/components/or-tree-v3/partials/or-tree-node/OrTreeNode.vue.d.ts +2816 -0
  14. package/dist/esm/v2/components/or-tree-v3/partials/or-tree-node/styles.d.ts +1 -0
  15. package/dist/esm/v2/components/or-tree-v3/types.d.ts +2 -0
  16. package/dist/esm/v2/index.js +1 -1
  17. package/dist/esm/v3/{OrTree-0a8d7804.js → OrTree-b0994048.js} +20 -5
  18. package/dist/esm/v3/components/index.js +1 -1
  19. package/dist/esm/v3/components/or-tree-v3/index.js +1 -1
  20. package/dist/esm/v3/components/or-tree-v3/partials/or-tree-node/OrTreeNode.vue.d.ts +2 -0
  21. package/dist/esm/v3/components/or-tree-v3/partials/or-tree-node/styles.d.ts +1 -0
  22. package/dist/esm/v3/components/or-tree-v3/types.d.ts +2 -0
  23. package/dist/esm/v3/index.js +1 -1
  24. package/package.json +2 -3
  25. package/src/components/or-tree-v3/partials/or-tree-node/OrTreeNode.vue +21 -4
  26. package/src/components/or-tree-v3/partials/or-tree-node/styles.ts +14 -1
  27. package/src/components/or-tree-v3/types.ts +4 -0
@@ -7,6 +7,1413 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
7
7
  rootStyles: import("@vue/composition-api").ComputedRef<string[]>;
8
8
  nodeStyles: import("@vue/composition-api").ComputedRef<string[]>;
9
9
  dragIndicatorStyles: import("@vue/composition-api").ComputedRef<string[]>;
10
+ childrenTreeNodes: import("@vue/composition-api").Ref<{
11
+ [x: string]: never;
12
+ $data: unknown;
13
+ $props: {
14
+ [x: number]: string | undefined;
15
+ } | {};
16
+ $attrs: {
17
+ [x: string]: string;
18
+ };
19
+ $emit: ((event: string, ...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{} & {}, import("@vue/composition-api").ShallowUnwrapRef<unknown>, unknown, import("@vue/composition-api").ComputedOptions, import("@vue/composition-api").MethodOptions, unknown, unknown, {
20
+ [x: string]: ((...args: any[]) => any) | null;
21
+ } | string[], {} & {}, {
22
+ [x: number]: string;
23
+ } | {}, true>) | ((event: string, ...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{} & {}, import("@vue/composition-api").ShallowUnwrapRef<unknown>, unknown, import("@vue/composition-api").ComputedOptions, import("@vue/composition-api").MethodOptions, unknown, unknown, {
24
+ [x: string]: ((...args: any[]) => any) | null;
25
+ } | string[], {} & {}, {
26
+ [x: number]: string;
27
+ } | {}, true>);
28
+ readonly $el: Element;
29
+ readonly $options: {
30
+ data?: import("vue/types/options").DefaultData<import("vue").default> | undefined;
31
+ props?: string[] | {
32
+ [x: string]: import("vue/types/options").Prop<any> | {
33
+ type?: import("vue/types/options").Prop<any> | import("vue/types/options").Prop<any>[] | undefined;
34
+ required?: boolean | undefined;
35
+ default?: any;
36
+ validator?: ((value: any) => boolean) | undefined;
37
+ } | import("vue/types/options").Prop<any>[];
38
+ } | undefined;
39
+ propsData?: object | undefined;
40
+ computed?: {
41
+ [x: string]: (() => any) | {
42
+ get?: (() => any) | undefined;
43
+ set?: ((value: any) => void) | undefined;
44
+ cache?: boolean | undefined;
45
+ };
46
+ } | undefined;
47
+ methods?: {
48
+ [x: string]: (this: import("vue").default, ...args: any[]) => any;
49
+ } | undefined;
50
+ watch?: {
51
+ [x: string]: import("vue").WatchHandler<any> | {
52
+ handler: import("vue").WatchHandler<any>;
53
+ deep?: boolean | undefined;
54
+ immediate?: boolean | undefined;
55
+ };
56
+ } | undefined;
57
+ el?: string | Element | undefined;
58
+ template?: string | undefined;
59
+ render?: ((createElement: import("vue").CreateElement, hack: import("vue").RenderContext<import("vue/types/options").DefaultProps>) => import("vue-demi").VNode) | undefined;
60
+ renderError?: ((createElement: import("vue").CreateElement, err: Error) => import("vue-demi").VNode) | undefined;
61
+ staticRenderFns?: ((createElement: import("vue").CreateElement) => import("vue-demi").VNode)[] | undefined;
62
+ beforeCreate?: ((this: import("vue").default) => void) | undefined;
63
+ created?: (() => void) | undefined;
64
+ beforeDestroy?: (() => void) | undefined;
65
+ destroyed?: (() => void) | undefined;
66
+ beforeMount?: (() => void) | undefined;
67
+ mounted?: (() => void) | undefined;
68
+ beforeUpdate?: (() => void) | undefined;
69
+ updated?: (() => void) | undefined;
70
+ activated?: (() => void) | undefined;
71
+ deactivated?: (() => void) | undefined;
72
+ errorCaptured?: ((err: Error, vm: import("vue").default, info: string) => boolean | void) | undefined;
73
+ serverPrefetch?: ((this: import("vue").default) => Promise<void>) | undefined;
74
+ directives?: {
75
+ [x: string]: import("vue").DirectiveFunction | {
76
+ bind?: import("vue").DirectiveFunction | undefined;
77
+ inserted?: import("vue").DirectiveFunction | undefined;
78
+ update?: import("vue").DirectiveFunction | undefined;
79
+ componentUpdated?: import("vue").DirectiveFunction | undefined;
80
+ unbind?: import("vue").DirectiveFunction | undefined;
81
+ };
82
+ } | undefined;
83
+ components?: {
84
+ [x: string]: import("vue").VueConstructor<import("vue").default> | import("vue").AsyncComponent<any, any, any, any> | {
85
+ name?: string | undefined;
86
+ props?: (string | number | symbol)[] | {
87
+ [x: string]: import("vue/types/options").Prop<any> | {
88
+ type?: import("vue/types/options").Prop<any> | import("vue/types/options").Prop<any>[] | undefined;
89
+ required?: boolean | undefined;
90
+ default?: any;
91
+ validator?: ((value: any) => boolean) | undefined;
92
+ } | import("vue/types/options").Prop<any>[];
93
+ } | undefined;
94
+ model?: {
95
+ prop?: string | undefined;
96
+ event?: string | undefined;
97
+ } | undefined;
98
+ inject?: string[] | {
99
+ [x: string]: import("vue/types/options").InjectKey | {
100
+ from?: import("vue/types/options").InjectKey | undefined;
101
+ default?: any;
102
+ };
103
+ } | undefined;
104
+ functional: boolean;
105
+ render?: ((this: undefined, createElement: import("vue").CreateElement, context: import("vue").RenderContext<any>) => import("vue-demi").VNode | import("vue-demi").VNode[]) | undefined;
106
+ } | {
107
+ data?: any;
108
+ props?: any;
109
+ propsData?: object | undefined;
110
+ computed?: {
111
+ [x: string]: (() => any) | {
112
+ get?: (() => any) | undefined;
113
+ set?: ((value: any) => void) | undefined;
114
+ cache?: boolean | undefined;
115
+ };
116
+ } | undefined;
117
+ methods?: any;
118
+ watch?: {
119
+ [x: string]: import("vue").WatchHandler<any> | {
120
+ handler: import("vue").WatchHandler<any>;
121
+ deep?: boolean | undefined;
122
+ immediate?: boolean | undefined;
123
+ };
124
+ } | undefined;
125
+ el?: string | Element | undefined;
126
+ template?: string | undefined;
127
+ render?: ((createElement: import("vue").CreateElement, hack: import("vue").RenderContext<import("vue/types/options").DefaultProps>) => import("vue-demi").VNode) | undefined;
128
+ renderError?: ((createElement: import("vue").CreateElement, err: Error) => import("vue-demi").VNode) | undefined;
129
+ staticRenderFns?: ((createElement: import("vue").CreateElement) => import("vue-demi").VNode)[] | undefined;
130
+ beforeCreate?: ((this: never) => void) | undefined;
131
+ created?: (() => void) | undefined;
132
+ beforeDestroy?: (() => void) | undefined;
133
+ destroyed?: (() => void) | undefined;
134
+ beforeMount?: (() => void) | undefined;
135
+ mounted?: (() => void) | undefined;
136
+ beforeUpdate?: (() => void) | undefined;
137
+ updated?: (() => void) | undefined;
138
+ activated?: (() => void) | undefined;
139
+ deactivated?: (() => void) | undefined;
140
+ errorCaptured?: ((err: Error, vm: import("vue").default, info: string) => boolean | void) | undefined;
141
+ serverPrefetch?: ((this: never) => Promise<void>) | undefined;
142
+ directives?: {
143
+ [x: string]: import("vue").DirectiveFunction | {
144
+ bind?: import("vue").DirectiveFunction | undefined;
145
+ inserted?: import("vue").DirectiveFunction | undefined;
146
+ update?: import("vue").DirectiveFunction | undefined;
147
+ componentUpdated?: import("vue").DirectiveFunction | undefined;
148
+ unbind?: import("vue").DirectiveFunction | undefined;
149
+ };
150
+ } | undefined;
151
+ components?: {
152
+ [x: string]: import("vue").VueConstructor<import("vue").default> | import("vue").AsyncComponent<any, any, any, any> | {
153
+ name?: string | undefined;
154
+ props?: (string | number | symbol)[] | {
155
+ [x: string]: import("vue/types/options").Prop<any> | {
156
+ type?: import("vue/types/options").Prop<any> | import("vue/types/options").Prop<any>[] | undefined;
157
+ required?: boolean | undefined;
158
+ default?: any;
159
+ validator?: ((value: any) => boolean) | undefined;
160
+ } | import("vue/types/options").Prop<any>[];
161
+ } | undefined;
162
+ model?: {
163
+ prop?: string | undefined;
164
+ event?: string | undefined;
165
+ } | undefined;
166
+ inject?: string[] | {
167
+ [x: string]: import("vue/types/options").InjectKey | {
168
+ from?: import("vue/types/options").InjectKey | undefined;
169
+ default?: any;
170
+ };
171
+ } | undefined;
172
+ functional: boolean;
173
+ render?: ((this: undefined, createElement: import("vue").CreateElement, context: import("vue").RenderContext<any>) => import("vue-demi").VNode | import("vue-demi").VNode[]) | undefined;
174
+ } | any;
175
+ } | undefined;
176
+ transitions?: {
177
+ [x: string]: object;
178
+ } | undefined;
179
+ filters?: {
180
+ [x: string]: Function;
181
+ } | undefined;
182
+ provide?: object | (() => object) | undefined;
183
+ inject?: string[] | {
184
+ [x: string]: import("vue/types/options").InjectKey | {
185
+ from?: import("vue/types/options").InjectKey | undefined;
186
+ default?: any;
187
+ };
188
+ } | undefined;
189
+ model?: {
190
+ prop?: string | undefined;
191
+ event?: string | undefined;
192
+ } | undefined;
193
+ parent?: {
194
+ readonly $el: Element;
195
+ readonly $options: any;
196
+ readonly $parent: any;
197
+ readonly $root: any;
198
+ readonly $children: any[];
199
+ readonly $refs: {
200
+ [x: string]: Element | any | (Element | any)[] | undefined;
201
+ };
202
+ readonly $slots: {
203
+ [x: string]: {
204
+ tag?: string | undefined;
205
+ data?: {
206
+ key?: string | number | undefined;
207
+ slot?: string | undefined;
208
+ scopedSlots?: {
209
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
210
+ } | undefined;
211
+ ref?: string | undefined;
212
+ refInFor?: boolean | undefined;
213
+ tag?: string | undefined;
214
+ staticClass?: string | undefined;
215
+ class?: any;
216
+ staticStyle?: {
217
+ [x: string]: any;
218
+ } | undefined;
219
+ style?: string | object | object[] | undefined;
220
+ props?: {
221
+ [x: string]: any;
222
+ } | undefined;
223
+ attrs?: {
224
+ [x: string]: any;
225
+ } | undefined;
226
+ domProps?: {
227
+ [x: string]: any;
228
+ } | undefined;
229
+ hook?: {
230
+ [x: string]: Function;
231
+ } | undefined;
232
+ on?: {
233
+ [x: string]: Function | Function[];
234
+ } | undefined;
235
+ nativeOn?: {
236
+ [x: string]: Function | Function[];
237
+ } | undefined;
238
+ transition?: object | undefined;
239
+ show?: boolean | undefined;
240
+ inlineTemplate?: {
241
+ render: Function;
242
+ staticRenderFns: Function[];
243
+ } | undefined;
244
+ directives?: {
245
+ name: string;
246
+ value?: any;
247
+ oldValue?: any;
248
+ expression?: string | undefined;
249
+ arg?: string | undefined;
250
+ oldArg?: string | undefined;
251
+ modifiers?: {
252
+ [x: string]: boolean;
253
+ } | undefined;
254
+ }[] | undefined;
255
+ keepAlive?: boolean | undefined;
256
+ } | undefined;
257
+ children?: any[] | undefined;
258
+ text?: string | undefined;
259
+ elm?: Node | undefined;
260
+ ns?: string | undefined;
261
+ context?: any | undefined;
262
+ key?: string | number | boolean | symbol | undefined;
263
+ componentOptions?: {
264
+ Ctor: import("vue").VueConstructor<import("vue").default>;
265
+ propsData?: object | undefined;
266
+ listeners?: object | undefined;
267
+ children?: any[] | undefined;
268
+ tag?: string | undefined;
269
+ } | undefined;
270
+ componentInstance?: any | undefined;
271
+ parent?: any | undefined;
272
+ raw?: boolean | undefined;
273
+ isStatic?: boolean | undefined;
274
+ isRootInsert: boolean;
275
+ isComment: boolean;
276
+ }[] | undefined;
277
+ };
278
+ readonly $scopedSlots: {
279
+ [x: string]: import("vue2/types/vnode").NormalizedScopedSlot | undefined;
280
+ };
281
+ readonly $isServer: boolean;
282
+ readonly $data: {
283
+ [x: string]: any;
284
+ };
285
+ readonly $props: {
286
+ [x: string]: any;
287
+ };
288
+ readonly $ssrContext: any;
289
+ readonly $vnode: {
290
+ tag?: string | undefined;
291
+ data?: {
292
+ key?: string | number | undefined;
293
+ slot?: string | undefined;
294
+ scopedSlots?: {
295
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
296
+ } | undefined;
297
+ ref?: string | undefined;
298
+ refInFor?: boolean | undefined;
299
+ tag?: string | undefined;
300
+ staticClass?: string | undefined;
301
+ class?: any;
302
+ staticStyle?: {
303
+ [x: string]: any;
304
+ } | undefined;
305
+ style?: string | object | object[] | undefined;
306
+ props?: {
307
+ [x: string]: any;
308
+ } | undefined;
309
+ attrs?: {
310
+ [x: string]: any;
311
+ } | undefined;
312
+ domProps?: {
313
+ [x: string]: any;
314
+ } | undefined;
315
+ hook?: {
316
+ [x: string]: Function;
317
+ } | undefined;
318
+ on?: {
319
+ [x: string]: Function | Function[];
320
+ } | undefined;
321
+ nativeOn?: {
322
+ [x: string]: Function | Function[];
323
+ } | undefined;
324
+ transition?: object | undefined;
325
+ show?: boolean | undefined;
326
+ inlineTemplate?: {
327
+ render: Function;
328
+ staticRenderFns: Function[];
329
+ } | undefined;
330
+ directives?: {
331
+ name: string;
332
+ value?: any;
333
+ oldValue?: any;
334
+ expression?: string | undefined;
335
+ arg?: string | undefined;
336
+ oldArg?: string | undefined;
337
+ modifiers?: {
338
+ [x: string]: boolean;
339
+ } | undefined;
340
+ }[] | undefined;
341
+ keepAlive?: boolean | undefined;
342
+ } | undefined;
343
+ children?: any[] | undefined;
344
+ text?: string | undefined;
345
+ elm?: Node | undefined;
346
+ ns?: string | undefined;
347
+ context?: any | undefined;
348
+ key?: string | number | boolean | symbol | undefined;
349
+ componentOptions?: {
350
+ Ctor: import("vue").VueConstructor<import("vue").default>;
351
+ propsData?: object | undefined;
352
+ listeners?: object | undefined;
353
+ children?: any[] | undefined;
354
+ tag?: string | undefined;
355
+ } | undefined;
356
+ componentInstance?: any | undefined;
357
+ parent?: any | undefined;
358
+ raw?: boolean | undefined;
359
+ isStatic?: boolean | undefined;
360
+ isRootInsert: boolean;
361
+ isComment: boolean;
362
+ };
363
+ readonly $attrs: {
364
+ [x: string]: string;
365
+ };
366
+ readonly $listeners: {
367
+ [x: string]: Function | Function[];
368
+ };
369
+ $mount: (elementOrSelector?: string | Element | undefined, hydrating?: boolean | undefined) => import("vue").default;
370
+ $forceUpdate: () => void;
371
+ $destroy: () => void;
372
+ $set: {
373
+ <T>(object: object, key: string | number, value: T): T;
374
+ <T_1>(array: T_1[], key: number, value: T_1): T_1;
375
+ };
376
+ $delete: {
377
+ (object: object, key: string | number): void;
378
+ <T_2>(array: T_2[], key: number): void;
379
+ };
380
+ $watch: {
381
+ (expOrFn: string, callback: (this: import("vue").default, n: any, o: any) => void, options?: import("vue").WatchOptions | undefined): () => void;
382
+ <T_3>(expOrFn: (this: import("vue").default) => T_3, callback: (this: import("vue").default, n: T_3, o: T_3) => void, options?: import("vue").WatchOptions | undefined): () => void;
383
+ };
384
+ $on: (event: string | string[], callback: Function) => import("vue").default;
385
+ $once: (event: string | string[], callback: Function) => import("vue").default;
386
+ $off: (event?: string | string[] | undefined, callback?: Function | undefined) => import("vue").default;
387
+ $emit: (event: string, ...args: any[]) => import("vue").default;
388
+ $nextTick: {
389
+ (callback: (this: import("vue").default) => void): void;
390
+ (): Promise<void>;
391
+ };
392
+ $createElement: import("vue").CreateElement;
393
+ } | undefined;
394
+ mixins?: (import("vue").VueConstructor<import("vue").default> | any)[] | undefined;
395
+ name?: string | undefined;
396
+ extends?: import("vue").VueConstructor<import("vue").default> | any | undefined;
397
+ delimiters?: [string, string] | undefined;
398
+ comments?: boolean | undefined;
399
+ inheritAttrs?: boolean | undefined;
400
+ setup?: import("@vue/composition-api").SetupFunction<import("@vue/composition-api").Data, import("@vue/composition-api").Data, {}> | undefined;
401
+ };
402
+ } | undefined;
403
+ transitions?: {
404
+ [x: string]: object;
405
+ } | undefined;
406
+ filters?: {
407
+ [x: string]: Function;
408
+ } | undefined;
409
+ provide?: object | (() => object) | undefined;
410
+ inject?: string[] | {
411
+ [x: string]: import("vue/types/options").InjectKey | {
412
+ from?: import("vue/types/options").InjectKey | undefined;
413
+ default?: any;
414
+ };
415
+ } | undefined;
416
+ model?: {
417
+ prop?: string | undefined;
418
+ event?: string | undefined;
419
+ } | undefined;
420
+ parent?: {
421
+ readonly $el: Element;
422
+ readonly $options: any;
423
+ readonly $parent: any;
424
+ readonly $root: any;
425
+ readonly $children: any[];
426
+ readonly $refs: {
427
+ [x: string]: Element | any | (Element | any)[] | undefined;
428
+ };
429
+ readonly $slots: {
430
+ [x: string]: {
431
+ tag?: string | undefined;
432
+ data?: {
433
+ key?: string | number | undefined;
434
+ slot?: string | undefined;
435
+ scopedSlots?: {
436
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
437
+ } | undefined;
438
+ ref?: string | undefined;
439
+ refInFor?: boolean | undefined;
440
+ tag?: string | undefined;
441
+ staticClass?: string | undefined;
442
+ class?: any;
443
+ staticStyle?: {
444
+ [x: string]: any;
445
+ } | undefined;
446
+ style?: string | object | object[] | undefined;
447
+ props?: {
448
+ [x: string]: any;
449
+ } | undefined;
450
+ attrs?: {
451
+ [x: string]: any;
452
+ } | undefined;
453
+ domProps?: {
454
+ [x: string]: any;
455
+ } | undefined;
456
+ hook?: {
457
+ [x: string]: Function;
458
+ } | undefined;
459
+ on?: {
460
+ [x: string]: Function | Function[];
461
+ } | undefined;
462
+ nativeOn?: {
463
+ [x: string]: Function | Function[];
464
+ } | undefined;
465
+ transition?: object | undefined;
466
+ show?: boolean | undefined;
467
+ inlineTemplate?: {
468
+ render: Function;
469
+ staticRenderFns: Function[];
470
+ } | undefined;
471
+ directives?: {
472
+ name: string;
473
+ value?: any;
474
+ oldValue?: any;
475
+ expression?: string | undefined;
476
+ arg?: string | undefined;
477
+ oldArg?: string | undefined;
478
+ modifiers?: {
479
+ [x: string]: boolean;
480
+ } | undefined;
481
+ }[] | undefined;
482
+ keepAlive?: boolean | undefined;
483
+ } | undefined;
484
+ children?: any[] | undefined;
485
+ text?: string | undefined;
486
+ elm?: Node | undefined;
487
+ ns?: string | undefined;
488
+ context?: any | undefined;
489
+ key?: string | number | boolean | symbol | undefined;
490
+ componentOptions?: {
491
+ Ctor: import("vue").VueConstructor<import("vue").default>;
492
+ propsData?: object | undefined;
493
+ listeners?: object | undefined;
494
+ children?: any[] | undefined;
495
+ tag?: string | undefined;
496
+ } | undefined;
497
+ componentInstance?: any | undefined;
498
+ parent?: any | undefined;
499
+ raw?: boolean | undefined;
500
+ isStatic?: boolean | undefined;
501
+ isRootInsert: boolean;
502
+ isComment: boolean;
503
+ }[] | undefined;
504
+ };
505
+ readonly $scopedSlots: {
506
+ [x: string]: import("vue2/types/vnode").NormalizedScopedSlot | undefined;
507
+ };
508
+ readonly $isServer: boolean;
509
+ readonly $data: {
510
+ [x: string]: any;
511
+ };
512
+ readonly $props: {
513
+ [x: string]: any;
514
+ };
515
+ readonly $ssrContext: any;
516
+ readonly $vnode: {
517
+ tag?: string | undefined;
518
+ data?: {
519
+ key?: string | number | undefined;
520
+ slot?: string | undefined;
521
+ scopedSlots?: {
522
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
523
+ } | undefined;
524
+ ref?: string | undefined;
525
+ refInFor?: boolean | undefined;
526
+ tag?: string | undefined;
527
+ staticClass?: string | undefined;
528
+ class?: any;
529
+ staticStyle?: {
530
+ [x: string]: any;
531
+ } | undefined;
532
+ style?: string | object | object[] | undefined;
533
+ props?: {
534
+ [x: string]: any;
535
+ } | undefined;
536
+ attrs?: {
537
+ [x: string]: any;
538
+ } | undefined;
539
+ domProps?: {
540
+ [x: string]: any;
541
+ } | undefined;
542
+ hook?: {
543
+ [x: string]: Function;
544
+ } | undefined;
545
+ on?: {
546
+ [x: string]: Function | Function[];
547
+ } | undefined;
548
+ nativeOn?: {
549
+ [x: string]: Function | Function[];
550
+ } | undefined;
551
+ transition?: object | undefined;
552
+ show?: boolean | undefined;
553
+ inlineTemplate?: {
554
+ render: Function;
555
+ staticRenderFns: Function[];
556
+ } | undefined;
557
+ directives?: {
558
+ name: string;
559
+ value?: any;
560
+ oldValue?: any;
561
+ expression?: string | undefined;
562
+ arg?: string | undefined;
563
+ oldArg?: string | undefined;
564
+ modifiers?: {
565
+ [x: string]: boolean;
566
+ } | undefined;
567
+ }[] | undefined;
568
+ keepAlive?: boolean | undefined;
569
+ } | undefined;
570
+ children?: any[] | undefined;
571
+ text?: string | undefined;
572
+ elm?: Node | undefined;
573
+ ns?: string | undefined;
574
+ context?: any | undefined;
575
+ key?: string | number | boolean | symbol | undefined;
576
+ componentOptions?: {
577
+ Ctor: import("vue").VueConstructor<import("vue").default>;
578
+ propsData?: object | undefined;
579
+ listeners?: object | undefined;
580
+ children?: any[] | undefined;
581
+ tag?: string | undefined;
582
+ } | undefined;
583
+ componentInstance?: any | undefined;
584
+ parent?: any | undefined;
585
+ raw?: boolean | undefined;
586
+ isStatic?: boolean | undefined;
587
+ isRootInsert: boolean;
588
+ isComment: boolean;
589
+ };
590
+ readonly $attrs: {
591
+ [x: string]: string;
592
+ };
593
+ readonly $listeners: {
594
+ [x: string]: Function | Function[];
595
+ };
596
+ $mount: (elementOrSelector?: string | Element | undefined, hydrating?: boolean | undefined) => import("vue").default;
597
+ $forceUpdate: () => void;
598
+ $destroy: () => void;
599
+ $set: {
600
+ <T>(object: object, key: string | number, value: T): T;
601
+ <T_1>(array: T_1[], key: number, value: T_1): T_1;
602
+ };
603
+ $delete: {
604
+ (object: object, key: string | number): void;
605
+ <T_2>(array: T_2[], key: number): void;
606
+ };
607
+ $watch: {
608
+ (expOrFn: string, callback: (this: import("vue").default, n: any, o: any) => void, options?: import("vue").WatchOptions | undefined): () => void;
609
+ <T_3>(expOrFn: (this: import("vue").default) => T_3, callback: (this: import("vue").default, n: T_3, o: T_3) => void, options?: import("vue").WatchOptions | undefined): () => void;
610
+ };
611
+ $on: (event: string | string[], callback: Function) => import("vue").default;
612
+ $once: (event: string | string[], callback: Function) => import("vue").default;
613
+ $off: (event?: string | string[] | undefined, callback?: Function | undefined) => import("vue").default;
614
+ $emit: (event: string, ...args: any[]) => import("vue").default;
615
+ $nextTick: {
616
+ (callback: (this: import("vue").default) => void): void;
617
+ (): Promise<void>;
618
+ };
619
+ $createElement: import("vue").CreateElement;
620
+ } | undefined;
621
+ mixins?: (import("vue").VueConstructor<import("vue").default> | any)[] | undefined;
622
+ name?: string | undefined;
623
+ extends?: import("vue").VueConstructor<import("vue").default> | any | undefined;
624
+ delimiters?: [string, string] | undefined;
625
+ comments?: boolean | undefined;
626
+ inheritAttrs?: boolean | undefined;
627
+ setup?: import("@vue/composition-api").SetupFunction<import("@vue/composition-api").Data, import("@vue/composition-api").Data, {}> | undefined;
628
+ };
629
+ readonly $parent: {
630
+ readonly $el: Element;
631
+ readonly $options: any;
632
+ readonly $parent: any;
633
+ readonly $root: any;
634
+ readonly $children: any[];
635
+ readonly $refs: {
636
+ [x: string]: Element | any | (Element | any)[] | undefined;
637
+ };
638
+ readonly $slots: {
639
+ [x: string]: {
640
+ tag?: string | undefined;
641
+ data?: {
642
+ key?: string | number | undefined;
643
+ slot?: string | undefined;
644
+ scopedSlots?: {
645
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
646
+ } | undefined;
647
+ ref?: string | undefined;
648
+ refInFor?: boolean | undefined;
649
+ tag?: string | undefined;
650
+ staticClass?: string | undefined;
651
+ class?: any;
652
+ staticStyle?: {
653
+ [x: string]: any;
654
+ } | undefined;
655
+ style?: string | object | object[] | undefined;
656
+ props?: {
657
+ [x: string]: any;
658
+ } | undefined;
659
+ attrs?: {
660
+ [x: string]: any;
661
+ } | undefined;
662
+ domProps?: {
663
+ [x: string]: any;
664
+ } | undefined;
665
+ hook?: {
666
+ [x: string]: Function;
667
+ } | undefined;
668
+ on?: {
669
+ [x: string]: Function | Function[];
670
+ } | undefined;
671
+ nativeOn?: {
672
+ [x: string]: Function | Function[];
673
+ } | undefined;
674
+ transition?: object | undefined;
675
+ show?: boolean | undefined;
676
+ inlineTemplate?: {
677
+ render: Function;
678
+ staticRenderFns: Function[];
679
+ } | undefined;
680
+ directives?: {
681
+ name: string;
682
+ value?: any;
683
+ oldValue?: any;
684
+ expression?: string | undefined;
685
+ arg?: string | undefined;
686
+ oldArg?: string | undefined;
687
+ modifiers?: {
688
+ [x: string]: boolean;
689
+ } | undefined;
690
+ }[] | undefined;
691
+ keepAlive?: boolean | undefined;
692
+ } | undefined;
693
+ children?: any[] | undefined;
694
+ text?: string | undefined;
695
+ elm?: Node | undefined;
696
+ ns?: string | undefined;
697
+ context?: any | undefined;
698
+ key?: string | number | boolean | symbol | undefined;
699
+ componentOptions?: {
700
+ Ctor: import("vue").VueConstructor<import("vue").default>;
701
+ propsData?: object | undefined;
702
+ listeners?: object | undefined;
703
+ children?: any[] | undefined;
704
+ tag?: string | undefined;
705
+ } | undefined;
706
+ componentInstance?: any | undefined;
707
+ parent?: any | undefined;
708
+ raw?: boolean | undefined;
709
+ isStatic?: boolean | undefined;
710
+ isRootInsert: boolean;
711
+ isComment: boolean;
712
+ }[] | undefined;
713
+ };
714
+ readonly $scopedSlots: {
715
+ [x: string]: import("vue2/types/vnode").NormalizedScopedSlot | undefined;
716
+ };
717
+ readonly $isServer: boolean;
718
+ readonly $data: {
719
+ [x: string]: any;
720
+ };
721
+ readonly $props: {
722
+ [x: string]: any;
723
+ };
724
+ readonly $ssrContext: any;
725
+ readonly $vnode: {
726
+ tag?: string | undefined;
727
+ data?: {
728
+ key?: string | number | undefined;
729
+ slot?: string | undefined;
730
+ scopedSlots?: {
731
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
732
+ } | undefined;
733
+ ref?: string | undefined;
734
+ refInFor?: boolean | undefined;
735
+ tag?: string | undefined;
736
+ staticClass?: string | undefined;
737
+ class?: any;
738
+ staticStyle?: {
739
+ [x: string]: any;
740
+ } | undefined;
741
+ style?: string | object | object[] | undefined;
742
+ props?: {
743
+ [x: string]: any;
744
+ } | undefined;
745
+ attrs?: {
746
+ [x: string]: any;
747
+ } | undefined;
748
+ domProps?: {
749
+ [x: string]: any;
750
+ } | undefined;
751
+ hook?: {
752
+ [x: string]: Function;
753
+ } | undefined;
754
+ on?: {
755
+ [x: string]: Function | Function[];
756
+ } | undefined;
757
+ nativeOn?: {
758
+ [x: string]: Function | Function[];
759
+ } | undefined;
760
+ transition?: object | undefined;
761
+ show?: boolean | undefined;
762
+ inlineTemplate?: {
763
+ render: Function;
764
+ staticRenderFns: Function[];
765
+ } | undefined;
766
+ directives?: {
767
+ name: string;
768
+ value?: any;
769
+ oldValue?: any;
770
+ expression?: string | undefined;
771
+ arg?: string | undefined;
772
+ oldArg?: string | undefined;
773
+ modifiers?: {
774
+ [x: string]: boolean;
775
+ } | undefined;
776
+ }[] | undefined;
777
+ keepAlive?: boolean | undefined;
778
+ } | undefined;
779
+ children?: any[] | undefined;
780
+ text?: string | undefined;
781
+ elm?: Node | undefined;
782
+ ns?: string | undefined;
783
+ context?: any | undefined;
784
+ key?: string | number | boolean | symbol | undefined;
785
+ componentOptions?: {
786
+ Ctor: import("vue").VueConstructor<import("vue").default>;
787
+ propsData?: object | undefined;
788
+ listeners?: object | undefined;
789
+ children?: any[] | undefined;
790
+ tag?: string | undefined;
791
+ } | undefined;
792
+ componentInstance?: any | undefined;
793
+ parent?: any | undefined;
794
+ raw?: boolean | undefined;
795
+ isStatic?: boolean | undefined;
796
+ isRootInsert: boolean;
797
+ isComment: boolean;
798
+ };
799
+ readonly $attrs: {
800
+ [x: string]: string;
801
+ };
802
+ readonly $listeners: {
803
+ [x: string]: Function | Function[];
804
+ };
805
+ $mount: (elementOrSelector?: string | Element | undefined, hydrating?: boolean | undefined) => import("vue").default;
806
+ $forceUpdate: () => void;
807
+ $destroy: () => void;
808
+ $set: {
809
+ <T>(object: object, key: string | number, value: T): T;
810
+ <T_1>(array: T_1[], key: number, value: T_1): T_1;
811
+ };
812
+ $delete: {
813
+ (object: object, key: string | number): void;
814
+ <T_2>(array: T_2[], key: number): void;
815
+ };
816
+ $watch: {
817
+ (expOrFn: string, callback: (this: import("vue").default, n: any, o: any) => void, options?: import("vue").WatchOptions | undefined): () => void;
818
+ <T_3>(expOrFn: (this: import("vue").default) => T_3, callback: (this: import("vue").default, n: T_3, o: T_3) => void, options?: import("vue").WatchOptions | undefined): () => void;
819
+ };
820
+ $on: (event: string | string[], callback: Function) => import("vue").default;
821
+ $once: (event: string | string[], callback: Function) => import("vue").default;
822
+ $off: (event?: string | string[] | undefined, callback?: Function | undefined) => import("vue").default;
823
+ $emit: (event: string, ...args: any[]) => import("vue").default;
824
+ $nextTick: {
825
+ (callback: (this: import("vue").default) => void): void;
826
+ (): Promise<void>;
827
+ };
828
+ $createElement: import("vue").CreateElement;
829
+ };
830
+ readonly $root: {
831
+ readonly $el: Element;
832
+ readonly $options: any;
833
+ readonly $parent: any;
834
+ readonly $root: any;
835
+ readonly $children: any[];
836
+ readonly $refs: {
837
+ [x: string]: Element | any | (Element | any)[] | undefined;
838
+ };
839
+ readonly $slots: {
840
+ [x: string]: {
841
+ tag?: string | undefined;
842
+ data?: {
843
+ key?: string | number | undefined;
844
+ slot?: string | undefined;
845
+ scopedSlots?: {
846
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
847
+ } | undefined;
848
+ ref?: string | undefined;
849
+ refInFor?: boolean | undefined;
850
+ tag?: string | undefined;
851
+ staticClass?: string | undefined;
852
+ class?: any;
853
+ staticStyle?: {
854
+ [x: string]: any;
855
+ } | undefined;
856
+ style?: string | object | object[] | undefined;
857
+ props?: {
858
+ [x: string]: any;
859
+ } | undefined;
860
+ attrs?: {
861
+ [x: string]: any;
862
+ } | undefined;
863
+ domProps?: {
864
+ [x: string]: any;
865
+ } | undefined;
866
+ hook?: {
867
+ [x: string]: Function;
868
+ } | undefined;
869
+ on?: {
870
+ [x: string]: Function | Function[];
871
+ } | undefined;
872
+ nativeOn?: {
873
+ [x: string]: Function | Function[];
874
+ } | undefined;
875
+ transition?: object | undefined;
876
+ show?: boolean | undefined;
877
+ inlineTemplate?: {
878
+ render: Function;
879
+ staticRenderFns: Function[];
880
+ } | undefined;
881
+ directives?: {
882
+ name: string;
883
+ value?: any;
884
+ oldValue?: any;
885
+ expression?: string | undefined;
886
+ arg?: string | undefined;
887
+ oldArg?: string | undefined;
888
+ modifiers?: {
889
+ [x: string]: boolean;
890
+ } | undefined;
891
+ }[] | undefined;
892
+ keepAlive?: boolean | undefined;
893
+ } | undefined;
894
+ children?: any[] | undefined;
895
+ text?: string | undefined;
896
+ elm?: Node | undefined;
897
+ ns?: string | undefined;
898
+ context?: any | undefined;
899
+ key?: string | number | boolean | symbol | undefined;
900
+ componentOptions?: {
901
+ Ctor: import("vue").VueConstructor<import("vue").default>;
902
+ propsData?: object | undefined;
903
+ listeners?: object | undefined;
904
+ children?: any[] | undefined;
905
+ tag?: string | undefined;
906
+ } | undefined;
907
+ componentInstance?: any | undefined;
908
+ parent?: any | undefined;
909
+ raw?: boolean | undefined;
910
+ isStatic?: boolean | undefined;
911
+ isRootInsert: boolean;
912
+ isComment: boolean;
913
+ }[] | undefined;
914
+ };
915
+ readonly $scopedSlots: {
916
+ [x: string]: import("vue2/types/vnode").NormalizedScopedSlot | undefined;
917
+ };
918
+ readonly $isServer: boolean;
919
+ readonly $data: {
920
+ [x: string]: any;
921
+ };
922
+ readonly $props: {
923
+ [x: string]: any;
924
+ };
925
+ readonly $ssrContext: any;
926
+ readonly $vnode: {
927
+ tag?: string | undefined;
928
+ data?: {
929
+ key?: string | number | undefined;
930
+ slot?: string | undefined;
931
+ scopedSlots?: {
932
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
933
+ } | undefined;
934
+ ref?: string | undefined;
935
+ refInFor?: boolean | undefined;
936
+ tag?: string | undefined;
937
+ staticClass?: string | undefined;
938
+ class?: any;
939
+ staticStyle?: {
940
+ [x: string]: any;
941
+ } | undefined;
942
+ style?: string | object | object[] | undefined;
943
+ props?: {
944
+ [x: string]: any;
945
+ } | undefined;
946
+ attrs?: {
947
+ [x: string]: any;
948
+ } | undefined;
949
+ domProps?: {
950
+ [x: string]: any;
951
+ } | undefined;
952
+ hook?: {
953
+ [x: string]: Function;
954
+ } | undefined;
955
+ on?: {
956
+ [x: string]: Function | Function[];
957
+ } | undefined;
958
+ nativeOn?: {
959
+ [x: string]: Function | Function[];
960
+ } | undefined;
961
+ transition?: object | undefined;
962
+ show?: boolean | undefined;
963
+ inlineTemplate?: {
964
+ render: Function;
965
+ staticRenderFns: Function[];
966
+ } | undefined;
967
+ directives?: {
968
+ name: string;
969
+ value?: any;
970
+ oldValue?: any;
971
+ expression?: string | undefined;
972
+ arg?: string | undefined;
973
+ oldArg?: string | undefined;
974
+ modifiers?: {
975
+ [x: string]: boolean;
976
+ } | undefined;
977
+ }[] | undefined;
978
+ keepAlive?: boolean | undefined;
979
+ } | undefined;
980
+ children?: any[] | undefined;
981
+ text?: string | undefined;
982
+ elm?: Node | undefined;
983
+ ns?: string | undefined;
984
+ context?: any | undefined;
985
+ key?: string | number | boolean | symbol | undefined;
986
+ componentOptions?: {
987
+ Ctor: import("vue").VueConstructor<import("vue").default>;
988
+ propsData?: object | undefined;
989
+ listeners?: object | undefined;
990
+ children?: any[] | undefined;
991
+ tag?: string | undefined;
992
+ } | undefined;
993
+ componentInstance?: any | undefined;
994
+ parent?: any | undefined;
995
+ raw?: boolean | undefined;
996
+ isStatic?: boolean | undefined;
997
+ isRootInsert: boolean;
998
+ isComment: boolean;
999
+ };
1000
+ readonly $attrs: {
1001
+ [x: string]: string;
1002
+ };
1003
+ readonly $listeners: {
1004
+ [x: string]: Function | Function[];
1005
+ };
1006
+ $mount: (elementOrSelector?: string | Element | undefined, hydrating?: boolean | undefined) => import("vue").default;
1007
+ $forceUpdate: () => void;
1008
+ $destroy: () => void;
1009
+ $set: {
1010
+ <T>(object: object, key: string | number, value: T): T;
1011
+ <T_1>(array: T_1[], key: number, value: T_1): T_1;
1012
+ };
1013
+ $delete: {
1014
+ (object: object, key: string | number): void;
1015
+ <T_2>(array: T_2[], key: number): void;
1016
+ };
1017
+ $watch: {
1018
+ (expOrFn: string, callback: (this: import("vue").default, n: any, o: any) => void, options?: import("vue").WatchOptions | undefined): () => void;
1019
+ <T_3>(expOrFn: (this: import("vue").default) => T_3, callback: (this: import("vue").default, n: T_3, o: T_3) => void, options?: import("vue").WatchOptions | undefined): () => void;
1020
+ };
1021
+ $on: (event: string | string[], callback: Function) => import("vue").default;
1022
+ $once: (event: string | string[], callback: Function) => import("vue").default;
1023
+ $off: (event?: string | string[] | undefined, callback?: Function | undefined) => import("vue").default;
1024
+ $emit: (event: string, ...args: any[]) => import("vue").default;
1025
+ $nextTick: {
1026
+ (callback: (this: import("vue").default) => void): void;
1027
+ (): Promise<void>;
1028
+ };
1029
+ $createElement: import("vue").CreateElement;
1030
+ };
1031
+ readonly $children: {
1032
+ readonly $el: Element;
1033
+ readonly $options: any;
1034
+ readonly $parent: any;
1035
+ readonly $root: any;
1036
+ readonly $children: any[];
1037
+ readonly $refs: {
1038
+ [x: string]: Element | any | (Element | any)[] | undefined;
1039
+ };
1040
+ readonly $slots: {
1041
+ [x: string]: {
1042
+ tag?: string | undefined;
1043
+ data?: {
1044
+ key?: string | number | undefined;
1045
+ slot?: string | undefined;
1046
+ scopedSlots?: {
1047
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
1048
+ } | undefined;
1049
+ ref?: string | undefined;
1050
+ refInFor?: boolean | undefined;
1051
+ tag?: string | undefined;
1052
+ staticClass?: string | undefined;
1053
+ class?: any;
1054
+ staticStyle?: {
1055
+ [x: string]: any;
1056
+ } | undefined;
1057
+ style?: string | object | object[] | undefined;
1058
+ props?: {
1059
+ [x: string]: any;
1060
+ } | undefined;
1061
+ attrs?: {
1062
+ [x: string]: any;
1063
+ } | undefined;
1064
+ domProps?: {
1065
+ [x: string]: any;
1066
+ } | undefined;
1067
+ hook?: {
1068
+ [x: string]: Function;
1069
+ } | undefined;
1070
+ on?: {
1071
+ [x: string]: Function | Function[];
1072
+ } | undefined;
1073
+ nativeOn?: {
1074
+ [x: string]: Function | Function[];
1075
+ } | undefined;
1076
+ transition?: object | undefined;
1077
+ show?: boolean | undefined;
1078
+ inlineTemplate?: {
1079
+ render: Function;
1080
+ staticRenderFns: Function[];
1081
+ } | undefined;
1082
+ directives?: {
1083
+ name: string;
1084
+ value?: any;
1085
+ oldValue?: any;
1086
+ expression?: string | undefined;
1087
+ arg?: string | undefined;
1088
+ oldArg?: string | undefined;
1089
+ modifiers?: {
1090
+ [x: string]: boolean;
1091
+ } | undefined;
1092
+ }[] | undefined;
1093
+ keepAlive?: boolean | undefined;
1094
+ } | undefined;
1095
+ children?: any[] | undefined;
1096
+ text?: string | undefined;
1097
+ elm?: Node | undefined;
1098
+ ns?: string | undefined;
1099
+ context?: any | undefined;
1100
+ key?: string | number | boolean | symbol | undefined;
1101
+ componentOptions?: {
1102
+ Ctor: import("vue").VueConstructor<import("vue").default>;
1103
+ propsData?: object | undefined;
1104
+ listeners?: object | undefined;
1105
+ children?: any[] | undefined;
1106
+ tag?: string | undefined;
1107
+ } | undefined;
1108
+ componentInstance?: any | undefined;
1109
+ parent?: any | undefined;
1110
+ raw?: boolean | undefined;
1111
+ isStatic?: boolean | undefined;
1112
+ isRootInsert: boolean;
1113
+ isComment: boolean;
1114
+ }[] | undefined;
1115
+ };
1116
+ readonly $scopedSlots: {
1117
+ [x: string]: import("vue2/types/vnode").NormalizedScopedSlot | undefined;
1118
+ };
1119
+ readonly $isServer: boolean;
1120
+ readonly $data: {
1121
+ [x: string]: any;
1122
+ };
1123
+ readonly $props: {
1124
+ [x: string]: any;
1125
+ };
1126
+ readonly $ssrContext: any;
1127
+ readonly $vnode: {
1128
+ tag?: string | undefined;
1129
+ data?: {
1130
+ key?: string | number | undefined;
1131
+ slot?: string | undefined;
1132
+ scopedSlots?: {
1133
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
1134
+ } | undefined;
1135
+ ref?: string | undefined;
1136
+ refInFor?: boolean | undefined;
1137
+ tag?: string | undefined;
1138
+ staticClass?: string | undefined;
1139
+ class?: any;
1140
+ staticStyle?: {
1141
+ [x: string]: any;
1142
+ } | undefined;
1143
+ style?: string | object | object[] | undefined;
1144
+ props?: {
1145
+ [x: string]: any;
1146
+ } | undefined;
1147
+ attrs?: {
1148
+ [x: string]: any;
1149
+ } | undefined;
1150
+ domProps?: {
1151
+ [x: string]: any;
1152
+ } | undefined;
1153
+ hook?: {
1154
+ [x: string]: Function;
1155
+ } | undefined;
1156
+ on?: {
1157
+ [x: string]: Function | Function[];
1158
+ } | undefined;
1159
+ nativeOn?: {
1160
+ [x: string]: Function | Function[];
1161
+ } | undefined;
1162
+ transition?: object | undefined;
1163
+ show?: boolean | undefined;
1164
+ inlineTemplate?: {
1165
+ render: Function;
1166
+ staticRenderFns: Function[];
1167
+ } | undefined;
1168
+ directives?: {
1169
+ name: string;
1170
+ value?: any;
1171
+ oldValue?: any;
1172
+ expression?: string | undefined;
1173
+ arg?: string | undefined;
1174
+ oldArg?: string | undefined;
1175
+ modifiers?: {
1176
+ [x: string]: boolean;
1177
+ } | undefined;
1178
+ }[] | undefined;
1179
+ keepAlive?: boolean | undefined;
1180
+ } | undefined;
1181
+ children?: any[] | undefined;
1182
+ text?: string | undefined;
1183
+ elm?: Node | undefined;
1184
+ ns?: string | undefined;
1185
+ context?: any | undefined;
1186
+ key?: string | number | boolean | symbol | undefined;
1187
+ componentOptions?: {
1188
+ Ctor: import("vue").VueConstructor<import("vue").default>;
1189
+ propsData?: object | undefined;
1190
+ listeners?: object | undefined;
1191
+ children?: any[] | undefined;
1192
+ tag?: string | undefined;
1193
+ } | undefined;
1194
+ componentInstance?: any | undefined;
1195
+ parent?: any | undefined;
1196
+ raw?: boolean | undefined;
1197
+ isStatic?: boolean | undefined;
1198
+ isRootInsert: boolean;
1199
+ isComment: boolean;
1200
+ };
1201
+ readonly $attrs: {
1202
+ [x: string]: string;
1203
+ };
1204
+ readonly $listeners: {
1205
+ [x: string]: Function | Function[];
1206
+ };
1207
+ $mount: (elementOrSelector?: string | Element | undefined, hydrating?: boolean | undefined) => import("vue").default;
1208
+ $forceUpdate: () => void;
1209
+ $destroy: () => void;
1210
+ $set: {
1211
+ <T>(object: object, key: string | number, value: T): T;
1212
+ <T_1>(array: T_1[], key: number, value: T_1): T_1;
1213
+ };
1214
+ $delete: {
1215
+ (object: object, key: string | number): void;
1216
+ <T_2>(array: T_2[], key: number): void;
1217
+ };
1218
+ $watch: {
1219
+ (expOrFn: string, callback: (this: import("vue").default, n: any, o: any) => void, options?: import("vue").WatchOptions | undefined): () => void;
1220
+ <T_3>(expOrFn: (this: import("vue").default) => T_3, callback: (this: import("vue").default, n: T_3, o: T_3) => void, options?: import("vue").WatchOptions | undefined): () => void;
1221
+ };
1222
+ $on: (event: string | string[], callback: Function) => import("vue").default;
1223
+ $once: (event: string | string[], callback: Function) => import("vue").default;
1224
+ $off: (event?: string | string[] | undefined, callback?: Function | undefined) => import("vue").default;
1225
+ $emit: (event: string, ...args: any[]) => import("vue").default;
1226
+ $nextTick: {
1227
+ (callback: (this: import("vue").default) => void): void;
1228
+ (): Promise<void>;
1229
+ };
1230
+ $createElement: import("vue").CreateElement;
1231
+ }[];
1232
+ readonly $refs: {
1233
+ [x: string]: Element | any | (Element | any)[] | undefined;
1234
+ };
1235
+ readonly $slots: {
1236
+ [x: string]: {
1237
+ tag?: string | undefined;
1238
+ data?: {
1239
+ key?: string | number | undefined;
1240
+ slot?: string | undefined;
1241
+ scopedSlots?: {
1242
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
1243
+ } | undefined;
1244
+ ref?: string | undefined;
1245
+ refInFor?: boolean | undefined;
1246
+ tag?: string | undefined;
1247
+ staticClass?: string | undefined;
1248
+ class?: any;
1249
+ staticStyle?: {
1250
+ [x: string]: any;
1251
+ } | undefined;
1252
+ style?: string | object | object[] | undefined;
1253
+ props?: {
1254
+ [x: string]: any;
1255
+ } | undefined;
1256
+ attrs?: {
1257
+ [x: string]: any;
1258
+ } | undefined;
1259
+ domProps?: {
1260
+ [x: string]: any;
1261
+ } | undefined;
1262
+ hook?: {
1263
+ [x: string]: Function;
1264
+ } | undefined;
1265
+ on?: {
1266
+ [x: string]: Function | Function[];
1267
+ } | undefined;
1268
+ nativeOn?: {
1269
+ [x: string]: Function | Function[];
1270
+ } | undefined;
1271
+ transition?: object | undefined;
1272
+ show?: boolean | undefined;
1273
+ inlineTemplate?: {
1274
+ render: Function;
1275
+ staticRenderFns: Function[];
1276
+ } | undefined;
1277
+ directives?: {
1278
+ name: string;
1279
+ value?: any;
1280
+ oldValue?: any;
1281
+ expression?: string | undefined;
1282
+ arg?: string | undefined;
1283
+ oldArg?: string | undefined;
1284
+ modifiers?: {
1285
+ [x: string]: boolean;
1286
+ } | undefined;
1287
+ }[] | undefined;
1288
+ keepAlive?: boolean | undefined;
1289
+ } | undefined;
1290
+ children?: any[] | undefined;
1291
+ text?: string | undefined;
1292
+ elm?: Node | undefined;
1293
+ ns?: string | undefined;
1294
+ context?: any | undefined;
1295
+ key?: string | number | boolean | symbol | undefined;
1296
+ componentOptions?: {
1297
+ Ctor: import("vue").VueConstructor<import("vue").default>;
1298
+ propsData?: object | undefined;
1299
+ listeners?: object | undefined;
1300
+ children?: any[] | undefined;
1301
+ tag?: string | undefined;
1302
+ } | undefined;
1303
+ componentInstance?: any | undefined;
1304
+ parent?: any | undefined;
1305
+ raw?: boolean | undefined;
1306
+ isStatic?: boolean | undefined;
1307
+ isRootInsert: boolean;
1308
+ isComment: boolean;
1309
+ }[] | undefined;
1310
+ };
1311
+ readonly $scopedSlots: {
1312
+ [x: string]: import("vue2/types/vnode").NormalizedScopedSlot | undefined;
1313
+ };
1314
+ readonly $isServer: boolean;
1315
+ readonly $ssrContext: any;
1316
+ readonly $vnode: {
1317
+ tag?: string | undefined;
1318
+ data?: {
1319
+ key?: string | number | undefined;
1320
+ slot?: string | undefined;
1321
+ scopedSlots?: {
1322
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
1323
+ } | undefined;
1324
+ ref?: string | undefined;
1325
+ refInFor?: boolean | undefined;
1326
+ tag?: string | undefined;
1327
+ staticClass?: string | undefined;
1328
+ class?: any;
1329
+ staticStyle?: {
1330
+ [x: string]: any;
1331
+ } | undefined;
1332
+ style?: string | object | object[] | undefined;
1333
+ props?: {
1334
+ [x: string]: any;
1335
+ } | undefined;
1336
+ attrs?: {
1337
+ [x: string]: any;
1338
+ } | undefined;
1339
+ domProps?: {
1340
+ [x: string]: any;
1341
+ } | undefined;
1342
+ hook?: {
1343
+ [x: string]: Function;
1344
+ } | undefined;
1345
+ on?: {
1346
+ [x: string]: Function | Function[];
1347
+ } | undefined;
1348
+ nativeOn?: {
1349
+ [x: string]: Function | Function[];
1350
+ } | undefined;
1351
+ transition?: object | undefined;
1352
+ show?: boolean | undefined;
1353
+ inlineTemplate?: {
1354
+ render: Function;
1355
+ staticRenderFns: Function[];
1356
+ } | undefined;
1357
+ directives?: {
1358
+ name: string;
1359
+ value?: any;
1360
+ oldValue?: any;
1361
+ expression?: string | undefined;
1362
+ arg?: string | undefined;
1363
+ oldArg?: string | undefined;
1364
+ modifiers?: {
1365
+ [x: string]: boolean;
1366
+ } | undefined;
1367
+ }[] | undefined;
1368
+ keepAlive?: boolean | undefined;
1369
+ } | undefined;
1370
+ children?: any[] | undefined;
1371
+ text?: string | undefined;
1372
+ elm?: Node | undefined;
1373
+ ns?: string | undefined;
1374
+ context?: any | undefined;
1375
+ key?: string | number | boolean | symbol | undefined;
1376
+ componentOptions?: {
1377
+ Ctor: import("vue").VueConstructor<import("vue").default>;
1378
+ propsData?: object | undefined;
1379
+ listeners?: object | undefined;
1380
+ children?: any[] | undefined;
1381
+ tag?: string | undefined;
1382
+ } | undefined;
1383
+ componentInstance?: any | undefined;
1384
+ parent?: any | undefined;
1385
+ raw?: boolean | undefined;
1386
+ isStatic?: boolean | undefined;
1387
+ isRootInsert: boolean;
1388
+ isComment: boolean;
1389
+ };
1390
+ readonly $listeners: {
1391
+ [x: string]: Function | Function[];
1392
+ };
1393
+ $mount: (elementOrSelector?: string | Element | undefined, hydrating?: boolean | undefined) => import("vue").default;
1394
+ $forceUpdate: () => void;
1395
+ $destroy: () => void;
1396
+ $set: {
1397
+ <T>(object: object, key: string | number, value: T): T;
1398
+ <T_1>(array: T_1[], key: number, value: T_1): T_1;
1399
+ };
1400
+ $delete: {
1401
+ (object: object, key: string | number): void;
1402
+ <T_2>(array: T_2[], key: number): void;
1403
+ };
1404
+ $watch: {
1405
+ (expOrFn: string, callback: (this: import("vue").default, n: any, o: any) => void, options?: import("vue").WatchOptions | undefined): () => void;
1406
+ <T_3>(expOrFn: (this: import("vue").default) => T_3, callback: (this: import("vue").default, n: T_3, o: T_3) => void, options?: import("vue").WatchOptions | undefined): () => void;
1407
+ };
1408
+ $on: (event: string | string[], callback: Function) => import("vue").default;
1409
+ $once: (event: string | string[], callback: Function) => import("vue").default;
1410
+ $off: (event?: string | string[] | undefined, callback?: Function | undefined) => import("vue").default;
1411
+ $nextTick: {
1412
+ (callback: (this: import("vue").default) => void): void;
1413
+ (): Promise<void>;
1414
+ };
1415
+ $createElement: import("vue").CreateElement;
1416
+ }[]>;
10
1417
  setIsOpen: (value?: boolean | undefined) => boolean;
11
1418
  nodeRoot: import("@vue/composition-api").Ref<HTMLElement | undefined>;
12
1419
  isDrag: import("@vue/composition-api").Ref<boolean>;
@@ -20,6 +1427,7 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
20
1427
  handleDragOver: (e: DragEvent) => void;
21
1428
  handleDragLeave: (e: DragEvent) => void;
22
1429
  hasCollapseTrigger: import("@vue/composition-api").ComputedRef<boolean>;
1430
+ hasDragoverChildren: import("@vue/composition-api").ComputedRef<boolean>;
23
1431
  isDragOver: import("@vue/composition-api").Ref<boolean>;
24
1432
  }> & import("@vue/composition-api").Data, {}, {}, {
25
1433
  node: {
@@ -87,6 +1495,1413 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
87
1495
  rootStyles: import("@vue/composition-api").ComputedRef<string[]>;
88
1496
  nodeStyles: import("@vue/composition-api").ComputedRef<string[]>;
89
1497
  dragIndicatorStyles: import("@vue/composition-api").ComputedRef<string[]>;
1498
+ childrenTreeNodes: import("@vue/composition-api").Ref<{
1499
+ [x: string]: never;
1500
+ $data: unknown;
1501
+ $props: {
1502
+ [x: number]: string | undefined;
1503
+ } | {};
1504
+ $attrs: {
1505
+ [x: string]: string;
1506
+ };
1507
+ $emit: ((event: string, ...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{} & {}, import("@vue/composition-api").ShallowUnwrapRef<unknown>, unknown, import("@vue/composition-api").ComputedOptions, import("@vue/composition-api").MethodOptions, unknown, unknown, {
1508
+ [x: string]: ((...args: any[]) => any) | null;
1509
+ } | string[], {} & {}, {
1510
+ [x: number]: string;
1511
+ } | {}, true>) | ((event: string, ...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{} & {}, import("@vue/composition-api").ShallowUnwrapRef<unknown>, unknown, import("@vue/composition-api").ComputedOptions, import("@vue/composition-api").MethodOptions, unknown, unknown, {
1512
+ [x: string]: ((...args: any[]) => any) | null;
1513
+ } | string[], {} & {}, {
1514
+ [x: number]: string;
1515
+ } | {}, true>);
1516
+ readonly $el: Element;
1517
+ readonly $options: {
1518
+ data?: import("vue/types/options").DefaultData<import("vue").default> | undefined;
1519
+ props?: string[] | {
1520
+ [x: string]: import("vue/types/options").Prop<any> | {
1521
+ type?: import("vue/types/options").Prop<any> | import("vue/types/options").Prop<any>[] | undefined;
1522
+ required?: boolean | undefined;
1523
+ default?: any;
1524
+ validator?: ((value: any) => boolean) | undefined;
1525
+ } | import("vue/types/options").Prop<any>[];
1526
+ } | undefined;
1527
+ propsData?: object | undefined;
1528
+ computed?: {
1529
+ [x: string]: (() => any) | {
1530
+ get?: (() => any) | undefined;
1531
+ set?: ((value: any) => void) | undefined;
1532
+ cache?: boolean | undefined;
1533
+ };
1534
+ } | undefined;
1535
+ methods?: {
1536
+ [x: string]: (this: import("vue").default, ...args: any[]) => any;
1537
+ } | undefined;
1538
+ watch?: {
1539
+ [x: string]: import("vue").WatchHandler<any> | {
1540
+ handler: import("vue").WatchHandler<any>;
1541
+ deep?: boolean | undefined;
1542
+ immediate?: boolean | undefined;
1543
+ };
1544
+ } | undefined;
1545
+ el?: string | Element | undefined;
1546
+ template?: string | undefined;
1547
+ render?: ((createElement: import("vue").CreateElement, hack: import("vue").RenderContext<import("vue/types/options").DefaultProps>) => import("vue-demi").VNode) | undefined;
1548
+ renderError?: ((createElement: import("vue").CreateElement, err: Error) => import("vue-demi").VNode) | undefined;
1549
+ staticRenderFns?: ((createElement: import("vue").CreateElement) => import("vue-demi").VNode)[] | undefined;
1550
+ beforeCreate?: ((this: import("vue").default) => void) | undefined;
1551
+ created?: (() => void) | undefined;
1552
+ beforeDestroy?: (() => void) | undefined;
1553
+ destroyed?: (() => void) | undefined;
1554
+ beforeMount?: (() => void) | undefined;
1555
+ mounted?: (() => void) | undefined;
1556
+ beforeUpdate?: (() => void) | undefined;
1557
+ updated?: (() => void) | undefined;
1558
+ activated?: (() => void) | undefined;
1559
+ deactivated?: (() => void) | undefined;
1560
+ errorCaptured?: ((err: Error, vm: import("vue").default, info: string) => boolean | void) | undefined;
1561
+ serverPrefetch?: ((this: import("vue").default) => Promise<void>) | undefined;
1562
+ directives?: {
1563
+ [x: string]: import("vue").DirectiveFunction | {
1564
+ bind?: import("vue").DirectiveFunction | undefined;
1565
+ inserted?: import("vue").DirectiveFunction | undefined;
1566
+ update?: import("vue").DirectiveFunction | undefined;
1567
+ componentUpdated?: import("vue").DirectiveFunction | undefined;
1568
+ unbind?: import("vue").DirectiveFunction | undefined;
1569
+ };
1570
+ } | undefined;
1571
+ components?: {
1572
+ [x: string]: import("vue").VueConstructor<import("vue").default> | import("vue").AsyncComponent<any, any, any, any> | {
1573
+ name?: string | undefined;
1574
+ props?: (string | number | symbol)[] | {
1575
+ [x: string]: import("vue/types/options").Prop<any> | {
1576
+ type?: import("vue/types/options").Prop<any> | import("vue/types/options").Prop<any>[] | undefined;
1577
+ required?: boolean | undefined;
1578
+ default?: any;
1579
+ validator?: ((value: any) => boolean) | undefined;
1580
+ } | import("vue/types/options").Prop<any>[];
1581
+ } | undefined;
1582
+ model?: {
1583
+ prop?: string | undefined;
1584
+ event?: string | undefined;
1585
+ } | undefined;
1586
+ inject?: string[] | {
1587
+ [x: string]: import("vue/types/options").InjectKey | {
1588
+ from?: import("vue/types/options").InjectKey | undefined;
1589
+ default?: any;
1590
+ };
1591
+ } | undefined;
1592
+ functional: boolean;
1593
+ render?: ((this: undefined, createElement: import("vue").CreateElement, context: import("vue").RenderContext<any>) => import("vue-demi").VNode | import("vue-demi").VNode[]) | undefined;
1594
+ } | {
1595
+ data?: any;
1596
+ props?: any;
1597
+ propsData?: object | undefined;
1598
+ computed?: {
1599
+ [x: string]: (() => any) | {
1600
+ get?: (() => any) | undefined;
1601
+ set?: ((value: any) => void) | undefined;
1602
+ cache?: boolean | undefined;
1603
+ };
1604
+ } | undefined;
1605
+ methods?: any;
1606
+ watch?: {
1607
+ [x: string]: import("vue").WatchHandler<any> | {
1608
+ handler: import("vue").WatchHandler<any>;
1609
+ deep?: boolean | undefined;
1610
+ immediate?: boolean | undefined;
1611
+ };
1612
+ } | undefined;
1613
+ el?: string | Element | undefined;
1614
+ template?: string | undefined;
1615
+ render?: ((createElement: import("vue").CreateElement, hack: import("vue").RenderContext<import("vue/types/options").DefaultProps>) => import("vue-demi").VNode) | undefined;
1616
+ renderError?: ((createElement: import("vue").CreateElement, err: Error) => import("vue-demi").VNode) | undefined;
1617
+ staticRenderFns?: ((createElement: import("vue").CreateElement) => import("vue-demi").VNode)[] | undefined;
1618
+ beforeCreate?: ((this: never) => void) | undefined;
1619
+ created?: (() => void) | undefined;
1620
+ beforeDestroy?: (() => void) | undefined;
1621
+ destroyed?: (() => void) | undefined;
1622
+ beforeMount?: (() => void) | undefined;
1623
+ mounted?: (() => void) | undefined;
1624
+ beforeUpdate?: (() => void) | undefined;
1625
+ updated?: (() => void) | undefined;
1626
+ activated?: (() => void) | undefined;
1627
+ deactivated?: (() => void) | undefined;
1628
+ errorCaptured?: ((err: Error, vm: import("vue").default, info: string) => boolean | void) | undefined;
1629
+ serverPrefetch?: ((this: never) => Promise<void>) | undefined;
1630
+ directives?: {
1631
+ [x: string]: import("vue").DirectiveFunction | {
1632
+ bind?: import("vue").DirectiveFunction | undefined;
1633
+ inserted?: import("vue").DirectiveFunction | undefined;
1634
+ update?: import("vue").DirectiveFunction | undefined;
1635
+ componentUpdated?: import("vue").DirectiveFunction | undefined;
1636
+ unbind?: import("vue").DirectiveFunction | undefined;
1637
+ };
1638
+ } | undefined;
1639
+ components?: {
1640
+ [x: string]: import("vue").VueConstructor<import("vue").default> | import("vue").AsyncComponent<any, any, any, any> | {
1641
+ name?: string | undefined;
1642
+ props?: (string | number | symbol)[] | {
1643
+ [x: string]: import("vue/types/options").Prop<any> | {
1644
+ type?: import("vue/types/options").Prop<any> | import("vue/types/options").Prop<any>[] | undefined;
1645
+ required?: boolean | undefined;
1646
+ default?: any;
1647
+ validator?: ((value: any) => boolean) | undefined;
1648
+ } | import("vue/types/options").Prop<any>[];
1649
+ } | undefined;
1650
+ model?: {
1651
+ prop?: string | undefined;
1652
+ event?: string | undefined;
1653
+ } | undefined;
1654
+ inject?: string[] | {
1655
+ [x: string]: import("vue/types/options").InjectKey | {
1656
+ from?: import("vue/types/options").InjectKey | undefined;
1657
+ default?: any;
1658
+ };
1659
+ } | undefined;
1660
+ functional: boolean;
1661
+ render?: ((this: undefined, createElement: import("vue").CreateElement, context: import("vue").RenderContext<any>) => import("vue-demi").VNode | import("vue-demi").VNode[]) | undefined;
1662
+ } | any;
1663
+ } | undefined;
1664
+ transitions?: {
1665
+ [x: string]: object;
1666
+ } | undefined;
1667
+ filters?: {
1668
+ [x: string]: Function;
1669
+ } | undefined;
1670
+ provide?: object | (() => object) | undefined;
1671
+ inject?: string[] | {
1672
+ [x: string]: import("vue/types/options").InjectKey | {
1673
+ from?: import("vue/types/options").InjectKey | undefined;
1674
+ default?: any;
1675
+ };
1676
+ } | undefined;
1677
+ model?: {
1678
+ prop?: string | undefined;
1679
+ event?: string | undefined;
1680
+ } | undefined;
1681
+ parent?: {
1682
+ readonly $el: Element;
1683
+ readonly $options: any;
1684
+ readonly $parent: any;
1685
+ readonly $root: any;
1686
+ readonly $children: any[];
1687
+ readonly $refs: {
1688
+ [x: string]: Element | any | (Element | any)[] | undefined;
1689
+ };
1690
+ readonly $slots: {
1691
+ [x: string]: {
1692
+ tag?: string | undefined;
1693
+ data?: {
1694
+ key?: string | number | undefined;
1695
+ slot?: string | undefined;
1696
+ scopedSlots?: {
1697
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
1698
+ } | undefined;
1699
+ ref?: string | undefined;
1700
+ refInFor?: boolean | undefined;
1701
+ tag?: string | undefined;
1702
+ staticClass?: string | undefined;
1703
+ class?: any;
1704
+ staticStyle?: {
1705
+ [x: string]: any;
1706
+ } | undefined;
1707
+ style?: string | object | object[] | undefined;
1708
+ props?: {
1709
+ [x: string]: any;
1710
+ } | undefined;
1711
+ attrs?: {
1712
+ [x: string]: any;
1713
+ } | undefined;
1714
+ domProps?: {
1715
+ [x: string]: any;
1716
+ } | undefined;
1717
+ hook?: {
1718
+ [x: string]: Function;
1719
+ } | undefined;
1720
+ on?: {
1721
+ [x: string]: Function | Function[];
1722
+ } | undefined;
1723
+ nativeOn?: {
1724
+ [x: string]: Function | Function[];
1725
+ } | undefined;
1726
+ transition?: object | undefined;
1727
+ show?: boolean | undefined;
1728
+ inlineTemplate?: {
1729
+ render: Function;
1730
+ staticRenderFns: Function[];
1731
+ } | undefined;
1732
+ directives?: {
1733
+ name: string;
1734
+ value?: any;
1735
+ oldValue?: any;
1736
+ expression?: string | undefined;
1737
+ arg?: string | undefined;
1738
+ oldArg?: string | undefined;
1739
+ modifiers?: {
1740
+ [x: string]: boolean;
1741
+ } | undefined;
1742
+ }[] | undefined;
1743
+ keepAlive?: boolean | undefined;
1744
+ } | undefined;
1745
+ children?: any[] | undefined;
1746
+ text?: string | undefined;
1747
+ elm?: Node | undefined;
1748
+ ns?: string | undefined;
1749
+ context?: any | undefined;
1750
+ key?: string | number | boolean | symbol | undefined;
1751
+ componentOptions?: {
1752
+ Ctor: import("vue").VueConstructor<import("vue").default>;
1753
+ propsData?: object | undefined;
1754
+ listeners?: object | undefined;
1755
+ children?: any[] | undefined;
1756
+ tag?: string | undefined;
1757
+ } | undefined;
1758
+ componentInstance?: any | undefined;
1759
+ parent?: any | undefined;
1760
+ raw?: boolean | undefined;
1761
+ isStatic?: boolean | undefined;
1762
+ isRootInsert: boolean;
1763
+ isComment: boolean;
1764
+ }[] | undefined;
1765
+ };
1766
+ readonly $scopedSlots: {
1767
+ [x: string]: import("vue2/types/vnode").NormalizedScopedSlot | undefined;
1768
+ };
1769
+ readonly $isServer: boolean;
1770
+ readonly $data: {
1771
+ [x: string]: any;
1772
+ };
1773
+ readonly $props: {
1774
+ [x: string]: any;
1775
+ };
1776
+ readonly $ssrContext: any;
1777
+ readonly $vnode: {
1778
+ tag?: string | undefined;
1779
+ data?: {
1780
+ key?: string | number | undefined;
1781
+ slot?: string | undefined;
1782
+ scopedSlots?: {
1783
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
1784
+ } | undefined;
1785
+ ref?: string | undefined;
1786
+ refInFor?: boolean | undefined;
1787
+ tag?: string | undefined;
1788
+ staticClass?: string | undefined;
1789
+ class?: any;
1790
+ staticStyle?: {
1791
+ [x: string]: any;
1792
+ } | undefined;
1793
+ style?: string | object | object[] | undefined;
1794
+ props?: {
1795
+ [x: string]: any;
1796
+ } | undefined;
1797
+ attrs?: {
1798
+ [x: string]: any;
1799
+ } | undefined;
1800
+ domProps?: {
1801
+ [x: string]: any;
1802
+ } | undefined;
1803
+ hook?: {
1804
+ [x: string]: Function;
1805
+ } | undefined;
1806
+ on?: {
1807
+ [x: string]: Function | Function[];
1808
+ } | undefined;
1809
+ nativeOn?: {
1810
+ [x: string]: Function | Function[];
1811
+ } | undefined;
1812
+ transition?: object | undefined;
1813
+ show?: boolean | undefined;
1814
+ inlineTemplate?: {
1815
+ render: Function;
1816
+ staticRenderFns: Function[];
1817
+ } | undefined;
1818
+ directives?: {
1819
+ name: string;
1820
+ value?: any;
1821
+ oldValue?: any;
1822
+ expression?: string | undefined;
1823
+ arg?: string | undefined;
1824
+ oldArg?: string | undefined;
1825
+ modifiers?: {
1826
+ [x: string]: boolean;
1827
+ } | undefined;
1828
+ }[] | undefined;
1829
+ keepAlive?: boolean | undefined;
1830
+ } | undefined;
1831
+ children?: any[] | undefined;
1832
+ text?: string | undefined;
1833
+ elm?: Node | undefined;
1834
+ ns?: string | undefined;
1835
+ context?: any | undefined;
1836
+ key?: string | number | boolean | symbol | undefined;
1837
+ componentOptions?: {
1838
+ Ctor: import("vue").VueConstructor<import("vue").default>;
1839
+ propsData?: object | undefined;
1840
+ listeners?: object | undefined;
1841
+ children?: any[] | undefined;
1842
+ tag?: string | undefined;
1843
+ } | undefined;
1844
+ componentInstance?: any | undefined;
1845
+ parent?: any | undefined;
1846
+ raw?: boolean | undefined;
1847
+ isStatic?: boolean | undefined;
1848
+ isRootInsert: boolean;
1849
+ isComment: boolean;
1850
+ };
1851
+ readonly $attrs: {
1852
+ [x: string]: string;
1853
+ };
1854
+ readonly $listeners: {
1855
+ [x: string]: Function | Function[];
1856
+ };
1857
+ $mount: (elementOrSelector?: string | Element | undefined, hydrating?: boolean | undefined) => import("vue").default;
1858
+ $forceUpdate: () => void;
1859
+ $destroy: () => void;
1860
+ $set: {
1861
+ <T>(object: object, key: string | number, value: T): T;
1862
+ <T_1>(array: T_1[], key: number, value: T_1): T_1;
1863
+ };
1864
+ $delete: {
1865
+ (object: object, key: string | number): void;
1866
+ <T_2>(array: T_2[], key: number): void;
1867
+ };
1868
+ $watch: {
1869
+ (expOrFn: string, callback: (this: import("vue").default, n: any, o: any) => void, options?: import("vue").WatchOptions | undefined): () => void;
1870
+ <T_3>(expOrFn: (this: import("vue").default) => T_3, callback: (this: import("vue").default, n: T_3, o: T_3) => void, options?: import("vue").WatchOptions | undefined): () => void;
1871
+ };
1872
+ $on: (event: string | string[], callback: Function) => import("vue").default;
1873
+ $once: (event: string | string[], callback: Function) => import("vue").default;
1874
+ $off: (event?: string | string[] | undefined, callback?: Function | undefined) => import("vue").default;
1875
+ $emit: (event: string, ...args: any[]) => import("vue").default;
1876
+ $nextTick: {
1877
+ (callback: (this: import("vue").default) => void): void;
1878
+ (): Promise<void>;
1879
+ };
1880
+ $createElement: import("vue").CreateElement;
1881
+ } | undefined;
1882
+ mixins?: (import("vue").VueConstructor<import("vue").default> | any)[] | undefined;
1883
+ name?: string | undefined;
1884
+ extends?: import("vue").VueConstructor<import("vue").default> | any | undefined;
1885
+ delimiters?: [string, string] | undefined;
1886
+ comments?: boolean | undefined;
1887
+ inheritAttrs?: boolean | undefined;
1888
+ setup?: import("@vue/composition-api").SetupFunction<import("@vue/composition-api").Data, import("@vue/composition-api").Data, {}> | undefined;
1889
+ };
1890
+ } | undefined;
1891
+ transitions?: {
1892
+ [x: string]: object;
1893
+ } | undefined;
1894
+ filters?: {
1895
+ [x: string]: Function;
1896
+ } | undefined;
1897
+ provide?: object | (() => object) | undefined;
1898
+ inject?: string[] | {
1899
+ [x: string]: import("vue/types/options").InjectKey | {
1900
+ from?: import("vue/types/options").InjectKey | undefined;
1901
+ default?: any;
1902
+ };
1903
+ } | undefined;
1904
+ model?: {
1905
+ prop?: string | undefined;
1906
+ event?: string | undefined;
1907
+ } | undefined;
1908
+ parent?: {
1909
+ readonly $el: Element;
1910
+ readonly $options: any;
1911
+ readonly $parent: any;
1912
+ readonly $root: any;
1913
+ readonly $children: any[];
1914
+ readonly $refs: {
1915
+ [x: string]: Element | any | (Element | any)[] | undefined;
1916
+ };
1917
+ readonly $slots: {
1918
+ [x: string]: {
1919
+ tag?: string | undefined;
1920
+ data?: {
1921
+ key?: string | number | undefined;
1922
+ slot?: string | undefined;
1923
+ scopedSlots?: {
1924
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
1925
+ } | undefined;
1926
+ ref?: string | undefined;
1927
+ refInFor?: boolean | undefined;
1928
+ tag?: string | undefined;
1929
+ staticClass?: string | undefined;
1930
+ class?: any;
1931
+ staticStyle?: {
1932
+ [x: string]: any;
1933
+ } | undefined;
1934
+ style?: string | object | object[] | undefined;
1935
+ props?: {
1936
+ [x: string]: any;
1937
+ } | undefined;
1938
+ attrs?: {
1939
+ [x: string]: any;
1940
+ } | undefined;
1941
+ domProps?: {
1942
+ [x: string]: any;
1943
+ } | undefined;
1944
+ hook?: {
1945
+ [x: string]: Function;
1946
+ } | undefined;
1947
+ on?: {
1948
+ [x: string]: Function | Function[];
1949
+ } | undefined;
1950
+ nativeOn?: {
1951
+ [x: string]: Function | Function[];
1952
+ } | undefined;
1953
+ transition?: object | undefined;
1954
+ show?: boolean | undefined;
1955
+ inlineTemplate?: {
1956
+ render: Function;
1957
+ staticRenderFns: Function[];
1958
+ } | undefined;
1959
+ directives?: {
1960
+ name: string;
1961
+ value?: any;
1962
+ oldValue?: any;
1963
+ expression?: string | undefined;
1964
+ arg?: string | undefined;
1965
+ oldArg?: string | undefined;
1966
+ modifiers?: {
1967
+ [x: string]: boolean;
1968
+ } | undefined;
1969
+ }[] | undefined;
1970
+ keepAlive?: boolean | undefined;
1971
+ } | undefined;
1972
+ children?: any[] | undefined;
1973
+ text?: string | undefined;
1974
+ elm?: Node | undefined;
1975
+ ns?: string | undefined;
1976
+ context?: any | undefined;
1977
+ key?: string | number | boolean | symbol | undefined;
1978
+ componentOptions?: {
1979
+ Ctor: import("vue").VueConstructor<import("vue").default>;
1980
+ propsData?: object | undefined;
1981
+ listeners?: object | undefined;
1982
+ children?: any[] | undefined;
1983
+ tag?: string | undefined;
1984
+ } | undefined;
1985
+ componentInstance?: any | undefined;
1986
+ parent?: any | undefined;
1987
+ raw?: boolean | undefined;
1988
+ isStatic?: boolean | undefined;
1989
+ isRootInsert: boolean;
1990
+ isComment: boolean;
1991
+ }[] | undefined;
1992
+ };
1993
+ readonly $scopedSlots: {
1994
+ [x: string]: import("vue2/types/vnode").NormalizedScopedSlot | undefined;
1995
+ };
1996
+ readonly $isServer: boolean;
1997
+ readonly $data: {
1998
+ [x: string]: any;
1999
+ };
2000
+ readonly $props: {
2001
+ [x: string]: any;
2002
+ };
2003
+ readonly $ssrContext: any;
2004
+ readonly $vnode: {
2005
+ tag?: string | undefined;
2006
+ data?: {
2007
+ key?: string | number | undefined;
2008
+ slot?: string | undefined;
2009
+ scopedSlots?: {
2010
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
2011
+ } | undefined;
2012
+ ref?: string | undefined;
2013
+ refInFor?: boolean | undefined;
2014
+ tag?: string | undefined;
2015
+ staticClass?: string | undefined;
2016
+ class?: any;
2017
+ staticStyle?: {
2018
+ [x: string]: any;
2019
+ } | undefined;
2020
+ style?: string | object | object[] | undefined;
2021
+ props?: {
2022
+ [x: string]: any;
2023
+ } | undefined;
2024
+ attrs?: {
2025
+ [x: string]: any;
2026
+ } | undefined;
2027
+ domProps?: {
2028
+ [x: string]: any;
2029
+ } | undefined;
2030
+ hook?: {
2031
+ [x: string]: Function;
2032
+ } | undefined;
2033
+ on?: {
2034
+ [x: string]: Function | Function[];
2035
+ } | undefined;
2036
+ nativeOn?: {
2037
+ [x: string]: Function | Function[];
2038
+ } | undefined;
2039
+ transition?: object | undefined;
2040
+ show?: boolean | undefined;
2041
+ inlineTemplate?: {
2042
+ render: Function;
2043
+ staticRenderFns: Function[];
2044
+ } | undefined;
2045
+ directives?: {
2046
+ name: string;
2047
+ value?: any;
2048
+ oldValue?: any;
2049
+ expression?: string | undefined;
2050
+ arg?: string | undefined;
2051
+ oldArg?: string | undefined;
2052
+ modifiers?: {
2053
+ [x: string]: boolean;
2054
+ } | undefined;
2055
+ }[] | undefined;
2056
+ keepAlive?: boolean | undefined;
2057
+ } | undefined;
2058
+ children?: any[] | undefined;
2059
+ text?: string | undefined;
2060
+ elm?: Node | undefined;
2061
+ ns?: string | undefined;
2062
+ context?: any | undefined;
2063
+ key?: string | number | boolean | symbol | undefined;
2064
+ componentOptions?: {
2065
+ Ctor: import("vue").VueConstructor<import("vue").default>;
2066
+ propsData?: object | undefined;
2067
+ listeners?: object | undefined;
2068
+ children?: any[] | undefined;
2069
+ tag?: string | undefined;
2070
+ } | undefined;
2071
+ componentInstance?: any | undefined;
2072
+ parent?: any | undefined;
2073
+ raw?: boolean | undefined;
2074
+ isStatic?: boolean | undefined;
2075
+ isRootInsert: boolean;
2076
+ isComment: boolean;
2077
+ };
2078
+ readonly $attrs: {
2079
+ [x: string]: string;
2080
+ };
2081
+ readonly $listeners: {
2082
+ [x: string]: Function | Function[];
2083
+ };
2084
+ $mount: (elementOrSelector?: string | Element | undefined, hydrating?: boolean | undefined) => import("vue").default;
2085
+ $forceUpdate: () => void;
2086
+ $destroy: () => void;
2087
+ $set: {
2088
+ <T>(object: object, key: string | number, value: T): T;
2089
+ <T_1>(array: T_1[], key: number, value: T_1): T_1;
2090
+ };
2091
+ $delete: {
2092
+ (object: object, key: string | number): void;
2093
+ <T_2>(array: T_2[], key: number): void;
2094
+ };
2095
+ $watch: {
2096
+ (expOrFn: string, callback: (this: import("vue").default, n: any, o: any) => void, options?: import("vue").WatchOptions | undefined): () => void;
2097
+ <T_3>(expOrFn: (this: import("vue").default) => T_3, callback: (this: import("vue").default, n: T_3, o: T_3) => void, options?: import("vue").WatchOptions | undefined): () => void;
2098
+ };
2099
+ $on: (event: string | string[], callback: Function) => import("vue").default;
2100
+ $once: (event: string | string[], callback: Function) => import("vue").default;
2101
+ $off: (event?: string | string[] | undefined, callback?: Function | undefined) => import("vue").default;
2102
+ $emit: (event: string, ...args: any[]) => import("vue").default;
2103
+ $nextTick: {
2104
+ (callback: (this: import("vue").default) => void): void;
2105
+ (): Promise<void>;
2106
+ };
2107
+ $createElement: import("vue").CreateElement;
2108
+ } | undefined;
2109
+ mixins?: (import("vue").VueConstructor<import("vue").default> | any)[] | undefined;
2110
+ name?: string | undefined;
2111
+ extends?: import("vue").VueConstructor<import("vue").default> | any | undefined;
2112
+ delimiters?: [string, string] | undefined;
2113
+ comments?: boolean | undefined;
2114
+ inheritAttrs?: boolean | undefined;
2115
+ setup?: import("@vue/composition-api").SetupFunction<import("@vue/composition-api").Data, import("@vue/composition-api").Data, {}> | undefined;
2116
+ };
2117
+ readonly $parent: {
2118
+ readonly $el: Element;
2119
+ readonly $options: any;
2120
+ readonly $parent: any;
2121
+ readonly $root: any;
2122
+ readonly $children: any[];
2123
+ readonly $refs: {
2124
+ [x: string]: Element | any | (Element | any)[] | undefined;
2125
+ };
2126
+ readonly $slots: {
2127
+ [x: string]: {
2128
+ tag?: string | undefined;
2129
+ data?: {
2130
+ key?: string | number | undefined;
2131
+ slot?: string | undefined;
2132
+ scopedSlots?: {
2133
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
2134
+ } | undefined;
2135
+ ref?: string | undefined;
2136
+ refInFor?: boolean | undefined;
2137
+ tag?: string | undefined;
2138
+ staticClass?: string | undefined;
2139
+ class?: any;
2140
+ staticStyle?: {
2141
+ [x: string]: any;
2142
+ } | undefined;
2143
+ style?: string | object | object[] | undefined;
2144
+ props?: {
2145
+ [x: string]: any;
2146
+ } | undefined;
2147
+ attrs?: {
2148
+ [x: string]: any;
2149
+ } | undefined;
2150
+ domProps?: {
2151
+ [x: string]: any;
2152
+ } | undefined;
2153
+ hook?: {
2154
+ [x: string]: Function;
2155
+ } | undefined;
2156
+ on?: {
2157
+ [x: string]: Function | Function[];
2158
+ } | undefined;
2159
+ nativeOn?: {
2160
+ [x: string]: Function | Function[];
2161
+ } | undefined;
2162
+ transition?: object | undefined;
2163
+ show?: boolean | undefined;
2164
+ inlineTemplate?: {
2165
+ render: Function;
2166
+ staticRenderFns: Function[];
2167
+ } | undefined;
2168
+ directives?: {
2169
+ name: string;
2170
+ value?: any;
2171
+ oldValue?: any;
2172
+ expression?: string | undefined;
2173
+ arg?: string | undefined;
2174
+ oldArg?: string | undefined;
2175
+ modifiers?: {
2176
+ [x: string]: boolean;
2177
+ } | undefined;
2178
+ }[] | undefined;
2179
+ keepAlive?: boolean | undefined;
2180
+ } | undefined;
2181
+ children?: any[] | undefined;
2182
+ text?: string | undefined;
2183
+ elm?: Node | undefined;
2184
+ ns?: string | undefined;
2185
+ context?: any | undefined;
2186
+ key?: string | number | boolean | symbol | undefined;
2187
+ componentOptions?: {
2188
+ Ctor: import("vue").VueConstructor<import("vue").default>;
2189
+ propsData?: object | undefined;
2190
+ listeners?: object | undefined;
2191
+ children?: any[] | undefined;
2192
+ tag?: string | undefined;
2193
+ } | undefined;
2194
+ componentInstance?: any | undefined;
2195
+ parent?: any | undefined;
2196
+ raw?: boolean | undefined;
2197
+ isStatic?: boolean | undefined;
2198
+ isRootInsert: boolean;
2199
+ isComment: boolean;
2200
+ }[] | undefined;
2201
+ };
2202
+ readonly $scopedSlots: {
2203
+ [x: string]: import("vue2/types/vnode").NormalizedScopedSlot | undefined;
2204
+ };
2205
+ readonly $isServer: boolean;
2206
+ readonly $data: {
2207
+ [x: string]: any;
2208
+ };
2209
+ readonly $props: {
2210
+ [x: string]: any;
2211
+ };
2212
+ readonly $ssrContext: any;
2213
+ readonly $vnode: {
2214
+ tag?: string | undefined;
2215
+ data?: {
2216
+ key?: string | number | undefined;
2217
+ slot?: string | undefined;
2218
+ scopedSlots?: {
2219
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
2220
+ } | undefined;
2221
+ ref?: string | undefined;
2222
+ refInFor?: boolean | undefined;
2223
+ tag?: string | undefined;
2224
+ staticClass?: string | undefined;
2225
+ class?: any;
2226
+ staticStyle?: {
2227
+ [x: string]: any;
2228
+ } | undefined;
2229
+ style?: string | object | object[] | undefined;
2230
+ props?: {
2231
+ [x: string]: any;
2232
+ } | undefined;
2233
+ attrs?: {
2234
+ [x: string]: any;
2235
+ } | undefined;
2236
+ domProps?: {
2237
+ [x: string]: any;
2238
+ } | undefined;
2239
+ hook?: {
2240
+ [x: string]: Function;
2241
+ } | undefined;
2242
+ on?: {
2243
+ [x: string]: Function | Function[];
2244
+ } | undefined;
2245
+ nativeOn?: {
2246
+ [x: string]: Function | Function[];
2247
+ } | undefined;
2248
+ transition?: object | undefined;
2249
+ show?: boolean | undefined;
2250
+ inlineTemplate?: {
2251
+ render: Function;
2252
+ staticRenderFns: Function[];
2253
+ } | undefined;
2254
+ directives?: {
2255
+ name: string;
2256
+ value?: any;
2257
+ oldValue?: any;
2258
+ expression?: string | undefined;
2259
+ arg?: string | undefined;
2260
+ oldArg?: string | undefined;
2261
+ modifiers?: {
2262
+ [x: string]: boolean;
2263
+ } | undefined;
2264
+ }[] | undefined;
2265
+ keepAlive?: boolean | undefined;
2266
+ } | undefined;
2267
+ children?: any[] | undefined;
2268
+ text?: string | undefined;
2269
+ elm?: Node | undefined;
2270
+ ns?: string | undefined;
2271
+ context?: any | undefined;
2272
+ key?: string | number | boolean | symbol | undefined;
2273
+ componentOptions?: {
2274
+ Ctor: import("vue").VueConstructor<import("vue").default>;
2275
+ propsData?: object | undefined;
2276
+ listeners?: object | undefined;
2277
+ children?: any[] | undefined;
2278
+ tag?: string | undefined;
2279
+ } | undefined;
2280
+ componentInstance?: any | undefined;
2281
+ parent?: any | undefined;
2282
+ raw?: boolean | undefined;
2283
+ isStatic?: boolean | undefined;
2284
+ isRootInsert: boolean;
2285
+ isComment: boolean;
2286
+ };
2287
+ readonly $attrs: {
2288
+ [x: string]: string;
2289
+ };
2290
+ readonly $listeners: {
2291
+ [x: string]: Function | Function[];
2292
+ };
2293
+ $mount: (elementOrSelector?: string | Element | undefined, hydrating?: boolean | undefined) => import("vue").default;
2294
+ $forceUpdate: () => void;
2295
+ $destroy: () => void;
2296
+ $set: {
2297
+ <T>(object: object, key: string | number, value: T): T;
2298
+ <T_1>(array: T_1[], key: number, value: T_1): T_1;
2299
+ };
2300
+ $delete: {
2301
+ (object: object, key: string | number): void;
2302
+ <T_2>(array: T_2[], key: number): void;
2303
+ };
2304
+ $watch: {
2305
+ (expOrFn: string, callback: (this: import("vue").default, n: any, o: any) => void, options?: import("vue").WatchOptions | undefined): () => void;
2306
+ <T_3>(expOrFn: (this: import("vue").default) => T_3, callback: (this: import("vue").default, n: T_3, o: T_3) => void, options?: import("vue").WatchOptions | undefined): () => void;
2307
+ };
2308
+ $on: (event: string | string[], callback: Function) => import("vue").default;
2309
+ $once: (event: string | string[], callback: Function) => import("vue").default;
2310
+ $off: (event?: string | string[] | undefined, callback?: Function | undefined) => import("vue").default;
2311
+ $emit: (event: string, ...args: any[]) => import("vue").default;
2312
+ $nextTick: {
2313
+ (callback: (this: import("vue").default) => void): void;
2314
+ (): Promise<void>;
2315
+ };
2316
+ $createElement: import("vue").CreateElement;
2317
+ };
2318
+ readonly $root: {
2319
+ readonly $el: Element;
2320
+ readonly $options: any;
2321
+ readonly $parent: any;
2322
+ readonly $root: any;
2323
+ readonly $children: any[];
2324
+ readonly $refs: {
2325
+ [x: string]: Element | any | (Element | any)[] | undefined;
2326
+ };
2327
+ readonly $slots: {
2328
+ [x: string]: {
2329
+ tag?: string | undefined;
2330
+ data?: {
2331
+ key?: string | number | undefined;
2332
+ slot?: string | undefined;
2333
+ scopedSlots?: {
2334
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
2335
+ } | undefined;
2336
+ ref?: string | undefined;
2337
+ refInFor?: boolean | undefined;
2338
+ tag?: string | undefined;
2339
+ staticClass?: string | undefined;
2340
+ class?: any;
2341
+ staticStyle?: {
2342
+ [x: string]: any;
2343
+ } | undefined;
2344
+ style?: string | object | object[] | undefined;
2345
+ props?: {
2346
+ [x: string]: any;
2347
+ } | undefined;
2348
+ attrs?: {
2349
+ [x: string]: any;
2350
+ } | undefined;
2351
+ domProps?: {
2352
+ [x: string]: any;
2353
+ } | undefined;
2354
+ hook?: {
2355
+ [x: string]: Function;
2356
+ } | undefined;
2357
+ on?: {
2358
+ [x: string]: Function | Function[];
2359
+ } | undefined;
2360
+ nativeOn?: {
2361
+ [x: string]: Function | Function[];
2362
+ } | undefined;
2363
+ transition?: object | undefined;
2364
+ show?: boolean | undefined;
2365
+ inlineTemplate?: {
2366
+ render: Function;
2367
+ staticRenderFns: Function[];
2368
+ } | undefined;
2369
+ directives?: {
2370
+ name: string;
2371
+ value?: any;
2372
+ oldValue?: any;
2373
+ expression?: string | undefined;
2374
+ arg?: string | undefined;
2375
+ oldArg?: string | undefined;
2376
+ modifiers?: {
2377
+ [x: string]: boolean;
2378
+ } | undefined;
2379
+ }[] | undefined;
2380
+ keepAlive?: boolean | undefined;
2381
+ } | undefined;
2382
+ children?: any[] | undefined;
2383
+ text?: string | undefined;
2384
+ elm?: Node | undefined;
2385
+ ns?: string | undefined;
2386
+ context?: any | undefined;
2387
+ key?: string | number | boolean | symbol | undefined;
2388
+ componentOptions?: {
2389
+ Ctor: import("vue").VueConstructor<import("vue").default>;
2390
+ propsData?: object | undefined;
2391
+ listeners?: object | undefined;
2392
+ children?: any[] | undefined;
2393
+ tag?: string | undefined;
2394
+ } | undefined;
2395
+ componentInstance?: any | undefined;
2396
+ parent?: any | undefined;
2397
+ raw?: boolean | undefined;
2398
+ isStatic?: boolean | undefined;
2399
+ isRootInsert: boolean;
2400
+ isComment: boolean;
2401
+ }[] | undefined;
2402
+ };
2403
+ readonly $scopedSlots: {
2404
+ [x: string]: import("vue2/types/vnode").NormalizedScopedSlot | undefined;
2405
+ };
2406
+ readonly $isServer: boolean;
2407
+ readonly $data: {
2408
+ [x: string]: any;
2409
+ };
2410
+ readonly $props: {
2411
+ [x: string]: any;
2412
+ };
2413
+ readonly $ssrContext: any;
2414
+ readonly $vnode: {
2415
+ tag?: string | undefined;
2416
+ data?: {
2417
+ key?: string | number | undefined;
2418
+ slot?: string | undefined;
2419
+ scopedSlots?: {
2420
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
2421
+ } | undefined;
2422
+ ref?: string | undefined;
2423
+ refInFor?: boolean | undefined;
2424
+ tag?: string | undefined;
2425
+ staticClass?: string | undefined;
2426
+ class?: any;
2427
+ staticStyle?: {
2428
+ [x: string]: any;
2429
+ } | undefined;
2430
+ style?: string | object | object[] | undefined;
2431
+ props?: {
2432
+ [x: string]: any;
2433
+ } | undefined;
2434
+ attrs?: {
2435
+ [x: string]: any;
2436
+ } | undefined;
2437
+ domProps?: {
2438
+ [x: string]: any;
2439
+ } | undefined;
2440
+ hook?: {
2441
+ [x: string]: Function;
2442
+ } | undefined;
2443
+ on?: {
2444
+ [x: string]: Function | Function[];
2445
+ } | undefined;
2446
+ nativeOn?: {
2447
+ [x: string]: Function | Function[];
2448
+ } | undefined;
2449
+ transition?: object | undefined;
2450
+ show?: boolean | undefined;
2451
+ inlineTemplate?: {
2452
+ render: Function;
2453
+ staticRenderFns: Function[];
2454
+ } | undefined;
2455
+ directives?: {
2456
+ name: string;
2457
+ value?: any;
2458
+ oldValue?: any;
2459
+ expression?: string | undefined;
2460
+ arg?: string | undefined;
2461
+ oldArg?: string | undefined;
2462
+ modifiers?: {
2463
+ [x: string]: boolean;
2464
+ } | undefined;
2465
+ }[] | undefined;
2466
+ keepAlive?: boolean | undefined;
2467
+ } | undefined;
2468
+ children?: any[] | undefined;
2469
+ text?: string | undefined;
2470
+ elm?: Node | undefined;
2471
+ ns?: string | undefined;
2472
+ context?: any | undefined;
2473
+ key?: string | number | boolean | symbol | undefined;
2474
+ componentOptions?: {
2475
+ Ctor: import("vue").VueConstructor<import("vue").default>;
2476
+ propsData?: object | undefined;
2477
+ listeners?: object | undefined;
2478
+ children?: any[] | undefined;
2479
+ tag?: string | undefined;
2480
+ } | undefined;
2481
+ componentInstance?: any | undefined;
2482
+ parent?: any | undefined;
2483
+ raw?: boolean | undefined;
2484
+ isStatic?: boolean | undefined;
2485
+ isRootInsert: boolean;
2486
+ isComment: boolean;
2487
+ };
2488
+ readonly $attrs: {
2489
+ [x: string]: string;
2490
+ };
2491
+ readonly $listeners: {
2492
+ [x: string]: Function | Function[];
2493
+ };
2494
+ $mount: (elementOrSelector?: string | Element | undefined, hydrating?: boolean | undefined) => import("vue").default;
2495
+ $forceUpdate: () => void;
2496
+ $destroy: () => void;
2497
+ $set: {
2498
+ <T>(object: object, key: string | number, value: T): T;
2499
+ <T_1>(array: T_1[], key: number, value: T_1): T_1;
2500
+ };
2501
+ $delete: {
2502
+ (object: object, key: string | number): void;
2503
+ <T_2>(array: T_2[], key: number): void;
2504
+ };
2505
+ $watch: {
2506
+ (expOrFn: string, callback: (this: import("vue").default, n: any, o: any) => void, options?: import("vue").WatchOptions | undefined): () => void;
2507
+ <T_3>(expOrFn: (this: import("vue").default) => T_3, callback: (this: import("vue").default, n: T_3, o: T_3) => void, options?: import("vue").WatchOptions | undefined): () => void;
2508
+ };
2509
+ $on: (event: string | string[], callback: Function) => import("vue").default;
2510
+ $once: (event: string | string[], callback: Function) => import("vue").default;
2511
+ $off: (event?: string | string[] | undefined, callback?: Function | undefined) => import("vue").default;
2512
+ $emit: (event: string, ...args: any[]) => import("vue").default;
2513
+ $nextTick: {
2514
+ (callback: (this: import("vue").default) => void): void;
2515
+ (): Promise<void>;
2516
+ };
2517
+ $createElement: import("vue").CreateElement;
2518
+ };
2519
+ readonly $children: {
2520
+ readonly $el: Element;
2521
+ readonly $options: any;
2522
+ readonly $parent: any;
2523
+ readonly $root: any;
2524
+ readonly $children: any[];
2525
+ readonly $refs: {
2526
+ [x: string]: Element | any | (Element | any)[] | undefined;
2527
+ };
2528
+ readonly $slots: {
2529
+ [x: string]: {
2530
+ tag?: string | undefined;
2531
+ data?: {
2532
+ key?: string | number | undefined;
2533
+ slot?: string | undefined;
2534
+ scopedSlots?: {
2535
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
2536
+ } | undefined;
2537
+ ref?: string | undefined;
2538
+ refInFor?: boolean | undefined;
2539
+ tag?: string | undefined;
2540
+ staticClass?: string | undefined;
2541
+ class?: any;
2542
+ staticStyle?: {
2543
+ [x: string]: any;
2544
+ } | undefined;
2545
+ style?: string | object | object[] | undefined;
2546
+ props?: {
2547
+ [x: string]: any;
2548
+ } | undefined;
2549
+ attrs?: {
2550
+ [x: string]: any;
2551
+ } | undefined;
2552
+ domProps?: {
2553
+ [x: string]: any;
2554
+ } | undefined;
2555
+ hook?: {
2556
+ [x: string]: Function;
2557
+ } | undefined;
2558
+ on?: {
2559
+ [x: string]: Function | Function[];
2560
+ } | undefined;
2561
+ nativeOn?: {
2562
+ [x: string]: Function | Function[];
2563
+ } | undefined;
2564
+ transition?: object | undefined;
2565
+ show?: boolean | undefined;
2566
+ inlineTemplate?: {
2567
+ render: Function;
2568
+ staticRenderFns: Function[];
2569
+ } | undefined;
2570
+ directives?: {
2571
+ name: string;
2572
+ value?: any;
2573
+ oldValue?: any;
2574
+ expression?: string | undefined;
2575
+ arg?: string | undefined;
2576
+ oldArg?: string | undefined;
2577
+ modifiers?: {
2578
+ [x: string]: boolean;
2579
+ } | undefined;
2580
+ }[] | undefined;
2581
+ keepAlive?: boolean | undefined;
2582
+ } | undefined;
2583
+ children?: any[] | undefined;
2584
+ text?: string | undefined;
2585
+ elm?: Node | undefined;
2586
+ ns?: string | undefined;
2587
+ context?: any | undefined;
2588
+ key?: string | number | boolean | symbol | undefined;
2589
+ componentOptions?: {
2590
+ Ctor: import("vue").VueConstructor<import("vue").default>;
2591
+ propsData?: object | undefined;
2592
+ listeners?: object | undefined;
2593
+ children?: any[] | undefined;
2594
+ tag?: string | undefined;
2595
+ } | undefined;
2596
+ componentInstance?: any | undefined;
2597
+ parent?: any | undefined;
2598
+ raw?: boolean | undefined;
2599
+ isStatic?: boolean | undefined;
2600
+ isRootInsert: boolean;
2601
+ isComment: boolean;
2602
+ }[] | undefined;
2603
+ };
2604
+ readonly $scopedSlots: {
2605
+ [x: string]: import("vue2/types/vnode").NormalizedScopedSlot | undefined;
2606
+ };
2607
+ readonly $isServer: boolean;
2608
+ readonly $data: {
2609
+ [x: string]: any;
2610
+ };
2611
+ readonly $props: {
2612
+ [x: string]: any;
2613
+ };
2614
+ readonly $ssrContext: any;
2615
+ readonly $vnode: {
2616
+ tag?: string | undefined;
2617
+ data?: {
2618
+ key?: string | number | undefined;
2619
+ slot?: string | undefined;
2620
+ scopedSlots?: {
2621
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
2622
+ } | undefined;
2623
+ ref?: string | undefined;
2624
+ refInFor?: boolean | undefined;
2625
+ tag?: string | undefined;
2626
+ staticClass?: string | undefined;
2627
+ class?: any;
2628
+ staticStyle?: {
2629
+ [x: string]: any;
2630
+ } | undefined;
2631
+ style?: string | object | object[] | undefined;
2632
+ props?: {
2633
+ [x: string]: any;
2634
+ } | undefined;
2635
+ attrs?: {
2636
+ [x: string]: any;
2637
+ } | undefined;
2638
+ domProps?: {
2639
+ [x: string]: any;
2640
+ } | undefined;
2641
+ hook?: {
2642
+ [x: string]: Function;
2643
+ } | undefined;
2644
+ on?: {
2645
+ [x: string]: Function | Function[];
2646
+ } | undefined;
2647
+ nativeOn?: {
2648
+ [x: string]: Function | Function[];
2649
+ } | undefined;
2650
+ transition?: object | undefined;
2651
+ show?: boolean | undefined;
2652
+ inlineTemplate?: {
2653
+ render: Function;
2654
+ staticRenderFns: Function[];
2655
+ } | undefined;
2656
+ directives?: {
2657
+ name: string;
2658
+ value?: any;
2659
+ oldValue?: any;
2660
+ expression?: string | undefined;
2661
+ arg?: string | undefined;
2662
+ oldArg?: string | undefined;
2663
+ modifiers?: {
2664
+ [x: string]: boolean;
2665
+ } | undefined;
2666
+ }[] | undefined;
2667
+ keepAlive?: boolean | undefined;
2668
+ } | undefined;
2669
+ children?: any[] | undefined;
2670
+ text?: string | undefined;
2671
+ elm?: Node | undefined;
2672
+ ns?: string | undefined;
2673
+ context?: any | undefined;
2674
+ key?: string | number | boolean | symbol | undefined;
2675
+ componentOptions?: {
2676
+ Ctor: import("vue").VueConstructor<import("vue").default>;
2677
+ propsData?: object | undefined;
2678
+ listeners?: object | undefined;
2679
+ children?: any[] | undefined;
2680
+ tag?: string | undefined;
2681
+ } | undefined;
2682
+ componentInstance?: any | undefined;
2683
+ parent?: any | undefined;
2684
+ raw?: boolean | undefined;
2685
+ isStatic?: boolean | undefined;
2686
+ isRootInsert: boolean;
2687
+ isComment: boolean;
2688
+ };
2689
+ readonly $attrs: {
2690
+ [x: string]: string;
2691
+ };
2692
+ readonly $listeners: {
2693
+ [x: string]: Function | Function[];
2694
+ };
2695
+ $mount: (elementOrSelector?: string | Element | undefined, hydrating?: boolean | undefined) => import("vue").default;
2696
+ $forceUpdate: () => void;
2697
+ $destroy: () => void;
2698
+ $set: {
2699
+ <T>(object: object, key: string | number, value: T): T;
2700
+ <T_1>(array: T_1[], key: number, value: T_1): T_1;
2701
+ };
2702
+ $delete: {
2703
+ (object: object, key: string | number): void;
2704
+ <T_2>(array: T_2[], key: number): void;
2705
+ };
2706
+ $watch: {
2707
+ (expOrFn: string, callback: (this: import("vue").default, n: any, o: any) => void, options?: import("vue").WatchOptions | undefined): () => void;
2708
+ <T_3>(expOrFn: (this: import("vue").default) => T_3, callback: (this: import("vue").default, n: T_3, o: T_3) => void, options?: import("vue").WatchOptions | undefined): () => void;
2709
+ };
2710
+ $on: (event: string | string[], callback: Function) => import("vue").default;
2711
+ $once: (event: string | string[], callback: Function) => import("vue").default;
2712
+ $off: (event?: string | string[] | undefined, callback?: Function | undefined) => import("vue").default;
2713
+ $emit: (event: string, ...args: any[]) => import("vue").default;
2714
+ $nextTick: {
2715
+ (callback: (this: import("vue").default) => void): void;
2716
+ (): Promise<void>;
2717
+ };
2718
+ $createElement: import("vue").CreateElement;
2719
+ }[];
2720
+ readonly $refs: {
2721
+ [x: string]: Element | any | (Element | any)[] | undefined;
2722
+ };
2723
+ readonly $slots: {
2724
+ [x: string]: {
2725
+ tag?: string | undefined;
2726
+ data?: {
2727
+ key?: string | number | undefined;
2728
+ slot?: string | undefined;
2729
+ scopedSlots?: {
2730
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
2731
+ } | undefined;
2732
+ ref?: string | undefined;
2733
+ refInFor?: boolean | undefined;
2734
+ tag?: string | undefined;
2735
+ staticClass?: string | undefined;
2736
+ class?: any;
2737
+ staticStyle?: {
2738
+ [x: string]: any;
2739
+ } | undefined;
2740
+ style?: string | object | object[] | undefined;
2741
+ props?: {
2742
+ [x: string]: any;
2743
+ } | undefined;
2744
+ attrs?: {
2745
+ [x: string]: any;
2746
+ } | undefined;
2747
+ domProps?: {
2748
+ [x: string]: any;
2749
+ } | undefined;
2750
+ hook?: {
2751
+ [x: string]: Function;
2752
+ } | undefined;
2753
+ on?: {
2754
+ [x: string]: Function | Function[];
2755
+ } | undefined;
2756
+ nativeOn?: {
2757
+ [x: string]: Function | Function[];
2758
+ } | undefined;
2759
+ transition?: object | undefined;
2760
+ show?: boolean | undefined;
2761
+ inlineTemplate?: {
2762
+ render: Function;
2763
+ staticRenderFns: Function[];
2764
+ } | undefined;
2765
+ directives?: {
2766
+ name: string;
2767
+ value?: any;
2768
+ oldValue?: any;
2769
+ expression?: string | undefined;
2770
+ arg?: string | undefined;
2771
+ oldArg?: string | undefined;
2772
+ modifiers?: {
2773
+ [x: string]: boolean;
2774
+ } | undefined;
2775
+ }[] | undefined;
2776
+ keepAlive?: boolean | undefined;
2777
+ } | undefined;
2778
+ children?: any[] | undefined;
2779
+ text?: string | undefined;
2780
+ elm?: Node | undefined;
2781
+ ns?: string | undefined;
2782
+ context?: any | undefined;
2783
+ key?: string | number | boolean | symbol | undefined;
2784
+ componentOptions?: {
2785
+ Ctor: import("vue").VueConstructor<import("vue").default>;
2786
+ propsData?: object | undefined;
2787
+ listeners?: object | undefined;
2788
+ children?: any[] | undefined;
2789
+ tag?: string | undefined;
2790
+ } | undefined;
2791
+ componentInstance?: any | undefined;
2792
+ parent?: any | undefined;
2793
+ raw?: boolean | undefined;
2794
+ isStatic?: boolean | undefined;
2795
+ isRootInsert: boolean;
2796
+ isComment: boolean;
2797
+ }[] | undefined;
2798
+ };
2799
+ readonly $scopedSlots: {
2800
+ [x: string]: import("vue2/types/vnode").NormalizedScopedSlot | undefined;
2801
+ };
2802
+ readonly $isServer: boolean;
2803
+ readonly $ssrContext: any;
2804
+ readonly $vnode: {
2805
+ tag?: string | undefined;
2806
+ data?: {
2807
+ key?: string | number | undefined;
2808
+ slot?: string | undefined;
2809
+ scopedSlots?: {
2810
+ [x: string]: import("vue2/types/vnode").ScopedSlot | undefined;
2811
+ } | undefined;
2812
+ ref?: string | undefined;
2813
+ refInFor?: boolean | undefined;
2814
+ tag?: string | undefined;
2815
+ staticClass?: string | undefined;
2816
+ class?: any;
2817
+ staticStyle?: {
2818
+ [x: string]: any;
2819
+ } | undefined;
2820
+ style?: string | object | object[] | undefined;
2821
+ props?: {
2822
+ [x: string]: any;
2823
+ } | undefined;
2824
+ attrs?: {
2825
+ [x: string]: any;
2826
+ } | undefined;
2827
+ domProps?: {
2828
+ [x: string]: any;
2829
+ } | undefined;
2830
+ hook?: {
2831
+ [x: string]: Function;
2832
+ } | undefined;
2833
+ on?: {
2834
+ [x: string]: Function | Function[];
2835
+ } | undefined;
2836
+ nativeOn?: {
2837
+ [x: string]: Function | Function[];
2838
+ } | undefined;
2839
+ transition?: object | undefined;
2840
+ show?: boolean | undefined;
2841
+ inlineTemplate?: {
2842
+ render: Function;
2843
+ staticRenderFns: Function[];
2844
+ } | undefined;
2845
+ directives?: {
2846
+ name: string;
2847
+ value?: any;
2848
+ oldValue?: any;
2849
+ expression?: string | undefined;
2850
+ arg?: string | undefined;
2851
+ oldArg?: string | undefined;
2852
+ modifiers?: {
2853
+ [x: string]: boolean;
2854
+ } | undefined;
2855
+ }[] | undefined;
2856
+ keepAlive?: boolean | undefined;
2857
+ } | undefined;
2858
+ children?: any[] | undefined;
2859
+ text?: string | undefined;
2860
+ elm?: Node | undefined;
2861
+ ns?: string | undefined;
2862
+ context?: any | undefined;
2863
+ key?: string | number | boolean | symbol | undefined;
2864
+ componentOptions?: {
2865
+ Ctor: import("vue").VueConstructor<import("vue").default>;
2866
+ propsData?: object | undefined;
2867
+ listeners?: object | undefined;
2868
+ children?: any[] | undefined;
2869
+ tag?: string | undefined;
2870
+ } | undefined;
2871
+ componentInstance?: any | undefined;
2872
+ parent?: any | undefined;
2873
+ raw?: boolean | undefined;
2874
+ isStatic?: boolean | undefined;
2875
+ isRootInsert: boolean;
2876
+ isComment: boolean;
2877
+ };
2878
+ readonly $listeners: {
2879
+ [x: string]: Function | Function[];
2880
+ };
2881
+ $mount: (elementOrSelector?: string | Element | undefined, hydrating?: boolean | undefined) => import("vue").default;
2882
+ $forceUpdate: () => void;
2883
+ $destroy: () => void;
2884
+ $set: {
2885
+ <T>(object: object, key: string | number, value: T): T;
2886
+ <T_1>(array: T_1[], key: number, value: T_1): T_1;
2887
+ };
2888
+ $delete: {
2889
+ (object: object, key: string | number): void;
2890
+ <T_2>(array: T_2[], key: number): void;
2891
+ };
2892
+ $watch: {
2893
+ (expOrFn: string, callback: (this: import("vue").default, n: any, o: any) => void, options?: import("vue").WatchOptions | undefined): () => void;
2894
+ <T_3>(expOrFn: (this: import("vue").default) => T_3, callback: (this: import("vue").default, n: T_3, o: T_3) => void, options?: import("vue").WatchOptions | undefined): () => void;
2895
+ };
2896
+ $on: (event: string | string[], callback: Function) => import("vue").default;
2897
+ $once: (event: string | string[], callback: Function) => import("vue").default;
2898
+ $off: (event?: string | string[] | undefined, callback?: Function | undefined) => import("vue").default;
2899
+ $nextTick: {
2900
+ (callback: (this: import("vue").default) => void): void;
2901
+ (): Promise<void>;
2902
+ };
2903
+ $createElement: import("vue").CreateElement;
2904
+ }[]>;
90
2905
  setIsOpen: (value?: boolean | undefined) => boolean;
91
2906
  nodeRoot: import("@vue/composition-api").Ref<HTMLElement | undefined>;
92
2907
  isDrag: import("@vue/composition-api").Ref<boolean>;
@@ -100,6 +2915,7 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
100
2915
  handleDragOver: (e: DragEvent) => void;
101
2916
  handleDragLeave: (e: DragEvent) => void;
102
2917
  hasCollapseTrigger: import("@vue/composition-api").ComputedRef<boolean>;
2918
+ hasDragoverChildren: import("@vue/composition-api").ComputedRef<boolean>;
103
2919
  isDragOver: import("@vue/composition-api").Ref<boolean>;
104
2920
  }>, import("@vue/composition-api").Data, {}, {}, {}, {}, string[], {
105
2921
  node: TreeNode;