vuetify 3.4.0-beta.1 → 3.4.0

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.
Files changed (41) hide show
  1. package/dist/json/attributes.json +275 -299
  2. package/dist/json/importMap.json +110 -110
  3. package/dist/json/tags.json +1 -7
  4. package/dist/json/web-types.json +577 -735
  5. package/dist/vuetify-labs.css +1149 -1151
  6. package/dist/vuetify-labs.d.ts +41 -134
  7. package/dist/vuetify-labs.esm.js +18 -14
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +18 -14
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +490 -492
  12. package/dist/vuetify.d.ts +74 -167
  13. package/dist/vuetify.esm.js +18 -14
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +18 -14
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +12 -12
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/components/VBtn/VBtn.css +0 -1
  21. package/lib/components/VBtn/_variables.scss +1 -1
  22. package/lib/components/VBtnGroup/VBtnGroup.css +0 -1
  23. package/lib/components/VDataTable/VDataTableServer.mjs +2 -2
  24. package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
  25. package/lib/components/VDataTable/VDataTableVirtual.mjs +2 -2
  26. package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
  27. package/lib/components/VDataTable/index.d.mts +24 -24
  28. package/lib/components/VGrid/VSpacer.mjs +3 -0
  29. package/lib/components/VGrid/VSpacer.mjs.map +1 -1
  30. package/lib/components/VStepper/VStepperWindow.mjs +8 -6
  31. package/lib/components/VStepper/VStepperWindow.mjs.map +1 -1
  32. package/lib/components/VStepper/VStepperWindowItem.mjs +3 -1
  33. package/lib/components/VStepper/VStepperWindowItem.mjs.map +1 -1
  34. package/lib/components/VStepper/index.d.mts +18 -140
  35. package/lib/components/index.d.mts +41 -134
  36. package/lib/entry-bundler.mjs +1 -1
  37. package/lib/entry-bundler.mjs.map +1 -1
  38. package/lib/framework.mjs +1 -1
  39. package/lib/framework.mjs.map +1 -1
  40. package/lib/index.d.mts +33 -33
  41. package/package.json +3 -3
