@vuetify/nightly 3.7.15-dev.2025-03-07 → 3.7.15-dev.2025-03-08
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 +9 -3
- package/dist/json/attributes.json +3379 -3339
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +170 -170
- package/dist/json/tags.json +10 -0
- package/dist/json/web-types.json +6242 -6151
- package/dist/vuetify-labs.css +3410 -3409
- package/dist/vuetify-labs.d.ts +234 -181
- package/dist/vuetify-labs.esm.js +810 -808
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +810 -808
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2799 -2798
- package/dist/vuetify.d.ts +214 -161
- package/dist/vuetify.esm.js +810 -808
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +810 -808
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +176 -175
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VColorPicker/VColorPicker.css +3 -2
- package/lib/components/VColorPicker/VColorPicker.d.ts +259 -156
- package/lib/components/VColorPicker/VColorPicker.js +16 -17
- package/lib/components/VColorPicker/VColorPicker.js.map +1 -1
- package/lib/components/VColorPicker/VColorPicker.sass +2 -1
- package/lib/components/VColorPicker/_variables.scss +1 -0
- package/lib/components/VDatePicker/VDatePicker.d.ts +6 -6
- package/lib/components/VDatePicker/VDatePicker.js +5 -2
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +57 -57
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +6 -6
- package/lib/labs/VDateInput/VDateInput.d.ts +25 -25
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -17245,35 +17245,45 @@ declare const modes: {
|
|
17245
17245
|
|
17246
17246
|
declare const VColorPicker: {
|
17247
17247
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<vue.ExtractPropTypes<{
|
17248
|
-
width: {
|
17249
|
-
type: PropType<string | number>;
|
17250
|
-
default: NonNullable<string | number>;
|
17251
|
-
};
|
17252
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17253
|
-
color: StringConstructor;
|
17254
|
-
position: {
|
17255
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17256
|
-
validator: (v: any) => boolean;
|
17257
|
-
};
|
17258
|
-
style: {
|
17259
|
-
type: PropType<vue.StyleValue>;
|
17260
|
-
default: null;
|
17261
|
-
};
|
17262
|
-
class: PropType<ClassValue>;
|
17263
17248
|
theme: StringConstructor;
|
17264
17249
|
tag: {
|
17265
17250
|
type: PropType<string | JSXComponent>;
|
17266
17251
|
default: string;
|
17267
17252
|
};
|
17268
|
-
elevation: {
|
17269
|
-
type: (StringConstructor | NumberConstructor)[];
|
17270
|
-
validator(v: any): boolean;
|
17271
|
-
};
|
17272
17253
|
rounded: {
|
17273
17254
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17274
17255
|
default: undefined;
|
17275
17256
|
};
|
17276
17257
|
tile: BooleanConstructor;
|
17258
|
+
position: {
|
17259
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17260
|
+
validator: (v: any) => boolean;
|
17261
|
+
};
|
17262
|
+
location: PropType<Anchor | null>;
|
17263
|
+
elevation: {
|
17264
|
+
type: (StringConstructor | NumberConstructor)[];
|
17265
|
+
validator(v: any): boolean;
|
17266
|
+
};
|
17267
|
+
height: (StringConstructor | NumberConstructor)[];
|
17268
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
17269
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
17270
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
17271
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
17272
|
+
width: (StringConstructor | NumberConstructor)[];
|
17273
|
+
class: PropType<ClassValue>;
|
17274
|
+
style: {
|
17275
|
+
type: PropType<vue.StyleValue>;
|
17276
|
+
default: null;
|
17277
|
+
};
|
17278
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17279
|
+
color: StringConstructor;
|
17280
|
+
bgColor: StringConstructor;
|
17281
|
+
landscape: BooleanConstructor;
|
17282
|
+
title: StringConstructor;
|
17283
|
+
hideHeader: {
|
17284
|
+
type: PropType<boolean>;
|
17285
|
+
default: boolean;
|
17286
|
+
};
|
17277
17287
|
canvasHeight: {
|
17278
17288
|
type: (StringConstructor | NumberConstructor)[];
|
17279
17289
|
default: number;
|
@@ -17312,15 +17322,16 @@ declare const VColorPicker: {
|
|
17312
17322
|
'update:modelValue': (color: any) => true;
|
17313
17323
|
'update:mode': (mode: keyof typeof modes) => true;
|
17314
17324
|
}, vue.PublicProps, {
|
17315
|
-
width: string | number;
|
17316
17325
|
style: vue.StyleValue;
|
17317
17326
|
disabled: boolean;
|
17318
17327
|
tag: string | JSXComponent;
|
17319
17328
|
mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
|
17329
|
+
landscape: boolean;
|
17320
17330
|
rounded: string | number | boolean;
|
17321
17331
|
tile: boolean;
|
17322
17332
|
dotSize: string | number;
|
17323
17333
|
modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
|
17334
|
+
hideHeader: boolean;
|
17324
17335
|
canvasHeight: string | number;
|
17325
17336
|
hideCanvas: boolean;
|
17326
17337
|
hideSliders: boolean;
|
@@ -17335,35 +17346,45 @@ declare const VColorPicker: {
|
|
17335
17346
|
M: {};
|
17336
17347
|
Defaults: {};
|
17337
17348
|
}, Readonly<vue.ExtractPropTypes<{
|
17338
|
-
width: {
|
17339
|
-
type: PropType<string | number>;
|
17340
|
-
default: NonNullable<string | number>;
|
17341
|
-
};
|
17342
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17343
|
-
color: StringConstructor;
|
17344
|
-
position: {
|
17345
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17346
|
-
validator: (v: any) => boolean;
|
17347
|
-
};
|
17348
|
-
style: {
|
17349
|
-
type: PropType<vue.StyleValue>;
|
17350
|
-
default: null;
|
17351
|
-
};
|
17352
|
-
class: PropType<ClassValue>;
|
17353
17349
|
theme: StringConstructor;
|
17354
17350
|
tag: {
|
17355
17351
|
type: PropType<string | JSXComponent>;
|
17356
17352
|
default: string;
|
17357
17353
|
};
|
17358
|
-
elevation: {
|
17359
|
-
type: (StringConstructor | NumberConstructor)[];
|
17360
|
-
validator(v: any): boolean;
|
17361
|
-
};
|
17362
17354
|
rounded: {
|
17363
17355
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17364
17356
|
default: undefined;
|
17365
17357
|
};
|
17366
17358
|
tile: BooleanConstructor;
|
17359
|
+
position: {
|
17360
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17361
|
+
validator: (v: any) => boolean;
|
17362
|
+
};
|
17363
|
+
location: PropType<Anchor | null>;
|
17364
|
+
elevation: {
|
17365
|
+
type: (StringConstructor | NumberConstructor)[];
|
17366
|
+
validator(v: any): boolean;
|
17367
|
+
};
|
17368
|
+
height: (StringConstructor | NumberConstructor)[];
|
17369
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
17370
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
17371
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
17372
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
17373
|
+
width: (StringConstructor | NumberConstructor)[];
|
17374
|
+
class: PropType<ClassValue>;
|
17375
|
+
style: {
|
17376
|
+
type: PropType<vue.StyleValue>;
|
17377
|
+
default: null;
|
17378
|
+
};
|
17379
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17380
|
+
color: StringConstructor;
|
17381
|
+
bgColor: StringConstructor;
|
17382
|
+
landscape: BooleanConstructor;
|
17383
|
+
title: StringConstructor;
|
17384
|
+
hideHeader: {
|
17385
|
+
type: PropType<boolean>;
|
17386
|
+
default: boolean;
|
17387
|
+
};
|
17367
17388
|
canvasHeight: {
|
17368
17389
|
type: (StringConstructor | NumberConstructor)[];
|
17369
17390
|
default: number;
|
@@ -17399,15 +17420,16 @@ declare const VColorPicker: {
|
|
17399
17420
|
"onUpdate:modelValue"?: ((color: any) => any) | undefined;
|
17400
17421
|
"onUpdate:mode"?: ((mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa") => any) | undefined;
|
17401
17422
|
}, {}, {}, {}, {}, {
|
17402
|
-
width: string | number;
|
17403
17423
|
style: vue.StyleValue;
|
17404
17424
|
disabled: boolean;
|
17405
17425
|
tag: string | JSXComponent;
|
17406
17426
|
mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
|
17427
|
+
landscape: boolean;
|
17407
17428
|
rounded: string | number | boolean;
|
17408
17429
|
tile: boolean;
|
17409
17430
|
dotSize: string | number;
|
17410
17431
|
modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
|
17432
|
+
hideHeader: boolean;
|
17411
17433
|
canvasHeight: string | number;
|
17412
17434
|
hideCanvas: boolean;
|
17413
17435
|
hideSliders: boolean;
|
@@ -17419,35 +17441,45 @@ declare const VColorPicker: {
|
|
17419
17441
|
__isTeleport?: never;
|
17420
17442
|
__isSuspense?: never;
|
17421
17443
|
} & vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<{
|
17422
|
-
width: {
|
17423
|
-
type: PropType<string | number>;
|
17424
|
-
default: NonNullable<string | number>;
|
17425
|
-
};
|
17426
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17427
|
-
color: StringConstructor;
|
17428
|
-
position: {
|
17429
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17430
|
-
validator: (v: any) => boolean;
|
17431
|
-
};
|
17432
|
-
style: {
|
17433
|
-
type: PropType<vue.StyleValue>;
|
17434
|
-
default: null;
|
17435
|
-
};
|
17436
|
-
class: PropType<ClassValue>;
|
17437
17444
|
theme: StringConstructor;
|
17438
17445
|
tag: {
|
17439
17446
|
type: PropType<string | JSXComponent>;
|
17440
17447
|
default: string;
|
17441
17448
|
};
|
17442
|
-
elevation: {
|
17443
|
-
type: (StringConstructor | NumberConstructor)[];
|
17444
|
-
validator(v: any): boolean;
|
17445
|
-
};
|
17446
17449
|
rounded: {
|
17447
17450
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17448
17451
|
default: undefined;
|
17449
17452
|
};
|
17450
17453
|
tile: BooleanConstructor;
|
17454
|
+
position: {
|
17455
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17456
|
+
validator: (v: any) => boolean;
|
17457
|
+
};
|
17458
|
+
location: PropType<Anchor | null>;
|
17459
|
+
elevation: {
|
17460
|
+
type: (StringConstructor | NumberConstructor)[];
|
17461
|
+
validator(v: any): boolean;
|
17462
|
+
};
|
17463
|
+
height: (StringConstructor | NumberConstructor)[];
|
17464
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
17465
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
17466
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
17467
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
17468
|
+
width: (StringConstructor | NumberConstructor)[];
|
17469
|
+
class: PropType<ClassValue>;
|
17470
|
+
style: {
|
17471
|
+
type: PropType<vue.StyleValue>;
|
17472
|
+
default: null;
|
17473
|
+
};
|
17474
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17475
|
+
color: StringConstructor;
|
17476
|
+
bgColor: StringConstructor;
|
17477
|
+
landscape: BooleanConstructor;
|
17478
|
+
title: StringConstructor;
|
17479
|
+
hideHeader: {
|
17480
|
+
type: PropType<boolean>;
|
17481
|
+
default: boolean;
|
17482
|
+
};
|
17451
17483
|
canvasHeight: {
|
17452
17484
|
type: (StringConstructor | NumberConstructor)[];
|
17453
17485
|
default: number;
|
@@ -17486,15 +17518,16 @@ declare const VColorPicker: {
|
|
17486
17518
|
'update:modelValue': (color: any) => true;
|
17487
17519
|
'update:mode': (mode: keyof typeof modes) => true;
|
17488
17520
|
}, string, {
|
17489
|
-
width: string | number;
|
17490
17521
|
style: vue.StyleValue;
|
17491
17522
|
disabled: boolean;
|
17492
17523
|
tag: string | JSXComponent;
|
17493
17524
|
mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
|
17525
|
+
landscape: boolean;
|
17494
17526
|
rounded: string | number | boolean;
|
17495
17527
|
tile: boolean;
|
17496
17528
|
dotSize: string | number;
|
17497
17529
|
modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
|
17530
|
+
hideHeader: boolean;
|
17498
17531
|
canvasHeight: string | number;
|
17499
17532
|
hideCanvas: boolean;
|
17500
17533
|
hideSliders: boolean;
|
@@ -17502,35 +17535,45 @@ declare const VColorPicker: {
|
|
17502
17535
|
showSwatches: boolean;
|
17503
17536
|
swatchesMaxHeight: string | number;
|
17504
17537
|
}, {}, string, {}, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
17505
|
-
width: {
|
17506
|
-
type: PropType<string | number>;
|
17507
|
-
default: NonNullable<string | number>;
|
17508
|
-
};
|
17509
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17510
|
-
color: StringConstructor;
|
17511
|
-
position: {
|
17512
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17513
|
-
validator: (v: any) => boolean;
|
17514
|
-
};
|
17515
|
-
style: {
|
17516
|
-
type: PropType<vue.StyleValue>;
|
17517
|
-
default: null;
|
17518
|
-
};
|
17519
|
-
class: PropType<ClassValue>;
|
17520
17538
|
theme: StringConstructor;
|
17521
17539
|
tag: {
|
17522
17540
|
type: PropType<string | JSXComponent>;
|
17523
17541
|
default: string;
|
17524
17542
|
};
|
17525
|
-
elevation: {
|
17526
|
-
type: (StringConstructor | NumberConstructor)[];
|
17527
|
-
validator(v: any): boolean;
|
17528
|
-
};
|
17529
17543
|
rounded: {
|
17530
17544
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17531
17545
|
default: undefined;
|
17532
17546
|
};
|
17533
17547
|
tile: BooleanConstructor;
|
17548
|
+
position: {
|
17549
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17550
|
+
validator: (v: any) => boolean;
|
17551
|
+
};
|
17552
|
+
location: PropType<Anchor | null>;
|
17553
|
+
elevation: {
|
17554
|
+
type: (StringConstructor | NumberConstructor)[];
|
17555
|
+
validator(v: any): boolean;
|
17556
|
+
};
|
17557
|
+
height: (StringConstructor | NumberConstructor)[];
|
17558
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
17559
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
17560
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
17561
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
17562
|
+
width: (StringConstructor | NumberConstructor)[];
|
17563
|
+
class: PropType<ClassValue>;
|
17564
|
+
style: {
|
17565
|
+
type: PropType<vue.StyleValue>;
|
17566
|
+
default: null;
|
17567
|
+
};
|
17568
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17569
|
+
color: StringConstructor;
|
17570
|
+
bgColor: StringConstructor;
|
17571
|
+
landscape: BooleanConstructor;
|
17572
|
+
title: StringConstructor;
|
17573
|
+
hideHeader: {
|
17574
|
+
type: PropType<boolean>;
|
17575
|
+
default: boolean;
|
17576
|
+
};
|
17534
17577
|
canvasHeight: {
|
17535
17578
|
type: (StringConstructor | NumberConstructor)[];
|
17536
17579
|
default: number;
|
@@ -17563,35 +17606,45 @@ declare const VColorPicker: {
|
|
17563
17606
|
type: PropType<Record<string, unknown> | string | undefined | null>;
|
17564
17607
|
};
|
17565
17608
|
}, vue.ExtractPropTypes<{
|
17566
|
-
width: {
|
17567
|
-
type: PropType<string | number>;
|
17568
|
-
default: NonNullable<string | number>;
|
17569
|
-
};
|
17570
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17571
|
-
color: StringConstructor;
|
17572
|
-
position: {
|
17573
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17574
|
-
validator: (v: any) => boolean;
|
17575
|
-
};
|
17576
|
-
style: {
|
17577
|
-
type: PropType<vue.StyleValue>;
|
17578
|
-
default: null;
|
17579
|
-
};
|
17580
|
-
class: PropType<ClassValue>;
|
17581
17609
|
theme: StringConstructor;
|
17582
17610
|
tag: {
|
17583
17611
|
type: PropType<string | JSXComponent>;
|
17584
17612
|
default: string;
|
17585
17613
|
};
|
17586
|
-
elevation: {
|
17587
|
-
type: (StringConstructor | NumberConstructor)[];
|
17588
|
-
validator(v: any): boolean;
|
17589
|
-
};
|
17590
17614
|
rounded: {
|
17591
17615
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17592
17616
|
default: undefined;
|
17593
17617
|
};
|
17594
17618
|
tile: BooleanConstructor;
|
17619
|
+
position: {
|
17620
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17621
|
+
validator: (v: any) => boolean;
|
17622
|
+
};
|
17623
|
+
location: PropType<Anchor | null>;
|
17624
|
+
elevation: {
|
17625
|
+
type: (StringConstructor | NumberConstructor)[];
|
17626
|
+
validator(v: any): boolean;
|
17627
|
+
};
|
17628
|
+
height: (StringConstructor | NumberConstructor)[];
|
17629
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
17630
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
17631
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
17632
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
17633
|
+
width: (StringConstructor | NumberConstructor)[];
|
17634
|
+
class: PropType<ClassValue>;
|
17635
|
+
style: {
|
17636
|
+
type: PropType<vue.StyleValue>;
|
17637
|
+
default: null;
|
17638
|
+
};
|
17639
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17640
|
+
color: StringConstructor;
|
17641
|
+
bgColor: StringConstructor;
|
17642
|
+
landscape: BooleanConstructor;
|
17643
|
+
title: StringConstructor;
|
17644
|
+
hideHeader: {
|
17645
|
+
type: PropType<boolean>;
|
17646
|
+
default: boolean;
|
17647
|
+
};
|
17595
17648
|
canvasHeight: {
|
17596
17649
|
type: (StringConstructor | NumberConstructor)[];
|
17597
17650
|
default: number;
|
@@ -23937,6 +23990,7 @@ declare const VDatePicker: {
|
|
23937
23990
|
nextIcon: IconValue;
|
23938
23991
|
prevIcon: IconValue;
|
23939
23992
|
reverseTransition: string;
|
23993
|
+
hideHeader: boolean;
|
23940
23994
|
modeIcon: IconValue;
|
23941
23995
|
viewMode: "month" | "year" | "months";
|
23942
23996
|
showAdjacentMonths: boolean;
|
@@ -23944,7 +23998,6 @@ declare const VDatePicker: {
|
|
23944
23998
|
weeksInMonth: "static" | "dynamic";
|
23945
23999
|
hideWeekdays: boolean;
|
23946
24000
|
showWeek: boolean;
|
23947
|
-
hideHeader: boolean;
|
23948
24001
|
} & {
|
23949
24002
|
max?: unknown;
|
23950
24003
|
location?: Anchor | null | undefined;
|
@@ -23992,6 +24045,7 @@ declare const VDatePicker: {
|
|
23992
24045
|
nextIcon: IconValue;
|
23993
24046
|
prevIcon: IconValue;
|
23994
24047
|
reverseTransition: string;
|
24048
|
+
hideHeader: boolean;
|
23995
24049
|
modeIcon: IconValue;
|
23996
24050
|
viewMode: "month" | "year" | "months";
|
23997
24051
|
showAdjacentMonths: boolean;
|
@@ -23999,7 +24053,6 @@ declare const VDatePicker: {
|
|
23999
24053
|
weeksInMonth: "static" | "dynamic";
|
24000
24054
|
hideWeekdays: boolean;
|
24001
24055
|
showWeek: boolean;
|
24002
|
-
hideHeader: boolean;
|
24003
24056
|
}, true, {}, vue.SlotsType<Partial<{
|
24004
24057
|
default: () => vue.VNode[];
|
24005
24058
|
title: () => vue.VNode[];
|
@@ -24027,6 +24080,7 @@ declare const VDatePicker: {
|
|
24027
24080
|
nextIcon: IconValue;
|
24028
24081
|
prevIcon: IconValue;
|
24029
24082
|
reverseTransition: string;
|
24083
|
+
hideHeader: boolean;
|
24030
24084
|
modeIcon: IconValue;
|
24031
24085
|
viewMode: "month" | "year" | "months";
|
24032
24086
|
showAdjacentMonths: boolean;
|
@@ -24034,7 +24088,6 @@ declare const VDatePicker: {
|
|
24034
24088
|
weeksInMonth: "static" | "dynamic";
|
24035
24089
|
hideWeekdays: boolean;
|
24036
24090
|
showWeek: boolean;
|
24037
|
-
hideHeader: boolean;
|
24038
24091
|
} & {
|
24039
24092
|
max?: unknown;
|
24040
24093
|
location?: Anchor | null | undefined;
|
@@ -24077,6 +24130,7 @@ declare const VDatePicker: {
|
|
24077
24130
|
nextIcon: IconValue;
|
24078
24131
|
prevIcon: IconValue;
|
24079
24132
|
reverseTransition: string;
|
24133
|
+
hideHeader: boolean;
|
24080
24134
|
modeIcon: IconValue;
|
24081
24135
|
viewMode: "month" | "year" | "months";
|
24082
24136
|
showAdjacentMonths: boolean;
|
@@ -24084,7 +24138,6 @@ declare const VDatePicker: {
|
|
24084
24138
|
weeksInMonth: "static" | "dynamic";
|
24085
24139
|
hideWeekdays: boolean;
|
24086
24140
|
showWeek: boolean;
|
24087
|
-
hideHeader: boolean;
|
24088
24141
|
}>;
|
24089
24142
|
__isFragment?: never;
|
24090
24143
|
__isTeleport?: never;
|
@@ -24101,6 +24154,7 @@ declare const VDatePicker: {
|
|
24101
24154
|
nextIcon: IconValue;
|
24102
24155
|
prevIcon: IconValue;
|
24103
24156
|
reverseTransition: string;
|
24157
|
+
hideHeader: boolean;
|
24104
24158
|
modeIcon: IconValue;
|
24105
24159
|
viewMode: "month" | "year" | "months";
|
24106
24160
|
showAdjacentMonths: boolean;
|
@@ -24108,7 +24162,6 @@ declare const VDatePicker: {
|
|
24108
24162
|
weeksInMonth: "static" | "dynamic";
|
24109
24163
|
hideWeekdays: boolean;
|
24110
24164
|
showWeek: boolean;
|
24111
|
-
hideHeader: boolean;
|
24112
24165
|
} & {
|
24113
24166
|
max?: unknown;
|
24114
24167
|
location?: Anchor | null | undefined;
|
@@ -24156,6 +24209,7 @@ declare const VDatePicker: {
|
|
24156
24209
|
nextIcon: IconValue;
|
24157
24210
|
prevIcon: IconValue;
|
24158
24211
|
reverseTransition: string;
|
24212
|
+
hideHeader: boolean;
|
24159
24213
|
modeIcon: IconValue;
|
24160
24214
|
viewMode: "month" | "year" | "months";
|
24161
24215
|
showAdjacentMonths: boolean;
|
@@ -24163,7 +24217,6 @@ declare const VDatePicker: {
|
|
24163
24217
|
weeksInMonth: "static" | "dynamic";
|
24164
24218
|
hideWeekdays: boolean;
|
24165
24219
|
showWeek: boolean;
|
24166
|
-
hideHeader: boolean;
|
24167
24220
|
}, {}, string, vue.SlotsType<Partial<{
|
24168
24221
|
default: () => vue.VNode[];
|
24169
24222
|
title: () => vue.VNode[];
|
@@ -57722,11 +57775,11 @@ declare const VCalendar: {
|
|
57722
57775
|
day: Record<string, any>;
|
57723
57776
|
nextIcon: string;
|
57724
57777
|
prevIcon: string;
|
57778
|
+
hideHeader: boolean;
|
57725
57779
|
viewMode: "day" | "month" | "week";
|
57726
57780
|
showAdjacentMonths: boolean;
|
57727
57781
|
weekdays: number[];
|
57728
57782
|
weeksInMonth: "static" | "dynamic";
|
57729
|
-
hideHeader: boolean;
|
57730
57783
|
intervalDivisions: number;
|
57731
57784
|
intervalDuration: number;
|
57732
57785
|
intervalHeight: number;
|
@@ -57846,11 +57899,11 @@ declare const VCalendar: {
|
|
57846
57899
|
day: Record<string, any>;
|
57847
57900
|
nextIcon: string;
|
57848
57901
|
prevIcon: string;
|
57902
|
+
hideHeader: boolean;
|
57849
57903
|
viewMode: "day" | "month" | "week";
|
57850
57904
|
showAdjacentMonths: boolean;
|
57851
57905
|
weekdays: number[];
|
57852
57906
|
weeksInMonth: "static" | "dynamic";
|
57853
|
-
hideHeader: boolean;
|
57854
57907
|
intervalDivisions: number;
|
57855
57908
|
intervalDuration: number;
|
57856
57909
|
intervalHeight: number;
|
@@ -57881,11 +57934,11 @@ declare const VCalendar: {
|
|
57881
57934
|
day: Record<string, any>;
|
57882
57935
|
nextIcon: string;
|
57883
57936
|
prevIcon: string;
|
57937
|
+
hideHeader: boolean;
|
57884
57938
|
viewMode: "day" | "month" | "week";
|
57885
57939
|
showAdjacentMonths: boolean;
|
57886
57940
|
weekdays: number[];
|
57887
57941
|
weeksInMonth: "static" | "dynamic";
|
57888
|
-
hideHeader: boolean;
|
57889
57942
|
intervalDivisions: number;
|
57890
57943
|
intervalDuration: number;
|
57891
57944
|
intervalHeight: number;
|
@@ -58001,11 +58054,11 @@ declare const VCalendar: {
|
|
58001
58054
|
day: Record<string, any>;
|
58002
58055
|
nextIcon: string;
|
58003
58056
|
prevIcon: string;
|
58057
|
+
hideHeader: boolean;
|
58004
58058
|
viewMode: "day" | "month" | "week";
|
58005
58059
|
showAdjacentMonths: boolean;
|
58006
58060
|
weekdays: number[];
|
58007
58061
|
weeksInMonth: "static" | "dynamic";
|
58008
|
-
hideHeader: boolean;
|
58009
58062
|
intervalDivisions: number;
|
58010
58063
|
intervalDuration: number;
|
58011
58064
|
intervalHeight: number;
|
@@ -58024,11 +58077,11 @@ declare const VCalendar: {
|
|
58024
58077
|
day: Record<string, any>;
|
58025
58078
|
nextIcon: string;
|
58026
58079
|
prevIcon: string;
|
58080
|
+
hideHeader: boolean;
|
58027
58081
|
viewMode: "day" | "month" | "week";
|
58028
58082
|
showAdjacentMonths: boolean;
|
58029
58083
|
weekdays: number[];
|
58030
58084
|
weeksInMonth: "static" | "dynamic";
|
58031
|
-
hideHeader: boolean;
|
58032
58085
|
intervalDivisions: number;
|
58033
58086
|
intervalDuration: number;
|
58034
58087
|
intervalHeight: number;
|
@@ -58148,11 +58201,11 @@ declare const VCalendar: {
|
|
58148
58201
|
day: Record<string, any>;
|
58149
58202
|
nextIcon: string;
|
58150
58203
|
prevIcon: string;
|
58204
|
+
hideHeader: boolean;
|
58151
58205
|
viewMode: "day" | "month" | "week";
|
58152
58206
|
showAdjacentMonths: boolean;
|
58153
58207
|
weekdays: number[];
|
58154
58208
|
weeksInMonth: "static" | "dynamic";
|
58155
|
-
hideHeader: boolean;
|
58156
58209
|
intervalDivisions: number;
|
58157
58210
|
intervalDuration: number;
|
58158
58211
|
intervalHeight: number;
|
@@ -59312,6 +59365,7 @@ declare const VDateInput: {
|
|
59312
59365
|
persistentPlaceholder: boolean;
|
59313
59366
|
persistentCounter: boolean;
|
59314
59367
|
reverseTransition: string;
|
59368
|
+
hideHeader: boolean;
|
59315
59369
|
cancelText: string;
|
59316
59370
|
okText: string;
|
59317
59371
|
modeIcon: IconValue;
|
@@ -59321,7 +59375,6 @@ declare const VDateInput: {
|
|
59321
59375
|
weeksInMonth: "static" | "dynamic";
|
59322
59376
|
hideWeekdays: boolean;
|
59323
59377
|
showWeek: boolean;
|
59324
|
-
hideHeader: boolean;
|
59325
59378
|
hideActions: boolean;
|
59326
59379
|
} & {
|
59327
59380
|
name?: string | undefined;
|
@@ -59474,6 +59527,7 @@ declare const VDateInput: {
|
|
59474
59527
|
persistentPlaceholder: boolean;
|
59475
59528
|
persistentCounter: boolean;
|
59476
59529
|
reverseTransition: string;
|
59530
|
+
hideHeader: boolean;
|
59477
59531
|
cancelText: string;
|
59478
59532
|
okText: string;
|
59479
59533
|
modeIcon: IconValue;
|
@@ -59483,7 +59537,6 @@ declare const VDateInput: {
|
|
59483
59537
|
weeksInMonth: "static" | "dynamic";
|
59484
59538
|
hideWeekdays: boolean;
|
59485
59539
|
showWeek: boolean;
|
59486
|
-
hideHeader: boolean;
|
59487
59540
|
hideActions: boolean;
|
59488
59541
|
}, true, {}, vue.SlotsType<Partial<{
|
59489
59542
|
message: (arg: VMessageSlot) => vue.VNode[];
|
@@ -59549,6 +59602,7 @@ declare const VDateInput: {
|
|
59549
59602
|
persistentPlaceholder: boolean;
|
59550
59603
|
persistentCounter: boolean;
|
59551
59604
|
reverseTransition: string;
|
59605
|
+
hideHeader: boolean;
|
59552
59606
|
cancelText: string;
|
59553
59607
|
okText: string;
|
59554
59608
|
modeIcon: IconValue;
|
@@ -59558,7 +59612,6 @@ declare const VDateInput: {
|
|
59558
59612
|
weeksInMonth: "static" | "dynamic";
|
59559
59613
|
hideWeekdays: boolean;
|
59560
59614
|
showWeek: boolean;
|
59561
|
-
hideHeader: boolean;
|
59562
59615
|
hideActions: boolean;
|
59563
59616
|
} & {
|
59564
59617
|
name?: string | undefined;
|
@@ -59709,6 +59762,7 @@ declare const VDateInput: {
|
|
59709
59762
|
persistentPlaceholder: boolean;
|
59710
59763
|
persistentCounter: boolean;
|
59711
59764
|
reverseTransition: string;
|
59765
|
+
hideHeader: boolean;
|
59712
59766
|
cancelText: string;
|
59713
59767
|
okText: string;
|
59714
59768
|
modeIcon: IconValue;
|
@@ -59718,7 +59772,6 @@ declare const VDateInput: {
|
|
59718
59772
|
weeksInMonth: "static" | "dynamic";
|
59719
59773
|
hideWeekdays: boolean;
|
59720
59774
|
showWeek: boolean;
|
59721
|
-
hideHeader: boolean;
|
59722
59775
|
hideActions: boolean;
|
59723
59776
|
}>;
|
59724
59777
|
__isFragment?: never;
|
@@ -59763,6 +59816,7 @@ declare const VDateInput: {
|
|
59763
59816
|
persistentPlaceholder: boolean;
|
59764
59817
|
persistentCounter: boolean;
|
59765
59818
|
reverseTransition: string;
|
59819
|
+
hideHeader: boolean;
|
59766
59820
|
cancelText: string;
|
59767
59821
|
okText: string;
|
59768
59822
|
modeIcon: IconValue;
|
@@ -59772,7 +59826,6 @@ declare const VDateInput: {
|
|
59772
59826
|
weeksInMonth: "static" | "dynamic";
|
59773
59827
|
hideWeekdays: boolean;
|
59774
59828
|
showWeek: boolean;
|
59775
|
-
hideHeader: boolean;
|
59776
59829
|
hideActions: boolean;
|
59777
59830
|
} & {
|
59778
59831
|
name?: string | undefined;
|
@@ -59925,6 +59978,7 @@ declare const VDateInput: {
|
|
59925
59978
|
persistentPlaceholder: boolean;
|
59926
59979
|
persistentCounter: boolean;
|
59927
59980
|
reverseTransition: string;
|
59981
|
+
hideHeader: boolean;
|
59928
59982
|
cancelText: string;
|
59929
59983
|
okText: string;
|
59930
59984
|
modeIcon: IconValue;
|
@@ -59934,7 +59988,6 @@ declare const VDateInput: {
|
|
59934
59988
|
weeksInMonth: "static" | "dynamic";
|
59935
59989
|
hideWeekdays: boolean;
|
59936
59990
|
showWeek: boolean;
|
59937
|
-
hideHeader: boolean;
|
59938
59991
|
hideActions: boolean;
|
59939
59992
|
}, {}, string, vue.SlotsType<Partial<{
|
59940
59993
|
message: (arg: VMessageSlot) => vue.VNode[];
|
@@ -60019,6 +60072,10 @@ declare const VDateInput: {
|
|
60019
60072
|
type: StringConstructor;
|
60020
60073
|
default: string;
|
60021
60074
|
};
|
60075
|
+
hideHeader: {
|
60076
|
+
type: PropType<boolean>;
|
60077
|
+
default: boolean;
|
60078
|
+
};
|
60022
60079
|
modeIcon: {
|
60023
60080
|
type: PropType<IconValue>;
|
60024
60081
|
default: string;
|
@@ -60061,10 +60118,6 @@ declare const VDateInput: {
|
|
60061
60118
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
60062
60119
|
hideWeekdays: BooleanConstructor;
|
60063
60120
|
showWeek: BooleanConstructor;
|
60064
|
-
hideHeader: {
|
60065
|
-
type: PropType<boolean>;
|
60066
|
-
default: boolean;
|
60067
|
-
};
|
60068
60121
|
rounded: {
|
60069
60122
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
60070
60123
|
default: undefined;
|
@@ -60240,6 +60293,10 @@ declare const VDateInput: {
|
|
60240
60293
|
type: StringConstructor;
|
60241
60294
|
default: string;
|
60242
60295
|
};
|
60296
|
+
hideHeader: {
|
60297
|
+
type: PropType<boolean>;
|
60298
|
+
default: boolean;
|
60299
|
+
};
|
60243
60300
|
modeIcon: {
|
60244
60301
|
type: PropType<IconValue>;
|
60245
60302
|
default: string;
|
@@ -60282,10 +60339,6 @@ declare const VDateInput: {
|
|
60282
60339
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
60283
60340
|
hideWeekdays: BooleanConstructor;
|
60284
60341
|
showWeek: BooleanConstructor;
|
60285
|
-
hideHeader: {
|
60286
|
-
type: PropType<boolean>;
|
60287
|
-
default: boolean;
|
60288
|
-
};
|
60289
60342
|
rounded: {
|
60290
60343
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
60291
60344
|
default: undefined;
|
@@ -72339,39 +72392,47 @@ declare module 'vue' {
|
|
72339
72392
|
VAppBarNavIcon: VAppBarNavIcon
|
72340
72393
|
VAppBarTitle: VAppBarTitle
|
72341
72394
|
VApp: VApp
|
72342
|
-
VAutocomplete: VAutocomplete
|
72343
|
-
VBadge: VBadge
|
72344
72395
|
VAlert: VAlert
|
72345
72396
|
VAlertTitle: VAlertTitle
|
72346
|
-
|
72397
|
+
VAvatar: VAvatar
|
72398
|
+
VBottomNavigation: VBottomNavigation
|
72399
|
+
VAutocomplete: VAutocomplete
|
72400
|
+
VBadge: VBadge
|
72347
72401
|
VBanner: VBanner
|
72348
72402
|
VBannerActions: VBannerActions
|
72349
72403
|
VBannerText: VBannerText
|
72350
|
-
VAvatar: VAvatar
|
72351
|
-
VBtnToggle: VBtnToggle
|
72352
|
-
VBottomNavigation: VBottomNavigation
|
72353
|
-
VCheckbox: VCheckbox
|
72354
|
-
VCheckboxBtn: VCheckboxBtn
|
72355
72404
|
VBreadcrumbs: VBreadcrumbs
|
72356
72405
|
VBreadcrumbsItem: VBreadcrumbsItem
|
72357
72406
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
72407
|
+
VBtn: VBtn
|
72408
|
+
VBottomSheet: VBottomSheet
|
72409
|
+
VBtnToggle: VBtnToggle
|
72358
72410
|
VCard: VCard
|
72359
72411
|
VCardActions: VCardActions
|
72360
72412
|
VCardItem: VCardItem
|
72361
72413
|
VCardSubtitle: VCardSubtitle
|
72362
72414
|
VCardText: VCardText
|
72363
72415
|
VCardTitle: VCardTitle
|
72364
|
-
VBtnGroup: VBtnGroup
|
72365
|
-
VBtn: VBtn
|
72366
|
-
VColorPicker: VColorPicker
|
72367
72416
|
VChip: VChip
|
72417
|
+
VBtnGroup: VBtnGroup
|
72368
72418
|
VCarousel: VCarousel
|
72369
72419
|
VCarouselItem: VCarouselItem
|
72370
|
-
|
72420
|
+
VCheckbox: VCheckbox
|
72421
|
+
VCheckboxBtn: VCheckboxBtn
|
72422
|
+
VCombobox: VCombobox
|
72423
|
+
VCode: VCode
|
72371
72424
|
VCounter: VCounter
|
72372
72425
|
VDialog: VDialog
|
72426
|
+
VDatePicker: VDatePicker
|
72427
|
+
VDatePickerControls: VDatePickerControls
|
72428
|
+
VDatePickerHeader: VDatePickerHeader
|
72429
|
+
VDatePickerMonth: VDatePickerMonth
|
72430
|
+
VDatePickerMonths: VDatePickerMonths
|
72431
|
+
VDatePickerYears: VDatePickerYears
|
72432
|
+
VChipGroup: VChipGroup
|
72433
|
+
VColorPicker: VColorPicker
|
72373
72434
|
VDivider: VDivider
|
72374
|
-
|
72435
|
+
VEmptyState: VEmptyState
|
72375
72436
|
VExpansionPanels: VExpansionPanels
|
72376
72437
|
VExpansionPanel: VExpansionPanel
|
72377
72438
|
VExpansionPanelText: VExpansionPanelText
|
@@ -72383,33 +72444,24 @@ declare module 'vue' {
|
|
72383
72444
|
VDataTableRow: VDataTableRow
|
72384
72445
|
VDataTableVirtual: VDataTableVirtual
|
72385
72446
|
VDataTableServer: VDataTableServer
|
72386
|
-
|
72387
|
-
|
72388
|
-
VDatePickerHeader: VDatePickerHeader
|
72389
|
-
VDatePickerMonth: VDatePickerMonth
|
72390
|
-
VDatePickerMonths: VDatePickerMonths
|
72391
|
-
VDatePickerYears: VDatePickerYears
|
72392
|
-
VEmptyState: VEmptyState
|
72447
|
+
VFab: VFab
|
72448
|
+
VFooter: VFooter
|
72393
72449
|
VField: VField
|
72394
72450
|
VFieldLabel: VFieldLabel
|
72395
|
-
VFooter: VFooter
|
72396
72451
|
VFileInput: VFileInput
|
72397
|
-
|
72452
|
+
VImg: VImg
|
72453
|
+
VInput: VInput
|
72454
|
+
VItemGroup: VItemGroup
|
72455
|
+
VItem: VItem
|
72456
|
+
VInfiniteScroll: VInfiniteScroll
|
72398
72457
|
VIcon: VIcon
|
72399
72458
|
VComponentIcon: VComponentIcon
|
72400
72459
|
VSvgIcon: VSvgIcon
|
72401
72460
|
VLigatureIcon: VLigatureIcon
|
72402
72461
|
VClassIcon: VClassIcon
|
72403
|
-
|
72404
|
-
VInfiniteScroll: VInfiniteScroll
|
72462
|
+
VKbd: VKbd
|
72405
72463
|
VLabel: VLabel
|
72406
|
-
VItemGroup: VItemGroup
|
72407
|
-
VItem: VItem
|
72408
72464
|
VMain: VMain
|
72409
|
-
VKbd: VKbd
|
72410
|
-
VInput: VInput
|
72411
|
-
VMessages: VMessages
|
72412
|
-
VMenu: VMenu
|
72413
72465
|
VList: VList
|
72414
72466
|
VListGroup: VListGroup
|
72415
72467
|
VListImg: VListImg
|
@@ -72420,59 +72472,60 @@ declare module 'vue' {
|
|
72420
72472
|
VListItemTitle: VListItemTitle
|
72421
72473
|
VListSubheader: VListSubheader
|
72422
72474
|
VNavigationDrawer: VNavigationDrawer
|
72475
|
+
VOverlay: VOverlay
|
72476
|
+
VMenu: VMenu
|
72423
72477
|
VOtpInput: VOtpInput
|
72478
|
+
VMessages: VMessages
|
72424
72479
|
VPagination: VPagination
|
72425
|
-
|
72480
|
+
VProgressLinear: VProgressLinear
|
72426
72481
|
VProgressCircular: VProgressCircular
|
72482
|
+
VSelectionControl: VSelectionControl
|
72427
72483
|
VRadioGroup: VRadioGroup
|
72428
|
-
VProgressLinear: VProgressLinear
|
72429
|
-
VSelect: VSelect
|
72430
|
-
VCode: VCode
|
72431
|
-
VRating: VRating
|
72432
72484
|
VSelectionControlGroup: VSelectionControlGroup
|
72433
|
-
|
72485
|
+
VSelect: VSelect
|
72434
72486
|
VSkeletonLoader: VSkeletonLoader
|
72435
|
-
|
72487
|
+
VRating: VRating
|
72436
72488
|
VSlider: VSlider
|
72437
72489
|
VSnackbar: VSnackbar
|
72438
|
-
VSystemBar: VSystemBar
|
72439
|
-
VSwitch: VSwitch
|
72440
72490
|
VSlideGroup: VSlideGroup
|
72441
72491
|
VSlideGroupItem: VSlideGroupItem
|
72442
|
-
VTab: VTab
|
72443
|
-
VTabs: VTabs
|
72444
|
-
VTabsWindow: VTabsWindow
|
72445
|
-
VTabsWindowItem: VTabsWindowItem
|
72446
|
-
VTextarea: VTextarea
|
72447
72492
|
VStepper: VStepper
|
72448
72493
|
VStepperActions: VStepperActions
|
72449
72494
|
VStepperHeader: VStepperHeader
|
72450
72495
|
VStepperItem: VStepperItem
|
72451
72496
|
VStepperWindow: VStepperWindow
|
72452
72497
|
VStepperWindowItem: VStepperWindowItem
|
72453
|
-
|
72498
|
+
VSheet: VSheet
|
72499
|
+
VSwitch: VSwitch
|
72500
|
+
VSystemBar: VSystemBar
|
72454
72501
|
VTextField: VTextField
|
72455
|
-
|
72456
|
-
|
72457
|
-
|
72502
|
+
VTable: VTable
|
72503
|
+
VTab: VTab
|
72504
|
+
VTabs: VTabs
|
72505
|
+
VTabsWindow: VTabsWindow
|
72506
|
+
VTabsWindowItem: VTabsWindowItem
|
72507
|
+
VTextarea: VTextarea
|
72458
72508
|
VToolbar: VToolbar
|
72459
72509
|
VToolbarTitle: VToolbarTitle
|
72460
72510
|
VToolbarItems: VToolbarItems
|
72511
|
+
VTimeline: VTimeline
|
72512
|
+
VTimelineItem: VTimelineItem
|
72513
|
+
VTooltip: VTooltip
|
72461
72514
|
VWindow: VWindow
|
72462
72515
|
VWindowItem: VWindowItem
|
72463
72516
|
VConfirmEdit: VConfirmEdit
|
72464
72517
|
VDataIterator: VDataIterator
|
72465
72518
|
VDefaultsProvider: VDefaultsProvider
|
72519
|
+
VForm: VForm
|
72466
72520
|
VContainer: VContainer
|
72467
72521
|
VCol: VCol
|
72468
72522
|
VRow: VRow
|
72469
72523
|
VSpacer: VSpacer
|
72470
|
-
VForm: VForm
|
72471
72524
|
VHover: VHover
|
72525
|
+
VLocaleProvider: VLocaleProvider
|
72472
72526
|
VLayout: VLayout
|
72473
72527
|
VLayoutItem: VLayoutItem
|
72474
72528
|
VLazy: VLazy
|
72475
|
-
VLocaleProvider: VLocaleProvider
|
72476
72529
|
VNoSsr: VNoSsr
|
72477
72530
|
VParallax: VParallax
|
72478
72531
|
VRadio: VRadio
|
@@ -72481,8 +72534,8 @@ declare module 'vue' {
|
|
72481
72534
|
VSparkline: VSparkline
|
72482
72535
|
VSpeedDial: VSpeedDial
|
72483
72536
|
VThemeProvider: VThemeProvider
|
72484
|
-
VValidation: VValidation
|
72485
72537
|
VVirtualScroll: VVirtualScroll
|
72538
|
+
VValidation: VValidation
|
72486
72539
|
VFabTransition: VFabTransition
|
72487
72540
|
VDialogBottomTransition: VDialogBottomTransition
|
72488
72541
|
VDialogTopTransition: VDialogTopTransition
|
@@ -72499,20 +72552,20 @@ declare module 'vue' {
|
|
72499
72552
|
VExpandTransition: VExpandTransition
|
72500
72553
|
VExpandXTransition: VExpandXTransition
|
72501
72554
|
VDialogTransition: VDialogTransition
|
72502
|
-
VFileUpload: VFileUpload
|
72503
|
-
VFileUploadItem: VFileUploadItem
|
72504
|
-
VNumberInput: VNumberInput
|
72505
72555
|
VCalendar: VCalendar
|
72506
72556
|
VCalendarDay: VCalendarDay
|
72507
72557
|
VCalendarHeader: VCalendarHeader
|
72508
72558
|
VCalendarInterval: VCalendarInterval
|
72509
72559
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
72510
72560
|
VCalendarMonthDay: VCalendarMonthDay
|
72561
|
+
VPicker: VPicker
|
72562
|
+
VPickerTitle: VPickerTitle
|
72563
|
+
VFileUpload: VFileUpload
|
72564
|
+
VFileUploadItem: VFileUploadItem
|
72565
|
+
VNumberInput: VNumberInput
|
72511
72566
|
VStepperVertical: VStepperVertical
|
72512
72567
|
VStepperVerticalItem: VStepperVerticalItem
|
72513
72568
|
VStepperVerticalActions: VStepperVerticalActions
|
72514
|
-
VPicker: VPicker
|
72515
|
-
VPickerTitle: VPickerTitle
|
72516
72569
|
VTimePicker: VTimePicker
|
72517
72570
|
VTimePickerClock: VTimePickerClock
|
72518
72571
|
VTimePickerControls: VTimePickerControls
|
@@ -72520,7 +72573,7 @@ declare module 'vue' {
|
|
72520
72573
|
VTreeviewItem: VTreeviewItem
|
72521
72574
|
VTreeviewGroup: VTreeviewGroup
|
72522
72575
|
VDateInput: VDateInput
|
72523
|
-
VPullToRefresh: VPullToRefresh
|
72524
72576
|
VSnackbarQueue: VSnackbarQueue
|
72577
|
+
VPullToRefresh: VPullToRefresh
|
72525
72578
|
}
|
72526
72579
|
}
|