@vuetify/nightly 3.7.8-master.2025-01-28 → 3.7.8-master.2025-01-29

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.
@@ -128,7 +128,9 @@ export const makeDisplayProps = propsFactory({
128
128
  mobileBreakpoint: [Number, String]
129
129
  }, 'display');
130
130
  export function useDisplay() {
131
- let props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
131
+ let props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {
132
+ mobile: null
133
+ };
132
134
  let name = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : getCurrentInstanceName();
133
135
  const display = inject(DisplaySymbol);
134
136
  if (!display) throw new Error('Could not find Vuetify display injection');
@@ -1 +1 @@
1
- {"version":3,"file":"display.mjs","names":["computed","inject","reactive","shallowRef","toRefs","watchEffect","getCurrentInstanceName","mergeDeep","propsFactory","IN_BROWSER","SUPPORTS_TOUCH","breakpoints","DisplaySymbol","Symbol","for","defaultDisplayOptions","mobileBreakpoint","thresholds","xs","sm","md","lg","xl","xxl","parseDisplayOptions","options","arguments","length","undefined","getClientWidth","ssr","window","innerWidth","clientWidth","getClientHeight","innerHeight","clientHeight","getPlatform","userAgent","navigator","match","regexp","Boolean","android","ios","cordova","electron","chrome","edge","firefox","opera","win","mac","linux","touch","createDisplay","height","platform","state","width","updateSize","value","update","name","breakpointValue","mobile","smAndUp","mdAndUp","lgAndUp","xlAndUp","smAndDown","mdAndDown","lgAndDown","xlAndDown","addEventListener","passive","makeDisplayProps","type","default","Number","String","useDisplay","props","display","Error","displayClasses"],"sources":["../../src/composables/display.ts"],"sourcesContent":["// Utilities\nimport { computed, inject, reactive, shallowRef, toRefs, watchEffect } from 'vue'\nimport { getCurrentInstanceName, mergeDeep, propsFactory } from '@/util'\nimport { IN_BROWSER, SUPPORTS_TOUCH } from '@/util/globals'\n\n// Types\nimport type { InjectionKey, PropType, Ref } from 'vue'\n\nexport const breakpoints = ['sm', 'md', 'lg', 'xl', 'xxl'] as const // no xs\n\nexport type Breakpoint = typeof breakpoints[number]\n\nexport type DisplayBreakpoint = 'xs' | Breakpoint\n\nexport type DisplayThresholds = {\n [key in DisplayBreakpoint]: number\n}\n\nexport interface DisplayProps {\n mobile?: boolean | null\n mobileBreakpoint?: number | DisplayBreakpoint\n}\n\nexport interface DisplayOptions {\n mobileBreakpoint?: number | DisplayBreakpoint\n thresholds?: Partial<DisplayThresholds>\n}\n\nexport interface InternalDisplayOptions {\n mobileBreakpoint: number | DisplayBreakpoint\n thresholds: DisplayThresholds\n}\n\nexport type SSROptions = boolean | {\n clientWidth: number\n clientHeight?: number\n}\n\nexport interface DisplayPlatform {\n android: boolean\n ios: boolean\n cordova: boolean\n electron: boolean\n chrome: boolean\n edge: boolean\n firefox: boolean\n opera: boolean\n win: boolean\n mac: boolean\n linux: boolean\n touch: boolean\n ssr: boolean\n}\n\nexport interface DisplayInstance {\n xs: Ref<boolean>\n sm: Ref<boolean>\n md: Ref<boolean>\n lg: Ref<boolean>\n xl: Ref<boolean>\n xxl: Ref<boolean>\n smAndUp: Ref<boolean>\n mdAndUp: Ref<boolean>\n lgAndUp: Ref<boolean>\n xlAndUp: Ref<boolean>\n smAndDown: Ref<boolean>\n mdAndDown: Ref<boolean>\n lgAndDown: Ref<boolean>\n xlAndDown: Ref<boolean>\n name: Ref<DisplayBreakpoint>\n height: Ref<number>\n width: Ref<number>\n mobile: Ref<boolean>\n mobileBreakpoint: Ref<number | DisplayBreakpoint>\n platform: Ref<DisplayPlatform>\n thresholds: Ref<DisplayThresholds>\n\n /** @internal */\n ssr: boolean\n\n update (): void\n}\n\nexport const DisplaySymbol: InjectionKey<DisplayInstance> = Symbol.for('vuetify:display')\n\nconst defaultDisplayOptions: DisplayOptions = {\n mobileBreakpoint: 'lg',\n thresholds: {\n xs: 0,\n sm: 600,\n md: 960,\n lg: 1280,\n xl: 1920,\n xxl: 2560,\n },\n}\n\nconst parseDisplayOptions = (options: DisplayOptions = defaultDisplayOptions) => {\n return mergeDeep(defaultDisplayOptions, options) as InternalDisplayOptions\n}\n\nfunction getClientWidth (ssr?: SSROptions) {\n return IN_BROWSER && !ssr\n ? window.innerWidth\n : (typeof ssr === 'object' && ssr.clientWidth) || 0\n}\n\nfunction getClientHeight (ssr?: SSROptions) {\n return IN_BROWSER && !ssr\n ? window.innerHeight\n : (typeof ssr === 'object' && ssr.clientHeight) || 0\n}\n\nfunction getPlatform (ssr?: SSROptions): DisplayPlatform {\n const userAgent = IN_BROWSER && !ssr\n ? window.navigator.userAgent\n : 'ssr'\n\n function match (regexp: RegExp) {\n return Boolean(userAgent.match(regexp))\n }\n\n const android = match(/android/i)\n const ios = match(/iphone|ipad|ipod/i)\n const cordova = match(/cordova/i)\n const electron = match(/electron/i)\n const chrome = match(/chrome/i)\n const edge = match(/edge/i)\n const firefox = match(/firefox/i)\n const opera = match(/opera/i)\n const win = match(/win/i)\n const mac = match(/mac/i)\n const linux = match(/linux/i)\n\n return {\n android,\n ios,\n cordova,\n electron,\n chrome,\n edge,\n firefox,\n opera,\n win,\n mac,\n linux,\n touch: SUPPORTS_TOUCH,\n ssr: userAgent === 'ssr',\n }\n}\n\nexport function createDisplay (options?: DisplayOptions, ssr?: SSROptions): DisplayInstance {\n const { thresholds, mobileBreakpoint } = parseDisplayOptions(options)\n\n const height = shallowRef(getClientHeight(ssr))\n const platform = shallowRef(getPlatform(ssr))\n const state = reactive({} as DisplayInstance)\n const width = shallowRef(getClientWidth(ssr))\n\n function updateSize () {\n height.value = getClientHeight()\n width.value = getClientWidth()\n }\n function update () {\n updateSize()\n platform.value = getPlatform()\n }\n\n // eslint-disable-next-line max-statements\n watchEffect(() => {\n const xs = width.value < thresholds.sm\n const sm = width.value < thresholds.md && !xs\n const md = width.value < thresholds.lg && !(sm || xs)\n const lg = width.value < thresholds.xl && !(md || sm || xs)\n const xl = width.value < thresholds.xxl && !(lg || md || sm || xs)\n const xxl = width.value >= thresholds.xxl\n const name =\n xs ? 'xs'\n : sm ? 'sm'\n : md ? 'md'\n : lg ? 'lg'\n : xl ? 'xl'\n : 'xxl'\n const breakpointValue = typeof mobileBreakpoint === 'number' ? mobileBreakpoint : thresholds[mobileBreakpoint]\n const mobile = width.value < breakpointValue\n\n state.xs = xs\n state.sm = sm\n state.md = md\n state.lg = lg\n state.xl = xl\n state.xxl = xxl\n state.smAndUp = !xs\n state.mdAndUp = !(xs || sm)\n state.lgAndUp = !(xs || sm || md)\n state.xlAndUp = !(xs || sm || md || lg)\n state.smAndDown = !(md || lg || xl || xxl)\n state.mdAndDown = !(lg || xl || xxl)\n state.lgAndDown = !(xl || xxl)\n state.xlAndDown = !xxl\n state.name = name\n state.height = height.value\n state.width = width.value\n state.mobile = mobile\n state.mobileBreakpoint = mobileBreakpoint\n state.platform = platform.value\n state.thresholds = thresholds\n })\n\n if (IN_BROWSER) {\n window.addEventListener('resize', updateSize, { passive: true })\n }\n\n return { ...toRefs(state), update, ssr: !!ssr }\n}\n\nexport const makeDisplayProps = propsFactory({\n mobile: {\n type: Boolean as PropType<boolean | null>,\n default: false,\n },\n mobileBreakpoint: [Number, String] as PropType<number | DisplayBreakpoint>,\n}, 'display')\n\nexport function useDisplay (\n props: DisplayProps = {},\n name = getCurrentInstanceName(),\n) {\n const display = inject(DisplaySymbol)\n\n if (!display) throw new Error('Could not find Vuetify display injection')\n\n const mobile = computed(() => {\n if (props.mobile) {\n return true\n } else if (typeof props.mobileBreakpoint === 'number') {\n return display.width.value < props.mobileBreakpoint\n } else if (props.mobileBreakpoint) {\n return display.width.value < display.thresholds.value[props.mobileBreakpoint]\n } else if (props.mobile === null) {\n return display.mobile.value\n } else {\n return false\n }\n })\n\n const displayClasses = computed(() => {\n if (!name) return {}\n\n return { [`${name}--mobile`]: mobile.value }\n })\n\n return { ...display, displayClasses, mobile }\n}\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"display.mjs","names":["computed","inject","reactive","shallowRef","toRefs","watchEffect","getCurrentInstanceName","mergeDeep","propsFactory","IN_BROWSER","SUPPORTS_TOUCH","breakpoints","DisplaySymbol","Symbol","for","defaultDisplayOptions","mobileBreakpoint","thresholds","xs","sm","md","lg","xl","xxl","parseDisplayOptions","options","arguments","length","undefined","getClientWidth","ssr","window","innerWidth","clientWidth","getClientHeight","innerHeight","clientHeight","getPlatform","userAgent","navigator","match","regexp","Boolean","android","ios","cordova","electron","chrome","edge","firefox","opera","win","mac","linux","touch","createDisplay","height","platform","state","width","updateSize","value","update","name","breakpointValue","mobile","smAndUp","mdAndUp","lgAndUp","xlAndUp","smAndDown","mdAndDown","lgAndDown","xlAndDown","addEventListener","passive","makeDisplayProps","type","default","Number","String","useDisplay","props","display","Error","displayClasses"],"sources":["../../src/composables/display.ts"],"sourcesContent":["// Utilities\nimport { computed, inject, reactive, shallowRef, toRefs, watchEffect } from 'vue'\nimport { getCurrentInstanceName, mergeDeep, propsFactory } from '@/util'\nimport { IN_BROWSER, SUPPORTS_TOUCH } from '@/util/globals'\n\n// Types\nimport type { InjectionKey, PropType, Ref } from 'vue'\n\nexport const breakpoints = ['sm', 'md', 'lg', 'xl', 'xxl'] as const // no xs\n\nexport type Breakpoint = typeof breakpoints[number]\n\nexport type DisplayBreakpoint = 'xs' | Breakpoint\n\nexport type DisplayThresholds = {\n [key in DisplayBreakpoint]: number\n}\n\nexport interface DisplayProps {\n mobile?: boolean | null\n mobileBreakpoint?: number | DisplayBreakpoint\n}\n\nexport interface DisplayOptions {\n mobileBreakpoint?: number | DisplayBreakpoint\n thresholds?: Partial<DisplayThresholds>\n}\n\nexport interface InternalDisplayOptions {\n mobileBreakpoint: number | DisplayBreakpoint\n thresholds: DisplayThresholds\n}\n\nexport type SSROptions = boolean | {\n clientWidth: number\n clientHeight?: number\n}\n\nexport interface DisplayPlatform {\n android: boolean\n ios: boolean\n cordova: boolean\n electron: boolean\n chrome: boolean\n edge: boolean\n firefox: boolean\n opera: boolean\n win: boolean\n mac: boolean\n linux: boolean\n touch: boolean\n ssr: boolean\n}\n\nexport interface DisplayInstance {\n xs: Ref<boolean>\n sm: Ref<boolean>\n md: Ref<boolean>\n lg: Ref<boolean>\n xl: Ref<boolean>\n xxl: Ref<boolean>\n smAndUp: Ref<boolean>\n mdAndUp: Ref<boolean>\n lgAndUp: Ref<boolean>\n xlAndUp: Ref<boolean>\n smAndDown: Ref<boolean>\n mdAndDown: Ref<boolean>\n lgAndDown: Ref<boolean>\n xlAndDown: Ref<boolean>\n name: Ref<DisplayBreakpoint>\n height: Ref<number>\n width: Ref<number>\n mobile: Ref<boolean>\n mobileBreakpoint: Ref<number | DisplayBreakpoint>\n platform: Ref<DisplayPlatform>\n thresholds: Ref<DisplayThresholds>\n\n /** @internal */\n ssr: boolean\n\n update (): void\n}\n\nexport const DisplaySymbol: InjectionKey<DisplayInstance> = Symbol.for('vuetify:display')\n\nconst defaultDisplayOptions: DisplayOptions = {\n mobileBreakpoint: 'lg',\n thresholds: {\n xs: 0,\n sm: 600,\n md: 960,\n lg: 1280,\n xl: 1920,\n xxl: 2560,\n },\n}\n\nconst parseDisplayOptions = (options: DisplayOptions = defaultDisplayOptions) => {\n return mergeDeep(defaultDisplayOptions, options) as InternalDisplayOptions\n}\n\nfunction getClientWidth (ssr?: SSROptions) {\n return IN_BROWSER && !ssr\n ? window.innerWidth\n : (typeof ssr === 'object' && ssr.clientWidth) || 0\n}\n\nfunction getClientHeight (ssr?: SSROptions) {\n return IN_BROWSER && !ssr\n ? window.innerHeight\n : (typeof ssr === 'object' && ssr.clientHeight) || 0\n}\n\nfunction getPlatform (ssr?: SSROptions): DisplayPlatform {\n const userAgent = IN_BROWSER && !ssr\n ? window.navigator.userAgent\n : 'ssr'\n\n function match (regexp: RegExp) {\n return Boolean(userAgent.match(regexp))\n }\n\n const android = match(/android/i)\n const ios = match(/iphone|ipad|ipod/i)\n const cordova = match(/cordova/i)\n const electron = match(/electron/i)\n const chrome = match(/chrome/i)\n const edge = match(/edge/i)\n const firefox = match(/firefox/i)\n const opera = match(/opera/i)\n const win = match(/win/i)\n const mac = match(/mac/i)\n const linux = match(/linux/i)\n\n return {\n android,\n ios,\n cordova,\n electron,\n chrome,\n edge,\n firefox,\n opera,\n win,\n mac,\n linux,\n touch: SUPPORTS_TOUCH,\n ssr: userAgent === 'ssr',\n }\n}\n\nexport function createDisplay (options?: DisplayOptions, ssr?: SSROptions): DisplayInstance {\n const { thresholds, mobileBreakpoint } = parseDisplayOptions(options)\n\n const height = shallowRef(getClientHeight(ssr))\n const platform = shallowRef(getPlatform(ssr))\n const state = reactive({} as DisplayInstance)\n const width = shallowRef(getClientWidth(ssr))\n\n function updateSize () {\n height.value = getClientHeight()\n width.value = getClientWidth()\n }\n function update () {\n updateSize()\n platform.value = getPlatform()\n }\n\n // eslint-disable-next-line max-statements\n watchEffect(() => {\n const xs = width.value < thresholds.sm\n const sm = width.value < thresholds.md && !xs\n const md = width.value < thresholds.lg && !(sm || xs)\n const lg = width.value < thresholds.xl && !(md || sm || xs)\n const xl = width.value < thresholds.xxl && !(lg || md || sm || xs)\n const xxl = width.value >= thresholds.xxl\n const name =\n xs ? 'xs'\n : sm ? 'sm'\n : md ? 'md'\n : lg ? 'lg'\n : xl ? 'xl'\n : 'xxl'\n const breakpointValue = typeof mobileBreakpoint === 'number' ? mobileBreakpoint : thresholds[mobileBreakpoint]\n const mobile = width.value < breakpointValue\n\n state.xs = xs\n state.sm = sm\n state.md = md\n state.lg = lg\n state.xl = xl\n state.xxl = xxl\n state.smAndUp = !xs\n state.mdAndUp = !(xs || sm)\n state.lgAndUp = !(xs || sm || md)\n state.xlAndUp = !(xs || sm || md || lg)\n state.smAndDown = !(md || lg || xl || xxl)\n state.mdAndDown = !(lg || xl || xxl)\n state.lgAndDown = !(xl || xxl)\n state.xlAndDown = !xxl\n state.name = name\n state.height = height.value\n state.width = width.value\n state.mobile = mobile\n state.mobileBreakpoint = mobileBreakpoint\n state.platform = platform.value\n state.thresholds = thresholds\n })\n\n if (IN_BROWSER) {\n window.addEventListener('resize', updateSize, { passive: true })\n }\n\n return { ...toRefs(state), update, ssr: !!ssr }\n}\n\nexport const makeDisplayProps = propsFactory({\n mobile: {\n type: Boolean as PropType<boolean | null>,\n default: false,\n },\n mobileBreakpoint: [Number, String] as PropType<number | DisplayBreakpoint>,\n}, 'display')\n\nexport function useDisplay (\n props: DisplayProps = { mobile: null },\n name = getCurrentInstanceName(),\n) {\n const display = inject(DisplaySymbol)\n\n if (!display) throw new Error('Could not find Vuetify display injection')\n\n const mobile = computed(() => {\n if (props.mobile) {\n return true\n } else if (typeof props.mobileBreakpoint === 'number') {\n return display.width.value < props.mobileBreakpoint\n } else if (props.mobileBreakpoint) {\n return display.width.value < display.thresholds.value[props.mobileBreakpoint]\n } else if (props.mobile === null) {\n return display.mobile.value\n } else {\n return false\n }\n })\n\n const displayClasses = computed(() => {\n if (!name) return {}\n\n return { [`${name}--mobile`]: mobile.value }\n })\n\n return { ...display, displayClasses, mobile }\n}\n"],"mappings":"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","ignoreList":[]}
@@ -16,7 +16,7 @@ export const createVuetify = function () {
16
16
  ...options
17
17
  });
18
18
  };
19
- export const version = "3.7.8-master.2025-01-28";
19
+ export const version = "3.7.8-master.2025-01-29";
20
20
  createVuetify.version = version;
21
21
  export { blueprints, components, directives };
22
22
  export * from "./composables/index.mjs";
package/lib/framework.mjs CHANGED
@@ -97,7 +97,7 @@ export function createVuetify() {
97
97
  goTo
98
98
  };
99
99
  }
