@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-labs.d.ts
CHANGED
@@ -3622,12 +3622,15 @@ declare const VField: {
|
|
3622
3622
|
type VField = InstanceType<typeof VField>;
|
3623
3623
|
|
3624
3624
|
/**
|
3625
|
-
* - match without highlight
|
3626
|
-
* - single match (index), length already known
|
3627
|
-
* - single match (start, end)
|
3628
|
-
* - multiple matches (start, end),
|
3625
|
+
* - boolean: match without highlight
|
3626
|
+
* - number: single match (index), length already known
|
3627
|
+
* - []: single match (start, end)
|
3628
|
+
* - [][]: multiple matches (start, end), shouldn't overlap
|
3629
3629
|
*/
|
3630
|
-
type
|
3630
|
+
type FilterMatchArraySingle = readonly [number, number];
|
3631
|
+
type FilterMatchArrayMultiple = readonly FilterMatchArraySingle[];
|
3632
|
+
type FilterMatchArray = FilterMatchArraySingle | FilterMatchArrayMultiple;
|
3633
|
+
type FilterMatch = boolean | number | FilterMatchArray;
|
3631
3634
|
type FilterFunction = (value: string, query: string, item?: InternalItem) => FilterMatch;
|
3632
3635
|
type FilterKeyFunctions = Record<string, FilterFunction>;
|
3633
3636
|
type FilterKeys = string | string[];
|
@@ -17242,35 +17245,45 @@ declare const modes: {
|
|
17242
17245
|
|
17243
17246
|
declare const VColorPicker: {
|
17244
17247
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<vue.ExtractPropTypes<{
|
17245
|
-
width: {
|
17246
|
-
type: PropType<string | number>;
|
17247
|
-
default: NonNullable<string | number>;
|
17248
|
-
};
|
17249
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17250
|
-
color: StringConstructor;
|
17251
|
-
position: {
|
17252
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17253
|
-
validator: (v: any) => boolean;
|
17254
|
-
};
|
17255
|
-
style: {
|
17256
|
-
type: PropType<vue.StyleValue>;
|
17257
|
-
default: null;
|
17258
|
-
};
|
17259
|
-
class: PropType<ClassValue>;
|
17260
17248
|
theme: StringConstructor;
|
17261
17249
|
tag: {
|
17262
17250
|
type: PropType<string | JSXComponent>;
|
17263
17251
|
default: string;
|
17264
17252
|
};
|
17265
|
-
elevation: {
|
17266
|
-
type: (StringConstructor | NumberConstructor)[];
|
17267
|
-
validator(v: any): boolean;
|
17268
|
-
};
|
17269
17253
|
rounded: {
|
17270
17254
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17271
17255
|
default: undefined;
|
17272
17256
|
};
|
17273
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
|
+
};
|
17274
17287
|
canvasHeight: {
|
17275
17288
|
type: (StringConstructor | NumberConstructor)[];
|
17276
17289
|
default: number;
|
@@ -17309,15 +17322,16 @@ declare const VColorPicker: {
|
|
17309
17322
|
'update:modelValue': (color: any) => true;
|
17310
17323
|
'update:mode': (mode: keyof typeof modes) => true;
|
17311
17324
|
}, vue.PublicProps, {
|
17312
|
-
width: string | number;
|
17313
17325
|
style: vue.StyleValue;
|
17314
17326
|
disabled: boolean;
|
17315
17327
|
tag: string | JSXComponent;
|
17316
17328
|
mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
|
17329
|
+
landscape: boolean;
|
17317
17330
|
rounded: string | number | boolean;
|
17318
17331
|
tile: boolean;
|
17319
17332
|
dotSize: string | number;
|
17320
17333
|
modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
|
17334
|
+
hideHeader: boolean;
|
17321
17335
|
canvasHeight: string | number;
|
17322
17336
|
hideCanvas: boolean;
|
17323
17337
|
hideSliders: boolean;
|
@@ -17332,35 +17346,45 @@ declare const VColorPicker: {
|
|
17332
17346
|
M: {};
|
17333
17347
|
Defaults: {};
|
17334
17348
|
}, Readonly<vue.ExtractPropTypes<{
|
17335
|
-
width: {
|
17336
|
-
type: PropType<string | number>;
|
17337
|
-
default: NonNullable<string | number>;
|
17338
|
-
};
|
17339
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17340
|
-
color: StringConstructor;
|
17341
|
-
position: {
|
17342
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17343
|
-
validator: (v: any) => boolean;
|
17344
|
-
};
|
17345
|
-
style: {
|
17346
|
-
type: PropType<vue.StyleValue>;
|
17347
|
-
default: null;
|
17348
|
-
};
|
17349
|
-
class: PropType<ClassValue>;
|
17350
17349
|
theme: StringConstructor;
|
17351
17350
|
tag: {
|
17352
17351
|
type: PropType<string | JSXComponent>;
|
17353
17352
|
default: string;
|
17354
17353
|
};
|
17355
|
-
elevation: {
|
17356
|
-
type: (StringConstructor | NumberConstructor)[];
|
17357
|
-
validator(v: any): boolean;
|
17358
|
-
};
|
17359
17354
|
rounded: {
|
17360
17355
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17361
17356
|
default: undefined;
|
17362
17357
|
};
|
17363
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
|
+
};
|
17364
17388
|
canvasHeight: {
|
17365
17389
|
type: (StringConstructor | NumberConstructor)[];
|
17366
17390
|
default: number;
|
@@ -17396,15 +17420,16 @@ declare const VColorPicker: {
|
|
17396
17420
|
"onUpdate:modelValue"?: ((color: any) => any) | undefined;
|
17397
17421
|
"onUpdate:mode"?: ((mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa") => any) | undefined;
|
17398
17422
|
}, {}, {}, {}, {}, {
|
17399
|
-
width: string | number;
|
17400
17423
|
style: vue.StyleValue;
|
17401
17424
|
disabled: boolean;
|
17402
17425
|
tag: string | JSXComponent;
|
17403
17426
|
mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
|
17427
|
+
landscape: boolean;
|
17404
17428
|
rounded: string | number | boolean;
|
17405
17429
|
tile: boolean;
|
17406
17430
|
dotSize: string | number;
|
17407
17431
|
modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
|
17432
|
+
hideHeader: boolean;
|
17408
17433
|
canvasHeight: string | number;
|
17409
17434
|
hideCanvas: boolean;
|
17410
17435
|
hideSliders: boolean;
|
@@ -17416,35 +17441,45 @@ declare const VColorPicker: {
|
|
17416
17441
|
__isTeleport?: never;
|
17417
17442
|
__isSuspense?: never;
|
17418
17443
|
} & vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<{
|
17419
|
-
width: {
|
17420
|
-
type: PropType<string | number>;
|
17421
|
-
default: NonNullable<string | number>;
|
17422
|
-
};
|
17423
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17424
|
-
color: StringConstructor;
|
17425
|
-
position: {
|
17426
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17427
|
-
validator: (v: any) => boolean;
|
17428
|
-
};
|
17429
|
-
style: {
|
17430
|
-
type: PropType<vue.StyleValue>;
|
17431
|
-
default: null;
|
17432
|
-
};
|
17433
|
-
class: PropType<ClassValue>;
|
17434
17444
|
theme: StringConstructor;
|
17435
17445
|
tag: {
|
17436
17446
|
type: PropType<string | JSXComponent>;
|
17437
17447
|
default: string;
|
17438
17448
|
};
|
17439
|
-
elevation: {
|
17440
|
-
type: (StringConstructor | NumberConstructor)[];
|
17441
|
-
validator(v: any): boolean;
|
17442
|
-
};
|
17443
17449
|
rounded: {
|
17444
17450
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17445
17451
|
default: undefined;
|
17446
17452
|
};
|
17447
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
|
+
};
|
17448
17483
|
canvasHeight: {
|
17449
17484
|
type: (StringConstructor | NumberConstructor)[];
|
17450
17485
|
default: number;
|
@@ -17483,15 +17518,16 @@ declare const VColorPicker: {
|
|
17483
17518
|
'update:modelValue': (color: any) => true;
|
17484
17519
|
'update:mode': (mode: keyof typeof modes) => true;
|
17485
17520
|
}, string, {
|
17486
|
-
width: string | number;
|
17487
17521
|
style: vue.StyleValue;
|
17488
17522
|
disabled: boolean;
|
17489
17523
|
tag: string | JSXComponent;
|
17490
17524
|
mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
|
17525
|
+
landscape: boolean;
|
17491
17526
|
rounded: string | number | boolean;
|
17492
17527
|
tile: boolean;
|
17493
17528
|
dotSize: string | number;
|
17494
17529
|
modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
|
17530
|
+
hideHeader: boolean;
|
17495
17531
|
canvasHeight: string | number;
|
17496
17532
|
hideCanvas: boolean;
|
17497
17533
|
hideSliders: boolean;
|
@@ -17499,35 +17535,45 @@ declare const VColorPicker: {
|
|
17499
17535
|
showSwatches: boolean;
|
17500
17536
|
swatchesMaxHeight: string | number;
|
17501
17537
|
}, {}, string, {}, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
17502
|
-
width: {
|
17503
|
-
type: PropType<string | number>;
|
17504
|
-
default: NonNullable<string | number>;
|
17505
|
-
};
|
17506
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17507
|
-
color: StringConstructor;
|
17508
|
-
position: {
|
17509
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17510
|
-
validator: (v: any) => boolean;
|
17511
|
-
};
|
17512
|
-
style: {
|
17513
|
-
type: PropType<vue.StyleValue>;
|
17514
|
-
default: null;
|
17515
|
-
};
|
17516
|
-
class: PropType<ClassValue>;
|
17517
17538
|
theme: StringConstructor;
|
17518
17539
|
tag: {
|
17519
17540
|
type: PropType<string | JSXComponent>;
|
17520
17541
|
default: string;
|
17521
17542
|
};
|
17522
|
-
elevation: {
|
17523
|
-
type: (StringConstructor | NumberConstructor)[];
|
17524
|
-
validator(v: any): boolean;
|
17525
|
-
};
|
17526
17543
|
rounded: {
|
17527
17544
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17528
17545
|
default: undefined;
|
17529
17546
|
};
|
17530
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
|
+
};
|
17531
17577
|
canvasHeight: {
|
17532
17578
|
type: (StringConstructor | NumberConstructor)[];
|
17533
17579
|
default: number;
|
@@ -17560,35 +17606,45 @@ declare const VColorPicker: {
|
|
17560
17606
|
type: PropType<Record<string, unknown> | string | undefined | null>;
|
17561
17607
|
};
|
17562
17608
|
}, vue.ExtractPropTypes<{
|
17563
|
-
width: {
|
17564
|
-
type: PropType<string | number>;
|
17565
|
-
default: NonNullable<string | number>;
|
17566
|
-
};
|
17567
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17568
|
-
color: StringConstructor;
|
17569
|
-
position: {
|
17570
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
17571
|
-
validator: (v: any) => boolean;
|
17572
|
-
};
|
17573
|
-
style: {
|
17574
|
-
type: PropType<vue.StyleValue>;
|
17575
|
-
default: null;
|
17576
|
-
};
|
17577
|
-
class: PropType<ClassValue>;
|
17578
17609
|
theme: StringConstructor;
|
17579
17610
|
tag: {
|
17580
17611
|
type: PropType<string | JSXComponent>;
|
17581
17612
|
default: string;
|
17582
17613
|
};
|
17583
|
-
elevation: {
|
17584
|
-
type: (StringConstructor | NumberConstructor)[];
|
17585
|
-
validator(v: any): boolean;
|
17586
|
-
};
|
17587
17614
|
rounded: {
|
17588
17615
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
17589
17616
|
default: undefined;
|
17590
17617
|
};
|
17591
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
|
+
};
|
17592
17648
|
canvasHeight: {
|
17593
17649
|
type: (StringConstructor | NumberConstructor)[];
|
17594
17650
|
default: number;
|
@@ -23934,6 +23990,7 @@ declare const VDatePicker: {
|
|
23934
23990
|
nextIcon: IconValue;
|
23935
23991
|
prevIcon: IconValue;
|
23936
23992
|
reverseTransition: string;
|
23993
|
+
hideHeader: boolean;
|
23937
23994
|
modeIcon: IconValue;
|
23938
23995
|
viewMode: "month" | "year" | "months";
|
23939
23996
|
showAdjacentMonths: boolean;
|
@@ -23941,7 +23998,6 @@ declare const VDatePicker: {
|
|
23941
23998
|
weeksInMonth: "static" | "dynamic";
|
23942
23999
|
hideWeekdays: boolean;
|
23943
24000
|
showWeek: boolean;
|
23944
|
-
hideHeader: boolean;
|
23945
24001
|
} & {
|
23946
24002
|
max?: unknown;
|
23947
24003
|
location?: Anchor | null | undefined;
|
@@ -23989,6 +24045,7 @@ declare const VDatePicker: {
|
|
23989
24045
|
nextIcon: IconValue;
|
23990
24046
|
prevIcon: IconValue;
|
23991
24047
|
reverseTransition: string;
|
24048
|
+
hideHeader: boolean;
|
23992
24049
|
modeIcon: IconValue;
|
23993
24050
|
viewMode: "month" | "year" | "months";
|
23994
24051
|
showAdjacentMonths: boolean;
|
@@ -23996,7 +24053,6 @@ declare const VDatePicker: {
|
|
23996
24053
|
weeksInMonth: "static" | "dynamic";
|
23997
24054
|
hideWeekdays: boolean;
|
23998
24055
|
showWeek: boolean;
|
23999
|
-
hideHeader: boolean;
|
24000
24056
|
}, true, {}, vue.SlotsType<Partial<{
|
24001
24057
|
default: () => vue.VNode[];
|
24002
24058
|
title: () => vue.VNode[];
|
@@ -24024,6 +24080,7 @@ declare const VDatePicker: {
|
|
24024
24080
|
nextIcon: IconValue;
|
24025
24081
|
prevIcon: IconValue;
|
24026
24082
|
reverseTransition: string;
|
24083
|
+
hideHeader: boolean;
|
24027
24084
|
modeIcon: IconValue;
|
24028
24085
|
viewMode: "month" | "year" | "months";
|
24029
24086
|
showAdjacentMonths: boolean;
|
@@ -24031,7 +24088,6 @@ declare const VDatePicker: {
|
|
24031
24088
|
weeksInMonth: "static" | "dynamic";
|
24032
24089
|
hideWeekdays: boolean;
|
24033
24090
|
showWeek: boolean;
|
24034
|
-
hideHeader: boolean;
|
24035
24091
|
} & {
|
24036
24092
|
max?: unknown;
|
24037
24093
|
location?: Anchor | null | undefined;
|
@@ -24074,6 +24130,7 @@ declare const VDatePicker: {
|
|
24074
24130
|
nextIcon: IconValue;
|
24075
24131
|
prevIcon: IconValue;
|
24076
24132
|
reverseTransition: string;
|
24133
|
+
hideHeader: boolean;
|
24077
24134
|
modeIcon: IconValue;
|
24078
24135
|
viewMode: "month" | "year" | "months";
|
24079
24136
|
showAdjacentMonths: boolean;
|
@@ -24081,7 +24138,6 @@ declare const VDatePicker: {
|
|
24081
24138
|
weeksInMonth: "static" | "dynamic";
|
24082
24139
|
hideWeekdays: boolean;
|
24083
24140
|
showWeek: boolean;
|
24084
|
-
hideHeader: boolean;
|
24085
24141
|
}>;
|
24086
24142
|
__isFragment?: never;
|
24087
24143
|
__isTeleport?: never;
|
@@ -24098,6 +24154,7 @@ declare const VDatePicker: {
|
|
24098
24154
|
nextIcon: IconValue;
|
24099
24155
|
prevIcon: IconValue;
|
24100
24156
|
reverseTransition: string;
|
24157
|
+
hideHeader: boolean;
|
24101
24158
|
modeIcon: IconValue;
|
24102
24159
|
viewMode: "month" | "year" | "months";
|
24103
24160
|
showAdjacentMonths: boolean;
|
@@ -24105,7 +24162,6 @@ declare const VDatePicker: {
|
|
24105
24162
|
weeksInMonth: "static" | "dynamic";
|
24106
24163
|
hideWeekdays: boolean;
|
24107
24164
|
showWeek: boolean;
|
24108
|
-
hideHeader: boolean;
|
24109
24165
|
} & {
|
24110
24166
|
max?: unknown;
|
24111
24167
|
location?: Anchor | null | undefined;
|
@@ -24153,6 +24209,7 @@ declare const VDatePicker: {
|
|
24153
24209
|
nextIcon: IconValue;
|
24154
24210
|
prevIcon: IconValue;
|
24155
24211
|
reverseTransition: string;
|
24212
|
+
hideHeader: boolean;
|
24156
24213
|
modeIcon: IconValue;
|
24157
24214
|
viewMode: "month" | "year" | "months";
|
24158
24215
|
showAdjacentMonths: boolean;
|
@@ -24160,7 +24217,6 @@ declare const VDatePicker: {
|
|
24160
24217
|
weeksInMonth: "static" | "dynamic";
|
24161
24218
|
hideWeekdays: boolean;
|
24162
24219
|
showWeek: boolean;
|
24163
|
-
hideHeader: boolean;
|
24164
24220
|
}, {}, string, vue.SlotsType<Partial<{
|
24165
24221
|
default: () => vue.VNode[];
|
24166
24222
|
title: () => vue.VNode[];
|
@@ -57719,11 +57775,11 @@ declare const VCalendar: {
|
|
57719
57775
|
day: Record<string, any>;
|
57720
57776
|
nextIcon: string;
|
57721
57777
|
prevIcon: string;
|
57778
|
+
hideHeader: boolean;
|
57722
57779
|
viewMode: "day" | "month" | "week";
|
57723
57780
|
showAdjacentMonths: boolean;
|
57724
57781
|
weekdays: number[];
|
57725
57782
|
weeksInMonth: "static" | "dynamic";
|
57726
|
-
hideHeader: boolean;
|
57727
57783
|
intervalDivisions: number;
|
57728
57784
|
intervalDuration: number;
|
57729
57785
|
intervalHeight: number;
|
@@ -57843,11 +57899,11 @@ declare const VCalendar: {
|
|
57843
57899
|
day: Record<string, any>;
|
57844
57900
|
nextIcon: string;
|
57845
57901
|
prevIcon: string;
|
57902
|
+
hideHeader: boolean;
|
57846
57903
|
viewMode: "day" | "month" | "week";
|
57847
57904
|
showAdjacentMonths: boolean;
|
57848
57905
|
weekdays: number[];
|
57849
57906
|
weeksInMonth: "static" | "dynamic";
|
57850
|
-
hideHeader: boolean;
|
57851
57907
|
intervalDivisions: number;
|
57852
57908
|
intervalDuration: number;
|
57853
57909
|
intervalHeight: number;
|
@@ -57878,11 +57934,11 @@ declare const VCalendar: {
|
|
57878
57934
|
day: Record<string, any>;
|
57879
57935
|
nextIcon: string;
|
57880
57936
|
prevIcon: string;
|
57937
|
+
hideHeader: boolean;
|
57881
57938
|
viewMode: "day" | "month" | "week";
|
57882
57939
|
showAdjacentMonths: boolean;
|
57883
57940
|
weekdays: number[];
|
57884
57941
|
weeksInMonth: "static" | "dynamic";
|
57885
|
-
hideHeader: boolean;
|
57886
57942
|
intervalDivisions: number;
|
57887
57943
|
intervalDuration: number;
|
57888
57944
|
intervalHeight: number;
|
@@ -57998,11 +58054,11 @@ declare const VCalendar: {
|
|
57998
58054
|
day: Record<string, any>;
|
57999
58055
|
nextIcon: string;
|
58000
58056
|
prevIcon: string;
|
58057
|
+
hideHeader: boolean;
|
58001
58058
|
viewMode: "day" | "month" | "week";
|
58002
58059
|
showAdjacentMonths: boolean;
|
58003
58060
|
weekdays: number[];
|
58004
58061
|
weeksInMonth: "static" | "dynamic";
|
58005
|
-
hideHeader: boolean;
|
58006
58062
|
intervalDivisions: number;
|
58007
58063
|
intervalDuration: number;
|
58008
58064
|
intervalHeight: number;
|
@@ -58021,11 +58077,11 @@ declare const VCalendar: {
|
|
58021
58077
|
day: Record<string, any>;
|
58022
58078
|
nextIcon: string;
|
58023
58079
|
prevIcon: string;
|
58080
|
+
hideHeader: boolean;
|
58024
58081
|
viewMode: "day" | "month" | "week";
|
58025
58082
|
showAdjacentMonths: boolean;
|
58026
58083
|
weekdays: number[];
|
58027
58084
|
weeksInMonth: "static" | "dynamic";
|
58028
|
-
hideHeader: boolean;
|
58029
58085
|
intervalDivisions: number;
|
58030
58086
|
intervalDuration: number;
|
58031
58087
|
intervalHeight: number;
|
@@ -58145,11 +58201,11 @@ declare const VCalendar: {
|
|
58145
58201
|
day: Record<string, any>;
|
58146
58202
|
nextIcon: string;
|
58147
58203
|
prevIcon: string;
|
58204
|
+
hideHeader: boolean;
|
58148
58205
|
viewMode: "day" | "month" | "week";
|
58149
58206
|
showAdjacentMonths: boolean;
|
58150
58207
|
weekdays: number[];
|
58151
58208
|
weeksInMonth: "static" | "dynamic";
|
58152
|
-
hideHeader: boolean;
|
58153
58209
|
intervalDivisions: number;
|
58154
58210
|
intervalDuration: number;
|
58155
58211
|
intervalHeight: number;
|
@@ -59309,6 +59365,7 @@ declare const VDateInput: {
|
|
59309
59365
|
persistentPlaceholder: boolean;
|
59310
59366
|
persistentCounter: boolean;
|
59311
59367
|
reverseTransition: string;
|
59368
|
+
hideHeader: boolean;
|
59312
59369
|
cancelText: string;
|
59313
59370
|
okText: string;
|
59314
59371
|
modeIcon: IconValue;
|
@@ -59318,7 +59375,6 @@ declare const VDateInput: {
|
|
59318
59375
|
weeksInMonth: "static" | "dynamic";
|
59319
59376
|
hideWeekdays: boolean;
|
59320
59377
|
showWeek: boolean;
|
59321
|
-
hideHeader: boolean;
|
59322
59378
|
hideActions: boolean;
|
59323
59379
|
} & {
|
59324
59380
|
name?: string | undefined;
|
@@ -59471,6 +59527,7 @@ declare const VDateInput: {
|
|
59471
59527
|
persistentPlaceholder: boolean;
|
59472
59528
|
persistentCounter: boolean;
|
59473
59529
|
reverseTransition: string;
|
59530
|
+
hideHeader: boolean;
|
59474
59531
|
cancelText: string;
|
59475
59532
|
okText: string;
|
59476
59533
|
modeIcon: IconValue;
|
@@ -59480,7 +59537,6 @@ declare const VDateInput: {
|
|
59480
59537
|
weeksInMonth: "static" | "dynamic";
|
59481
59538
|
hideWeekdays: boolean;
|
59482
59539
|
showWeek: boolean;
|
59483
|
-
hideHeader: boolean;
|
59484
59540
|
hideActions: boolean;
|
59485
59541
|
}, true, {}, vue.SlotsType<Partial<{
|
59486
59542
|
message: (arg: VMessageSlot) => vue.VNode[];
|
@@ -59546,6 +59602,7 @@ declare const VDateInput: {
|
|
59546
59602
|
persistentPlaceholder: boolean;
|
59547
59603
|
persistentCounter: boolean;
|
59548
59604
|
reverseTransition: string;
|
59605
|
+
hideHeader: boolean;
|
59549
59606
|
cancelText: string;
|
59550
59607
|
okText: string;
|
59551
59608
|
modeIcon: IconValue;
|
@@ -59555,7 +59612,6 @@ declare const VDateInput: {
|
|
59555
59612
|
weeksInMonth: "static" | "dynamic";
|
59556
59613
|
hideWeekdays: boolean;
|
59557
59614
|
showWeek: boolean;
|
59558
|
-
hideHeader: boolean;
|
59559
59615
|
hideActions: boolean;
|
59560
59616
|
} & {
|
59561
59617
|
name?: string | undefined;
|
@@ -59706,6 +59762,7 @@ declare const VDateInput: {
|
|
59706
59762
|
persistentPlaceholder: boolean;
|
59707
59763
|
persistentCounter: boolean;
|
59708
59764
|
reverseTransition: string;
|
59765
|
+
hideHeader: boolean;
|
59709
59766
|
cancelText: string;
|
59710
59767
|
okText: string;
|
59711
59768
|
modeIcon: IconValue;
|
@@ -59715,7 +59772,6 @@ declare const VDateInput: {
|
|
59715
59772
|
weeksInMonth: "static" | "dynamic";
|
59716
59773
|
hideWeekdays: boolean;
|
59717
59774
|
showWeek: boolean;
|
59718
|
-
hideHeader: boolean;
|
59719
59775
|
hideActions: boolean;
|
59720
59776
|
}>;
|
59721
59777
|
__isFragment?: never;
|
@@ -59760,6 +59816,7 @@ declare const VDateInput: {
|
|
59760
59816
|
persistentPlaceholder: boolean;
|
59761
59817
|
persistentCounter: boolean;
|
59762
59818
|
reverseTransition: string;
|
59819
|
+
hideHeader: boolean;
|
59763
59820
|
cancelText: string;
|
59764
59821
|
okText: string;
|
59765
59822
|
modeIcon: IconValue;
|
@@ -59769,7 +59826,6 @@ declare const VDateInput: {
|
|
59769
59826
|
weeksInMonth: "static" | "dynamic";
|
59770
59827
|
hideWeekdays: boolean;
|
59771
59828
|
showWeek: boolean;
|
59772
|
-
hideHeader: boolean;
|
59773
59829
|
hideActions: boolean;
|
59774
59830
|
} & {
|
59775
59831
|
name?: string | undefined;
|
@@ -59922,6 +59978,7 @@ declare const VDateInput: {
|
|
59922
59978
|
persistentPlaceholder: boolean;
|
59923
59979
|
persistentCounter: boolean;
|
59924
59980
|
reverseTransition: string;
|
59981
|
+
hideHeader: boolean;
|
59925
59982
|
cancelText: string;
|
59926
59983
|
okText: string;
|
59927
59984
|
modeIcon: IconValue;
|
@@ -59931,7 +59988,6 @@ declare const VDateInput: {
|
|
59931
59988
|
weeksInMonth: "static" | "dynamic";
|
59932
59989
|
hideWeekdays: boolean;
|
59933
59990
|
showWeek: boolean;
|
59934
|
-
hideHeader: boolean;
|
59935
59991
|
hideActions: boolean;
|
59936
59992
|
}, {}, string, vue.SlotsType<Partial<{
|
59937
59993
|
message: (arg: VMessageSlot) => vue.VNode[];
|
@@ -60016,6 +60072,10 @@ declare const VDateInput: {
|
|
60016
60072
|
type: StringConstructor;
|
60017
60073
|
default: string;
|
60018
60074
|
};
|
60075
|
+
hideHeader: {
|
60076
|
+
type: PropType<boolean>;
|
60077
|
+
default: boolean;
|
60078
|
+
};
|
60019
60079
|
modeIcon: {
|
60020
60080
|
type: PropType<IconValue>;
|
60021
60081
|
default: string;
|
@@ -60058,10 +60118,6 @@ declare const VDateInput: {
|
|
60058
60118
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
60059
60119
|
hideWeekdays: BooleanConstructor;
|
60060
60120
|
showWeek: BooleanConstructor;
|
60061
|
-
hideHeader: {
|
60062
|
-
type: PropType<boolean>;
|
60063
|
-
default: boolean;
|
60064
|
-
};
|
60065
60121
|
rounded: {
|
60066
60122
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
60067
60123
|
default: undefined;
|
@@ -60237,6 +60293,10 @@ declare const VDateInput: {
|
|
60237
60293
|
type: StringConstructor;
|
60238
60294
|
default: string;
|
60239
60295
|
};
|
60296
|
+
hideHeader: {
|
60297
|
+
type: PropType<boolean>;
|
60298
|
+
default: boolean;
|
60299
|
+
};
|
60240
60300
|
modeIcon: {
|
60241
60301
|
type: PropType<IconValue>;
|
60242
60302
|
default: string;
|
@@ -60279,10 +60339,6 @@ declare const VDateInput: {
|
|
60279
60339
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
60280
60340
|
hideWeekdays: BooleanConstructor;
|
60281
60341
|
showWeek: BooleanConstructor;
|
60282
|
-
hideHeader: {
|
60283
|
-
type: PropType<boolean>;
|
60284
|
-
default: boolean;
|
60285
|
-
};
|
60286
60342
|
rounded: {
|
60287
60343
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
60288
60344
|
default: undefined;
|
@@ -72335,22 +72391,22 @@ declare module 'vue' {
|
|
72335
72391
|
VAppBar: VAppBar
|
72336
72392
|
VAppBarNavIcon: VAppBarNavIcon
|
72337
72393
|
VAppBarTitle: VAppBarTitle
|
72394
|
+
VApp: VApp
|
72338
72395
|
VAlert: VAlert
|
72339
72396
|
VAlertTitle: VAlertTitle
|
72340
|
-
VAutocomplete: VAutocomplete
|
72341
|
-
VApp: VApp
|
72342
|
-
VBottomNavigation: VBottomNavigation
|
72343
72397
|
VAvatar: VAvatar
|
72398
|
+
VBottomNavigation: VBottomNavigation
|
72399
|
+
VAutocomplete: VAutocomplete
|
72344
72400
|
VBadge: VBadge
|
72345
|
-
VBottomSheet: VBottomSheet
|
72346
72401
|
VBanner: VBanner
|
72347
72402
|
VBannerActions: VBannerActions
|
72348
72403
|
VBannerText: VBannerText
|
72349
|
-
VBtn: VBtn
|
72350
|
-
VBtnToggle: VBtnToggle
|
72351
72404
|
VBreadcrumbs: VBreadcrumbs
|
72352
72405
|
VBreadcrumbsItem: VBreadcrumbsItem
|
72353
72406
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
72407
|
+
VBtn: VBtn
|
72408
|
+
VBottomSheet: VBottomSheet
|
72409
|
+
VBtnToggle: VBtnToggle
|
72354
72410
|
VCard: VCard
|
72355
72411
|
VCardActions: VCardActions
|
72356
72412
|
VCardItem: VCardItem
|
@@ -72358,52 +72414,54 @@ declare module 'vue' {
|
|
72358
72414
|
VCardText: VCardText
|
72359
72415
|
VCardTitle: VCardTitle
|
72360
72416
|
VChip: VChip
|
72361
|
-
|
72362
|
-
VCheckboxBtn: VCheckboxBtn
|
72417
|
+
VBtnGroup: VBtnGroup
|
72363
72418
|
VCarousel: VCarousel
|
72364
72419
|
VCarouselItem: VCarouselItem
|
72365
|
-
|
72420
|
+
VCheckbox: VCheckbox
|
72421
|
+
VCheckboxBtn: VCheckboxBtn
|
72366
72422
|
VCombobox: VCombobox
|
72367
|
-
VChipGroup: VChipGroup
|
72368
72423
|
VCode: VCode
|
72369
|
-
VDataTable: VDataTable
|
72370
|
-
VDataTableHeaders: VDataTableHeaders
|
72371
|
-
VDataTableFooter: VDataTableFooter
|
72372
|
-
VDataTableRows: VDataTableRows
|
72373
|
-
VDataTableRow: VDataTableRow
|
72374
|
-
VDataTableVirtual: VDataTableVirtual
|
72375
|
-
VDataTableServer: VDataTableServer
|
72376
72424
|
VCounter: VCounter
|
72377
|
-
VColorPicker: VColorPicker
|
72378
72425
|
VDialog: VDialog
|
72379
|
-
VDivider: VDivider
|
72380
72426
|
VDatePicker: VDatePicker
|
72381
72427
|
VDatePickerControls: VDatePickerControls
|
72382
72428
|
VDatePickerHeader: VDatePickerHeader
|
72383
72429
|
VDatePickerMonth: VDatePickerMonth
|
72384
72430
|
VDatePickerMonths: VDatePickerMonths
|
72385
72431
|
VDatePickerYears: VDatePickerYears
|
72432
|
+
VChipGroup: VChipGroup
|
72433
|
+
VColorPicker: VColorPicker
|
72434
|
+
VDivider: VDivider
|
72386
72435
|
VEmptyState: VEmptyState
|
72387
|
-
VFab: VFab
|
72388
72436
|
VExpansionPanels: VExpansionPanels
|
72389
72437
|
VExpansionPanel: VExpansionPanel
|
72390
72438
|
VExpansionPanelText: VExpansionPanelText
|
72391
72439
|
VExpansionPanelTitle: VExpansionPanelTitle
|
72440
|
+
VDataTable: VDataTable
|
72441
|
+
VDataTableHeaders: VDataTableHeaders
|
72442
|
+
VDataTableFooter: VDataTableFooter
|
72443
|
+
VDataTableRows: VDataTableRows
|
72444
|
+
VDataTableRow: VDataTableRow
|
72445
|
+
VDataTableVirtual: VDataTableVirtual
|
72446
|
+
VDataTableServer: VDataTableServer
|
72447
|
+
VFab: VFab
|
72392
72448
|
VFooter: VFooter
|
72393
|
-
VFileInput: VFileInput
|
72394
72449
|
VField: VField
|
72395
72450
|
VFieldLabel: VFieldLabel
|
72451
|
+
VFileInput: VFileInput
|
72452
|
+
VImg: VImg
|
72453
|
+
VInput: VInput
|
72454
|
+
VItemGroup: VItemGroup
|
72455
|
+
VItem: VItem
|
72396
72456
|
VInfiniteScroll: VInfiniteScroll
|
72397
72457
|
VIcon: VIcon
|
72398
72458
|
VComponentIcon: VComponentIcon
|
72399
72459
|
VSvgIcon: VSvgIcon
|
72400
72460
|
VLigatureIcon: VLigatureIcon
|
72401
72461
|
VClassIcon: VClassIcon
|
72402
|
-
VImg: VImg
|
72403
|
-
VItemGroup: VItemGroup
|
72404
|
-
VItem: VItem
|
72405
72462
|
VKbd: VKbd
|
72406
|
-
|
72463
|
+
VLabel: VLabel
|
72464
|
+
VMain: VMain
|
72407
72465
|
VList: VList
|
72408
72466
|
VListGroup: VListGroup
|
72409
72467
|
VListImg: VListImg
|
@@ -72413,46 +72471,45 @@ declare module 'vue' {
|
|
72413
72471
|
VListItemSubtitle: VListItemSubtitle
|
72414
72472
|
VListItemTitle: VListItemTitle
|
72415
72473
|
VListSubheader: VListSubheader
|
72416
|
-
VMain: VMain
|
72417
|
-
VLabel: VLabel
|
72418
72474
|
VNavigationDrawer: VNavigationDrawer
|
72475
|
+
VOverlay: VOverlay
|
72419
72476
|
VMenu: VMenu
|
72420
|
-
VMessages: VMessages
|
72421
72477
|
VOtpInput: VOtpInput
|
72478
|
+
VMessages: VMessages
|
72422
72479
|
VPagination: VPagination
|
72423
|
-
VOverlay: VOverlay
|
72424
|
-
VRadioGroup: VRadioGroup
|
72425
72480
|
VProgressLinear: VProgressLinear
|
72426
|
-
VRating: VRating
|
72427
72481
|
VProgressCircular: VProgressCircular
|
72482
|
+
VSelectionControl: VSelectionControl
|
72483
|
+
VRadioGroup: VRadioGroup
|
72428
72484
|
VSelectionControlGroup: VSelectionControlGroup
|
72429
72485
|
VSelect: VSelect
|
72430
|
-
VSelectionControl: VSelectionControl
|
72431
|
-
VSlideGroup: VSlideGroup
|
72432
|
-
VSlideGroupItem: VSlideGroupItem
|
72433
|
-
VSnackbar: VSnackbar
|
72434
72486
|
VSkeletonLoader: VSkeletonLoader
|
72487
|
+
VRating: VRating
|
72435
72488
|
VSlider: VSlider
|
72436
|
-
|
72437
|
-
|
72438
|
-
|
72439
|
-
VTabsWindow: VTabsWindow
|
72440
|
-
VTabsWindowItem: VTabsWindowItem
|
72489
|
+
VSnackbar: VSnackbar
|
72490
|
+
VSlideGroup: VSlideGroup
|
72491
|
+
VSlideGroupItem: VSlideGroupItem
|
72441
72492
|
VStepper: VStepper
|
72442
72493
|
VStepperActions: VStepperActions
|
72443
72494
|
VStepperHeader: VStepperHeader
|
72444
72495
|
VStepperItem: VStepperItem
|
72445
72496
|
VStepperWindow: VStepperWindow
|
72446
72497
|
VStepperWindowItem: VStepperWindowItem
|
72498
|
+
VSheet: VSheet
|
72499
|
+
VSwitch: VSwitch
|
72447
72500
|
VSystemBar: VSystemBar
|
72448
|
-
VTextarea: VTextarea
|
72449
|
-
VTable: VTable
|
72450
72501
|
VTextField: VTextField
|
72451
|
-
|
72452
|
-
|
72502
|
+
VTable: VTable
|
72503
|
+
VTab: VTab
|
72504
|
+
VTabs: VTabs
|
72505
|
+
VTabsWindow: VTabsWindow
|
72506
|
+
VTabsWindowItem: VTabsWindowItem
|
72507
|
+
VTextarea: VTextarea
|
72453
72508
|
VToolbar: VToolbar
|
72454
72509
|
VToolbarTitle: VToolbarTitle
|
72455
72510
|
VToolbarItems: VToolbarItems
|
72511
|
+
VTimeline: VTimeline
|
72512
|
+
VTimelineItem: VTimelineItem
|
72456
72513
|
VTooltip: VTooltip
|
72457
72514
|
VWindow: VWindow
|
72458
72515
|
VWindowItem: VWindowItem
|
@@ -72465,21 +72522,20 @@ declare module 'vue' {
|
|
72465
72522
|
VRow: VRow
|
72466
72523
|
VSpacer: VSpacer
|
72467
72524
|
VHover: VHover
|
72468
|
-
|
72525
|
+
VLocaleProvider: VLocaleProvider
|
72469
72526
|
VLayout: VLayout
|
72470
72527
|
VLayoutItem: VLayoutItem
|
72471
|
-
|
72528
|
+
VLazy: VLazy
|
72529
|
+
VNoSsr: VNoSsr
|
72472
72530
|
VParallax: VParallax
|
72473
72531
|
VRadio: VRadio
|
72474
72532
|
VRangeSlider: VRangeSlider
|
72475
72533
|
VResponsive: VResponsive
|
72476
|
-
VNoSsr: VNoSsr
|
72477
72534
|
VSparkline: VSparkline
|
72478
72535
|
VSpeedDial: VSpeedDial
|
72479
72536
|
VThemeProvider: VThemeProvider
|
72480
72537
|
VVirtualScroll: VVirtualScroll
|
72481
72538
|
VValidation: VValidation
|
72482
|
-
VSheet: VSheet
|
72483
72539
|
VFabTransition: VFabTransition
|
72484
72540
|
VDialogBottomTransition: VDialogBottomTransition
|
72485
72541
|
VDialogTopTransition: VDialogTopTransition
|
@@ -72506,18 +72562,18 @@ declare module 'vue' {
|
|
72506
72562
|
VPickerTitle: VPickerTitle
|
72507
72563
|
VFileUpload: VFileUpload
|
72508
72564
|
VFileUploadItem: VFileUploadItem
|
72565
|
+
VNumberInput: VNumberInput
|
72509
72566
|
VStepperVertical: VStepperVertical
|
72510
72567
|
VStepperVerticalItem: VStepperVerticalItem
|
72511
72568
|
VStepperVerticalActions: VStepperVerticalActions
|
72512
|
-
VTreeview: VTreeview
|
72513
|
-
VTreeviewItem: VTreeviewItem
|
72514
|
-
VTreeviewGroup: VTreeviewGroup
|
72515
|
-
VNumberInput: VNumberInput
|
72516
72569
|
VTimePicker: VTimePicker
|
72517
72570
|
VTimePickerClock: VTimePickerClock
|
72518
72571
|
VTimePickerControls: VTimePickerControls
|
72572
|
+
VTreeview: VTreeview
|
72573
|
+
VTreeviewItem: VTreeviewItem
|
72574
|
+
VTreeviewGroup: VTreeviewGroup
|
72519
72575
|
VDateInput: VDateInput
|
72520
|
-
VPullToRefresh: VPullToRefresh
|
72521
72576
|
VSnackbarQueue: VSnackbarQueue
|
72577
|
+
VPullToRefresh: VPullToRefresh
|
72522
72578
|
}
|
72523
72579
|
}
|