vuetify 3.5.0 → 3.5.2
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/dist/json/attributes.json +15 -27
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +156 -156
- package/dist/json/tags.json +0 -3
- package/dist/json/web-types.json +47 -65
- package/dist/vuetify-labs.css +1945 -1958
- package/dist/vuetify-labs.d.ts +59 -80
- package/dist/vuetify-labs.esm.js +28 -26
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +28 -26
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1257 -1270
- package/dist/vuetify.d.ts +99 -120
- package/dist/vuetify.esm.js +28 -26
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +28 -26
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +22 -23
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VChipGroup/VChipGroup.mjs +1 -2
- package/lib/components/VChipGroup/VChipGroup.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPickerEdit.mjs +1 -1
- package/lib/components/VColorPicker/VColorPickerEdit.mjs.map +1 -1
- package/lib/components/VColorPicker/util/index.mjs +1 -1
- package/lib/components/VColorPicker/util/index.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +2 -3
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +45 -63
- package/lib/components/VLabel/VLabel.mjs +5 -4
- package/lib/components/VLabel/VLabel.mjs.map +1 -1
- package/lib/components/VLabel/index.d.mts +6 -9
- package/lib/components/VMenu/VMenu.mjs +1 -0
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VOverlay/scrollStrategies.mjs +3 -0
- package/lib/components/VOverlay/scrollStrategies.mjs.map +1 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs +4 -2
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VTable/VTable.css +15 -28
- package/lib/components/VTable/VTable.sass +6 -13
- package/lib/components/VTable/_variables.scss +1 -1
- package/lib/components/VWindow/VWindow.css +1 -1
- package/lib/components/VWindow/VWindow.sass +1 -1
- package/lib/components/index.d.mts +51 -72
- package/lib/composables/calendar.mjs +1 -1
- package/lib/composables/calendar.mjs.map +1 -1
- package/lib/composables/date/adapters/vuetify.mjs +2 -8
- package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
- package/lib/composables/group.mjs +4 -1
- package/lib/composables/group.mjs.map +1 -1
- package/lib/composables/validation.mjs +1 -1
- package/lib/composables/validation.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +48 -48
- package/lib/labs/VCalendar/index.d.mts +8 -8
- package/lib/labs/components.d.mts +8 -8
- package/package.json +2 -2
package/dist/vuetify.d.ts
CHANGED
|
@@ -26450,7 +26450,6 @@ declare const VDatePicker: {
|
|
|
26450
26450
|
style: vue.StyleValue;
|
|
26451
26451
|
title: string;
|
|
26452
26452
|
disabled: boolean;
|
|
26453
|
-
range: boolean;
|
|
26454
26453
|
tag: string;
|
|
26455
26454
|
landscape: boolean;
|
|
26456
26455
|
nextIcon: string;
|
|
@@ -26484,7 +26483,7 @@ declare const VDatePicker: {
|
|
|
26484
26483
|
theme?: string | undefined;
|
|
26485
26484
|
rounded?: string | number | boolean | undefined;
|
|
26486
26485
|
bgColor?: string | undefined;
|
|
26487
|
-
allowedDates?:
|
|
26486
|
+
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
26488
26487
|
displayValue?: unknown;
|
|
26489
26488
|
} & {
|
|
26490
26489
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
|
@@ -26500,7 +26499,6 @@ declare const VDatePicker: {
|
|
|
26500
26499
|
style: vue.StyleValue;
|
|
26501
26500
|
title: string;
|
|
26502
26501
|
disabled: boolean;
|
|
26503
|
-
range: boolean;
|
|
26504
26502
|
tag: string;
|
|
26505
26503
|
landscape: boolean;
|
|
26506
26504
|
nextIcon: string;
|
|
@@ -26534,7 +26532,7 @@ declare const VDatePicker: {
|
|
|
26534
26532
|
theme?: string | undefined;
|
|
26535
26533
|
rounded?: string | number | boolean | undefined;
|
|
26536
26534
|
bgColor?: string | undefined;
|
|
26537
|
-
allowedDates?:
|
|
26535
|
+
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
26538
26536
|
displayValue?: unknown;
|
|
26539
26537
|
} & {
|
|
26540
26538
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
|
@@ -26546,7 +26544,6 @@ declare const VDatePicker: {
|
|
|
26546
26544
|
style: vue.StyleValue;
|
|
26547
26545
|
title: string;
|
|
26548
26546
|
disabled: boolean;
|
|
26549
|
-
range: boolean;
|
|
26550
26547
|
tag: string;
|
|
26551
26548
|
landscape: boolean;
|
|
26552
26549
|
rounded: string | number | boolean;
|
|
@@ -26587,7 +26584,6 @@ declare const VDatePicker: {
|
|
|
26587
26584
|
style: vue.StyleValue;
|
|
26588
26585
|
title: string;
|
|
26589
26586
|
disabled: boolean;
|
|
26590
|
-
range: boolean;
|
|
26591
26587
|
tag: string;
|
|
26592
26588
|
landscape: boolean;
|
|
26593
26589
|
nextIcon: string;
|
|
@@ -26621,7 +26617,7 @@ declare const VDatePicker: {
|
|
|
26621
26617
|
theme?: string | undefined;
|
|
26622
26618
|
rounded?: string | number | boolean | undefined;
|
|
26623
26619
|
bgColor?: string | undefined;
|
|
26624
|
-
allowedDates?:
|
|
26620
|
+
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
26625
26621
|
displayValue?: unknown;
|
|
26626
26622
|
} & {
|
|
26627
26623
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
|
@@ -26633,7 +26629,6 @@ declare const VDatePicker: {
|
|
|
26633
26629
|
style: vue.StyleValue;
|
|
26634
26630
|
title: string;
|
|
26635
26631
|
disabled: boolean;
|
|
26636
|
-
range: boolean;
|
|
26637
26632
|
tag: string;
|
|
26638
26633
|
landscape: boolean;
|
|
26639
26634
|
rounded: string | number | boolean;
|
|
@@ -26655,7 +26650,6 @@ declare const VDatePicker: {
|
|
|
26655
26650
|
style: vue.StyleValue;
|
|
26656
26651
|
title: string;
|
|
26657
26652
|
disabled: boolean;
|
|
26658
|
-
range: boolean;
|
|
26659
26653
|
tag: string;
|
|
26660
26654
|
landscape: boolean;
|
|
26661
26655
|
nextIcon: string;
|
|
@@ -26689,7 +26683,7 @@ declare const VDatePicker: {
|
|
|
26689
26683
|
theme?: string | undefined;
|
|
26690
26684
|
rounded?: string | number | boolean | undefined;
|
|
26691
26685
|
bgColor?: string | undefined;
|
|
26692
|
-
allowedDates?:
|
|
26686
|
+
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
26693
26687
|
displayValue?: unknown;
|
|
26694
26688
|
} & {
|
|
26695
26689
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
|
@@ -26706,7 +26700,6 @@ declare const VDatePicker: {
|
|
|
26706
26700
|
style: vue.StyleValue;
|
|
26707
26701
|
title: string;
|
|
26708
26702
|
disabled: boolean;
|
|
26709
|
-
range: boolean;
|
|
26710
26703
|
tag: string;
|
|
26711
26704
|
landscape: boolean;
|
|
26712
26705
|
rounded: string | number | boolean;
|
|
@@ -26735,13 +26728,13 @@ declare const VDatePicker: {
|
|
|
26735
26728
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
26736
26729
|
[key: string]: any;
|
|
26737
26730
|
}>[];
|
|
26738
|
-
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T, Multiple extends boolean = false>(props: {
|
|
26739
|
-
modelValue?:
|
|
26740
|
-
'onUpdate:modelValue'?: ((value:
|
|
26731
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T, Multiple extends number | boolean | "range" | (string & {}) = false, TModel = Multiple extends string | number | true ? T[] : T>(props: {
|
|
26732
|
+
modelValue?: TModel | undefined;
|
|
26733
|
+
'onUpdate:modelValue'?: ((value: TModel) => void) | undefined;
|
|
26741
26734
|
multiple?: Multiple | undefined;
|
|
26742
26735
|
}, slots: VDatePickerSlots) => GenericProps<{
|
|
26743
|
-
modelValue?:
|
|
26744
|
-
'onUpdate:modelValue'?: ((value:
|
|
26736
|
+
modelValue?: TModel | undefined;
|
|
26737
|
+
'onUpdate:modelValue'?: ((value: TModel) => void) | undefined;
|
|
26745
26738
|
multiple?: Multiple | undefined;
|
|
26746
26739
|
}, VDatePickerSlots>) & FilterPropsOptions<{
|
|
26747
26740
|
modelValue: null;
|
|
@@ -26785,7 +26778,7 @@ declare const VDatePicker: {
|
|
|
26785
26778
|
hideHeader: BooleanConstructor;
|
|
26786
26779
|
max: vue.PropType<unknown>;
|
|
26787
26780
|
min: vue.PropType<unknown>;
|
|
26788
|
-
allowedDates:
|
|
26781
|
+
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
26789
26782
|
disabled: BooleanConstructor;
|
|
26790
26783
|
displayValue: vue.PropType<unknown>;
|
|
26791
26784
|
month: (StringConstructor | NumberConstructor)[];
|
|
@@ -26809,8 +26802,7 @@ declare const VDatePicker: {
|
|
|
26809
26802
|
default: () => number[];
|
|
26810
26803
|
};
|
|
26811
26804
|
hideWeekdays: BooleanConstructor;
|
|
26812
|
-
multiple: vue.PropType<
|
|
26813
|
-
range: BooleanConstructor;
|
|
26805
|
+
multiple: vue.PropType<number | boolean | "range" | (string & {})>;
|
|
26814
26806
|
showWeek: BooleanConstructor;
|
|
26815
26807
|
active: {
|
|
26816
26808
|
type: vue.PropType<string | string[]>;
|
|
@@ -26879,7 +26871,7 @@ declare const VDatePicker: {
|
|
|
26879
26871
|
hideHeader: BooleanConstructor;
|
|
26880
26872
|
max: vue.PropType<unknown>;
|
|
26881
26873
|
min: vue.PropType<unknown>;
|
|
26882
|
-
allowedDates:
|
|
26874
|
+
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
26883
26875
|
disabled: BooleanConstructor;
|
|
26884
26876
|
displayValue: vue.PropType<unknown>;
|
|
26885
26877
|
month: (StringConstructor | NumberConstructor)[];
|
|
@@ -26903,8 +26895,7 @@ declare const VDatePicker: {
|
|
|
26903
26895
|
default: () => number[];
|
|
26904
26896
|
};
|
|
26905
26897
|
hideWeekdays: BooleanConstructor;
|
|
26906
|
-
multiple: vue.PropType<
|
|
26907
|
-
range: BooleanConstructor;
|
|
26898
|
+
multiple: vue.PropType<number | boolean | "range" | (string & {})>;
|
|
26908
26899
|
showWeek: BooleanConstructor;
|
|
26909
26900
|
active: {
|
|
26910
26901
|
type: vue.PropType<string | string[]>;
|
|
@@ -27290,7 +27281,6 @@ type VDatePickerHeader = InstanceType<typeof VDatePickerHeader>;
|
|
|
27290
27281
|
declare const VDatePickerMonth: {
|
|
27291
27282
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
27292
27283
|
disabled: boolean;
|
|
27293
|
-
range: boolean;
|
|
27294
27284
|
showAdjacentMonths: boolean;
|
|
27295
27285
|
weekdays: number[];
|
|
27296
27286
|
hideWeekdays: boolean;
|
|
@@ -27299,11 +27289,11 @@ declare const VDatePickerMonth: {
|
|
|
27299
27289
|
max?: unknown;
|
|
27300
27290
|
min?: unknown;
|
|
27301
27291
|
color?: string | undefined;
|
|
27302
|
-
multiple?:
|
|
27292
|
+
multiple?: number | boolean | "range" | (string & {}) | undefined;
|
|
27303
27293
|
month?: string | number | undefined;
|
|
27304
27294
|
year?: string | number | undefined;
|
|
27305
27295
|
modelValue?: unknown[] | undefined;
|
|
27306
|
-
allowedDates?:
|
|
27296
|
+
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
27307
27297
|
displayValue?: unknown;
|
|
27308
27298
|
} & {
|
|
27309
27299
|
$children?: {} | vue.VNodeChild | {
|
|
@@ -27333,16 +27323,15 @@ declare const VDatePickerMonth: {
|
|
|
27333
27323
|
i: number;
|
|
27334
27324
|
}) => vue.VNodeChild) | undefined;
|
|
27335
27325
|
} & {
|
|
27336
|
-
"onUpdate:modelValue"?: ((date:
|
|
27337
|
-
"onUpdate:month"?: ((date:
|
|
27338
|
-
"onUpdate:year"?: ((date:
|
|
27326
|
+
"onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
|
|
27327
|
+
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
27328
|
+
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
27339
27329
|
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
27340
|
-
'update:modelValue': (date:
|
|
27341
|
-
'update:month': (date:
|
|
27342
|
-
'update:year': (date:
|
|
27330
|
+
'update:modelValue': (date: unknown) => true;
|
|
27331
|
+
'update:month': (date: number) => true;
|
|
27332
|
+
'update:year': (date: number) => true;
|
|
27343
27333
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
27344
27334
|
disabled: boolean;
|
|
27345
|
-
range: boolean;
|
|
27346
27335
|
showAdjacentMonths: boolean;
|
|
27347
27336
|
weekdays: number[];
|
|
27348
27337
|
hideWeekdays: boolean;
|
|
@@ -27351,11 +27340,11 @@ declare const VDatePickerMonth: {
|
|
|
27351
27340
|
max?: unknown;
|
|
27352
27341
|
min?: unknown;
|
|
27353
27342
|
color?: string | undefined;
|
|
27354
|
-
multiple?:
|
|
27343
|
+
multiple?: number | boolean | "range" | (string & {}) | undefined;
|
|
27355
27344
|
month?: string | number | undefined;
|
|
27356
27345
|
year?: string | number | undefined;
|
|
27357
27346
|
modelValue?: unknown[] | undefined;
|
|
27358
|
-
allowedDates?:
|
|
27347
|
+
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
27359
27348
|
displayValue?: unknown;
|
|
27360
27349
|
} & {
|
|
27361
27350
|
$children?: {} | vue.VNodeChild | {
|
|
@@ -27385,12 +27374,11 @@ declare const VDatePickerMonth: {
|
|
|
27385
27374
|
i: number;
|
|
27386
27375
|
}) => vue.VNodeChild) | undefined;
|
|
27387
27376
|
} & {
|
|
27388
|
-
"onUpdate:modelValue"?: ((date:
|
|
27389
|
-
"onUpdate:month"?: ((date:
|
|
27390
|
-
"onUpdate:year"?: ((date:
|
|
27377
|
+
"onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
|
|
27378
|
+
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
27379
|
+
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
27391
27380
|
}, {
|
|
27392
27381
|
disabled: boolean;
|
|
27393
|
-
range: boolean;
|
|
27394
27382
|
showAdjacentMonths: boolean;
|
|
27395
27383
|
weekdays: number[];
|
|
27396
27384
|
hideWeekdays: boolean;
|
|
@@ -27414,7 +27402,6 @@ declare const VDatePickerMonth: {
|
|
|
27414
27402
|
Defaults: {};
|
|
27415
27403
|
}, {
|
|
27416
27404
|
disabled: boolean;
|
|
27417
|
-
range: boolean;
|
|
27418
27405
|
showAdjacentMonths: boolean;
|
|
27419
27406
|
weekdays: number[];
|
|
27420
27407
|
hideWeekdays: boolean;
|
|
@@ -27423,11 +27410,11 @@ declare const VDatePickerMonth: {
|
|
|
27423
27410
|
max?: unknown;
|
|
27424
27411
|
min?: unknown;
|
|
27425
27412
|
color?: string | undefined;
|
|
27426
|
-
multiple?:
|
|
27413
|
+
multiple?: number | boolean | "range" | (string & {}) | undefined;
|
|
27427
27414
|
month?: string | number | undefined;
|
|
27428
27415
|
year?: string | number | undefined;
|
|
27429
27416
|
modelValue?: unknown[] | undefined;
|
|
27430
|
-
allowedDates?:
|
|
27417
|
+
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
27431
27418
|
displayValue?: unknown;
|
|
27432
27419
|
} & {
|
|
27433
27420
|
$children?: {} | vue.VNodeChild | {
|
|
@@ -27457,12 +27444,11 @@ declare const VDatePickerMonth: {
|
|
|
27457
27444
|
i: number;
|
|
27458
27445
|
}) => vue.VNodeChild) | undefined;
|
|
27459
27446
|
} & {
|
|
27460
|
-
"onUpdate:modelValue"?: ((date:
|
|
27461
|
-
"onUpdate:month"?: ((date:
|
|
27462
|
-
"onUpdate:year"?: ((date:
|
|
27447
|
+
"onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
|
|
27448
|
+
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
27449
|
+
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
27463
27450
|
}, () => JSX.Element, {}, {}, {}, {
|
|
27464
27451
|
disabled: boolean;
|
|
27465
|
-
range: boolean;
|
|
27466
27452
|
showAdjacentMonths: boolean;
|
|
27467
27453
|
weekdays: number[];
|
|
27468
27454
|
hideWeekdays: boolean;
|
|
@@ -27473,7 +27459,6 @@ declare const VDatePickerMonth: {
|
|
|
27473
27459
|
__isSuspense?: undefined;
|
|
27474
27460
|
} & vue.ComponentOptionsBase<{
|
|
27475
27461
|
disabled: boolean;
|
|
27476
|
-
range: boolean;
|
|
27477
27462
|
showAdjacentMonths: boolean;
|
|
27478
27463
|
weekdays: number[];
|
|
27479
27464
|
hideWeekdays: boolean;
|
|
@@ -27482,11 +27467,11 @@ declare const VDatePickerMonth: {
|
|
|
27482
27467
|
max?: unknown;
|
|
27483
27468
|
min?: unknown;
|
|
27484
27469
|
color?: string | undefined;
|
|
27485
|
-
multiple?:
|
|
27470
|
+
multiple?: number | boolean | "range" | (string & {}) | undefined;
|
|
27486
27471
|
month?: string | number | undefined;
|
|
27487
27472
|
year?: string | number | undefined;
|
|
27488
27473
|
modelValue?: unknown[] | undefined;
|
|
27489
|
-
allowedDates?:
|
|
27474
|
+
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
27490
27475
|
displayValue?: unknown;
|
|
27491
27476
|
} & {
|
|
27492
27477
|
$children?: {} | vue.VNodeChild | {
|
|
@@ -27516,16 +27501,15 @@ declare const VDatePickerMonth: {
|
|
|
27516
27501
|
i: number;
|
|
27517
27502
|
}) => vue.VNodeChild) | undefined;
|
|
27518
27503
|
} & {
|
|
27519
|
-
"onUpdate:modelValue"?: ((date:
|
|
27520
|
-
"onUpdate:month"?: ((date:
|
|
27521
|
-
"onUpdate:year"?: ((date:
|
|
27504
|
+
"onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
|
|
27505
|
+
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
27506
|
+
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
27522
27507
|
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
27523
|
-
'update:modelValue': (date:
|
|
27524
|
-
'update:month': (date:
|
|
27525
|
-
'update:year': (date:
|
|
27508
|
+
'update:modelValue': (date: unknown) => true;
|
|
27509
|
+
'update:month': (date: number) => true;
|
|
27510
|
+
'update:year': (date: number) => true;
|
|
27526
27511
|
}, string, {
|
|
27527
27512
|
disabled: boolean;
|
|
27528
|
-
range: boolean;
|
|
27529
27513
|
showAdjacentMonths: boolean;
|
|
27530
27514
|
weekdays: number[];
|
|
27531
27515
|
hideWeekdays: boolean;
|
|
@@ -27541,10 +27525,10 @@ declare const VDatePickerMonth: {
|
|
|
27541
27525
|
[key: string]: any;
|
|
27542
27526
|
}>[];
|
|
27543
27527
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
27544
|
-
allowedDates:
|
|
27528
|
+
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
27545
27529
|
disabled: BooleanConstructor;
|
|
27546
27530
|
displayValue: PropType<unknown>;
|
|
27547
|
-
modelValue: PropType<unknown[]
|
|
27531
|
+
modelValue: PropType<unknown[]>;
|
|
27548
27532
|
month: (StringConstructor | NumberConstructor)[];
|
|
27549
27533
|
max: PropType<unknown>;
|
|
27550
27534
|
min: PropType<unknown>;
|
|
@@ -27569,14 +27553,13 @@ declare const VDatePickerMonth: {
|
|
|
27569
27553
|
};
|
|
27570
27554
|
color: StringConstructor;
|
|
27571
27555
|
hideWeekdays: BooleanConstructor;
|
|
27572
|
-
multiple: PropType<
|
|
27573
|
-
range: BooleanConstructor;
|
|
27556
|
+
multiple: PropType<number | boolean | "range" | (string & {})>;
|
|
27574
27557
|
showWeek: BooleanConstructor;
|
|
27575
27558
|
}, vue.ExtractPropTypes<{
|
|
27576
|
-
allowedDates:
|
|
27559
|
+
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
27577
27560
|
disabled: BooleanConstructor;
|
|
27578
27561
|
displayValue: PropType<unknown>;
|
|
27579
|
-
modelValue: PropType<unknown[]
|
|
27562
|
+
modelValue: PropType<unknown[]>;
|
|
27580
27563
|
month: (StringConstructor | NumberConstructor)[];
|
|
27581
27564
|
max: PropType<unknown>;
|
|
27582
27565
|
min: PropType<unknown>;
|
|
@@ -27601,8 +27584,7 @@ declare const VDatePickerMonth: {
|
|
|
27601
27584
|
};
|
|
27602
27585
|
color: StringConstructor;
|
|
27603
27586
|
hideWeekdays: BooleanConstructor;
|
|
27604
|
-
multiple: PropType<
|
|
27605
|
-
range: BooleanConstructor;
|
|
27587
|
+
multiple: PropType<number | boolean | "range" | (string & {})>;
|
|
27606
27588
|
showWeek: BooleanConstructor;
|
|
27607
27589
|
}>>;
|
|
27608
27590
|
type VDatePickerMonth = InstanceType<typeof VDatePickerMonth>;
|
|
@@ -35907,10 +35889,10 @@ type VKbd = InstanceType<typeof VKbd>;
|
|
|
35907
35889
|
declare const VLabel: {
|
|
35908
35890
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
35909
35891
|
style: vue.StyleValue;
|
|
35910
|
-
clickable: boolean;
|
|
35911
35892
|
} & {
|
|
35912
35893
|
text?: string | undefined;
|
|
35913
35894
|
class?: any;
|
|
35895
|
+
onClick?: ((args_0: MouseEvent) => void) | undefined;
|
|
35914
35896
|
theme?: string | undefined;
|
|
35915
35897
|
} & {
|
|
35916
35898
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -35923,10 +35905,10 @@ declare const VLabel: {
|
|
|
35923
35905
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
35924
35906
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
35925
35907
|
style: vue.StyleValue;
|
|
35926
|
-
clickable: boolean;
|
|
35927
35908
|
} & {
|
|
35928
35909
|
text?: string | undefined;
|
|
35929
35910
|
class?: any;
|
|
35911
|
+
onClick?: ((args_0: MouseEvent) => void) | undefined;
|
|
35930
35912
|
theme?: string | undefined;
|
|
35931
35913
|
} & {
|
|
35932
35914
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -35939,7 +35921,6 @@ declare const VLabel: {
|
|
|
35939
35921
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
35940
35922
|
}, {
|
|
35941
35923
|
style: vue.StyleValue;
|
|
35942
|
-
clickable: boolean;
|
|
35943
35924
|
}, true, {}, vue.SlotsType<Partial<{
|
|
35944
35925
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
35945
35926
|
[key: string]: any;
|
|
@@ -35953,10 +35934,10 @@ declare const VLabel: {
|
|
|
35953
35934
|
Defaults: {};
|
|
35954
35935
|
}, {
|
|
35955
35936
|
style: vue.StyleValue;
|
|
35956
|
-
clickable: boolean;
|
|
35957
35937
|
} & {
|
|
35958
35938
|
text?: string | undefined;
|
|
35959
35939
|
class?: any;
|
|
35940
|
+
onClick?: ((args_0: MouseEvent) => void) | undefined;
|
|
35960
35941
|
theme?: string | undefined;
|
|
35961
35942
|
} & {
|
|
35962
35943
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -35969,17 +35950,16 @@ declare const VLabel: {
|
|
|
35969
35950
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
35970
35951
|
}, {}, {}, {}, {}, {
|
|
35971
35952
|
style: vue.StyleValue;
|
|
35972
|
-
clickable: boolean;
|
|
35973
35953
|
}>;
|
|
35974
35954
|
__isFragment?: undefined;
|
|
35975
35955
|
__isTeleport?: undefined;
|
|
35976
35956
|
__isSuspense?: undefined;
|
|
35977
35957
|
} & vue.ComponentOptionsBase<{
|
|
35978
35958
|
style: vue.StyleValue;
|
|
35979
|
-
clickable: boolean;
|
|
35980
35959
|
} & {
|
|
35981
35960
|
text?: string | undefined;
|
|
35982
35961
|
class?: any;
|
|
35962
|
+
onClick?: ((args_0: MouseEvent) => void) | undefined;
|
|
35983
35963
|
theme?: string | undefined;
|
|
35984
35964
|
} & {
|
|
35985
35965
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -35992,7 +35972,6 @@ declare const VLabel: {
|
|
|
35992
35972
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
35993
35973
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
35994
35974
|
style: vue.StyleValue;
|
|
35995
|
-
clickable: boolean;
|
|
35996
35975
|
}, {}, string, vue.SlotsType<Partial<{
|
|
35997
35976
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
35998
35977
|
[key: string]: any;
|
|
@@ -36005,7 +35984,7 @@ declare const VLabel: {
|
|
|
36005
35984
|
default: null;
|
|
36006
35985
|
};
|
|
36007
35986
|
text: StringConstructor;
|
|
36008
|
-
|
|
35987
|
+
onClick: vue.PropType<(args_0: MouseEvent) => void>;
|
|
36009
35988
|
}, vue.ExtractPropTypes<{
|
|
36010
35989
|
theme: StringConstructor;
|
|
36011
35990
|
class: vue.PropType<any>;
|
|
@@ -36014,7 +35993,7 @@ declare const VLabel: {
|
|
|
36014
35993
|
default: null;
|
|
36015
35994
|
};
|
|
36016
35995
|
text: StringConstructor;
|
|
36017
|
-
|
|
35996
|
+
onClick: vue.PropType<(args_0: MouseEvent) => void>;
|
|
36018
35997
|
}>>;
|
|
36019
35998
|
type VLabel = InstanceType<typeof VLabel>;
|
|
36020
35999
|
|
|
@@ -67213,75 +67192,73 @@ declare module '@vue/runtime-core' {
|
|
|
67213
67192
|
|
|
67214
67193
|
export interface GlobalComponents {
|
|
67215
67194
|
VApp: typeof import('vuetify/components')['VApp']
|
|
67195
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
67196
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
67216
67197
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
67217
67198
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
67218
67199
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
67219
67200
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
67220
67201
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
67221
|
-
VBanner: typeof import('vuetify/components')['VBanner']
|
|
67222
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
67223
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
67224
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
67225
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
|
67226
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
67227
67202
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
67228
67203
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
67204
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
67229
67205
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
67230
67206
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
67231
67207
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
67232
|
-
|
|
67208
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
|
67209
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
67210
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
67233
67211
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
67212
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
67213
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
67214
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
67215
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
67216
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
67217
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
67234
67218
|
VCard: typeof import('vuetify/components')['VCard']
|
|
67235
67219
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
67236
67220
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
67237
67221
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
67238
67222
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
67239
67223
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
67240
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
67241
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
67242
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
67243
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
67244
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
67245
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
67246
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
67247
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
67248
67224
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
67249
|
-
|
|
67250
|
-
|
|
67251
|
-
|
|
67252
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
67253
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
67254
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
67255
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
|
67225
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
67226
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
67227
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
67256
67228
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
67257
67229
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
67258
67230
|
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
67259
67231
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
67260
67232
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
67261
67233
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
67262
|
-
|
|
67263
|
-
|
|
67264
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
67234
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
67235
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
67265
67236
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
67266
67237
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
67267
67238
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
67268
67239
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
67269
67240
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
67241
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
67242
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
67243
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
67244
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
67245
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
67246
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
67247
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
67270
67248
|
VField: typeof import('vuetify/components')['VField']
|
|
67271
67249
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
67272
67250
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
67273
|
-
|
|
67251
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
67274
67252
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
67253
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
67254
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
67275
67255
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
67276
67256
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
67277
67257
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
67278
67258
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
67279
67259
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
67260
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
67280
67261
|
VInput: typeof import('vuetify/components')['VInput']
|
|
67281
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
67282
|
-
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
67283
|
-
VItem: typeof import('vuetify/components')['VItem']
|
|
67284
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
67285
67262
|
VList: typeof import('vuetify/components')['VList']
|
|
67286
67263
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
67287
67264
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -67292,53 +67269,55 @@ declare module '@vue/runtime-core' {
|
|
|
67292
67269
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
67293
67270
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
67294
67271
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
67295
|
-
|
|
67272
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
67273
|
+
VItem: typeof import('vuetify/components')['VItem']
|
|
67274
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
67296
67275
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
67276
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
|
67277
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
67297
67278
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
67298
67279
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
67299
67280
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
67300
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
67301
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
|
67302
67281
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
67303
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
67304
67282
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
67283
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
67305
67284
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
67306
|
-
|
|
67285
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
67286
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
67307
67287
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
67308
67288
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
67309
67289
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
67290
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
67310
67291
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
67311
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
67312
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
67313
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
67314
67292
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
67315
67293
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
67316
67294
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
67317
67295
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
67318
67296
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
67319
67297
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
67320
|
-
|
|
67298
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
67321
67299
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
67300
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
67322
67301
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
67323
67302
|
VTab: typeof import('vuetify/components')['VTab']
|
|
67324
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
67325
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
|
67326
67303
|
VTable: typeof import('vuetify/components')['VTable']
|
|
67304
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
67305
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
67306
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
67307
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
67327
67308
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
67328
67309
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
67329
67310
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
67330
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
67331
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
67332
67311
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
67333
67312
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
67334
67313
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
67335
67314
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
67336
67315
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
67316
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
67337
67317
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
67338
67318
|
VCol: typeof import('vuetify/components')['VCol']
|
|
67339
67319
|
VRow: typeof import('vuetify/components')['VRow']
|
|
67340
67320
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
67341
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
67342
67321
|
VHover: typeof import('vuetify/components')['VHover']
|
|
67343
67322
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
67344
67323
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
@@ -67346,12 +67325,12 @@ declare module '@vue/runtime-core' {
|
|
|
67346
67325
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
67347
67326
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
67348
67327
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
67349
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
|
67350
67328
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
67329
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
|
67351
67330
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
67331
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
67352
67332
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
67353
67333
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
67354
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
|
67355
67334
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
67356
67335
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
67357
67336
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -67368,14 +67347,14 @@ declare module '@vue/runtime-core' {
|
|
|
67368
67347
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
67369
67348
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
67370
67349
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
67371
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
67372
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
67373
67350
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
67374
67351
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
67375
67352
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
67376
67353
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
67377
67354
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
67378
67355
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
67356
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
67357
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
67379
67358
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
67380
67359
|
}
|
|
67381
67360
|
}
|