@vuetify/nightly 3.4.0-beta.1-dev.2023-11-08 → 3.4.0-dev.2023-12-01
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/CHANGELOG.md +7 -2
- package/dist/json/attributes.json +2066 -2074
- package/dist/json/importMap.json +96 -96
- package/dist/json/tags.json +5 -7
- package/dist/json/web-types.json +3991 -4113
- package/dist/vuetify-labs.css +1886 -1885
- package/dist/vuetify-labs.d.ts +89 -136
- package/dist/vuetify-labs.esm.js +125 -112
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +124 -111
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +161 -160
- package/dist/vuetify.d.ts +118 -165
- package/dist/vuetify.esm.js +125 -112
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +124 -111
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +141 -140
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtn/VBtn.css +0 -1
- package/lib/components/VBtn/_variables.scss +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.css +0 -1
- package/lib/components/VCarousel/index.d.mts +24 -1
- package/lib/components/VDataTable/VDataTableServer.mjs +2 -2
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +2 -2
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +24 -24
- package/lib/components/VGrid/VSpacer.mjs +3 -0
- package/lib/components/VGrid/VSpacer.mjs.map +1 -1
- package/lib/components/VImg/VImg.css +3 -0
- package/lib/components/VImg/VImg.mjs +14 -3
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VImg/VImg.sass +3 -0
- package/lib/components/VImg/_variables.scss +3 -0
- package/lib/components/VImg/index.d.mts +24 -1
- package/lib/components/VStepper/VStepperWindow.mjs +8 -6
- package/lib/components/VStepper/VStepperWindow.mjs.map +1 -1
- package/lib/components/VStepper/VStepperWindowItem.mjs +3 -1
- package/lib/components/VStepper/VStepperWindowItem.mjs.map +1 -1
- package/lib/components/VStepper/index.d.mts +18 -140
- package/lib/components/index.d.mts +89 -136
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.mts +29 -29
- package/package.json +2 -2
package/lib/framework.mjs.map
CHANGED
|
@@ -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,41 +437,40 @@ 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']
|
|
443
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
444
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
444
445
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
445
446
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
446
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
447
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
448
447
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
448
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
449
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
449
450
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
450
451
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
451
452
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
452
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
453
453
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
454
454
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
455
455
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
456
456
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
457
457
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
458
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
459
458
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
459
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
460
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
461
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
462
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
463
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
464
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
460
465
|
VCard: typeof import('vuetify/components')['VCard']
|
|
461
466
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
462
467
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
463
468
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
464
469
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
465
470
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
466
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
467
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
468
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
469
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
470
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
471
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
472
471
|
VCode: typeof import('vuetify/components')['VCode']
|
|
472
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
473
473
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
474
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
475
474
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
476
475
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
477
476
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -479,13 +478,14 @@ declare module '@vue/runtime-core' {
|
|
|
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
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
482
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
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
490
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
491
491
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
@@ -493,20 +493,21 @@ declare module '@vue/runtime-core' {
|
|
|
493
493
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
494
494
|
VField: typeof import('vuetify/components')['VField']
|
|
495
495
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
496
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
497
496
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
498
497
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
499
498
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
500
499
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
501
500
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
502
501
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
502
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
503
503
|
VImg: typeof import('vuetify/components')['VImg']
|
|
504
504
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
505
505
|
VInput: typeof import('vuetify/components')['VInput']
|
|
506
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
506
507
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
507
508
|
VItem: typeof import('vuetify/components')['VItem']
|
|
508
509
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
509
|
-
|
|
510
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
510
511
|
VList: typeof import('vuetify/components')['VList']
|
|
511
512
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
512
513
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -516,7 +517,6 @@ declare module '@vue/runtime-core' {
|
|
|
516
517
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
517
518
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
518
519
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
519
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
520
520
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
521
521
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
522
522
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
@@ -524,37 +524,37 @@ declare module '@vue/runtime-core' {
|
|
|
524
524
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
525
525
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
526
526
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
527
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
528
527
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
528
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
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
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
535
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
536
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
535
537
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
536
538
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
537
|
-
|
|
538
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
539
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
539
540
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
540
541
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
541
542
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
542
543
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
543
544
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
544
545
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
545
|
-
|
|
546
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
547
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
546
548
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
547
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
|
548
|
-
VTab: typeof import('vuetify/components')['VTab']
|
|
549
|
-
VTable: typeof import('vuetify/components')['VTable']
|
|
550
549
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
551
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
|
552
550
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
553
551
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
552
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
553
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
|
554
|
+
VTab: typeof import('vuetify/components')['VTab']
|
|
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']
|
|
@@ -570,12 +570,11 @@ declare module '@vue/runtime-core' {
|
|
|
570
570
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
571
571
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
572
572
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
573
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
|
574
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
|
575
573
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
574
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
|
575
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
|
576
576
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
577
577
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
578
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
|
579
578
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
580
579
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
581
580
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
@@ -593,6 +592,7 @@ declare module '@vue/runtime-core' {
|
|
|
593
592
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
594
593
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
595
594
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
595
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
596
596
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
597
597
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
598
598
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuetify/nightly",
|
|
3
3
|
"description": "Vue Material Component Framework",
|
|
4
|
-
"version": "3.4.0-
|
|
4
|
+
"version": "3.4.0-dev.2023-12-01",
|
|
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.
|
|
177
|
+
"vue": "^3.3.0",
|
|
178
178
|
"vue-i18n": "^9.0.0",
|
|
179
179
|
"webpack-plugin-vuetify": "^2.0.0-alpha.11"
|
|
180
180
|
},
|