100
- export const version = "3.7.8-master.2025-01-28";
100
+ export const version = "3.7.8-master.2025-01-29";
101
101
  createVuetify.version = version;
102
102
 
103
103
  // Vue's inject() can only be used in setup
package/lib/index.d.mts CHANGED
@@ -486,31 +486,26 @@ declare module 'vue' {
486
486
  $children?: VNodeChild
487
487
  }
488
488
  export interface GlobalComponents {
489
- VAlert: typeof import('vuetify/components')['VAlert']
490
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
491
489
  VApp: typeof import('vuetify/components')['VApp']
490
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
492
491
  VBadge: typeof import('vuetify/components')['VBadge']
492
+ VAlert: typeof import('vuetify/components')['VAlert']
493
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
494
+ VAvatar: typeof import('vuetify/components')['VAvatar']
495
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
496
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
493
497
  VBanner: typeof import('vuetify/components')['VBanner']
494
498
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
495
499
  VBannerText: typeof import('vuetify/components')['VBannerText']
496
- VAppBar: typeof import('vuetify/components')['VAppBar']
497
- VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
498
- VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
499
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
500
- VAvatar: typeof import('vuetify/components')['VAvatar']
501
500
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
502
501
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
503
502
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
504
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
505
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
503
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
506
504
  VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
507
505
  VBtn: typeof import('vuetify/components')['VBtn']
508
506
  VCarousel: typeof import('vuetify/components')['VCarousel']
509
507
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
510
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
511
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
512
508
  VChip: typeof import('vuetify/components')['VChip']
513
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
514
509
  VCard: typeof import('vuetify/components')['VCard']
515
510
  VCardActions: typeof import('vuetify/components')['VCardActions']
516
511
  VCardItem: typeof import('vuetify/components')['VCardItem']
@@ -518,30 +513,33 @@ declare module 'vue' {
518
513
  VCardText: typeof import('vuetify/components')['VCardText']
519
514
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
520
515
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
516
+ VCombobox: typeof import('vuetify/components')['VCombobox']
521
517
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
518
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
519
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
522
520
  VCode: typeof import('vuetify/components')['VCode']
523
521
  VCounter: typeof import('vuetify/components')['VCounter']
522
+ VDataTable: typeof import('vuetify/components')['VDataTable']
523
+ VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
524
+ VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
525
+ VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
526
+ VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
527
+ VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
528
+ VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
524
529
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
525
530
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
526
531
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
527
532
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
528
533
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
529
534
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
530
- VCombobox: typeof import('vuetify/components')['VCombobox']
531
- VFab: typeof import('vuetify/components')['VFab']
532
535
  VDialog: typeof import('vuetify/components')['VDialog']
536
+ VDivider: typeof import('vuetify/components')['VDivider']
533
537
  VEmptyState: typeof import('vuetify/components')['VEmptyState']
534
- VDataTable: typeof import('vuetify/components')['VDataTable']
535
- VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
536
- VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
537
- VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
538
- VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
539
- VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
540
- VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
538
+ VFab: typeof import('vuetify/components')['VFab']
539
+ VFooter: typeof import('vuetify/components')['VFooter']
541
540
  VFileInput: typeof import('vuetify/components')['VFileInput']
542
541
  VField: typeof import('vuetify/components')['VField']
543
542
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
544
- VFooter: typeof import('vuetify/components')['VFooter']
545
543
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
546
544
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
547
545
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
@@ -553,10 +551,12 @@ declare module 'vue' {
553
551
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
554
552
  VImg: typeof import('vuetify/components')['VImg']
555
553
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
556
- VKbd: typeof import('vuetify/components')['VKbd']
557
- VLabel: typeof import('vuetify/components')['VLabel']
558
554
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
559
555
  VItem: typeof import('vuetify/components')['VItem']
556
+ VKbd: typeof import('vuetify/components')['VKbd']
557
+ VLabel: typeof import('vuetify/components')['VLabel']
558
+ VInput: typeof import('vuetify/components')['VInput']
559
+ VMain: typeof import('vuetify/components')['VMain']
560
560
  VList: typeof import('vuetify/components')['VList']
561
561
  VListGroup: typeof import('vuetify/components')['VListGroup']
562
562
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -566,43 +566,39 @@ declare module 'vue' {
566
566
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
567
567
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
568
568
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
569
- VMain: typeof import('vuetify/components')['VMain']
570
- VInput: typeof import('vuetify/components')['VInput']
571
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
572
- VDivider: typeof import('vuetify/components')['VDivider']
573
569
  VMenu: typeof import('vuetify/components')['VMenu']
574
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
575
570
  VMessages: typeof import('vuetify/components')['VMessages']
576
- VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
571
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
577
572
  VOverlay: typeof import('vuetify/components')['VOverlay']
573
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
578
574
  VPagination: typeof import('vuetify/components')['VPagination']
579
- VRating: typeof import('vuetify/components')['VRating']
580
575
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
581
- VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
576
+ VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
582
577
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
583
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
584
578
  VSelect: typeof import('vuetify/components')['VSelect']
579
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
580
+ VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
585
581
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
586
- VSlider: typeof import('vuetify/components')['VSlider']
582
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
587
583
  VSheet: typeof import('vuetify/components')['VSheet']
588
584
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
589
585
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
590
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
586
+ VSlider: typeof import('vuetify/components')['VSlider']
591
587
  VSwitch: typeof import('vuetify/components')['VSwitch']
592
- VTextField: typeof import('vuetify/components')['VTextField']
588
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
593
589
  VStepper: typeof import('vuetify/components')['VStepper']
594
590
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
595
591
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
596
592
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
597
593
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
598
594
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
599
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
600
- VTable: typeof import('vuetify/components')['VTable']
601
- VTextarea: typeof import('vuetify/components')['VTextarea']
595
+ VTextField: typeof import('vuetify/components')['VTextField']
602
596
  VTab: typeof import('vuetify/components')['VTab']
603
597
  VTabs: typeof import('vuetify/components')['VTabs']
604
598
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
605
599
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
600
+ VTextarea: typeof import('vuetify/components')['VTextarea']
601
+ VTable: typeof import('vuetify/components')['VTable']
606
602
  VTimeline: typeof import('vuetify/components')['VTimeline']
607
603
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
608
604
  VToolbar: typeof import('vuetify/components')['VToolbar']
@@ -611,29 +607,28 @@ declare module 'vue' {
611
607
  VTooltip: typeof import('vuetify/components')['VTooltip']
612
608
  VWindow: typeof import('vuetify/components')['VWindow']
613
609
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
610
+ VDataIterator: typeof import('vuetify/components')['VDataIterator']
614
611
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
615
612
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
616
- VDataIterator: typeof import('vuetify/components')['VDataIterator']
617
613
  VForm: typeof import('vuetify/components')['VForm']
618
614
  VContainer: typeof import('vuetify/components')['VContainer']
619
615
  VCol: typeof import('vuetify/components')['VCol']
620
616
  VRow: typeof import('vuetify/components')['VRow']
621
617
  VSpacer: typeof import('vuetify/components')['VSpacer']
622
618
  VHover: typeof import('vuetify/components')['VHover']
619
+ VLazy: typeof import('vuetify/components')['VLazy']
623
620
  VLayout: typeof import('vuetify/components')['VLayout']
624
621
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
625
- VLazy: typeof import('vuetify/components')['VLazy']
626
622
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
627
623
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
628
624
  VParallax: typeof import('vuetify/components')['VParallax']
629
- VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
630
625
  VRadio: typeof import('vuetify/components')['VRadio']
631
- VResponsive: typeof import('vuetify/components')['VResponsive']
632
- VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
626
+ VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
633
627
  VSparkline: typeof import('vuetify/components')['VSparkline']
628
+ VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
634
629
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
635
- VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
636
630
  VValidation: typeof import('vuetify/components')['VValidation']
631
+ VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
637
632
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
638
633
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
639
634
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -650,6 +645,13 @@ declare module 'vue' {
650
645
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
651
646
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
652
647
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
648
+ VRating: typeof import('vuetify/components')['VRating']
649
+ VResponsive: typeof import('vuetify/components')['VResponsive']
650
+ VAppBar: typeof import('vuetify/components')['VAppBar']
651
+ VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
652
+ VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
653
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
654
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
653
655
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
654
656
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
655
657
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
@@ -658,20 +660,18 @@ declare module 'vue' {
658
660
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
659
661
  VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
660
662
  VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
661
- VPicker: typeof import('vuetify/labs/components')['VPicker']
662
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
663
+ VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
663
664
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
664
665
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
665
666
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
666
- VTreeview: typeof import('vuetify/labs/components')['VTreeview']
667
- VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
668
- VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
669
- VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
670
667
  VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
671
668
  VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
672
669
  VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
673
- VDateInput: typeof import('vuetify/labs/components')['VDateInput']
670
+ VTreeview: typeof import('vuetify/labs/components')['VTreeview']
671
+ VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
672
+ VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
674
673
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
674
+ VDateInput: typeof import('vuetify/labs/components')['VDateInput']
675
675
  VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
676
676
  }
677
677
  }
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.7.8-master.2025-01-28",
4
+ "version": "3.7.8-master.2025-01-29",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"