@vuetify/nightly 3.7.2-master.2024-10-10 → 3.7.2-master.2024-10-15
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 +12 -12
- package/dist/json/importMap.json +138 -138
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +3210 -3210
- 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 +1517 -1517
- package/dist/vuetify.d.ts +43 -43
- 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 +43 -43
- 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-15";
|
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,41 +486,40 @@ 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
489
|
VApp: typeof import('vuetify/components')['VApp']
|
493
490
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
494
491
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
495
492
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
493
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
494
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
495
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
496
496
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
497
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
498
497
|
VBadge: typeof import('vuetify/components')['VBadge']
|
498
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
499
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
499
500
|
VBanner: typeof import('vuetify/components')['VBanner']
|
500
501
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
501
502
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
502
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
503
503
|
VBtn: typeof import('vuetify/components')['VBtn']
|
504
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
504
505
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
505
506
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
506
507
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
507
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
508
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
509
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
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']
|
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']
|
514
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
515
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
520
516
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
521
517
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
518
|
+
VChip: typeof import('vuetify/components')['VChip']
|
519
|
+
VCode: typeof import('vuetify/components')['VCode']
|
520
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
521
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
522
522
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
523
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
524
523
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
525
524
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
526
525
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
@@ -535,29 +534,32 @@ declare module 'vue' {
|
|
535
534
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
536
535
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
537
536
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
538
|
-
|
537
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
538
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
539
539
|
VDialog: typeof import('vuetify/components')['VDialog']
|
540
|
-
|
540
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
541
541
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
542
542
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
543
543
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
544
544
|
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
545
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
546
|
+
VFab: typeof import('vuetify/components')['VFab']
|
550
547
|
VImg: typeof import('vuetify/components')['VImg']
|
548
|
+
VField: typeof import('vuetify/components')['VField']
|
549
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
550
|
+
VInput: typeof import('vuetify/components')['VInput']
|
551
551
|
VIcon: typeof import('vuetify/components')['VIcon']
|
552
552
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
553
553
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
554
554
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
555
555
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
556
|
-
VInput: typeof import('vuetify/components')['VInput']
|
557
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
558
556
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
559
557
|
VItem: typeof import('vuetify/components')['VItem']
|
558
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
560
559
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
560
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
561
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
562
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
561
563
|
VList: typeof import('vuetify/components')['VList']
|
562
564
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
563
565
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -567,50 +569,48 @@ declare module 'vue' {
|
|
567
569
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
568
570
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
569
571
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
570
|
-
|
571
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
572
|
+
VMain: typeof import('vuetify/components')['VMain']
|
572
573
|
VMenu: typeof import('vuetify/components')['VMenu']
|
573
574
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
574
|
-
VMain: typeof import('vuetify/components')['VMain']
|
575
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
576
575
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
577
|
-
|
578
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
576
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
579
577
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
578
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
579
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
580
580
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
581
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
582
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
581
583
|
VRating: typeof import('vuetify/components')['VRating']
|
584
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
582
585
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
583
|
-
|
586
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
587
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
584
588
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
585
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
586
589
|
VSlider: typeof import('vuetify/components')['VSlider']
|
587
590
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
588
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
589
591
|
VStepper: typeof import('vuetify/components')['VStepper']
|
590
592
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
591
593
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
592
594
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
593
595
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
594
596
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
595
|
-
|
596
|
-
|
597
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
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
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
606
605
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
607
606
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
607
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
608
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
609
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
608
610
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
609
611
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
610
612
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
611
613
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
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']
|
@@ -620,17 +620,17 @@ declare module 'vue' {
|
|
620
620
|
VRow: typeof import('vuetify/components')['VRow']
|
621
621
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
622
622
|
VHover: typeof import('vuetify/components')['VHover']
|
623
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
623
624
|
VLayout: typeof import('vuetify/components')['VLayout']
|
624
625
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
625
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
626
626
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
627
|
-
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
628
627
|
VParallax: typeof import('vuetify/components')['VParallax']
|
628
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
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']
|
@@ -659,12 +659,12 @@ declare module 'vue' {
|
|
659
659
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
660
660
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
661
661
|
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
662
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
666
663
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
667
664
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
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
668
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
669
669
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
670
670
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|