@vuetify/nightly 3.7.3-master.2024-10-21 → 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 +36 -36
- package/dist/json/importMap.json +116 -116
- package/dist/json/tags.json +14 -1
- package/dist/json/web-types.json +10360 -10272
- package/dist/vuetify-labs.css +5366 -5366
- 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 +1512 -1512
- package/dist/vuetify.d.ts +48 -47
- 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 +46 -46
- 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-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
@@ -486,41 +486,41 @@ declare module 'vue' {
|
|
486
486
|
$children?: VNodeChild
|
487
487
|
}
|
488
488
|
export interface GlobalComponents {
|
489
|
-
|
490
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
489
|
+
VApp: typeof import('vuetify/components')['VApp']
|
491
490
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
492
491
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
493
492
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
494
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
495
493
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
496
|
-
|
494
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
495
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
496
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
497
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
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
|
-
|
501
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
501
502
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
502
503
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
503
504
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
504
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
505
505
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
506
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
507
506
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
508
507
|
VBtn: typeof import('vuetify/components')['VBtn']
|
508
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
509
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
510
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
509
511
|
VCard: typeof import('vuetify/components')['VCard']
|
510
512
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
511
513
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
512
514
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
513
515
|
VCardText: typeof import('vuetify/components')['VCardText']
|
514
516
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
515
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
516
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
517
517
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
518
518
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
519
|
-
VChip: typeof import('vuetify/components')['VChip']
|
520
519
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
520
|
+
VChip: typeof import('vuetify/components')['VChip']
|
521
521
|
VCode: typeof import('vuetify/components')['VCode']
|
522
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
522
523
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
523
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
524
524
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
525
525
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
526
526
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -528,37 +528,37 @@ declare module 'vue' {
|
|
528
528
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
529
529
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
530
530
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
531
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
531
532
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
532
533
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
533
534
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
534
535
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
535
536
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
536
537
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
537
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
538
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
539
538
|
VDialog: typeof import('vuetify/components')['VDialog']
|
540
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']
|
541
544
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
542
545
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
543
546
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
544
547
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
545
548
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
546
|
-
VFab: typeof import('vuetify/components')['VFab']
|
547
|
-
VField: typeof import('vuetify/components')['VField']
|
548
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
549
549
|
VFooter: typeof import('vuetify/components')['VFooter']
|
550
550
|
VIcon: typeof import('vuetify/components')['VIcon']
|
551
551
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
552
552
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
553
553
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
554
554
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
555
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
556
555
|
VImg: typeof import('vuetify/components')['VImg']
|
557
|
-
|
558
|
-
VInput: typeof import('vuetify/components')['VInput']
|
559
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
556
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
560
557
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
561
558
|
VItem: typeof import('vuetify/components')['VItem']
|
559
|
+
VInput: typeof import('vuetify/components')['VInput']
|
560
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
561
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
562
562
|
VList: typeof import('vuetify/components')['VList']
|
563
563
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
564
564
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -568,24 +568,25 @@ declare module 'vue' {
|
|
568
568
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
569
569
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
570
570
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
571
|
+
VMain: typeof import('vuetify/components')['VMain']
|
572
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
571
573
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
572
574
|
VMenu: typeof import('vuetify/components')['VMenu']
|
573
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
574
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
575
|
-
VMain: typeof import('vuetify/components')['VMain']
|
576
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
577
575
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
578
|
-
|
576
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
579
577
|
VPagination: typeof import('vuetify/components')['VPagination']
|
578
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
580
579
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
581
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
582
580
|
VRating: typeof import('vuetify/components')['VRating']
|
583
|
-
|
581
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
582
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
584
583
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
584
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
585
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
585
586
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
586
587
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
587
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
588
588
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
589
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
589
590
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
590
591
|
VStepper: typeof import('vuetify/components')['VStepper']
|
591
592
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
@@ -593,21 +594,20 @@ declare module 'vue' {
|
|
593
594
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
594
595
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
595
596
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
596
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
597
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
598
597
|
VTable: typeof import('vuetify/components')['VTable']
|
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
|
-
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
605
|
-
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
604
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
606
605
|
VTextField: typeof import('vuetify/components')['VTextField']
|
607
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
608
606
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
609
607
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
610
|
-
|
608
|
+
VToolbar: typeof import('vuetify/components')['VToolbar']
|
609
|
+
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
610
|
+
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
611
611
|
VWindow: typeof import('vuetify/components')['VWindow']
|
612
612
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
613
613
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
@@ -625,9 +625,9 @@ declare module 'vue' {
|
|
625
625
|
VLazy: typeof import('vuetify/components')['VLazy']
|
626
626
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
627
627
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
628
|
-
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
629
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
630
628
|
VParallax: typeof import('vuetify/components')['VParallax']
|
629
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
630
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
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
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
654
|
-
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
655
|
-
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
656
|
-
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
657
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
658
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
659
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
660
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
661
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
662
653
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
663
654
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
664
655
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
665
656
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
666
657
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
667
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']
|
662
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
663
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
664
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
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']
|