@vuetify/nightly 3.0.2 → 3.0.4-next-20221130.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.
- package/CHANGELOG.md +7 -2
- package/dist/json/importMap.json +86 -86
- package/dist/vuetify.css +118 -124
- package/dist/vuetify.d.ts +391 -200
- package/dist/vuetify.esm.js +45 -31
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +45 -31
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +11 -11
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/index.d.ts +1 -1
- package/lib/components/VAppBar/VAppBar.mjs +2 -2
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.ts +275 -62
- package/lib/components/VAutocomplete/index.d.ts +22 -22
- package/lib/components/VChip/index.d.ts +1 -1
- package/lib/components/VChipGroup/index.d.ts +1 -1
- package/lib/components/VCombobox/index.d.ts +22 -22
- package/lib/components/VExpansionPanel/index.d.ts +1 -1
- package/lib/components/VField/index.d.ts +6 -6
- package/lib/components/VFileInput/index.d.ts +2 -2
- package/lib/components/VFooter/VFooter.mjs +1 -1
- package/lib/components/VFooter/VFooter.mjs.map +1 -1
- package/lib/components/VLazy/VLazy.mjs +2 -1
- package/lib/components/VLazy/VLazy.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +2 -2
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VOverlay/locationStrategies.mjs +3 -1
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VPagination/index.d.ts +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.sass +1 -1
- package/lib/components/VProgressLinear/_variables.scss +1 -1
- package/lib/components/VSelect/index.d.ts +22 -22
- package/lib/components/VSelectionControl/index.d.ts +6 -6
- package/lib/components/VSnackbar/index.d.ts +4 -4
- package/lib/components/VTabs/VTab.css +1 -3
- package/lib/components/VTabs/VTab.sass +1 -4
- package/lib/components/VTabs/VTabs.css +0 -4
- package/lib/components/VTabs/VTabs.sass +0 -5
- package/lib/components/VTextField/index.d.ts +18 -18
- package/lib/components/VTextarea/index.d.ts +1 -1
- package/lib/components/VToolbar/VToolbar.mjs +32 -22
- package/lib/components/VToolbar/VToolbar.mjs.map +1 -1
- package/lib/components/VToolbar/index.d.ts +9 -8
- package/lib/components/index.d.ts +368 -177
- package/lib/components/transitions/dialog-transition.mjs +2 -2
- package/lib/components/transitions/dialog-transition.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.ts +23 -23
- package/package.json +1 -1
|
@@ -113,6 +113,14 @@ declare type EventProp<T = (...args: any[]) => any> = T | T[];
|
|
|
113
113
|
declare const EventProp: PropType<EventProp<(...args: any[]) => any>>;
|
|
114
114
|
|
|
115
115
|
declare type Density$1 = null | 'prominent' | 'default' | 'comfortable' | 'compact';
|
|
116
|
+
declare type VToolbarSlots = MakeSlots<{
|
|
117
|
+
default: [];
|
|
118
|
+
image: [];
|
|
119
|
+
prepend: [];
|
|
120
|
+
append: [];
|
|
121
|
+
title: [];
|
|
122
|
+
extension: [];
|
|
123
|
+
}>;
|
|
116
124
|
declare const VToolbar: {
|
|
117
125
|
new (...args: any[]): {
|
|
118
126
|
$: vue.ComponentInternalInstance;
|
|
@@ -354,75 +362,254 @@ declare const VToolbar: {
|
|
|
354
362
|
extensionHeight: string | number;
|
|
355
363
|
floating: boolean;
|
|
356
364
|
}> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
357
|
-
$props: SlotsToProps<
|
|
358
|
-
default: [];
|
|
359
|
-
image: [];
|
|
360
|
-
prepend: [];
|
|
361
|
-
append: [];
|
|
362
|
-
title: [];
|
|
363
|
-
extension: [];
|
|
364
|
-
}>;
|
|
365
|
+
$props: SlotsToProps<VToolbarSlots>;
|
|
365
366
|
});
|
|
366
367
|
declare type VToolbar = InstanceType<typeof VToolbar>;
|
|
367
368
|
|
|
368
|
-
declare const VAppBar:
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
369
|
+
declare const VAppBar: {
|
|
370
|
+
new (...args: any[]): {
|
|
371
|
+
$: vue.ComponentInternalInstance;
|
|
372
|
+
$data: {};
|
|
373
|
+
$props: Partial<{
|
|
374
|
+
flat: boolean;
|
|
375
|
+
absolute: boolean;
|
|
376
|
+
location: "top" | "bottom";
|
|
377
|
+
height: string | number;
|
|
378
|
+
order: string | number;
|
|
379
|
+
tag: string;
|
|
380
|
+
collapse: boolean;
|
|
381
|
+
rounded: string | number | boolean;
|
|
382
|
+
density: Density$1;
|
|
383
|
+
extended: boolean;
|
|
384
|
+
extensionHeight: string | number;
|
|
385
|
+
floating: boolean;
|
|
386
|
+
modelValue: boolean;
|
|
387
|
+
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
388
|
+
height: {
|
|
389
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
390
|
+
default: number;
|
|
391
|
+
};
|
|
392
|
+
name: {
|
|
393
|
+
type: StringConstructor;
|
|
394
|
+
};
|
|
395
|
+
order: {
|
|
396
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
397
|
+
default: number;
|
|
398
|
+
};
|
|
399
|
+
absolute: BooleanConstructor;
|
|
400
|
+
theme: StringConstructor;
|
|
401
|
+
tag: Omit<{
|
|
402
|
+
type: StringConstructor;
|
|
403
|
+
default: string;
|
|
404
|
+
}, "type" | "default"> & {
|
|
405
|
+
type: PropType<string>;
|
|
406
|
+
default: string;
|
|
407
|
+
};
|
|
408
|
+
rounded: {
|
|
409
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
410
|
+
default: undefined;
|
|
411
|
+
};
|
|
412
|
+
elevation: {
|
|
413
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
414
|
+
validator(v: any): boolean;
|
|
415
|
+
};
|
|
416
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
417
|
+
collapse: BooleanConstructor;
|
|
418
|
+
color: StringConstructor;
|
|
419
|
+
density: {
|
|
420
|
+
type: PropType<Density$1>;
|
|
421
|
+
default: string;
|
|
422
|
+
validator: (v: any) => boolean;
|
|
423
|
+
};
|
|
424
|
+
extended: BooleanConstructor;
|
|
425
|
+
extensionHeight: {
|
|
426
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
427
|
+
default: number;
|
|
428
|
+
};
|
|
429
|
+
flat: BooleanConstructor;
|
|
430
|
+
floating: BooleanConstructor;
|
|
431
|
+
image: StringConstructor;
|
|
432
|
+
title: StringConstructor;
|
|
433
|
+
modelValue: {
|
|
434
|
+
type: BooleanConstructor;
|
|
435
|
+
default: boolean;
|
|
436
|
+
};
|
|
437
|
+
location: {
|
|
438
|
+
type: PropType<"top" | "bottom">;
|
|
439
|
+
default: string;
|
|
440
|
+
validator: (value: any) => boolean;
|
|
441
|
+
};
|
|
442
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">>> & {
|
|
443
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
444
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "absolute" | "location" | "height" | "order" | "tag" | "collapse" | "rounded" | "density" | "extended" | "extensionHeight" | "floating" | "modelValue">;
|
|
445
|
+
$attrs: {
|
|
446
|
+
[x: string]: unknown;
|
|
447
|
+
};
|
|
448
|
+
$refs: {
|
|
449
|
+
[x: string]: unknown;
|
|
450
|
+
};
|
|
451
|
+
$slots: Readonly<{
|
|
452
|
+
[name: string]: vue.Slot | undefined;
|
|
453
|
+
}>;
|
|
454
|
+
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
455
|
+
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
456
|
+
$emit: (event: "update:modelValue", value: boolean) => void;
|
|
457
|
+
$el: any;
|
|
458
|
+
$options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
|
|
459
|
+
height: {
|
|
460
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
461
|
+
default: number;
|
|
462
|
+
};
|
|
463
|
+
name: {
|
|
464
|
+
type: StringConstructor;
|
|
465
|
+
};
|
|
466
|
+
order: {
|
|
467
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
468
|
+
default: number;
|
|
469
|
+
};
|
|
470
|
+
absolute: BooleanConstructor;
|
|
471
|
+
theme: StringConstructor;
|
|
472
|
+
tag: Omit<{
|
|
473
|
+
type: StringConstructor;
|
|
474
|
+
default: string;
|
|
475
|
+
}, "type" | "default"> & {
|
|
476
|
+
type: PropType<string>;
|
|
477
|
+
default: string;
|
|
478
|
+
};
|
|
479
|
+
rounded: {
|
|
480
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
481
|
+
default: undefined;
|
|
482
|
+
};
|
|
483
|
+
elevation: {
|
|
484
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
485
|
+
validator(v: any): boolean;
|
|
486
|
+
};
|
|
487
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
488
|
+
collapse: BooleanConstructor;
|
|
489
|
+
color: StringConstructor;
|
|
490
|
+
density: {
|
|
491
|
+
type: PropType<Density$1>;
|
|
492
|
+
default: string;
|
|
493
|
+
validator: (v: any) => boolean;
|
|
494
|
+
};
|
|
495
|
+
extended: BooleanConstructor;
|
|
496
|
+
extensionHeight: {
|
|
497
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
498
|
+
default: number;
|
|
499
|
+
};
|
|
500
|
+
flat: BooleanConstructor;
|
|
501
|
+
floating: BooleanConstructor;
|
|
502
|
+
image: StringConstructor;
|
|
503
|
+
title: StringConstructor;
|
|
504
|
+
modelValue: {
|
|
505
|
+
type: BooleanConstructor;
|
|
506
|
+
default: boolean;
|
|
507
|
+
};
|
|
508
|
+
location: {
|
|
509
|
+
type: PropType<"top" | "bottom">;
|
|
510
|
+
default: string;
|
|
511
|
+
validator: (value: any) => boolean;
|
|
512
|
+
};
|
|
513
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">>> & {
|
|
514
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
515
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
516
|
+
'update:modelValue': (value: boolean) => boolean;
|
|
517
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">, string, {
|
|
518
|
+
flat: boolean;
|
|
519
|
+
absolute: boolean;
|
|
520
|
+
location: "top" | "bottom";
|
|
521
|
+
height: string | number;
|
|
522
|
+
order: string | number;
|
|
523
|
+
tag: string;
|
|
524
|
+
collapse: boolean;
|
|
525
|
+
rounded: string | number | boolean;
|
|
526
|
+
density: Density$1;
|
|
527
|
+
extended: boolean;
|
|
528
|
+
extensionHeight: string | number;
|
|
529
|
+
floating: boolean;
|
|
530
|
+
modelValue: boolean;
|
|
531
|
+
}> & {
|
|
532
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
533
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
534
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
535
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
536
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
537
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
538
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
539
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
540
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
541
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
542
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
543
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
544
|
+
renderTracked?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
545
|
+
renderTriggered?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
546
|
+
errorCaptured?: (((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
547
|
+
};
|
|
548
|
+
$forceUpdate: () => void;
|
|
549
|
+
$nextTick: typeof vue.nextTick;
|
|
550
|
+
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
551
|
+
} & Readonly<vue.ExtractPropTypes<Omit<{
|
|
552
|
+
height: {
|
|
553
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
554
|
+
default: number;
|
|
555
|
+
};
|
|
556
|
+
name: {
|
|
557
|
+
type: StringConstructor;
|
|
558
|
+
};
|
|
559
|
+
order: {
|
|
560
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
561
|
+
default: number;
|
|
562
|
+
};
|
|
563
|
+
absolute: BooleanConstructor;
|
|
564
|
+
theme: StringConstructor;
|
|
565
|
+
tag: Omit<{
|
|
566
|
+
type: StringConstructor;
|
|
567
|
+
default: string;
|
|
568
|
+
}, "type" | "default"> & {
|
|
569
|
+
type: PropType<string>;
|
|
570
|
+
default: string;
|
|
571
|
+
};
|
|
572
|
+
rounded: {
|
|
573
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
574
|
+
default: undefined;
|
|
575
|
+
};
|
|
576
|
+
elevation: {
|
|
577
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
578
|
+
validator(v: any): boolean;
|
|
579
|
+
};
|
|
580
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
581
|
+
collapse: BooleanConstructor;
|
|
582
|
+
color: StringConstructor;
|
|
583
|
+
density: {
|
|
584
|
+
type: PropType<Density$1>;
|
|
585
|
+
default: string;
|
|
586
|
+
validator: (v: any) => boolean;
|
|
587
|
+
};
|
|
588
|
+
extended: BooleanConstructor;
|
|
589
|
+
extensionHeight: {
|
|
590
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
591
|
+
default: number;
|
|
592
|
+
};
|
|
593
|
+
flat: BooleanConstructor;
|
|
594
|
+
floating: BooleanConstructor;
|
|
595
|
+
image: StringConstructor;
|
|
596
|
+
title: StringConstructor;
|
|
597
|
+
modelValue: {
|
|
598
|
+
type: BooleanConstructor;
|
|
599
|
+
default: boolean;
|
|
600
|
+
};
|
|
601
|
+
location: {
|
|
602
|
+
type: PropType<"top" | "bottom">;
|
|
603
|
+
default: string;
|
|
604
|
+
validator: (value: any) => boolean;
|
|
605
|
+
};
|
|
606
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">>> & {
|
|
607
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
608
|
+
} & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties;
|
|
609
|
+
__isFragment?: undefined;
|
|
610
|
+
__isTeleport?: undefined;
|
|
611
|
+
__isSuspense?: undefined;
|
|
612
|
+
} & vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
|
|
426
613
|
height: {
|
|
427
614
|
type: (StringConstructor | NumberConstructor)[];
|
|
428
615
|
default: number;
|
|
@@ -477,9 +664,11 @@ declare const VAppBar: vue.DefineComponent<{
|
|
|
477
664
|
default: string;
|
|
478
665
|
validator: (value: any) => boolean;
|
|
479
666
|
};
|
|
480
|
-
}
|
|
667
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">>> & {
|
|
481
668
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
482
|
-
}, {
|
|
669
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
670
|
+
'update:modelValue': (value: boolean) => boolean;
|
|
671
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">, string, {
|
|
483
672
|
flat: boolean;
|
|
484
673
|
absolute: boolean;
|
|
485
674
|
location: "top" | "bottom";
|
|
@@ -493,7 +682,9 @@ declare const VAppBar: vue.DefineComponent<{
|
|
|
493
682
|
extensionHeight: string | number;
|
|
494
683
|
floating: boolean;
|
|
495
684
|
modelValue: boolean;
|
|
496
|
-
}
|
|
685
|
+
}> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
686
|
+
$props: SlotsToProps<VToolbarSlots>;
|
|
687
|
+
});
|
|
497
688
|
declare type VAppBar = InstanceType<typeof VAppBar>;
|
|
498
689
|
|
|
499
690
|
declare type IconValue = string | JSXComponent;
|
|
@@ -745,8 +936,8 @@ declare const VAlert: vue.DefineComponent<{
|
|
|
745
936
|
rounded: string | number | boolean;
|
|
746
937
|
prominent: boolean;
|
|
747
938
|
density: Density;
|
|
748
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
749
939
|
modelValue: boolean;
|
|
940
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
750
941
|
closable: boolean;
|
|
751
942
|
closeIcon: IconValue;
|
|
752
943
|
closeLabel: string;
|
|
@@ -1132,7 +1323,7 @@ declare const VField: {
|
|
|
1132
1323
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1133
1324
|
focused: BooleanConstructor;
|
|
1134
1325
|
id: StringConstructor;
|
|
1135
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1326
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
1136
1327
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1137
1328
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1138
1329
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -1179,7 +1370,7 @@ declare const VField: {
|
|
|
1179
1370
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1180
1371
|
focused: BooleanConstructor;
|
|
1181
1372
|
id: StringConstructor;
|
|
1182
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1373
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
1183
1374
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1184
1375
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1185
1376
|
}, {
|
|
@@ -1188,7 +1379,7 @@ declare const VField: {
|
|
|
1188
1379
|
'click:control': (e: MouseEvent) => boolean;
|
|
1189
1380
|
'update:focused': (focused: boolean) => boolean;
|
|
1190
1381
|
'update:modelValue': (val: any) => boolean;
|
|
1191
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1382
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
1192
1383
|
reverse: boolean;
|
|
1193
1384
|
error: boolean;
|
|
1194
1385
|
active: boolean;
|
|
@@ -1251,7 +1442,7 @@ declare const VField: {
|
|
|
1251
1442
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1252
1443
|
focused: BooleanConstructor;
|
|
1253
1444
|
id: StringConstructor;
|
|
1254
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1445
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
1255
1446
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1256
1447
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1257
1448
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -1290,7 +1481,7 @@ declare const VField: {
|
|
|
1290
1481
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1291
1482
|
focused: BooleanConstructor;
|
|
1292
1483
|
id: StringConstructor;
|
|
1293
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1484
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
1294
1485
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1295
1486
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1296
1487
|
}, {
|
|
@@ -1299,7 +1490,7 @@ declare const VField: {
|
|
|
1299
1490
|
'click:control': (e: MouseEvent) => boolean;
|
|
1300
1491
|
'update:focused': (focused: boolean) => boolean;
|
|
1301
1492
|
'update:modelValue': (val: any) => boolean;
|
|
1302
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1493
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
1303
1494
|
reverse: boolean;
|
|
1304
1495
|
error: boolean;
|
|
1305
1496
|
active: boolean;
|
|
@@ -1516,15 +1707,15 @@ declare const VAutocomplete: {
|
|
|
1516
1707
|
default: string;
|
|
1517
1708
|
validator: (v: any) => boolean;
|
|
1518
1709
|
};
|
|
1710
|
+
modelValue: {
|
|
1711
|
+
type: vue.PropType<any>;
|
|
1712
|
+
default: any;
|
|
1713
|
+
};
|
|
1519
1714
|
variant: {
|
|
1520
1715
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
1521
1716
|
default: string;
|
|
1522
1717
|
validator: (v: any) => boolean;
|
|
1523
1718
|
};
|
|
1524
|
-
modelValue: {
|
|
1525
|
-
type: vue.PropType<any>;
|
|
1526
|
-
default: any;
|
|
1527
|
-
};
|
|
1528
1719
|
bgColor: StringConstructor;
|
|
1529
1720
|
prependIcon: vue.PropType<IconValue>;
|
|
1530
1721
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -1794,7 +1985,7 @@ declare const VAutocomplete: {
|
|
|
1794
1985
|
};
|
|
1795
1986
|
noFilter: BooleanConstructor;
|
|
1796
1987
|
search: StringConstructor;
|
|
1797
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
1988
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
1798
1989
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
1799
1990
|
"onUpdate:search"?: ((val: any) => any) | undefined;
|
|
1800
1991
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "loading" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
|
|
@@ -1859,15 +2050,15 @@ declare const VAutocomplete: {
|
|
|
1859
2050
|
default: string;
|
|
1860
2051
|
validator: (v: any) => boolean;
|
|
1861
2052
|
};
|
|
2053
|
+
modelValue: {
|
|
2054
|
+
type: vue.PropType<any>;
|
|
2055
|
+
default: any;
|
|
2056
|
+
};
|
|
1862
2057
|
variant: {
|
|
1863
2058
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
1864
2059
|
default: string;
|
|
1865
2060
|
validator: (v: any) => boolean;
|
|
1866
2061
|
};
|
|
1867
|
-
modelValue: {
|
|
1868
|
-
type: vue.PropType<any>;
|
|
1869
|
-
default: any;
|
|
1870
|
-
};
|
|
1871
2062
|
bgColor: StringConstructor;
|
|
1872
2063
|
prependIcon: vue.PropType<IconValue>;
|
|
1873
2064
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -2137,7 +2328,7 @@ declare const VAutocomplete: {
|
|
|
2137
2328
|
};
|
|
2138
2329
|
noFilter: BooleanConstructor;
|
|
2139
2330
|
search: StringConstructor;
|
|
2140
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
2331
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
2141
2332
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
2142
2333
|
"onUpdate:search"?: ((val: any) => any) | undefined;
|
|
2143
2334
|
}, {
|
|
@@ -2158,7 +2349,7 @@ declare const VAutocomplete: {
|
|
|
2158
2349
|
'update:search': (val: any) => boolean;
|
|
2159
2350
|
'update:modelValue': (val: any) => boolean;
|
|
2160
2351
|
'update:menu': (val: boolean) => boolean;
|
|
2161
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
2352
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "update:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
2162
2353
|
reverse: boolean;
|
|
2163
2354
|
type: string;
|
|
2164
2355
|
error: boolean;
|
|
@@ -2269,15 +2460,15 @@ declare const VAutocomplete: {
|
|
|
2269
2460
|
default: string;
|
|
2270
2461
|
validator: (v: any) => boolean;
|
|
2271
2462
|
};
|
|
2463
|
+
modelValue: {
|
|
2464
|
+
type: vue.PropType<any>;
|
|
2465
|
+
default: any;
|
|
2466
|
+
};
|
|
2272
2467
|
variant: {
|
|
2273
2468
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
2274
2469
|
default: string;
|
|
2275
2470
|
validator: (v: any) => boolean;
|
|
2276
2471
|
};
|
|
2277
|
-
modelValue: {
|
|
2278
|
-
type: vue.PropType<any>;
|
|
2279
|
-
default: any;
|
|
2280
|
-
};
|
|
2281
2472
|
bgColor: StringConstructor;
|
|
2282
2473
|
prependIcon: vue.PropType<IconValue>;
|
|
2283
2474
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -2547,7 +2738,7 @@ declare const VAutocomplete: {
|
|
|
2547
2738
|
};
|
|
2548
2739
|
noFilter: BooleanConstructor;
|
|
2549
2740
|
search: StringConstructor;
|
|
2550
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
2741
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
2551
2742
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
2552
2743
|
"onUpdate:search"?: ((val: any) => any) | undefined;
|
|
2553
2744
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -2616,15 +2807,15 @@ declare const VAutocomplete: {
|
|
|
2616
2807
|
default: string;
|
|
2617
2808
|
validator: (v: any) => boolean;
|
|
2618
2809
|
};
|
|
2810
|
+
modelValue: {
|
|
2811
|
+
type: vue.PropType<any>;
|
|
2812
|
+
default: any;
|
|
2813
|
+
};
|
|
2619
2814
|
variant: {
|
|
2620
2815
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
2621
2816
|
default: string;
|
|
2622
2817
|
validator: (v: any) => boolean;
|
|
2623
2818
|
};
|
|
2624
|
-
modelValue: {
|
|
2625
|
-
type: vue.PropType<any>;
|
|
2626
|
-
default: any;
|
|
2627
|
-
};
|
|
2628
2819
|
bgColor: StringConstructor;
|
|
2629
2820
|
prependIcon: vue.PropType<IconValue>;
|
|
2630
2821
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -2894,7 +3085,7 @@ declare const VAutocomplete: {
|
|
|
2894
3085
|
};
|
|
2895
3086
|
noFilter: BooleanConstructor;
|
|
2896
3087
|
search: StringConstructor;
|
|
2897
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
3088
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
2898
3089
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
2899
3090
|
"onUpdate:search"?: ((val: any) => any) | undefined;
|
|
2900
3091
|
}, {
|
|
@@ -2915,7 +3106,7 @@ declare const VAutocomplete: {
|
|
|
2915
3106
|
'update:search': (val: any) => boolean;
|
|
2916
3107
|
'update:modelValue': (val: any) => boolean;
|
|
2917
3108
|
'update:menu': (val: boolean) => boolean;
|
|
2918
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
3109
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "update:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
2919
3110
|
reverse: boolean;
|
|
2920
3111
|
type: string;
|
|
2921
3112
|
error: boolean;
|
|
@@ -4936,8 +5127,8 @@ declare const VChip: vue.DefineComponent<{
|
|
|
4936
5127
|
tag: string;
|
|
4937
5128
|
rounded: string | number | boolean;
|
|
4938
5129
|
density: Density;
|
|
4939
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
4940
5130
|
modelValue: boolean;
|
|
5131
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
4941
5132
|
ripple: boolean;
|
|
4942
5133
|
closable: boolean;
|
|
4943
5134
|
closeIcon: IconValue;
|
|
@@ -5023,8 +5214,8 @@ declare const VChipGroup: vue.DefineComponent<{
|
|
|
5023
5214
|
multiple: boolean;
|
|
5024
5215
|
tag: string;
|
|
5025
5216
|
column: boolean;
|
|
5026
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
5027
5217
|
modelValue: any;
|
|
5218
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
5028
5219
|
selectedClass: string;
|
|
5029
5220
|
valueComparator: typeof deepEqual;
|
|
5030
5221
|
}>;
|
|
@@ -5257,15 +5448,15 @@ declare const VCombobox: {
|
|
|
5257
5448
|
default: string;
|
|
5258
5449
|
validator: (v: any) => boolean;
|
|
5259
5450
|
};
|
|
5451
|
+
modelValue: {
|
|
5452
|
+
type: PropType<any>;
|
|
5453
|
+
default: any;
|
|
5454
|
+
};
|
|
5260
5455
|
variant: {
|
|
5261
5456
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
5262
5457
|
default: string;
|
|
5263
5458
|
validator: (v: any) => boolean;
|
|
5264
5459
|
};
|
|
5265
|
-
modelValue: {
|
|
5266
|
-
type: PropType<any>;
|
|
5267
|
-
default: any;
|
|
5268
|
-
};
|
|
5269
5460
|
bgColor: StringConstructor;
|
|
5270
5461
|
prependIcon: PropType<IconValue>;
|
|
5271
5462
|
appendIcon: PropType<IconValue>;
|
|
@@ -5541,7 +5732,7 @@ declare const VCombobox: {
|
|
|
5541
5732
|
};
|
|
5542
5733
|
noFilter: BooleanConstructor;
|
|
5543
5734
|
delimiters: PropType<string[]>;
|
|
5544
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
5735
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
5545
5736
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
5546
5737
|
"onUpdate:search"?: ((val: string) => any) | undefined;
|
|
5547
5738
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "loading" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
|
|
@@ -5606,15 +5797,15 @@ declare const VCombobox: {
|
|
|
5606
5797
|
default: string;
|
|
5607
5798
|
validator: (v: any) => boolean;
|
|
5608
5799
|
};
|
|
5800
|
+
modelValue: {
|
|
5801
|
+
type: PropType<any>;
|
|
5802
|
+
default: any;
|
|
5803
|
+
};
|
|
5609
5804
|
variant: {
|
|
5610
5805
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
5611
5806
|
default: string;
|
|
5612
5807
|
validator: (v: any) => boolean;
|
|
5613
5808
|
};
|
|
5614
|
-
modelValue: {
|
|
5615
|
-
type: PropType<any>;
|
|
5616
|
-
default: any;
|
|
5617
|
-
};
|
|
5618
5809
|
bgColor: StringConstructor;
|
|
5619
5810
|
prependIcon: PropType<IconValue>;
|
|
5620
5811
|
appendIcon: PropType<IconValue>;
|
|
@@ -5890,7 +6081,7 @@ declare const VCombobox: {
|
|
|
5890
6081
|
};
|
|
5891
6082
|
noFilter: BooleanConstructor;
|
|
5892
6083
|
delimiters: PropType<string[]>;
|
|
5893
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
6084
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
5894
6085
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
5895
6086
|
"onUpdate:search"?: ((val: string) => any) | undefined;
|
|
5896
6087
|
}, {
|
|
@@ -5910,7 +6101,7 @@ declare const VCombobox: {
|
|
|
5910
6101
|
'update:modelValue': (val: any) => boolean;
|
|
5911
6102
|
'update:search': (val: string) => boolean;
|
|
5912
6103
|
'update:menu': (val: boolean) => boolean;
|
|
5913
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
6104
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "update:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
5914
6105
|
reverse: boolean;
|
|
5915
6106
|
type: string;
|
|
5916
6107
|
error: boolean;
|
|
@@ -6021,15 +6212,15 @@ declare const VCombobox: {
|
|
|
6021
6212
|
default: string;
|
|
6022
6213
|
validator: (v: any) => boolean;
|
|
6023
6214
|
};
|
|
6215
|
+
modelValue: {
|
|
6216
|
+
type: PropType<any>;
|
|
6217
|
+
default: any;
|
|
6218
|
+
};
|
|
6024
6219
|
variant: {
|
|
6025
6220
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
6026
6221
|
default: string;
|
|
6027
6222
|
validator: (v: any) => boolean;
|
|
6028
6223
|
};
|
|
6029
|
-
modelValue: {
|
|
6030
|
-
type: PropType<any>;
|
|
6031
|
-
default: any;
|
|
6032
|
-
};
|
|
6033
6224
|
bgColor: StringConstructor;
|
|
6034
6225
|
prependIcon: PropType<IconValue>;
|
|
6035
6226
|
appendIcon: PropType<IconValue>;
|
|
@@ -6305,7 +6496,7 @@ declare const VCombobox: {
|
|
|
6305
6496
|
};
|
|
6306
6497
|
noFilter: BooleanConstructor;
|
|
6307
6498
|
delimiters: PropType<string[]>;
|
|
6308
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
6499
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
6309
6500
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
6310
6501
|
"onUpdate:search"?: ((val: string) => any) | undefined;
|
|
6311
6502
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -6373,15 +6564,15 @@ declare const VCombobox: {
|
|
|
6373
6564
|
default: string;
|
|
6374
6565
|
validator: (v: any) => boolean;
|
|
6375
6566
|
};
|
|
6567
|
+
modelValue: {
|
|
6568
|
+
type: PropType<any>;
|
|
6569
|
+
default: any;
|
|
6570
|
+
};
|
|
6376
6571
|
variant: {
|
|
6377
6572
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
6378
6573
|
default: string;
|
|
6379
6574
|
validator: (v: any) => boolean;
|
|
6380
6575
|
};
|
|
6381
|
-
modelValue: {
|
|
6382
|
-
type: PropType<any>;
|
|
6383
|
-
default: any;
|
|
6384
|
-
};
|
|
6385
6576
|
bgColor: StringConstructor;
|
|
6386
6577
|
prependIcon: PropType<IconValue>;
|
|
6387
6578
|
appendIcon: PropType<IconValue>;
|
|
@@ -6657,7 +6848,7 @@ declare const VCombobox: {
|
|
|
6657
6848
|
};
|
|
6658
6849
|
noFilter: BooleanConstructor;
|
|
6659
6850
|
delimiters: PropType<string[]>;
|
|
6660
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
6851
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
6661
6852
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
6662
6853
|
"onUpdate:search"?: ((val: string) => any) | undefined;
|
|
6663
6854
|
}, {
|
|
@@ -6677,7 +6868,7 @@ declare const VCombobox: {
|
|
|
6677
6868
|
'update:modelValue': (val: any) => boolean;
|
|
6678
6869
|
'update:search': (val: string) => boolean;
|
|
6679
6870
|
'update:menu': (val: boolean) => boolean;
|
|
6680
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
6871
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "update:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
6681
6872
|
reverse: boolean;
|
|
6682
6873
|
type: string;
|
|
6683
6874
|
error: boolean;
|
|
@@ -9315,8 +9506,8 @@ declare const VExpansionPanels: vue.DefineComponent<{
|
|
|
9315
9506
|
multiple: boolean;
|
|
9316
9507
|
readonly: boolean;
|
|
9317
9508
|
tag: string;
|
|
9318
|
-
variant: "default" | "inset" | "accordion" | "popout";
|
|
9319
9509
|
modelValue: any;
|
|
9510
|
+
variant: "default" | "inset" | "accordion" | "popout";
|
|
9320
9511
|
}>;
|
|
9321
9512
|
declare type VExpansionPanels = InstanceType<typeof VExpansionPanels>;
|
|
9322
9513
|
|
|
@@ -9786,7 +9977,7 @@ declare const VFileInput: vue.DefineComponent<{
|
|
|
9786
9977
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
9787
9978
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
9788
9979
|
};
|
|
9789
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
9980
|
+
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
9790
9981
|
'click:control': (e: MouseEvent) => true;
|
|
9791
9982
|
'update:modelValue': (files: File[]) => true;
|
|
9792
9983
|
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
@@ -9899,8 +10090,8 @@ declare const VFileInput: vue.DefineComponent<{
|
|
|
9899
10090
|
messages: string | string[];
|
|
9900
10091
|
counter: boolean;
|
|
9901
10092
|
density: Density;
|
|
9902
|
-
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
9903
10093
|
modelValue: File[];
|
|
10094
|
+
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
9904
10095
|
prependIcon: (string & {}) | IconValue;
|
|
9905
10096
|
clearIcon: IconValue;
|
|
9906
10097
|
focused: boolean;
|
|
@@ -14318,8 +14509,8 @@ declare const VPagination: vue.DefineComponent<{
|
|
|
14318
14509
|
ellipsis: string;
|
|
14319
14510
|
rounded: string | number | boolean;
|
|
14320
14511
|
density: Density;
|
|
14321
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
14322
14512
|
modelValue: number;
|
|
14513
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
14323
14514
|
nextIcon: IconValue;
|
|
14324
14515
|
prevIcon: IconValue;
|
|
14325
14516
|
firstIcon: IconValue;
|
|
@@ -15459,15 +15650,15 @@ declare const VSelect: {
|
|
|
15459
15650
|
default: string;
|
|
15460
15651
|
validator: (v: any) => boolean;
|
|
15461
15652
|
};
|
|
15653
|
+
modelValue: {
|
|
15654
|
+
type: PropType<any>;
|
|
15655
|
+
default: any;
|
|
15656
|
+
};
|
|
15462
15657
|
variant: {
|
|
15463
15658
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
15464
15659
|
default: string;
|
|
15465
15660
|
validator: (v: any) => boolean;
|
|
15466
15661
|
};
|
|
15467
|
-
modelValue: {
|
|
15468
|
-
type: PropType<any>;
|
|
15469
|
-
default: any;
|
|
15470
|
-
};
|
|
15471
15662
|
bgColor: StringConstructor;
|
|
15472
15663
|
prependIcon: PropType<IconValue>;
|
|
15473
15664
|
appendIcon: PropType<IconValue>;
|
|
@@ -15725,7 +15916,7 @@ declare const VSelect: {
|
|
|
15725
15916
|
default: string;
|
|
15726
15917
|
};
|
|
15727
15918
|
openOnClear: BooleanConstructor;
|
|
15728
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
15919
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
15729
15920
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
15730
15921
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "loading" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear">;
|
|
15731
15922
|
$attrs: {
|
|
@@ -15801,15 +15992,15 @@ declare const VSelect: {
|
|
|
15801
15992
|
default: string;
|
|
15802
15993
|
validator: (v: any) => boolean;
|
|
15803
15994
|
};
|
|
15995
|
+
modelValue: {
|
|
15996
|
+
type: PropType<any>;
|
|
15997
|
+
default: any;
|
|
15998
|
+
};
|
|
15804
15999
|
variant: {
|
|
15805
16000
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
15806
16001
|
default: string;
|
|
15807
16002
|
validator: (v: any) => boolean;
|
|
15808
16003
|
};
|
|
15809
|
-
modelValue: {
|
|
15810
|
-
type: PropType<any>;
|
|
15811
|
-
default: any;
|
|
15812
|
-
};
|
|
15813
16004
|
bgColor: StringConstructor;
|
|
15814
16005
|
prependIcon: PropType<IconValue>;
|
|
15815
16006
|
appendIcon: PropType<IconValue>;
|
|
@@ -16067,7 +16258,7 @@ declare const VSelect: {
|
|
|
16067
16258
|
default: string;
|
|
16068
16259
|
};
|
|
16069
16260
|
openOnClear: BooleanConstructor;
|
|
16070
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
16261
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
16071
16262
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
16072
16263
|
}, {
|
|
16073
16264
|
menu: vue.Ref<boolean> & {
|
|
@@ -16077,7 +16268,7 @@ declare const VSelect: {
|
|
|
16077
16268
|
} & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
16078
16269
|
'update:modelValue': (val: any) => boolean;
|
|
16079
16270
|
'update:menu': (val: boolean) => boolean;
|
|
16080
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
16271
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "update:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
16081
16272
|
reverse: boolean;
|
|
16082
16273
|
type: string;
|
|
16083
16274
|
error: boolean;
|
|
@@ -16203,15 +16394,15 @@ declare const VSelect: {
|
|
|
16203
16394
|
default: string;
|
|
16204
16395
|
validator: (v: any) => boolean;
|
|
16205
16396
|
};
|
|
16397
|
+
modelValue: {
|
|
16398
|
+
type: PropType<any>;
|
|
16399
|
+
default: any;
|
|
16400
|
+
};
|
|
16206
16401
|
variant: {
|
|
16207
16402
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
16208
16403
|
default: string;
|
|
16209
16404
|
validator: (v: any) => boolean;
|
|
16210
16405
|
};
|
|
16211
|
-
modelValue: {
|
|
16212
|
-
type: PropType<any>;
|
|
16213
|
-
default: any;
|
|
16214
|
-
};
|
|
16215
16406
|
bgColor: StringConstructor;
|
|
16216
16407
|
prependIcon: PropType<IconValue>;
|
|
16217
16408
|
appendIcon: PropType<IconValue>;
|
|
@@ -16469,7 +16660,7 @@ declare const VSelect: {
|
|
|
16469
16660
|
default: string;
|
|
16470
16661
|
};
|
|
16471
16662
|
openOnClear: BooleanConstructor;
|
|
16472
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
16663
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
16473
16664
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
16474
16665
|
} & vue.ShallowUnwrapRef<{
|
|
16475
16666
|
menu: vue.Ref<boolean> & {
|
|
@@ -16540,15 +16731,15 @@ declare const VSelect: {
|
|
|
16540
16731
|
default: string;
|
|
16541
16732
|
validator: (v: any) => boolean;
|
|
16542
16733
|
};
|
|
16734
|
+
modelValue: {
|
|
16735
|
+
type: PropType<any>;
|
|
16736
|
+
default: any;
|
|
16737
|
+
};
|
|
16543
16738
|
variant: {
|
|
16544
16739
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
16545
16740
|
default: string;
|
|
16546
16741
|
validator: (v: any) => boolean;
|
|
16547
16742
|
};
|
|
16548
|
-
modelValue: {
|
|
16549
|
-
type: PropType<any>;
|
|
16550
|
-
default: any;
|
|
16551
|
-
};
|
|
16552
16743
|
bgColor: StringConstructor;
|
|
16553
16744
|
prependIcon: PropType<IconValue>;
|
|
16554
16745
|
appendIcon: PropType<IconValue>;
|
|
@@ -16806,7 +16997,7 @@ declare const VSelect: {
|
|
|
16806
16997
|
default: string;
|
|
16807
16998
|
};
|
|
16808
16999
|
openOnClear: BooleanConstructor;
|
|
16809
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
17000
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
16810
17001
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
16811
17002
|
}, {
|
|
16812
17003
|
menu: vue.Ref<boolean> & {
|
|
@@ -16816,7 +17007,7 @@ declare const VSelect: {
|
|
|
16816
17007
|
} & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
16817
17008
|
'update:modelValue': (val: any) => boolean;
|
|
16818
17009
|
'update:menu': (val: boolean) => boolean;
|
|
16819
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
17010
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "update:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
16820
17011
|
reverse: boolean;
|
|
16821
17012
|
type: string;
|
|
16822
17013
|
error: boolean;
|
|
@@ -17096,7 +17287,7 @@ declare const VSelectionControl: {
|
|
|
17096
17287
|
trueValue: null;
|
|
17097
17288
|
falseValue: null;
|
|
17098
17289
|
value: null;
|
|
17099
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17290
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:input">>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "inline" | "error" | "disabled" | "multiple" | "readonly" | "density" | "ripple" | "valueComparator">;
|
|
17100
17291
|
$attrs: {
|
|
17101
17292
|
[x: string]: unknown;
|
|
17102
17293
|
};
|
|
@@ -17144,12 +17335,12 @@ declare const VSelectionControl: {
|
|
|
17144
17335
|
trueValue: null;
|
|
17145
17336
|
falseValue: null;
|
|
17146
17337
|
value: null;
|
|
17147
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17338
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:input">>>, {
|
|
17148
17339
|
isFocused: Ref<boolean>;
|
|
17149
17340
|
input: Ref<HTMLInputElement | undefined>;
|
|
17150
17341
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
17151
17342
|
'update:modelValue': (val: any) => boolean;
|
|
17152
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17343
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:input">, string, {
|
|
17153
17344
|
inline: boolean;
|
|
17154
17345
|
error: boolean;
|
|
17155
17346
|
disabled: boolean;
|
|
@@ -17212,7 +17403,7 @@ declare const VSelectionControl: {
|
|
|
17212
17403
|
trueValue: null;
|
|
17213
17404
|
falseValue: null;
|
|
17214
17405
|
value: null;
|
|
17215
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17406
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:input">>> & vue.ShallowUnwrapRef<{
|
|
17216
17407
|
isFocused: Ref<boolean>;
|
|
17217
17408
|
input: Ref<HTMLInputElement | undefined>;
|
|
17218
17409
|
}> & {} & vue.ComponentCustomProperties;
|
|
@@ -17253,12 +17444,12 @@ declare const VSelectionControl: {
|
|
|
17253
17444
|
trueValue: null;
|
|
17254
17445
|
falseValue: null;
|
|
17255
17446
|
value: null;
|
|
17256
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17447
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:input">>>, {
|
|
17257
17448
|
isFocused: Ref<boolean>;
|
|
17258
17449
|
input: Ref<HTMLInputElement | undefined>;
|
|
17259
17450
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
17260
17451
|
'update:modelValue': (val: any) => boolean;
|
|
17261
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17452
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:input">, string, {
|
|
17262
17453
|
inline: boolean;
|
|
17263
17454
|
error: boolean;
|
|
17264
17455
|
disabled: boolean;
|
|
@@ -17971,8 +18162,8 @@ declare const VSnackbar: {
|
|
|
17971
18162
|
timeout: string | number;
|
|
17972
18163
|
vertical: boolean;
|
|
17973
18164
|
rounded: string | number | boolean;
|
|
17974
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
17975
18165
|
modelValue: boolean;
|
|
18166
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
17976
18167
|
activatorProps: Record<string, any>;
|
|
17977
18168
|
openOnClick: boolean;
|
|
17978
18169
|
openOnHover: boolean;
|
|
@@ -18077,7 +18268,7 @@ declare const VSnackbar: {
|
|
|
18077
18268
|
vertical: BooleanConstructor;
|
|
18078
18269
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">>> & {
|
|
18079
18270
|
"onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
|
|
18080
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "timeout" | "vertical" | "rounded" | "
|
|
18271
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "timeout" | "vertical" | "rounded" | "modelValue" | "variant" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "closeOnBack" | "contained" | "multiLine">;
|
|
18081
18272
|
$attrs: {
|
|
18082
18273
|
[x: string]: unknown;
|
|
18083
18274
|
};
|
|
@@ -18570,8 +18761,8 @@ declare const VSnackbar: {
|
|
|
18570
18761
|
timeout: string | number;
|
|
18571
18762
|
vertical: boolean;
|
|
18572
18763
|
rounded: string | number | boolean;
|
|
18573
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
18574
18764
|
modelValue: boolean;
|
|
18765
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
18575
18766
|
activatorProps: Record<string, any>;
|
|
18576
18767
|
openOnClick: boolean;
|
|
18577
18768
|
openOnHover: boolean;
|
|
@@ -19550,8 +19741,8 @@ declare const VSnackbar: {
|
|
|
19550
19741
|
timeout: string | number;
|
|
19551
19742
|
vertical: boolean;
|
|
19552
19743
|
rounded: string | number | boolean;
|
|
19553
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
19554
19744
|
modelValue: boolean;
|
|
19745
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
19555
19746
|
activatorProps: Record<string, any>;
|
|
19556
19747
|
openOnClick: boolean;
|
|
19557
19748
|
openOnHover: boolean;
|
|
@@ -20327,7 +20518,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
20327
20518
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
20328
20519
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
20329
20520
|
};
|
|
20330
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
20521
|
+
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
20331
20522
|
'click:control': (e: MouseEvent) => true;
|
|
20332
20523
|
'update:focused': (focused: boolean) => true;
|
|
20333
20524
|
'update:modelValue': (val: string) => true;
|
|
@@ -20886,7 +21077,7 @@ declare const VTextField: {
|
|
|
20886
21077
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
20887
21078
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
20888
21079
|
};
|
|
20889
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
21080
|
+
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules")>, `$${any}`> & Omit<Omit<{
|
|
20890
21081
|
$: vue.ComponentInternalInstance;
|
|
20891
21082
|
$data: {};
|
|
20892
21083
|
$props: Partial<{
|
|
@@ -20932,7 +21123,7 @@ declare const VTextField: {
|
|
|
20932
21123
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
20933
21124
|
focused: BooleanConstructor;
|
|
20934
21125
|
id: StringConstructor;
|
|
20935
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21126
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
20936
21127
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
20937
21128
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
20938
21129
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -20979,7 +21170,7 @@ declare const VTextField: {
|
|
|
20979
21170
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
20980
21171
|
focused: BooleanConstructor;
|
|
20981
21172
|
id: StringConstructor;
|
|
20982
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21173
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
20983
21174
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
20984
21175
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
20985
21176
|
}, {
|
|
@@ -20988,7 +21179,7 @@ declare const VTextField: {
|
|
|
20988
21179
|
'click:control': (e: MouseEvent) => boolean;
|
|
20989
21180
|
'update:focused': (focused: boolean) => boolean;
|
|
20990
21181
|
'update:modelValue': (val: any) => boolean;
|
|
20991
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21182
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
20992
21183
|
reverse: boolean;
|
|
20993
21184
|
error: boolean;
|
|
20994
21185
|
active: boolean;
|
|
@@ -21051,7 +21242,7 @@ declare const VTextField: {
|
|
|
21051
21242
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21052
21243
|
focused: BooleanConstructor;
|
|
21053
21244
|
id: StringConstructor;
|
|
21054
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21245
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
21055
21246
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21056
21247
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21057
21248
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -21085,7 +21276,7 @@ declare const VTextField: {
|
|
|
21085
21276
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
21086
21277
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
21087
21278
|
};
|
|
21088
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "
|
|
21279
|
+
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
21089
21280
|
'click:control': (e: MouseEvent) => boolean;
|
|
21090
21281
|
'click:input': (e: MouseEvent) => boolean;
|
|
21091
21282
|
'update:focused': (focused: boolean) => boolean;
|
|
@@ -21441,7 +21632,7 @@ declare const VTextField: {
|
|
|
21441
21632
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
21442
21633
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
21443
21634
|
};
|
|
21444
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
21635
|
+
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules")>, `$${any}`> & Omit<Omit<{
|
|
21445
21636
|
$: vue.ComponentInternalInstance;
|
|
21446
21637
|
$data: {};
|
|
21447
21638
|
$props: Partial<{
|
|
@@ -21487,7 +21678,7 @@ declare const VTextField: {
|
|
|
21487
21678
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21488
21679
|
focused: BooleanConstructor;
|
|
21489
21680
|
id: StringConstructor;
|
|
21490
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21681
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
21491
21682
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21492
21683
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21493
21684
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -21534,7 +21725,7 @@ declare const VTextField: {
|
|
|
21534
21725
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21535
21726
|
focused: BooleanConstructor;
|
|
21536
21727
|
id: StringConstructor;
|
|
21537
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21728
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
21538
21729
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21539
21730
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21540
21731
|
}, {
|
|
@@ -21543,7 +21734,7 @@ declare const VTextField: {
|
|
|
21543
21734
|
'click:control': (e: MouseEvent) => boolean;
|
|
21544
21735
|
'update:focused': (focused: boolean) => boolean;
|
|
21545
21736
|
'update:modelValue': (val: any) => boolean;
|
|
21546
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21737
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
21547
21738
|
reverse: boolean;
|
|
21548
21739
|
error: boolean;
|
|
21549
21740
|
active: boolean;
|
|
@@ -21606,7 +21797,7 @@ declare const VTextField: {
|
|
|
21606
21797
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21607
21798
|
focused: BooleanConstructor;
|
|
21608
21799
|
id: StringConstructor;
|
|
21609
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21800
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
21610
21801
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21611
21802
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21612
21803
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -21640,7 +21831,7 @@ declare const VTextField: {
|
|
|
21640
21831
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
21641
21832
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
21642
21833
|
};
|
|
21643
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "
|
|
21834
|
+
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
21644
21835
|
__isFragment?: undefined;
|
|
21645
21836
|
__isTeleport?: undefined;
|
|
21646
21837
|
__isSuspense?: undefined;
|
|
@@ -21950,7 +22141,7 @@ declare const VTextField: {
|
|
|
21950
22141
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
21951
22142
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
21952
22143
|
};
|
|
21953
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
22144
|
+
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules")>, `$${any}`> & Omit<Omit<{
|
|
21954
22145
|
$: vue.ComponentInternalInstance;
|
|
21955
22146
|
$data: {};
|
|
21956
22147
|
$props: Partial<{
|
|
@@ -21996,7 +22187,7 @@ declare const VTextField: {
|
|
|
21996
22187
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21997
22188
|
focused: BooleanConstructor;
|
|
21998
22189
|
id: StringConstructor;
|
|
21999
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
22190
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
22000
22191
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22001
22192
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22002
22193
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -22043,7 +22234,7 @@ declare const VTextField: {
|
|
|
22043
22234
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
22044
22235
|
focused: BooleanConstructor;
|
|
22045
22236
|
id: StringConstructor;
|
|
22046
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
22237
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
22047
22238
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22048
22239
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22049
22240
|
}, {
|
|
@@ -22052,7 +22243,7 @@ declare const VTextField: {
|
|
|
22052
22243
|
'click:control': (e: MouseEvent) => boolean;
|
|
22053
22244
|
'update:focused': (focused: boolean) => boolean;
|
|
22054
22245
|
'update:modelValue': (val: any) => boolean;
|
|
22055
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
22246
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
22056
22247
|
reverse: boolean;
|
|
22057
22248
|
error: boolean;
|
|
22058
22249
|
active: boolean;
|
|
@@ -22115,7 +22306,7 @@ declare const VTextField: {
|
|
|
22115
22306
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
22116
22307
|
focused: BooleanConstructor;
|
|
22117
22308
|
id: StringConstructor;
|
|
22118
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
22309
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
22119
22310
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22120
22311
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22121
22312
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -22149,7 +22340,7 @@ declare const VTextField: {
|
|
|
22149
22340
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22150
22341
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
22151
22342
|
};
|
|
22152
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "
|
|
22343
|
+
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
22153
22344
|
'click:control': (e: MouseEvent) => boolean;
|
|
22154
22345
|
'click:input': (e: MouseEvent) => boolean;
|
|
22155
22346
|
'update:focused': (focused: boolean) => boolean;
|