@@ -1 +1 @@
1
- {"version":3,"file":"framework.mjs","names":["createDate","DateAdapterSymbol","createDefaults","DefaultsSymbol","createDisplay","DisplaySymbol","createIcons","IconSymbol","createLocale","LocaleSymbol","createTheme","ThemeSymbol","nextTick","reactive","defineComponent","getUid","IN_BROWSER","mergeDeep","createVuetify","vuetify","arguments","length","undefined","blueprint","rest","options","aliases","components","directives","defaults","display","ssr","theme","icons","locale","date","install","app","key","directive","component","name","aliasName","provide","$nuxt","hook","update","mount","vm","reset","__VUE_OPTIONS_API__","mixin","computed","$vuetify","inject","call","version","$","provides","parent","vnode","appContext"],"sources":["../src/framework.ts"],"sourcesContent":["// Composables\nimport { createDate, DateAdapterSymbol } from '@/composables/date'\nimport { createDefaults, DefaultsSymbol } from '@/composables/defaults'\nimport { createDisplay, DisplaySymbol } from '@/composables/display'\nimport { createIcons, IconSymbol } from '@/composables/icons'\nimport { createLocale, LocaleSymbol } from '@/composables/locale'\nimport { createTheme, ThemeSymbol } from '@/composables/theme'\n\n// Utilities\nimport { nextTick, reactive } from 'vue'\nimport { defineComponent, getUid, IN_BROWSER, mergeDeep } from '@/util'\n\n// Types\nimport type { App, ComponentPublicInstance, InjectionKey } from 'vue'\nimport type { DateOptions } from '@/composables/date'\nimport type { DefaultsOptions } from '@/composables/defaults'\nimport type { DisplayOptions, SSROptions } from '@/composables/display'\nimport type { IconOptions } from '@/composables/icons'\nimport type { LocaleOptions, RtlOptions } from '@/composables/locale'\nimport type { ThemeOptions } from '@/composables/theme'\nexport * from './composables'\nexport type { DateOptions, DateInstance } from '@/composables/date'\n\nexport interface VuetifyOptions {\n aliases?: Record<string, any>\n blueprint?: Blueprint\n components?: Record<string, any>\n date?: DateOptions\n directives?: Record<string, any>\n defaults?: DefaultsOptions\n display?: DisplayOptions\n theme?: ThemeOptions\n icons?: IconOptions\n locale?: LocaleOptions & RtlOptions\n ssr?: SSROptions\n}\n\nexport interface Blueprint extends Omit<VuetifyOptions, 'blueprint'> {}\n\nexport function createVuetify (vuetify: VuetifyOptions = {}) {\n const { blueprint, ...rest } = vuetify\n const options: VuetifyOptions = mergeDeep(blueprint, rest)\n const {\n aliases = {},\n components = {},\n directives = {},\n } = options\n\n const defaults = createDefaults(options.defaults)\n const display = createDisplay(options.display, options.ssr)\n const theme = createTheme(options.theme)\n const icons = createIcons(options.icons)\n const locale = createLocale(options.locale)\n const date = createDate(options.date, locale)\n\n const install = (app: App) => {\n for (const key in directives) {\n app.directive(key, directives[key])\n }\n\n for (const key in components) {\n app.component(key, components[key])\n }\n\n for (const key in aliases) {\n app.component(key, defineComponent({\n ...aliases[key],\n name: key,\n aliasName: aliases[key].name,\n }))\n }\n\n theme.install(app)\n\n app.provide(DefaultsSymbol, defaults)\n app.provide(DisplaySymbol, display)\n app.provide(ThemeSymbol, theme)\n app.provide(IconSymbol, icons)\n app.provide(LocaleSymbol, locale)\n app.provide(DateAdapterSymbol, date)\n\n if (IN_BROWSER && options.ssr) {\n if (app.$nuxt) {\n app.$nuxt.hook('app:suspense:resolve', () => {\n display.update()\n })\n } else {\n const { mount } = app\n app.mount = (...args) => {\n const vm = mount(...args)\n nextTick(() => display.update())\n app.mount = mount\n return vm\n }\n }\n }\n\n getUid.reset()\n\n if (typeof __VUE_OPTIONS_API__ !== 'boolean' || __VUE_OPTIONS_API__) {\n app.mixin({\n computed: {\n $vuetify () {\n return reactive({\n defaults: inject.call(this, DefaultsSymbol),\n display: inject.call(this, DisplaySymbol),\n theme: inject.call(this, ThemeSymbol),\n icons: inject.call(this, IconSymbol),\n locale: inject.call(this, LocaleSymbol),\n date: inject.call(this, DateAdapterSymbol),\n })\n },\n },\n })\n }\n }\n\n return {\n install,\n defaults,\n display,\n theme,\n icons,\n locale,\n date,\n }\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\n// Vue's inject() can only be used in setup\nfunction inject (this: ComponentPublicInstance, key: InjectionKey<any> | string) {\n const vm = this.$\n\n const provides = vm.parent?.provides ?? vm.vnode.appContext?.provides\n\n if (provides && (key as any) in provides) {\n return provides[(key as string)]\n }\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"framework.mjs","names":["createDate","DateAdapterSymbol","createDefaults","DefaultsSymbol","createDisplay","DisplaySymbol","createIcons","IconSymbol","createLocale","LocaleSymbol","createTheme","ThemeSymbol","nextTick","reactive","defineComponent","getUid","IN_BROWSER","mergeDeep","createVuetify","vuetify","arguments","length","undefined","blueprint","rest","options","aliases","components","directives","defaults","display","ssr","theme","icons","locale","date","install","app","key","directive","component","name","aliasName","provide","$nuxt","hook","update","mount","vm","reset","__VUE_OPTIONS_API__","mixin","computed","$vuetify","inject","call","version","$","provides","parent","vnode","appContext"],"sources":["../src/framework.ts"],"sourcesContent":["// Composables\nimport { createDate, DateAdapterSymbol } from '@/composables/date'\nimport { createDefaults, DefaultsSymbol } from '@/composables/defaults'\nimport { createDisplay, DisplaySymbol } from '@/composables/display'\nimport { createIcons, IconSymbol } from '@/composables/icons'\nimport { createLocale, LocaleSymbol } from '@/composables/locale'\nimport { createTheme, ThemeSymbol } from '@/composables/theme'\n\n// Utilities\nimport { nextTick, reactive } from 'vue'\nimport { defineComponent, getUid, IN_BROWSER, mergeDeep } from '@/util'\n\n// Types\nimport type { App, ComponentPublicInstance, InjectionKey } from 'vue'\nimport type { DateOptions } from '@/composables/date'\nimport type { DefaultsOptions } from '@/composables/defaults'\nimport type { DisplayOptions, SSROptions } from '@/composables/display'\nimport type { IconOptions } from '@/composables/icons'\nimport type { LocaleOptions, RtlOptions } from '@/composables/locale'\nimport type { ThemeOptions } from '@/composables/theme'\nexport * from './composables'\nexport type { DateOptions, DateInstance } from '@/composables/date'\n\nexport interface VuetifyOptions {\n aliases?: Record<string, any>\n blueprint?: Blueprint\n components?: Record<string, any>\n date?: DateOptions\n directives?: Record<string, any>\n defaults?: DefaultsOptions\n display?: DisplayOptions\n theme?: ThemeOptions\n icons?: IconOptions\n locale?: LocaleOptions & RtlOptions\n ssr?: SSROptions\n}\n\nexport interface Blueprint extends Omit<VuetifyOptions, 'blueprint'> {}\n\nexport function createVuetify (vuetify: VuetifyOptions = {}) {\n const { blueprint, ...rest } = vuetify\n const options: VuetifyOptions = mergeDeep(blueprint, rest)\n const {\n aliases = {},\n components = {},\n directives = {},\n } = options\n\n const defaults = createDefaults(options.defaults)\n const display = createDisplay(options.display, options.ssr)\n const theme = createTheme(options.theme)\n const icons = createIcons(options.icons)\n const locale = createLocale(options.locale)\n const date = createDate(options.date, locale)\n\n const install = (app: App) => {\n for (const key in directives) {\n app.directive(key, directives[key])\n }\n\n for (const key in components) {\n app.component(key, components[key])\n }\n\n for (const key in aliases) {\n app.component(key, defineComponent({\n ...aliases[key],\n name: key,\n aliasName: aliases[key].name,\n }))\n }\n\n theme.install(app)\n\n app.provide(DefaultsSymbol, defaults)\n app.provide(DisplaySymbol, display)\n app.provide(ThemeSymbol, theme)\n app.provide(IconSymbol, icons)\n app.provide(LocaleSymbol, locale)\n app.provide(DateAdapterSymbol, date)\n\n if (IN_BROWSER && options.ssr) {\n if (app.$nuxt) {\n app.$nuxt.hook('app:suspense:resolve', () => {\n display.update()\n })\n } else {\n const { mount } = app\n app.mount = (...args) => {\n const vm = mount(...args)\n nextTick(() => display.update())\n app.mount = mount\n return vm\n }\n }\n }\n\n getUid.reset()\n\n if (typeof __VUE_OPTIONS_API__ !== 'boolean' || __VUE_OPTIONS_API__) {\n app.mixin({\n computed: {\n $vuetify () {\n return reactive({\n defaults: inject.call(this, DefaultsSymbol),\n display: inject.call(this, DisplaySymbol),\n theme: inject.call(this, ThemeSymbol),\n icons: inject.call(this, IconSymbol),\n locale: inject.call(this, LocaleSymbol),\n date: inject.call(this, DateAdapterSymbol),\n })\n },\n },\n })\n }\n }\n\n return {\n install,\n defaults,\n display,\n theme,\n icons,\n locale,\n date,\n }\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\n// Vue's inject() can only be used in setup\nfunction inject (this: ComponentPublicInstance, key: InjectionKey<any> | string) {\n const vm = this.$\n\n const provides = vm.parent?.provides ?? vm.vnode.appContext?.provides\n\n if (provides && (key as any) in provides) {\n return provides[(key as string)]\n }\n}\n"],"mappings":"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"}
package/lib/index.d.mts CHANGED
@@ -437,64 +437,64 @@ declare module '@vue/runtime-core' {
437
437
  }
438
438
 
439
439
  export interface GlobalComponents {
440
- VApp: typeof import('vuetify/components')['VApp']
441
440
  VAppBar: typeof import('vuetify/components')['VAppBar']
442
441
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
443
442
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
444
- VAlert: typeof import('vuetify/components')['VAlert']
445
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
443
+ VApp: typeof import('vuetify/components')['VApp']
446
444
  VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
447
445
  VAvatar: typeof import('vuetify/components')['VAvatar']
446
+ VAlert: typeof import('vuetify/components')['VAlert']
447
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
448
448
  VBadge: typeof import('vuetify/components')['VBadge']
449
- VBanner: typeof import('vuetify/components')['VBanner']
450
- VBannerActions: typeof import('vuetify/components')['VBannerActions']
451
- VBannerText: typeof import('vuetify/components')['VBannerText']
452
449
  VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
453
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
454
450
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
455
451
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
456
452
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
457
- VBtn: typeof import('vuetify/components')['VBtn']
458
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
453
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
454
+ VBanner: typeof import('vuetify/components')['VBanner']
455
+ VBannerActions: typeof import('vuetify/components')['VBannerActions']
456
+ VBannerText: typeof import('vuetify/components')['VBannerText']
459
457
  VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
458
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
460
459
  VCard: typeof import('vuetify/components')['VCard']
461
460
  VCardActions: typeof import('vuetify/components')['VCardActions']
462
461
  VCardItem: typeof import('vuetify/components')['VCardItem']
463
462
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
464
463
  VCardText: typeof import('vuetify/components')['VCardText']
465
464
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
465
+ VBtn: typeof import('vuetify/components')['VBtn']
466
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
466
467
  VCarousel: typeof import('vuetify/components')['VCarousel']
467
468
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
469
+ VCode: typeof import('vuetify/components')['VCode']
470
+ VChip: typeof import('vuetify/components')['VChip']
468
471
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
469
472
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
470
- VChip: typeof import('vuetify/components')['VChip']
471
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
472
- VCode: typeof import('vuetify/components')['VCode']
473
473
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
474
474
  VCombobox: typeof import('vuetify/components')['VCombobox']
475
- VCounter: typeof import('vuetify/components')['VCounter']
476
475
  VDataTable: typeof import('vuetify/components')['VDataTable']
477
476
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
478
477
  VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
479
478
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
480
479
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
481
480
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
481
+ VCounter: typeof import('vuetify/components')['VCounter']
482
+ VDialog: typeof import('vuetify/components')['VDialog']
482
483
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
483
484
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
484
485
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
485
486
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
486
487
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
487
488
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
488
- VDialog: typeof import('vuetify/components')['VDialog']
489
489
  VDivider: typeof import('vuetify/components')['VDivider']
490
+ VField: typeof import('vuetify/components')['VField']
491
+ VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
492
+ VFooter: typeof import('vuetify/components')['VFooter']
490
493
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
491
494
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
492
495
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
493
496
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
494
- VField: typeof import('vuetify/components')['VField']
495
- VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
496
497
  VFileInput: typeof import('vuetify/components')['VFileInput']
497
- VFooter: typeof import('vuetify/components')['VFooter']
498
498
  VIcon: typeof import('vuetify/components')['VIcon']
499
499
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
500
500
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
@@ -502,11 +502,9 @@ declare module '@vue/runtime-core' {
502
502
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
503
503
  VImg: typeof import('vuetify/components')['VImg']
504
504
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
505
- VInput: typeof import('vuetify/components')['VInput']
506
505
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
507
506
  VItem: typeof import('vuetify/components')['VItem']
508
- VKbd: typeof import('vuetify/components')['VKbd']
509
- VLabel: typeof import('vuetify/components')['VLabel']
507
+ VInput: typeof import('vuetify/components')['VInput']
510
508
  VList: typeof import('vuetify/components')['VList']
511
509
  VListGroup: typeof import('vuetify/components')['VListGroup']
512
510
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -516,25 +514,27 @@ declare module '@vue/runtime-core' {
516
514
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
517
515
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
518
516
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
519
- VMain: typeof import('vuetify/components')['VMain']
517
+ VKbd: typeof import('vuetify/components')['VKbd']
518
+ VLabel: typeof import('vuetify/components')['VLabel']
520
519
  VMenu: typeof import('vuetify/components')['VMenu']
521
- VMessages: typeof import('vuetify/components')['VMessages']
520
+ VMain: typeof import('vuetify/components')['VMain']
522
521
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
522
+ VMessages: typeof import('vuetify/components')['VMessages']
523
523
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
524
+ VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
524
525
  VOverlay: typeof import('vuetify/components')['VOverlay']
525
526
  VPagination: typeof import('vuetify/components')['VPagination']
526
- VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
527
527
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
528
528
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
529
529
  VRating: typeof import('vuetify/components')['VRating']
530
530
  VSelect: typeof import('vuetify/components')['VSelect']
531
531
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
532
532
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
533
- VSheet: typeof import('vuetify/components')['VSheet']
534
533
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
534
+ VSheet: typeof import('vuetify/components')['VSheet']
535
+ VSlider: typeof import('vuetify/components')['VSlider']
535
536
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
536
537
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
537
- VSlider: typeof import('vuetify/components')['VSlider']
538
538
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
539
539
  VStepper: typeof import('vuetify/components')['VStepper']
540
540
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
@@ -542,33 +542,33 @@ declare module '@vue/runtime-core' {
542
542
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
543
543
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
544
544
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
545
- VSwitch: typeof import('vuetify/components')['VSwitch']
546
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
547
545
  VTabs: typeof import('vuetify/components')['VTabs']
548
546
  VTab: typeof import('vuetify/components')['VTab']
549
- VTable: typeof import('vuetify/components')['VTable']
550
- VTextarea: typeof import('vuetify/components')['VTextarea']
547
+ VSwitch: typeof import('vuetify/components')['VSwitch']
548
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
551
549
  VTextField: typeof import('vuetify/components')['VTextField']
550
+ VTable: typeof import('vuetify/components')['VTable']
552
551
  VTimeline: typeof import('vuetify/components')['VTimeline']
553
552
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
553
+ VTooltip: typeof import('vuetify/components')['VTooltip']
554
+ VTextarea: typeof import('vuetify/components')['VTextarea']
554
555
  VToolbar: typeof import('vuetify/components')['VToolbar']
555
556
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
556
557
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
557
- VTooltip: typeof import('vuetify/components')['VTooltip']
558
558
  VWindow: typeof import('vuetify/components')['VWindow']
559
559
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
560
560
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
561
- VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
562
- VForm: typeof import('vuetify/components')['VForm']
563
561
  VContainer: typeof import('vuetify/components')['VContainer']
564
562
  VCol: typeof import('vuetify/components')['VCol']
565
563
  VRow: typeof import('vuetify/components')['VRow']
566
564
  VSpacer: typeof import('vuetify/components')['VSpacer']
565
+ VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
566
+ VForm: typeof import('vuetify/components')['VForm']
567
567
  VHover: typeof import('vuetify/components')['VHover']
568
568
  VLayout: typeof import('vuetify/components')['VLayout']
569
569
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
570
- VLazy: typeof import('vuetify/components')['VLazy']
571
570
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
571
+ VLazy: typeof import('vuetify/components')['VLazy']
572
572
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
573
573
  VParallax: typeof import('vuetify/components')['VParallax']
574
574
  VRadio: typeof import('vuetify/components')['VRadio']
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vuetify",
3
3
  "description": "Vue Material Component Framework",
4
- "version": "3.4.0-beta.1",
4
+ "version": "3.4.0",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"
@@ -174,7 +174,7 @@
174
174
  "peerDependencies": {
175
175
  "typescript": ">=4.7",
176
176
  "vite-plugin-vuetify": "^1.0.0-alpha.12",
177
- "vue": "^3.2.0",
177
+ "vue": "^3.3.0",
178
178
  "vue-i18n": "^9.0.0",
179
179
  "webpack-plugin-vuetify": "^2.0.0-alpha.11"
180
180
  },
@@ -200,5 +200,5 @@
200
200
  "attributes": "dist/json/attributes.json"
201
201
  },
202
202
  "web-types": "dist/json/web-types.json",
203
- "gitHead": "39d495bd7a9d9caaa9cbec85f6c2972210d006d6"
203
+ "gitHead": "ec746d37adcabbf30bbbe6112124929c2f3bcb00"
204
204
  }