@vuetify/nightly 3.9.3-dev.2025-08-01 → 3.9.3-dev.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 +8 -3
- package/dist/json/attributes.json +3131 -3115
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +176 -176
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +5775 -5635
- package/dist/vuetify-labs.cjs +63 -21
- package/dist/vuetify-labs.css +4060 -4060
- package/dist/vuetify-labs.d.ts +156 -76
- package/dist/vuetify-labs.esm.js +63 -21
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +63 -21
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +63 -21
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3717 -3717
- package/dist/vuetify.d.ts +128 -76
- package/dist/vuetify.esm.js +63 -21
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +63 -21
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +298 -292
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataIterator/VDataIterator.d.ts +3 -2
- package/lib/components/VDataIterator/VDataIterator.js +2 -1
- package/lib/components/VDataIterator/VDataIterator.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.d.ts +6 -4
- package/lib/components/VDataTable/VDataTable.js +1 -1
- package/lib/components/VDataTable/VDataTable.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRows.d.ts +14 -11
- package/lib/components/VDataTable/VDataTableRows.js +9 -0
- package/lib/components/VDataTable/VDataTableRows.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +4 -2
- package/lib/components/VDataTable/VDataTableServer.js +1 -1
- package/lib/components/VDataTable/VDataTableServer.js.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +4 -2
- 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 +13 -5
- package/lib/components/VDataTable/composables/group.js +11 -5
- 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 +7 -1
- package/lib/components/VDataTable/types.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/VSkeletonLoader/VSkeletonLoader.js +6 -4
- package/lib/components/VSkeletonLoader/VSkeletonLoader.js.map +1 -1
- package/lib/components/VWindow/VWindow.js +2 -2
- package/lib/components/VWindow/VWindow.js.map +1 -1
- 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 +61 -61
- 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/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;
|
@@ -920,7 +920,15 @@ interface Group<T = any> {
|
|
920
920
|
id: string;
|
921
921
|
key: string;
|
922
922
|
value: any;
|
923
|
-
items: readonly (T | Group<T>)[];
|
923
|
+
items: readonly (T | Group<T> | GroupSummary<T>)[];
|
924
|
+
}
|
925
|
+
interface GroupSummary<T = any> {
|
926
|
+
type: 'group-summary';
|
927
|
+
depth: number;
|
928
|
+
id: string;
|
929
|
+
key: string;
|
930
|
+
value: any;
|
931
|
+
items: readonly (T | Group<T> | GroupSummary<T>)[];
|
924
932
|
}
|
925
933
|
declare function provideGroupBy(options: {
|
926
934
|
groupBy: Ref<readonly SortItem[]>;
|
@@ -931,7 +939,7 @@ declare function provideGroupBy(options: {
|
|
931
939
|
toggleGroup: (group: Group) => void;
|
932
940
|
opened: Ref<Set<string> & Omit<Set<string>, keyof Set<any>>, Set<string> | (Set<string> & Omit<Set<string>, keyof Set<any>>)>;
|
933
941
|
groupBy: Ref<readonly SortItem[], readonly SortItem[]>;
|
934
|
-
extractRows: <T extends GroupableItem>(items: readonly (T | Group<T>)[]) => T[];
|
942
|
+
extractRows: <T extends GroupableItem>(items: readonly (T | Group<T> | GroupSummary<T>)[]) => T[];
|
935
943
|
isGroupOpen: (group: Group) => boolean;
|
936
944
|
};
|
937
945
|
|
@@ -1037,6 +1045,12 @@ type GroupHeaderSlot = {
|
|
1037
1045
|
toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
|
1038
1046
|
isGroupOpen: ReturnType<typeof provideGroupBy>['isGroupOpen'];
|
1039
1047
|
};
|
1048
|
+
type GroupSummarySlot = {
|
1049
|
+
index: number;
|
1050
|
+
item: GroupSummary;
|
1051
|
+
columns: InternalDataTableHeader[];
|
1052
|
+
toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
|
1053
|
+
};
|
1040
1054
|
type ItemSlotBase<T> = {
|
1041
1055
|
index: number;
|
1042
1056
|
item: T;
|
@@ -38147,7 +38161,8 @@ type VDataIteratorSlotProps<T> = {
|
|
38147
38161
|
isGroupOpen: ReturnType<typeof provideGroupBy>['isGroupOpen'];
|
38148
38162
|
toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
|
38149
38163
|
items: readonly DataIteratorItem<T>[];
|
38150
|
-
|
38164
|
+
itemsCount: number;
|
38165
|
+
groupedItems: readonly (DataIteratorItem<T> | Group<DataIteratorItem<T>> | GroupSummary<DataIteratorItem<T>>)[];
|
38151
38166
|
};
|
38152
38167
|
type VDataIteratorSlots<T> = {
|
38153
38168
|
default: VDataIteratorSlotProps<T>;
|
@@ -39168,6 +39183,7 @@ type VDataTableRowsSlots<T> = VDataTableGroupHeaderRowSlots & VDataTableRowSlots
|
|
39168
39183
|
};
|
39169
39184
|
loading: never;
|
39170
39185
|
'group-header': GroupHeaderSlot;
|
39186
|
+
'group-summary': GroupSummarySlot;
|
39171
39187
|
'no-data': never;
|
39172
39188
|
'expanded-row': ItemSlot$1<T>;
|
39173
39189
|
};
|
@@ -39186,7 +39202,7 @@ declare const VDataTableRows: {
|
|
39186
39202
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
39187
39203
|
cellProps?: CellProps<any> | undefined;
|
39188
39204
|
rowProps?: RowProps<any> | undefined;
|
39189
|
-
}, {}, 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, {
|
39205
|
+
}, {}, 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-summary" | "v-slot:group-header" | "v-slot:expanded-row">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
39190
39206
|
mobile: boolean | null;
|
39191
39207
|
noDataText: string;
|
39192
39208
|
loadingText: string;
|
@@ -39225,6 +39241,7 @@ declare const VDataTableRows: {
|
|
39225
39241
|
}) => vue.VNode[];
|
39226
39242
|
loading: () => vue.VNode[];
|
39227
39243
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
39244
|
+
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
39228
39245
|
'no-data': () => vue.VNode[];
|
39229
39246
|
'expanded-row': (arg: ItemSlot$1<unknown>) => vue.VNode[];
|
39230
39247
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
@@ -39275,7 +39292,7 @@ declare const VDataTableRows: {
|
|
39275
39292
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
39276
39293
|
cellProps?: CellProps<any> | undefined;
|
39277
39294
|
rowProps?: RowProps<any> | undefined;
|
39278
|
-
}, {}, 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, {
|
39295
|
+
}, {}, 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-summary" | "v-slot:group-header" | "v-slot:expanded-row">, string, {
|
39279
39296
|
mobile: boolean | null;
|
39280
39297
|
noDataText: string;
|
39281
39298
|
loadingText: string;
|
@@ -39314,10 +39331,11 @@ declare const VDataTableRows: {
|
|
39314
39331
|
}) => vue.VNode[];
|
39315
39332
|
loading: () => vue.VNode[];
|
39316
39333
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
39334
|
+
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
39317
39335
|
'no-data': () => vue.VNode[];
|
39318
39336
|
'expanded-row': (arg: ItemSlot$1<unknown>) => vue.VNode[];
|
39319
39337
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
39320
|
-
items?: readonly (DataTableItem<T> | Group<T>)[];
|
39338
|
+
items?: readonly (DataTableItem<T> | Group<T> | GroupSummary<T>)[];
|
39321
39339
|
}, slots: VDataTableRowsSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
|
39322
39340
|
mobile: {
|
39323
39341
|
type: PropType<boolean | null>;
|
@@ -39347,7 +39365,7 @@ declare const VDataTableRows: {
|
|
39347
39365
|
};
|
39348
39366
|
hideNoData: BooleanConstructor;
|
39349
39367
|
items: {
|
39350
|
-
type: PropType<readonly (DataTableItem | Group)[]>;
|
39368
|
+
type: PropType<readonly (DataTableItem | Group | GroupSummary)[]>;
|
39351
39369
|
default: () => never[];
|
39352
39370
|
};
|
39353
39371
|
noDataText: {
|
@@ -39385,7 +39403,7 @@ declare const VDataTableRows: {
|
|
39385
39403
|
};
|
39386
39404
|
hideNoData: BooleanConstructor;
|
39387
39405
|
items: {
|
39388
|
-
type: PropType<readonly (DataTableItem | Group)[]>;
|
39406
|
+
type: PropType<readonly (DataTableItem | Group | GroupSummary)[]>;
|
39389
39407
|
default: () => never[];
|
39390
39408
|
};
|
39391
39409
|
noDataText: {
|
@@ -39416,7 +39434,7 @@ type VDataTableSlotProps<T> = {
|
|
39416
39434
|
toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
|
39417
39435
|
items: readonly T[];
|
39418
39436
|
internalItems: readonly DataTableItem[];
|
39419
|
-
groupedItems: readonly (DataTableItem<T> | Group<DataTableItem<T>>)[];
|
39437
|
+
groupedItems: readonly (DataTableItem<T> | Group<DataTableItem<T>> | GroupSummary<DataTableItem<T>>)[];
|
39420
39438
|
columns: InternalDataTableHeader[];
|
39421
39439
|
headers: InternalDataTableHeader[][];
|
39422
39440
|
};
|
@@ -39519,7 +39537,7 @@ declare const VDataTable: {
|
|
39519
39537
|
'update:groupBy': (value: any) => true;
|
39520
39538
|
'update:expanded': (value: any) => true;
|
39521
39539
|
'update:currentItems': (value: any) => true;
|
39522
|
-
}, "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, {
|
39540
|
+
}, "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-summary" | "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, {
|
39523
39541
|
page: string | number;
|
39524
39542
|
expanded: readonly string[];
|
39525
39543
|
style: vue.StyleValue;
|
@@ -39602,6 +39620,7 @@ declare const VDataTable: {
|
|
39602
39620
|
}) => vue.VNode[];
|
39603
39621
|
loading: () => vue.VNode[];
|
39604
39622
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
39623
|
+
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
39605
39624
|
'no-data': () => vue.VNode[];
|
39606
39625
|
'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
|
39607
39626
|
headers: (arg: HeadersSlotProps) => vue.VNode[];
|
@@ -39840,7 +39859,7 @@ declare const VDataTable: {
|
|
39840
39859
|
'update:groupBy': (value: any) => true;
|
39841
39860
|
'update:expanded': (value: any) => true;
|
39842
39861
|
'update:currentItems': (value: any) => true;
|
39843
|
-
}, "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, {
|
39862
|
+
}, "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-summary" | "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, {
|
39844
39863
|
page: string | number;
|
39845
39864
|
expanded: readonly string[];
|
39846
39865
|
style: vue.StyleValue;
|
@@ -39923,6 +39942,7 @@ declare const VDataTable: {
|
|
39923
39942
|
}) => vue.VNode[];
|
39924
39943
|
loading: () => vue.VNode[];
|
39925
39944
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
39945
|
+
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
39926
39946
|
'no-data': () => vue.VNode[];
|
39927
39947
|
'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
|
39928
39948
|
headers: (arg: HeadersSlotProps) => vue.VNode[];
|
@@ -40660,7 +40680,7 @@ declare const VDataTableVirtual: {
|
|
40660
40680
|
'update:options': (value: any) => true;
|
40661
40681
|
'update:groupBy': (value: any) => true;
|
40662
40682
|
'update:expanded': (value: any) => true;
|
40663
|
-
}, "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, {
|
40683
|
+
}, "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-summary" | "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, {
|
40664
40684
|
expanded: readonly string[];
|
40665
40685
|
style: vue.StyleValue;
|
40666
40686
|
mobile: boolean | null;
|
@@ -40729,6 +40749,7 @@ declare const VDataTableVirtual: {
|
|
40729
40749
|
}) => vue.VNode[];
|
40730
40750
|
loading: () => vue.VNode[];
|
40731
40751
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
40752
|
+
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
40732
40753
|
'no-data': () => vue.VNode[];
|
40733
40754
|
'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
|
40734
40755
|
headers: (arg: HeadersSlotProps) => vue.VNode[];
|
@@ -40913,7 +40934,7 @@ declare const VDataTableVirtual: {
|
|
40913
40934
|
'update:options': (value: any) => true;
|
40914
40935
|
'update:groupBy': (value: any) => true;
|
40915
40936
|
'update:expanded': (value: any) => true;
|
40916
|
-
}, "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, {
|
40937
|
+
}, "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-summary" | "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, {
|
40917
40938
|
expanded: readonly string[];
|
40918
40939
|
style: vue.StyleValue;
|
40919
40940
|
mobile: boolean | null;
|
@@ -40982,6 +41003,7 @@ declare const VDataTableVirtual: {
|
|
40982
41003
|
}) => vue.VNode[];
|
40983
41004
|
loading: () => vue.VNode[];
|
40984
41005
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
41006
|
+
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
40985
41007
|
'no-data': () => vue.VNode[];
|
40986
41008
|
'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
|
40987
41009
|
headers: (arg: HeadersSlotProps) => vue.VNode[];
|
@@ -41358,7 +41380,7 @@ declare const VDataTableServer: {
|
|
41358
41380
|
'update:options': (options: any) => true;
|
41359
41381
|
'update:expanded': (options: any) => true;
|
41360
41382
|
'update:groupBy': (value: any) => true;
|
41361
|
-
}, "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, {
|
41383
|
+
}, "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-summary" | "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, {
|
41362
41384
|
page: string | number;
|
41363
41385
|
expanded: readonly string[];
|
41364
41386
|
style: vue.StyleValue;
|
@@ -41439,6 +41461,7 @@ declare const VDataTableServer: {
|
|
41439
41461
|
}) => vue.VNode[];
|
41440
41462
|
loading: () => vue.VNode[];
|
41441
41463
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
41464
|
+
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
41442
41465
|
'no-data': () => vue.VNode[];
|
41443
41466
|
'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
|
41444
41467
|
headers: (arg: HeadersSlotProps) => vue.VNode[];
|
@@ -41664,7 +41687,7 @@ declare const VDataTableServer: {
|
|
41664
41687
|
'update:options': (options: any) => true;
|
41665
41688
|
'update:expanded': (options: any) => true;
|
41666
41689
|
'update:groupBy': (value: any) => true;
|
41667
|
-
}, "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, {
|
41690
|
+
}, "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-summary" | "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, {
|
41668
41691
|
page: string | number;
|
41669
41692
|
expanded: readonly string[];
|
41670
41693
|
style: vue.StyleValue;
|
@@ -41745,6 +41768,7 @@ declare const VDataTableServer: {
|
|
41745
41768
|
}) => vue.VNode[];
|
41746
41769
|
loading: () => vue.VNode[];
|
41747
41770
|
'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
|
41771
|
+
'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
|
41748
41772
|
'no-data': () => vue.VNode[];
|
41749
41773
|
'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
|
41750
41774
|
headers: (arg: HeadersSlotProps) => vue.VNode[];
|
@@ -42312,6 +42336,7 @@ declare const VDatePickerMonth: {
|
|
42312
42336
|
year?: string | number | undefined;
|
42313
42337
|
modelValue?: unknown[] | undefined;
|
42314
42338
|
firstDayOfWeek?: string | number | undefined;
|
42339
|
+
firstDayOfYear?: string | number | undefined;
|
42315
42340
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
42316
42341
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
42317
42342
|
} & {
|
@@ -42359,6 +42384,7 @@ declare const VDatePickerMonth: {
|
|
42359
42384
|
weekdays: CalendarWeekdays[];
|
42360
42385
|
weeksInMonth: "static" | "dynamic";
|
42361
42386
|
firstDayOfWeek: string | number;
|
42387
|
+
firstDayOfYear: string | number;
|
42362
42388
|
hideWeekdays: boolean;
|
42363
42389
|
showWeek: boolean;
|
42364
42390
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -42394,6 +42420,7 @@ declare const VDatePickerMonth: {
|
|
42394
42420
|
year?: string | number | undefined;
|
42395
42421
|
modelValue?: unknown[] | undefined;
|
42396
42422
|
firstDayOfWeek?: string | number | undefined;
|
42423
|
+
firstDayOfYear?: string | number | undefined;
|
42397
42424
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
42398
42425
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
42399
42426
|
} & {
|
@@ -42437,6 +42464,7 @@ declare const VDatePickerMonth: {
|
|
42437
42464
|
weekdays: CalendarWeekdays[];
|
42438
42465
|
weeksInMonth: "static" | "dynamic";
|
42439
42466
|
firstDayOfWeek: string | number;
|
42467
|
+
firstDayOfYear: string | number;
|
42440
42468
|
hideWeekdays: boolean;
|
42441
42469
|
showWeek: boolean;
|
42442
42470
|
}>;
|
@@ -42461,6 +42489,7 @@ declare const VDatePickerMonth: {
|
|
42461
42489
|
year?: string | number | undefined;
|
42462
42490
|
modelValue?: unknown[] | undefined;
|
42463
42491
|
firstDayOfWeek?: string | number | undefined;
|
42492
|
+
firstDayOfYear?: string | number | undefined;
|
42464
42493
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
42465
42494
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
42466
42495
|
} & {
|
@@ -42508,6 +42537,7 @@ declare const VDatePickerMonth: {
|
|
42508
42537
|
weekdays: CalendarWeekdays[];
|
42509
42538
|
weeksInMonth: "static" | "dynamic";
|
42510
42539
|
firstDayOfWeek: string | number;
|
42540
|
+
firstDayOfYear: string | number;
|
42511
42541
|
hideWeekdays: boolean;
|
42512
42542
|
showWeek: boolean;
|
42513
42543
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -42541,6 +42571,10 @@ declare const VDatePickerMonth: {
|
|
42541
42571
|
type: (StringConstructor | NumberConstructor)[];
|
42542
42572
|
default: undefined;
|
42543
42573
|
};
|
42574
|
+
firstDayOfYear: {
|
42575
|
+
type: (StringConstructor | NumberConstructor)[];
|
42576
|
+
default: undefined;
|
42577
|
+
};
|
42544
42578
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
42545
42579
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
42546
42580
|
color: StringConstructor;
|
@@ -42578,6 +42612,10 @@ declare const VDatePickerMonth: {
|
|
42578
42612
|
type: (StringConstructor | NumberConstructor)[];
|
42579
42613
|
default: undefined;
|
42580
42614
|
};
|
42615
|
+
firstDayOfYear: {
|
42616
|
+
type: (StringConstructor | NumberConstructor)[];
|
42617
|
+
default: undefined;
|
42618
|
+
};
|
42581
42619
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
42582
42620
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
42583
42621
|
color: StringConstructor;
|
@@ -43401,6 +43439,7 @@ declare const VDatePicker: {
|
|
43401
43439
|
controlHeight?: string | number | undefined;
|
43402
43440
|
headerColor?: string | undefined;
|
43403
43441
|
firstDayOfWeek?: string | number | undefined;
|
43442
|
+
firstDayOfYear?: string | number | undefined;
|
43404
43443
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
43405
43444
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
43406
43445
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -43437,6 +43476,7 @@ declare const VDatePicker: {
|
|
43437
43476
|
weekdays: CalendarWeekdays[];
|
43438
43477
|
weeksInMonth: "static" | "dynamic";
|
43439
43478
|
firstDayOfWeek: string | number;
|
43479
|
+
firstDayOfYear: string | number;
|
43440
43480
|
hideWeekdays: boolean;
|
43441
43481
|
showWeek: boolean;
|
43442
43482
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -43534,6 +43574,7 @@ declare const VDatePicker: {
|
|
43534
43574
|
controlHeight?: string | number | undefined;
|
43535
43575
|
headerColor?: string | undefined;
|
43536
43576
|
firstDayOfWeek?: string | number | undefined;
|
43577
|
+
firstDayOfYear?: string | number | undefined;
|
43537
43578
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
43538
43579
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
43539
43580
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -43565,6 +43606,7 @@ declare const VDatePicker: {
|
|
43565
43606
|
weekdays: CalendarWeekdays[];
|
43566
43607
|
weeksInMonth: "static" | "dynamic";
|
43567
43608
|
firstDayOfWeek: string | number;
|
43609
|
+
firstDayOfYear: string | number;
|
43568
43610
|
hideWeekdays: boolean;
|
43569
43611
|
showWeek: boolean;
|
43570
43612
|
}>;
|
@@ -43618,6 +43660,7 @@ declare const VDatePicker: {
|
|
43618
43660
|
controlHeight?: string | number | undefined;
|
43619
43661
|
headerColor?: string | undefined;
|
43620
43662
|
firstDayOfWeek?: string | number | undefined;
|
43663
|
+
firstDayOfYear?: string | number | undefined;
|
43621
43664
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
43622
43665
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
43623
43666
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -43654,6 +43697,7 @@ declare const VDatePicker: {
|
|
43654
43697
|
weekdays: CalendarWeekdays[];
|
43655
43698
|
weeksInMonth: "static" | "dynamic";
|
43656
43699
|
firstDayOfWeek: string | number;
|
43700
|
+
firstDayOfYear: string | number;
|
43657
43701
|
hideWeekdays: boolean;
|
43658
43702
|
showWeek: boolean;
|
43659
43703
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -43770,6 +43814,10 @@ declare const VDatePicker: {
|
|
43770
43814
|
type: (StringConstructor | NumberConstructor)[];
|
43771
43815
|
default: undefined;
|
43772
43816
|
};
|
43817
|
+
firstDayOfYear: {
|
43818
|
+
type: (StringConstructor | NumberConstructor)[];
|
43819
|
+
default: undefined;
|
43820
|
+
};
|
43773
43821
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
43774
43822
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
43775
43823
|
hideWeekdays: BooleanConstructor;
|
@@ -43879,6 +43927,10 @@ declare const VDatePicker: {
|
|
43879
43927
|
type: (StringConstructor | NumberConstructor)[];
|
43880
43928
|
default: undefined;
|
43881
43929
|
};
|
43930
|
+
firstDayOfYear: {
|
43931
|
+
type: (StringConstructor | NumberConstructor)[];
|
43932
|
+
default: undefined;
|
43933
|
+
};
|
43882
43934
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
43883
43935
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
43884
43936
|
hideWeekdays: BooleanConstructor;
|
@@ -97369,6 +97421,7 @@ declare const VCalendar: {
|
|
97369
97421
|
events?: any[] | undefined;
|
97370
97422
|
modelValue?: unknown[] | undefined;
|
97371
97423
|
firstDayOfWeek?: string | number | undefined;
|
97424
|
+
firstDayOfYear?: string | number | undefined;
|
97372
97425
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
97373
97426
|
displayValue?: unknown;
|
97374
97427
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
@@ -97572,6 +97625,7 @@ declare const VCalendar: {
|
|
97572
97625
|
weekdays: CalendarWeekdays[];
|
97573
97626
|
weeksInMonth: "static" | "dynamic";
|
97574
97627
|
firstDayOfWeek: string | number;
|
97628
|
+
firstDayOfYear: string | number;
|
97575
97629
|
intervalDivisions: number;
|
97576
97630
|
intervalDuration: number;
|
97577
97631
|
intervalHeight: number;
|
@@ -97671,6 +97725,7 @@ declare const VCalendar: {
|
|
97671
97725
|
events?: any[] | undefined;
|
97672
97726
|
modelValue?: unknown[] | undefined;
|
97673
97727
|
firstDayOfWeek?: string | number | undefined;
|
97728
|
+
firstDayOfYear?: string | number | undefined;
|
97674
97729
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
97675
97730
|
displayValue?: unknown;
|
97676
97731
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
@@ -97869,6 +97924,7 @@ declare const VCalendar: {
|
|
97869
97924
|
weekdays: CalendarWeekdays[];
|
97870
97925
|
weeksInMonth: "static" | "dynamic";
|
97871
97926
|
firstDayOfWeek: string | number;
|
97927
|
+
firstDayOfYear: string | number;
|
97872
97928
|
intervalDivisions: number;
|
97873
97929
|
intervalDuration: number;
|
97874
97930
|
intervalHeight: number;
|
@@ -97909,6 +97965,7 @@ declare const VCalendar: {
|
|
97909
97965
|
events?: any[] | undefined;
|
97910
97966
|
modelValue?: unknown[] | undefined;
|
97911
97967
|
firstDayOfWeek?: string | number | undefined;
|
97968
|
+
firstDayOfYear?: string | number | undefined;
|
97912
97969
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
97913
97970
|
displayValue?: unknown;
|
97914
97971
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
@@ -98112,6 +98169,7 @@ declare const VCalendar: {
|
|
98112
98169
|
weekdays: CalendarWeekdays[];
|
98113
98170
|
weeksInMonth: "static" | "dynamic";
|
98114
98171
|
firstDayOfWeek: string | number;
|
98172
|
+
firstDayOfYear: string | number;
|
98115
98173
|
intervalDivisions: number;
|
98116
98174
|
intervalDuration: number;
|
98117
98175
|
intervalHeight: number;
|
@@ -98264,6 +98322,10 @@ declare const VCalendar: {
|
|
98264
98322
|
type: (StringConstructor | NumberConstructor)[];
|
98265
98323
|
default: undefined;
|
98266
98324
|
};
|
98325
|
+
firstDayOfYear: {
|
98326
|
+
type: (StringConstructor | NumberConstructor)[];
|
98327
|
+
default: undefined;
|
98328
|
+
};
|
98267
98329
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
98268
98330
|
hideHeader: BooleanConstructor;
|
98269
98331
|
hideWeekNumber: BooleanConstructor;
|
@@ -98355,6 +98417,10 @@ declare const VCalendar: {
|
|
98355
98417
|
type: (StringConstructor | NumberConstructor)[];
|
98356
98418
|
default: undefined;
|
98357
98419
|
};
|
98420
|
+
firstDayOfYear: {
|
98421
|
+
type: (StringConstructor | NumberConstructor)[];
|
98422
|
+
default: undefined;
|
98423
|
+
};
|
98358
98424
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
98359
98425
|
hideHeader: BooleanConstructor;
|
98360
98426
|
hideWeekNumber: BooleanConstructor;
|
@@ -100229,6 +100295,7 @@ declare const VDateInput: {
|
|
100229
100295
|
counterValue?: number | ((value: any) => number) | undefined;
|
100230
100296
|
modelModifiers?: Record<string, boolean> | undefined;
|
100231
100297
|
firstDayOfWeek?: string | number | undefined;
|
100298
|
+
firstDayOfYear?: string | number | undefined;
|
100232
100299
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
100233
100300
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
100234
100301
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -102272,6 +102339,7 @@ declare const VDateInput: {
|
|
102272
102339
|
weekdays: CalendarWeekdays[];
|
102273
102340
|
weeksInMonth: "static" | "dynamic";
|
102274
102341
|
firstDayOfWeek: string | number;
|
102342
|
+
firstDayOfYear: string | number;
|
102275
102343
|
hideWeekdays: boolean;
|
102276
102344
|
showWeek: boolean;
|
102277
102345
|
displayFormat: string | ((date: unknown) => any);
|
@@ -102409,6 +102477,7 @@ declare const VDateInput: {
|
|
102409
102477
|
counterValue?: number | ((value: any) => number) | undefined;
|
102410
102478
|
modelModifiers?: Record<string, boolean> | undefined;
|
102411
102479
|
firstDayOfWeek?: string | number | undefined;
|
102480
|
+
firstDayOfYear?: string | number | undefined;
|
102412
102481
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
102413
102482
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
102414
102483
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -104446,6 +104515,7 @@ declare const VDateInput: {
|
|
104446
104515
|
weekdays: CalendarWeekdays[];
|
104447
104516
|
weeksInMonth: "static" | "dynamic";
|
104448
104517
|
firstDayOfWeek: string | number;
|
104518
|
+
firstDayOfYear: string | number;
|
104449
104519
|
hideWeekdays: boolean;
|
104450
104520
|
showWeek: boolean;
|
104451
104521
|
displayFormat: string | ((date: unknown) => any);
|
@@ -104562,6 +104632,7 @@ declare const VDateInput: {
|
|
104562
104632
|
counterValue?: number | ((value: any) => number) | undefined;
|
104563
104633
|
modelModifiers?: Record<string, boolean> | undefined;
|
104564
104634
|
firstDayOfWeek?: string | number | undefined;
|
104635
|
+
firstDayOfYear?: string | number | undefined;
|
104565
104636
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
104566
104637
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
104567
104638
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -106605,6 +106676,7 @@ declare const VDateInput: {
|
|
106605
106676
|
weekdays: CalendarWeekdays[];
|
106606
106677
|
weeksInMonth: "static" | "dynamic";
|
106607
106678
|
firstDayOfWeek: string | number;
|
106679
|
+
firstDayOfYear: string | number;
|
106608
106680
|
hideWeekdays: boolean;
|
106609
106681
|
showWeek: boolean;
|
106610
106682
|
displayFormat: string | ((date: unknown) => any);
|
@@ -106732,6 +106804,10 @@ declare const VDateInput: {
|
|
106732
106804
|
type: (StringConstructor | NumberConstructor)[];
|
106733
106805
|
default: undefined;
|
106734
106806
|
};
|
106807
|
+
firstDayOfYear: {
|
106808
|
+
type: (StringConstructor | NumberConstructor)[];
|
106809
|
+
default: undefined;
|
106810
|
+
};
|
106735
106811
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
106736
106812
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
106737
106813
|
hideWeekdays: BooleanConstructor;
|
@@ -106973,6 +107049,10 @@ declare const VDateInput: {
|
|
106973
107049
|
type: (StringConstructor | NumberConstructor)[];
|
106974
107050
|
default: undefined;
|
106975
107051
|
};
|
107052
|
+
firstDayOfYear: {
|
107053
|
+
type: (StringConstructor | NumberConstructor)[];
|
107054
|
+
default: undefined;
|
107055
|
+
};
|
106976
107056
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
106977
107057
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
106978
107058
|
hideWeekdays: BooleanConstructor;
|
@@ -123770,7 +123850,7 @@ declare const createVuetify: (options?: VuetifyOptions) => {
|
|
123770
123850
|
getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
|
123771
123851
|
getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
|
123772
123852
|
getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
|
123773
|
-
getWeek: (date: unknown, firstDayOfWeek?: number | string,
|
123853
|
+
getWeek: (date: unknown, firstDayOfWeek?: number | string, firstDayOfYear?: number | string) => number;
|
123774
123854
|
getMonth: (date: unknown) => number;
|
123775
123855
|
setMonth: (date: unknown, month: number) => unknown;
|
123776
123856
|
getDate: (date: unknown) => number;
|
@@ -123823,48 +123903,42 @@ declare module 'vue' {
|
|
123823
123903
|
$children?: VNodeChild
|
123824
123904
|
}
|
123825
123905
|
export interface GlobalComponents {
|
123906
|
+
VApp: VApp
|
123826
123907
|
VAppBar: VAppBar
|
123827
123908
|
VAppBarNavIcon: VAppBarNavIcon
|
123828
123909
|
VAppBarTitle: VAppBarTitle
|
123829
|
-
VApp: VApp
|
123830
123910
|
VAvatar: VAvatar
|
123831
|
-
VAutocomplete: VAutocomplete
|
123832
|
-
VBadge: VBadge
|
123833
123911
|
VAlert: VAlert
|
123834
123912
|
VAlertTitle: VAlertTitle
|
123913
|
+
VAutocomplete: VAutocomplete
|
123914
|
+
VBreadcrumbs: VBreadcrumbs
|
123915
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
123916
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
123835
123917
|
VBanner: VBanner
|
123836
123918
|
VBannerActions: VBannerActions
|
123837
123919
|
VBannerText: VBannerText
|
123838
123920
|
VBottomNavigation: VBottomNavigation
|
123839
123921
|
VBtn: VBtn
|
123840
|
-
VBreadcrumbs: VBreadcrumbs
|
123841
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
123842
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
123843
123922
|
VBottomSheet: VBottomSheet
|
123923
|
+
VBadge: VBadge
|
123844
123924
|
VBtnGroup: VBtnGroup
|
123845
|
-
VCarousel: VCarousel
|
123846
|
-
VCarouselItem: VCarouselItem
|
123847
|
-
VBtnToggle: VBtnToggle
|
123848
|
-
VChip: VChip
|
123849
|
-
VCheckbox: VCheckbox
|
123850
|
-
VCheckboxBtn: VCheckboxBtn
|
123851
|
-
VCombobox: VCombobox
|
123852
123925
|
VCard: VCard
|
123853
123926
|
VCardActions: VCardActions
|
123854
123927
|
VCardItem: VCardItem
|
123855
123928
|
VCardSubtitle: VCardSubtitle
|
123856
123929
|
VCardText: VCardText
|
123857
123930
|
VCardTitle: VCardTitle
|
123931
|
+
VCarousel: VCarousel
|
123932
|
+
VCarouselItem: VCarouselItem
|
123933
|
+
VBtnToggle: VBtnToggle
|
123934
|
+
VChipGroup: VChipGroup
|
123858
123935
|
VCode: VCode
|
123859
|
-
|
123936
|
+
VCombobox: VCombobox
|
123937
|
+
VCheckbox: VCheckbox
|
123938
|
+
VCheckboxBtn: VCheckboxBtn
|
123860
123939
|
VCounter: VCounter
|
123861
|
-
|
123862
|
-
|
123863
|
-
VDatePickerControls: VDatePickerControls
|
123864
|
-
VDatePickerHeader: VDatePickerHeader
|
123865
|
-
VDatePickerMonth: VDatePickerMonth
|
123866
|
-
VDatePickerMonths: VDatePickerMonths
|
123867
|
-
VDatePickerYears: VDatePickerYears
|
123940
|
+
VColorPicker: VColorPicker
|
123941
|
+
VChip: VChip
|
123868
123942
|
VDataTable: VDataTable
|
123869
123943
|
VDataTableHeaders: VDataTableHeaders
|
123870
123944
|
VDataTableFooter: VDataTableFooter
|
@@ -123872,29 +123946,35 @@ declare module 'vue' {
|
|
123872
123946
|
VDataTableRow: VDataTableRow
|
123873
123947
|
VDataTableVirtual: VDataTableVirtual
|
123874
123948
|
VDataTableServer: VDataTableServer
|
123949
|
+
VDatePicker: VDatePicker
|
123950
|
+
VDatePickerControls: VDatePickerControls
|
123951
|
+
VDatePickerHeader: VDatePickerHeader
|
123952
|
+
VDatePickerMonth: VDatePickerMonth
|
123953
|
+
VDatePickerMonths: VDatePickerMonths
|
123954
|
+
VDatePickerYears: VDatePickerYears
|
123955
|
+
VDialog: VDialog
|
123875
123956
|
VDivider: VDivider
|
123957
|
+
VFileInput: VFileInput
|
123958
|
+
VFab: VFab
|
123959
|
+
VEmptyState: VEmptyState
|
123960
|
+
VField: VField
|
123961
|
+
VFieldLabel: VFieldLabel
|
123962
|
+
VFooter: VFooter
|
123963
|
+
VImg: VImg
|
123876
123964
|
VExpansionPanels: VExpansionPanels
|
123877
123965
|
VExpansionPanel: VExpansionPanel
|
123878
123966
|
VExpansionPanelText: VExpansionPanelText
|
123879
123967
|
VExpansionPanelTitle: VExpansionPanelTitle
|
123880
|
-
VFab: VFab
|
123881
|
-
VDialog: VDialog
|
123882
|
-
VEmptyState: VEmptyState
|
123883
|
-
VFooter: VFooter
|
123884
123968
|
VIcon: VIcon
|
123885
123969
|
VComponentIcon: VComponentIcon
|
123886
123970
|
VSvgIcon: VSvgIcon
|
123887
123971
|
VLigatureIcon: VLigatureIcon
|
123888
123972
|
VClassIcon: VClassIcon
|
123889
|
-
VFileInput: VFileInput
|
123890
|
-
VField: VField
|
123891
|
-
VFieldLabel: VFieldLabel
|
123892
|
-
VInfiniteScroll: VInfiniteScroll
|
123893
|
-
VImg: VImg
|
123894
123973
|
VInput: VInput
|
123974
|
+
VKbd: VKbd
|
123895
123975
|
VItemGroup: VItemGroup
|
123896
123976
|
VItem: VItem
|
123897
|
-
|
123977
|
+
VInfiniteScroll: VInfiniteScroll
|
123898
123978
|
VList: VList
|
123899
123979
|
VListGroup: VListGroup
|
123900
123980
|
VListImg: VListImg
|
@@ -123904,25 +123984,27 @@ declare module 'vue' {
|
|
123904
123984
|
VListItemSubtitle: VListItemSubtitle
|
123905
123985
|
VListItemTitle: VListItemTitle
|
123906
123986
|
VListSubheader: VListSubheader
|
123907
|
-
|
123987
|
+
VMenu: VMenu
|
123988
|
+
VMain: VMain
|
123908
123989
|
VMessages: VMessages
|
123990
|
+
VNavigationDrawer: VNavigationDrawer
|
123909
123991
|
VOtpInput: VOtpInput
|
123910
|
-
|
123911
|
-
VMenu: VMenu
|
123992
|
+
VNumberInput: VNumberInput
|
123912
123993
|
VOverlay: VOverlay
|
123913
123994
|
VPagination: VPagination
|
123914
|
-
VNumberInput: VNumberInput
|
123915
|
-
VProgressCircular: VProgressCircular
|
123916
123995
|
VProgressLinear: VProgressLinear
|
123917
|
-
VRadioGroup: VRadioGroup
|
123918
123996
|
VRating: VRating
|
123919
|
-
|
123920
|
-
|
123921
|
-
VSkeletonLoader: VSkeletonLoader
|
123997
|
+
VProgressCircular: VProgressCircular
|
123998
|
+
VRadioGroup: VRadioGroup
|
123922
123999
|
VSelect: VSelect
|
123923
124000
|
VSheet: VSheet
|
124001
|
+
VSelectionControl: VSelectionControl
|
124002
|
+
VSelectionControlGroup: VSelectionControlGroup
|
123924
124003
|
VSlideGroup: VSlideGroup
|
123925
124004
|
VSlideGroupItem: VSlideGroupItem
|
124005
|
+
VSlider: VSlider
|
124006
|
+
VSkeletonLoader: VSkeletonLoader
|
124007
|
+
VSwitch: VSwitch
|
123926
124008
|
VStepper: VStepper
|
123927
124009
|
VStepperActions: VStepperActions
|
123928
124010
|
VStepperHeader: VStepperHeader
|
@@ -123930,54 +124012,53 @@ declare module 'vue' {
|
|
123930
124012
|
VStepperWindow: VStepperWindow
|
123931
124013
|
VStepperWindowItem: VStepperWindowItem
|
123932
124014
|
VSnackbar: VSnackbar
|
123933
|
-
VSlider: VSlider
|
123934
124015
|
VSystemBar: VSystemBar
|
123935
124016
|
VTab: VTab
|
123936
124017
|
VTabs: VTabs
|
123937
124018
|
VTabsWindow: VTabsWindow
|
123938
124019
|
VTabsWindowItem: VTabsWindowItem
|
123939
|
-
VSwitch: VSwitch
|
123940
124020
|
VTextField: VTextField
|
123941
|
-
VTable: VTable
|
123942
124021
|
VTextarea: VTextarea
|
123943
124022
|
VToolbar: VToolbar
|
123944
124023
|
VToolbarTitle: VToolbarTitle
|
123945
124024
|
VToolbarItems: VToolbarItems
|
123946
124025
|
VTimeline: VTimeline
|
123947
124026
|
VTimelineItem: VTimelineItem
|
124027
|
+
VTimePicker: VTimePicker
|
124028
|
+
VTimePickerClock: VTimePickerClock
|
124029
|
+
VTimePickerControls: VTimePickerControls
|
124030
|
+
VTable: VTable
|
123948
124031
|
VTooltip: VTooltip
|
123949
124032
|
VTreeview: VTreeview
|
123950
124033
|
VTreeviewItem: VTreeviewItem
|
123951
124034
|
VTreeviewGroup: VTreeviewGroup
|
123952
124035
|
VWindow: VWindow
|
123953
124036
|
VWindowItem: VWindowItem
|
123954
|
-
|
123955
|
-
VTimePickerClock: VTimePickerClock
|
123956
|
-
VTimePickerControls: VTimePickerControls
|
123957
|
-
VDataIterator: VDataIterator
|
124037
|
+
VLabel: VLabel
|
123958
124038
|
VConfirmEdit: VConfirmEdit
|
123959
124039
|
VDefaultsProvider: VDefaultsProvider
|
123960
|
-
|
123961
|
-
VForm: VForm
|
124040
|
+
VDataIterator: VDataIterator
|
123962
124041
|
VContainer: VContainer
|
123963
124042
|
VCol: VCol
|
123964
124043
|
VRow: VRow
|
123965
124044
|
VSpacer: VSpacer
|
124045
|
+
VForm: VForm
|
124046
|
+
VHover: VHover
|
124047
|
+
VLocaleProvider: VLocaleProvider
|
123966
124048
|
VLazy: VLazy
|
123967
124049
|
VLayout: VLayout
|
123968
124050
|
VLayoutItem: VLayoutItem
|
123969
|
-
VLocaleProvider: VLocaleProvider
|
123970
124051
|
VNoSsr: VNoSsr
|
123971
|
-
VRadio: VRadio
|
123972
124052
|
VParallax: VParallax
|
124053
|
+
VRadio: VRadio
|
123973
124054
|
VRangeSlider: VRangeSlider
|
123974
124055
|
VResponsive: VResponsive
|
123975
124056
|
VSnackbarQueue: VSnackbarQueue
|
123976
124057
|
VSparkline: VSparkline
|
123977
124058
|
VSpeedDial: VSpeedDial
|
123978
124059
|
VThemeProvider: VThemeProvider
|
123979
|
-
VVirtualScroll: VVirtualScroll
|
123980
124060
|
VValidation: VValidation
|
124061
|
+
VVirtualScroll: VVirtualScroll
|
123981
124062
|
VFabTransition: VFabTransition
|
123982
124063
|
VDialogBottomTransition: VDialogBottomTransition
|
123983
124064
|
VDialogTopTransition: VDialogTopTransition
|
@@ -123994,32 +124075,31 @@ declare module 'vue' {
|
|
123994
124075
|
VExpandTransition: VExpandTransition
|
123995
124076
|
VExpandXTransition: VExpandXTransition
|
123996
124077
|
VDialogTransition: VDialogTransition
|
123997
|
-
VNavigationDrawer: VNavigationDrawer
|
123998
124078
|
VCalendar: VCalendar
|
123999
124079
|
VCalendarDay: VCalendarDay
|
124000
124080
|
VCalendarHeader: VCalendarHeader
|
124001
124081
|
VCalendarInterval: VCalendarInterval
|
124002
124082
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
124003
124083
|
VCalendarMonthDay: VCalendarMonthDay
|
124004
|
-
VColorInput: VColorInput
|
124005
|
-
VIconBtn: VIconBtn
|
124006
124084
|
VFileUpload: VFileUpload
|
124007
124085
|
VFileUploadItem: VFileUploadItem
|
124008
|
-
VPicker: VPicker
|
124009
|
-
VPickerTitle: VPickerTitle
|
124010
124086
|
VPie: VPie
|
124011
124087
|
VPieSegment: VPieSegment
|
124012
124088
|
VPieTooltip: VPieTooltip
|
124089
|
+
VIconBtn: VIconBtn
|
124090
|
+
VColorInput: VColorInput
|
124091
|
+
VPicker: VPicker
|
124092
|
+
VPickerTitle: VPickerTitle
|
124093
|
+
VHotkey: VHotkey
|
124013
124094
|
VStepperVertical: VStepperVertical
|
124014
124095
|
VStepperVerticalItem: VStepperVerticalItem
|
124015
124096
|
VStepperVerticalActions: VStepperVerticalActions
|
124016
|
-
VHotkey: VHotkey
|
124017
124097
|
VVideo: VVideo
|
124018
124098
|
VVideoControls: VVideoControls
|
124019
124099
|
VVideoVolume: VVideoVolume
|
124100
|
+
VMaskInput: VMaskInput
|
124020
124101
|
VDateInput: VDateInput
|
124021
124102
|
VPullToRefresh: VPullToRefresh
|
124022
|
-
VMaskInput: VMaskInput
|
124023
124103
|
}
|
124024
124104
|
export interface GlobalDirectives {
|
124025
124105
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|