@vuetify/nightly 3.4.10-dev.2024-01-17 → 3.4.10-dev.2024-01-18

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.
@@ -67,7 +67,8 @@
67
67
  opacity: 0.5;
68
68
  }
69
69
 
70
- .v-data-table-column--fixed, .v-data-table__th--sticky {
70
+ .v-data-table-column--fixed,
71
+ .v-data-table__th--sticky {
71
72
  background: rgb(var(--v-theme-surface));
72
73
  position: sticky !important;
73
74
  left: 0;
@@ -60,7 +60,8 @@
60
60
  .v-data-table-header__sort-icon
61
61
  opacity: 0.5
62
62
 
63
- .v-data-table-column--fixed, .v-data-table__th--sticky
63
+ .v-data-table-column--fixed,
64
+ .v-data-table__th--sticky
64
65
  background: $table-background
65
66
  position: sticky !important
66
67
  left: 0
@@ -9,7 +9,7 @@ import { useSort } from "./composables/sort.mjs";
9
9
  import { useBackgroundColor } from "../../composables/color.mjs";
10
10
  import { IconValue } from "../../composables/icons.mjs";
11
11
  import { LoaderSlot, makeLoaderProps, useLoader } from "../../composables/loader.mjs"; // Utilities
12
- import { computed } from 'vue';
12
+ import { computed, mergeProps } from 'vue';
13
13
  import { convertToUnit, genericComponent, propsFactory, useRender } from "../../util/index.mjs"; // Types
14
14
  export const makeVDataTableHeadersProps = propsFactory({
15
15
  color: String,
@@ -23,6 +23,9 @@ export const makeVDataTableHeadersProps = propsFactory({
23
23
  type: IconValue,
24
24
  default: '$sortDesc'
25
25
  },
26
+ headerProps: {
27
+ type: Object
28
+ },
26
29
  ...makeLoaderProps()
27
30
  }, 'VDataTableHeaders');
28
31
  export const VDataTableHeaders = genericComponent()({
@@ -85,6 +88,7 @@ export const VDataTableHeaders = genericComponent()({
85
88
  y
86
89
  } = _ref2;
87
90
  const noPadding = column.key === 'data-table-select' || column.key === 'data-table-expand';
91
+ const headerProps = mergeProps(props.headerProps ?? {}, column.headerProps ?? {});
88
92
  return _createVNode(VDataTableColumn, _mergeProps({
89
93
  "tag": "th",
90
94
  "align": column.align,
@@ -105,7 +109,7 @@ export const VDataTableHeaders = genericComponent()({
105
109
  "fixed": column.fixed,
106
110
  "lastFixed": column.lastFixed,
107
111
  "noPadding": noPadding
108
- }, column.headerProps), {
112
+ }, headerProps), {
109
113
  default: () => {
110
114
  const columnSlotName = `header.${column.key}`;
111
115
  const columnSlotProps = {
@@ -1 +1 @@
1
- {"version":3,"file":"VDataTableHeaders.mjs","names":["VDataTableColumn","VCheckboxBtn","VIcon","useHeaders","useSelection","useSort","useBackgroundColor","IconValue","LoaderSlot","makeLoaderProps","useLoader","computed","convertToUnit","genericComponent","propsFactory","useRender","makeVDataTableHeadersProps","color","String","sticky","Boolean","multiSort","sortAscIcon","type","default","sortDescIcon","VDataTableHeaders","name","props","setup","_ref","slots","toggleSort","sortBy","isSorted","someSelected","allSelected","selectAll","showSelectAll","columns","headers","loaderClasses","getFixedStyles","column","y","fixed","undefined","position","left","fixedOffset","top","getSortIcon","item","value","find","key","order","backgroundColorClasses","backgroundColorStyles","slotProps","VDataTableHeaderCell","_ref2","x","noPadding","_createVNode","_mergeProps","align","sortable","width","minWidth","colspan","rowspan","lastFixed","headerProps","columnSlotName","columnSlotProps","title","findIndex","_Fragment","map","row","loading","length","loader"],"sources":["../../../src/components/VDataTable/VDataTableHeaders.tsx"],"sourcesContent":["// Components\nimport { VDataTableColumn } from './VDataTableColumn'\nimport { VCheckboxBtn } from '@/components/VCheckbox'\nimport { VIcon } from '@/components/VIcon'\n\n// Composables\nimport { useHeaders } from './composables/headers'\nimport { useSelection } from './composables/select'\nimport { useSort } from './composables/sort'\nimport { useBackgroundColor } from '@/composables/color'\nimport { IconValue } from '@/composables/icons'\nimport { LoaderSlot, makeLoaderProps, useLoader } from '@/composables/loader'\n\n// Utilities\nimport { computed } from 'vue'\nimport { convertToUnit, genericComponent, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { CSSProperties, UnwrapRef } from 'vue'\nimport type { provideSelection } from './composables/select'\nimport type { provideSort } from './composables/sort'\nimport type { InternalDataTableHeader } from './types'\nimport type { LoaderSlotProps } from '@/composables/loader'\n\nexport type HeadersSlotProps = {\n headers: InternalDataTableHeader[][]\n columns: InternalDataTableHeader[]\n sortBy: UnwrapRef<ReturnType<typeof provideSort>['sortBy']>\n someSelected: UnwrapRef<ReturnType<typeof provideSelection>['someSelected']>\n allSelected: UnwrapRef<ReturnType<typeof provideSelection>['allSelected']>\n toggleSort: ReturnType<typeof provideSort>['toggleSort']\n selectAll: ReturnType<typeof provideSelection>['selectAll']\n getSortIcon: (column: InternalDataTableHeader) => IconValue\n isSorted: ReturnType<typeof provideSort>['isSorted']\n}\n\ntype VDataTableHeaderCellColumnSlotProps = {\n column: InternalDataTableHeader\n selectAll: ReturnType<typeof provideSelection>['selectAll']\n isSorted: ReturnType<typeof provideSort>['isSorted']\n toggleSort: ReturnType<typeof provideSort>['toggleSort']\n sortBy: UnwrapRef<ReturnType<typeof provideSort>['sortBy']>\n someSelected: UnwrapRef<ReturnType<typeof provideSelection>['someSelected']>\n allSelected: UnwrapRef<ReturnType<typeof provideSelection>['allSelected']>\n getSortIcon: (column: InternalDataTableHeader) => IconValue\n}\n\nexport type VDataTableHeadersSlots = {\n headers: HeadersSlotProps\n loader: LoaderSlotProps\n 'header.data-table-select': VDataTableHeaderCellColumnSlotProps\n 'header.data-table-expand': VDataTableHeaderCellColumnSlotProps\n} & { [key: `header.${string}`]: VDataTableHeaderCellColumnSlotProps }\n\nexport const makeVDataTableHeadersProps = propsFactory({\n color: String,\n sticky: Boolean,\n multiSort: Boolean,\n sortAscIcon: {\n type: IconValue,\n default: '$sortAsc',\n },\n sortDescIcon: {\n type: IconValue,\n default: '$sortDesc',\n },\n\n ...makeLoaderProps(),\n}, 'VDataTableHeaders')\n\nexport const VDataTableHeaders = genericComponent<VDataTableHeadersSlots>()({\n name: 'VDataTableHeaders',\n\n props: makeVDataTableHeadersProps(),\n\n setup (props, { slots }) {\n const { toggleSort, sortBy, isSorted } = useSort()\n const { someSelected, allSelected, selectAll, showSelectAll } = useSelection()\n const { columns, headers } = useHeaders()\n const { loaderClasses } = useLoader(props)\n\n function getFixedStyles (column: InternalDataTableHeader, y: number): CSSProperties | undefined {\n if (!props.sticky && !column.fixed) return undefined\n\n return {\n position: 'sticky',\n left: column.fixed ? convertToUnit(column.fixedOffset) : undefined,\n top: props.sticky ? `calc(var(--v-table-header-height) * ${y})` : undefined,\n }\n }\n\n function getSortIcon (column: InternalDataTableHeader) {\n const item = sortBy.value.find(item => item.key === column.key)\n\n if (!item) return props.sortAscIcon\n\n return item.order === 'asc' ? props.sortAscIcon : props.sortDescIcon\n }\n\n const { backgroundColorClasses, backgroundColorStyles } = useBackgroundColor(props, 'color')\n\n const slotProps = computed(() => ({\n headers: headers.value,\n columns: columns.value,\n toggleSort,\n isSorted,\n sortBy: sortBy.value,\n someSelected: someSelected.value,\n allSelected: allSelected.value,\n selectAll,\n getSortIcon,\n } satisfies HeadersSlotProps))\n\n const VDataTableHeaderCell = ({ column, x, y }: { column: InternalDataTableHeader, x: number, y: number }) => {\n const noPadding = column.key === 'data-table-select' || column.key === 'data-table-expand'\n\n return (\n <VDataTableColumn\n tag=\"th\"\n align={ column.align }\n class={[\n 'v-data-table__th',\n {\n 'v-data-table__th--sortable': column.sortable,\n 'v-data-table__th--sorted': isSorted(column),\n 'v-data-table__th--fixed': column.fixed,\n 'v-data-table__th--sticky': props.sticky,\n },\n loaderClasses.value,\n ]}\n style={{\n width: convertToUnit(column.width),\n minWidth: convertToUnit(column.minWidth),\n ...getFixedStyles(column, y),\n }}\n colspan={ column.colspan }\n rowspan={ column.rowspan }\n onClick={ column.sortable ? () => toggleSort(column) : undefined }\n fixed={ column.fixed }\n lastFixed={ column.lastFixed }\n noPadding={ noPadding }\n { ...column.headerProps }\n >\n {{\n default: () => {\n const columnSlotName = `header.${column.key}` as const\n const columnSlotProps: VDataTableHeaderCellColumnSlotProps = {\n column,\n selectAll,\n isSorted,\n toggleSort,\n sortBy: sortBy.value,\n someSelected: someSelected.value,\n allSelected: allSelected.value,\n getSortIcon,\n }\n\n if (slots[columnSlotName]) return slots[columnSlotName]!(columnSlotProps)\n\n if (column.key === 'data-table-select') {\n return slots['header.data-table-select']?.(columnSlotProps) ?? (showSelectAll && (\n <VCheckboxBtn\n modelValue={ allSelected.value }\n indeterminate={ someSelected.value && !allSelected.value }\n onUpdate:modelValue={ selectAll }\n />\n ))\n }\n\n return (\n <div class=\"v-data-table-header__content\">\n <span>{ column.title }</span>\n { column.sortable && (\n <VIcon\n key=\"icon\"\n class=\"v-data-table-header__sort-icon\"\n icon={ getSortIcon(column) }\n />\n )}\n { props.multiSort && isSorted(column) && (\n <div\n key=\"badge\"\n class={[\n 'v-data-table-header__sort-badge',\n ...backgroundColorClasses.value,\n ]}\n style={ backgroundColorStyles.value }\n >\n { sortBy.value.findIndex(x => x.key === column.key) + 1 }\n </div>\n )}\n </div>\n )\n },\n }}\n </VDataTableColumn>\n )\n }\n\n useRender(() => {\n return (\n <>\n { slots.headers\n ? slots.headers(slotProps.value)\n : headers.value.map((row, y) => (\n <tr>\n { row.map((column, x) => (\n <VDataTableHeaderCell column={ column } x={ x } y={ y } />\n ))}\n </tr>\n ))}\n\n { props.loading && (\n <tr class=\"v-data-table-progress\">\n <th colspan={ columns.value.length }>\n <LoaderSlot\n name=\"v-data-table-progress\"\n absolute\n active\n color={ typeof props.loading === 'boolean' ? undefined : props.loading }\n indeterminate\n v-slots={{ default: slots.loader }}\n />\n </th>\n </tr>\n )}\n </>\n )\n })\n },\n})\n"],"mappings":"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"}
1
+ {"version":3,"file":"VDataTableHeaders.mjs","names":["VDataTableColumn","VCheckboxBtn","VIcon","useHeaders","useSelection","useSort","useBackgroundColor","IconValue","LoaderSlot","makeLoaderProps","useLoader","computed","mergeProps","convertToUnit","genericComponent","propsFactory","useRender","makeVDataTableHeadersProps","color","String","sticky","Boolean","multiSort","sortAscIcon","type","default","sortDescIcon","headerProps","Object","VDataTableHeaders","name","props","setup","_ref","slots","toggleSort","sortBy","isSorted","someSelected","allSelected","selectAll","showSelectAll","columns","headers","loaderClasses","getFixedStyles","column","y","fixed","undefined","position","left","fixedOffset","top","getSortIcon","item","value","find","key","order","backgroundColorClasses","backgroundColorStyles","slotProps","VDataTableHeaderCell","_ref2","x","noPadding","_createVNode","_mergeProps","align","sortable","width","minWidth","colspan","rowspan","lastFixed","columnSlotName","columnSlotProps","title","findIndex","_Fragment","map","row","loading","length","loader"],"sources":["../../../src/components/VDataTable/VDataTableHeaders.tsx"],"sourcesContent":["// Components\nimport { VDataTableColumn } from './VDataTableColumn'\nimport { VCheckboxBtn } from '@/components/VCheckbox'\nimport { VIcon } from '@/components/VIcon'\n\n// Composables\nimport { useHeaders } from './composables/headers'\nimport { useSelection } from './composables/select'\nimport { useSort } from './composables/sort'\nimport { useBackgroundColor } from '@/composables/color'\nimport { IconValue } from '@/composables/icons'\nimport { LoaderSlot, makeLoaderProps, useLoader } from '@/composables/loader'\n\n// Utilities\nimport { computed, mergeProps } from 'vue'\nimport { convertToUnit, genericComponent, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { CSSProperties, PropType, UnwrapRef } from 'vue'\nimport type { provideSelection } from './composables/select'\nimport type { provideSort } from './composables/sort'\nimport type { InternalDataTableHeader } from './types'\nimport type { LoaderSlotProps } from '@/composables/loader'\n\nexport type HeadersSlotProps = {\n headers: InternalDataTableHeader[][]\n columns: InternalDataTableHeader[]\n sortBy: UnwrapRef<ReturnType<typeof provideSort>['sortBy']>\n someSelected: UnwrapRef<ReturnType<typeof provideSelection>['someSelected']>\n allSelected: UnwrapRef<ReturnType<typeof provideSelection>['allSelected']>\n toggleSort: ReturnType<typeof provideSort>['toggleSort']\n selectAll: ReturnType<typeof provideSelection>['selectAll']\n getSortIcon: (column: InternalDataTableHeader) => IconValue\n isSorted: ReturnType<typeof provideSort>['isSorted']\n}\n\ntype VDataTableHeaderCellColumnSlotProps = {\n column: InternalDataTableHeader\n selectAll: ReturnType<typeof provideSelection>['selectAll']\n isSorted: ReturnType<typeof provideSort>['isSorted']\n toggleSort: ReturnType<typeof provideSort>['toggleSort']\n sortBy: UnwrapRef<ReturnType<typeof provideSort>['sortBy']>\n someSelected: UnwrapRef<ReturnType<typeof provideSelection>['someSelected']>\n allSelected: UnwrapRef<ReturnType<typeof provideSelection>['allSelected']>\n getSortIcon: (column: InternalDataTableHeader) => IconValue\n}\n\nexport type VDataTableHeadersSlots = {\n headers: HeadersSlotProps\n loader: LoaderSlotProps\n 'header.data-table-select': VDataTableHeaderCellColumnSlotProps\n 'header.data-table-expand': VDataTableHeaderCellColumnSlotProps\n} & { [key: `header.${string}`]: VDataTableHeaderCellColumnSlotProps }\n\nexport const makeVDataTableHeadersProps = propsFactory({\n color: String,\n sticky: Boolean,\n multiSort: Boolean,\n sortAscIcon: {\n type: IconValue,\n default: '$sortAsc',\n },\n sortDescIcon: {\n type: IconValue,\n default: '$sortDesc',\n },\n headerProps: {\n type: Object as PropType<Record<string, any>>,\n },\n\n ...makeLoaderProps(),\n}, 'VDataTableHeaders')\n\nexport const VDataTableHeaders = genericComponent<VDataTableHeadersSlots>()({\n name: 'VDataTableHeaders',\n\n props: makeVDataTableHeadersProps(),\n\n setup (props, { slots }) {\n const { toggleSort, sortBy, isSorted } = useSort()\n const { someSelected, allSelected, selectAll, showSelectAll } = useSelection()\n const { columns, headers } = useHeaders()\n const { loaderClasses } = useLoader(props)\n\n function getFixedStyles (column: InternalDataTableHeader, y: number): CSSProperties | undefined {\n if (!props.sticky && !column.fixed) return undefined\n\n return {\n position: 'sticky',\n left: column.fixed ? convertToUnit(column.fixedOffset) : undefined,\n top: props.sticky ? `calc(var(--v-table-header-height) * ${y})` : undefined,\n }\n }\n\n function getSortIcon (column: InternalDataTableHeader) {\n const item = sortBy.value.find(item => item.key === column.key)\n\n if (!item) return props.sortAscIcon\n\n return item.order === 'asc' ? props.sortAscIcon : props.sortDescIcon\n }\n\n const { backgroundColorClasses, backgroundColorStyles } = useBackgroundColor(props, 'color')\n\n const slotProps = computed(() => ({\n headers: headers.value,\n columns: columns.value,\n toggleSort,\n isSorted,\n sortBy: sortBy.value,\n someSelected: someSelected.value,\n allSelected: allSelected.value,\n selectAll,\n getSortIcon,\n } satisfies HeadersSlotProps))\n\n const VDataTableHeaderCell = ({ column, x, y }: { column: InternalDataTableHeader, x: number, y: number }) => {\n const noPadding = column.key === 'data-table-select' || column.key === 'data-table-expand'\n const headerProps = mergeProps(props.headerProps ?? {}, column.headerProps ?? {})\n\n return (\n <VDataTableColumn\n tag=\"th\"\n align={ column.align }\n class={[\n 'v-data-table__th',\n {\n 'v-data-table__th--sortable': column.sortable,\n 'v-data-table__th--sorted': isSorted(column),\n 'v-data-table__th--fixed': column.fixed,\n 'v-data-table__th--sticky': props.sticky,\n },\n loaderClasses.value,\n ]}\n style={{\n width: convertToUnit(column.width),\n minWidth: convertToUnit(column.minWidth),\n ...getFixedStyles(column, y),\n }}\n colspan={ column.colspan }\n rowspan={ column.rowspan }\n onClick={ column.sortable ? () => toggleSort(column) : undefined }\n fixed={ column.fixed }\n lastFixed={ column.lastFixed }\n noPadding={ noPadding }\n { ...headerProps }\n >\n {{\n default: () => {\n const columnSlotName = `header.${column.key}` as const\n const columnSlotProps: VDataTableHeaderCellColumnSlotProps = {\n column,\n selectAll,\n isSorted,\n toggleSort,\n sortBy: sortBy.value,\n someSelected: someSelected.value,\n allSelected: allSelected.value,\n getSortIcon,\n }\n\n if (slots[columnSlotName]) return slots[columnSlotName]!(columnSlotProps)\n\n if (column.key === 'data-table-select') {\n return slots['header.data-table-select']?.(columnSlotProps) ?? (showSelectAll && (\n <VCheckboxBtn\n modelValue={ allSelected.value }\n indeterminate={ someSelected.value && !allSelected.value }\n onUpdate:modelValue={ selectAll }\n />\n ))\n }\n\n return (\n <div class=\"v-data-table-header__content\">\n <span>{ column.title }</span>\n { column.sortable && (\n <VIcon\n key=\"icon\"\n class=\"v-data-table-header__sort-icon\"\n icon={ getSortIcon(column) }\n />\n )}\n { props.multiSort && isSorted(column) && (\n <div\n key=\"badge\"\n class={[\n 'v-data-table-header__sort-badge',\n ...backgroundColorClasses.value,\n ]}\n style={ backgroundColorStyles.value }\n >\n { sortBy.value.findIndex(x => x.key === column.key) + 1 }\n </div>\n )}\n </div>\n )\n },\n }}\n </VDataTableColumn>\n )\n }\n\n useRender(() => {\n return (\n <>\n { slots.headers\n ? slots.headers(slotProps.value)\n : headers.value.map((row, y) => (\n <tr>\n { row.map((column, x) => (\n <VDataTableHeaderCell column={ column } x={ x } y={ y } />\n ))}\n </tr>\n ))}\n\n { props.loading && (\n <tr class=\"v-data-table-progress\">\n <th colspan={ columns.value.length }>\n <LoaderSlot\n name=\"v-data-table-progress\"\n absolute\n active\n color={ typeof props.loading === 'boolean' ? undefined : props.loading }\n indeterminate\n v-slots={{ default: slots.loader }}\n />\n </th>\n </tr>\n )}\n </>\n )\n })\n },\n})\n"],"mappings":"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"}
@@ -667,6 +667,7 @@ declare const VDataTable: {
667
667
  customKeyFilter?: FilterKeyFunctions | undefined;
668
668
  filterKeys?: FilterKeys | undefined;
669
669
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
670
+ headerProps?: Record<string, any> | undefined;
670
671
  } & {
671
672
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
672
673
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -759,6 +760,7 @@ declare const VDataTable: {
759
760
  customKeyFilter?: FilterKeyFunctions | undefined;
760
761
  filterKeys?: FilterKeys | undefined;
761
762
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
763
+ headerProps?: Record<string, any> | undefined;
762
764
  } & {
763
765
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
764
766
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -1016,6 +1018,7 @@ declare const VDataTable: {
1016
1018
  customKeyFilter?: FilterKeyFunctions | undefined;
1017
1019
  filterKeys?: FilterKeys | undefined;
1018
1020
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
1021
+ headerProps?: Record<string, any> | undefined;
1019
1022
  } & {
1020
1023
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
1021
1024
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -1146,6 +1149,7 @@ declare const VDataTable: {
1146
1149
  customKeyFilter?: FilterKeyFunctions | undefined;
1147
1150
  filterKeys?: FilterKeys | undefined;
1148
1151
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
1152
+ headerProps?: Record<string, any> | undefined;
1149
1153
  } & {
1150
1154
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
1151
1155
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -1437,6 +1441,9 @@ declare const VDataTable: {
1437
1441
  type: vue.PropType<IconValue>;
1438
1442
  default: string;
1439
1443
  };
1444
+ headerProps: {
1445
+ type: vue.PropType<Record<string, any>>;
1446
+ };
1440
1447
  sortBy: {
1441
1448
  type: vue.PropType<readonly SortItem[]>;
1442
1449
  default: () => never[];
@@ -1611,6 +1618,9 @@ declare const VDataTable: {
1611
1618
  type: vue.PropType<IconValue>;
1612
1619
  default: string;
1613
1620
  };
1621
+ headerProps: {
1622
+ type: vue.PropType<Record<string, any>>;
1623
+ };
1614
1624
  sortBy: {
1615
1625
  type: vue.PropType<readonly SortItem[]>;
1616
1626
  default: () => never[];
@@ -2044,6 +2054,7 @@ declare const VDataTableVirtual: {
2044
2054
  customKeyFilter?: FilterKeyFunctions | undefined;
2045
2055
  filterKeys?: FilterKeys | undefined;
2046
2056
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
2057
+ headerProps?: Record<string, any> | undefined;
2047
2058
  } & {
2048
2059
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
2049
2060
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -2114,6 +2125,7 @@ declare const VDataTableVirtual: {
2114
2125
  customKeyFilter?: FilterKeyFunctions | undefined;
2115
2126
  filterKeys?: FilterKeys | undefined;
2116
2127
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
2128
+ headerProps?: Record<string, any> | undefined;
2117
2129
  } & {
2118
2130
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
2119
2131
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -2320,6 +2332,7 @@ declare const VDataTableVirtual: {
2320
2332
  customKeyFilter?: FilterKeyFunctions | undefined;
2321
2333
  filterKeys?: FilterKeys | undefined;
2322
2334
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
2335
+ headerProps?: Record<string, any> | undefined;
2323
2336
  } & {
2324
2337
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
2325
2338
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -2415,6 +2428,7 @@ declare const VDataTableVirtual: {
2415
2428
  customKeyFilter?: FilterKeyFunctions | undefined;
2416
2429
  filterKeys?: FilterKeys | undefined;
2417
2430
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
2431
+ headerProps?: Record<string, any> | undefined;
2418
2432
  } & {
2419
2433
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
2420
2434
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -2625,6 +2639,9 @@ declare const VDataTableVirtual: {
2625
2639
  type: vue.PropType<IconValue>;
2626
2640
  default: string;
2627
2641
  };
2642
+ headerProps: {
2643
+ type: vue.PropType<Record<string, any>>;
2644
+ };
2628
2645
  sortBy: {
2629
2646
  type: vue.PropType<readonly SortItem[]>;
2630
2647
  default: () => never[];
@@ -2744,6 +2761,9 @@ declare const VDataTableVirtual: {
2744
2761
  type: vue.PropType<IconValue>;
2745
2762
  default: string;
2746
2763
  };
2764
+ headerProps: {
2765
+ type: vue.PropType<Record<string, any>>;
2766
+ };
2747
2767
  sortBy: {
2748
2768
  type: vue.PropType<readonly SortItem[]>;
2749
2769
  default: () => never[];
@@ -2891,6 +2911,7 @@ declare const VDataTableServer: {
2891
2911
  }[] | undefined;
2892
2912
  theme?: string | undefined;
2893
2913
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
2914
+ headerProps?: Record<string, any> | undefined;
2894
2915
  } & {
2895
2916
  "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
2896
2917
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -2977,6 +2998,7 @@ declare const VDataTableServer: {
2977
2998
  }[] | undefined;
2978
2999
  theme?: string | undefined;
2979
3000
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
3001
+ headerProps?: Record<string, any> | undefined;
2980
3002
  } & {
2981
3003
  "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
2982
3004
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -3227,6 +3249,7 @@ declare const VDataTableServer: {
3227
3249
  }[] | undefined;
3228
3250
  theme?: string | undefined;
3229
3251
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
3252
+ headerProps?: Record<string, any> | undefined;
3230
3253
  } & {
3231
3254
  "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
3232
3255
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -3350,6 +3373,7 @@ declare const VDataTableServer: {
3350
3373
  }[] | undefined;
3351
3374
  theme?: string | undefined;
3352
3375
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
3376
+ headerProps?: Record<string, any> | undefined;
3353
3377
  } & {
3354
3378
  "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
3355
3379
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -3629,6 +3653,9 @@ declare const VDataTableServer: {
3629
3653
  type: vue.PropType<IconValue>;
3630
3654
  default: string;
3631
3655
  };
3656
+ headerProps: {
3657
+ type: vue.PropType<Record<string, any>>;
3658
+ };
3632
3659
  sortBy: {
3633
3660
  type: vue.PropType<readonly SortItem[]>;
3634
3661
  default: () => never[];
@@ -3799,6 +3826,9 @@ declare const VDataTableServer: {
3799
3826
  type: vue.PropType<IconValue>;
3800
3827
  default: string;
3801
3828
  };
3829
+ headerProps: {
3830
+ type: vue.PropType<Record<string, any>>;
3831
+ };
3802
3832
  sortBy: {
3803
3833
  type: vue.PropType<readonly SortItem[]>;
3804
3834
  default: () => never[];
@@ -22814,6 +22814,7 @@ declare const VDataTable: {
22814
22814
  customKeyFilter?: FilterKeyFunctions | undefined;
22815
22815
  filterKeys?: FilterKeys | undefined;
22816
22816
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
22817
+ headerProps?: Record<string, any> | undefined;
22817
22818
  } & {
22818
22819
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
22819
22820
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -22906,6 +22907,7 @@ declare const VDataTable: {
22906
22907
  customKeyFilter?: FilterKeyFunctions | undefined;
22907
22908
  filterKeys?: FilterKeys | undefined;
22908
22909
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
22910
+ headerProps?: Record<string, any> | undefined;
22909
22911
  } & {
22910
22912
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
22911
22913
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -23163,6 +23165,7 @@ declare const VDataTable: {
23163
23165
  customKeyFilter?: FilterKeyFunctions | undefined;
23164
23166
  filterKeys?: FilterKeys | undefined;
23165
23167
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
23168
+ headerProps?: Record<string, any> | undefined;
23166
23169
  } & {
23167
23170
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
23168
23171
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -23293,6 +23296,7 @@ declare const VDataTable: {
23293
23296
  customKeyFilter?: FilterKeyFunctions | undefined;
23294
23297
  filterKeys?: FilterKeys | undefined;
23295
23298
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
23299
+ headerProps?: Record<string, any> | undefined;
23296
23300
  } & {
23297
23301
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
23298
23302
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -23584,6 +23588,9 @@ declare const VDataTable: {
23584
23588
  type: vue.PropType<IconValue>;
23585
23589
  default: string;
23586
23590
  };
23591
+ headerProps: {
23592
+ type: vue.PropType<Record<string, any>>;
23593
+ };
23587
23594
  sortBy: {
23588
23595
  type: vue.PropType<readonly SortItem[]>;
23589
23596
  default: () => never[];
@@ -23758,6 +23765,9 @@ declare const VDataTable: {
23758
23765
  type: vue.PropType<IconValue>;
23759
23766
  default: string;
23760
23767
  };
23768
+ headerProps: {
23769
+ type: vue.PropType<Record<string, any>>;
23770
+ };
23761
23771
  sortBy: {
23762
23772
  type: vue.PropType<readonly SortItem[]>;
23763
23773
  default: () => never[];
@@ -24191,6 +24201,7 @@ declare const VDataTableVirtual: {
24191
24201
  customKeyFilter?: FilterKeyFunctions | undefined;
24192
24202
  filterKeys?: FilterKeys | undefined;
24193
24203
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
24204
+ headerProps?: Record<string, any> | undefined;
24194
24205
  } & {
24195
24206
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
24196
24207
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -24261,6 +24272,7 @@ declare const VDataTableVirtual: {
24261
24272
  customKeyFilter?: FilterKeyFunctions | undefined;
24262
24273
  filterKeys?: FilterKeys | undefined;
24263
24274
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
24275
+ headerProps?: Record<string, any> | undefined;
24264
24276
  } & {
24265
24277
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
24266
24278
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -24467,6 +24479,7 @@ declare const VDataTableVirtual: {
24467
24479
  customKeyFilter?: FilterKeyFunctions | undefined;
24468
24480
  filterKeys?: FilterKeys | undefined;
24469
24481
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
24482
+ headerProps?: Record<string, any> | undefined;
24470
24483
  } & {
24471
24484
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
24472
24485
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -24562,6 +24575,7 @@ declare const VDataTableVirtual: {
24562
24575
  customKeyFilter?: FilterKeyFunctions | undefined;
24563
24576
  filterKeys?: FilterKeys | undefined;
24564
24577
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
24578
+ headerProps?: Record<string, any> | undefined;
24565
24579
  } & {
24566
24580
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
24567
24581
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -24772,6 +24786,9 @@ declare const VDataTableVirtual: {
24772
24786
  type: vue.PropType<IconValue>;
24773
24787
  default: string;
24774
24788
  };
24789
+ headerProps: {
24790
+ type: vue.PropType<Record<string, any>>;
24791
+ };
24775
24792
  sortBy: {
24776
24793
  type: vue.PropType<readonly SortItem[]>;
24777
24794
  default: () => never[];
@@ -24891,6 +24908,9 @@ declare const VDataTableVirtual: {
24891
24908
  type: vue.PropType<IconValue>;
24892
24909
  default: string;
24893
24910
  };
24911
+ headerProps: {
24912
+ type: vue.PropType<Record<string, any>>;
24913
+ };
24894
24914
  sortBy: {
24895
24915
  type: vue.PropType<readonly SortItem[]>;
24896
24916
  default: () => never[];
@@ -25038,6 +25058,7 @@ declare const VDataTableServer: {
25038
25058
  }[] | undefined;
25039
25059
  theme?: string | undefined;
25040
25060
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
25061
+ headerProps?: Record<string, any> | undefined;
25041
25062
  } & {
25042
25063
  "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
25043
25064
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -25124,6 +25145,7 @@ declare const VDataTableServer: {
25124
25145
  }[] | undefined;
25125
25146
  theme?: string | undefined;
25126
25147
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
25148
+ headerProps?: Record<string, any> | undefined;
25127
25149
  } & {
25128
25150
  "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
25129
25151
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -25374,6 +25396,7 @@ declare const VDataTableServer: {
25374
25396
  }[] | undefined;
25375
25397
  theme?: string | undefined;
25376
25398
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
25399
+ headerProps?: Record<string, any> | undefined;
25377
25400
  } & {
25378
25401
  "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
25379
25402
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -25497,6 +25520,7 @@ declare const VDataTableServer: {
25497
25520
  }[] | undefined;
25498
25521
  theme?: string | undefined;
25499
25522
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
25523
+ headerProps?: Record<string, any> | undefined;
25500
25524
  } & {
25501
25525
  "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
25502
25526
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -25776,6 +25800,9 @@ declare const VDataTableServer: {
25776
25800
  type: vue.PropType<IconValue>;
25777
25801
  default: string;
25778
25802
  };
25803
+ headerProps: {
25804
+ type: vue.PropType<Record<string, any>>;
25805
+ };
25779
25806
  sortBy: {
25780
25807
  type: vue.PropType<readonly SortItem[]>;
25781
25808
  default: () => never[];
@@ -25946,6 +25973,9 @@ declare const VDataTableServer: {
25946
25973
  type: vue.PropType<IconValue>;
25947
25974
  default: string;
25948
25975
  };
25976
+ headerProps: {
25977
+ type: vue.PropType<Record<string, any>>;
25978
+ };
25949
25979
  sortBy: {
25950
25980
  type: vue.PropType<readonly SortItem[]>;
25951
25981
  default: () => never[];
@@ -15,7 +15,7 @@ export const createVuetify = function () {
15
15
  ...options
16
16
  });
17
17
  };
18
- export const version = "3.4.10-dev.2024-01-17";
18
+ export const version = "3.4.10-dev.2024-01-18";
19
19
  createVuetify.version = version;
20
20
  export { components, directives };
21
21
  export * from "./composables/index.mjs";
package/lib/framework.mjs CHANGED
@@ -93,7 +93,7 @@ export function createVuetify() {
93
93
  date
94
94
  };
95
95
  }
96
- export const version = "3.4.10-dev.2024-01-17";
96
+ export const version = "3.4.10-dev.2024-01-18";
97
97
  createVuetify.version = version;
98
98
 
99
99
  // Vue's inject() can only be used in setup
package/lib/index.d.mts CHANGED
@@ -493,40 +493,40 @@ declare module '@vue/runtime-core' {
493
493
  }
494
494
 
495
495
  export interface GlobalComponents {
496
+ VApp: typeof import('vuetify/components')['VApp']
496
497
  VAppBar: typeof import('vuetify/components')['VAppBar']
497
498
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
498
499
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
499
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
500
- VApp: typeof import('vuetify/components')['VApp']
501
500
  VAlert: typeof import('vuetify/components')['VAlert']
502
501
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
502
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
503
+ VAvatar: typeof import('vuetify/components')['VAvatar']
503
504
  VBadge: typeof import('vuetify/components')['VBadge']
504
505
  VBanner: typeof import('vuetify/components')['VBanner']
505
506
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
506
507
  VBannerText: typeof import('vuetify/components')['VBannerText']
507
- VAvatar: typeof import('vuetify/components')['VAvatar']
508
508
  VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
509
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
510
509
  VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
511
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
512
- VCarousel: typeof import('vuetify/components')['VCarousel']
513
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
514
- VBtn: typeof import('vuetify/components')['VBtn']
515
510
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
516
511
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
517
512
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
513
+ VBtn: typeof import('vuetify/components')['VBtn']
514
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
515
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
518
516
  VCard: typeof import('vuetify/components')['VCard']
519
517
  VCardActions: typeof import('vuetify/components')['VCardActions']
520
518
  VCardItem: typeof import('vuetify/components')['VCardItem']
521
519
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
522
520
  VCardText: typeof import('vuetify/components')['VCardText']
523
521
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
524
- VChip: typeof import('vuetify/components')['VChip']
525
522
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
526
523
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
524
+ VCarousel: typeof import('vuetify/components')['VCarousel']
525
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
526
+ VChip: typeof import('vuetify/components')['VChip']
527
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
527
528
  VCode: typeof import('vuetify/components')['VCode']
528
529
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
529
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
530
530
  VCombobox: typeof import('vuetify/components')['VCombobox']
531
531
  VDataTable: typeof import('vuetify/components')['VDataTable']
532
532
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -534,35 +534,35 @@ declare module '@vue/runtime-core' {
534
534
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
535
535
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
536
536
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
537
- VDialog: typeof import('vuetify/components')['VDialog']
537
+ VCounter: typeof import('vuetify/components')['VCounter']
538
538
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
539
539
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
540
540
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
541
541
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
542
542
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
543
543
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
544
- VCounter: typeof import('vuetify/components')['VCounter']
544
+ VDialog: typeof import('vuetify/components')['VDialog']
545
+ VDivider: typeof import('vuetify/components')['VDivider']
545
546
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
546
547
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
547
548
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
548
549
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
549
- VDivider: typeof import('vuetify/components')['VDivider']
550
- VFileInput: typeof import('vuetify/components')['VFileInput']
551
- VFooter: typeof import('vuetify/components')['VFooter']
552
550
  VField: typeof import('vuetify/components')['VField']
553
551
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
552
+ VFooter: typeof import('vuetify/components')['VFooter']
553
+ VFileInput: typeof import('vuetify/components')['VFileInput']
554
554
  VIcon: typeof import('vuetify/components')['VIcon']
555
555
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
556
556
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
557
557
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
558
558
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
559
- VKbd: typeof import('vuetify/components')['VKbd']
560
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
561
559
  VImg: typeof import('vuetify/components')['VImg']
560
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
562
561
  VInput: typeof import('vuetify/components')['VInput']
563
- VLabel: typeof import('vuetify/components')['VLabel']
564
562
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
565
563
  VItem: typeof import('vuetify/components')['VItem']
564
+ VKbd: typeof import('vuetify/components')['VKbd']
565
+ VLabel: typeof import('vuetify/components')['VLabel']
566
566
  VList: typeof import('vuetify/components')['VList']
567
567
  VListGroup: typeof import('vuetify/components')['VListGroup']
568
568
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -573,49 +573,49 @@ declare module '@vue/runtime-core' {
573
573
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
574
574
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
575
575
  VMain: typeof import('vuetify/components')['VMain']
576
- VMessages: typeof import('vuetify/components')['VMessages']
577
576
  VMenu: typeof import('vuetify/components')['VMenu']
578
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
577
+ VMessages: typeof import('vuetify/components')['VMessages']
579
578
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
580
579
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
581
580
  VOverlay: typeof import('vuetify/components')['VOverlay']
582
581
  VPagination: typeof import('vuetify/components')['VPagination']
583
582
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
584
- VRating: typeof import('vuetify/components')['VRating']
583
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
585
584
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
585
+ VRating: typeof import('vuetify/components')['VRating']
586
586
  VSelect: typeof import('vuetify/components')['VSelect']
587
587
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
588
588
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
589
- VSlider: typeof import('vuetify/components')['VSlider']
590
589
  VSheet: typeof import('vuetify/components')['VSheet']
591
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
592
590
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
591
+ VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
592
+ VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
593
+ VSlider: typeof import('vuetify/components')['VSlider']
593
594
  VSwitch: typeof import('vuetify/components')['VSwitch']
595
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
594
596
  VStepper: typeof import('vuetify/components')['VStepper']
595
597
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
596
598
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
597
599
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
598
600
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
599
601
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
600
- VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
601
- VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
602
602
  VSystemBar: typeof import('vuetify/components')['VSystemBar']
603
603
  VTabs: typeof import('vuetify/components')['VTabs']
604
604
  VTab: typeof import('vuetify/components')['VTab']
605
605
  VTable: typeof import('vuetify/components')['VTable']
606
- VTextField: typeof import('vuetify/components')['VTextField']
607
606
  VTextarea: typeof import('vuetify/components')['VTextarea']
607
+ VTextField: typeof import('vuetify/components')['VTextField']
608
608
  VTimeline: typeof import('vuetify/components')['VTimeline']
609
609
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
610
610
  VToolbar: typeof import('vuetify/components')['VToolbar']
611
611
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
612
612
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
613
+ VTooltip: typeof import('vuetify/components')['VTooltip']
613
614
  VWindow: typeof import('vuetify/components')['VWindow']
614
615
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
615
- VTooltip: typeof import('vuetify/components')['VTooltip']
616
616
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
617
- VForm: typeof import('vuetify/components')['VForm']
618
617
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
618
+ VForm: typeof import('vuetify/components')['VForm']
619
619
  VContainer: typeof import('vuetify/components')['VContainer']
620
620
  VCol: typeof import('vuetify/components')['VCol']
621
621
  VRow: typeof import('vuetify/components')['VRow']
@@ -649,14 +649,14 @@ declare module '@vue/runtime-core' {
649
649
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
650
650
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
651
651
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
652
- VPicker: typeof import('vuetify/labs/components')['VPicker']
653
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
654
652
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
655
653
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
656
654
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
657
655
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
658
656
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
659
657
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
658
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
659
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
660
660
  VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
661
661
  }
662
662
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vuetify/nightly",
3
3
  "description": "Vue Material Component Framework",
4
- "version": "3.4.10-dev.2024-01-17",
4
+ "version": "3.4.10-dev.2024-01-18",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"