@vuetify/nightly 3.9.3-master.2025-08-01 → 3.9.3-master.2025-08-03
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 +11 -4
- package/dist/json/attributes.json +2189 -2173
- package/dist/json/importMap-labs.json +44 -44
- package/dist/json/importMap.json +200 -200
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +3795 -3759
- package/dist/vuetify-labs.cjs +48 -18
- package/dist/vuetify-labs.css +6177 -6162
- package/dist/vuetify-labs.d.ts +133 -77
- package/dist/vuetify-labs.esm.js +48 -18
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +48 -18
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +48 -18
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3590 -3575
- package/dist/vuetify.d.ts +105 -77
- package/dist/vuetify.esm.js +48 -18
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +48 -18
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +289 -283
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +9 -2
- package/lib/components/VAlert/VAlert.js +2 -2
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +10 -3
- package/lib/components/VAlert/_variables.scss +1 -1
- package/lib/components/VApp/VApp.js +5 -4
- package/lib/components/VApp/VApp.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.d.ts +25 -0
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +25 -0
- package/lib/components/VStepper/VStepperItem.css +2 -0
- package/lib/components/VStepper/VStepperItem.sass +3 -0
- package/lib/components/VTreeview/VTreeviewItem.css +6 -0
- package/lib/components/VTreeview/VTreeviewItem.sass +7 -0
- package/lib/composables/calendar.d.ts +12 -0
- package/lib/composables/calendar.js +5 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/date/DateAdapter.d.ts +1 -1
- package/lib/composables/date/DateAdapter.js.map +1 -1
- package/lib/composables/date/adapters/string.d.ts +1 -1
- package/lib/composables/date/adapters/string.js +2 -2
- package/lib/composables/date/adapters/string.js.map +1 -1
- package/lib/composables/date/adapters/vuetify.d.ts +1 -1
- package/lib/composables/date/adapters/vuetify.js +25 -5
- package/lib/composables/date/adapters/vuetify.js.map +1 -1
- package/lib/composables/date/date.d.ts +1 -1
- package/lib/entry-bundler.d.ts +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +77 -77
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +25 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +25 -0
- package/lib/labs/entry-bundler.d.ts +1 -1
- package/lib/labs/rules/rules.d.ts +10 -3
- package/lib/labs/rules/rules.js +13 -5
- package/lib/labs/rules/rules.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -39,7 +39,7 @@ interface DateAdapter<T = unknown> {
|
|
39
39
|
getDiff(date: T, comparing: T | string, unit?: string): number;
|
40
40
|
getWeekArray(date: T, firstDayOfWeek?: number | string): T[][];
|
41
41
|
getWeekdays(firstDayOfWeek?: number | string, weekdayFormat?: 'long' | 'short' | 'narrow'): string[];
|
42
|
-
getWeek(date: T, firstDayOfWeek?: number | string,
|
42
|
+
getWeek(date: T, firstDayOfWeek?: number | string, firstDayOfYear?: number | string): number;
|
43
43
|
getMonth(date: T): number;
|
44
44
|
setMonth(date: T, month: number): T;
|
45
45
|
getDate(date: T): number;
|
@@ -41898,6 +41898,7 @@ declare const VDatePickerMonth: {
|
|
41898
41898
|
year?: string | number | undefined;
|
41899
41899
|
modelValue?: unknown[] | undefined;
|
41900
41900
|
firstDayOfWeek?: string | number | undefined;
|
41901
|
+
firstDayOfYear?: string | number | undefined;
|
41901
41902
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
41902
41903
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
41903
41904
|
} & {
|
@@ -41945,6 +41946,7 @@ declare const VDatePickerMonth: {
|
|
41945
41946
|
weekdays: CalendarWeekdays[];
|
41946
41947
|
weeksInMonth: "static" | "dynamic";
|
41947
41948
|
firstDayOfWeek: string | number;
|
41949
|
+
firstDayOfYear: string | number;
|
41948
41950
|
hideWeekdays: boolean;
|
41949
41951
|
showWeek: boolean;
|
41950
41952
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -41980,6 +41982,7 @@ declare const VDatePickerMonth: {
|
|
41980
41982
|
year?: string | number | undefined;
|
41981
41983
|
modelValue?: unknown[] | undefined;
|
41982
41984
|
firstDayOfWeek?: string | number | undefined;
|
41985
|
+
firstDayOfYear?: string | number | undefined;
|
41983
41986
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
41984
41987
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
41985
41988
|
} & {
|
@@ -42023,6 +42026,7 @@ declare const VDatePickerMonth: {
|
|
42023
42026
|
weekdays: CalendarWeekdays[];
|
42024
42027
|
weeksInMonth: "static" | "dynamic";
|
42025
42028
|
firstDayOfWeek: string | number;
|
42029
|
+
firstDayOfYear: string | number;
|
42026
42030
|
hideWeekdays: boolean;
|
42027
42031
|
showWeek: boolean;
|
42028
42032
|
}>;
|
@@ -42047,6 +42051,7 @@ declare const VDatePickerMonth: {
|
|
42047
42051
|
year?: string | number | undefined;
|
42048
42052
|
modelValue?: unknown[] | undefined;
|
42049
42053
|
firstDayOfWeek?: string | number | undefined;
|
42054
|
+
firstDayOfYear?: string | number | undefined;
|
42050
42055
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
42051
42056
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
42052
42057
|
} & {
|
@@ -42094,6 +42099,7 @@ declare const VDatePickerMonth: {
|
|
42094
42099
|
weekdays: CalendarWeekdays[];
|
42095
42100
|
weeksInMonth: "static" | "dynamic";
|
42096
42101
|
firstDayOfWeek: string | number;
|
42102
|
+
firstDayOfYear: string | number;
|
42097
42103
|
hideWeekdays: boolean;
|
42098
42104
|
showWeek: boolean;
|
42099
42105
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -42127,6 +42133,10 @@ declare const VDatePickerMonth: {
|
|
42127
42133
|
type: (StringConstructor | NumberConstructor)[];
|
42128
42134
|
default: undefined;
|
42129
42135
|
};
|
42136
|
+
firstDayOfYear: {
|
42137
|
+
type: (StringConstructor | NumberConstructor)[];
|
42138
|
+
default: undefined;
|
42139
|
+
};
|
42130
42140
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
42131
42141
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
42132
42142
|
color: StringConstructor;
|
@@ -42164,6 +42174,10 @@ declare const VDatePickerMonth: {
|
|
42164
42174
|
type: (StringConstructor | NumberConstructor)[];
|
42165
42175
|
default: undefined;
|
42166
42176
|
};
|
42177
|
+
firstDayOfYear: {
|
42178
|
+
type: (StringConstructor | NumberConstructor)[];
|
42179
|
+
default: undefined;
|
42180
|
+
};
|
42167
42181
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
42168
42182
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
42169
42183
|
color: StringConstructor;
|
@@ -42978,6 +42992,7 @@ declare const VDatePicker: {
|
|
42978
42992
|
controlHeight?: string | number | undefined;
|
42979
42993
|
headerColor?: string | undefined;
|
42980
42994
|
firstDayOfWeek?: string | number | undefined;
|
42995
|
+
firstDayOfYear?: string | number | undefined;
|
42981
42996
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
42982
42997
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
42983
42998
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -43013,6 +43028,7 @@ declare const VDatePicker: {
|
|
43013
43028
|
weekdays: CalendarWeekdays[];
|
43014
43029
|
weeksInMonth: "static" | "dynamic";
|
43015
43030
|
firstDayOfWeek: string | number;
|
43031
|
+
firstDayOfYear: string | number;
|
43016
43032
|
hideWeekdays: boolean;
|
43017
43033
|
showWeek: boolean;
|
43018
43034
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -43109,6 +43125,7 @@ declare const VDatePicker: {
|
|
43109
43125
|
controlHeight?: string | number | undefined;
|
43110
43126
|
headerColor?: string | undefined;
|
43111
43127
|
firstDayOfWeek?: string | number | undefined;
|
43128
|
+
firstDayOfYear?: string | number | undefined;
|
43112
43129
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
43113
43130
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
43114
43131
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -43139,6 +43156,7 @@ declare const VDatePicker: {
|
|
43139
43156
|
weekdays: CalendarWeekdays[];
|
43140
43157
|
weeksInMonth: "static" | "dynamic";
|
43141
43158
|
firstDayOfWeek: string | number;
|
43159
|
+
firstDayOfYear: string | number;
|
43142
43160
|
hideWeekdays: boolean;
|
43143
43161
|
showWeek: boolean;
|
43144
43162
|
}>;
|
@@ -43191,6 +43209,7 @@ declare const VDatePicker: {
|
|
43191
43209
|
controlHeight?: string | number | undefined;
|
43192
43210
|
headerColor?: string | undefined;
|
43193
43211
|
firstDayOfWeek?: string | number | undefined;
|
43212
|
+
firstDayOfYear?: string | number | undefined;
|
43194
43213
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
43195
43214
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
43196
43215
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -43226,6 +43245,7 @@ declare const VDatePicker: {
|
|
43226
43245
|
weekdays: CalendarWeekdays[];
|
43227
43246
|
weeksInMonth: "static" | "dynamic";
|
43228
43247
|
firstDayOfWeek: string | number;
|
43248
|
+
firstDayOfYear: string | number;
|
43229
43249
|
hideWeekdays: boolean;
|
43230
43250
|
showWeek: boolean;
|
43231
43251
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -43341,6 +43361,10 @@ declare const VDatePicker: {
|
|
43341
43361
|
type: (StringConstructor | NumberConstructor)[];
|
43342
43362
|
default: undefined;
|
43343
43363
|
};
|
43364
|
+
firstDayOfYear: {
|
43365
|
+
type: (StringConstructor | NumberConstructor)[];
|
43366
|
+
default: undefined;
|
43367
|
+
};
|
43344
43368
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
43345
43369
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
43346
43370
|
hideWeekdays: BooleanConstructor;
|
@@ -43449,6 +43473,10 @@ declare const VDatePicker: {
|
|
43449
43473
|
type: (StringConstructor | NumberConstructor)[];
|
43450
43474
|
default: undefined;
|
43451
43475
|
};
|
43476
|
+
firstDayOfYear: {
|
43477
|
+
type: (StringConstructor | NumberConstructor)[];
|
43478
|
+
default: undefined;
|
43479
|
+
};
|
43452
43480
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
43453
43481
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
43454
43482
|
hideWeekdays: BooleanConstructor;
|
@@ -96508,6 +96536,7 @@ declare const VCalendar: {
|
|
96508
96536
|
events?: any[] | undefined;
|
96509
96537
|
modelValue?: unknown[] | undefined;
|
96510
96538
|
firstDayOfWeek?: string | number | undefined;
|
96539
|
+
firstDayOfYear?: string | number | undefined;
|
96511
96540
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
96512
96541
|
displayValue?: unknown;
|
96513
96542
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
@@ -96711,6 +96740,7 @@ declare const VCalendar: {
|
|
96711
96740
|
weekdays: CalendarWeekdays[];
|
96712
96741
|
weeksInMonth: "static" | "dynamic";
|
96713
96742
|
firstDayOfWeek: string | number;
|
96743
|
+
firstDayOfYear: string | number;
|
96714
96744
|
intervalDivisions: number;
|
96715
96745
|
intervalDuration: number;
|
96716
96746
|
intervalHeight: number;
|
@@ -96810,6 +96840,7 @@ declare const VCalendar: {
|
|
96810
96840
|
events?: any[] | undefined;
|
96811
96841
|
modelValue?: unknown[] | undefined;
|
96812
96842
|
firstDayOfWeek?: string | number | undefined;
|
96843
|
+
firstDayOfYear?: string | number | undefined;
|
96813
96844
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
96814
96845
|
displayValue?: unknown;
|
96815
96846
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
@@ -97008,6 +97039,7 @@ declare const VCalendar: {
|
|
97008
97039
|
weekdays: CalendarWeekdays[];
|
97009
97040
|
weeksInMonth: "static" | "dynamic";
|
97010
97041
|
firstDayOfWeek: string | number;
|
97042
|
+
firstDayOfYear: string | number;
|
97011
97043
|
intervalDivisions: number;
|
97012
97044
|
intervalDuration: number;
|
97013
97045
|
intervalHeight: number;
|
@@ -97048,6 +97080,7 @@ declare const VCalendar: {
|
|
97048
97080
|
events?: any[] | undefined;
|
97049
97081
|
modelValue?: unknown[] | undefined;
|
97050
97082
|
firstDayOfWeek?: string | number | undefined;
|
97083
|
+
firstDayOfYear?: string | number | undefined;
|
97051
97084
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
97052
97085
|
displayValue?: unknown;
|
97053
97086
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
@@ -97251,6 +97284,7 @@ declare const VCalendar: {
|
|
97251
97284
|
weekdays: CalendarWeekdays[];
|
97252
97285
|
weeksInMonth: "static" | "dynamic";
|
97253
97286
|
firstDayOfWeek: string | number;
|
97287
|
+
firstDayOfYear: string | number;
|
97254
97288
|
intervalDivisions: number;
|
97255
97289
|
intervalDuration: number;
|
97256
97290
|
intervalHeight: number;
|
@@ -97403,6 +97437,10 @@ declare const VCalendar: {
|
|
97403
97437
|
type: (StringConstructor | NumberConstructor)[];
|
97404
97438
|
default: undefined;
|
97405
97439
|
};
|
97440
|
+
firstDayOfYear: {
|
97441
|
+
type: (StringConstructor | NumberConstructor)[];
|
97442
|
+
default: undefined;
|
97443
|
+
};
|
97406
97444
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
97407
97445
|
hideHeader: BooleanConstructor;
|
97408
97446
|
hideWeekNumber: BooleanConstructor;
|
@@ -97494,6 +97532,10 @@ declare const VCalendar: {
|
|
97494
97532
|
type: (StringConstructor | NumberConstructor)[];
|
97495
97533
|
default: undefined;
|
97496
97534
|
};
|
97535
|
+
firstDayOfYear: {
|
97536
|
+
type: (StringConstructor | NumberConstructor)[];
|
97537
|
+
default: undefined;
|
97538
|
+
};
|
97497
97539
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
97498
97540
|
hideHeader: BooleanConstructor;
|
97499
97541
|
hideWeekNumber: BooleanConstructor;
|
@@ -99331,6 +99373,7 @@ declare const VDateInput: {
|
|
99331
99373
|
counterValue?: number | ((value: any) => number) | undefined;
|
99332
99374
|
modelModifiers?: Record<string, boolean> | undefined;
|
99333
99375
|
firstDayOfWeek?: string | number | undefined;
|
99376
|
+
firstDayOfYear?: string | number | undefined;
|
99334
99377
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
99335
99378
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
99336
99379
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -101370,6 +101413,7 @@ declare const VDateInput: {
|
|
101370
101413
|
weekdays: CalendarWeekdays[];
|
101371
101414
|
weeksInMonth: "static" | "dynamic";
|
101372
101415
|
firstDayOfWeek: string | number;
|
101416
|
+
firstDayOfYear: string | number;
|
101373
101417
|
hideWeekdays: boolean;
|
101374
101418
|
showWeek: boolean;
|
101375
101419
|
displayFormat: string | ((date: unknown) => any);
|
@@ -101505,6 +101549,7 @@ declare const VDateInput: {
|
|
101505
101549
|
counterValue?: number | ((value: any) => number) | undefined;
|
101506
101550
|
modelModifiers?: Record<string, boolean> | undefined;
|
101507
101551
|
firstDayOfWeek?: string | number | undefined;
|
101552
|
+
firstDayOfYear?: string | number | undefined;
|
101508
101553
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
101509
101554
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
101510
101555
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -103538,6 +103583,7 @@ declare const VDateInput: {
|
|
103538
103583
|
weekdays: CalendarWeekdays[];
|
103539
103584
|
weeksInMonth: "static" | "dynamic";
|
103540
103585
|
firstDayOfWeek: string | number;
|
103586
|
+
firstDayOfYear: string | number;
|
103541
103587
|
hideWeekdays: boolean;
|
103542
103588
|
showWeek: boolean;
|
103543
103589
|
displayFormat: string | ((date: unknown) => any);
|
@@ -103652,6 +103698,7 @@ declare const VDateInput: {
|
|
103652
103698
|
counterValue?: number | ((value: any) => number) | undefined;
|
103653
103699
|
modelModifiers?: Record<string, boolean> | undefined;
|
103654
103700
|
firstDayOfWeek?: string | number | undefined;
|
103701
|
+
firstDayOfYear?: string | number | undefined;
|
103655
103702
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
103656
103703
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
103657
103704
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -105691,6 +105738,7 @@ declare const VDateInput: {
|
|
105691
105738
|
weekdays: CalendarWeekdays[];
|
105692
105739
|
weeksInMonth: "static" | "dynamic";
|
105693
105740
|
firstDayOfWeek: string | number;
|
105741
|
+
firstDayOfYear: string | number;
|
105694
105742
|
hideWeekdays: boolean;
|
105695
105743
|
showWeek: boolean;
|
105696
105744
|
displayFormat: string | ((date: unknown) => any);
|
@@ -105817,6 +105865,10 @@ declare const VDateInput: {
|
|
105817
105865
|
type: (StringConstructor | NumberConstructor)[];
|
105818
105866
|
default: undefined;
|
105819
105867
|
};
|
105868
|
+
firstDayOfYear: {
|
105869
|
+
type: (StringConstructor | NumberConstructor)[];
|
105870
|
+
default: undefined;
|
105871
|
+
};
|
105820
105872
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
105821
105873
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
105822
105874
|
hideWeekdays: BooleanConstructor;
|
@@ -106056,6 +106108,10 @@ declare const VDateInput: {
|
|
106056
106108
|
type: (StringConstructor | NumberConstructor)[];
|
106057
106109
|
default: undefined;
|
106058
106110
|
};
|
106111
|
+
firstDayOfYear: {
|
106112
|
+
type: (StringConstructor | NumberConstructor)[];
|
106113
|
+
default: undefined;
|
106114
|
+
};
|
106059
106115
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
106060
106116
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
106061
106117
|
hideWeekdays: BooleanConstructor;
|
@@ -122804,7 +122860,7 @@ declare const createVuetify: (options?: VuetifyOptions) => {
|
|
122804
122860
|
getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
|
122805
122861
|
getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
|
122806
122862
|
getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
|
122807
|
-
getWeek: (date: unknown, firstDayOfWeek?: number | string,
|
122863
|
+
getWeek: (date: unknown, firstDayOfWeek?: number | string, firstDayOfYear?: number | string) => number;
|
122808
122864
|
getMonth: (date: unknown) => number;
|
122809
122865
|
setMonth: (date: unknown, month: number) => unknown;
|
122810
122866
|
getDate: (date: unknown) => number;
|
@@ -122858,30 +122914,40 @@ declare module 'vue' {
|
|
122858
122914
|
}
|
122859
122915
|
export interface GlobalComponents {
|
122860
122916
|
VApp: VApp
|
122861
|
-
|
122862
|
-
|
122863
|
-
VBannerText: VBannerText
|
122917
|
+
VAlert: VAlert
|
122918
|
+
VAlertTitle: VAlertTitle
|
122864
122919
|
VAppBar: VAppBar
|
122865
122920
|
VAppBarNavIcon: VAppBarNavIcon
|
122866
122921
|
VAppBarTitle: VAppBarTitle
|
122867
|
-
VAutocomplete: VAutocomplete
|
122868
|
-
VBottomNavigation: VBottomNavigation
|
122869
122922
|
VAvatar: VAvatar
|
122870
|
-
VBtn: VBtn
|
122871
|
-
VAlert: VAlert
|
122872
|
-
VAlertTitle: VAlertTitle
|
122873
|
-
VBtnGroup: VBtnGroup
|
122874
|
-
VBtnToggle: VBtnToggle
|
122875
122923
|
VBadge: VBadge
|
122924
|
+
VAutocomplete: VAutocomplete
|
122925
|
+
VBanner: VBanner
|
122926
|
+
VBannerActions: VBannerActions
|
122927
|
+
VBannerText: VBannerText
|
122928
|
+
VBottomNavigation: VBottomNavigation
|
122929
|
+
VBottomSheet: VBottomSheet
|
122876
122930
|
VBreadcrumbs: VBreadcrumbs
|
122877
122931
|
VBreadcrumbsItem: VBreadcrumbsItem
|
122878
122932
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
122933
|
+
VBtnToggle: VBtnToggle
|
122934
|
+
VBtn: VBtn
|
122935
|
+
VCard: VCard
|
122936
|
+
VCardActions: VCardActions
|
122937
|
+
VCardItem: VCardItem
|
122938
|
+
VCardSubtitle: VCardSubtitle
|
122939
|
+
VCardText: VCardText
|
122940
|
+
VCardTitle: VCardTitle
|
122879
122941
|
VCheckbox: VCheckbox
|
122880
122942
|
VCheckboxBtn: VCheckboxBtn
|
122881
122943
|
VChip: VChip
|
122944
|
+
VCode: VCode
|
122882
122945
|
VChipGroup: VChipGroup
|
122883
122946
|
VCombobox: VCombobox
|
122884
122947
|
VColorPicker: VColorPicker
|
122948
|
+
VCarousel: VCarousel
|
122949
|
+
VCarouselItem: VCarouselItem
|
122950
|
+
VCounter: VCounter
|
122885
122951
|
VDataTable: VDataTable
|
122886
122952
|
VDataTableHeaders: VDataTableHeaders
|
122887
122953
|
VDataTableFooter: VDataTableFooter
|
@@ -122889,46 +122955,37 @@ declare module 'vue' {
|
|
122889
122955
|
VDataTableRow: VDataTableRow
|
122890
122956
|
VDataTableVirtual: VDataTableVirtual
|
122891
122957
|
VDataTableServer: VDataTableServer
|
122892
|
-
VCounter: VCounter
|
122893
|
-
VDialog: VDialog
|
122894
|
-
VCarousel: VCarousel
|
122895
|
-
VCarouselItem: VCarouselItem
|
122896
122958
|
VDatePicker: VDatePicker
|
122897
122959
|
VDatePickerControls: VDatePickerControls
|
122898
122960
|
VDatePickerHeader: VDatePickerHeader
|
122899
122961
|
VDatePickerMonth: VDatePickerMonth
|
122900
122962
|
VDatePickerMonths: VDatePickerMonths
|
122901
122963
|
VDatePickerYears: VDatePickerYears
|
122964
|
+
VDialog: VDialog
|
122965
|
+
VEmptyState: VEmptyState
|
122966
|
+
VBtnGroup: VBtnGroup
|
122902
122967
|
VDivider: VDivider
|
122903
|
-
VFab: VFab
|
122904
122968
|
VExpansionPanels: VExpansionPanels
|
122905
122969
|
VExpansionPanel: VExpansionPanel
|
122906
122970
|
VExpansionPanelText: VExpansionPanelText
|
122907
122971
|
VExpansionPanelTitle: VExpansionPanelTitle
|
122908
|
-
|
122909
|
-
VCard: VCard
|
122910
|
-
VCardActions: VCardActions
|
122911
|
-
VCardItem: VCardItem
|
122912
|
-
VCardSubtitle: VCardSubtitle
|
122913
|
-
VCardText: VCardText
|
122914
|
-
VCardTitle: VCardTitle
|
122915
|
-
VField: VField
|
122916
|
-
VFieldLabel: VFieldLabel
|
122917
|
-
VFileInput: VFileInput
|
122918
|
-
VCode: VCode
|
122972
|
+
VFab: VFab
|
122919
122973
|
VFooter: VFooter
|
122974
|
+
VFileInput: VFileInput
|
122920
122975
|
VIcon: VIcon
|
122921
122976
|
VComponentIcon: VComponentIcon
|
122922
122977
|
VSvgIcon: VSvgIcon
|
122923
122978
|
VLigatureIcon: VLigatureIcon
|
122924
122979
|
VClassIcon: VClassIcon
|
122925
122980
|
VImg: VImg
|
122926
|
-
|
122981
|
+
VField: VField
|
122982
|
+
VFieldLabel: VFieldLabel
|
122983
|
+
VKbd: VKbd
|
122927
122984
|
VInfiniteScroll: VInfiniteScroll
|
122928
122985
|
VItemGroup: VItemGroup
|
122929
122986
|
VItem: VItem
|
122987
|
+
VInput: VInput
|
122930
122988
|
VLabel: VLabel
|
122931
|
-
VKbd: VKbd
|
122932
122989
|
VList: VList
|
122933
122990
|
VListGroup: VListGroup
|
122934
122991
|
VListImg: VListImg
|
@@ -122938,78 +122995,78 @@ declare module 'vue' {
|
|
122938
122995
|
VListItemSubtitle: VListItemSubtitle
|
122939
122996
|
VListItemTitle: VListItemTitle
|
122940
122997
|
VListSubheader: VListSubheader
|
122941
|
-
VNavigationDrawer: VNavigationDrawer
|
122942
122998
|
VMain: VMain
|
122943
|
-
VOtpInput: VOtpInput
|
122944
|
-
VNumberInput: VNumberInput
|
122945
|
-
VOverlay: VOverlay
|
122946
122999
|
VMessages: VMessages
|
122947
123000
|
VMenu: VMenu
|
122948
|
-
|
123001
|
+
VNavigationDrawer: VNavigationDrawer
|
123002
|
+
VOtpInput: VOtpInput
|
123003
|
+
VOverlay: VOverlay
|
123004
|
+
VNumberInput: VNumberInput
|
122949
123005
|
VPagination: VPagination
|
123006
|
+
VProgressLinear: VProgressLinear
|
122950
123007
|
VRadioGroup: VRadioGroup
|
122951
|
-
VRating: VRating
|
122952
123008
|
VProgressCircular: VProgressCircular
|
123009
|
+
VRating: VRating
|
122953
123010
|
VSelect: VSelect
|
122954
|
-
VSelectionControl: VSelectionControl
|
122955
|
-
VSheet: VSheet
|
122956
|
-
VSkeletonLoader: VSkeletonLoader
|
122957
|
-
VSelectionControlGroup: VSelectionControlGroup
|
122958
123011
|
VSlideGroup: VSlideGroup
|
122959
123012
|
VSlideGroupItem: VSlideGroupItem
|
123013
|
+
VSelectionControlGroup: VSelectionControlGroup
|
122960
123014
|
VSlider: VSlider
|
122961
123015
|
VSnackbar: VSnackbar
|
123016
|
+
VSheet: VSheet
|
123017
|
+
VSkeletonLoader: VSkeletonLoader
|
123018
|
+
VSelectionControl: VSelectionControl
|
122962
123019
|
VSwitch: VSwitch
|
122963
|
-
VStepper: VStepper
|
122964
|
-
VStepperActions: VStepperActions
|
122965
|
-
VStepperHeader: VStepperHeader
|
122966
|
-
VStepperItem: VStepperItem
|
122967
|
-
VStepperWindow: VStepperWindow
|
122968
|
-
VStepperWindowItem: VStepperWindowItem
|
122969
|
-
VTable: VTable
|
122970
123020
|
VSystemBar: VSystemBar
|
123021
|
+
VTable: VTable
|
123022
|
+
VTextarea: VTextarea
|
122971
123023
|
VTab: VTab
|
122972
123024
|
VTabs: VTabs
|
122973
123025
|
VTabsWindow: VTabsWindow
|
122974
123026
|
VTabsWindowItem: VTabsWindowItem
|
123027
|
+
VTimeline: VTimeline
|
123028
|
+
VTimelineItem: VTimelineItem
|
123029
|
+
VTooltip: VTooltip
|
123030
|
+
VTimePicker: VTimePicker
|
123031
|
+
VTimePickerClock: VTimePickerClock
|
123032
|
+
VTimePickerControls: VTimePickerControls
|
122975
123033
|
VTextField: VTextField
|
122976
123034
|
VToolbar: VToolbar
|
122977
123035
|
VToolbarTitle: VToolbarTitle
|
122978
123036
|
VToolbarItems: VToolbarItems
|
122979
|
-
VTimePicker: VTimePicker
|
122980
|
-
VTimePickerClock: VTimePickerClock
|
122981
|
-
VTimePickerControls: VTimePickerControls
|
122982
|
-
VTextarea: VTextarea
|
122983
|
-
VTimeline: VTimeline
|
122984
|
-
VTimelineItem: VTimelineItem
|
122985
|
-
VWindow: VWindow
|
122986
|
-
VWindowItem: VWindowItem
|
122987
123037
|
VTreeview: VTreeview
|
122988
123038
|
VTreeviewItem: VTreeviewItem
|
122989
123039
|
VTreeviewGroup: VTreeviewGroup
|
122990
|
-
|
123040
|
+
VWindow: VWindow
|
123041
|
+
VWindowItem: VWindowItem
|
122991
123042
|
VDataIterator: VDataIterator
|
122992
|
-
VConfirmEdit: VConfirmEdit
|
122993
|
-
VForm: VForm
|
122994
|
-
VEmptyState: VEmptyState
|
122995
123043
|
VDefaultsProvider: VDefaultsProvider
|
123044
|
+
VHover: VHover
|
123045
|
+
VForm: VForm
|
122996
123046
|
VContainer: VContainer
|
122997
123047
|
VCol: VCol
|
122998
123048
|
VRow: VRow
|
122999
123049
|
VSpacer: VSpacer
|
123000
|
-
VLocaleProvider: VLocaleProvider
|
123001
123050
|
VLayout: VLayout
|
123002
123051
|
VLayoutItem: VLayoutItem
|
123052
|
+
VStepper: VStepper
|
123053
|
+
VStepperActions: VStepperActions
|
123054
|
+
VStepperHeader: VStepperHeader
|
123055
|
+
VStepperItem: VStepperItem
|
123056
|
+
VStepperWindow: VStepperWindow
|
123057
|
+
VStepperWindowItem: VStepperWindowItem
|
123003
123058
|
VLazy: VLazy
|
123059
|
+
VLocaleProvider: VLocaleProvider
|
123004
123060
|
VNoSsr: VNoSsr
|
123005
123061
|
VParallax: VParallax
|
123006
123062
|
VRadio: VRadio
|
123007
|
-
VResponsive: VResponsive
|
123008
123063
|
VRangeSlider: VRangeSlider
|
123009
|
-
|
123064
|
+
VResponsive: VResponsive
|
123010
123065
|
VSnackbarQueue: VSnackbarQueue
|
123066
|
+
VSparkline: VSparkline
|
123011
123067
|
VSpeedDial: VSpeedDial
|
123012
123068
|
VThemeProvider: VThemeProvider
|
123069
|
+
VValidation: VValidation
|
123013
123070
|
VVirtualScroll: VVirtualScroll
|
123014
123071
|
VFabTransition: VFabTransition
|
123015
123072
|
VDialogBottomTransition: VDialogBottomTransition
|
@@ -123027,33 +123084,32 @@ declare module 'vue' {
|
|
123027
123084
|
VExpandTransition: VExpandTransition
|
123028
123085
|
VExpandXTransition: VExpandXTransition
|
123029
123086
|
VDialogTransition: VDialogTransition
|
123030
|
-
|
123031
|
-
|
123032
|
-
VCalendar: VCalendar
|
123033
|
-
VCalendarDay: VCalendarDay
|
123034
|
-
VCalendarHeader: VCalendarHeader
|
123035
|
-
VCalendarInterval: VCalendarInterval
|
123036
|
-
VCalendarIntervalEvent: VCalendarIntervalEvent
|
123037
|
-
VCalendarMonthDay: VCalendarMonthDay
|
123038
|
-
VPicker: VPicker
|
123039
|
-
VPickerTitle: VPickerTitle
|
123087
|
+
VConfirmEdit: VConfirmEdit
|
123088
|
+
VIconBtn: VIconBtn
|
123040
123089
|
VFileUpload: VFileUpload
|
123041
123090
|
VFileUploadItem: VFileUploadItem
|
123042
|
-
VIconBtn: VIconBtn
|
123043
|
-
VHotkey: VHotkey
|
123044
|
-
VPie: VPie
|
123045
|
-
VPieSegment: VPieSegment
|
123046
|
-
VPieTooltip: VPieTooltip
|
123047
123091
|
VStepperVertical: VStepperVertical
|
123048
123092
|
VStepperVerticalItem: VStepperVerticalItem
|
123049
123093
|
VStepperVerticalActions: VStepperVerticalActions
|
123094
|
+
VPicker: VPicker
|
123095
|
+
VPickerTitle: VPickerTitle
|
123050
123096
|
VVideo: VVideo
|
123051
123097
|
VVideoControls: VVideoControls
|
123052
123098
|
VVideoVolume: VVideoVolume
|
123099
|
+
VHotkey: VHotkey
|
123053
123100
|
VDateInput: VDateInput
|
123054
123101
|
VMaskInput: VMaskInput
|
123055
123102
|
VPullToRefresh: VPullToRefresh
|
123056
123103
|
VColorInput: VColorInput
|
123104
|
+
VPie: VPie
|
123105
|
+
VPieSegment: VPieSegment
|
123106
|
+
VPieTooltip: VPieTooltip
|
123107
|
+
VCalendar: VCalendar
|
123108
|
+
VCalendarDay: VCalendarDay
|
123109
|
+
VCalendarHeader: VCalendarHeader
|
123110
|
+
VCalendarInterval: VCalendarInterval
|
123111
|
+
VCalendarIntervalEvent: VCalendarIntervalEvent
|
123112
|
+
VCalendarMonthDay: VCalendarMonthDay
|
123057
123113
|
}
|
123058
123114
|
export interface GlobalDirectives {
|
123059
123115
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|