vuetify 3.7.17 → 3.7.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +3397 -3385
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +168 -168
- package/dist/json/tags.json +3 -0
- package/dist/json/web-types.json +6343 -6293
- package/dist/vuetify-labs.css +3200 -3200
- package/dist/vuetify-labs.d.ts +77 -35
- package/dist/vuetify-labs.esm.js +116 -37
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +116 -37
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2769 -2769
- package/dist/vuetify.d.ts +95 -92
- package/dist/vuetify.esm.js +43 -20
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +43 -20
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +12 -12
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRow.mjs +18 -3
- package/lib/components/VDataTable/VDataTableRow.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +91 -88
- package/lib/components/VDatePicker/VDatePicker.mjs +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +21 -12
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +3 -3
- package/lib/components/VIcon/VIcon.mjs +2 -2
- package/lib/components/VIcon/VIcon.mjs.map +1 -1
- package/lib/components/index.d.mts +38 -35
- package/lib/composables/calendar.mjs +1 -1
- package/lib/composables/calendar.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +57 -57
- package/lib/labs/VDateInput/VDateInput.mjs +75 -18
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +43 -0
- package/lib/labs/components.d.mts +43 -4
- package/lib/util/helpers.mjs +1 -1
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify.d.ts
CHANGED
|
@@ -24475,20 +24475,12 @@ declare const VDataTableHeaders: {
|
|
|
24475
24475
|
}>>;
|
|
24476
24476
|
type VDataTableHeaders = InstanceType<typeof VDataTableHeaders>;
|
|
24477
24477
|
|
|
24478
|
-
type
|
|
24479
|
-
|
|
24480
|
-
item: Group;
|
|
24481
|
-
count: number;
|
|
24482
|
-
props: Record<string, unknown>;
|
|
24483
|
-
};
|
|
24484
|
-
'data-table-select': {
|
|
24485
|
-
props: Record<string, unknown>;
|
|
24486
|
-
};
|
|
24478
|
+
type VDataTableItemCellColumnSlotProps<T> = Omit<ItemKeySlot<T>, 'value'> & {
|
|
24479
|
+
props: Record<string, unknown>;
|
|
24487
24480
|
};
|
|
24488
|
-
|
|
24489
24481
|
type VDataTableRowSlots<T> = {
|
|
24490
|
-
'item.data-table-select':
|
|
24491
|
-
'item.data-table-expand':
|
|
24482
|
+
'item.data-table-select': VDataTableItemCellColumnSlotProps<T>;
|
|
24483
|
+
'item.data-table-expand': VDataTableItemCellColumnSlotProps<T>;
|
|
24492
24484
|
'header.data-table-select': VDataTableHeaderCellColumnSlotProps;
|
|
24493
24485
|
'header.data-table-expand': VDataTableHeaderCellColumnSlotProps;
|
|
24494
24486
|
} & {
|
|
@@ -24517,8 +24509,8 @@ declare const VDataTableRow: {
|
|
|
24517
24509
|
}, true, {}, vue.SlotsType<Partial<{
|
|
24518
24510
|
[x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode[];
|
|
24519
24511
|
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24520
|
-
'item.data-table-select': (arg:
|
|
24521
|
-
'item.data-table-expand': (arg:
|
|
24512
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24513
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24522
24514
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24523
24515
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24524
24516
|
}>>, {
|
|
@@ -24555,8 +24547,8 @@ declare const VDataTableRow: {
|
|
|
24555
24547
|
}, {}, string, vue.SlotsType<Partial<{
|
|
24556
24548
|
[x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode[];
|
|
24557
24549
|
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24558
|
-
'item.data-table-select': (arg:
|
|
24559
|
-
'item.data-table-expand': (arg:
|
|
24550
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24551
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24560
24552
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24561
24553
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24562
24554
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
|
@@ -24589,6 +24581,17 @@ declare const VDataTableRow: {
|
|
|
24589
24581
|
}>>;
|
|
24590
24582
|
type VDataTableRow = InstanceType<typeof VDataTableRow>;
|
|
24591
24583
|
|
|
24584
|
+
type VDataTableGroupHeaderRowSlots = {
|
|
24585
|
+
'data-table-group': {
|
|
24586
|
+
item: Group;
|
|
24587
|
+
count: number;
|
|
24588
|
+
props: Record<string, unknown>;
|
|
24589
|
+
};
|
|
24590
|
+
'data-table-select': {
|
|
24591
|
+
props: Record<string, unknown>;
|
|
24592
|
+
};
|
|
24593
|
+
};
|
|
24594
|
+
|
|
24592
24595
|
type VDataTableRowsSlots<T> = VDataTableGroupHeaderRowSlots & VDataTableRowSlots<T> & {
|
|
24593
24596
|
item: ItemSlot$1<T> & {
|
|
24594
24597
|
props: Record<string, any>;
|
|
@@ -24635,8 +24638,8 @@ declare const VDataTableRows: {
|
|
|
24635
24638
|
'data-table-select': (arg: {
|
|
24636
24639
|
props: Record<string, unknown>;
|
|
24637
24640
|
}) => vue.VNode[];
|
|
24638
|
-
'item.data-table-select': (arg:
|
|
24639
|
-
'item.data-table-expand': (arg:
|
|
24641
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24642
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24640
24643
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24641
24644
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24642
24645
|
item: (arg: {
|
|
@@ -24708,8 +24711,8 @@ declare const VDataTableRows: {
|
|
|
24708
24711
|
'data-table-select': (arg: {
|
|
24709
24712
|
props: Record<string, unknown>;
|
|
24710
24713
|
}) => vue.VNode[];
|
|
24711
|
-
'item.data-table-select': (arg:
|
|
24712
|
-
'item.data-table-expand': (arg:
|
|
24714
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24715
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24713
24716
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24714
24717
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24715
24718
|
item: (arg: {
|
|
@@ -25024,8 +25027,8 @@ declare const VDataTable: {
|
|
|
25024
25027
|
'data-table-select': (arg: {
|
|
25025
25028
|
props: Record<string, unknown>;
|
|
25026
25029
|
}) => vue.VNode[];
|
|
25027
|
-
'item.data-table-select': (arg:
|
|
25028
|
-
'item.data-table-expand': (arg:
|
|
25030
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
25031
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
25029
25032
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
25030
25033
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
25031
25034
|
item: (arg: {
|
|
@@ -25325,8 +25328,8 @@ declare const VDataTable: {
|
|
|
25325
25328
|
'data-table-select': (arg: {
|
|
25326
25329
|
props: Record<string, unknown>;
|
|
25327
25330
|
}) => vue.VNode[];
|
|
25328
|
-
'item.data-table-select': (arg:
|
|
25329
|
-
'item.data-table-expand': (arg:
|
|
25331
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
25332
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
25330
25333
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
25331
25334
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
25332
25335
|
item: (arg: {
|
|
@@ -26227,8 +26230,8 @@ declare const VDataTableVirtual: {
|
|
|
26227
26230
|
'data-table-select': (arg: {
|
|
26228
26231
|
props: Record<string, unknown>;
|
|
26229
26232
|
}) => vue.VNode[];
|
|
26230
|
-
'item.data-table-select': (arg:
|
|
26231
|
-
'item.data-table-expand': (arg:
|
|
26233
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
26234
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
26232
26235
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
26233
26236
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
26234
26237
|
item: (arg: {
|
|
@@ -26537,8 +26540,8 @@ declare const VDataTableVirtual: {
|
|
|
26537
26540
|
'data-table-select': (arg: {
|
|
26538
26541
|
props: Record<string, unknown>;
|
|
26539
26542
|
}) => vue.VNode[];
|
|
26540
|
-
'item.data-table-select': (arg:
|
|
26541
|
-
'item.data-table-expand': (arg:
|
|
26543
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
26544
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
26542
26545
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
26543
26546
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
26544
26547
|
item: (arg: {
|
|
@@ -27085,8 +27088,8 @@ declare const VDataTableServer: {
|
|
|
27085
27088
|
'data-table-select': (arg: {
|
|
27086
27089
|
props: Record<string, unknown>;
|
|
27087
27090
|
}) => vue.VNode[];
|
|
27088
|
-
'item.data-table-select': (arg:
|
|
27089
|
-
'item.data-table-expand': (arg:
|
|
27091
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
27092
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
27090
27093
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
27091
27094
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
27092
27095
|
item: (arg: {
|
|
@@ -27457,8 +27460,8 @@ declare const VDataTableServer: {
|
|
|
27457
27460
|
'data-table-select': (arg: {
|
|
27458
27461
|
props: Record<string, unknown>;
|
|
27459
27462
|
}) => vue.VNode[];
|
|
27460
|
-
'item.data-table-select': (arg:
|
|
27461
|
-
'item.data-table-expand': (arg:
|
|
27463
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
27464
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
27462
27465
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
27463
27466
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
27464
27467
|
item: (arg: {
|
|
@@ -28760,7 +28763,7 @@ declare const VDatePickerMonth: {
|
|
|
28760
28763
|
"onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
|
|
28761
28764
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
28762
28765
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
28763
|
-
},
|
|
28766
|
+
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
28764
28767
|
'update:modelValue': (date: unknown) => true;
|
|
28765
28768
|
'update:month': (date: number) => true;
|
|
28766
28769
|
'update:year': (date: number) => true;
|
|
@@ -28888,7 +28891,7 @@ declare const VDatePickerMonth: {
|
|
|
28888
28891
|
"onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
|
|
28889
28892
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
28890
28893
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
28891
|
-
},
|
|
28894
|
+
}, () => JSX.Element, {}, {}, {}, {
|
|
28892
28895
|
transition: string;
|
|
28893
28896
|
disabled: boolean;
|
|
28894
28897
|
reverseTransition: string;
|
|
@@ -28951,7 +28954,7 @@ declare const VDatePickerMonth: {
|
|
|
28951
28954
|
"onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
|
|
28952
28955
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
28953
28956
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
28954
|
-
},
|
|
28957
|
+
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
28955
28958
|
'update:modelValue': (date: unknown) => true;
|
|
28956
28959
|
'update:month': (date: number) => true;
|
|
28957
28960
|
'update:year': (date: number) => true;
|
|
@@ -67137,49 +67140,43 @@ declare module 'vue' {
|
|
|
67137
67140
|
$children?: VNodeChild
|
|
67138
67141
|
}
|
|
67139
67142
|
export interface GlobalComponents {
|
|
67140
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
67141
67143
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
67142
|
-
|
|
67144
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
67145
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
67146
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
67143
67147
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
67144
67148
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
67149
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
67145
67150
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
67151
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
67152
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
67146
67153
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
67147
67154
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
67148
67155
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
67156
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
67157
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
67149
67158
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
67150
67159
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
67151
67160
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
67152
|
-
|
|
67153
|
-
|
|
67154
|
-
|
|
67155
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
67161
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
67162
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
67163
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
67156
67164
|
VCard: typeof import('vuetify/components')['VCard']
|
|
67157
67165
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
67158
67166
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
67159
67167
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
67160
67168
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
67161
67169
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
67162
|
-
|
|
67163
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
67164
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
67165
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
67166
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
67167
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
67168
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
67170
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
67169
67171
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
67170
67172
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
67171
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
67172
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
67173
67173
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
67174
67174
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
67175
|
-
|
|
67176
|
-
|
|
67177
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
67178
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
67179
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
67180
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
67175
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
67176
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
67181
67177
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
67182
|
-
|
|
67178
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
67179
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
67183
67180
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
67184
67181
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
67185
67182
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -67187,30 +67184,31 @@ declare module 'vue' {
|
|
|
67187
67184
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
67188
67185
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
67189
67186
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
67190
|
-
|
|
67191
|
-
|
|
67187
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
67188
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
67189
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
67190
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
67191
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
67192
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
67193
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
67192
67194
|
VFab: typeof import('vuetify/components')['VFab']
|
|
67195
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
67196
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
|
67193
67197
|
VField: typeof import('vuetify/components')['VField']
|
|
67194
67198
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
67195
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
67196
|
-
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
67197
|
-
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
67198
|
-
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
67199
|
-
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
67200
67199
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
67201
|
-
|
|
67200
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
67202
67201
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
67203
67202
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
67204
67203
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
67205
67204
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
67206
67205
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
67207
|
-
|
|
67208
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
67209
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
67206
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
67210
67207
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
67211
67208
|
VItem: typeof import('vuetify/components')['VItem']
|
|
67212
67209
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
67213
|
-
|
|
67210
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
67211
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
67214
67212
|
VList: typeof import('vuetify/components')['VList']
|
|
67215
67213
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
67216
67214
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -67220,64 +67218,69 @@ declare module 'vue' {
|
|
|
67220
67218
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
67221
67219
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
67222
67220
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
67223
|
-
|
|
67221
|
+
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
67222
|
+
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
67223
|
+
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
67224
|
+
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
67224
67225
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
67226
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
67227
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
67225
67228
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
67229
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
67226
67230
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
67227
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
|
67228
67231
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
67229
|
-
|
|
67230
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
67232
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
|
67231
67233
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
67232
67234
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
67233
|
-
|
|
67235
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
|
67236
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
67237
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
67238
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
67234
67239
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
67235
67240
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
67236
|
-
|
|
67237
|
-
|
|
67241
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
67242
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
67238
67243
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
67244
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
67245
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
67246
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
67239
67247
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
67240
67248
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
67241
67249
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
67242
67250
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
67243
67251
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
67244
67252
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
67245
|
-
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
67246
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
67247
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
67248
|
-
VTable: typeof import('vuetify/components')['VTable']
|
|
67249
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
67250
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
67251
67253
|
VTab: typeof import('vuetify/components')['VTab']
|
|
67252
67254
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
67253
67255
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
|
67254
67256
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
|
67255
|
-
|
|
67256
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
67257
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
67257
67258
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
67258
67259
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
67259
67260
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
67260
|
-
|
|
67261
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
67261
67262
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
67262
67263
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
67264
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
67265
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
67263
67266
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
67264
67267
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
67265
67268
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
|
67266
67269
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
67267
67270
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
67268
|
-
VHover: typeof import('vuetify/components')['VHover']
|
|
67269
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
67270
67271
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
67271
67272
|
VCol: typeof import('vuetify/components')['VCol']
|
|
67272
67273
|
VRow: typeof import('vuetify/components')['VRow']
|
|
67273
67274
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
67275
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
67276
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
67274
67277
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
67275
67278
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
67276
67279
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
67277
67280
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
67278
67281
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
67279
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
|
67280
67282
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
67283
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
|
67281
67284
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
67282
67285
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
67283
67286
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
|
@@ -67307,22 +67310,22 @@ declare module 'vue' {
|
|
|
67307
67310
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
67308
67311
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
67309
67312
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
67313
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
|
67314
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
|
67315
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
|
67310
67316
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
67311
67317
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
67312
67318
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
|
67313
67319
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
|
67314
67320
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
|
67315
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
|
67316
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
|
67317
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
|
67318
67321
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
|
67319
67322
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
|
67320
67323
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
|
67321
67324
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
|
67322
67325
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
|
67323
67326
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
|
67324
|
-
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
|
67325
67327
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
|
67328
|
+
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
|
67326
67329
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
|
67327
67330
|
}
|
|
67328
67331
|
}
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.7.
|
|
2
|
+
* Vuetify v3.7.19
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -158,7 +158,7 @@ function has(obj, key) {
|
|
|
158
158
|
function pick(obj, paths) {
|
|
159
159
|
const found = {};
|
|
160
160
|
for (const key of paths) {
|
|
161
|
-
if (Object.
|
|
161
|
+
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
162
162
|
found[key] = obj[key];
|
|
163
163
|
}
|
|
164
164
|
}
|
|
@@ -4903,7 +4903,7 @@ const VIcon = genericComponent()({
|
|
|
4903
4903
|
const slotIcon = ref();
|
|
4904
4904
|
const {
|
|
4905
4905
|
themeClasses
|
|
4906
|
-
} =
|
|
4906
|
+
} = useTheme();
|
|
4907
4907
|
const {
|
|
4908
4908
|
iconData
|
|
4909
4909
|
} = useIcon(computed(() => slotIcon.value || props.icon));
|
|
@@ -20576,22 +20576,37 @@ const VDataTableRow = genericComponent()({
|
|
|
20576
20576
|
"width": !mobile.value ? column.width : undefined
|
|
20577
20577
|
}, cellProps, columnCellProps), {
|
|
20578
20578
|
default: () => {
|
|
20579
|
-
if (slots[slotName] && !mobile.value) return slots[slotName]?.(slotProps);
|
|
20580
20579
|
if (column.key === 'data-table-select') {
|
|
20581
|
-
return slots['item.data-table-select']?.(
|
|
20580
|
+
return slots['item.data-table-select']?.({
|
|
20581
|
+
...slotProps,
|
|
20582
|
+
props: {
|
|
20583
|
+
disabled: !item.selectable,
|
|
20584
|
+
modelValue: isSelected([item]),
|
|
20585
|
+
onClick: withModifiers(() => toggleSelect(item), ['stop'])
|
|
20586
|
+
}
|
|
20587
|
+
}) ?? createVNode(VCheckboxBtn, {
|
|
20582
20588
|
"disabled": !item.selectable,
|
|
20583
20589
|
"modelValue": isSelected([item]),
|
|
20584
20590
|
"onClick": withModifiers(() => toggleSelect(item), ['stop'])
|
|
20585
20591
|
}, null);
|
|
20586
20592
|
}
|
|
20587
20593
|
if (column.key === 'data-table-expand') {
|
|
20588
|
-
return slots['item.data-table-expand']?.(
|
|
20594
|
+
return slots['item.data-table-expand']?.({
|
|
20595
|
+
...slotProps,
|
|
20596
|
+
props: {
|
|
20597
|
+
icon: isExpanded(item) ? '$collapse' : '$expand',
|
|
20598
|
+
size: 'small',
|
|
20599
|
+
variant: 'text',
|
|
20600
|
+
onClick: withModifiers(() => toggleExpand(item), ['stop'])
|
|
20601
|
+
}
|
|
20602
|
+
}) ?? createVNode(VBtn, {
|
|
20589
20603
|
"icon": isExpanded(item) ? '$collapse' : '$expand',
|
|
20590
20604
|
"size": "small",
|
|
20591
20605
|
"variant": "text",
|
|
20592
20606
|
"onClick": withModifiers(() => toggleExpand(item), ['stop'])
|
|
20593
20607
|
}, null);
|
|
20594
20608
|
}
|
|
20609
|
+
if (slots[slotName] && !mobile.value) return slots[slotName](slotProps);
|
|
20595
20610
|
const displayValue = toDisplayString(slotProps.value);
|
|
20596
20611
|
return !mobile.value ? displayValue : createVNode(Fragment, null, [createVNode("div", {
|
|
20597
20612
|
"class": "v-data-table__td-title"
|
|
@@ -21920,7 +21935,7 @@ const makeCalendarProps = propsFactory({
|
|
|
21920
21935
|
}, 'calendar');
|
|
21921
21936
|
function useCalendar(props) {
|
|
21922
21937
|
const adapter = useDate();
|
|
21923
|
-
const model = useProxiedModel(props, 'modelValue', [], v => wrapInArray(v));
|
|
21938
|
+
const model = useProxiedModel(props, 'modelValue', [], v => wrapInArray(v).map(i => adapter.date(i)));
|
|
21924
21939
|
const displayValue = computed(() => {
|
|
21925
21940
|
if (props.displayValue) return adapter.date(props.displayValue);
|
|
21926
21941
|
if (model.value.length > 0) return adapter.date(model.value[0]);
|
|
@@ -22149,7 +22164,7 @@ const VDatePickerMonth = genericComponent()({
|
|
|
22149
22164
|
model.value = [value];
|
|
22150
22165
|
}
|
|
22151
22166
|
}
|
|
22152
|
-
|
|
22167
|
+
return () => createVNode("div", {
|
|
22153
22168
|
"class": "v-date-picker-month"
|
|
22154
22169
|
}, [props.showWeek && createVNode("div", {
|
|
22155
22170
|
"key": "weeks",
|
|
@@ -22171,13 +22186,6 @@ const VDatePickerMonth = genericComponent()({
|
|
|
22171
22186
|
}, [weekDay])), daysInMonth.value.map((item, i) => {
|
|
22172
22187
|
const slotProps = {
|
|
22173
22188
|
props: {
|
|
22174
|
-
class: 'v-date-picker-month__day-btn',
|
|
22175
|
-
color: (item.isSelected || item.isToday) && !item.isDisabled ? props.color : undefined,
|
|
22176
|
-
disabled: item.isDisabled,
|
|
22177
|
-
icon: true,
|
|
22178
|
-
ripple: false,
|
|
22179
|
-
text: item.localized,
|
|
22180
|
-
variant: item.isDisabled ? item.isToday ? 'outlined' : 'text' : item.isToday && !item.isSelected ? 'outlined' : 'flat',
|
|
22181
22189
|
onClick: () => onClick(item.date)
|
|
22182
22190
|
},
|
|
22183
22191
|
item,
|
|
@@ -22195,9 +22203,24 @@ const VDatePickerMonth = genericComponent()({
|
|
|
22195
22203
|
'v-date-picker-month__day--week-start': item.isWeekStart
|
|
22196
22204
|
}],
|
|
22197
22205
|
"data-v-date": !item.isDisabled ? item.isoDate : undefined
|
|
22198
|
-
}, [(props.showAdjacentMonths || !item.isAdjacent) &&
|
|
22206
|
+
}, [(props.showAdjacentMonths || !item.isAdjacent) && createVNode(VDefaultsProvider, {
|
|
22207
|
+
"defaults": {
|
|
22208
|
+
VBtn: {
|
|
22209
|
+
class: 'v-date-picker-month__day-btn',
|
|
22210
|
+
color: (item.isSelected || item.isToday) && !item.isDisabled ? props.color : undefined,
|
|
22211
|
+
disabled: item.isDisabled,
|
|
22212
|
+
icon: true,
|
|
22213
|
+
ripple: false,
|
|
22214
|
+
text: item.localized,
|
|
22215
|
+
variant: item.isDisabled ? item.isToday ? 'outlined' : 'text' : item.isToday && !item.isSelected ? 'outlined' : 'flat',
|
|
22216
|
+
onClick: () => onClick(item.date)
|
|
22217
|
+
}
|
|
22218
|
+
}
|
|
22219
|
+
}, {
|
|
22220
|
+
default: () => [slots.day?.(slotProps) ?? createVNode(VBtn, slotProps.props, null)]
|
|
22221
|
+
})]);
|
|
22199
22222
|
})])]
|
|
22200
|
-
})])
|
|
22223
|
+
})]);
|
|
22201
22224
|
}
|
|
22202
22225
|
});
|
|
22203
22226
|
|
|
@@ -22493,7 +22516,7 @@ const VDatePicker = genericComponent()({
|
|
|
22493
22516
|
const {
|
|
22494
22517
|
t
|
|
22495
22518
|
} = useLocale();
|
|
22496
|
-
const model = useProxiedModel(props, 'modelValue', undefined, v => wrapInArray(v), v => props.multiple ? v : v[0]);
|
|
22519
|
+
const model = useProxiedModel(props, 'modelValue', undefined, v => wrapInArray(v).map(i => adapter.date(i)), v => props.multiple ? v : v[0]);
|
|
22497
22520
|
const viewMode = useProxiedModel(props, 'viewMode');
|
|
22498
22521
|
// const inputMode = useProxiedModel(props, 'inputMode')
|
|
22499
22522
|
|
|
@@ -28444,7 +28467,7 @@ function createVuetify$1() {
|
|
|
28444
28467
|
goTo
|
|
28445
28468
|
};
|
|
28446
28469
|
}
|
|
28447
|
-
const version$1 = "3.7.
|
|
28470
|
+
const version$1 = "3.7.19";
|
|
28448
28471
|
createVuetify$1.version = version$1;
|
|
28449
28472
|
|
|
28450
28473
|
// Vue's inject() can only be used in setup
|
|
@@ -28469,7 +28492,7 @@ const createVuetify = function () {
|
|
|
28469
28492
|
...options
|
|
28470
28493
|
});
|
|
28471
28494
|
};
|
|
28472
|
-
const version = "3.7.
|
|
28495
|
+
const version = "3.7.19";
|
|
28473
28496
|
createVuetify.version = version;
|
|
28474
28497
|
|
|
28475
28498
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|