@vuetify/nightly 3.9.3-master.2025-08-04 → 3.9.3-master.2025-08-05
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 +3 -6
- package/dist/json/attributes.json +3560 -3576
- package/dist/json/importMap-labs.json +32 -32
- package/dist/json/importMap.json +148 -148
- package/dist/json/tags.json +0 -4
- package/dist/json/web-types.json +6481 -6609
- package/dist/vuetify-labs.cjs +19 -63
- package/dist/vuetify-labs.css +3946 -3946
- package/dist/vuetify-labs.d.ts +69 -148
- package/dist/vuetify-labs.esm.js +19 -63
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +19 -63
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +19 -63
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5211 -5211
- package/dist/vuetify.d.ts +69 -120
- package/dist/vuetify.esm.js +19 -63
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +19 -63
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +279 -285
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataIterator/VDataIterator.d.ts +2 -2
- package/lib/components/VDataIterator/VDataIterator.js +1 -1
- package/lib/components/VDataIterator/VDataIterator.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.d.ts +4 -6
- package/lib/components/VDataTable/VDataTable.js +1 -1
- package/lib/components/VDataTable/VDataTable.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRows.d.ts +11 -14
- package/lib/components/VDataTable/VDataTableRows.js +0 -9
- package/lib/components/VDataTable/VDataTableRows.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +2 -4
- package/lib/components/VDataTable/VDataTableServer.js +1 -1
- package/lib/components/VDataTable/VDataTableServer.js.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +2 -4
- package/lib/components/VDataTable/VDataTableVirtual.js +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.js.map +1 -1
- package/lib/components/VDataTable/composables/group.d.ts +5 -13
- package/lib/components/VDataTable/composables/group.js +5 -11
- package/lib/components/VDataTable/composables/group.js.map +1 -1
- package/lib/components/VDataTable/composables/paginate.d.ts +3 -3
- package/lib/components/VDataTable/composables/paginate.js.map +1 -1
- package/lib/components/VDataTable/types.d.ts +1 -7
- package/lib/components/VDataTable/types.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.d.ts +0 -25
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +0 -25
- package/lib/components/VTreeview/VTreeviewChildren.d.ts +2 -20
- package/lib/components/VTreeview/VTreeviewChildren.js +2 -7
- package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
- package/lib/composables/calendar.d.ts +0 -12
- package/lib/composables/calendar.js +1 -5
- 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 +5 -25
- 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 +54 -54
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +0 -25
- package/lib/labs/VDateInput/VDateInput.d.ts +0 -25
- package/lib/labs/entry-bundler.d.ts +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, firstWeekMinSize?: number): number;
|
43
43
|
getMonth(date: T): number;
|
44
44
|
setMonth(date: T, month: number): T;
|
45
45
|
getDate(date: T): number;
|
@@ -919,15 +919,7 @@ interface Group<T = any> {
|
|
919
919
|
id: string;
|
920
920
|
key: string;
|
921
921
|
value: any;
|
922
|
-
items: readonly (T | Group<T>
|
923
|
-
}
|
924
|
-
interface GroupSummary<T = any> {
|
925
|
-
type: 'group-summary';
|
926
|
-
depth: number;
|
927
|
-
id: string;
|
928
|
-
key: string;
|
929
|
-
value: any;
|
930
|
-
items: readonly (T | Group<T> | GroupSummary<T>)[];
|
922
|
+
items: readonly (T | Group<T>)[];
|
931
923
|
}
|
932
924
|
declare function provideGroupBy(options: {
|
933
925
|
groupBy: Ref<readonly SortItem[]>;
|
@@ -938,7 +930,7 @@ declare function provideGroupBy(options: {
|
|
938
930
|
toggleGroup: (group: Group) => void;
|
939
931
|
opened: Ref<Set<string> & Omit<Set<string>, keyof Set<any>>, Set<string> | (Set<string> & Omit<Set<string>, keyof Set<any>>)>;
|
940
932
|
groupBy: Ref<readonly SortItem[], readonly SortItem[]>;
|
941
|
-
extractRows: <T extends GroupableItem>(items: readonly (T | Group<T>
|
933
|
+
extractRows: <T extends GroupableItem>(items: readonly (T | Group<T>)[]) => T[];
|
942
934
|
isGroupOpen: (group: Group) => boolean;
|
943
935
|
};
|
944
936
|
|
@@ -1043,12 +1035,6 @@ type GroupHeaderSlot = {
|
|
1043
1035
|
toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
|
1044
1036
|
isGroupOpen: ReturnType<typeof provideGroupBy>['isGroupOpen'];
|
1045
1037
|
};
|
1046
|
-
type GroupSummarySlot = {
|
1047
|
-
index: number;
|
1048
|
-
item: GroupSummary;
|
1049
|
-
columns: InternalDataTableHeader[];
|
1050
|
-
toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
|
1051
|
-
};
|
1052
1038
|
type ItemSlotBase<T> = {
|
1053
1039
|
index: number;
|
1054
1040
|
item: T;
|
@@ -37976,7 +37962,7 @@ type VDataIteratorSlotProps<T> = {
|
|
37976
37962
|
isGroupOpen: ReturnType<typeof provideGroupBy>['isGroupOpen'];
|
37977
37963
|
toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
|
37978
37964
|
items: readonly DataIteratorItem<T>[];
|
37979
|
-
groupedItems: readonly (DataIteratorItem<T> | Group<DataIteratorItem<T>>
|
37965
|
+
groupedItems: readonly (DataIteratorItem<T> | Group<DataIteratorItem<T>>)[];
|
37980
37966
|
};
|
37981
37967
|
type VDataIteratorSlots<T> = {
|
37982
37968
|
default: VDataIteratorSlotProps<T>;
|
@@ -38969,7 +38955,6 @@ type VDataTableRowsSlots<T> = VDataTableGroupHeaderRowSlots & VDataTableRowSlots
|
|
38969
38955
|
};
|
38970
38956
|
loading: never;
|
38971
38957
|
'group-header': GroupHeaderSlot;
|
38972
|
-
'group-summary': GroupSummarySlot;
|
38973
38958
|
'no-data': never;
|
38974
38959
|
'expanded-row': ItemSlot$1<T>;
|
38975
38960
|
};
|
@@ -38984,7 +38969,7 @@ declare const VDataTableRows: {
|
|
38984
38969
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
38985
38970
|
cellProps?: CellProps<any> | undefined;
|
38986
38971
|
rowProps?: RowProps<any> | undefined;
|
38987
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slots" | "items" | "v-slot:item" | "v-slot:no-data" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-
|
38972
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slots" | "items" | "v-slot:item" | "v-slot:no-data" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
38988
38973
|
mobile: boolean | null;
|
38989
38974
|
noDataText: string;
|
38990
38975
|
loadingText: string;
|
@@ -39019,7 +39004,6 @@ declare const VDataTableRows: {
|
|
39019
39004
|
}) => vue.VNode[];
|
39020
39005
|
loading: () => vue.VNode[];
|
39021
39006
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
39022
|
-
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
39023
39007
|
'no-data': () => vue.VNode[];
|
39024
39008
|
'expanded-row': (arg: ItemSlot$1<unknown>) => vue.VNode[];
|
39025
39009
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
@@ -39058,7 +39042,7 @@ declare const VDataTableRows: {
|
|
39058
39042
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
39059
39043
|
cellProps?: CellProps<any> | undefined;
|
39060
39044
|
rowProps?: RowProps<any> | undefined;
|
39061
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slots" | "items" | "v-slot:item" | "v-slot:no-data" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-
|
39045
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slots" | "items" | "v-slot:item" | "v-slot:no-data" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row">, string, {
|
39062
39046
|
mobile: boolean | null;
|
39063
39047
|
noDataText: string;
|
39064
39048
|
loadingText: string;
|
@@ -39093,11 +39077,10 @@ declare const VDataTableRows: {
|
|
39093
39077
|
}) => vue.VNode[];
|
39094
39078
|
loading: () => vue.VNode[];
|
39095
39079
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
39096
|
-
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
39097
39080
|
'no-data': () => vue.VNode[];
|
39098
39081
|
'expanded-row': (arg: ItemSlot$1<unknown>) => vue.VNode[];
|
39099
39082
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
39100
|
-
items?: readonly (DataTableItem<T> | Group<T>
|
39083
|
+
items?: readonly (DataTableItem<T> | Group<T>)[];
|
39101
39084
|
}, slots: VDataTableRowsSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
|
39102
39085
|
mobile: {
|
39103
39086
|
type: PropType<boolean | null>;
|
@@ -39111,7 +39094,7 @@ declare const VDataTableRows: {
|
|
39111
39094
|
};
|
39112
39095
|
hideNoData: BooleanConstructor;
|
39113
39096
|
items: {
|
39114
|
-
type: PropType<readonly (DataTableItem | Group
|
39097
|
+
type: PropType<readonly (DataTableItem | Group)[]>;
|
39115
39098
|
default: () => never[];
|
39116
39099
|
};
|
39117
39100
|
noDataText: {
|
@@ -39133,7 +39116,7 @@ declare const VDataTableRows: {
|
|
39133
39116
|
};
|
39134
39117
|
hideNoData: BooleanConstructor;
|
39135
39118
|
items: {
|
39136
|
-
type: PropType<readonly (DataTableItem | Group
|
39119
|
+
type: PropType<readonly (DataTableItem | Group)[]>;
|
39137
39120
|
default: () => never[];
|
39138
39121
|
};
|
39139
39122
|
noDataText: {
|
@@ -39164,7 +39147,7 @@ type VDataTableSlotProps<T> = {
|
|
39164
39147
|
toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
|
39165
39148
|
items: readonly T[];
|
39166
39149
|
internalItems: readonly DataTableItem[];
|
39167
|
-
groupedItems: readonly (DataTableItem<T> | Group<DataTableItem<T>>
|
39150
|
+
groupedItems: readonly (DataTableItem<T> | Group<DataTableItem<T>>)[];
|
39168
39151
|
columns: InternalDataTableHeader[];
|
39169
39152
|
headers: InternalDataTableHeader[][];
|
39170
39153
|
};
|
@@ -39263,7 +39246,7 @@ declare const VDataTable: {
|
|
39263
39246
|
'update:groupBy': (value: any) => true;
|
39264
39247
|
'update:expanded': (value: any) => true;
|
39265
39248
|
'update:currentItems': (value: any) => true;
|
39266
|
-
}, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-
|
39249
|
+
}, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
39267
39250
|
page: string | number;
|
39268
39251
|
expanded: readonly string[];
|
39269
39252
|
style: vue.StyleValue;
|
@@ -39342,7 +39325,6 @@ declare const VDataTable: {
|
|
39342
39325
|
}) => vue.VNode[];
|
39343
39326
|
loading: () => vue.VNode[];
|
39344
39327
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
39345
|
-
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
39346
39328
|
'no-data': () => vue.VNode[];
|
39347
39329
|
'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
|
39348
39330
|
headers: (arg: HeadersSlotProps) => vue.VNode[];
|
@@ -39569,7 +39551,7 @@ declare const VDataTable: {
|
|
39569
39551
|
'update:groupBy': (value: any) => true;
|
39570
39552
|
'update:expanded': (value: any) => true;
|
39571
39553
|
'update:currentItems': (value: any) => true;
|
39572
|
-
}, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-
|
39554
|
+
}, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, string, {
|
39573
39555
|
page: string | number;
|
39574
39556
|
expanded: readonly string[];
|
39575
39557
|
style: vue.StyleValue;
|
@@ -39648,7 +39630,6 @@ declare const VDataTable: {
|
|
39648
39630
|
}) => vue.VNode[];
|
39649
39631
|
loading: () => vue.VNode[];
|
39650
39632
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
39651
|
-
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
39652
39633
|
'no-data': () => vue.VNode[];
|
39653
39634
|
'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
|
39654
39635
|
headers: (arg: HeadersSlotProps) => vue.VNode[];
|
@@ -40350,7 +40331,7 @@ declare const VDataTableVirtual: {
|
|
40350
40331
|
'update:options': (value: any) => true;
|
40351
40332
|
'update:groupBy': (value: any) => true;
|
40352
40333
|
'update:expanded': (value: any) => true;
|
40353
|
-
}, "headers" | "$children" | "v-slots" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-
|
40334
|
+
}, "headers" | "$children" | "v-slots" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
40354
40335
|
expanded: readonly string[];
|
40355
40336
|
style: vue.StyleValue;
|
40356
40337
|
mobile: boolean | null;
|
@@ -40415,7 +40396,6 @@ declare const VDataTableVirtual: {
|
|
40415
40396
|
}) => vue.VNode[];
|
40416
40397
|
loading: () => vue.VNode[];
|
40417
40398
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
40418
|
-
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
40419
40399
|
'no-data': () => vue.VNode[];
|
40420
40400
|
'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
|
40421
40401
|
headers: (arg: HeadersSlotProps) => vue.VNode[];
|
@@ -40588,7 +40568,7 @@ declare const VDataTableVirtual: {
|
|
40588
40568
|
'update:options': (value: any) => true;
|
40589
40569
|
'update:groupBy': (value: any) => true;
|
40590
40570
|
'update:expanded': (value: any) => true;
|
40591
|
-
}, "headers" | "$children" | "v-slots" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-
|
40571
|
+
}, "headers" | "$children" | "v-slots" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append">, string, {
|
40592
40572
|
expanded: readonly string[];
|
40593
40573
|
style: vue.StyleValue;
|
40594
40574
|
mobile: boolean | null;
|
@@ -40653,7 +40633,6 @@ declare const VDataTableVirtual: {
|
|
40653
40633
|
}) => vue.VNode[];
|
40654
40634
|
loading: () => vue.VNode[];
|
40655
40635
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
40656
|
-
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
40657
40636
|
'no-data': () => vue.VNode[];
|
40658
40637
|
'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
|
40659
40638
|
headers: (arg: HeadersSlotProps) => vue.VNode[];
|
@@ -40994,7 +40973,7 @@ declare const VDataTableServer: {
|
|
40994
40973
|
'update:options': (options: any) => true;
|
40995
40974
|
'update:expanded': (options: any) => true;
|
40996
40975
|
'update:groupBy': (value: any) => true;
|
40997
|
-
}, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-
|
40976
|
+
}, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
40998
40977
|
page: string | number;
|
40999
40978
|
expanded: readonly string[];
|
41000
40979
|
style: vue.StyleValue;
|
@@ -41071,7 +41050,6 @@ declare const VDataTableServer: {
|
|
41071
41050
|
}) => vue.VNode[];
|
41072
41051
|
loading: () => vue.VNode[];
|
41073
41052
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
41074
|
-
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
41075
41053
|
'no-data': () => vue.VNode[];
|
41076
41054
|
'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
|
41077
41055
|
headers: (arg: HeadersSlotProps) => vue.VNode[];
|
@@ -41285,7 +41263,7 @@ declare const VDataTableServer: {
|
|
41285
41263
|
'update:options': (options: any) => true;
|
41286
41264
|
'update:expanded': (options: any) => true;
|
41287
41265
|
'update:groupBy': (value: any) => true;
|
41288
|
-
}, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-
|
41266
|
+
}, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, string, {
|
41289
41267
|
page: string | number;
|
41290
41268
|
expanded: readonly string[];
|
41291
41269
|
style: vue.StyleValue;
|
@@ -41362,7 +41340,6 @@ declare const VDataTableServer: {
|
|
41362
41340
|
}) => vue.VNode[];
|
41363
41341
|
loading: () => vue.VNode[];
|
41364
41342
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
41365
|
-
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
41366
41343
|
'no-data': () => vue.VNode[];
|
41367
41344
|
'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
|
41368
41345
|
headers: (arg: HeadersSlotProps) => vue.VNode[];
|
@@ -41898,7 +41875,6 @@ declare const VDatePickerMonth: {
|
|
41898
41875
|
year?: string | number | undefined;
|
41899
41876
|
modelValue?: unknown[] | undefined;
|
41900
41877
|
firstDayOfWeek?: string | number | undefined;
|
41901
|
-
firstDayOfYear?: string | number | undefined;
|
41902
41878
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
41903
41879
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
41904
41880
|
} & {
|
@@ -41946,7 +41922,6 @@ declare const VDatePickerMonth: {
|
|
41946
41922
|
weekdays: CalendarWeekdays[];
|
41947
41923
|
weeksInMonth: "static" | "dynamic";
|
41948
41924
|
firstDayOfWeek: string | number;
|
41949
|
-
firstDayOfYear: string | number;
|
41950
41925
|
hideWeekdays: boolean;
|
41951
41926
|
showWeek: boolean;
|
41952
41927
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -41982,7 +41957,6 @@ declare const VDatePickerMonth: {
|
|
41982
41957
|
year?: string | number | undefined;
|
41983
41958
|
modelValue?: unknown[] | undefined;
|
41984
41959
|
firstDayOfWeek?: string | number | undefined;
|
41985
|
-
firstDayOfYear?: string | number | undefined;
|
41986
41960
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
41987
41961
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
41988
41962
|
} & {
|
@@ -42026,7 +42000,6 @@ declare const VDatePickerMonth: {
|
|
42026
42000
|
weekdays: CalendarWeekdays[];
|
42027
42001
|
weeksInMonth: "static" | "dynamic";
|
42028
42002
|
firstDayOfWeek: string | number;
|
42029
|
-
firstDayOfYear: string | number;
|
42030
42003
|
hideWeekdays: boolean;
|
42031
42004
|
showWeek: boolean;
|
42032
42005
|
}>;
|
@@ -42051,7 +42024,6 @@ declare const VDatePickerMonth: {
|
|
42051
42024
|
year?: string | number | undefined;
|
42052
42025
|
modelValue?: unknown[] | undefined;
|
42053
42026
|
firstDayOfWeek?: string | number | undefined;
|
42054
|
-
firstDayOfYear?: string | number | undefined;
|
42055
42027
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
42056
42028
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
42057
42029
|
} & {
|
@@ -42099,7 +42071,6 @@ declare const VDatePickerMonth: {
|
|
42099
42071
|
weekdays: CalendarWeekdays[];
|
42100
42072
|
weeksInMonth: "static" | "dynamic";
|
42101
42073
|
firstDayOfWeek: string | number;
|
42102
|
-
firstDayOfYear: string | number;
|
42103
42074
|
hideWeekdays: boolean;
|
42104
42075
|
showWeek: boolean;
|
42105
42076
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -42133,10 +42104,6 @@ declare const VDatePickerMonth: {
|
|
42133
42104
|
type: (StringConstructor | NumberConstructor)[];
|
42134
42105
|
default: undefined;
|
42135
42106
|
};
|
42136
|
-
firstDayOfYear: {
|
42137
|
-
type: (StringConstructor | NumberConstructor)[];
|
42138
|
-
default: undefined;
|
42139
|
-
};
|
42140
42107
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
42141
42108
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
42142
42109
|
color: StringConstructor;
|
@@ -42174,10 +42141,6 @@ declare const VDatePickerMonth: {
|
|
42174
42141
|
type: (StringConstructor | NumberConstructor)[];
|
42175
42142
|
default: undefined;
|
42176
42143
|
};
|
42177
|
-
firstDayOfYear: {
|
42178
|
-
type: (StringConstructor | NumberConstructor)[];
|
42179
|
-
default: undefined;
|
42180
|
-
};
|
42181
42144
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
42182
42145
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
42183
42146
|
color: StringConstructor;
|
@@ -42992,7 +42955,6 @@ declare const VDatePicker: {
|
|
42992
42955
|
controlHeight?: string | number | undefined;
|
42993
42956
|
headerColor?: string | undefined;
|
42994
42957
|
firstDayOfWeek?: string | number | undefined;
|
42995
|
-
firstDayOfYear?: string | number | undefined;
|
42996
42958
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
42997
42959
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
42998
42960
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -43028,7 +42990,6 @@ declare const VDatePicker: {
|
|
43028
42990
|
weekdays: CalendarWeekdays[];
|
43029
42991
|
weeksInMonth: "static" | "dynamic";
|
43030
42992
|
firstDayOfWeek: string | number;
|
43031
|
-
firstDayOfYear: string | number;
|
43032
42993
|
hideWeekdays: boolean;
|
43033
42994
|
showWeek: boolean;
|
43034
42995
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -43125,7 +43086,6 @@ declare const VDatePicker: {
|
|
43125
43086
|
controlHeight?: string | number | undefined;
|
43126
43087
|
headerColor?: string | undefined;
|
43127
43088
|
firstDayOfWeek?: string | number | undefined;
|
43128
|
-
firstDayOfYear?: string | number | undefined;
|
43129
43089
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
43130
43090
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
43131
43091
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -43156,7 +43116,6 @@ declare const VDatePicker: {
|
|
43156
43116
|
weekdays: CalendarWeekdays[];
|
43157
43117
|
weeksInMonth: "static" | "dynamic";
|
43158
43118
|
firstDayOfWeek: string | number;
|
43159
|
-
firstDayOfYear: string | number;
|
43160
43119
|
hideWeekdays: boolean;
|
43161
43120
|
showWeek: boolean;
|
43162
43121
|
}>;
|
@@ -43209,7 +43168,6 @@ declare const VDatePicker: {
|
|
43209
43168
|
controlHeight?: string | number | undefined;
|
43210
43169
|
headerColor?: string | undefined;
|
43211
43170
|
firstDayOfWeek?: string | number | undefined;
|
43212
|
-
firstDayOfYear?: string | number | undefined;
|
43213
43171
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
43214
43172
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
43215
43173
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -43245,7 +43203,6 @@ declare const VDatePicker: {
|
|
43245
43203
|
weekdays: CalendarWeekdays[];
|
43246
43204
|
weeksInMonth: "static" | "dynamic";
|
43247
43205
|
firstDayOfWeek: string | number;
|
43248
|
-
firstDayOfYear: string | number;
|
43249
43206
|
hideWeekdays: boolean;
|
43250
43207
|
showWeek: boolean;
|
43251
43208
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -43361,10 +43318,6 @@ declare const VDatePicker: {
|
|
43361
43318
|
type: (StringConstructor | NumberConstructor)[];
|
43362
43319
|
default: undefined;
|
43363
43320
|
};
|
43364
|
-
firstDayOfYear: {
|
43365
|
-
type: (StringConstructor | NumberConstructor)[];
|
43366
|
-
default: undefined;
|
43367
|
-
};
|
43368
43321
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
43369
43322
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
43370
43323
|
hideWeekdays: BooleanConstructor;
|
@@ -43473,10 +43426,6 @@ declare const VDatePicker: {
|
|
43473
43426
|
type: (StringConstructor | NumberConstructor)[];
|
43474
43427
|
default: undefined;
|
43475
43428
|
};
|
43476
|
-
firstDayOfYear: {
|
43477
|
-
type: (StringConstructor | NumberConstructor)[];
|
43478
|
-
default: undefined;
|
43479
|
-
};
|
43480
43429
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
43481
43430
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
43482
43431
|
hideWeekdays: BooleanConstructor;
|
@@ -96536,7 +96485,6 @@ declare const VCalendar: {
|
|
96536
96485
|
events?: any[] | undefined;
|
96537
96486
|
modelValue?: unknown[] | undefined;
|
96538
96487
|
firstDayOfWeek?: string | number | undefined;
|
96539
|
-
firstDayOfYear?: string | number | undefined;
|
96540
96488
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
96541
96489
|
displayValue?: unknown;
|
96542
96490
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
@@ -96740,7 +96688,6 @@ declare const VCalendar: {
|
|
96740
96688
|
weekdays: CalendarWeekdays[];
|
96741
96689
|
weeksInMonth: "static" | "dynamic";
|
96742
96690
|
firstDayOfWeek: string | number;
|
96743
|
-
firstDayOfYear: string | number;
|
96744
96691
|
intervalDivisions: number;
|
96745
96692
|
intervalDuration: number;
|
96746
96693
|
intervalHeight: number;
|
@@ -96840,7 +96787,6 @@ declare const VCalendar: {
|
|
96840
96787
|
events?: any[] | undefined;
|
96841
96788
|
modelValue?: unknown[] | undefined;
|
96842
96789
|
firstDayOfWeek?: string | number | undefined;
|
96843
|
-
firstDayOfYear?: string | number | undefined;
|
96844
96790
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
96845
96791
|
displayValue?: unknown;
|
96846
96792
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
@@ -97039,7 +96985,6 @@ declare const VCalendar: {
|
|
97039
96985
|
weekdays: CalendarWeekdays[];
|
97040
96986
|
weeksInMonth: "static" | "dynamic";
|
97041
96987
|
firstDayOfWeek: string | number;
|
97042
|
-
firstDayOfYear: string | number;
|
97043
96988
|
intervalDivisions: number;
|
97044
96989
|
intervalDuration: number;
|
97045
96990
|
intervalHeight: number;
|
@@ -97080,7 +97025,6 @@ declare const VCalendar: {
|
|
97080
97025
|
events?: any[] | undefined;
|
97081
97026
|
modelValue?: unknown[] | undefined;
|
97082
97027
|
firstDayOfWeek?: string | number | undefined;
|
97083
|
-
firstDayOfYear?: string | number | undefined;
|
97084
97028
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
97085
97029
|
displayValue?: unknown;
|
97086
97030
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
@@ -97284,7 +97228,6 @@ declare const VCalendar: {
|
|
97284
97228
|
weekdays: CalendarWeekdays[];
|
97285
97229
|
weeksInMonth: "static" | "dynamic";
|
97286
97230
|
firstDayOfWeek: string | number;
|
97287
|
-
firstDayOfYear: string | number;
|
97288
97231
|
intervalDivisions: number;
|
97289
97232
|
intervalDuration: number;
|
97290
97233
|
intervalHeight: number;
|
@@ -97437,10 +97380,6 @@ declare const VCalendar: {
|
|
97437
97380
|
type: (StringConstructor | NumberConstructor)[];
|
97438
97381
|
default: undefined;
|
97439
97382
|
};
|
97440
|
-
firstDayOfYear: {
|
97441
|
-
type: (StringConstructor | NumberConstructor)[];
|
97442
|
-
default: undefined;
|
97443
|
-
};
|
97444
97383
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
97445
97384
|
hideHeader: BooleanConstructor;
|
97446
97385
|
hideWeekNumber: BooleanConstructor;
|
@@ -97532,10 +97471,6 @@ declare const VCalendar: {
|
|
97532
97471
|
type: (StringConstructor | NumberConstructor)[];
|
97533
97472
|
default: undefined;
|
97534
97473
|
};
|
97535
|
-
firstDayOfYear: {
|
97536
|
-
type: (StringConstructor | NumberConstructor)[];
|
97537
|
-
default: undefined;
|
97538
|
-
};
|
97539
97474
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
97540
97475
|
hideHeader: BooleanConstructor;
|
97541
97476
|
hideWeekNumber: BooleanConstructor;
|
@@ -99373,7 +99308,6 @@ declare const VDateInput: {
|
|
99373
99308
|
counterValue?: number | ((value: any) => number) | undefined;
|
99374
99309
|
modelModifiers?: Record<string, boolean> | undefined;
|
99375
99310
|
firstDayOfWeek?: string | number | undefined;
|
99376
|
-
firstDayOfYear?: string | number | undefined;
|
99377
99311
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
99378
99312
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
99379
99313
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -101413,7 +101347,6 @@ declare const VDateInput: {
|
|
101413
101347
|
weekdays: CalendarWeekdays[];
|
101414
101348
|
weeksInMonth: "static" | "dynamic";
|
101415
101349
|
firstDayOfWeek: string | number;
|
101416
|
-
firstDayOfYear: string | number;
|
101417
101350
|
hideWeekdays: boolean;
|
101418
101351
|
showWeek: boolean;
|
101419
101352
|
displayFormat: string | ((date: unknown) => any);
|
@@ -101549,7 +101482,6 @@ declare const VDateInput: {
|
|
101549
101482
|
counterValue?: number | ((value: any) => number) | undefined;
|
101550
101483
|
modelModifiers?: Record<string, boolean> | undefined;
|
101551
101484
|
firstDayOfWeek?: string | number | undefined;
|
101552
|
-
firstDayOfYear?: string | number | undefined;
|
101553
101485
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
101554
101486
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
101555
101487
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -103583,7 +103515,6 @@ declare const VDateInput: {
|
|
103583
103515
|
weekdays: CalendarWeekdays[];
|
103584
103516
|
weeksInMonth: "static" | "dynamic";
|
103585
103517
|
firstDayOfWeek: string | number;
|
103586
|
-
firstDayOfYear: string | number;
|
103587
103518
|
hideWeekdays: boolean;
|
103588
103519
|
showWeek: boolean;
|
103589
103520
|
displayFormat: string | ((date: unknown) => any);
|
@@ -103698,7 +103629,6 @@ declare const VDateInput: {
|
|
103698
103629
|
counterValue?: number | ((value: any) => number) | undefined;
|
103699
103630
|
modelModifiers?: Record<string, boolean> | undefined;
|
103700
103631
|
firstDayOfWeek?: string | number | undefined;
|
103701
|
-
firstDayOfYear?: string | number | undefined;
|
103702
103632
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
103703
103633
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
103704
103634
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -105738,7 +105668,6 @@ declare const VDateInput: {
|
|
105738
105668
|
weekdays: CalendarWeekdays[];
|
105739
105669
|
weeksInMonth: "static" | "dynamic";
|
105740
105670
|
firstDayOfWeek: string | number;
|
105741
|
-
firstDayOfYear: string | number;
|
105742
105671
|
hideWeekdays: boolean;
|
105743
105672
|
showWeek: boolean;
|
105744
105673
|
displayFormat: string | ((date: unknown) => any);
|
@@ -105865,10 +105794,6 @@ declare const VDateInput: {
|
|
105865
105794
|
type: (StringConstructor | NumberConstructor)[];
|
105866
105795
|
default: undefined;
|
105867
105796
|
};
|
105868
|
-
firstDayOfYear: {
|
105869
|
-
type: (StringConstructor | NumberConstructor)[];
|
105870
|
-
default: undefined;
|
105871
|
-
};
|
105872
105797
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
105873
105798
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
105874
105799
|
hideWeekdays: BooleanConstructor;
|
@@ -106108,10 +106033,6 @@ declare const VDateInput: {
|
|
106108
106033
|
type: (StringConstructor | NumberConstructor)[];
|
106109
106034
|
default: undefined;
|
106110
106035
|
};
|
106111
|
-
firstDayOfYear: {
|
106112
|
-
type: (StringConstructor | NumberConstructor)[];
|
106113
|
-
default: undefined;
|
106114
|
-
};
|
106115
106036
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
106116
106037
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
106117
106038
|
hideWeekdays: BooleanConstructor;
|
@@ -122865,7 +122786,7 @@ declare const createVuetify: (options?: VuetifyOptions) => {
|
|
122865
122786
|
getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
|
122866
122787
|
getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
|
122867
122788
|
getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
|
122868
|
-
getWeek: (date: unknown, firstDayOfWeek?: number | string,
|
122789
|
+
getWeek: (date: unknown, firstDayOfWeek?: number | string, firstWeekMinSize?: number) => number;
|
122869
122790
|
getMonth: (date: unknown) => number;
|
122870
122791
|
setMonth: (date: unknown, month: number) => unknown;
|
122871
122792
|
getDate: (date: unknown) => number;
|
@@ -122919,38 +122840,47 @@ declare module 'vue' {
|
|
122919
122840
|
}
|
122920
122841
|
export interface GlobalComponents {
|
122921
122842
|
VApp: VApp
|
122843
|
+
VAlert: VAlert
|
122844
|
+
VAlertTitle: VAlertTitle
|
122922
122845
|
VAppBar: VAppBar
|
122923
122846
|
VAppBarNavIcon: VAppBarNavIcon
|
122924
122847
|
VAppBarTitle: VAppBarTitle
|
122848
|
+
VBadge: VBadge
|
122925
122849
|
VAutocomplete: VAutocomplete
|
122926
122850
|
VAvatar: VAvatar
|
122927
|
-
VAlert: VAlert
|
122928
|
-
VAlertTitle: VAlertTitle
|
122929
|
-
VBanner: VBanner
|
122930
|
-
VBannerActions: VBannerActions
|
122931
|
-
VBannerText: VBannerText
|
122932
|
-
VBadge: VBadge
|
122933
122851
|
VBreadcrumbs: VBreadcrumbs
|
122934
122852
|
VBreadcrumbsItem: VBreadcrumbsItem
|
122935
122853
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
122936
122854
|
VBtn: VBtn
|
122855
|
+
VBtnGroup: VBtnGroup
|
122856
|
+
VBottomSheet: VBottomSheet
|
122937
122857
|
VBottomNavigation: VBottomNavigation
|
122938
|
-
VBtnToggle: VBtnToggle
|
122939
122858
|
VCard: VCard
|
122940
122859
|
VCardActions: VCardActions
|
122941
122860
|
VCardItem: VCardItem
|
122942
122861
|
VCardSubtitle: VCardSubtitle
|
122943
122862
|
VCardText: VCardText
|
122944
122863
|
VCardTitle: VCardTitle
|
122864
|
+
VBtnToggle: VBtnToggle
|
122865
|
+
VChip: VChip
|
122945
122866
|
VCarousel: VCarousel
|
122946
122867
|
VCarouselItem: VCarouselItem
|
122947
|
-
VCheckbox: VCheckbox
|
122948
|
-
VCheckboxBtn: VCheckboxBtn
|
122949
|
-
VChipGroup: VChipGroup
|
122950
122868
|
VCode: VCode
|
122951
|
-
|
122869
|
+
VBanner: VBanner
|
122870
|
+
VBannerActions: VBannerActions
|
122871
|
+
VBannerText: VBannerText
|
122872
|
+
VChipGroup: VChipGroup
|
122952
122873
|
VColorPicker: VColorPicker
|
122874
|
+
VCombobox: VCombobox
|
122875
|
+
VCheckbox: VCheckbox
|
122876
|
+
VCheckboxBtn: VCheckboxBtn
|
122953
122877
|
VCounter: VCounter
|
122878
|
+
VDatePicker: VDatePicker
|
122879
|
+
VDatePickerControls: VDatePickerControls
|
122880
|
+
VDatePickerHeader: VDatePickerHeader
|
122881
|
+
VDatePickerMonth: VDatePickerMonth
|
122882
|
+
VDatePickerMonths: VDatePickerMonths
|
122883
|
+
VDatePickerYears: VDatePickerYears
|
122954
122884
|
VDataTable: VDataTable
|
122955
122885
|
VDataTableHeaders: VDataTableHeaders
|
122956
122886
|
VDataTableFooter: VDataTableFooter
|
@@ -122958,34 +122888,26 @@ declare module 'vue' {
|
|
122958
122888
|
VDataTableRow: VDataTableRow
|
122959
122889
|
VDataTableVirtual: VDataTableVirtual
|
122960
122890
|
VDataTableServer: VDataTableServer
|
122961
|
-
VDatePicker: VDatePicker
|
122962
|
-
VDatePickerControls: VDatePickerControls
|
122963
|
-
VDatePickerHeader: VDatePickerHeader
|
122964
|
-
VDatePickerMonth: VDatePickerMonth
|
122965
|
-
VDatePickerMonths: VDatePickerMonths
|
122966
|
-
VDatePickerYears: VDatePickerYears
|
122967
122891
|
VDialog: VDialog
|
122968
122892
|
VDivider: VDivider
|
122969
|
-
VEmptyState: VEmptyState
|
122970
122893
|
VExpansionPanels: VExpansionPanels
|
122971
122894
|
VExpansionPanel: VExpansionPanel
|
122972
122895
|
VExpansionPanelText: VExpansionPanelText
|
122973
122896
|
VExpansionPanelTitle: VExpansionPanelTitle
|
122974
122897
|
VField: VField
|
122975
122898
|
VFieldLabel: VFieldLabel
|
122976
|
-
VFileInput: VFileInput
|
122977
122899
|
VFooter: VFooter
|
122900
|
+
VFileInput: VFileInput
|
122978
122901
|
VIcon: VIcon
|
122979
122902
|
VComponentIcon: VComponentIcon
|
122980
122903
|
VSvgIcon: VSvgIcon
|
122981
122904
|
VLigatureIcon: VLigatureIcon
|
122982
122905
|
VClassIcon: VClassIcon
|
122983
122906
|
VImg: VImg
|
122984
|
-
|
122907
|
+
VInput: VInput
|
122985
122908
|
VInfiniteScroll: VInfiniteScroll
|
122986
122909
|
VItemGroup: VItemGroup
|
122987
122910
|
VItem: VItem
|
122988
|
-
VInput: VInput
|
122989
122911
|
VKbd: VKbd
|
122990
122912
|
VLabel: VLabel
|
122991
122913
|
VList: VList
|
@@ -122997,25 +122919,27 @@ declare module 'vue' {
|
|
122997
122919
|
VListItemSubtitle: VListItemSubtitle
|
122998
122920
|
VListItemTitle: VListItemTitle
|
122999
122921
|
VListSubheader: VListSubheader
|
123000
|
-
VMain: VMain
|
123001
|
-
VMenu: VMenu
|
123002
122922
|
VMessages: VMessages
|
123003
122923
|
VNavigationDrawer: VNavigationDrawer
|
123004
|
-
|
122924
|
+
VMain: VMain
|
122925
|
+
VMenu: VMenu
|
122926
|
+
VNumberInput: VNumberInput
|
123005
122927
|
VOverlay: VOverlay
|
122928
|
+
VOtpInput: VOtpInput
|
123006
122929
|
VPagination: VPagination
|
123007
|
-
VNumberInput: VNumberInput
|
123008
122930
|
VProgressCircular: VProgressCircular
|
123009
122931
|
VProgressLinear: VProgressLinear
|
123010
122932
|
VRadioGroup: VRadioGroup
|
123011
|
-
VRating: VRating
|
123012
122933
|
VSelect: VSelect
|
122934
|
+
VRating: VRating
|
123013
122935
|
VSelectionControl: VSelectionControl
|
123014
122936
|
VSelectionControlGroup: VSelectionControlGroup
|
123015
122937
|
VSheet: VSheet
|
123016
122938
|
VSkeletonLoader: VSkeletonLoader
|
122939
|
+
VSnackbar: VSnackbar
|
123017
122940
|
VSlideGroup: VSlideGroup
|
123018
122941
|
VSlideGroupItem: VSlideGroupItem
|
122942
|
+
VSwitch: VSwitch
|
123019
122943
|
VSlider: VSlider
|
123020
122944
|
VStepper: VStepper
|
123021
122945
|
VStepperActions: VStepperActions
|
@@ -123023,7 +122947,6 @@ declare module 'vue' {
|
|
123023
122947
|
VStepperItem: VStepperItem
|
123024
122948
|
VStepperWindow: VStepperWindow
|
123025
122949
|
VStepperWindowItem: VStepperWindowItem
|
123026
|
-
VTable: VTable
|
123027
122950
|
VSystemBar: VSystemBar
|
123028
122951
|
VTab: VTab
|
123029
122952
|
VTabs: VTabs
|
@@ -123031,47 +122954,47 @@ declare module 'vue' {
|
|
123031
122954
|
VTabsWindowItem: VTabsWindowItem
|
123032
122955
|
VTextarea: VTextarea
|
123033
122956
|
VTextField: VTextField
|
122957
|
+
VToolbar: VToolbar
|
122958
|
+
VToolbarTitle: VToolbarTitle
|
122959
|
+
VToolbarItems: VToolbarItems
|
122960
|
+
VTable: VTable
|
123034
122961
|
VTimeline: VTimeline
|
123035
122962
|
VTimelineItem: VTimelineItem
|
123036
122963
|
VTimePicker: VTimePicker
|
123037
122964
|
VTimePickerClock: VTimePickerClock
|
123038
122965
|
VTimePickerControls: VTimePickerControls
|
123039
|
-
|
123040
|
-
VToolbarTitle: VToolbarTitle
|
123041
|
-
VToolbarItems: VToolbarItems
|
122966
|
+
VTooltip: VTooltip
|
123042
122967
|
VTreeview: VTreeview
|
123043
122968
|
VTreeviewItem: VTreeviewItem
|
123044
122969
|
VTreeviewGroup: VTreeviewGroup
|
123045
|
-
VTooltip: VTooltip
|
123046
122970
|
VWindow: VWindow
|
123047
122971
|
VWindowItem: VWindowItem
|
123048
|
-
|
123049
|
-
VDataIterator: VDataIterator
|
122972
|
+
VEmptyState: VEmptyState
|
123050
122973
|
VConfirmEdit: VConfirmEdit
|
122974
|
+
VDataIterator: VDataIterator
|
123051
122975
|
VDefaultsProvider: VDefaultsProvider
|
123052
122976
|
VForm: VForm
|
123053
122977
|
VContainer: VContainer
|
123054
122978
|
VCol: VCol
|
123055
122979
|
VRow: VRow
|
123056
122980
|
VSpacer: VSpacer
|
122981
|
+
VHover: VHover
|
123057
122982
|
VLayout: VLayout
|
123058
122983
|
VLayoutItem: VLayoutItem
|
123059
122984
|
VLazy: VLazy
|
123060
|
-
VHover: VHover
|
123061
122985
|
VNoSsr: VNoSsr
|
123062
|
-
VLocaleProvider: VLocaleProvider
|
123063
122986
|
VParallax: VParallax
|
123064
|
-
|
122987
|
+
VLocaleProvider: VLocaleProvider
|
123065
122988
|
VRadio: VRadio
|
123066
|
-
|
123067
|
-
VSparkline: VSparkline
|
122989
|
+
VRangeSlider: VRangeSlider
|
123068
122990
|
VResponsive: VResponsive
|
123069
|
-
VSpeedDial: VSpeedDial
|
123070
|
-
VSwitch: VSwitch
|
123071
122991
|
VSnackbarQueue: VSnackbarQueue
|
122992
|
+
VSparkline: VSparkline
|
122993
|
+
VSpeedDial: VSpeedDial
|
123072
122994
|
VThemeProvider: VThemeProvider
|
123073
|
-
VVirtualScroll: VVirtualScroll
|
123074
122995
|
VValidation: VValidation
|
122996
|
+
VVirtualScroll: VVirtualScroll
|
122997
|
+
VFab: VFab
|
123075
122998
|
VFabTransition: VFabTransition
|
123076
122999
|
VDialogBottomTransition: VDialogBottomTransition
|
123077
123000
|
VDialogTopTransition: VDialogTopTransition
|
@@ -123088,30 +123011,28 @@ declare module 'vue' {
|
|
123088
123011
|
VExpandTransition: VExpandTransition
|
123089
123012
|
VExpandXTransition: VExpandXTransition
|
123090
123013
|
VDialogTransition: VDialogTransition
|
123091
|
-
|
123092
|
-
VBottomSheet: VBottomSheet
|
123014
|
+
VColorInput: VColorInput
|
123093
123015
|
VCalendar: VCalendar
|
123094
123016
|
VCalendarDay: VCalendarDay
|
123095
123017
|
VCalendarHeader: VCalendarHeader
|
123096
123018
|
VCalendarInterval: VCalendarInterval
|
123097
123019
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
123098
123020
|
VCalendarMonthDay: VCalendarMonthDay
|
123099
|
-
VColorInput: VColorInput
|
123100
123021
|
VIconBtn: VIconBtn
|
123101
|
-
VPie: VPie
|
123102
|
-
VPieSegment: VPieSegment
|
123103
|
-
VPieTooltip: VPieTooltip
|
123104
|
-
VVideo: VVideo
|
123105
|
-
VVideoControls: VVideoControls
|
123106
|
-
VVideoVolume: VVideoVolume
|
123107
123022
|
VStepperVertical: VStepperVertical
|
123108
123023
|
VStepperVerticalItem: VStepperVerticalItem
|
123109
123024
|
VStepperVerticalActions: VStepperVerticalActions
|
123025
|
+
VFileUpload: VFileUpload
|
123026
|
+
VFileUploadItem: VFileUploadItem
|
123110
123027
|
VPicker: VPicker
|
123111
123028
|
VPickerTitle: VPickerTitle
|
123029
|
+
VVideo: VVideo
|
123030
|
+
VVideoControls: VVideoControls
|
123031
|
+
VVideoVolume: VVideoVolume
|
123032
|
+
VPie: VPie
|
123033
|
+
VPieSegment: VPieSegment
|
123034
|
+
VPieTooltip: VPieTooltip
|
123112
123035
|
VHotkey: VHotkey
|
123113
|
-
VFileUpload: VFileUpload
|
123114
|
-
VFileUploadItem: VFileUploadItem
|
123115
123036
|
VDateInput: VDateInput
|
123116
123037
|
VMaskInput: VMaskInput
|
123117
123038
|
VPullToRefresh: VPullToRefresh
|