@vuetify/nightly 3.7.3-master.2024-10-21 → 3.7.3-master.2024-10-25
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 +5297 -5249
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +166 -166
- package/dist/json/tags.json +14 -1
- package/dist/json/web-types.json +9812 -9724
- package/dist/vuetify-labs.css +5075 -5075
- 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 +1490 -1490
- package/dist/vuetify.d.ts +61 -60
- 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/index.d.mts +1 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +59 -59
- 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 & {
|
@@ -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-25";
|
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
@@ -486,26 +486,21 @@ declare module 'vue' {
|
|
486
486
|
$children?: VNodeChild
|
487
487
|
}
|
488
488
|
export interface GlobalComponents {
|
489
|
-
|
490
|
-
|
489
|
+
VApp: typeof import('vuetify/components')['VApp']
|
490
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
491
491
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
492
492
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
493
493
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
494
|
-
|
494
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
495
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
496
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
495
497
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
496
|
-
VApp: typeof import('vuetify/components')['VApp']
|
497
498
|
VBanner: typeof import('vuetify/components')['VBanner']
|
498
499
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
499
500
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
500
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
501
|
-
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
502
|
-
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
503
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
504
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
505
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
506
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
507
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
508
501
|
VBtn: typeof import('vuetify/components')['VBtn']
|
502
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
503
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
509
504
|
VCard: typeof import('vuetify/components')['VCard']
|
510
505
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
511
506
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
@@ -514,13 +509,27 @@ declare module 'vue' {
|
|
514
509
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
515
510
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
516
511
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
512
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
513
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
514
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
515
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
516
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
517
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
517
518
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
518
519
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
519
|
-
VChip: typeof import('vuetify/components')['VChip']
|
520
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
521
520
|
VCode: typeof import('vuetify/components')['VCode']
|
522
|
-
|
521
|
+
VChip: typeof import('vuetify/components')['VChip']
|
523
522
|
VCounter: typeof import('vuetify/components')['VCounter']
|
523
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
524
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
525
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
526
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
527
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
528
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
529
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
530
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
531
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
532
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
524
533
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
525
534
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
526
535
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -528,37 +537,29 @@ declare module 'vue' {
|
|
528
537
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
529
538
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
530
539
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
531
|
-
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
532
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
533
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
534
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
535
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
536
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
537
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
538
540
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
539
|
-
|
540
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
541
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
541
542
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
542
543
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
543
544
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
544
545
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
545
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
546
|
-
VFab: typeof import('vuetify/components')['VFab']
|
547
546
|
VField: typeof import('vuetify/components')['VField']
|
548
547
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
549
|
-
|
548
|
+
VFab: typeof import('vuetify/components')['VFab']
|
550
549
|
VIcon: typeof import('vuetify/components')['VIcon']
|
551
550
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
552
551
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
553
552
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
554
553
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
554
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
555
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
556
|
+
VItem: typeof import('vuetify/components')['VItem']
|
557
|
+
VInput: typeof import('vuetify/components')['VInput']
|
555
558
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
556
559
|
VImg: typeof import('vuetify/components')['VImg']
|
560
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
557
561
|
VKbd: typeof import('vuetify/components')['VKbd']
|
558
|
-
VInput: typeof import('vuetify/components')['VInput']
|
559
562
|
VLabel: typeof import('vuetify/components')['VLabel']
|
560
|
-
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
561
|
-
VItem: typeof import('vuetify/components')['VItem']
|
562
563
|
VList: typeof import('vuetify/components')['VList']
|
563
564
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
564
565
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -568,66 +569,65 @@ declare module 'vue' {
|
|
568
569
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
569
570
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
570
571
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
571
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
572
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
573
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
574
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
575
572
|
VMain: typeof import('vuetify/components')['VMain']
|
573
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
574
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
576
575
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
577
576
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
578
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
579
577
|
VPagination: typeof import('vuetify/components')['VPagination']
|
578
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
579
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
580
580
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
581
581
|
VSelect: typeof import('vuetify/components')['VSelect']
|
582
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
583
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
582
584
|
VRating: typeof import('vuetify/components')['VRating']
|
585
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
583
586
|
VSheet: typeof import('vuetify/components')['VSheet']
|
584
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
585
587
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
586
588
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
587
|
-
|
588
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
589
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
589
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
590
590
|
VStepper: typeof import('vuetify/components')['VStepper']
|
591
591
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
592
592
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
593
593
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
594
594
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
595
595
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
596
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
597
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
598
|
-
VTable: typeof import('vuetify/components')['VTable']
|
599
596
|
VTab: typeof import('vuetify/components')['VTab']
|
600
597
|
VTabs: typeof import('vuetify/components')['VTabs']
|
601
598
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
602
599
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
600
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
601
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
602
|
+
VTable: typeof import('vuetify/components')['VTable']
|
603
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
604
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
605
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
606
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
603
607
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
604
608
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
605
609
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
606
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
607
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
608
610
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
609
611
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
610
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
611
612
|
VWindow: typeof import('vuetify/components')['VWindow']
|
612
613
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
613
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
614
614
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
615
|
-
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
616
615
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
617
|
-
|
616
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
618
617
|
VContainer: typeof import('vuetify/components')['VContainer']
|
619
618
|
VCol: typeof import('vuetify/components')['VCol']
|
620
619
|
VRow: typeof import('vuetify/components')['VRow']
|
621
620
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
621
|
+
VForm: typeof import('vuetify/components')['VForm']
|
622
622
|
VHover: typeof import('vuetify/components')['VHover']
|
623
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
623
624
|
VLayout: typeof import('vuetify/components')['VLayout']
|
624
625
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
625
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
626
626
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
627
627
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
628
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
628
629
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
629
630
|
VRadio: typeof import('vuetify/components')['VRadio']
|
630
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
631
631
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
632
632
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
633
633
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
@@ -650,24 +650,24 @@ declare module 'vue' {
|
|
650
650
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
651
651
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
652
652
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
653
|
-
|
653
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
654
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
654
655
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
655
656
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
656
657
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
658
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
659
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
660
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
661
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
662
662
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
663
663
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
664
664
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
665
665
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
666
666
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
667
667
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
668
|
-
|
669
|
-
|
670
|
-
|
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']
|