@vuetify/nightly 3.5.9-dev.2024-03-26 → 3.5.9-dev.2024-03-30
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 +5 -2
- package/dist/json/attributes.json +43 -7
- package/dist/json/importMap-labs.json +4 -4
- package/dist/json/importMap.json +110 -110
- package/dist/json/tags.json +9 -0
- package/dist/json/web-types.json +101 -14
- package/dist/vuetify-labs.css +2027 -2025
- package/dist/vuetify-labs.d.ts +130 -19
- package/dist/vuetify-labs.esm.js +162 -138
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +162 -138
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +336 -334
- package/dist/vuetify.d.ts +163 -52
- package/dist/vuetify.esm.js +162 -138
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +162 -138
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +189 -189
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTableFooter.mjs +1 -1
- package/lib/components/VDataTable/VDataTableFooter.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +64 -42
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +60 -0
- package/lib/components/VTimeline/VTimeline.mjs +12 -6
- package/lib/components/VTimeline/VTimeline.mjs.map +1 -1
- package/lib/components/VTimeline/index.d.mts +70 -19
- package/lib/components/index.d.mts +130 -19
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +33 -33
- package/lib/labs/VPicker/VPicker.css +2 -0
- package/lib/labs/VPicker/VPicker.sass +2 -0
- package/lib/styles/generic/_transitions.scss +4 -4
- package/lib/styles/main.css +4 -4
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
|
@@ -27394,6 +27394,7 @@ type VDatePickerSlots = Omit<VPickerSlots, 'header'> & {
|
|
|
27394
27394
|
};
|
|
27395
27395
|
declare const VDatePicker: {
|
|
27396
27396
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
27397
|
+
transition: string;
|
|
27397
27398
|
header: string;
|
|
27398
27399
|
style: vue.StyleValue;
|
|
27399
27400
|
title: string;
|
|
@@ -27403,6 +27404,7 @@ declare const VDatePicker: {
|
|
|
27403
27404
|
tile: boolean;
|
|
27404
27405
|
nextIcon: string;
|
|
27405
27406
|
prevIcon: string;
|
|
27407
|
+
reverseTransition: string;
|
|
27406
27408
|
modeIcon: string;
|
|
27407
27409
|
viewMode: "month" | "year" | "months";
|
|
27408
27410
|
showAdjacentMonths: boolean;
|
|
@@ -27444,6 +27446,7 @@ declare const VDatePicker: {
|
|
|
27444
27446
|
'update:year': (date: any) => true;
|
|
27445
27447
|
'update:viewMode': (date: any) => true;
|
|
27446
27448
|
}, "multiple" | "$children" | "v-slot:default" | "v-slots" | "modelValue" | "v-slot:title" | "update:modelValue" | "v-slot:header" | "v-slot:actions">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
27449
|
+
transition: string;
|
|
27447
27450
|
header: string;
|
|
27448
27451
|
style: vue.StyleValue;
|
|
27449
27452
|
title: string;
|
|
@@ -27453,6 +27456,7 @@ declare const VDatePicker: {
|
|
|
27453
27456
|
tile: boolean;
|
|
27454
27457
|
nextIcon: string;
|
|
27455
27458
|
prevIcon: string;
|
|
27459
|
+
reverseTransition: string;
|
|
27456
27460
|
modeIcon: string;
|
|
27457
27461
|
viewMode: "month" | "year" | "months";
|
|
27458
27462
|
showAdjacentMonths: boolean;
|
|
@@ -27490,6 +27494,7 @@ declare const VDatePicker: {
|
|
|
27490
27494
|
"onUpdate:viewMode"?: ((date: any) => any) | undefined;
|
|
27491
27495
|
}, {
|
|
27492
27496
|
active: string | string[];
|
|
27497
|
+
transition: string;
|
|
27493
27498
|
header: string;
|
|
27494
27499
|
style: vue.StyleValue;
|
|
27495
27500
|
title: string;
|
|
@@ -27500,6 +27505,7 @@ declare const VDatePicker: {
|
|
|
27500
27505
|
tile: boolean;
|
|
27501
27506
|
nextIcon: string;
|
|
27502
27507
|
prevIcon: string;
|
|
27508
|
+
reverseTransition: string;
|
|
27503
27509
|
modeIcon: string;
|
|
27504
27510
|
viewMode: "month" | "year" | "months";
|
|
27505
27511
|
showAdjacentMonths: boolean;
|
|
@@ -27531,6 +27537,7 @@ declare const VDatePicker: {
|
|
|
27531
27537
|
M: {};
|
|
27532
27538
|
Defaults: {};
|
|
27533
27539
|
}, {
|
|
27540
|
+
transition: string;
|
|
27534
27541
|
header: string;
|
|
27535
27542
|
style: vue.StyleValue;
|
|
27536
27543
|
title: string;
|
|
@@ -27540,6 +27547,7 @@ declare const VDatePicker: {
|
|
|
27540
27547
|
tile: boolean;
|
|
27541
27548
|
nextIcon: string;
|
|
27542
27549
|
prevIcon: string;
|
|
27550
|
+
reverseTransition: string;
|
|
27543
27551
|
modeIcon: string;
|
|
27544
27552
|
viewMode: "month" | "year" | "months";
|
|
27545
27553
|
showAdjacentMonths: boolean;
|
|
@@ -27577,6 +27585,7 @@ declare const VDatePicker: {
|
|
|
27577
27585
|
"onUpdate:viewMode"?: ((date: any) => any) | undefined;
|
|
27578
27586
|
}, {}, {}, {}, {}, {
|
|
27579
27587
|
active: string | string[];
|
|
27588
|
+
transition: string;
|
|
27580
27589
|
header: string;
|
|
27581
27590
|
style: vue.StyleValue;
|
|
27582
27591
|
title: string;
|
|
@@ -27587,6 +27596,7 @@ declare const VDatePicker: {
|
|
|
27587
27596
|
tile: boolean;
|
|
27588
27597
|
nextIcon: string;
|
|
27589
27598
|
prevIcon: string;
|
|
27599
|
+
reverseTransition: string;
|
|
27590
27600
|
modeIcon: string;
|
|
27591
27601
|
viewMode: "month" | "year" | "months";
|
|
27592
27602
|
showAdjacentMonths: boolean;
|
|
@@ -27599,6 +27609,7 @@ declare const VDatePicker: {
|
|
|
27599
27609
|
__isTeleport?: undefined;
|
|
27600
27610
|
__isSuspense?: undefined;
|
|
27601
27611
|
} & vue.ComponentOptionsBase<{
|
|
27612
|
+
transition: string;
|
|
27602
27613
|
header: string;
|
|
27603
27614
|
style: vue.StyleValue;
|
|
27604
27615
|
title: string;
|
|
@@ -27608,6 +27619,7 @@ declare const VDatePicker: {
|
|
|
27608
27619
|
tile: boolean;
|
|
27609
27620
|
nextIcon: string;
|
|
27610
27621
|
prevIcon: string;
|
|
27622
|
+
reverseTransition: string;
|
|
27611
27623
|
modeIcon: string;
|
|
27612
27624
|
viewMode: "month" | "year" | "months";
|
|
27613
27625
|
showAdjacentMonths: boolean;
|
|
@@ -27650,6 +27662,7 @@ declare const VDatePicker: {
|
|
|
27650
27662
|
'update:viewMode': (date: any) => true;
|
|
27651
27663
|
}, "multiple" | "$children" | "v-slot:default" | "v-slots" | "modelValue" | "v-slot:title" | "update:modelValue" | "v-slot:header" | "v-slot:actions">, string, {
|
|
27652
27664
|
active: string | string[];
|
|
27665
|
+
transition: string;
|
|
27653
27666
|
header: string;
|
|
27654
27667
|
style: vue.StyleValue;
|
|
27655
27668
|
title: string;
|
|
@@ -27660,6 +27673,7 @@ declare const VDatePicker: {
|
|
|
27660
27673
|
tile: boolean;
|
|
27661
27674
|
nextIcon: string;
|
|
27662
27675
|
prevIcon: string;
|
|
27676
|
+
reverseTransition: string;
|
|
27663
27677
|
modeIcon: string;
|
|
27664
27678
|
viewMode: "month" | "year" | "months";
|
|
27665
27679
|
showAdjacentMonths: boolean;
|
|
@@ -27760,6 +27774,14 @@ declare const VDatePicker: {
|
|
|
27760
27774
|
hideWeekdays: BooleanConstructor;
|
|
27761
27775
|
multiple: vue.PropType<number | boolean | "range" | (string & {})>;
|
|
27762
27776
|
showWeek: BooleanConstructor;
|
|
27777
|
+
transition: {
|
|
27778
|
+
type: StringConstructor;
|
|
27779
|
+
default: string;
|
|
27780
|
+
};
|
|
27781
|
+
reverseTransition: {
|
|
27782
|
+
type: StringConstructor;
|
|
27783
|
+
default: string;
|
|
27784
|
+
};
|
|
27763
27785
|
active: {
|
|
27764
27786
|
type: vue.PropType<string | string[]>;
|
|
27765
27787
|
default: undefined;
|
|
@@ -27854,6 +27876,14 @@ declare const VDatePicker: {
|
|
|
27854
27876
|
hideWeekdays: BooleanConstructor;
|
|
27855
27877
|
multiple: vue.PropType<number | boolean | "range" | (string & {})>;
|
|
27856
27878
|
showWeek: BooleanConstructor;
|
|
27879
|
+
transition: {
|
|
27880
|
+
type: StringConstructor;
|
|
27881
|
+
default: string;
|
|
27882
|
+
};
|
|
27883
|
+
reverseTransition: {
|
|
27884
|
+
type: StringConstructor;
|
|
27885
|
+
default: string;
|
|
27886
|
+
};
|
|
27857
27887
|
active: {
|
|
27858
27888
|
type: vue.PropType<string | string[]>;
|
|
27859
27889
|
default: undefined;
|
|
@@ -28237,7 +28267,9 @@ type VDatePickerHeader = InstanceType<typeof VDatePickerHeader>;
|
|
|
28237
28267
|
|
|
28238
28268
|
declare const VDatePickerMonth: {
|
|
28239
28269
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
28270
|
+
transition: string;
|
|
28240
28271
|
disabled: boolean;
|
|
28272
|
+
reverseTransition: string;
|
|
28241
28273
|
showAdjacentMonths: boolean;
|
|
28242
28274
|
weekdays: number[];
|
|
28243
28275
|
hideWeekdays: boolean;
|
|
@@ -28288,7 +28320,9 @@ declare const VDatePickerMonth: {
|
|
|
28288
28320
|
'update:month': (date: number) => true;
|
|
28289
28321
|
'update:year': (date: number) => true;
|
|
28290
28322
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
28323
|
+
transition: string;
|
|
28291
28324
|
disabled: boolean;
|
|
28325
|
+
reverseTransition: string;
|
|
28292
28326
|
showAdjacentMonths: boolean;
|
|
28293
28327
|
weekdays: number[];
|
|
28294
28328
|
hideWeekdays: boolean;
|
|
@@ -28335,7 +28369,9 @@ declare const VDatePickerMonth: {
|
|
|
28335
28369
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
28336
28370
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
28337
28371
|
}, {
|
|
28372
|
+
transition: string;
|
|
28338
28373
|
disabled: boolean;
|
|
28374
|
+
reverseTransition: string;
|
|
28339
28375
|
showAdjacentMonths: boolean;
|
|
28340
28376
|
weekdays: number[];
|
|
28341
28377
|
hideWeekdays: boolean;
|
|
@@ -28358,7 +28394,9 @@ declare const VDatePickerMonth: {
|
|
|
28358
28394
|
M: {};
|
|
28359
28395
|
Defaults: {};
|
|
28360
28396
|
}, {
|
|
28397
|
+
transition: string;
|
|
28361
28398
|
disabled: boolean;
|
|
28399
|
+
reverseTransition: string;
|
|
28362
28400
|
showAdjacentMonths: boolean;
|
|
28363
28401
|
weekdays: number[];
|
|
28364
28402
|
hideWeekdays: boolean;
|
|
@@ -28405,7 +28443,9 @@ declare const VDatePickerMonth: {
|
|
|
28405
28443
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
28406
28444
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
28407
28445
|
}, () => JSX.Element, {}, {}, {}, {
|
|
28446
|
+
transition: string;
|
|
28408
28447
|
disabled: boolean;
|
|
28448
|
+
reverseTransition: string;
|
|
28409
28449
|
showAdjacentMonths: boolean;
|
|
28410
28450
|
weekdays: number[];
|
|
28411
28451
|
hideWeekdays: boolean;
|
|
@@ -28415,7 +28455,9 @@ declare const VDatePickerMonth: {
|
|
|
28415
28455
|
__isTeleport?: undefined;
|
|
28416
28456
|
__isSuspense?: undefined;
|
|
28417
28457
|
} & vue.ComponentOptionsBase<{
|
|
28458
|
+
transition: string;
|
|
28418
28459
|
disabled: boolean;
|
|
28460
|
+
reverseTransition: string;
|
|
28419
28461
|
showAdjacentMonths: boolean;
|
|
28420
28462
|
weekdays: number[];
|
|
28421
28463
|
hideWeekdays: boolean;
|
|
@@ -28466,7 +28508,9 @@ declare const VDatePickerMonth: {
|
|
|
28466
28508
|
'update:month': (date: number) => true;
|
|
28467
28509
|
'update:year': (date: number) => true;
|
|
28468
28510
|
}, string, {
|
|
28511
|
+
transition: string;
|
|
28469
28512
|
disabled: boolean;
|
|
28513
|
+
reverseTransition: string;
|
|
28470
28514
|
showAdjacentMonths: boolean;
|
|
28471
28515
|
weekdays: number[];
|
|
28472
28516
|
hideWeekdays: boolean;
|
|
@@ -28512,6 +28556,14 @@ declare const VDatePickerMonth: {
|
|
|
28512
28556
|
hideWeekdays: BooleanConstructor;
|
|
28513
28557
|
multiple: PropType<number | boolean | "range" | (string & {})>;
|
|
28514
28558
|
showWeek: BooleanConstructor;
|
|
28559
|
+
transition: {
|
|
28560
|
+
type: StringConstructor;
|
|
28561
|
+
default: string;
|
|
28562
|
+
};
|
|
28563
|
+
reverseTransition: {
|
|
28564
|
+
type: StringConstructor;
|
|
28565
|
+
default: string;
|
|
28566
|
+
};
|
|
28515
28567
|
}, vue.ExtractPropTypes<{
|
|
28516
28568
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
28517
28569
|
disabled: BooleanConstructor;
|
|
@@ -28543,6 +28595,14 @@ declare const VDatePickerMonth: {
|
|
|
28543
28595
|
hideWeekdays: BooleanConstructor;
|
|
28544
28596
|
multiple: PropType<number | boolean | "range" | (string & {})>;
|
|
28545
28597
|
showWeek: BooleanConstructor;
|
|
28598
|
+
transition: {
|
|
28599
|
+
type: StringConstructor;
|
|
28600
|
+
default: string;
|
|
28601
|
+
};
|
|
28602
|
+
reverseTransition: {
|
|
28603
|
+
type: StringConstructor;
|
|
28604
|
+
default: string;
|
|
28605
|
+
};
|
|
28546
28606
|
}>>;
|
|
28547
28607
|
type VDatePickerMonth = InstanceType<typeof VDatePickerMonth>;
|
|
28548
28608
|
|
|
@@ -63169,10 +63229,12 @@ type TimelineTruncateLine = 'start' | 'end' | 'both' | undefined;
|
|
|
63169
63229
|
declare const VTimeline: {
|
|
63170
63230
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
63171
63231
|
style: vue.StyleValue;
|
|
63232
|
+
size: string | number;
|
|
63172
63233
|
tag: string;
|
|
63173
63234
|
justify: string;
|
|
63174
63235
|
density: Density;
|
|
63175
|
-
|
|
63236
|
+
fillDot: boolean;
|
|
63237
|
+
lineInset: NonNullable<string | number>;
|
|
63176
63238
|
lineThickness: string | number;
|
|
63177
63239
|
} & {
|
|
63178
63240
|
direction?: TimelineDirection | undefined;
|
|
@@ -63180,7 +63242,10 @@ declare const VTimeline: {
|
|
|
63180
63242
|
align?: TimelineAlign | undefined;
|
|
63181
63243
|
side?: TimelineSide;
|
|
63182
63244
|
theme?: string | undefined;
|
|
63245
|
+
dotColor?: string | undefined;
|
|
63246
|
+
iconColor?: string | undefined;
|
|
63183
63247
|
lineColor?: string | undefined;
|
|
63248
|
+
hideOpposite?: boolean | undefined;
|
|
63184
63249
|
truncateLine?: TimelineTruncateLine;
|
|
63185
63250
|
} & {
|
|
63186
63251
|
$children?: vue.VNodeChild | {
|
|
@@ -63193,10 +63258,12 @@ declare const VTimeline: {
|
|
|
63193
63258
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
63194
63259
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
63195
63260
|
style: vue.StyleValue;
|
|
63261
|
+
size: string | number;
|
|
63196
63262
|
tag: string;
|
|
63197
63263
|
justify: string;
|
|
63198
63264
|
density: Density;
|
|
63199
|
-
|
|
63265
|
+
fillDot: boolean;
|
|
63266
|
+
lineInset: NonNullable<string | number>;
|
|
63200
63267
|
lineThickness: string | number;
|
|
63201
63268
|
} & {
|
|
63202
63269
|
direction?: TimelineDirection | undefined;
|
|
@@ -63204,7 +63271,10 @@ declare const VTimeline: {
|
|
|
63204
63271
|
align?: TimelineAlign | undefined;
|
|
63205
63272
|
side?: TimelineSide;
|
|
63206
63273
|
theme?: string | undefined;
|
|
63274
|
+
dotColor?: string | undefined;
|
|
63275
|
+
iconColor?: string | undefined;
|
|
63207
63276
|
lineColor?: string | undefined;
|
|
63277
|
+
hideOpposite?: boolean | undefined;
|
|
63208
63278
|
truncateLine?: TimelineTruncateLine;
|
|
63209
63279
|
} & {
|
|
63210
63280
|
$children?: vue.VNodeChild | {
|
|
@@ -63217,10 +63287,13 @@ declare const VTimeline: {
|
|
|
63217
63287
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
63218
63288
|
}, {
|
|
63219
63289
|
style: vue.StyleValue;
|
|
63290
|
+
size: string | number;
|
|
63220
63291
|
tag: string;
|
|
63221
63292
|
justify: string;
|
|
63222
63293
|
density: Density;
|
|
63223
|
-
|
|
63294
|
+
fillDot: boolean;
|
|
63295
|
+
hideOpposite: boolean;
|
|
63296
|
+
lineInset: NonNullable<string | number>;
|
|
63224
63297
|
lineThickness: string | number;
|
|
63225
63298
|
}, true, {}, vue.SlotsType<Partial<{
|
|
63226
63299
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -63235,10 +63308,12 @@ declare const VTimeline: {
|
|
|
63235
63308
|
Defaults: {};
|
|
63236
63309
|
}, {
|
|
63237
63310
|
style: vue.StyleValue;
|
|
63311
|
+
size: string | number;
|
|
63238
63312
|
tag: string;
|
|
63239
63313
|
justify: string;
|
|
63240
63314
|
density: Density;
|
|
63241
|
-
|
|
63315
|
+
fillDot: boolean;
|
|
63316
|
+
lineInset: NonNullable<string | number>;
|
|
63242
63317
|
lineThickness: string | number;
|
|
63243
63318
|
} & {
|
|
63244
63319
|
direction?: TimelineDirection | undefined;
|
|
@@ -63246,7 +63321,10 @@ declare const VTimeline: {
|
|
|
63246
63321
|
align?: TimelineAlign | undefined;
|
|
63247
63322
|
side?: TimelineSide;
|
|
63248
63323
|
theme?: string | undefined;
|
|
63324
|
+
dotColor?: string | undefined;
|
|
63325
|
+
iconColor?: string | undefined;
|
|
63249
63326
|
lineColor?: string | undefined;
|
|
63327
|
+
hideOpposite?: boolean | undefined;
|
|
63250
63328
|
truncateLine?: TimelineTruncateLine;
|
|
63251
63329
|
} & {
|
|
63252
63330
|
$children?: vue.VNodeChild | {
|
|
@@ -63259,10 +63337,13 @@ declare const VTimeline: {
|
|
|
63259
63337
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
63260
63338
|
}, {}, {}, {}, {}, {
|
|
63261
63339
|
style: vue.StyleValue;
|
|
63340
|
+
size: string | number;
|
|
63262
63341
|
tag: string;
|
|
63263
63342
|
justify: string;
|
|
63264
63343
|
density: Density;
|
|
63265
|
-
|
|
63344
|
+
fillDot: boolean;
|
|
63345
|
+
hideOpposite: boolean;
|
|
63346
|
+
lineInset: NonNullable<string | number>;
|
|
63266
63347
|
lineThickness: string | number;
|
|
63267
63348
|
}>;
|
|
63268
63349
|
__isFragment?: undefined;
|
|
@@ -63270,10 +63351,12 @@ declare const VTimeline: {
|
|
|
63270
63351
|
__isSuspense?: undefined;
|
|
63271
63352
|
} & vue.ComponentOptionsBase<{
|
|
63272
63353
|
style: vue.StyleValue;
|
|
63354
|
+
size: string | number;
|
|
63273
63355
|
tag: string;
|
|
63274
63356
|
justify: string;
|
|
63275
63357
|
density: Density;
|
|
63276
|
-
|
|
63358
|
+
fillDot: boolean;
|
|
63359
|
+
lineInset: NonNullable<string | number>;
|
|
63277
63360
|
lineThickness: string | number;
|
|
63278
63361
|
} & {
|
|
63279
63362
|
direction?: TimelineDirection | undefined;
|
|
@@ -63281,7 +63364,10 @@ declare const VTimeline: {
|
|
|
63281
63364
|
align?: TimelineAlign | undefined;
|
|
63282
63365
|
side?: TimelineSide;
|
|
63283
63366
|
theme?: string | undefined;
|
|
63367
|
+
dotColor?: string | undefined;
|
|
63368
|
+
iconColor?: string | undefined;
|
|
63284
63369
|
lineColor?: string | undefined;
|
|
63370
|
+
hideOpposite?: boolean | undefined;
|
|
63285
63371
|
truncateLine?: TimelineTruncateLine;
|
|
63286
63372
|
} & {
|
|
63287
63373
|
$children?: vue.VNodeChild | {
|
|
@@ -63294,10 +63380,13 @@ declare const VTimeline: {
|
|
|
63294
63380
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
63295
63381
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
63296
63382
|
style: vue.StyleValue;
|
|
63383
|
+
size: string | number;
|
|
63297
63384
|
tag: string;
|
|
63298
63385
|
justify: string;
|
|
63299
63386
|
density: Density;
|
|
63300
|
-
|
|
63387
|
+
fillDot: boolean;
|
|
63388
|
+
hideOpposite: boolean;
|
|
63389
|
+
lineInset: NonNullable<string | number>;
|
|
63301
63390
|
lineThickness: string | number;
|
|
63302
63391
|
}, {}, string, vue.SlotsType<Partial<{
|
|
63303
63392
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -63319,6 +63408,21 @@ declare const VTimeline: {
|
|
|
63319
63408
|
type: vue.PropType<vue.StyleValue>;
|
|
63320
63409
|
default: null;
|
|
63321
63410
|
};
|
|
63411
|
+
size: {
|
|
63412
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
63413
|
+
default: string;
|
|
63414
|
+
};
|
|
63415
|
+
dotColor: StringConstructor;
|
|
63416
|
+
fillDot: BooleanConstructor;
|
|
63417
|
+
iconColor: StringConstructor;
|
|
63418
|
+
hideOpposite: {
|
|
63419
|
+
type: BooleanConstructor;
|
|
63420
|
+
default: undefined;
|
|
63421
|
+
};
|
|
63422
|
+
lineInset: {
|
|
63423
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
63424
|
+
default: NonNullable<string | number>;
|
|
63425
|
+
};
|
|
63322
63426
|
align: Prop<TimelineAlign>;
|
|
63323
63427
|
direction: Prop<TimelineDirection>;
|
|
63324
63428
|
justify: {
|
|
@@ -63327,10 +63431,6 @@ declare const VTimeline: {
|
|
|
63327
63431
|
validator: (v: any) => boolean;
|
|
63328
63432
|
};
|
|
63329
63433
|
side: Prop<TimelineSide>;
|
|
63330
|
-
lineInset: {
|
|
63331
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
63332
|
-
default: number;
|
|
63333
|
-
};
|
|
63334
63434
|
lineThickness: {
|
|
63335
63435
|
type: (StringConstructor | NumberConstructor)[];
|
|
63336
63436
|
default: number;
|
|
@@ -63353,6 +63453,21 @@ declare const VTimeline: {
|
|
|
63353
63453
|
type: vue.PropType<vue.StyleValue>;
|
|
63354
63454
|
default: null;
|
|
63355
63455
|
};
|
|
63456
|
+
size: {
|
|
63457
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
63458
|
+
default: string;
|
|
63459
|
+
};
|
|
63460
|
+
dotColor: StringConstructor;
|
|
63461
|
+
fillDot: BooleanConstructor;
|
|
63462
|
+
iconColor: StringConstructor;
|
|
63463
|
+
hideOpposite: {
|
|
63464
|
+
type: BooleanConstructor;
|
|
63465
|
+
default: undefined;
|
|
63466
|
+
};
|
|
63467
|
+
lineInset: {
|
|
63468
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
63469
|
+
default: NonNullable<string | number>;
|
|
63470
|
+
};
|
|
63356
63471
|
align: Prop<TimelineAlign>;
|
|
63357
63472
|
direction: Prop<TimelineDirection>;
|
|
63358
63473
|
justify: {
|
|
@@ -63361,10 +63476,6 @@ declare const VTimeline: {
|
|
|
63361
63476
|
validator: (v: any) => boolean;
|
|
63362
63477
|
};
|
|
63363
63478
|
side: Prop<TimelineSide>;
|
|
63364
|
-
lineInset: {
|
|
63365
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
63366
|
-
default: number;
|
|
63367
|
-
};
|
|
63368
63479
|
lineThickness: {
|
|
63369
63480
|
type: (StringConstructor | NumberConstructor)[];
|
|
63370
63481
|
default: number;
|
|
@@ -63394,10 +63505,10 @@ declare const VTimelineItem: {
|
|
|
63394
63505
|
elevation?: string | number | undefined;
|
|
63395
63506
|
rounded?: string | number | boolean | undefined;
|
|
63396
63507
|
density?: "default" | "compact" | undefined;
|
|
63397
|
-
lineInset?: string | number | undefined;
|
|
63398
63508
|
dotColor?: string | undefined;
|
|
63399
63509
|
iconColor?: string | undefined;
|
|
63400
63510
|
hideOpposite?: boolean | undefined;
|
|
63511
|
+
lineInset?: string | number | undefined;
|
|
63401
63512
|
} & {
|
|
63402
63513
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63403
63514
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -63432,10 +63543,10 @@ declare const VTimelineItem: {
|
|
|
63432
63543
|
elevation?: string | number | undefined;
|
|
63433
63544
|
rounded?: string | number | boolean | undefined;
|
|
63434
63545
|
density?: "default" | "compact" | undefined;
|
|
63435
|
-
lineInset?: string | number | undefined;
|
|
63436
63546
|
dotColor?: string | undefined;
|
|
63437
63547
|
iconColor?: string | undefined;
|
|
63438
63548
|
hideOpposite?: boolean | undefined;
|
|
63549
|
+
lineInset?: string | number | undefined;
|
|
63439
63550
|
} & {
|
|
63440
63551
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63441
63552
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -63496,10 +63607,10 @@ declare const VTimelineItem: {
|
|
|
63496
63607
|
elevation?: string | number | undefined;
|
|
63497
63608
|
rounded?: string | number | boolean | undefined;
|
|
63498
63609
|
density?: "default" | "compact" | undefined;
|
|
63499
|
-
lineInset?: string | number | undefined;
|
|
63500
63610
|
dotColor?: string | undefined;
|
|
63501
63611
|
iconColor?: string | undefined;
|
|
63502
63612
|
hideOpposite?: boolean | undefined;
|
|
63613
|
+
lineInset?: string | number | undefined;
|
|
63503
63614
|
} & {
|
|
63504
63615
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63505
63616
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -63547,10 +63658,10 @@ declare const VTimelineItem: {
|
|
|
63547
63658
|
elevation?: string | number | undefined;
|
|
63548
63659
|
rounded?: string | number | boolean | undefined;
|
|
63549
63660
|
density?: "default" | "compact" | undefined;
|
|
63550
|
-
lineInset?: string | number | undefined;
|
|
63551
63661
|
dotColor?: string | undefined;
|
|
63552
63662
|
iconColor?: string | undefined;
|
|
63553
63663
|
hideOpposite?: boolean | undefined;
|
|
63664
|
+
lineInset?: string | number | undefined;
|
|
63554
63665
|
} & {
|
|
63555
63666
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63556
63667
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -68954,36 +69065,37 @@ declare module '@vue/runtime-core' {
|
|
|
68954
69065
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
68955
69066
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
68956
69067
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
69068
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
68957
69069
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
68958
69070
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
68959
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
68960
69071
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
68961
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
|
68962
|
-
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
68963
|
-
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
68964
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
68965
69072
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
68966
69073
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
68967
69074
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
68968
69075
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
69076
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
68969
69077
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
68970
69078
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
68971
|
-
|
|
68972
|
-
|
|
68973
|
-
|
|
69079
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
69080
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
69081
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
68974
69082
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
68975
|
-
|
|
68976
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
69083
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
68977
69084
|
VCard: typeof import('vuetify/components')['VCard']
|
|
68978
69085
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
68979
69086
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
68980
69087
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
68981
69088
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
68982
69089
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
69090
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
69091
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
68983
69092
|
VChip: typeof import('vuetify/components')['VChip']
|
|
69093
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
69094
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
69095
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
68984
69096
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
69097
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
68985
69098
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
68986
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
68987
69099
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
68988
69100
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
68989
69101
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -68991,7 +69103,6 @@ declare module '@vue/runtime-core' {
|
|
|
68991
69103
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
68992
69104
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
68993
69105
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
68994
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
68995
69106
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
68996
69107
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
68997
69108
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
@@ -69007,21 +69118,18 @@ declare module '@vue/runtime-core' {
|
|
|
69007
69118
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
69008
69119
|
VField: typeof import('vuetify/components')['VField']
|
|
69009
69120
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
69121
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
69122
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
69123
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
69010
69124
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
69011
69125
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
69012
69126
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
69013
69127
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
69014
69128
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
69015
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
69016
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
69017
|
-
VImg: typeof import('vuetify/components')['VImg']
|
|
69018
69129
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
69019
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
69020
69130
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
69021
69131
|
VItem: typeof import('vuetify/components')['VItem']
|
|
69022
|
-
|
|
69023
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
69024
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
69132
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
69025
69133
|
VList: typeof import('vuetify/components')['VList']
|
|
69026
69134
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
69027
69135
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -69031,25 +69139,29 @@ declare module '@vue/runtime-core' {
|
|
|
69031
69139
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
69032
69140
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
69033
69141
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
69142
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
69143
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
69144
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
69145
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
|
69034
69146
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
69035
69147
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
69036
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
69037
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
|
69038
69148
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
69039
69149
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
69150
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
69040
69151
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
69041
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
69042
69152
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
69043
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
69044
69153
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
69045
|
-
|
|
69154
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
69155
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
69046
69156
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
69157
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
69047
69158
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
69048
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
69049
69159
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
69160
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
69050
69161
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
69051
69162
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
69052
69163
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
69164
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
69053
69165
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
69054
69166
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
69055
69167
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
@@ -69058,26 +69170,25 @@ declare module '@vue/runtime-core' {
|
|
|
69058
69170
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
69059
69171
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
69060
69172
|
VTab: typeof import('vuetify/components')['VTab']
|
|
69061
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
69062
|
-
VTable: typeof import('vuetify/components')['VTable']
|
|
69063
69173
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
69064
|
-
|
|
69065
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
69066
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
69067
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
69174
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
69068
69175
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
69176
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
69069
69177
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
69070
69178
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
69071
69179
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
69180
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
69072
69181
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
69073
69182
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
69183
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
69184
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
69074
69185
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
69075
69186
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
69076
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
69077
69187
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
69078
69188
|
VCol: typeof import('vuetify/components')['VCol']
|
|
69079
69189
|
VRow: typeof import('vuetify/components')['VRow']
|
|
69080
69190
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
69191
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
69081
69192
|
VHover: typeof import('vuetify/components')['VHover']
|
|
69082
69193
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
69083
69194
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
@@ -69117,8 +69228,8 @@ declare module '@vue/runtime-core' {
|
|
|
69117
69228
|
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
69118
69229
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
69119
69230
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
69120
|
-
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
69121
69231
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
69232
|
+
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
69122
69233
|
VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
|
|
69123
69234
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
|
69124
69235
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|