@vuetify/nightly 3.7.15-dev.2025-03-06 → 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 +10 -3
- package/dist/json/attributes.json +2892 -2852
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +162 -162
- package/dist/json/tags.json +10 -0
- package/dist/json/web-types.json +5263 -5172
- package/dist/vuetify-labs.css +2710 -2709
- package/dist/vuetify-labs.d.ts +238 -182
- package/dist/vuetify-labs.esm.js +849 -838
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +849 -838
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4710 -4709
- package/dist/vuetify.d.ts +218 -162
- package/dist/vuetify.esm.js +849 -838
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +849 -838
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +479 -476
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +2 -13
- package/lib/components/VAutocomplete/VAutocomplete.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/VCombobox/VCombobox.js +2 -13
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- 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/composables/filter.d.ts +13 -9
- package/lib/composables/filter.js +39 -8
- package/lib/composables/filter.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +53 -53
- 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.d.ts
CHANGED
@@ -3635,12 +3635,15 @@ declare const VField: {
|
|
3635
3635
|
type VField = InstanceType<typeof VField>;
|
3636
3636
|
|
3637
3637
|
/**
|
3638
|
-
* - match without highlight
|
3639
|
-
* - single match (index), length already known
|
3640
|
-
* - single match (start, end)
|
3641
|
-
* - multiple matches (start, end),
|
3638
|
+
* - boolean: match without highlight
|
3639
|
+
* - number: single match (index), length already known
|
3640
|
+
* - []: single match (start, end)
|
3641
|
+
* - [][]: multiple matches (start, end), shouldn't overlap
|
3642
3642
|
*/
|
3643
|
-
type
|
3643
|
+
type FilterMatchArraySingle = readonly [number, number];
|
3644
|
+
type FilterMatchArrayMultiple = readonly FilterMatchArraySingle[];
|
3645
|
+
type FilterMatchArray = FilterMatchArraySingle | FilterMatchArrayMultiple;
|
3646
|
+
type FilterMatch = boolean | number | FilterMatchArray;
|
3644
3647
|
type FilterFunction = (value: string, query: string, item?: InternalItem) => FilterMatch;
|
3645
3648
|
type FilterKeyFunctions = Record<string, FilterFunction>;
|
3646
3649
|
type FilterKeys = string | string[];
|
@@ -17255,35 +17258,45 @@ declare const modes: {
|
|
17255
17258
|
|
17256
17259
|
declare const VColorPicker: {
|
17257
17260
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<vue.ExtractPropTypes<{
|
17258
|
-
width: {
|
17259
|
-
type: PropType<string | number>;
|
17260
|
-
default: NonNullable<string | number>;
|
17261
|
-
};
|
17262
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17263
|
-
color: StringConstructor;
|
17264
|
-
position: {
|
17265
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17266
|
-
validator: (v: any) => boolean;
|
17267
|
-
};
|
17268
|
-
style: {
|
17269
|
-
type: PropType<vue.StyleValue>;
|
17270
|
-
default: null;
|
17271
|
-
};
|
17272
|
-
class: PropType<ClassValue>;
|
17273
17261
|
theme: StringConstructor;
|
17274
17262
|
tag: {
|
17275
17263
|
type: PropType<string | JSXComponent>;
|
17276
17264
|
default: string;
|
17277
17265
|
};
|
17278
|
-
elevation: {
|
17279
|
-
type: (StringConstructor | NumberConstructor)[];
|
17280
|
-
validator(v: any): boolean;
|
17281
|
-
};
|
17282
17266
|
rounded: {
|
17283
17267
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17284
17268
|
default: undefined;
|
17285
17269
|
};
|
17286
17270
|
tile: BooleanConstructor;
|
17271
|
+
position: {
|
17272
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17273
|
+
validator: (v: any) => boolean;
|
17274
|
+
};
|
17275
|
+
location: PropType<Anchor | null>;
|
17276
|
+
elevation: {
|
17277
|
+
type: (StringConstructor | NumberConstructor)[];
|
17278
|
+
validator(v: any): boolean;
|
17279
|
+
};
|
17280
|
+
height: (StringConstructor | NumberConstructor)[];
|
17281
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
17282
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
17283
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
17284
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
17285
|
+
width: (StringConstructor | NumberConstructor)[];
|
17286
|
+
class: PropType<ClassValue>;
|
17287
|
+
style: {
|
17288
|
+
type: PropType<vue.StyleValue>;
|
17289
|
+
default: null;
|
17290
|
+
};
|
17291
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17292
|
+
color: StringConstructor;
|
17293
|
+
bgColor: StringConstructor;
|
17294
|
+
landscape: BooleanConstructor;
|
17295
|
+
title: StringConstructor;
|
17296
|
+
hideHeader: {
|
17297
|
+
type: PropType<boolean>;
|
17298
|
+
default: boolean;
|
17299
|
+
};
|
17287
17300
|
canvasHeight: {
|
17288
17301
|
type: (StringConstructor | NumberConstructor)[];
|
17289
17302
|
default: number;
|
@@ -17322,15 +17335,16 @@ declare const VColorPicker: {
|
|
17322
17335
|
'update:modelValue': (color: any) => true;
|
17323
17336
|
'update:mode': (mode: keyof typeof modes) => true;
|
17324
17337
|
}, vue.PublicProps, {
|
17325
|
-
width: string | number;
|
17326
17338
|
style: vue.StyleValue;
|
17327
17339
|
disabled: boolean;
|
17328
17340
|
tag: string | JSXComponent;
|
17329
17341
|
mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
|
17342
|
+
landscape: boolean;
|
17330
17343
|
rounded: string | number | boolean;
|
17331
17344
|
tile: boolean;
|
17332
17345
|
dotSize: string | number;
|
17333
17346
|
modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
|
17347
|
+
hideHeader: boolean;
|
17334
17348
|
canvasHeight: string | number;
|
17335
17349
|
hideCanvas: boolean;
|
17336
17350
|
hideSliders: boolean;
|
@@ -17345,35 +17359,45 @@ declare const VColorPicker: {
|
|
17345
17359
|
M: {};
|
17346
17360
|
Defaults: {};
|
17347
17361
|
}, Readonly<vue.ExtractPropTypes<{
|
17348
|
-
width: {
|
17349
|
-
type: PropType<string | number>;
|
17350
|
-
default: NonNullable<string | number>;
|
17351
|
-
};
|
17352
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17353
|
-
color: StringConstructor;
|
17354
|
-
position: {
|
17355
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17356
|
-
validator: (v: any) => boolean;
|
17357
|
-
};
|
17358
|
-
style: {
|
17359
|
-
type: PropType<vue.StyleValue>;
|
17360
|
-
default: null;
|
17361
|
-
};
|
17362
|
-
class: PropType<ClassValue>;
|
17363
17362
|
theme: StringConstructor;
|
17364
17363
|
tag: {
|
17365
17364
|
type: PropType<string | JSXComponent>;
|
17366
17365
|
default: string;
|
17367
17366
|
};
|
17368
|
-
elevation: {
|
17369
|
-
type: (StringConstructor | NumberConstructor)[];
|
17370
|
-
validator(v: any): boolean;
|
17371
|
-
};
|
17372
17367
|
rounded: {
|
17373
17368
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17374
17369
|
default: undefined;
|
17375
17370
|
};
|
17376
17371
|
tile: BooleanConstructor;
|
17372
|
+
position: {
|
17373
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17374
|
+
validator: (v: any) => boolean;
|
17375
|
+
};
|
17376
|
+
location: PropType<Anchor | null>;
|
17377
|
+
elevation: {
|
17378
|
+
type: (StringConstructor | NumberConstructor)[];
|
17379
|
+
validator(v: any): boolean;
|
17380
|
+
};
|
17381
|
+
height: (StringConstructor | NumberConstructor)[];
|
17382
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
17383
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
17384
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
17385
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
17386
|
+
width: (StringConstructor | NumberConstructor)[];
|
17387
|
+
class: PropType<ClassValue>;
|
17388
|
+
style: {
|
17389
|
+
type: PropType<vue.StyleValue>;
|
17390
|
+
default: null;
|
17391
|
+
};
|
17392
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17393
|
+
color: StringConstructor;
|
17394
|
+
bgColor: StringConstructor;
|
17395
|
+
landscape: BooleanConstructor;
|
17396
|
+
title: StringConstructor;
|
17397
|
+
hideHeader: {
|
17398
|
+
type: PropType<boolean>;
|
17399
|
+
default: boolean;
|
17400
|
+
};
|
17377
17401
|
canvasHeight: {
|
17378
17402
|
type: (StringConstructor | NumberConstructor)[];
|
17379
17403
|
default: number;
|
@@ -17409,15 +17433,16 @@ declare const VColorPicker: {
|
|
17409
17433
|
"onUpdate:modelValue"?: ((color: any) => any) | undefined;
|
17410
17434
|
"onUpdate:mode"?: ((mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa") => any) | undefined;
|
17411
17435
|
}, {}, {}, {}, {}, {
|
17412
|
-
width: string | number;
|
17413
17436
|
style: vue.StyleValue;
|
17414
17437
|
disabled: boolean;
|
17415
17438
|
tag: string | JSXComponent;
|
17416
17439
|
mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
|
17440
|
+
landscape: boolean;
|
17417
17441
|
rounded: string | number | boolean;
|
17418
17442
|
tile: boolean;
|
17419
17443
|
dotSize: string | number;
|
17420
17444
|
modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
|
17445
|
+
hideHeader: boolean;
|
17421
17446
|
canvasHeight: string | number;
|
17422
17447
|
hideCanvas: boolean;
|
17423
17448
|
hideSliders: boolean;
|
@@ -17429,35 +17454,45 @@ declare const VColorPicker: {
|
|
17429
17454
|
__isTeleport?: never;
|
17430
17455
|
__isSuspense?: never;
|
17431
17456
|
} & vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<{
|
17432
|
-
width: {
|
17433
|
-
type: PropType<string | number>;
|
17434
|
-
default: NonNullable<string | number>;
|
17435
|
-
};
|
17436
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17437
|
-
color: StringConstructor;
|
17438
|
-
position: {
|
17439
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17440
|
-
validator: (v: any) => boolean;
|
17441
|
-
};
|
17442
|
-
style: {
|
17443
|
-
type: PropType<vue.StyleValue>;
|
17444
|
-
default: null;
|
17445
|
-
};
|
17446
|
-
class: PropType<ClassValue>;
|
17447
17457
|
theme: StringConstructor;
|
17448
17458
|
tag: {
|
17449
17459
|
type: PropType<string | JSXComponent>;
|
17450
17460
|
default: string;
|
17451
17461
|
};
|
17452
|
-
elevation: {
|
17453
|
-
type: (StringConstructor | NumberConstructor)[];
|
17454
|
-
validator(v: any): boolean;
|
17455
|
-
};
|
17456
17462
|
rounded: {
|
17457
17463
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17458
17464
|
default: undefined;
|
17459
17465
|
};
|
17460
17466
|
tile: BooleanConstructor;
|
17467
|
+
position: {
|
17468
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17469
|
+
validator: (v: any) => boolean;
|
17470
|
+
};
|
17471
|
+
location: PropType<Anchor | null>;
|
17472
|
+
elevation: {
|
17473
|
+
type: (StringConstructor | NumberConstructor)[];
|
17474
|
+
validator(v: any): boolean;
|
17475
|
+
};
|
17476
|
+
height: (StringConstructor | NumberConstructor)[];
|
17477
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
17478
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
17479
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
17480
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
17481
|
+
width: (StringConstructor | NumberConstructor)[];
|
17482
|
+
class: PropType<ClassValue>;
|
17483
|
+
style: {
|
17484
|
+
type: PropType<vue.StyleValue>;
|
17485
|
+
default: null;
|
17486
|
+
};
|
17487
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17488
|
+
color: StringConstructor;
|
17489
|
+
bgColor: StringConstructor;
|
17490
|
+
landscape: BooleanConstructor;
|
17491
|
+
title: StringConstructor;
|
17492
|
+
hideHeader: {
|
17493
|
+
type: PropType<boolean>;
|
17494
|
+
default: boolean;
|
17495
|
+
};
|
17461
17496
|
canvasHeight: {
|
17462
17497
|
type: (StringConstructor | NumberConstructor)[];
|
17463
17498
|
default: number;
|
@@ -17496,15 +17531,16 @@ declare const VColorPicker: {
|
|
17496
17531
|
'update:modelValue': (color: any) => true;
|
17497
17532
|
'update:mode': (mode: keyof typeof modes) => true;
|
17498
17533
|
}, string, {
|
17499
|
-
width: string | number;
|
17500
17534
|
style: vue.StyleValue;
|
17501
17535
|
disabled: boolean;
|
17502
17536
|
tag: string | JSXComponent;
|
17503
17537
|
mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
|
17538
|
+
landscape: boolean;
|
17504
17539
|
rounded: string | number | boolean;
|
17505
17540
|
tile: boolean;
|
17506
17541
|
dotSize: string | number;
|
17507
17542
|
modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
|
17543
|
+
hideHeader: boolean;
|
17508
17544
|
canvasHeight: string | number;
|
17509
17545
|
hideCanvas: boolean;
|
17510
17546
|
hideSliders: boolean;
|
@@ -17512,35 +17548,45 @@ declare const VColorPicker: {
|
|
17512
17548
|
showSwatches: boolean;
|
17513
17549
|
swatchesMaxHeight: string | number;
|
17514
17550
|
}, {}, string, {}, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
17515
|
-
width: {
|
17516
|
-
type: PropType<string | number>;
|
17517
|
-
default: NonNullable<string | number>;
|
17518
|
-
};
|
17519
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17520
|
-
color: StringConstructor;
|
17521
|
-
position: {
|
17522
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17523
|
-
validator: (v: any) => boolean;
|
17524
|
-
};
|
17525
|
-
style: {
|
17526
|
-
type: PropType<vue.StyleValue>;
|
17527
|
-
default: null;
|
17528
|
-
};
|
17529
|
-
class: PropType<ClassValue>;
|
17530
17551
|
theme: StringConstructor;
|
17531
17552
|
tag: {
|
17532
17553
|
type: PropType<string | JSXComponent>;
|
17533
17554
|
default: string;
|
17534
17555
|
};
|
17535
|
-
elevation: {
|
17536
|
-
type: (StringConstructor | NumberConstructor)[];
|
17537
|
-
validator(v: any): boolean;
|
17538
|
-
};
|
17539
17556
|
rounded: {
|
17540
17557
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17541
17558
|
default: undefined;
|
17542
17559
|
};
|
17543
17560
|
tile: BooleanConstructor;
|
17561
|
+
position: {
|
17562
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17563
|
+
validator: (v: any) => boolean;
|
17564
|
+
};
|
17565
|
+
location: PropType<Anchor | null>;
|
17566
|
+
elevation: {
|
17567
|
+
type: (StringConstructor | NumberConstructor)[];
|
17568
|
+
validator(v: any): boolean;
|
17569
|
+
};
|
17570
|
+
height: (StringConstructor | NumberConstructor)[];
|
17571
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
17572
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
17573
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
17574
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
17575
|
+
width: (StringConstructor | NumberConstructor)[];
|
17576
|
+
class: PropType<ClassValue>;
|
17577
|
+
style: {
|
17578
|
+
type: PropType<vue.StyleValue>;
|
17579
|
+
default: null;
|
17580
|
+
};
|
17581
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17582
|
+
color: StringConstructor;
|
17583
|
+
bgColor: StringConstructor;
|
17584
|
+
landscape: BooleanConstructor;
|
17585
|
+
title: StringConstructor;
|
17586
|
+
hideHeader: {
|
17587
|
+
type: PropType<boolean>;
|
17588
|
+
default: boolean;
|
17589
|
+
};
|
17544
17590
|
canvasHeight: {
|
17545
17591
|
type: (StringConstructor | NumberConstructor)[];
|
17546
17592
|
default: number;
|
@@ -17573,35 +17619,45 @@ declare const VColorPicker: {
|
|
17573
17619
|
type: PropType<Record<string, unknown> | string | undefined | null>;
|
17574
17620
|
};
|
17575
17621
|
}, vue.ExtractPropTypes<{
|
17576
|
-
width: {
|
17577
|
-
type: PropType<string | number>;
|
17578
|
-
default: NonNullable<string | number>;
|
17579
|
-
};
|
17580
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17581
|
-
color: StringConstructor;
|
17582
|
-
position: {
|
17583
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17584
|
-
validator: (v: any) => boolean;
|
17585
|
-
};
|
17586
|
-
style: {
|
17587
|
-
type: PropType<vue.StyleValue>;
|
17588
|
-
default: null;
|
17589
|
-
};
|
17590
|
-
class: PropType<ClassValue>;
|
17591
17622
|
theme: StringConstructor;
|
17592
17623
|
tag: {
|
17593
17624
|
type: PropType<string | JSXComponent>;
|
17594
17625
|
default: string;
|
17595
17626
|
};
|
17596
|
-
elevation: {
|
17597
|
-
type: (StringConstructor | NumberConstructor)[];
|
17598
|
-
validator(v: any): boolean;
|
17599
|
-
};
|
17600
17627
|
rounded: {
|
17601
17628
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17602
17629
|
default: undefined;
|
17603
17630
|
};
|
17604
17631
|
tile: BooleanConstructor;
|
17632
|
+
position: {
|
17633
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17634
|
+
validator: (v: any) => boolean;
|
17635
|
+
};
|
17636
|
+
location: PropType<Anchor | null>;
|
17637
|
+
elevation: {
|
17638
|
+
type: (StringConstructor | NumberConstructor)[];
|
17639
|
+
validator(v: any): boolean;
|
17640
|
+
};
|
17641
|
+
height: (StringConstructor | NumberConstructor)[];
|
17642
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
17643
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
17644
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
17645
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
17646
|
+
width: (StringConstructor | NumberConstructor)[];
|
17647
|
+
class: PropType<ClassValue>;
|
17648
|
+
style: {
|
17649
|
+
type: PropType<vue.StyleValue>;
|
17650
|
+
default: null;
|
17651
|
+
};
|
17652
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17653
|
+
color: StringConstructor;
|
17654
|
+
bgColor: StringConstructor;
|
17655
|
+
landscape: BooleanConstructor;
|
17656
|
+
title: StringConstructor;
|
17657
|
+
hideHeader: {
|
17658
|
+
type: PropType<boolean>;
|
17659
|
+
default: boolean;
|
17660
|
+
};
|
17605
17661
|
canvasHeight: {
|
17606
17662
|
type: (StringConstructor | NumberConstructor)[];
|
17607
17663
|
default: number;
|
@@ -23705,6 +23761,7 @@ declare const VDatePicker: {
|
|
23705
23761
|
nextIcon: IconValue;
|
23706
23762
|
prevIcon: IconValue;
|
23707
23763
|
reverseTransition: string;
|
23764
|
+
hideHeader: boolean;
|
23708
23765
|
modeIcon: IconValue;
|
23709
23766
|
viewMode: "month" | "year" | "months";
|
23710
23767
|
showAdjacentMonths: boolean;
|
@@ -23712,7 +23769,6 @@ declare const VDatePicker: {
|
|
23712
23769
|
weeksInMonth: "static" | "dynamic";
|
23713
23770
|
hideWeekdays: boolean;
|
23714
23771
|
showWeek: boolean;
|
23715
|
-
hideHeader: boolean;
|
23716
23772
|
} & {
|
23717
23773
|
max?: unknown;
|
23718
23774
|
location?: Anchor | null | undefined;
|
@@ -23760,6 +23816,7 @@ declare const VDatePicker: {
|
|
23760
23816
|
nextIcon: IconValue;
|
23761
23817
|
prevIcon: IconValue;
|
23762
23818
|
reverseTransition: string;
|
23819
|
+
hideHeader: boolean;
|
23763
23820
|
modeIcon: IconValue;
|
23764
23821
|
viewMode: "month" | "year" | "months";
|
23765
23822
|
showAdjacentMonths: boolean;
|
@@ -23767,7 +23824,6 @@ declare const VDatePicker: {
|
|
23767
23824
|
weeksInMonth: "static" | "dynamic";
|
23768
23825
|
hideWeekdays: boolean;
|
23769
23826
|
showWeek: boolean;
|
23770
|
-
hideHeader: boolean;
|
23771
23827
|
}, true, {}, vue.SlotsType<Partial<{
|
23772
23828
|
default: () => vue.VNode[];
|
23773
23829
|
title: () => vue.VNode[];
|
@@ -23795,6 +23851,7 @@ declare const VDatePicker: {
|
|
23795
23851
|
nextIcon: IconValue;
|
23796
23852
|
prevIcon: IconValue;
|
23797
23853
|
reverseTransition: string;
|
23854
|
+
hideHeader: boolean;
|
23798
23855
|
modeIcon: IconValue;
|
23799
23856
|
viewMode: "month" | "year" | "months";
|
23800
23857
|
showAdjacentMonths: boolean;
|
@@ -23802,7 +23859,6 @@ declare const VDatePicker: {
|
|
23802
23859
|
weeksInMonth: "static" | "dynamic";
|
23803
23860
|
hideWeekdays: boolean;
|
23804
23861
|
showWeek: boolean;
|
23805
|
-
hideHeader: boolean;
|
23806
23862
|
} & {
|
23807
23863
|
max?: unknown;
|
23808
23864
|
location?: Anchor | null | undefined;
|
@@ -23845,6 +23901,7 @@ declare const VDatePicker: {
|
|
23845
23901
|
nextIcon: IconValue;
|
23846
23902
|
prevIcon: IconValue;
|
23847
23903
|
reverseTransition: string;
|
23904
|
+
hideHeader: boolean;
|
23848
23905
|
modeIcon: IconValue;
|
23849
23906
|
viewMode: "month" | "year" | "months";
|
23850
23907
|
showAdjacentMonths: boolean;
|
@@ -23852,7 +23909,6 @@ declare const VDatePicker: {
|
|
23852
23909
|
weeksInMonth: "static" | "dynamic";
|
23853
23910
|
hideWeekdays: boolean;
|
23854
23911
|
showWeek: boolean;
|
23855
|
-
hideHeader: boolean;
|
23856
23912
|
}>;
|
23857
23913
|
__isFragment?: never;
|
23858
23914
|
__isTeleport?: never;
|
@@ -23869,6 +23925,7 @@ declare const VDatePicker: {
|
|
23869
23925
|
nextIcon: IconValue;
|
23870
23926
|
prevIcon: IconValue;
|
23871
23927
|
reverseTransition: string;
|
23928
|
+
hideHeader: boolean;
|
23872
23929
|
modeIcon: IconValue;
|
23873
23930
|
viewMode: "month" | "year" | "months";
|
23874
23931
|
showAdjacentMonths: boolean;
|
@@ -23876,7 +23933,6 @@ declare const VDatePicker: {
|
|
23876
23933
|
weeksInMonth: "static" | "dynamic";
|
23877
23934
|
hideWeekdays: boolean;
|
23878
23935
|
showWeek: boolean;
|
23879
|
-
hideHeader: boolean;
|
23880
23936
|
} & {
|
23881
23937
|
max?: unknown;
|
23882
23938
|
location?: Anchor | null | undefined;
|
@@ -23924,6 +23980,7 @@ declare const VDatePicker: {
|
|
23924
23980
|
nextIcon: IconValue;
|
23925
23981
|
prevIcon: IconValue;
|
23926
23982
|
reverseTransition: string;
|
23983
|
+
hideHeader: boolean;
|
23927
23984
|
modeIcon: IconValue;
|
23928
23985
|
viewMode: "month" | "year" | "months";
|
23929
23986
|
showAdjacentMonths: boolean;
|
@@ -23931,7 +23988,6 @@ declare const VDatePicker: {
|
|
23931
23988
|
weeksInMonth: "static" | "dynamic";
|
23932
23989
|
hideWeekdays: boolean;
|
23933
23990
|
showWeek: boolean;
|
23934
|
-
hideHeader: boolean;
|
23935
23991
|
}, {}, string, vue.SlotsType<Partial<{
|
23936
23992
|
default: () => vue.VNode[];
|
23937
23993
|
title: () => vue.VNode[];
|
@@ -57888,22 +57944,22 @@ declare module 'vue' {
|
|
57888
57944
|
VAppBar: VAppBar
|
57889
57945
|
VAppBarNavIcon: VAppBarNavIcon
|
57890
57946
|
VAppBarTitle: VAppBarTitle
|
57947
|
+
VApp: VApp
|
57891
57948
|
VAlert: VAlert
|
57892
57949
|
VAlertTitle: VAlertTitle
|
57893
|
-
VAutocomplete: VAutocomplete
|
57894
|
-
VApp: VApp
|
57895
|
-
VBottomNavigation: VBottomNavigation
|
57896
57950
|
VAvatar: VAvatar
|
57951
|
+
VBottomNavigation: VBottomNavigation
|
57952
|
+
VAutocomplete: VAutocomplete
|
57897
57953
|
VBadge: VBadge
|
57898
|
-
VBottomSheet: VBottomSheet
|
57899
57954
|
VBanner: VBanner
|
57900
57955
|
VBannerActions: VBannerActions
|
57901
57956
|
VBannerText: VBannerText
|
57902
|
-
VBtn: VBtn
|
57903
|
-
VBtnToggle: VBtnToggle
|
57904
57957
|
VBreadcrumbs: VBreadcrumbs
|
57905
57958
|
VBreadcrumbsItem: VBreadcrumbsItem
|
57906
57959
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
57960
|
+
VBtn: VBtn
|
57961
|
+
VBottomSheet: VBottomSheet
|
57962
|
+
VBtnToggle: VBtnToggle
|
57907
57963
|
VCard: VCard
|
57908
57964
|
VCardActions: VCardActions
|
57909
57965
|
VCardItem: VCardItem
|
@@ -57911,52 +57967,54 @@ declare module 'vue' {
|
|
57911
57967
|
VCardText: VCardText
|
57912
57968
|
VCardTitle: VCardTitle
|
57913
57969
|
VChip: VChip
|
57914
|
-
|
57915
|
-
VCheckboxBtn: VCheckboxBtn
|
57970
|
+
VBtnGroup: VBtnGroup
|
57916
57971
|
VCarousel: VCarousel
|
57917
57972
|
VCarouselItem: VCarouselItem
|
57918
|
-
|
57973
|
+
VCheckbox: VCheckbox
|
57974
|
+
VCheckboxBtn: VCheckboxBtn
|
57919
57975
|
VCombobox: VCombobox
|
57920
|
-
VChipGroup: VChipGroup
|
57921
57976
|
VCode: VCode
|
57922
|
-
VDataTable: VDataTable
|
57923
|
-
VDataTableHeaders: VDataTableHeaders
|
57924
|
-
VDataTableFooter: VDataTableFooter
|
57925
|
-
VDataTableRows: VDataTableRows
|
57926
|
-
VDataTableRow: VDataTableRow
|
57927
|
-
VDataTableVirtual: VDataTableVirtual
|
57928
|
-
VDataTableServer: VDataTableServer
|
57929
57977
|
VCounter: VCounter
|
57930
|
-
VColorPicker: VColorPicker
|
57931
57978
|
VDialog: VDialog
|
57932
|
-
VDivider: VDivider
|
57933
57979
|
VDatePicker: VDatePicker
|
57934
57980
|
VDatePickerControls: VDatePickerControls
|
57935
57981
|
VDatePickerHeader: VDatePickerHeader
|
57936
57982
|
VDatePickerMonth: VDatePickerMonth
|
57937
57983
|
VDatePickerMonths: VDatePickerMonths
|
57938
57984
|
VDatePickerYears: VDatePickerYears
|
57985
|
+
VChipGroup: VChipGroup
|
57986
|
+
VColorPicker: VColorPicker
|
57987
|
+
VDivider: VDivider
|
57939
57988
|
VEmptyState: VEmptyState
|
57940
|
-
VFab: VFab
|
57941
57989
|
VExpansionPanels: VExpansionPanels
|
57942
57990
|
VExpansionPanel: VExpansionPanel
|
57943
57991
|
VExpansionPanelText: VExpansionPanelText
|
57944
57992
|
VExpansionPanelTitle: VExpansionPanelTitle
|
57993
|
+
VDataTable: VDataTable
|
57994
|
+
VDataTableHeaders: VDataTableHeaders
|
57995
|
+
VDataTableFooter: VDataTableFooter
|
57996
|
+
VDataTableRows: VDataTableRows
|
57997
|
+
VDataTableRow: VDataTableRow
|
57998
|
+
VDataTableVirtual: VDataTableVirtual
|
57999
|
+
VDataTableServer: VDataTableServer
|
58000
|
+
VFab: VFab
|
57945
58001
|
VFooter: VFooter
|
57946
|
-
VFileInput: VFileInput
|
57947
58002
|
VField: VField
|
57948
58003
|
VFieldLabel: VFieldLabel
|
58004
|
+
VFileInput: VFileInput
|
58005
|
+
VImg: VImg
|
58006
|
+
VInput: VInput
|
58007
|
+
VItemGroup: VItemGroup
|
58008
|
+
VItem: VItem
|
57949
58009
|
VInfiniteScroll: VInfiniteScroll
|
57950
58010
|
VIcon: VIcon
|
57951
58011
|
VComponentIcon: VComponentIcon
|
57952
58012
|
VSvgIcon: VSvgIcon
|
57953
58013
|
VLigatureIcon: VLigatureIcon
|
57954
58014
|
VClassIcon: VClassIcon
|
57955
|
-
VImg: VImg
|
57956
|
-
VItemGroup: VItemGroup
|
57957
|
-
VItem: VItem
|
57958
58015
|
VKbd: VKbd
|
57959
|
-
|
58016
|
+
VLabel: VLabel
|
58017
|
+
VMain: VMain
|
57960
58018
|
VList: VList
|
57961
58019
|
VListGroup: VListGroup
|
57962
58020
|
VListImg: VListImg
|
@@ -57966,46 +58024,45 @@ declare module 'vue' {
|
|
57966
58024
|
VListItemSubtitle: VListItemSubtitle
|
57967
58025
|
VListItemTitle: VListItemTitle
|
57968
58026
|
VListSubheader: VListSubheader
|
57969
|
-
VMain: VMain
|
57970
|
-
VLabel: VLabel
|
57971
58027
|
VNavigationDrawer: VNavigationDrawer
|
58028
|
+
VOverlay: VOverlay
|
57972
58029
|
VMenu: VMenu
|
57973
|
-
VMessages: VMessages
|
57974
58030
|
VOtpInput: VOtpInput
|
58031
|
+
VMessages: VMessages
|
57975
58032
|
VPagination: VPagination
|
57976
|
-
VOverlay: VOverlay
|
57977
|
-
VRadioGroup: VRadioGroup
|
57978
58033
|
VProgressLinear: VProgressLinear
|
57979
|
-
VRating: VRating
|
57980
58034
|
VProgressCircular: VProgressCircular
|
58035
|
+
VSelectionControl: VSelectionControl
|
58036
|
+
VRadioGroup: VRadioGroup
|
57981
58037
|
VSelectionControlGroup: VSelectionControlGroup
|
57982
58038
|
VSelect: VSelect
|
57983
|
-
VSelectionControl: VSelectionControl
|
57984
|
-
VSlideGroup: VSlideGroup
|
57985
|
-
VSlideGroupItem: VSlideGroupItem
|
57986
|
-
VSnackbar: VSnackbar
|
57987
58039
|
VSkeletonLoader: VSkeletonLoader
|
58040
|
+
VRating: VRating
|
57988
58041
|
VSlider: VSlider
|
57989
|
-
|
57990
|
-
|
57991
|
-
|
57992
|
-
VTabsWindow: VTabsWindow
|
57993
|
-
VTabsWindowItem: VTabsWindowItem
|
58042
|
+
VSnackbar: VSnackbar
|
58043
|
+
VSlideGroup: VSlideGroup
|
58044
|
+
VSlideGroupItem: VSlideGroupItem
|
57994
58045
|
VStepper: VStepper
|
57995
58046
|
VStepperActions: VStepperActions
|
57996
58047
|
VStepperHeader: VStepperHeader
|
57997
58048
|
VStepperItem: VStepperItem
|
57998
58049
|
VStepperWindow: VStepperWindow
|
57999
58050
|
VStepperWindowItem: VStepperWindowItem
|
58051
|
+
VSheet: VSheet
|
58052
|
+
VSwitch: VSwitch
|
58000
58053
|
VSystemBar: VSystemBar
|
58001
|
-
VTextarea: VTextarea
|
58002
|
-
VTable: VTable
|
58003
58054
|
VTextField: VTextField
|
58004
|
-
|
58005
|
-
|
58055
|
+
VTable: VTable
|
58056
|
+
VTab: VTab
|
58057
|
+
VTabs: VTabs
|
58058
|
+
VTabsWindow: VTabsWindow
|
58059
|
+
VTabsWindowItem: VTabsWindowItem
|
58060
|
+
VTextarea: VTextarea
|
58006
58061
|
VToolbar: VToolbar
|
58007
58062
|
VToolbarTitle: VToolbarTitle
|
58008
58063
|
VToolbarItems: VToolbarItems
|
58064
|
+
VTimeline: VTimeline
|
58065
|
+
VTimelineItem: VTimelineItem
|
58009
58066
|
VTooltip: VTooltip
|
58010
58067
|
VWindow: VWindow
|
58011
58068
|
VWindowItem: VWindowItem
|
@@ -58018,21 +58075,20 @@ declare module 'vue' {
|
|
58018
58075
|
VRow: VRow
|
58019
58076
|
VSpacer: VSpacer
|
58020
58077
|
VHover: VHover
|
58021
|
-
|
58078
|
+
VLocaleProvider: VLocaleProvider
|
58022
58079
|
VLayout: VLayout
|
58023
58080
|
VLayoutItem: VLayoutItem
|
58024
|
-
|
58081
|
+
VLazy: VLazy
|
58082
|
+
VNoSsr: VNoSsr
|
58025
58083
|
VParallax: VParallax
|
58026
58084
|
VRadio: VRadio
|
58027
58085
|
VRangeSlider: VRangeSlider
|
58028
58086
|
VResponsive: VResponsive
|
58029
|
-
VNoSsr: VNoSsr
|
58030
58087
|
VSparkline: VSparkline
|
58031
58088
|
VSpeedDial: VSpeedDial
|
58032
58089
|
VThemeProvider: VThemeProvider
|
58033
58090
|
VVirtualScroll: VVirtualScroll
|
58034
58091
|
VValidation: VValidation
|
58035
|
-
VSheet: VSheet
|
58036
58092
|
VFabTransition: VFabTransition
|
58037
58093
|
VDialogBottomTransition: VDialogBottomTransition
|
58038
58094
|
VDialogTopTransition: VDialogTopTransition
|
@@ -58059,18 +58115,18 @@ declare module 'vue' {
|
|
58059
58115
|
VPickerTitle: VPickerTitle
|
58060
58116
|
VFileUpload: VFileUpload
|
58061
58117
|
VFileUploadItem: VFileUploadItem
|
58118
|
+
VNumberInput: VNumberInput
|
58062
58119
|
VStepperVertical: VStepperVertical
|
58063
58120
|
VStepperVerticalItem: VStepperVerticalItem
|
58064
58121
|
VStepperVerticalActions: VStepperVerticalActions
|
58065
|
-
VTreeview: VTreeview
|
58066
|
-
VTreeviewItem: VTreeviewItem
|
58067
|
-
VTreeviewGroup: VTreeviewGroup
|
58068
|
-
VNumberInput: VNumberInput
|
58069
58122
|
VTimePicker: VTimePicker
|
58070
58123
|
VTimePickerClock: VTimePickerClock
|
58071
58124
|
VTimePickerControls: VTimePickerControls
|
58125
|
+
VTreeview: VTreeview
|
58126
|
+
VTreeviewItem: VTreeviewItem
|
58127
|
+
VTreeviewGroup: VTreeviewGroup
|
58072
58128
|
VDateInput: VDateInput
|
58073
|
-
VPullToRefresh: VPullToRefresh
|
58074
58129
|
VSnackbarQueue: VSnackbarQueue
|
58130
|
+
VPullToRefresh: VPullToRefresh
|
58075
58131
|
}
|
58076
58132
|
}
|