@vuetify/nightly 3.7.2-master.2024-10-10 → 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.
- package/dist/json/importMap-labs.json +22 -22
- package/dist/json/importMap.json +152 -152
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +4372 -4372
- package/dist/vuetify-labs.esm.js +6 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +6 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2263 -2263
- package/dist/vuetify.d.ts +58 -58
- package/dist/vuetify.esm.js +6 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +6 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/composables/directiveComponent.mjs +4 -3
- package/lib/composables/directiveComponent.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +58 -58
- package/package.json +1 -1
@@ -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
|
-
|
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","
|
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":[]}
|
package/lib/entry-bundler.mjs
CHANGED
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
16
16
|
...options
|
17
17
|
});
|
18
18
|
};
|
19
|
-
export const version = "3.7.2-master.2024-10-
|
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
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
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
490
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
491
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
492
|
-
VApp: typeof import('vuetify/components')['VApp']
|
493
489
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
494
490
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
495
491
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
496
|
-
|
497
|
-
|
498
|
-
|
492
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
493
|
+
VApp: typeof import('vuetify/components')['VApp']
|
494
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
495
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
499
496
|
VBanner: typeof import('vuetify/components')['VBanner']
|
500
497
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
501
498
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
502
|
-
|
503
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
499
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
504
500
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
505
501
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
506
502
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
503
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
504
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
507
505
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
508
|
-
|
509
|
-
|
510
|
-
VChip: typeof import('vuetify/components')['VChip']
|
511
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
512
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
513
|
-
VCode: typeof import('vuetify/components')['VCode']
|
506
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
507
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
514
508
|
VCard: typeof import('vuetify/components')['VCard']
|
515
509
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
516
510
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
517
511
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
518
512
|
VCardText: typeof import('vuetify/components')['VCardText']
|
519
513
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
520
|
-
|
521
|
-
|
514
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
515
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
516
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
517
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
518
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
522
519
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
520
|
+
VCode: typeof import('vuetify/components')['VCode']
|
521
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
522
|
+
VChip: typeof import('vuetify/components')['VChip']
|
523
523
|
VCounter: typeof import('vuetify/components')['VCounter']
|
524
524
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
525
|
-
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
526
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
527
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
528
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
529
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
530
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
531
525
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
532
526
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
533
527
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -535,29 +529,33 @@ declare module 'vue' {
|
|
535
529
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
536
530
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
537
531
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
538
|
-
|
532
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
533
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
534
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
535
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
536
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
537
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
538
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
539
539
|
VDialog: typeof import('vuetify/components')['VDialog']
|
540
|
-
|
540
|
+
VField: typeof import('vuetify/components')['VField']
|
541
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
541
542
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
542
543
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
543
544
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
544
545
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
545
|
-
VField: typeof import('vuetify/components')['VField']
|
546
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
547
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
548
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
549
546
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
550
|
-
|
547
|
+
VFab: typeof import('vuetify/components')['VFab']
|
548
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
549
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
551
550
|
VIcon: typeof import('vuetify/components')['VIcon']
|
552
551
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
553
552
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
554
553
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
555
554
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
556
|
-
VInput: typeof import('vuetify/components')['VInput']
|
557
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
558
|
-
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
559
|
-
VItem: typeof import('vuetify/components')['VItem']
|
560
555
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
556
|
+
VImg: typeof import('vuetify/components')['VImg']
|
557
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
558
|
+
VInput: typeof import('vuetify/components')['VInput']
|
561
559
|
VList: typeof import('vuetify/components')['VList']
|
562
560
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
563
561
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -567,50 +565,52 @@ declare module 'vue' {
|
|
567
565
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
568
566
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
569
567
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
570
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
571
568
|
VMessages: typeof import('vuetify/components')['VMessages']
|
569
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
572
570
|
VMenu: typeof import('vuetify/components')['VMenu']
|
573
|
-
|
571
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
572
|
+
VItem: typeof import('vuetify/components')['VItem']
|
574
573
|
VMain: typeof import('vuetify/components')['VMain']
|
575
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
576
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
577
574
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
575
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
576
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
578
577
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
578
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
579
|
+
VRating: typeof import('vuetify/components')['VRating']
|
579
580
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
580
581
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
581
|
-
VRating: typeof import('vuetify/components')['VRating']
|
582
582
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
583
583
|
VSelect: typeof import('vuetify/components')['VSelect']
|
584
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
585
584
|
VSheet: typeof import('vuetify/components')['VSheet']
|
586
|
-
|
587
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
585
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
588
586
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
587
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
588
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
589
589
|
VStepper: typeof import('vuetify/components')['VStepper']
|
590
590
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
591
591
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
592
592
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
593
593
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
594
594
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
595
|
-
|
596
|
-
|
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']
|
601
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
602
603
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
603
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
604
604
|
VTable: typeof import('vuetify/components')['VTable']
|
605
605
|
VTextField: typeof import('vuetify/components')['VTextField']
|
606
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
607
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
608
|
-
VToolbar: typeof import('vuetify/components')['VToolbar']
|
609
|
-
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
610
|
-
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
611
606
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
612
607
|
VWindow: typeof import('vuetify/components')['VWindow']
|
613
608
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
609
|
+
VToolbar: typeof import('vuetify/components')['VToolbar']
|
610
|
+
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
611
|
+
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
612
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
613
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
614
614
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
615
615
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
616
616
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
@@ -629,8 +629,8 @@ declare module 'vue' {
|
|
629
629
|
VRadio: typeof import('vuetify/components')['VRadio']
|
630
630
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
631
631
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
632
|
-
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
633
632
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
633
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
634
634
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
635
635
|
VValidation: typeof import('vuetify/components')['VValidation']
|
636
636
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
@@ -650,8 +650,6 @@ declare module 'vue' {
|
|
650
650
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
651
651
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
652
652
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
653
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
654
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
655
653
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
656
654
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
657
655
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
@@ -659,17 +657,19 @@ declare module 'vue' {
|
|
659
657
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
660
658
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
661
659
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
662
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
663
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
664
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
665
660
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
666
661
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
667
662
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
663
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
664
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
665
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
668
666
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
669
667
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
670
668
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
671
|
-
|
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
|
}
|