vuetify 3.8.1 → 3.8.2
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/dist/json/attributes.json +3230 -3230
- package/dist/json/importMap-labs.json +26 -26
- package/dist/json/importMap.json +172 -172
- package/dist/json/web-types.json +6105 -6109
- package/dist/vuetify-labs.cjs +159 -215
- package/dist/vuetify-labs.css +3202 -3199
- package/dist/vuetify-labs.d.ts +96 -81
- package/dist/vuetify-labs.esm.js +159 -215
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +159 -215
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +135 -197
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +1752 -1749
- package/dist/vuetify.d.ts +86 -71
- package/dist/vuetify.esm.js +135 -197
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +135 -197
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +286 -271
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/md3.js +18 -5
- package/lib/blueprints/md3.js.map +1 -1
- package/lib/components/VCode/VCode.css +3 -0
- package/lib/components/VCode/VCode.sass +3 -0
- package/lib/components/VDataTable/VDataTable.css +1 -1
- package/lib/components/VDataTable/VDataTable.sass +1 -1
- package/lib/components/VDatePicker/VDatePicker.d.ts +7 -7
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +7 -7
- package/lib/composables/calendar.d.ts +2 -2
- package/lib/composables/calendar.js +5 -7
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/date/DateAdapter.d.ts +1 -0
- package/lib/composables/date/DateAdapter.js.map +1 -1
- package/lib/composables/date/adapters/vuetify.d.ts +1 -0
- package/lib/composables/date/adapters/vuetify.js +101 -160
- package/lib/composables/date/adapters/vuetify.js.map +1 -1
- package/lib/composables/date/date.d.ts +1 -1
- package/lib/composables/date/date.js +0 -20
- package/lib/composables/date/date.js.map +1 -1
- package/lib/composables/filter.js +2 -1
- package/lib/composables/filter.js.map +1 -1
- package/lib/composables/theme.js +2 -2
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/validation.js +5 -0
- package/lib/composables/validation.js.map +1 -1
- package/lib/entry-bundler.d.ts +1 -0
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +63 -60
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +7 -7
- package/lib/labs/VCalendar/VCalendarInterval.js +25 -19
- package/lib/labs/VCalendar/VCalendarInterval.js.map +1 -1
- package/lib/labs/VDateInput/VDateInput.d.ts +7 -7
- package/lib/labs/entry-bundler.d.ts +1 -0
- package/package.json +47 -46
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -39,6 +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): string[];
|
|
42
|
+
getWeek(date: T, firstDayOfWeek?: number | string, firstWeekMinSize?: number): number;
|
|
42
43
|
getMonth(date: T): number;
|
|
43
44
|
setMonth(date: T, month: number): T;
|
|
44
45
|
getDate(date: T): number;
|
|
@@ -38128,7 +38129,6 @@ declare const VDatePicker: {
|
|
|
38128
38129
|
showAdjacentMonths: boolean;
|
|
38129
38130
|
weekdays: CalendarWeekdays[];
|
|
38130
38131
|
weeksInMonth: "static" | "dynamic";
|
|
38131
|
-
firstDayOfWeek: string | number;
|
|
38132
38132
|
hideWeekdays: boolean;
|
|
38133
38133
|
showWeek: boolean;
|
|
38134
38134
|
} & {
|
|
@@ -38155,6 +38155,7 @@ declare const VDatePicker: {
|
|
|
38155
38155
|
bgColor?: string | undefined;
|
|
38156
38156
|
controlHeight?: string | number | undefined;
|
|
38157
38157
|
headerColor?: string | undefined;
|
|
38158
|
+
firstDayOfWeek?: string | number | undefined;
|
|
38158
38159
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
38159
38160
|
} & {
|
|
38160
38161
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
|
@@ -38223,7 +38224,6 @@ declare const VDatePicker: {
|
|
|
38223
38224
|
showAdjacentMonths: boolean;
|
|
38224
38225
|
weekdays: CalendarWeekdays[];
|
|
38225
38226
|
weeksInMonth: "static" | "dynamic";
|
|
38226
|
-
firstDayOfWeek: string | number;
|
|
38227
38227
|
hideWeekdays: boolean;
|
|
38228
38228
|
showWeek: boolean;
|
|
38229
38229
|
} & {
|
|
@@ -38250,6 +38250,7 @@ declare const VDatePicker: {
|
|
|
38250
38250
|
bgColor?: string | undefined;
|
|
38251
38251
|
controlHeight?: string | number | undefined;
|
|
38252
38252
|
headerColor?: string | undefined;
|
|
38253
|
+
firstDayOfWeek?: string | number | undefined;
|
|
38253
38254
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
38254
38255
|
} & {
|
|
38255
38256
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
|
@@ -38302,7 +38303,6 @@ declare const VDatePicker: {
|
|
|
38302
38303
|
showAdjacentMonths: boolean;
|
|
38303
38304
|
weekdays: CalendarWeekdays[];
|
|
38304
38305
|
weeksInMonth: "static" | "dynamic";
|
|
38305
|
-
firstDayOfWeek: string | number;
|
|
38306
38306
|
hideWeekdays: boolean;
|
|
38307
38307
|
showWeek: boolean;
|
|
38308
38308
|
} & {
|
|
@@ -38329,6 +38329,7 @@ declare const VDatePicker: {
|
|
|
38329
38329
|
bgColor?: string | undefined;
|
|
38330
38330
|
controlHeight?: string | number | undefined;
|
|
38331
38331
|
headerColor?: string | undefined;
|
|
38332
|
+
firstDayOfWeek?: string | number | undefined;
|
|
38332
38333
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
38333
38334
|
} & {
|
|
38334
38335
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
|
@@ -38439,7 +38440,7 @@ declare const VDatePicker: {
|
|
|
38439
38440
|
};
|
|
38440
38441
|
firstDayOfWeek: {
|
|
38441
38442
|
type: (StringConstructor | NumberConstructor)[];
|
|
38442
|
-
default:
|
|
38443
|
+
default: undefined;
|
|
38443
38444
|
};
|
|
38444
38445
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
38445
38446
|
hideWeekdays: BooleanConstructor;
|
|
@@ -38544,7 +38545,7 @@ declare const VDatePicker: {
|
|
|
38544
38545
|
};
|
|
38545
38546
|
firstDayOfWeek: {
|
|
38546
38547
|
type: (StringConstructor | NumberConstructor)[];
|
|
38547
|
-
default:
|
|
38548
|
+
default: undefined;
|
|
38548
38549
|
};
|
|
38549
38550
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
38550
38551
|
hideWeekdays: BooleanConstructor;
|
|
@@ -38890,7 +38891,6 @@ declare const VDatePickerMonth: {
|
|
|
38890
38891
|
showAdjacentMonths: boolean;
|
|
38891
38892
|
weekdays: CalendarWeekdays[];
|
|
38892
38893
|
weeksInMonth: "static" | "dynamic";
|
|
38893
|
-
firstDayOfWeek: string | number;
|
|
38894
38894
|
hideWeekdays: boolean;
|
|
38895
38895
|
showWeek: boolean;
|
|
38896
38896
|
} & {
|
|
@@ -38901,6 +38901,7 @@ declare const VDatePickerMonth: {
|
|
|
38901
38901
|
month?: string | number | undefined;
|
|
38902
38902
|
year?: string | number | undefined;
|
|
38903
38903
|
modelValue?: unknown[] | undefined;
|
|
38904
|
+
firstDayOfWeek?: string | number | undefined;
|
|
38904
38905
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
38905
38906
|
} & {
|
|
38906
38907
|
$children?: {} | vue.VNodeChild | {
|
|
@@ -38969,7 +38970,6 @@ declare const VDatePickerMonth: {
|
|
|
38969
38970
|
showAdjacentMonths: boolean;
|
|
38970
38971
|
weekdays: CalendarWeekdays[];
|
|
38971
38972
|
weeksInMonth: "static" | "dynamic";
|
|
38972
|
-
firstDayOfWeek: string | number;
|
|
38973
38973
|
hideWeekdays: boolean;
|
|
38974
38974
|
showWeek: boolean;
|
|
38975
38975
|
} & {
|
|
@@ -38980,6 +38980,7 @@ declare const VDatePickerMonth: {
|
|
|
38980
38980
|
month?: string | number | undefined;
|
|
38981
38981
|
year?: string | number | undefined;
|
|
38982
38982
|
modelValue?: unknown[] | undefined;
|
|
38983
|
+
firstDayOfWeek?: string | number | undefined;
|
|
38983
38984
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
38984
38985
|
} & {
|
|
38985
38986
|
$children?: {} | vue.VNodeChild | {
|
|
@@ -39033,7 +39034,6 @@ declare const VDatePickerMonth: {
|
|
|
39033
39034
|
showAdjacentMonths: boolean;
|
|
39034
39035
|
weekdays: CalendarWeekdays[];
|
|
39035
39036
|
weeksInMonth: "static" | "dynamic";
|
|
39036
|
-
firstDayOfWeek: string | number;
|
|
39037
39037
|
hideWeekdays: boolean;
|
|
39038
39038
|
showWeek: boolean;
|
|
39039
39039
|
} & {
|
|
@@ -39044,6 +39044,7 @@ declare const VDatePickerMonth: {
|
|
|
39044
39044
|
month?: string | number | undefined;
|
|
39045
39045
|
year?: string | number | undefined;
|
|
39046
39046
|
modelValue?: unknown[] | undefined;
|
|
39047
|
+
firstDayOfWeek?: string | number | undefined;
|
|
39047
39048
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
39048
39049
|
} & {
|
|
39049
39050
|
$children?: {} | vue.VNodeChild | {
|
|
@@ -39119,7 +39120,7 @@ declare const VDatePickerMonth: {
|
|
|
39119
39120
|
};
|
|
39120
39121
|
firstDayOfWeek: {
|
|
39121
39122
|
type: (StringConstructor | NumberConstructor)[];
|
|
39122
|
-
default:
|
|
39123
|
+
default: undefined;
|
|
39123
39124
|
};
|
|
39124
39125
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
39125
39126
|
color: StringConstructor;
|
|
@@ -39155,7 +39156,7 @@ declare const VDatePickerMonth: {
|
|
|
39155
39156
|
};
|
|
39156
39157
|
firstDayOfWeek: {
|
|
39157
39158
|
type: (StringConstructor | NumberConstructor)[];
|
|
39158
|
-
default:
|
|
39159
|
+
default: undefined;
|
|
39159
39160
|
};
|
|
39160
39161
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
39161
39162
|
color: StringConstructor;
|
|
@@ -82788,7 +82789,6 @@ declare const VCalendar: {
|
|
|
82788
82789
|
showAdjacentMonths: boolean;
|
|
82789
82790
|
weekdays: CalendarWeekdays[];
|
|
82790
82791
|
weeksInMonth: "static" | "dynamic";
|
|
82791
|
-
firstDayOfWeek: string | number;
|
|
82792
82792
|
intervalDivisions: number;
|
|
82793
82793
|
intervalDuration: number;
|
|
82794
82794
|
intervalHeight: number;
|
|
@@ -82805,6 +82805,7 @@ declare const VCalendar: {
|
|
|
82805
82805
|
year?: string | number | undefined;
|
|
82806
82806
|
events?: any[] | undefined;
|
|
82807
82807
|
modelValue?: unknown[] | undefined;
|
|
82808
|
+
firstDayOfWeek?: string | number | undefined;
|
|
82808
82809
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
82809
82810
|
displayValue?: unknown;
|
|
82810
82811
|
dayIndex?: number | undefined;
|
|
@@ -82948,7 +82949,6 @@ declare const VCalendar: {
|
|
|
82948
82949
|
showAdjacentMonths: boolean;
|
|
82949
82950
|
weekdays: CalendarWeekdays[];
|
|
82950
82951
|
weeksInMonth: "static" | "dynamic";
|
|
82951
|
-
firstDayOfWeek: string | number;
|
|
82952
82952
|
intervalDivisions: number;
|
|
82953
82953
|
intervalDuration: number;
|
|
82954
82954
|
intervalHeight: number;
|
|
@@ -82965,6 +82965,7 @@ declare const VCalendar: {
|
|
|
82965
82965
|
year?: string | number | undefined;
|
|
82966
82966
|
events?: any[] | undefined;
|
|
82967
82967
|
modelValue?: unknown[] | undefined;
|
|
82968
|
+
firstDayOfWeek?: string | number | undefined;
|
|
82968
82969
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
82969
82970
|
displayValue?: unknown;
|
|
82970
82971
|
dayIndex?: number | undefined;
|
|
@@ -83092,7 +83093,6 @@ declare const VCalendar: {
|
|
|
83092
83093
|
showAdjacentMonths: boolean;
|
|
83093
83094
|
weekdays: CalendarWeekdays[];
|
|
83094
83095
|
weeksInMonth: "static" | "dynamic";
|
|
83095
|
-
firstDayOfWeek: string | number;
|
|
83096
83096
|
intervalDivisions: number;
|
|
83097
83097
|
intervalDuration: number;
|
|
83098
83098
|
intervalHeight: number;
|
|
@@ -83109,6 +83109,7 @@ declare const VCalendar: {
|
|
|
83109
83109
|
year?: string | number | undefined;
|
|
83110
83110
|
events?: any[] | undefined;
|
|
83111
83111
|
modelValue?: unknown[] | undefined;
|
|
83112
|
+
firstDayOfWeek?: string | number | undefined;
|
|
83112
83113
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
83113
83114
|
displayValue?: unknown;
|
|
83114
83115
|
dayIndex?: number | undefined;
|
|
@@ -83320,7 +83321,7 @@ declare const VCalendar: {
|
|
|
83320
83321
|
};
|
|
83321
83322
|
firstDayOfWeek: {
|
|
83322
83323
|
type: (StringConstructor | NumberConstructor)[];
|
|
83323
|
-
default:
|
|
83324
|
+
default: undefined;
|
|
83324
83325
|
};
|
|
83325
83326
|
hideHeader: BooleanConstructor;
|
|
83326
83327
|
hideWeekNumber: BooleanConstructor;
|
|
@@ -83410,7 +83411,7 @@ declare const VCalendar: {
|
|
|
83410
83411
|
};
|
|
83411
83412
|
firstDayOfWeek: {
|
|
83412
83413
|
type: (StringConstructor | NumberConstructor)[];
|
|
83413
|
-
default:
|
|
83414
|
+
default: undefined;
|
|
83414
83415
|
};
|
|
83415
83416
|
hideHeader: BooleanConstructor;
|
|
83416
83417
|
hideWeekNumber: BooleanConstructor;
|
|
@@ -84364,7 +84365,6 @@ declare const VDateInput: {
|
|
|
84364
84365
|
showAdjacentMonths: boolean;
|
|
84365
84366
|
weekdays: CalendarWeekdays[];
|
|
84366
84367
|
weeksInMonth: "static" | "dynamic";
|
|
84367
|
-
firstDayOfWeek: string | number;
|
|
84368
84368
|
hideWeekdays: boolean;
|
|
84369
84369
|
showWeek: boolean;
|
|
84370
84370
|
} & {
|
|
@@ -84418,6 +84418,7 @@ declare const VDateInput: {
|
|
|
84418
84418
|
suffix?: string | undefined;
|
|
84419
84419
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
84420
84420
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
84421
|
+
firstDayOfWeek?: string | number | undefined;
|
|
84421
84422
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
84422
84423
|
displayFormat?: string | Function | undefined;
|
|
84423
84424
|
} & {
|
|
@@ -86555,7 +86556,6 @@ declare const VDateInput: {
|
|
|
86555
86556
|
showAdjacentMonths: boolean;
|
|
86556
86557
|
weekdays: CalendarWeekdays[];
|
|
86557
86558
|
weeksInMonth: "static" | "dynamic";
|
|
86558
|
-
firstDayOfWeek: string | number;
|
|
86559
86559
|
hideWeekdays: boolean;
|
|
86560
86560
|
showWeek: boolean;
|
|
86561
86561
|
} & {
|
|
@@ -86609,6 +86609,7 @@ declare const VDateInput: {
|
|
|
86609
86609
|
suffix?: string | undefined;
|
|
86610
86610
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
86611
86611
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
86612
|
+
firstDayOfWeek?: string | number | undefined;
|
|
86612
86613
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
86613
86614
|
displayFormat?: string | Function | undefined;
|
|
86614
86615
|
} & {
|
|
@@ -88721,7 +88722,6 @@ declare const VDateInput: {
|
|
|
88721
88722
|
showAdjacentMonths: boolean;
|
|
88722
88723
|
weekdays: CalendarWeekdays[];
|
|
88723
88724
|
weeksInMonth: "static" | "dynamic";
|
|
88724
|
-
firstDayOfWeek: string | number;
|
|
88725
88725
|
hideWeekdays: boolean;
|
|
88726
88726
|
showWeek: boolean;
|
|
88727
88727
|
} & {
|
|
@@ -88775,6 +88775,7 @@ declare const VDateInput: {
|
|
|
88775
88775
|
suffix?: string | undefined;
|
|
88776
88776
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
88777
88777
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
88778
|
+
firstDayOfWeek?: string | number | undefined;
|
|
88778
88779
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
88779
88780
|
displayFormat?: string | Function | undefined;
|
|
88780
88781
|
} & {
|
|
@@ -90951,7 +90952,7 @@ declare const VDateInput: {
|
|
|
90951
90952
|
};
|
|
90952
90953
|
firstDayOfWeek: {
|
|
90953
90954
|
type: (StringConstructor | NumberConstructor)[];
|
|
90954
|
-
default:
|
|
90955
|
+
default: undefined;
|
|
90955
90956
|
};
|
|
90956
90957
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
90957
90958
|
hideWeekdays: BooleanConstructor;
|
|
@@ -91174,7 +91175,7 @@ declare const VDateInput: {
|
|
|
91174
91175
|
};
|
|
91175
91176
|
firstDayOfWeek: {
|
|
91176
91177
|
type: (StringConstructor | NumberConstructor)[];
|
|
91177
|
-
default:
|
|
91178
|
+
default: undefined;
|
|
91178
91179
|
};
|
|
91179
91180
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
91180
91181
|
hideWeekdays: BooleanConstructor;
|
|
@@ -96545,7 +96546,11 @@ declare const index_d$1_md1: typeof md1;
|
|
|
96545
96546
|
declare const index_d$1_md2: typeof md2;
|
|
96546
96547
|
declare const index_d$1_md3: typeof md3;
|
|
96547
96548
|
declare namespace index_d$1 {
|
|
96548
|
-
export {
|
|
96549
|
+
export {
|
|
96550
|
+
index_d$1_md1 as md1,
|
|
96551
|
+
index_d$1_md2 as md2,
|
|
96552
|
+
index_d$1_md3 as md3,
|
|
96553
|
+
};
|
|
96549
96554
|
}
|
|
96550
96555
|
|
|
96551
96556
|
interface ClickOutsideBindingArgs {
|
|
@@ -96666,7 +96671,16 @@ declare const index_d_Scroll: typeof Scroll;
|
|
|
96666
96671
|
declare const index_d_Tooltip: typeof Tooltip;
|
|
96667
96672
|
declare const index_d_Touch: typeof Touch;
|
|
96668
96673
|
declare namespace index_d {
|
|
96669
|
-
export {
|
|
96674
|
+
export {
|
|
96675
|
+
index_d_ClickOutside as ClickOutside,
|
|
96676
|
+
index_d_Intersect as Intersect,
|
|
96677
|
+
index_d_Mutate as Mutate,
|
|
96678
|
+
index_d_Resize as Resize,
|
|
96679
|
+
index_d_Ripple as Ripple,
|
|
96680
|
+
index_d_Scroll as Scroll,
|
|
96681
|
+
index_d_Tooltip as Tooltip,
|
|
96682
|
+
index_d_Touch as Touch,
|
|
96683
|
+
};
|
|
96670
96684
|
}
|
|
96671
96685
|
|
|
96672
96686
|
declare const version: string;
|
|
@@ -96728,6 +96742,7 @@ declare const createVuetify: (options?: VuetifyOptions) => {
|
|
|
96728
96742
|
getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
|
|
96729
96743
|
getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
|
|
96730
96744
|
getWeekdays: (firstDayOfWeek?: number | string) => string[];
|
|
96745
|
+
getWeek: (date: unknown, firstDayOfWeek?: number | string, firstWeekMinSize?: number) => number;
|
|
96731
96746
|
getMonth: (date: unknown) => number;
|
|
96732
96747
|
setMonth: (date: unknown, month: number) => unknown;
|
|
96733
96748
|
getDate: (date: unknown) => number;
|
|
@@ -96780,42 +96795,38 @@ declare module 'vue' {
|
|
|
96780
96795
|
$children?: VNodeChild
|
|
96781
96796
|
}
|
|
96782
96797
|
export interface GlobalComponents {
|
|
96783
|
-
VApp: VApp
|
|
96784
96798
|
VAlert: VAlert
|
|
96785
96799
|
VAlertTitle: VAlertTitle
|
|
96786
|
-
VAppBar: VAppBar
|
|
96787
|
-
VAppBarNavIcon: VAppBarNavIcon
|
|
96788
|
-
VAppBarTitle: VAppBarTitle
|
|
96789
96800
|
VAutocomplete: VAutocomplete
|
|
96790
|
-
|
|
96791
|
-
VBannerActions: VBannerActions
|
|
96792
|
-
VBannerText: VBannerText
|
|
96793
|
-
VBottomSheet: VBottomSheet
|
|
96801
|
+
VApp: VApp
|
|
96794
96802
|
VBadge: VBadge
|
|
96795
|
-
VBtnToggle: VBtnToggle
|
|
96796
96803
|
VAvatar: VAvatar
|
|
96797
|
-
VBtnGroup: VBtnGroup
|
|
96798
96804
|
VBottomNavigation: VBottomNavigation
|
|
96799
|
-
|
|
96805
|
+
VAppBar: VAppBar
|
|
96806
|
+
VAppBarNavIcon: VAppBarNavIcon
|
|
96807
|
+
VAppBarTitle: VAppBarTitle
|
|
96808
|
+
VBottomSheet: VBottomSheet
|
|
96800
96809
|
VBreadcrumbs: VBreadcrumbs
|
|
96801
96810
|
VBreadcrumbsItem: VBreadcrumbsItem
|
|
96802
96811
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
96803
|
-
|
|
96804
|
-
VCarouselItem: VCarouselItem
|
|
96812
|
+
VBtnGroup: VBtnGroup
|
|
96805
96813
|
VCard: VCard
|
|
96806
96814
|
VCardActions: VCardActions
|
|
96807
96815
|
VCardItem: VCardItem
|
|
96808
96816
|
VCardSubtitle: VCardSubtitle
|
|
96809
96817
|
VCardText: VCardText
|
|
96810
96818
|
VCardTitle: VCardTitle
|
|
96811
|
-
|
|
96812
|
-
|
|
96813
|
-
VCode: VCode
|
|
96819
|
+
VBtn: VBtn
|
|
96820
|
+
VBtnToggle: VBtnToggle
|
|
96814
96821
|
VCheckbox: VCheckbox
|
|
96815
96822
|
VCheckboxBtn: VCheckboxBtn
|
|
96823
|
+
VCarousel: VCarousel
|
|
96824
|
+
VCarouselItem: VCarouselItem
|
|
96825
|
+
VChip: VChip
|
|
96826
|
+
VCode: VCode
|
|
96816
96827
|
VChipGroup: VChipGroup
|
|
96817
|
-
|
|
96818
|
-
|
|
96828
|
+
VCombobox: VCombobox
|
|
96829
|
+
VColorPicker: VColorPicker
|
|
96819
96830
|
VDataTable: VDataTable
|
|
96820
96831
|
VDataTableHeaders: VDataTableHeaders
|
|
96821
96832
|
VDataTableFooter: VDataTableFooter
|
|
@@ -96823,36 +96834,37 @@ declare module 'vue' {
|
|
|
96823
96834
|
VDataTableRow: VDataTableRow
|
|
96824
96835
|
VDataTableVirtual: VDataTableVirtual
|
|
96825
96836
|
VDataTableServer: VDataTableServer
|
|
96826
|
-
VCombobox: VCombobox
|
|
96827
|
-
VDivider: VDivider
|
|
96828
96837
|
VDatePicker: VDatePicker
|
|
96829
96838
|
VDatePickerControls: VDatePickerControls
|
|
96830
96839
|
VDatePickerHeader: VDatePickerHeader
|
|
96831
96840
|
VDatePickerMonth: VDatePickerMonth
|
|
96832
96841
|
VDatePickerMonths: VDatePickerMonths
|
|
96833
96842
|
VDatePickerYears: VDatePickerYears
|
|
96834
|
-
|
|
96835
|
-
VFieldLabel: VFieldLabel
|
|
96836
|
-
VEmptyState: VEmptyState
|
|
96837
|
-
VFab: VFab
|
|
96838
|
-
VFooter: VFooter
|
|
96839
|
-
VFileInput: VFileInput
|
|
96843
|
+
VDialog: VDialog
|
|
96840
96844
|
VExpansionPanels: VExpansionPanels
|
|
96841
96845
|
VExpansionPanel: VExpansionPanel
|
|
96842
96846
|
VExpansionPanelText: VExpansionPanelText
|
|
96843
96847
|
VExpansionPanelTitle: VExpansionPanelTitle
|
|
96848
|
+
VCounter: VCounter
|
|
96849
|
+
VEmptyState: VEmptyState
|
|
96850
|
+
VDivider: VDivider
|
|
96851
|
+
VField: VField
|
|
96852
|
+
VFieldLabel: VFieldLabel
|
|
96853
|
+
VFab: VFab
|
|
96854
|
+
VFileInput: VFileInput
|
|
96855
|
+
VFooter: VFooter
|
|
96856
|
+
VImg: VImg
|
|
96857
|
+
VInput: VInput
|
|
96858
|
+
VKbd: VKbd
|
|
96859
|
+
VInfiniteScroll: VInfiniteScroll
|
|
96844
96860
|
VIcon: VIcon
|
|
96845
96861
|
VComponentIcon: VComponentIcon
|
|
96846
96862
|
VSvgIcon: VSvgIcon
|
|
96847
96863
|
VLigatureIcon: VLigatureIcon
|
|
96848
96864
|
VClassIcon: VClassIcon
|
|
96849
|
-
|
|
96850
|
-
VInfiniteScroll: VInfiniteScroll
|
|
96851
|
-
VImg: VImg
|
|
96865
|
+
VLabel: VLabel
|
|
96852
96866
|
VItemGroup: VItemGroup
|
|
96853
96867
|
VItem: VItem
|
|
96854
|
-
VKbd: VKbd
|
|
96855
|
-
VLabel: VLabel
|
|
96856
96868
|
VList: VList
|
|
96857
96869
|
VListGroup: VListGroup
|
|
96858
96870
|
VListImg: VListImg
|
|
@@ -96863,69 +96875,72 @@ declare module 'vue' {
|
|
|
96863
96875
|
VListItemTitle: VListItemTitle
|
|
96864
96876
|
VListSubheader: VListSubheader
|
|
96865
96877
|
VMenu: VMenu
|
|
96866
|
-
VNavigationDrawer: VNavigationDrawer
|
|
96867
|
-
VMessages: VMessages
|
|
96868
96878
|
VMain: VMain
|
|
96879
|
+
VMessages: VMessages
|
|
96880
|
+
VNavigationDrawer: VNavigationDrawer
|
|
96881
|
+
VOtpInput: VOtpInput
|
|
96882
|
+
VOverlay: VOverlay
|
|
96883
|
+
VBanner: VBanner
|
|
96884
|
+
VBannerActions: VBannerActions
|
|
96885
|
+
VBannerText: VBannerText
|
|
96869
96886
|
VNumberInput: VNumberInput
|
|
96870
|
-
VProgressCircular: VProgressCircular
|
|
96871
96887
|
VPagination: VPagination
|
|
96872
|
-
VOverlay: VOverlay
|
|
96873
|
-
VOtpInput: VOtpInput
|
|
96874
96888
|
VProgressLinear: VProgressLinear
|
|
96875
|
-
VRadioGroup: VRadioGroup
|
|
96876
96889
|
VRating: VRating
|
|
96890
|
+
VRadioGroup: VRadioGroup
|
|
96891
|
+
VSelect: VSelect
|
|
96877
96892
|
VSelectionControl: VSelectionControl
|
|
96878
96893
|
VSelectionControlGroup: VSelectionControlGroup
|
|
96879
|
-
VSelect: VSelect
|
|
96880
|
-
VSheet: VSheet
|
|
96881
|
-
VSlider: VSlider
|
|
96882
96894
|
VSkeletonLoader: VSkeletonLoader
|
|
96883
|
-
VSnackbar: VSnackbar
|
|
96884
96895
|
VSlideGroup: VSlideGroup
|
|
96885
96896
|
VSlideGroupItem: VSlideGroupItem
|
|
96897
|
+
VSnackbar: VSnackbar
|
|
96898
|
+
VSlider: VSlider
|
|
96886
96899
|
VSystemBar: VSystemBar
|
|
96900
|
+
VSwitch: VSwitch
|
|
96887
96901
|
VStepper: VStepper
|
|
96888
96902
|
VStepperActions: VStepperActions
|
|
96889
96903
|
VStepperHeader: VStepperHeader
|
|
96890
96904
|
VStepperItem: VStepperItem
|
|
96891
96905
|
VStepperWindow: VStepperWindow
|
|
96892
96906
|
VStepperWindowItem: VStepperWindowItem
|
|
96893
|
-
VSwitch: VSwitch
|
|
96894
|
-
VTextarea: VTextarea
|
|
96895
|
-
VTextField: VTextField
|
|
96896
96907
|
VTable: VTable
|
|
96897
|
-
VTooltip: VTooltip
|
|
96898
|
-
VToolbar: VToolbar
|
|
96899
|
-
VToolbarTitle: VToolbarTitle
|
|
96900
|
-
VToolbarItems: VToolbarItems
|
|
96901
96908
|
VTab: VTab
|
|
96902
96909
|
VTabs: VTabs
|
|
96903
96910
|
VTabsWindow: VTabsWindow
|
|
96904
96911
|
VTabsWindowItem: VTabsWindowItem
|
|
96912
|
+
VTextField: VTextField
|
|
96913
|
+
VTextarea: VTextarea
|
|
96914
|
+
VToolbar: VToolbar
|
|
96915
|
+
VToolbarTitle: VToolbarTitle
|
|
96916
|
+
VToolbarItems: VToolbarItems
|
|
96905
96917
|
VTimeline: VTimeline
|
|
96906
96918
|
VTimelineItem: VTimelineItem
|
|
96907
96919
|
VWindow: VWindow
|
|
96908
96920
|
VWindowItem: VWindowItem
|
|
96921
|
+
VProgressCircular: VProgressCircular
|
|
96922
|
+
VTooltip: VTooltip
|
|
96909
96923
|
VConfirmEdit: VConfirmEdit
|
|
96910
96924
|
VDataIterator: VDataIterator
|
|
96911
96925
|
VDefaultsProvider: VDefaultsProvider
|
|
96912
96926
|
VForm: VForm
|
|
96927
|
+
VHover: VHover
|
|
96913
96928
|
VContainer: VContainer
|
|
96914
96929
|
VCol: VCol
|
|
96915
96930
|
VRow: VRow
|
|
96916
96931
|
VSpacer: VSpacer
|
|
96917
|
-
|
|
96932
|
+
VLazy: VLazy
|
|
96918
96933
|
VLayout: VLayout
|
|
96919
96934
|
VLayoutItem: VLayoutItem
|
|
96920
|
-
VLazy: VLazy
|
|
96921
96935
|
VLocaleProvider: VLocaleProvider
|
|
96922
96936
|
VNoSsr: VNoSsr
|
|
96923
|
-
VRadio: VRadio
|
|
96924
96937
|
VParallax: VParallax
|
|
96938
|
+
VRadio: VRadio
|
|
96925
96939
|
VRangeSlider: VRangeSlider
|
|
96940
|
+
VSheet: VSheet
|
|
96926
96941
|
VResponsive: VResponsive
|
|
96927
|
-
VSnackbarQueue: VSnackbarQueue
|
|
96928
96942
|
VSparkline: VSparkline
|
|
96943
|
+
VSnackbarQueue: VSnackbarQueue
|
|
96929
96944
|
VSpeedDial: VSpeedDial
|
|
96930
96945
|
VThemeProvider: VThemeProvider
|
|
96931
96946
|
VValidation: VValidation
|
|
@@ -96946,10 +96961,6 @@ declare module 'vue' {
|
|
|
96946
96961
|
VExpandTransition: VExpandTransition
|
|
96947
96962
|
VExpandXTransition: VExpandXTransition
|
|
96948
96963
|
VDialogTransition: VDialogTransition
|
|
96949
|
-
VIconBtn: VIconBtn
|
|
96950
|
-
VStepperVertical: VStepperVertical
|
|
96951
|
-
VStepperVerticalItem: VStepperVerticalItem
|
|
96952
|
-
VStepperVerticalActions: VStepperVerticalActions
|
|
96953
96964
|
VFileUpload: VFileUpload
|
|
96954
96965
|
VFileUploadItem: VFileUploadItem
|
|
96955
96966
|
VCalendar: VCalendar
|
|
@@ -96958,15 +96969,19 @@ declare module 'vue' {
|
|
|
96958
96969
|
VCalendarInterval: VCalendarInterval
|
|
96959
96970
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
|
96960
96971
|
VCalendarMonthDay: VCalendarMonthDay
|
|
96972
|
+
VPicker: VPicker
|
|
96973
|
+
VPickerTitle: VPickerTitle
|
|
96961
96974
|
VTimePicker: VTimePicker
|
|
96962
96975
|
VTimePickerClock: VTimePickerClock
|
|
96963
96976
|
VTimePickerControls: VTimePickerControls
|
|
96977
|
+
VIconBtn: VIconBtn
|
|
96978
|
+
VStepperVertical: VStepperVertical
|
|
96979
|
+
VStepperVerticalItem: VStepperVerticalItem
|
|
96980
|
+
VStepperVerticalActions: VStepperVerticalActions
|
|
96964
96981
|
VTreeview: VTreeview
|
|
96965
96982
|
VTreeviewItem: VTreeviewItem
|
|
96966
96983
|
VTreeviewGroup: VTreeviewGroup
|
|
96967
|
-
VPicker: VPicker
|
|
96968
|
-
VPickerTitle: VPickerTitle
|
|
96969
|
-
VPullToRefresh: VPullToRefresh
|
|
96970
96984
|
VDateInput: VDateInput
|
|
96985
|
+
VPullToRefresh: VPullToRefresh
|
|
96971
96986
|
}
|
|
96972
96987
|
}
|