@vuetify/nightly 3.7.3-master.2024-10-17 → 3.7.3-master.2024-10-24
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 +5801 -5753
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +138 -138
- package/dist/json/tags.json +14 -1
- package/dist/json/web-types.json +10360 -10272
- package/dist/vuetify-labs.css +4852 -4852
- package/dist/vuetify-labs.d.ts +2 -1
- package/dist/vuetify-labs.esm.js +3 -3
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +3 -3
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1368 -1368
- package/dist/vuetify.d.ts +52 -51
- package/dist/vuetify.esm.js +3 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +3 -3
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTableFooter.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +1 -0
- package/lib/components/VList/_variables.scss +0 -11
- package/lib/components/index.d.mts +1 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +50 -50
- package/package.json +1 -1
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"VDataTableFooter.mjs","names":["VPagination","VSelect","usePagination","IconValue","useLocale","computed","genericComponent","propsFactory","useRender","makeVDataTableFooterProps","prevIcon","type","default","nextIcon","firstIcon","lastIcon","itemsPerPageText","String","pageText","firstPageLabel","prevPageLabel","nextPageLabel","lastPageLabel","itemsPerPageOptions","Array","value","title","showCurrentPage","Boolean","VDataTableFooter","name","props","setup","_ref","slots","t","page","pageCount","startIndex","stopIndex","itemsLength","itemsPerPage","setItemsPerPage","map","option","isNaN","Number","paginationProps","filterProps","_createVNode","prepend","v","_mergeProps","$event"],"sources":["../../../src/components/VDataTable/VDataTableFooter.tsx"],"sourcesContent":["// Styles\nimport './VDataTableFooter.sass'\n\n// Components\nimport { VPagination } from '@/components/VPagination'\nimport { VSelect } from '@/components/VSelect'\n\n// Composables\nimport { usePagination } from './composables/paginate'\nimport { IconValue } from '@/composables/icons'\nimport { useLocale } from '@/composables/locale'\n\n// Utilities\nimport { computed } from 'vue'\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\n\nexport const makeVDataTableFooterProps = propsFactory({\n prevIcon: {\n type: IconValue,\n default: '$prev',\n },\n nextIcon: {\n type: IconValue,\n default: '$next',\n },\n firstIcon: {\n type: IconValue,\n default: '$first',\n },\n lastIcon: {\n type: IconValue,\n default: '$last',\n },\n itemsPerPageText: {\n type: String,\n default: '$vuetify.dataFooter.itemsPerPageText',\n },\n pageText: {\n type: String,\n default: '$vuetify.dataFooter.pageText',\n },\n firstPageLabel: {\n type: String,\n default: '$vuetify.dataFooter.firstPage',\n },\n prevPageLabel: {\n type: String,\n default: '$vuetify.dataFooter.prevPage',\n },\n nextPageLabel: {\n type: String,\n default: '$vuetify.dataFooter.nextPage',\n },\n lastPageLabel: {\n type: String,\n default: '$vuetify.dataFooter.lastPage',\n },\n itemsPerPageOptions: {\n type: Array as PropType<readonly (number | { title: string, value: number })[]>,\n default: () => ([\n { value: 10, title: '10' },\n { value: 25, title: '25' },\n { value: 50, title: '50' },\n { value: 100, title: '100' },\n { value: -1, title: '$vuetify.dataFooter.itemsPerPageAll' },\n ]),\n },\n showCurrentPage: Boolean,\n}, 'VDataTableFooter')\n\nexport const VDataTableFooter = genericComponent<{ prepend: never }>()({\n name: 'VDataTableFooter',\n\n props: makeVDataTableFooterProps(),\n\n setup (props, { slots }) {\n const { t } = useLocale()\n const { page, pageCount, startIndex, stopIndex, itemsLength, itemsPerPage, setItemsPerPage } = usePagination()\n\n const itemsPerPageOptions = computed(() => (\n props.itemsPerPageOptions.map(option => {\n if (typeof option === 'number') {\n return {\n value: option,\n title: option === -1\n ? t('$vuetify.dataFooter.itemsPerPageAll')\n : String(option),\n }\n }\n\n return {\n ...option,\n title: !isNaN(Number(option.title)) ? option.title : t(option.title),\n }\n })\n ))\n\n useRender(() => {\n const paginationProps = VPagination.filterProps(props)\n\n return (\n <div class=\"v-data-table-footer\">\n { slots.prepend?.() }\n\n <div class=\"v-data-table-footer__items-per-page\">\n <span>{ t(props.itemsPerPageText) }</span>\n\n <VSelect\n items={ itemsPerPageOptions.value }\n modelValue={ itemsPerPage.value }\n onUpdate:modelValue={ v => setItemsPerPage(Number(v)) }\n density=\"compact\"\n variant=\"outlined\"\n hide-details\n />\n </div>\n\n <div class=\"v-data-table-footer__info\">\n <div>\n { t(props.pageText, !itemsLength.value ? 0 : startIndex.value + 1, stopIndex.value, itemsLength.value) }\n </div>\n </div>\n\n <div class=\"v-data-table-footer__pagination\">\n <VPagination\n v-model={ page.value }\n density=\"comfortable\"\n first-aria-label={ props.firstPageLabel }\n last-aria-label={ props.lastPageLabel }\n length={ pageCount.value }\n next-aria-label={ props.nextPageLabel }\n previous-aria-label={ props.prevPageLabel }\n rounded\n show-first-last-page\n total-visible={ props.showCurrentPage ? 1 : 0 }\n variant=\"plain\"\n { ...paginationProps }\n ></VPagination>\n </div>\n </div>\n )\n })\n\n return {}\n },\n})\n"],"mappings":"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","ignoreList":[]}
|
1
|
+
{"version":3,"file":"VDataTableFooter.mjs","names":["VPagination","VSelect","usePagination","IconValue","useLocale","computed","genericComponent","propsFactory","useRender","makeVDataTableFooterProps","prevIcon","type","default","nextIcon","firstIcon","lastIcon","itemsPerPageText","String","pageText","firstPageLabel","prevPageLabel","nextPageLabel","lastPageLabel","itemsPerPageOptions","Array","value","title","showCurrentPage","Boolean","VDataTableFooter","name","props","setup","_ref","slots","t","page","pageCount","startIndex","stopIndex","itemsLength","itemsPerPage","setItemsPerPage","map","option","isNaN","Number","paginationProps","filterProps","_createVNode","prepend","v","_mergeProps","$event"],"sources":["../../../src/components/VDataTable/VDataTableFooter.tsx"],"sourcesContent":["// Styles\nimport './VDataTableFooter.sass'\n\n// Components\nimport { VPagination } from '@/components/VPagination'\nimport { VSelect } from '@/components/VSelect'\n\n// Composables\nimport { usePagination } from './composables/paginate'\nimport { IconValue } from '@/composables/icons'\nimport { useLocale } from '@/composables/locale'\n\n// Utilities\nimport { computed } from 'vue'\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\n\nexport const makeVDataTableFooterProps = propsFactory({\n prevIcon: {\n type: IconValue,\n default: '$prev',\n },\n nextIcon: {\n type: IconValue,\n default: '$next',\n },\n firstIcon: {\n type: IconValue,\n default: '$first',\n },\n lastIcon: {\n type: IconValue,\n default: '$last',\n },\n itemsPerPageText: {\n type: String,\n default: '$vuetify.dataFooter.itemsPerPageText',\n },\n pageText: {\n type: String,\n default: '$vuetify.dataFooter.pageText',\n },\n firstPageLabel: {\n type: String,\n default: '$vuetify.dataFooter.firstPage',\n },\n prevPageLabel: {\n type: String,\n default: '$vuetify.dataFooter.prevPage',\n },\n nextPageLabel: {\n type: String,\n default: '$vuetify.dataFooter.nextPage',\n },\n lastPageLabel: {\n type: String,\n default: '$vuetify.dataFooter.lastPage',\n },\n itemsPerPageOptions: {\n type: Array as PropType<readonly (number | { title: string, value: number })[]>,\n default: () => ([\n { value: 10, title: '10' },\n { value: 25, title: '25' },\n { value: 50, title: '50' },\n { value: 100, title: '100' },\n { value: -1, title: '$vuetify.dataFooter.itemsPerPageAll' },\n ]),\n },\n showCurrentPage: Boolean,\n}, 'VDataTableFooter')\n\nexport const VDataTableFooter = genericComponent<{ prepend: never }>()({\n name: 'VDataTableFooter',\n\n props: makeVDataTableFooterProps(),\n\n setup (props, { slots }) {\n const { t } = useLocale()\n const { page, pageCount, startIndex, stopIndex, itemsLength, itemsPerPage, setItemsPerPage } = usePagination()\n\n const itemsPerPageOptions = computed(() => (\n props.itemsPerPageOptions.map(option => {\n if (typeof option === 'number') {\n return {\n value: option,\n title: option === -1\n ? t('$vuetify.dataFooter.itemsPerPageAll')\n : String(option),\n }\n }\n\n return {\n ...option,\n title: !isNaN(Number(option.title)) ? option.title : t(option.title),\n }\n })\n ))\n\n useRender(() => {\n const paginationProps = VPagination.filterProps(props)\n\n return (\n <div class=\"v-data-table-footer\">\n { slots.prepend?.() }\n\n <div class=\"v-data-table-footer__items-per-page\">\n <span>{ t(props.itemsPerPageText) }</span>\n\n <VSelect\n items={ itemsPerPageOptions.value }\n modelValue={ itemsPerPage.value }\n onUpdate:modelValue={ v => setItemsPerPage(Number(v)) }\n density=\"compact\"\n variant=\"outlined\"\n hide-details\n />\n </div>\n\n <div class=\"v-data-table-footer__info\">\n <div>\n { t(props.pageText, !itemsLength.value ? 0 : startIndex.value + 1, stopIndex.value, itemsLength.value) }\n </div>\n </div>\n\n <div class=\"v-data-table-footer__pagination\">\n <VPagination\n v-model={ page.value }\n density=\"comfortable\"\n first-aria-label={ props.firstPageLabel }\n last-aria-label={ props.lastPageLabel }\n length={ pageCount.value }\n next-aria-label={ props.nextPageLabel }\n previous-aria-label={ props.prevPageLabel }\n rounded\n show-first-last-page\n total-visible={ props.showCurrentPage ? 1 : 0 }\n variant=\"plain\"\n { ...paginationProps }\n ></VPagination>\n </div>\n </div>\n )\n })\n\n return {}\n },\n})\n\nexport type VDataTableFooter = InstanceType<typeof VDataTableFooter>\n"],"mappings":"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","ignoreList":[]}
|
@@ -1999,6 +1999,7 @@ declare const VDataTableFooter: {
|
|
1999
1999
|
};
|
2000
2000
|
showCurrentPage: BooleanConstructor;
|
2001
2001
|
}>>;
|
2002
|
+
type VDataTableFooter = InstanceType<typeof VDataTableFooter>;
|
2002
2003
|
|
2003
2004
|
type VDataTableVirtualSlotProps<T> = Omit<VDataTableSlotProps<T>, 'setItemsPerPage' | 'page' | 'pageCount' | 'itemsPerPage'>;
|
2004
2005
|
type VDataTableVirtualSlots<T> = VDataTableRowsSlots<T> & VDataTableHeadersSlots & {
|
@@ -23,15 +23,12 @@ $list-nav-subheader-font-size: .75rem !default;
|
|
23
23
|
$list-subheader-color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity)) !default;
|
24
24
|
$list-subheader-font-size: .875rem !default;
|
25
25
|
$list-subheader-font-weight: 400 !default;
|
26
|
-
$list-subheader-inset-margin: 56px !default;
|
27
26
|
$list-subheader-inset-padding-start: 56px !default;
|
28
27
|
$list-subheader-line-height: 1.375rem !default;
|
29
28
|
$list-subheader-min-height: 40px !default;
|
30
29
|
$list-subheader-padding-end: 16px !default;
|
31
|
-
$list-subheader-padding-start: 16px !default;
|
32
30
|
$list-subheader-padding-top: 0 !default;
|
33
31
|
$list-subheader-min-height-multiplier: 1 !default;
|
34
|
-
$list-subheader-text-opacity: var(--v-medium-emphasis-opacity) !default;
|
35
32
|
$list-subheader-transition: 0.2s min-height settings.$standard-easing !default;
|
36
33
|
|
37
34
|
// VListItem
|
@@ -50,7 +47,6 @@ $list-item-slim-prepend-size: 28px !default;
|
|
50
47
|
$list-item-plain-opacity: .62 !default;
|
51
48
|
$list-item-rounded-border-radius: map.get(settings.$rounded, null) !default;
|
52
49
|
$list-item-one-line-min-height: 48px !default;
|
53
|
-
$list-item-one-line-padding: 8px 16px !default;
|
54
50
|
$list-item-two-line-min-height: 64px !default;
|
55
51
|
$list-item-two-line-padding: 12px 16px !default;
|
56
52
|
$list-item-three-line-min-height: 88px !default;
|
@@ -58,11 +54,8 @@ $list-item-three-line-padding: 16px 16px !default;
|
|
58
54
|
|
59
55
|
$list-item-action-spacer-width: 16px !default;
|
60
56
|
$list-item-slim-action-spacer-width: 4px !default;
|
61
|
-
$list-item-avatar-align-self: flex-start !default;
|
62
57
|
$list-item-avatar-margin-end: 16px !default;
|
63
58
|
$list-item-avatar-margin-start: 16px !default;
|
64
|
-
$list-item-avatar-size: 40px !default;
|
65
|
-
$list-item-avatar-margin-y: 4px !default;
|
66
59
|
$list-item-slim-spacer-width: 20px !default;
|
67
60
|
$list-item-slim-avatar-spacer-width: 4px !default;
|
68
61
|
|
@@ -71,8 +64,6 @@ $list-item-action-margin-start: 8px !default;
|
|
71
64
|
|
72
65
|
$list-item-icon-margin-end: 32px !default;
|
73
66
|
$list-item-icon-margin-start: 32px !default;
|
74
|
-
$list-item-slim-icon-margin: 8px !default;
|
75
|
-
$list-item-icon-size: 16px !default;
|
76
67
|
|
77
68
|
$list-item-media-margin-bottom: 0 !default;
|
78
69
|
$list-item-media-margin-end: 16px !default;
|
@@ -105,13 +96,11 @@ $list-item-subtitle-word-break: initial !default;
|
|
105
96
|
|
106
97
|
$list-item-title-font-size: tools.map-deep-get(settings.$typography, 'body-1', 'size') !default;
|
107
98
|
$list-item-title-font-weight: tools.map-deep-get(settings.$typography, 'body-1', 'weight') !default;
|
108
|
-
$list-item-title-header-padding: 0 !default;
|
109
99
|
$list-item-title-hyphens: auto !default;
|
110
100
|
$list-item-title-letter-spacing: tools.map-deep-get(settings.$typography, 'subtitle-1', 'letter-spacing') !default;
|
111
101
|
$list-item-title-line-height: tools.map-deep-get(settings.$typography, 'body-1', 'line-height') !default;
|
112
102
|
$list-item-title-overflow-wrap: normal !default;
|
113
103
|
$list-item-title-padding: 0 !default;
|
114
|
-
$list-item-title-text-overflow: ellipsis !default;
|
115
104
|
$list-item-title-text-transform: none !default;
|
116
105
|
$list-item-title-word-break: normal !default;
|
117
106
|
$list-item-title-word-wrap: break-word !default;
|
@@ -25552,6 +25552,7 @@ declare const VDataTableFooter: {
|
|
25552
25552
|
};
|
25553
25553
|
showCurrentPage: BooleanConstructor;
|
25554
25554
|
}>>;
|
25555
|
+
type VDataTableFooter = InstanceType<typeof VDataTableFooter>;
|
25555
25556
|
|
25556
25557
|
type VDataTableVirtualSlotProps<T> = Omit<VDataTableSlotProps<T>, 'setItemsPerPage' | 'page' | 'pageCount' | 'itemsPerPage'>;
|
25557
25558
|
type VDataTableVirtualSlots<T> = VDataTableRowsSlots<T> & VDataTableHeadersSlots & {
|
package/lib/entry-bundler.mjs
CHANGED
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
16
16
|
...options
|
17
17
|
});
|
18
18
|
};
|
19
|
-
export const version = "3.7.3-master.2024-10-
|
19
|
+
export const version = "3.7.3-master.2024-10-24";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.mjs";
|
package/lib/framework.mjs
CHANGED
package/lib/index.d.mts
CHANGED
@@ -490,44 +490,37 @@ declare module 'vue' {
|
|
490
490
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
491
491
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
492
492
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
493
|
-
VBanner: typeof import('vuetify/components')['VBanner']
|
494
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
495
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
496
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
497
493
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
498
494
|
VAlert: typeof import('vuetify/components')['VAlert']
|
499
495
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
500
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
501
496
|
VBadge: typeof import('vuetify/components')['VBadge']
|
497
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
498
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
499
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
500
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
501
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
502
502
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
503
503
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
504
504
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
505
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
506
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
505
507
|
VBtn: typeof import('vuetify/components')['VBtn']
|
506
508
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
507
|
-
|
509
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
510
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
508
511
|
VCard: typeof import('vuetify/components')['VCard']
|
509
512
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
510
513
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
511
514
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
512
515
|
VCardText: typeof import('vuetify/components')['VCardText']
|
513
516
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
514
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
515
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
516
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
517
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
518
|
-
VChip: typeof import('vuetify/components')['VChip']
|
519
517
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
520
518
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
519
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
520
|
+
VChip: typeof import('vuetify/components')['VChip']
|
521
521
|
VCode: typeof import('vuetify/components')['VCode']
|
522
|
-
|
523
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
524
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
525
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
526
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
527
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
528
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
522
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
529
523
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
530
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
531
524
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
532
525
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
533
526
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -535,32 +528,37 @@ declare module 'vue' {
|
|
535
528
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
536
529
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
537
530
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
531
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
532
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
533
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
534
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
535
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
536
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
537
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
538
538
|
VDialog: typeof import('vuetify/components')['VDialog']
|
539
|
-
|
539
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
540
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
541
|
+
VField: typeof import('vuetify/components')['VField']
|
542
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
543
|
+
VFab: typeof import('vuetify/components')['VFab']
|
540
544
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
541
545
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
542
546
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
543
547
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
544
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
545
|
-
VField: typeof import('vuetify/components')['VField']
|
546
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
547
548
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
548
|
-
|
549
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
549
550
|
VIcon: typeof import('vuetify/components')['VIcon']
|
550
551
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
551
552
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
552
553
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
553
554
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
554
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
555
555
|
VImg: typeof import('vuetify/components')['VImg']
|
556
|
-
|
556
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
557
557
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
558
558
|
VItem: typeof import('vuetify/components')['VItem']
|
559
|
-
|
560
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
559
|
+
VInput: typeof import('vuetify/components')['VInput']
|
561
560
|
VLabel: typeof import('vuetify/components')['VLabel']
|
562
|
-
|
563
|
-
VMain: typeof import('vuetify/components')['VMain']
|
561
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
564
562
|
VList: typeof import('vuetify/components')['VList']
|
565
563
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
566
564
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -570,55 +568,57 @@ declare module 'vue' {
|
|
570
568
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
571
569
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
572
570
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
573
|
-
|
571
|
+
VMain: typeof import('vuetify/components')['VMain']
|
574
572
|
VMessages: typeof import('vuetify/components')['VMessages']
|
575
|
-
|
573
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
574
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
576
575
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
577
576
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
578
|
-
|
577
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
579
578
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
580
|
-
|
581
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
579
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
582
580
|
VRating: typeof import('vuetify/components')['VRating']
|
583
|
-
|
581
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
584
582
|
VSelect: typeof import('vuetify/components')['VSelect']
|
583
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
585
584
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
586
|
-
|
585
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
587
586
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
588
587
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
589
|
-
|
588
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
590
589
|
VSlider: typeof import('vuetify/components')['VSlider']
|
590
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
591
591
|
VStepper: typeof import('vuetify/components')['VStepper']
|
592
592
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
593
593
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
594
594
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
595
595
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
596
596
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
597
|
-
|
597
|
+
VTable: typeof import('vuetify/components')['VTable']
|
598
598
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
599
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
599
600
|
VTab: typeof import('vuetify/components')['VTab']
|
600
601
|
VTabs: typeof import('vuetify/components')['VTabs']
|
601
602
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
602
603
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
603
604
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
604
|
-
|
605
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
605
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
606
606
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
607
607
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
608
608
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
609
609
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
610
610
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
611
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
612
611
|
VWindow: typeof import('vuetify/components')['VWindow']
|
613
612
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
613
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
614
614
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
615
615
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
616
616
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
617
|
+
VForm: typeof import('vuetify/components')['VForm']
|
617
618
|
VContainer: typeof import('vuetify/components')['VContainer']
|
618
619
|
VCol: typeof import('vuetify/components')['VCol']
|
619
620
|
VRow: typeof import('vuetify/components')['VRow']
|
620
621
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
621
|
-
VForm: typeof import('vuetify/components')['VForm']
|
622
622
|
VHover: typeof import('vuetify/components')['VHover']
|
623
623
|
VLayout: typeof import('vuetify/components')['VLayout']
|
624
624
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
@@ -631,8 +631,8 @@ declare module 'vue' {
|
|
631
631
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
632
632
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
633
633
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
634
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
635
634
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
635
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
636
636
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
637
637
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
638
638
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
@@ -656,18 +656,18 @@ declare module 'vue' {
|
|
656
656
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
657
657
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
658
658
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
659
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
660
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
661
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
659
662
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
660
663
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
661
664
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
662
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
663
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
664
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
665
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
666
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
667
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
668
665
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
669
666
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
670
667
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
668
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
669
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
670
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
671
671
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
672
672
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
673
673
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|