@vuetify/nightly 3.7.2-master.2024-10-09 → 3.7.2-master.2024-10-11

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.
@@ -1,6 +1,6 @@
1
1
  // Utilities
2
2
  import { h, mergeProps, render, resolveComponent } from 'vue';
3
- import { isObject } from "../util/index.mjs"; // Types
3
+ import { consoleError, isObject } from "../util/index.mjs"; // Types
4
4
  export function useDirectiveComponent(component, props) {
5
5
  const concreteComponent = typeof component === 'string' ? resolveComponent(component) : component;
6
6
  const hook = mountComponent(concreteComponent, props);
@@ -37,7 +37,7 @@ function findComponentParent(vnode, root) {
37
37
  const walk = children => {
38
38
  for (const child of children) {
39
39
  if (!child) continue;
40
- if (child === vnode) {
40
+ if (child === vnode || child.el && vnode.el && child.el === vnode.el) {
41
41
  return true;
42
42
  }
43
43
  stack.add(child);
@@ -57,7 +57,8 @@ function findComponentParent(vnode, root) {
57
57
  return false;
58
58
  };
59
59
  if (!walk([root.subTree])) {
60
- throw new Error('Could not find original vnode');
60
+ consoleError('Could not find original vnode, component will not inherit provides');
61
+ return root;
61
62
  }
62
63
 
63
64
  // Return the first component parent
@@ -1 +1 @@
1
- {"version":3,"file":"directiveComponent.mjs","names":["h","mergeProps","render","resolveComponent","isObject","useDirectiveComponent","component","props","concreteComponent","hook","mountComponent","mounted","updated","unmounted","el","binding","vnode","_props","text","value","children","textContent","provides","ctx","instance","$","findComponentParent","node","appContext","Object","assign","create","root","stack","Set","walk","child","add","result","suspense","ssContent","Array","isArray","subTree","delete","Error","from","reverse"],"sources":["../../src/composables/directiveComponent.ts"],"sourcesContent":["// Utilities\nimport { h, mergeProps, render, resolveComponent } from 'vue'\nimport { isObject } from '@/util'\n\n// Types\nimport type {\n Component,\n ComponentInternalInstance,\n ComponentPublicInstance,\n ConcreteComponent,\n DirectiveBinding,\n ObjectDirective,\n VNode,\n} from 'vue'\nimport type { ComponentInstance } from '@/util'\n\ntype ExcludeProps =\n | 'v-slots'\n | `v-slot:${string}`\n | `on${Uppercase<string>}${string}`\n | 'key'\n | 'ref'\n | 'ref_for'\n | 'ref_key'\n | '$children'\n\ndeclare const CustomDirectiveSymbol: unique symbol\ntype DirectiveHook<B extends DirectiveBinding> = (el: any, binding: B, vnode: VNode<any, any>, prevVNode: VNode<any, any>) => void\nexport interface CustomDirective<B extends DirectiveBinding = DirectiveBinding> {\n created?: DirectiveHook<B>\n beforeMount?: DirectiveHook<B>\n mounted?: DirectiveHook<B>\n beforeUpdate?: DirectiveHook<B>\n updated?: DirectiveHook<B>\n beforeUnmount?: DirectiveHook<B>\n unmounted?: DirectiveHook<B>\n [CustomDirectiveSymbol]: true\n}\n\nexport function useDirectiveComponent <\n Binding extends DirectiveBinding,\n> (component: string | Component, props?: (binding: Binding) => Record<string, any>): CustomDirective<Binding>\nexport function useDirectiveComponent <\n C extends Component,\n Props = Omit<ComponentInstance<C>['$props'], ExcludeProps>\n> (component: string | C, props?: Record<string, any>): ObjectDirective<any, Props>\nexport function useDirectiveComponent (\n component: string | Component,\n props?: Record<string, any> | ((binding: DirectiveBinding) => Record<string, any>)\n): ObjectDirective | CustomDirective {\n const concreteComponent = (typeof component === 'string'\n ? resolveComponent(component)\n : component) as ConcreteComponent\n\n const hook = mountComponent(concreteComponent, props)\n\n return {\n mounted: hook,\n updated: hook,\n unmounted (el: HTMLElement) {\n render(null, el)\n },\n }\n}\n\nfunction mountComponent (component: ConcreteComponent, props?: Record<string, any> | ((binding: DirectiveBinding) => Record<string, any>)) {\n return function (el: HTMLElement, binding: DirectiveBinding, vnode: VNode) {\n const _props = typeof props === 'function' ? props(binding) : props\n const text = binding.value?.text ?? binding.value ?? _props?.text\n const value = isObject(binding.value) ? binding.value : {}\n\n // Get the children from the props or directive value, or the element's children\n const children = () => text ?? el.textContent\n\n // If vnode.ctx is the same as the instance, then we're bound to a plain element\n // and need to find the nearest parent component instance to inherit provides from\n const provides = (vnode.ctx === binding.instance!.$\n ? findComponentParent(vnode, binding.instance!.$)?.provides\n : vnode.ctx?.provides) ?? binding.instance!.$.provides\n\n const node = h(component, mergeProps(_props, value), children)\n node.appContext = Object.assign(\n Object.create(null),\n (binding.instance as ComponentPublicInstance).$.appContext,\n { provides }\n )\n\n render(node, el)\n }\n}\n\nfunction findComponentParent (vnode: VNode, root: ComponentInternalInstance): ComponentInternalInstance | null {\n // Walk the tree from root until we find the child vnode\n const stack = new Set<VNode>()\n const walk = (children: VNode[]): boolean => {\n for (const child of children) {\n if (!child) continue\n\n if (child === vnode) {\n return true\n }\n\n stack.add(child)\n let result\n if (child.suspense) {\n result = walk([child.ssContent!])\n } else if (Array.isArray(child.children)) {\n result = walk(child.children as VNode[])\n } else if (child.component?.vnode) {\n result = walk([child.component?.subTree])\n }\n if (result) {\n return result\n }\n stack.delete(child)\n }\n\n return false\n }\n if (!walk([root.subTree])) {\n throw new Error('Could not find original vnode')\n }\n\n // Return the first component parent\n const result = Array.from(stack).reverse()\n for (const child of result) {\n if (child.component) {\n return child.component\n }\n }\n return root\n}\n"],"mappings":"AAAA;AACA,SAASA,CAAC,EAAEC,UAAU,EAAEC,MAAM,EAAEC,gBAAgB,QAAQ,KAAK;AAAA,SACpDC,QAAQ,6BAEjB;AA0CA,OAAO,SAASC,qBAAqBA,CACnCC,SAA6B,EAC7BC,KAAkF,EAC/C;EACnC,MAAMC,iBAAiB,GAAI,OAAOF,SAAS,KAAK,QAAQ,GACpDH,gBAAgB,CAACG,SAAS,CAAC,GAC3BA,SAA+B;EAEnC,MAAMG,IAAI,GAAGC,cAAc,CAACF,iBAAiB,EAAED,KAAK,CAAC;EAErD,OAAO;IACLI,OAAO,EAAEF,IAAI;IACbG,OAAO,EAAEH,IAAI;IACbI,SAASA,CAAEC,EAAe,EAAE;MAC1BZ,MAAM,CAAC,IAAI,EAAEY,EAAE,CAAC;IAClB;EACF,CAAC;AACH;AAEA,SAASJ,cAAcA,CAAEJ,SAA4B,EAAEC,KAAkF,EAAE;EACzI,OAAO,UAAUO,EAAe,EAAEC,OAAyB,EAAEC,KAAY,EAAE;IACzE,MAAMC,MAAM,GAAG,OAAOV,KAAK,KAAK,UAAU,GAAGA,KAAK,CAACQ,OAAO,CAAC,GAAGR,KAAK;IACnE,MAAMW,IAAI,GAAGH,OAAO,CAACI,KAAK,EAAED,IAAI,IAAIH,OAAO,CAACI,KAAK,IAAIF,MAAM,EAAEC,IAAI;IACjE,MAAMC,KAAK,GAAGf,QAAQ,CAACW,OAAO,CAACI,KAAK,CAAC,GAAGJ,OAAO,CAACI,KAAK,GAAG,CAAC,CAAC;;IAE1D;IACA,MAAMC,QAAQ,GAAGA,CAAA,KAAMF,IAAI,IAAIJ,EAAE,CAACO,WAAW;;IAE7C;IACA;IACA,MAAMC,QAAQ,GAAG,CAACN,KAAK,CAACO,GAAG,KAAKR,OAAO,CAACS,QAAQ,CAAEC,CAAC,GAC/CC,mBAAmB,CAACV,KAAK,EAAED,OAAO,CAACS,QAAQ,CAAEC,CAAC,CAAC,EAAEH,QAAQ,GACzDN,KAAK,CAACO,GAAG,EAAED,QAAQ,KAAKP,OAAO,CAACS,QAAQ,CAAEC,CAAC,CAACH,QAAQ;IAExD,MAAMK,IAAI,GAAG3B,CAAC,CAACM,SAAS,EAAEL,UAAU,CAACgB,MAAM,EAAEE,KAAK,CAAC,EAAEC,QAAQ,CAAC;IAC9DO,IAAI,CAACC,UAAU,GAAGC,MAAM,CAACC,MAAM,CAC7BD,MAAM,CAACE,MAAM,CAAC,IAAI,CAAC,EAClBhB,OAAO,CAACS,QAAQ,CAA6BC,CAAC,CAACG,UAAU,EAC1D;MAAEN;IAAS,CACb,CAAC;IAEDpB,MAAM,CAACyB,IAAI,EAAEb,EAAE,CAAC;EAClB,CAAC;AACH;AAEA,SAASY,mBAAmBA,CAAEV,KAAY,EAAEgB,IAA+B,EAAoC;EAC7G;EACA,MAAMC,KAAK,GAAG,IAAIC,GAAG,CAAQ,CAAC;EAC9B,MAAMC,IAAI,GAAIf,QAAiB,IAAc;IAC3C,KAAK,MAAMgB,KAAK,IAAIhB,QAAQ,EAAE;MAC5B,IAAI,CAACgB,KAAK,EAAE;MAEZ,IAAIA,KAAK,KAAKpB,KAAK,EAAE;QACnB,OAAO,IAAI;MACb;MAEAiB,KAAK,CAACI,GAAG,CAACD,KAAK,CAAC;MAChB,IAAIE,MAAM;MACV,IAAIF,KAAK,CAACG,QAAQ,EAAE;QAClBD,MAAM,GAAGH,IAAI,CAAC,CAACC,KAAK,CAACI,SAAS,CAAE,CAAC;MACnC,CAAC,MAAM,IAAIC,KAAK,CAACC,OAAO,CAACN,KAAK,CAAChB,QAAQ,CAAC,EAAE;QACxCkB,MAAM,GAAGH,IAAI,CAACC,KAAK,CAAChB,QAAmB,CAAC;MAC1C,CAAC,MAAM,IAAIgB,KAAK,CAAC9B,SAAS,EAAEU,KAAK,EAAE;QACjCsB,MAAM,GAAGH,IAAI,CAAC,CAACC,KAAK,CAAC9B,SAAS,EAAEqC,OAAO,CAAC,CAAC;MAC3C;MACA,IAAIL,MAAM,EAAE;QACV,OAAOA,MAAM;MACf;MACAL,KAAK,CAACW,MAAM,CAACR,KAAK,CAAC;IACrB;IAEA,OAAO,KAAK;EACd,CAAC;EACD,IAAI,CAACD,IAAI,CAAC,CAACH,IAAI,CAACW,OAAO,CAAC,CAAC,EAAE;IACzB,MAAM,IAAIE,KAAK,CAAC,+BAA+B,CAAC;EAClD;;EAEA;EACA,MAAMP,MAAM,GAAGG,KAAK,CAACK,IAAI,CAACb,KAAK,CAAC,CAACc,OAAO,CAAC,CAAC;EAC1C,KAAK,MAAMX,KAAK,IAAIE,MAAM,EAAE;IAC1B,IAAIF,KAAK,CAAC9B,SAAS,EAAE;MACnB,OAAO8B,KAAK,CAAC9B,SAAS;IACxB;EACF;EACA,OAAO0B,IAAI;AACb","ignoreList":[]}
1
+ {"version":3,"file":"directiveComponent.mjs","names":["h","mergeProps","render","resolveComponent","consoleError","isObject","useDirectiveComponent","component","props","concreteComponent","hook","mountComponent","mounted","updated","unmounted","el","binding","vnode","_props","text","value","children","textContent","provides","ctx","instance","$","findComponentParent","node","appContext","Object","assign","create","root","stack","Set","walk","child","add","result","suspense","ssContent","Array","isArray","subTree","delete","from","reverse"],"sources":["../../src/composables/directiveComponent.ts"],"sourcesContent":["// Utilities\nimport { h, mergeProps, render, resolveComponent } from 'vue'\nimport { consoleError, isObject } from '@/util'\n\n// Types\nimport type {\n Component,\n ComponentInternalInstance,\n ComponentPublicInstance,\n ConcreteComponent,\n DirectiveBinding,\n ObjectDirective,\n VNode,\n} from 'vue'\nimport type { ComponentInstance } from '@/util'\n\ntype ExcludeProps =\n | 'v-slots'\n | `v-slot:${string}`\n | `on${Uppercase<string>}${string}`\n | 'key'\n | 'ref'\n | 'ref_for'\n | 'ref_key'\n | '$children'\n\ndeclare const CustomDirectiveSymbol: unique symbol\ntype DirectiveHook<B extends DirectiveBinding> = (el: any, binding: B, vnode: VNode<any, any>, prevVNode: VNode<any, any>) => void\nexport interface CustomDirective<B extends DirectiveBinding = DirectiveBinding> {\n created?: DirectiveHook<B>\n beforeMount?: DirectiveHook<B>\n mounted?: DirectiveHook<B>\n beforeUpdate?: DirectiveHook<B>\n updated?: DirectiveHook<B>\n beforeUnmount?: DirectiveHook<B>\n unmounted?: DirectiveHook<B>\n [CustomDirectiveSymbol]: true\n}\n\nexport function useDirectiveComponent <\n Binding extends DirectiveBinding,\n> (component: string | Component, props?: (binding: Binding) => Record<string, any>): CustomDirective<Binding>\nexport function useDirectiveComponent <\n C extends Component,\n Props = Omit<ComponentInstance<C>['$props'], ExcludeProps>\n> (component: string | C, props?: Record<string, any>): ObjectDirective<any, Props>\nexport function useDirectiveComponent (\n component: string | Component,\n props?: Record<string, any> | ((binding: DirectiveBinding) => Record<string, any>)\n): ObjectDirective | CustomDirective {\n const concreteComponent = (typeof component === 'string'\n ? resolveComponent(component)\n : component) as ConcreteComponent\n\n const hook = mountComponent(concreteComponent, props)\n\n return {\n mounted: hook,\n updated: hook,\n unmounted (el: HTMLElement) {\n render(null, el)\n },\n }\n}\n\nfunction mountComponent (component: ConcreteComponent, props?: Record<string, any> | ((binding: DirectiveBinding) => Record<string, any>)) {\n return function (el: HTMLElement, binding: DirectiveBinding, vnode: VNode) {\n const _props = typeof props === 'function' ? props(binding) : props\n const text = binding.value?.text ?? binding.value ?? _props?.text\n const value = isObject(binding.value) ? binding.value : {}\n\n // Get the children from the props or directive value, or the element's children\n const children = () => text ?? el.textContent\n\n // If vnode.ctx is the same as the instance, then we're bound to a plain element\n // and need to find the nearest parent component instance to inherit provides from\n const provides = (vnode.ctx === binding.instance!.$\n ? findComponentParent(vnode, binding.instance!.$)?.provides\n : vnode.ctx?.provides) ?? binding.instance!.$.provides\n\n const node = h(component, mergeProps(_props, value), children)\n node.appContext = Object.assign(\n Object.create(null),\n (binding.instance as ComponentPublicInstance).$.appContext,\n { provides }\n )\n\n render(node, el)\n }\n}\n\nfunction findComponentParent (vnode: VNode, root: ComponentInternalInstance): ComponentInternalInstance | null {\n // Walk the tree from root until we find the child vnode\n const stack = new Set<VNode>()\n const walk = (children: VNode[]): boolean => {\n for (const child of children) {\n if (!child) continue\n\n if (child === vnode || (child.el && vnode.el && child.el === vnode.el)) {\n return true\n }\n\n stack.add(child)\n let result\n if (child.suspense) {\n result = walk([child.ssContent!])\n } else if (Array.isArray(child.children)) {\n result = walk(child.children as VNode[])\n } else if (child.component?.vnode) {\n result = walk([child.component?.subTree])\n }\n if (result) {\n return result\n }\n stack.delete(child)\n }\n\n return false\n }\n if (!walk([root.subTree])) {\n consoleError('Could not find original vnode, component will not inherit provides')\n return root\n }\n\n // Return the first component parent\n const result = Array.from(stack).reverse()\n for (const child of result) {\n if (child.component) {\n return child.component\n }\n }\n return root\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.2-master.2024-10-09";
19
+ export const version = "3.7.2-master.2024-10-11";
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.2-master.2024-10-09";
100
+ export const version = "3.7.2-master.2024-10-11";
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,48 +486,42 @@ declare module 'vue' {
486
486
  $children?: VNodeChild
487
487
  }
488
488
  export interface GlobalComponents {
489
- VApp: typeof import('vuetify/components')['VApp']
490
489
  VAppBar: typeof import('vuetify/components')['VAppBar']
491
490
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
492
491
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
492
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
493
+ VApp: typeof import('vuetify/components')['VApp']
493
494
  VAlert: typeof import('vuetify/components')['VAlert']
494
495
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
495
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
496
- VBadge: typeof import('vuetify/components')['VBadge']
497
- VAvatar: typeof import('vuetify/components')['VAvatar']
498
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
499
496
  VBanner: typeof import('vuetify/components')['VBanner']
500
497
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
501
498
  VBannerText: typeof import('vuetify/components')['VBannerText']
499
+ VAvatar: typeof import('vuetify/components')['VAvatar']
502
500
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
503
501
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
504
502
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
505
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
506
503
  VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
504
+ VBadge: typeof import('vuetify/components')['VBadge']
505
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
506
+ VBtn: typeof import('vuetify/components')['VBtn']
507
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
507
508
  VCard: typeof import('vuetify/components')['VCard']
508
509
  VCardActions: typeof import('vuetify/components')['VCardActions']
509
510
  VCardItem: typeof import('vuetify/components')['VCardItem']
510
511
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
511
512
  VCardText: typeof import('vuetify/components')['VCardText']
512
513
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
513
- VBtn: typeof import('vuetify/components')['VBtn']
514
- VCarousel: typeof import('vuetify/components')['VCarousel']
515
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
514
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
516
515
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
517
516
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
518
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
519
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
517
+ VCarousel: typeof import('vuetify/components')['VCarousel']
518
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
519
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
520
520
  VCode: typeof import('vuetify/components')['VCode']
521
- VCounter: typeof import('vuetify/components')['VCounter']
521
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
522
522
  VChip: typeof import('vuetify/components')['VChip']
523
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
523
+ VCounter: typeof import('vuetify/components')['VCounter']
524
524
  VCombobox: typeof import('vuetify/components')['VCombobox']
525
- VDialog: typeof import('vuetify/components')['VDialog']
526
- VEmptyState: typeof import('vuetify/components')['VEmptyState']
527
- VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
528
- VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
529
- VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
530
- VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
531
525
  VDataTable: typeof import('vuetify/components')['VDataTable']
532
526
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
533
527
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -542,24 +536,26 @@ declare module 'vue' {
542
536
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
543
537
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
544
538
  VDivider: typeof import('vuetify/components')['VDivider']
545
- VFab: typeof import('vuetify/components')['VFab']
546
- VFooter: typeof import('vuetify/components')['VFooter']
539
+ VDialog: typeof import('vuetify/components')['VDialog']
547
540
  VField: typeof import('vuetify/components')['VField']
548
541
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
542
+ VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
543
+ VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
544
+ VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
545
+ VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
549
546
  VFileInput: typeof import('vuetify/components')['VFileInput']
547
+ VFab: typeof import('vuetify/components')['VFab']
548
+ VEmptyState: typeof import('vuetify/components')['VEmptyState']
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
- VImg: typeof import('vuetify/components')['VImg']
556
- VInput: typeof import('vuetify/components')['VInput']
557
555
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
558
- VItemGroup: typeof import('vuetify/components')['VItemGroup']
559
- VItem: typeof import('vuetify/components')['VItem']
556
+ VImg: typeof import('vuetify/components')['VImg']
560
557
  VLabel: typeof import('vuetify/components')['VLabel']
561
- VKbd: typeof import('vuetify/components')['VKbd']
562
- VMain: typeof import('vuetify/components')['VMain']
558
+ VInput: typeof import('vuetify/components')['VInput']
563
559
  VList: typeof import('vuetify/components')['VList']
564
560
  VListGroup: typeof import('vuetify/components')['VListGroup']
565
561
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -569,60 +565,64 @@ declare module 'vue' {
569
565
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
570
566
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
571
567
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
572
- VMenu: typeof import('vuetify/components')['VMenu']
573
568
  VMessages: typeof import('vuetify/components')['VMessages']
569
+ VKbd: typeof import('vuetify/components')['VKbd']
570
+ VMenu: typeof import('vuetify/components')['VMenu']
571
+ VItemGroup: typeof import('vuetify/components')['VItemGroup']
572
+ VItem: typeof import('vuetify/components')['VItem']
573
+ VMain: typeof import('vuetify/components')['VMain']
574
574
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
575
- VOverlay: typeof import('vuetify/components')['VOverlay']
576
575
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
577
- VPagination: typeof import('vuetify/components')['VPagination']
576
+ VOverlay: typeof import('vuetify/components')['VOverlay']
578
577
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
579
- VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
580
- VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
581
- VSelect: typeof import('vuetify/components')['VSelect']
578
+ VPagination: typeof import('vuetify/components')['VPagination']
582
579
  VRating: typeof import('vuetify/components')['VRating']
580
+ VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
581
+ VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
583
582
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
583
+ VSelect: typeof import('vuetify/components')['VSelect']
584
584
  VSheet: typeof import('vuetify/components')['VSheet']
585
585
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
586
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
586
587
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
587
588
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
588
- VSlider: typeof import('vuetify/components')['VSlider']
589
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
590
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
591
589
  VStepper: typeof import('vuetify/components')['VStepper']
592
590
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
593
591
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
594
592
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
595
593
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
596
594
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
595
+ VSwitch: typeof import('vuetify/components')['VSwitch']
596
+ VSlider: typeof import('vuetify/components')['VSlider']
597
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
598
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
597
599
  VTab: typeof import('vuetify/components')['VTab']
598
600
  VTabs: typeof import('vuetify/components')['VTabs']
599
601
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
600
602
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
603
+ VTextarea: typeof import('vuetify/components')['VTextarea']
601
604
  VTable: typeof import('vuetify/components')['VTable']
602
605
  VTextField: typeof import('vuetify/components')['VTextField']
603
- VSwitch: typeof import('vuetify/components')['VSwitch']
604
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
605
- VTextarea: typeof import('vuetify/components')['VTextarea']
606
+ VTooltip: typeof import('vuetify/components')['VTooltip']
607
+ VWindow: typeof import('vuetify/components')['VWindow']
608
+ VWindowItem: typeof import('vuetify/components')['VWindowItem']
606
609
  VToolbar: typeof import('vuetify/components')['VToolbar']
607
610
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
608
611
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
609
- VTooltip: typeof import('vuetify/components')['VTooltip']
610
612
  VTimeline: typeof import('vuetify/components')['VTimeline']
611
613
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
612
- VWindow: typeof import('vuetify/components')['VWindow']
613
- VWindowItem: typeof import('vuetify/components')['VWindowItem']
614
614
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
615
615
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
616
616
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
617
617
  VForm: typeof import('vuetify/components')['VForm']
618
- VHover: typeof import('vuetify/components')['VHover']
619
618
  VContainer: typeof import('vuetify/components')['VContainer']
620
619
  VCol: typeof import('vuetify/components')['VCol']
621
620
  VRow: typeof import('vuetify/components')['VRow']
622
621
  VSpacer: typeof import('vuetify/components')['VSpacer']
623
- VLazy: typeof import('vuetify/components')['VLazy']
622
+ VHover: typeof import('vuetify/components')['VHover']
624
623
  VLayout: typeof import('vuetify/components')['VLayout']
625
624
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
625
+ VLazy: typeof import('vuetify/components')['VLazy']
626
626
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
627
627
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
628
628
  VParallax: typeof import('vuetify/components')['VParallax']
@@ -633,6 +633,7 @@ declare module 'vue' {
633
633
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
634
634
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
635
635
  VValidation: typeof import('vuetify/components')['VValidation']
636
+ VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
636
637
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
637
638
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
638
639
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -649,27 +650,26 @@ declare module 'vue' {
649
650
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
650
651
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
651
652
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
652
- VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
653
653
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
654
654
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
655
655
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
656
656
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
657
657
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
658
658
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
659
- VPicker: typeof import('vuetify/labs/components')['VPicker']
660
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
661
659
  VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
662
- VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
663
- VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
664
- VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
665
- VTreeview: typeof import('vuetify/labs/components')['VTreeview']
666
- VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
667
- VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
668
660
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
669
661
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
670
662
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
671
- VDateInput: typeof import('vuetify/labs/components')['VDateInput']
663
+ VTreeview: typeof import('vuetify/labs/components')['VTreeview']
664
+ VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
665
+ VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
666
+ VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
667
+ VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
668
+ VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
669
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
670
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
672
671
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
673
672
  VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
673
+ VDateInput: typeof import('vuetify/labs/components')['VDateInput']
674
674
  }
675
675
  }
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.2-master.2024-10-09",
4
+ "version": "3.7.2-master.2024-10-11",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"