@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
|
@@ -27028,6 +27028,7 @@ type VDatePickerSlots = Omit<VPickerSlots, 'header'> & {
|
|
|
27028
27028
|
};
|
|
27029
27029
|
declare const VDatePicker: {
|
|
27030
27030
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
27031
|
+
transition: string;
|
|
27031
27032
|
header: string;
|
|
27032
27033
|
style: vue.StyleValue;
|
|
27033
27034
|
title: string;
|
|
@@ -27037,6 +27038,7 @@ declare const VDatePicker: {
|
|
|
27037
27038
|
tile: boolean;
|
|
27038
27039
|
nextIcon: string;
|
|
27039
27040
|
prevIcon: string;
|
|
27041
|
+
reverseTransition: string;
|
|
27040
27042
|
modeIcon: string;
|
|
27041
27043
|
viewMode: "month" | "year" | "months";
|
|
27042
27044
|
showAdjacentMonths: boolean;
|
|
@@ -27078,6 +27080,7 @@ declare const VDatePicker: {
|
|
|
27078
27080
|
'update:year': (date: any) => true;
|
|
27079
27081
|
'update:viewMode': (date: any) => true;
|
|
27080
27082
|
}, "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 & {
|
|
27083
|
+
transition: string;
|
|
27081
27084
|
header: string;
|
|
27082
27085
|
style: vue.StyleValue;
|
|
27083
27086
|
title: string;
|
|
@@ -27087,6 +27090,7 @@ declare const VDatePicker: {
|
|
|
27087
27090
|
tile: boolean;
|
|
27088
27091
|
nextIcon: string;
|
|
27089
27092
|
prevIcon: string;
|
|
27093
|
+
reverseTransition: string;
|
|
27090
27094
|
modeIcon: string;
|
|
27091
27095
|
viewMode: "month" | "year" | "months";
|
|
27092
27096
|
showAdjacentMonths: boolean;
|
|
@@ -27124,6 +27128,7 @@ declare const VDatePicker: {
|
|
|
27124
27128
|
"onUpdate:viewMode"?: ((date: any) => any) | undefined;
|
|
27125
27129
|
}, {
|
|
27126
27130
|
active: string | string[];
|
|
27131
|
+
transition: string;
|
|
27127
27132
|
header: string;
|
|
27128
27133
|
style: vue.StyleValue;
|
|
27129
27134
|
title: string;
|
|
@@ -27134,6 +27139,7 @@ declare const VDatePicker: {
|
|
|
27134
27139
|
tile: boolean;
|
|
27135
27140
|
nextIcon: string;
|
|
27136
27141
|
prevIcon: string;
|
|
27142
|
+
reverseTransition: string;
|
|
27137
27143
|
modeIcon: string;
|
|
27138
27144
|
viewMode: "month" | "year" | "months";
|
|
27139
27145
|
showAdjacentMonths: boolean;
|
|
@@ -27165,6 +27171,7 @@ declare const VDatePicker: {
|
|
|
27165
27171
|
M: {};
|
|
27166
27172
|
Defaults: {};
|
|
27167
27173
|
}, {
|
|
27174
|
+
transition: string;
|
|
27168
27175
|
header: string;
|
|
27169
27176
|
style: vue.StyleValue;
|
|
27170
27177
|
title: string;
|
|
@@ -27174,6 +27181,7 @@ declare const VDatePicker: {
|
|
|
27174
27181
|
tile: boolean;
|
|
27175
27182
|
nextIcon: string;
|
|
27176
27183
|
prevIcon: string;
|
|
27184
|
+
reverseTransition: string;
|
|
27177
27185
|
modeIcon: string;
|
|
27178
27186
|
viewMode: "month" | "year" | "months";
|
|
27179
27187
|
showAdjacentMonths: boolean;
|
|
@@ -27211,6 +27219,7 @@ declare const VDatePicker: {
|
|
|
27211
27219
|
"onUpdate:viewMode"?: ((date: any) => any) | undefined;
|
|
27212
27220
|
}, {}, {}, {}, {}, {
|
|
27213
27221
|
active: string | string[];
|
|
27222
|
+
transition: string;
|
|
27214
27223
|
header: string;
|
|
27215
27224
|
style: vue.StyleValue;
|
|
27216
27225
|
title: string;
|
|
@@ -27221,6 +27230,7 @@ declare const VDatePicker: {
|
|
|
27221
27230
|
tile: boolean;
|
|
27222
27231
|
nextIcon: string;
|
|
27223
27232
|
prevIcon: string;
|
|
27233
|
+
reverseTransition: string;
|
|
27224
27234
|
modeIcon: string;
|
|
27225
27235
|
viewMode: "month" | "year" | "months";
|
|
27226
27236
|
showAdjacentMonths: boolean;
|
|
@@ -27233,6 +27243,7 @@ declare const VDatePicker: {
|
|
|
27233
27243
|
__isTeleport?: undefined;
|
|
27234
27244
|
__isSuspense?: undefined;
|
|
27235
27245
|
} & vue.ComponentOptionsBase<{
|
|
27246
|
+
transition: string;
|
|
27236
27247
|
header: string;
|
|
27237
27248
|
style: vue.StyleValue;
|
|
27238
27249
|
title: string;
|
|
@@ -27242,6 +27253,7 @@ declare const VDatePicker: {
|
|
|
27242
27253
|
tile: boolean;
|
|
27243
27254
|
nextIcon: string;
|
|
27244
27255
|
prevIcon: string;
|
|
27256
|
+
reverseTransition: string;
|
|
27245
27257
|
modeIcon: string;
|
|
27246
27258
|
viewMode: "month" | "year" | "months";
|
|
27247
27259
|
showAdjacentMonths: boolean;
|
|
@@ -27284,6 +27296,7 @@ declare const VDatePicker: {
|
|
|
27284
27296
|
'update:viewMode': (date: any) => true;
|
|
27285
27297
|
}, "multiple" | "$children" | "v-slot:default" | "v-slots" | "modelValue" | "v-slot:title" | "update:modelValue" | "v-slot:header" | "v-slot:actions">, string, {
|
|
27286
27298
|
active: string | string[];
|
|
27299
|
+
transition: string;
|
|
27287
27300
|
header: string;
|
|
27288
27301
|
style: vue.StyleValue;
|
|
27289
27302
|
title: string;
|
|
@@ -27294,6 +27307,7 @@ declare const VDatePicker: {
|
|
|
27294
27307
|
tile: boolean;
|
|
27295
27308
|
nextIcon: string;
|
|
27296
27309
|
prevIcon: string;
|
|
27310
|
+
reverseTransition: string;
|
|
27297
27311
|
modeIcon: string;
|
|
27298
27312
|
viewMode: "month" | "year" | "months";
|
|
27299
27313
|
showAdjacentMonths: boolean;
|
|
@@ -27394,6 +27408,14 @@ declare const VDatePicker: {
|
|
|
27394
27408
|
hideWeekdays: BooleanConstructor;
|
|
27395
27409
|
multiple: vue.PropType<number | boolean | "range" | (string & {})>;
|
|
27396
27410
|
showWeek: BooleanConstructor;
|
|
27411
|
+
transition: {
|
|
27412
|
+
type: StringConstructor;
|
|
27413
|
+
default: string;
|
|
27414
|
+
};
|
|
27415
|
+
reverseTransition: {
|
|
27416
|
+
type: StringConstructor;
|
|
27417
|
+
default: string;
|
|
27418
|
+
};
|
|
27397
27419
|
active: {
|
|
27398
27420
|
type: vue.PropType<string | string[]>;
|
|
27399
27421
|
default: undefined;
|
|
@@ -27488,6 +27510,14 @@ declare const VDatePicker: {
|
|
|
27488
27510
|
hideWeekdays: BooleanConstructor;
|
|
27489
27511
|
multiple: vue.PropType<number | boolean | "range" | (string & {})>;
|
|
27490
27512
|
showWeek: BooleanConstructor;
|
|
27513
|
+
transition: {
|
|
27514
|
+
type: StringConstructor;
|
|
27515
|
+
default: string;
|
|
27516
|
+
};
|
|
27517
|
+
reverseTransition: {
|
|
27518
|
+
type: StringConstructor;
|
|
27519
|
+
default: string;
|
|
27520
|
+
};
|
|
27491
27521
|
active: {
|
|
27492
27522
|
type: vue.PropType<string | string[]>;
|
|
27493
27523
|
default: undefined;
|
|
@@ -27871,7 +27901,9 @@ type VDatePickerHeader = InstanceType<typeof VDatePickerHeader>;
|
|
|
27871
27901
|
|
|
27872
27902
|
declare const VDatePickerMonth: {
|
|
27873
27903
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
27904
|
+
transition: string;
|
|
27874
27905
|
disabled: boolean;
|
|
27906
|
+
reverseTransition: string;
|
|
27875
27907
|
showAdjacentMonths: boolean;
|
|
27876
27908
|
weekdays: number[];
|
|
27877
27909
|
hideWeekdays: boolean;
|
|
@@ -27922,7 +27954,9 @@ declare const VDatePickerMonth: {
|
|
|
27922
27954
|
'update:month': (date: number) => true;
|
|
27923
27955
|
'update:year': (date: number) => true;
|
|
27924
27956
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
27957
|
+
transition: string;
|
|
27925
27958
|
disabled: boolean;
|
|
27959
|
+
reverseTransition: string;
|
|
27926
27960
|
showAdjacentMonths: boolean;
|
|
27927
27961
|
weekdays: number[];
|
|
27928
27962
|
hideWeekdays: boolean;
|
|
@@ -27969,7 +28003,9 @@ declare const VDatePickerMonth: {
|
|
|
27969
28003
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
27970
28004
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
27971
28005
|
}, {
|
|
28006
|
+
transition: string;
|
|
27972
28007
|
disabled: boolean;
|
|
28008
|
+
reverseTransition: string;
|
|
27973
28009
|
showAdjacentMonths: boolean;
|
|
27974
28010
|
weekdays: number[];
|
|
27975
28011
|
hideWeekdays: boolean;
|
|
@@ -27992,7 +28028,9 @@ declare const VDatePickerMonth: {
|
|
|
27992
28028
|
M: {};
|
|
27993
28029
|
Defaults: {};
|
|
27994
28030
|
}, {
|
|
28031
|
+
transition: string;
|
|
27995
28032
|
disabled: boolean;
|
|
28033
|
+
reverseTransition: string;
|
|
27996
28034
|
showAdjacentMonths: boolean;
|
|
27997
28035
|
weekdays: number[];
|
|
27998
28036
|
hideWeekdays: boolean;
|
|
@@ -28039,7 +28077,9 @@ declare const VDatePickerMonth: {
|
|
|
28039
28077
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
28040
28078
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
28041
28079
|
}, () => JSX.Element, {}, {}, {}, {
|
|
28080
|
+
transition: string;
|
|
28042
28081
|
disabled: boolean;
|
|
28082
|
+
reverseTransition: string;
|
|
28043
28083
|
showAdjacentMonths: boolean;
|
|
28044
28084
|
weekdays: number[];
|
|
28045
28085
|
hideWeekdays: boolean;
|
|
@@ -28049,7 +28089,9 @@ declare const VDatePickerMonth: {
|
|
|
28049
28089
|
__isTeleport?: undefined;
|
|
28050
28090
|
__isSuspense?: undefined;
|
|
28051
28091
|
} & vue.ComponentOptionsBase<{
|
|
28092
|
+
transition: string;
|
|
28052
28093
|
disabled: boolean;
|
|
28094
|
+
reverseTransition: string;
|
|
28053
28095
|
showAdjacentMonths: boolean;
|
|
28054
28096
|
weekdays: number[];
|
|
28055
28097
|
hideWeekdays: boolean;
|
|
@@ -28100,7 +28142,9 @@ declare const VDatePickerMonth: {
|
|
|
28100
28142
|
'update:month': (date: number) => true;
|
|
28101
28143
|
'update:year': (date: number) => true;
|
|
28102
28144
|
}, string, {
|
|
28145
|
+
transition: string;
|
|
28103
28146
|
disabled: boolean;
|
|
28147
|
+
reverseTransition: string;
|
|
28104
28148
|
showAdjacentMonths: boolean;
|
|
28105
28149
|
weekdays: number[];
|
|
28106
28150
|
hideWeekdays: boolean;
|
|
@@ -28146,6 +28190,14 @@ declare const VDatePickerMonth: {
|
|
|
28146
28190
|
hideWeekdays: BooleanConstructor;
|
|
28147
28191
|
multiple: PropType<number | boolean | "range" | (string & {})>;
|
|
28148
28192
|
showWeek: BooleanConstructor;
|
|
28193
|
+
transition: {
|
|
28194
|
+
type: StringConstructor;
|
|
28195
|
+
default: string;
|
|
28196
|
+
};
|
|
28197
|
+
reverseTransition: {
|
|
28198
|
+
type: StringConstructor;
|
|
28199
|
+
default: string;
|
|
28200
|
+
};
|
|
28149
28201
|
}, vue.ExtractPropTypes<{
|
|
28150
28202
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
28151
28203
|
disabled: BooleanConstructor;
|
|
@@ -28177,6 +28229,14 @@ declare const VDatePickerMonth: {
|
|
|
28177
28229
|
hideWeekdays: BooleanConstructor;
|
|
28178
28230
|
multiple: PropType<number | boolean | "range" | (string & {})>;
|
|
28179
28231
|
showWeek: BooleanConstructor;
|
|
28232
|
+
transition: {
|
|
28233
|
+
type: StringConstructor;
|
|
28234
|
+
default: string;
|
|
28235
|
+
};
|
|
28236
|
+
reverseTransition: {
|
|
28237
|
+
type: StringConstructor;
|
|
28238
|
+
default: string;
|
|
28239
|
+
};
|
|
28180
28240
|
}>>;
|
|
28181
28241
|
type VDatePickerMonth = InstanceType<typeof VDatePickerMonth>;
|
|
28182
28242
|
|
|
@@ -62803,10 +62863,12 @@ type TimelineTruncateLine = 'start' | 'end' | 'both' | undefined;
|
|
|
62803
62863
|
declare const VTimeline: {
|
|
62804
62864
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
62805
62865
|
style: vue.StyleValue;
|
|
62866
|
+
size: string | number;
|
|
62806
62867
|
tag: string;
|
|
62807
62868
|
justify: string;
|
|
62808
62869
|
density: Density;
|
|
62809
|
-
|
|
62870
|
+
fillDot: boolean;
|
|
62871
|
+
lineInset: NonNullable<string | number>;
|
|
62810
62872
|
lineThickness: string | number;
|
|
62811
62873
|
} & {
|
|
62812
62874
|
direction?: TimelineDirection | undefined;
|
|
@@ -62814,7 +62876,10 @@ declare const VTimeline: {
|
|
|
62814
62876
|
align?: TimelineAlign | undefined;
|
|
62815
62877
|
side?: TimelineSide;
|
|
62816
62878
|
theme?: string | undefined;
|
|
62879
|
+
dotColor?: string | undefined;
|
|
62880
|
+
iconColor?: string | undefined;
|
|
62817
62881
|
lineColor?: string | undefined;
|
|
62882
|
+
hideOpposite?: boolean | undefined;
|
|
62818
62883
|
truncateLine?: TimelineTruncateLine;
|
|
62819
62884
|
} & {
|
|
62820
62885
|
$children?: vue.VNodeChild | {
|
|
@@ -62827,10 +62892,12 @@ declare const VTimeline: {
|
|
|
62827
62892
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
62828
62893
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
62829
62894
|
style: vue.StyleValue;
|
|
62895
|
+
size: string | number;
|
|
62830
62896
|
tag: string;
|
|
62831
62897
|
justify: string;
|
|
62832
62898
|
density: Density;
|
|
62833
|
-
|
|
62899
|
+
fillDot: boolean;
|
|
62900
|
+
lineInset: NonNullable<string | number>;
|
|
62834
62901
|
lineThickness: string | number;
|
|
62835
62902
|
} & {
|
|
62836
62903
|
direction?: TimelineDirection | undefined;
|
|
@@ -62838,7 +62905,10 @@ declare const VTimeline: {
|
|
|
62838
62905
|
align?: TimelineAlign | undefined;
|
|
62839
62906
|
side?: TimelineSide;
|
|
62840
62907
|
theme?: string | undefined;
|
|
62908
|
+
dotColor?: string | undefined;
|
|
62909
|
+
iconColor?: string | undefined;
|
|
62841
62910
|
lineColor?: string | undefined;
|
|
62911
|
+
hideOpposite?: boolean | undefined;
|
|
62842
62912
|
truncateLine?: TimelineTruncateLine;
|
|
62843
62913
|
} & {
|
|
62844
62914
|
$children?: vue.VNodeChild | {
|
|
@@ -62851,10 +62921,13 @@ declare const VTimeline: {
|
|
|
62851
62921
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
62852
62922
|
}, {
|
|
62853
62923
|
style: vue.StyleValue;
|
|
62924
|
+
size: string | number;
|
|
62854
62925
|
tag: string;
|
|
62855
62926
|
justify: string;
|
|
62856
62927
|
density: Density;
|
|
62857
|
-
|
|
62928
|
+
fillDot: boolean;
|
|
62929
|
+
hideOpposite: boolean;
|
|
62930
|
+
lineInset: NonNullable<string | number>;
|
|
62858
62931
|
lineThickness: string | number;
|
|
62859
62932
|
}, true, {}, vue.SlotsType<Partial<{
|
|
62860
62933
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -62869,10 +62942,12 @@ declare const VTimeline: {
|
|
|
62869
62942
|
Defaults: {};
|
|
62870
62943
|
}, {
|
|
62871
62944
|
style: vue.StyleValue;
|
|
62945
|
+
size: string | number;
|
|
62872
62946
|
tag: string;
|
|
62873
62947
|
justify: string;
|
|
62874
62948
|
density: Density;
|
|
62875
|
-
|
|
62949
|
+
fillDot: boolean;
|
|
62950
|
+
lineInset: NonNullable<string | number>;
|
|
62876
62951
|
lineThickness: string | number;
|
|
62877
62952
|
} & {
|
|
62878
62953
|
direction?: TimelineDirection | undefined;
|
|
@@ -62880,7 +62955,10 @@ declare const VTimeline: {
|
|
|
62880
62955
|
align?: TimelineAlign | undefined;
|
|
62881
62956
|
side?: TimelineSide;
|
|
62882
62957
|
theme?: string | undefined;
|
|
62958
|
+
dotColor?: string | undefined;
|
|
62959
|
+
iconColor?: string | undefined;
|
|
62883
62960
|
lineColor?: string | undefined;
|
|
62961
|
+
hideOpposite?: boolean | undefined;
|
|
62884
62962
|
truncateLine?: TimelineTruncateLine;
|
|
62885
62963
|
} & {
|
|
62886
62964
|
$children?: vue.VNodeChild | {
|
|
@@ -62893,10 +62971,13 @@ declare const VTimeline: {
|
|
|
62893
62971
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
62894
62972
|
}, {}, {}, {}, {}, {
|
|
62895
62973
|
style: vue.StyleValue;
|
|
62974
|
+
size: string | number;
|
|
62896
62975
|
tag: string;
|
|
62897
62976
|
justify: string;
|
|
62898
62977
|
density: Density;
|
|
62899
|
-
|
|
62978
|
+
fillDot: boolean;
|
|
62979
|
+
hideOpposite: boolean;
|
|
62980
|
+
lineInset: NonNullable<string | number>;
|
|
62900
62981
|
lineThickness: string | number;
|
|
62901
62982
|
}>;
|
|
62902
62983
|
__isFragment?: undefined;
|
|
@@ -62904,10 +62985,12 @@ declare const VTimeline: {
|
|
|
62904
62985
|
__isSuspense?: undefined;
|
|
62905
62986
|
} & vue.ComponentOptionsBase<{
|
|
62906
62987
|
style: vue.StyleValue;
|
|
62988
|
+
size: string | number;
|
|
62907
62989
|
tag: string;
|
|
62908
62990
|
justify: string;
|
|
62909
62991
|
density: Density;
|
|
62910
|
-
|
|
62992
|
+
fillDot: boolean;
|
|
62993
|
+
lineInset: NonNullable<string | number>;
|
|
62911
62994
|
lineThickness: string | number;
|
|
62912
62995
|
} & {
|
|
62913
62996
|
direction?: TimelineDirection | undefined;
|
|
@@ -62915,7 +62998,10 @@ declare const VTimeline: {
|
|
|
62915
62998
|
align?: TimelineAlign | undefined;
|
|
62916
62999
|
side?: TimelineSide;
|
|
62917
63000
|
theme?: string | undefined;
|
|
63001
|
+
dotColor?: string | undefined;
|
|
63002
|
+
iconColor?: string | undefined;
|
|
62918
63003
|
lineColor?: string | undefined;
|
|
63004
|
+
hideOpposite?: boolean | undefined;
|
|
62919
63005
|
truncateLine?: TimelineTruncateLine;
|
|
62920
63006
|
} & {
|
|
62921
63007
|
$children?: vue.VNodeChild | {
|
|
@@ -62928,10 +63014,13 @@ declare const VTimeline: {
|
|
|
62928
63014
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
62929
63015
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
62930
63016
|
style: vue.StyleValue;
|
|
63017
|
+
size: string | number;
|
|
62931
63018
|
tag: string;
|
|
62932
63019
|
justify: string;
|
|
62933
63020
|
density: Density;
|
|
62934
|
-
|
|
63021
|
+
fillDot: boolean;
|
|
63022
|
+
hideOpposite: boolean;
|
|
63023
|
+
lineInset: NonNullable<string | number>;
|
|
62935
63024
|
lineThickness: string | number;
|
|
62936
63025
|
}, {}, string, vue.SlotsType<Partial<{
|
|
62937
63026
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -62953,6 +63042,21 @@ declare const VTimeline: {
|
|
|
62953
63042
|
type: vue.PropType<vue.StyleValue>;
|
|
62954
63043
|
default: null;
|
|
62955
63044
|
};
|
|
63045
|
+
size: {
|
|
63046
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
63047
|
+
default: string;
|
|
63048
|
+
};
|
|
63049
|
+
dotColor: StringConstructor;
|
|
63050
|
+
fillDot: BooleanConstructor;
|
|
63051
|
+
iconColor: StringConstructor;
|
|
63052
|
+
hideOpposite: {
|
|
63053
|
+
type: BooleanConstructor;
|
|
63054
|
+
default: undefined;
|
|
63055
|
+
};
|
|
63056
|
+
lineInset: {
|
|
63057
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
63058
|
+
default: NonNullable<string | number>;
|
|
63059
|
+
};
|
|
62956
63060
|
align: Prop<TimelineAlign>;
|
|
62957
63061
|
direction: Prop<TimelineDirection>;
|
|
62958
63062
|
justify: {
|
|
@@ -62961,10 +63065,6 @@ declare const VTimeline: {
|
|
|
62961
63065
|
validator: (v: any) => boolean;
|
|
62962
63066
|
};
|
|
62963
63067
|
side: Prop<TimelineSide>;
|
|
62964
|
-
lineInset: {
|
|
62965
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
62966
|
-
default: number;
|
|
62967
|
-
};
|
|
62968
63068
|
lineThickness: {
|
|
62969
63069
|
type: (StringConstructor | NumberConstructor)[];
|
|
62970
63070
|
default: number;
|
|
@@ -62987,6 +63087,21 @@ declare const VTimeline: {
|
|
|
62987
63087
|
type: vue.PropType<vue.StyleValue>;
|
|
62988
63088
|
default: null;
|
|
62989
63089
|
};
|
|
63090
|
+
size: {
|
|
63091
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
63092
|
+
default: string;
|
|
63093
|
+
};
|
|
63094
|
+
dotColor: StringConstructor;
|
|
63095
|
+
fillDot: BooleanConstructor;
|
|
63096
|
+
iconColor: StringConstructor;
|
|
63097
|
+
hideOpposite: {
|
|
63098
|
+
type: BooleanConstructor;
|
|
63099
|
+
default: undefined;
|
|
63100
|
+
};
|
|
63101
|
+
lineInset: {
|
|
63102
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
63103
|
+
default: NonNullable<string | number>;
|
|
63104
|
+
};
|
|
62990
63105
|
align: Prop<TimelineAlign>;
|
|
62991
63106
|
direction: Prop<TimelineDirection>;
|
|
62992
63107
|
justify: {
|
|
@@ -62995,10 +63110,6 @@ declare const VTimeline: {
|
|
|
62995
63110
|
validator: (v: any) => boolean;
|
|
62996
63111
|
};
|
|
62997
63112
|
side: Prop<TimelineSide>;
|
|
62998
|
-
lineInset: {
|
|
62999
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
63000
|
-
default: number;
|
|
63001
|
-
};
|
|
63002
63113
|
lineThickness: {
|
|
63003
63114
|
type: (StringConstructor | NumberConstructor)[];
|
|
63004
63115
|
default: number;
|
|
@@ -63028,10 +63139,10 @@ declare const VTimelineItem: {
|
|
|
63028
63139
|
elevation?: string | number | undefined;
|
|
63029
63140
|
rounded?: string | number | boolean | undefined;
|
|
63030
63141
|
density?: "default" | "compact" | undefined;
|
|
63031
|
-
lineInset?: string | number | undefined;
|
|
63032
63142
|
dotColor?: string | undefined;
|
|
63033
63143
|
iconColor?: string | undefined;
|
|
63034
63144
|
hideOpposite?: boolean | undefined;
|
|
63145
|
+
lineInset?: string | number | undefined;
|
|
63035
63146
|
} & {
|
|
63036
63147
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63037
63148
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -63066,10 +63177,10 @@ declare const VTimelineItem: {
|
|
|
63066
63177
|
elevation?: string | number | undefined;
|
|
63067
63178
|
rounded?: string | number | boolean | undefined;
|
|
63068
63179
|
density?: "default" | "compact" | undefined;
|
|
63069
|
-
lineInset?: string | number | undefined;
|
|
63070
63180
|
dotColor?: string | undefined;
|
|
63071
63181
|
iconColor?: string | undefined;
|
|
63072
63182
|
hideOpposite?: boolean | undefined;
|
|
63183
|
+
lineInset?: string | number | undefined;
|
|
63073
63184
|
} & {
|
|
63074
63185
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63075
63186
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -63130,10 +63241,10 @@ declare const VTimelineItem: {
|
|
|
63130
63241
|
elevation?: string | number | undefined;
|
|
63131
63242
|
rounded?: string | number | boolean | undefined;
|
|
63132
63243
|
density?: "default" | "compact" | undefined;
|
|
63133
|
-
lineInset?: string | number | undefined;
|
|
63134
63244
|
dotColor?: string | undefined;
|
|
63135
63245
|
iconColor?: string | undefined;
|
|
63136
63246
|
hideOpposite?: boolean | undefined;
|
|
63247
|
+
lineInset?: string | number | undefined;
|
|
63137
63248
|
} & {
|
|
63138
63249
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63139
63250
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -63181,10 +63292,10 @@ declare const VTimelineItem: {
|
|
|
63181
63292
|
elevation?: string | number | undefined;
|
|
63182
63293
|
rounded?: string | number | boolean | undefined;
|
|
63183
63294
|
density?: "default" | "compact" | undefined;
|
|
63184
|
-
lineInset?: string | number | undefined;
|
|
63185
63295
|
dotColor?: string | undefined;
|
|
63186
63296
|
iconColor?: string | undefined;
|
|
63187
63297
|
hideOpposite?: boolean | undefined;
|
|
63298
|
+
lineInset?: string | number | undefined;
|
|
63188
63299
|
} & {
|
|
63189
63300
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63190
63301
|
default?: (() => vue.VNodeChild) | undefined;
|
package/lib/entry-bundler.mjs
CHANGED
|
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
|
16
16
|
...options
|
|
17
17
|
});
|
|
18
18
|
};
|
|
19
|
-
export const version = "3.5.9-dev.2024-03-
|
|
19
|
+
export const version = "3.5.9-dev.2024-03-30";
|
|
20
20
|
createVuetify.version = version;
|
|
21
21
|
export { blueprints, components, directives };
|
|
22
22
|
export * from "./composables/index.mjs";
|
package/lib/framework.mjs
CHANGED
package/lib/index.d.mts
CHANGED
|
@@ -531,36 +531,37 @@ declare module '@vue/runtime-core' {
|
|
|
531
531
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
532
532
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
533
533
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
534
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
534
535
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
535
536
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
536
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
537
537
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
538
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
|
539
|
-
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
540
|
-
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
541
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
542
538
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
543
539
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
544
540
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
545
541
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
542
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
546
543
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
547
544
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
545
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
546
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
547
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
551
548
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
552
|
-
|
|
553
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
549
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
554
550
|
VCard: typeof import('vuetify/components')['VCard']
|
|
555
551
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
556
552
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
557
553
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
558
554
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
559
555
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
556
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
557
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
560
558
|
VChip: typeof import('vuetify/components')['VChip']
|
|
559
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
560
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
561
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
561
562
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
563
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
562
564
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
563
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
564
565
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
565
566
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
566
567
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -568,7 +569,6 @@ declare module '@vue/runtime-core' {
|
|
|
568
569
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
569
570
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
570
571
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
571
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
572
572
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
573
573
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
574
574
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
@@ -584,21 +584,18 @@ declare module '@vue/runtime-core' {
|
|
|
584
584
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
585
585
|
VField: typeof import('vuetify/components')['VField']
|
|
586
586
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
587
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
588
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
589
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
587
590
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
588
591
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
589
592
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
590
593
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
591
594
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
592
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
593
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
594
|
-
VImg: typeof import('vuetify/components')['VImg']
|
|
595
595
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
596
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
597
596
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
598
597
|
VItem: typeof import('vuetify/components')['VItem']
|
|
599
|
-
|
|
600
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
601
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
598
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
602
599
|
VList: typeof import('vuetify/components')['VList']
|
|
603
600
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
604
601
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -608,25 +605,29 @@ declare module '@vue/runtime-core' {
|
|
|
608
605
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
609
606
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
610
607
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
608
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
609
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
610
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
611
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
|
611
612
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
612
613
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
613
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
614
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
|
615
614
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
616
615
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
616
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
617
617
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
618
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
619
618
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
620
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
621
619
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
622
|
-
|
|
620
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
621
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
623
622
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
623
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
624
624
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
625
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
626
625
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
626
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
627
627
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
628
628
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
629
629
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
630
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
630
631
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
631
632
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
632
633
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
@@ -635,26 +636,25 @@ declare module '@vue/runtime-core' {
|
|
|
635
636
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
636
637
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
637
638
|
VTab: typeof import('vuetify/components')['VTab']
|
|
638
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
639
|
-
VTable: typeof import('vuetify/components')['VTable']
|
|
640
639
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
641
|
-
|
|
642
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
643
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
644
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
640
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
645
641
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
642
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
646
643
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
647
644
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
648
645
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
646
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
649
647
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
650
648
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
649
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
650
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
651
651
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
652
652
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
653
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
654
653
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
655
654
|
VCol: typeof import('vuetify/components')['VCol']
|
|
656
655
|
VRow: typeof import('vuetify/components')['VRow']
|
|
657
656
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
657
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
658
658
|
VHover: typeof import('vuetify/components')['VHover']
|
|
659
659
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
660
660
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
@@ -694,8 +694,8 @@ declare module '@vue/runtime-core' {
|
|
|
694
694
|
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
695
695
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
696
696
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
697
|
-
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
698
697
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
698
|
+
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
699
699
|
VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
|
|
700
700
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
|
701
701
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|