@vuetify/nightly 3.8.9-master.2025-06-14 → 3.8.9-master.2025-06-17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -3
- package/dist/json/attributes.json +3488 -3488
- package/dist/json/importMap-labs.json +26 -26
- package/dist/json/importMap.json +146 -146
- package/dist/json/web-types.json +5923 -5923
- package/dist/vuetify-labs.cjs +38 -14
- package/dist/vuetify-labs.css +3770 -3769
- package/dist/vuetify-labs.d.ts +55 -55
- package/dist/vuetify-labs.esm.js +38 -14
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +38 -14
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +38 -14
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +6029 -6028
- package/dist/vuetify.d.ts +55 -55
- package/dist/vuetify.esm.js +38 -14
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +38 -14
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +372 -371
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.css +2 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +2 -1
- package/lib/components/VOtpInput/VOtpInput.js +17 -1
- package/lib/components/VOtpInput/VOtpInput.js.map +1 -1
- package/lib/components/VTextField/VTextField.js +4 -4
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/components/VTextarea/VTextarea.js +4 -4
- package/lib/components/VTextarea/VTextarea.js.map +1 -1
- package/lib/composables/autofocus.d.ts +7 -0
- package/lib/composables/autofocus.js +10 -0
- package/lib/composables/autofocus.js.map +1 -0
- package/lib/composables/group.js +1 -0
- package/lib/composables/group.js.map +1 -1
- package/lib/composables/intersectionObserver.js +2 -2
- package/lib/composables/intersectionObserver.js.map +1 -1
- package/lib/composables/selectLink.js +2 -2
- package/lib/composables/selectLink.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +55 -55
- package/lib/framework.js +1 -1
- package/package.json +1 -1
@@ -5,9 +5,9 @@ import { nextTick, watch } from 'vue';
|
|
5
5
|
|
6
6
|
export function useSelectLink(link, select) {
|
7
7
|
watch(() => link.isActive?.value, isActive => {
|
8
|
-
if (link.isLink.value && isActive && select) {
|
8
|
+
if (link.isLink.value && isActive != null && select) {
|
9
9
|
nextTick(() => {
|
10
|
-
select(
|
10
|
+
select(isActive);
|
11
11
|
});
|
12
12
|
}
|
13
13
|
}, {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"selectLink.js","names":["nextTick","watch","useSelectLink","link","select","isActive","value","isLink","immediate"],"sources":["../../src/composables/selectLink.ts"],"sourcesContent":["// Utilities\nimport { nextTick, watch } from 'vue'\n\n// Types\nimport type { UseLink } from './router'\n\nexport function useSelectLink (link: UseLink, select?: (value: boolean, e?: Event) => void) {\n watch(() => link.isActive?.value, isActive => {\n if (link.isLink.value && isActive && select) {\n nextTick(() => {\n select(
|
1
|
+
{"version":3,"file":"selectLink.js","names":["nextTick","watch","useSelectLink","link","select","isActive","value","isLink","immediate"],"sources":["../../src/composables/selectLink.ts"],"sourcesContent":["// Utilities\nimport { nextTick, watch } from 'vue'\n\n// Types\nimport type { UseLink } from './router'\n\nexport function useSelectLink (link: UseLink, select?: (value: boolean, e?: Event) => void) {\n watch(() => link.isActive?.value, isActive => {\n if (link.isLink.value && isActive != null && select) {\n nextTick(() => {\n select(isActive)\n })\n }\n }, {\n immediate: true,\n })\n}\n"],"mappings":"AAAA;AACA,SAASA,QAAQ,EAAEC,KAAK,QAAQ,KAAK;;AAErC;;AAGA,OAAO,SAASC,aAAaA,CAAEC,IAAa,EAAEC,MAA4C,EAAE;EAC1FH,KAAK,CAAC,MAAME,IAAI,CAACE,QAAQ,EAAEC,KAAK,EAAED,QAAQ,IAAI;IAC5C,IAAIF,IAAI,CAACI,MAAM,CAACD,KAAK,IAAID,QAAQ,IAAI,IAAI,IAAID,MAAM,EAAE;MACnDJ,QAAQ,CAAC,MAAM;QACbI,MAAM,CAACC,QAAQ,CAAC;MAClB,CAAC,CAAC;IACJ;EACF,CAAC,EAAE;IACDG,SAAS,EAAE;EACb,CAAC,CAAC;AACJ","ignoreList":[]}
|
package/lib/entry-bundler.js
CHANGED
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
16
16
|
...options
|
17
17
|
});
|
18
18
|
};
|
19
|
-
export const version = "3.8.9-master.2025-06-
|
19
|
+
export const version = "3.8.9-master.2025-06-17";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.js";
|
package/lib/framework.d.ts
CHANGED
@@ -2545,41 +2545,39 @@ declare module 'vue' {
|
|
2545
2545
|
$children?: VNodeChild
|
2546
2546
|
}
|
2547
2547
|
export interface GlobalComponents {
|
2548
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2548
2549
|
VAlert: typeof import('vuetify/components')['VAlert']
|
2549
2550
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2550
2551
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2551
2552
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2552
2553
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2554
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2553
2555
|
VApp: typeof import('vuetify/components')['VApp']
|
2554
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2555
2556
|
VBanner: typeof import('vuetify/components')['VBanner']
|
2556
2557
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2557
2558
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2558
|
-
|
2559
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2559
2560
|
VBadge: typeof import('vuetify/components')['VBadge']
|
2560
|
-
|
2561
|
-
|
2561
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2562
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2563
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2564
|
+
VCode: typeof import('vuetify/components')['VCode']
|
2562
2565
|
VCard: typeof import('vuetify/components')['VCard']
|
2563
2566
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
2564
2567
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
2565
2568
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
2566
2569
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2567
2570
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2568
|
-
|
2569
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2571
|
+
VChip: typeof import('vuetify/components')['VChip']
|
2570
2572
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2571
2573
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2572
2574
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2573
2575
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2574
2576
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2575
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
2576
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2577
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2578
|
-
VChip: typeof import('vuetify/components')['VChip']
|
2579
|
-
VCode: typeof import('vuetify/components')['VCode']
|
2580
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2581
2577
|
VCounter: typeof import('vuetify/components')['VCounter']
|
2582
2578
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2579
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
2580
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2583
2581
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2584
2582
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
2585
2583
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -2587,40 +2585,37 @@ declare module 'vue' {
|
|
2587
2585
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2588
2586
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2589
2587
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2590
|
-
|
2588
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
2591
2589
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2592
2590
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2593
2591
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2594
2592
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2595
2593
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2596
2594
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2597
|
-
|
2595
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2596
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2598
2597
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2599
2598
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2600
2599
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2601
2600
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2602
|
-
|
2603
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
2604
|
-
VFab: typeof import('vuetify/components')['VFab']
|
2601
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2605
2602
|
VField: typeof import('vuetify/components')['VField']
|
2606
2603
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2607
|
-
|
2608
|
-
|
2604
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2605
|
+
VFab: typeof import('vuetify/components')['VFab']
|
2606
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
2609
2607
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2610
2608
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2611
2609
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2612
2610
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2613
2611
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2614
|
-
|
2612
|
+
VInput: typeof import('vuetify/components')['VInput']
|
2615
2613
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2614
|
+
VImg: typeof import('vuetify/components')['VImg']
|
2615
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
2616
2616
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2617
2617
|
VItem: typeof import('vuetify/components')['VItem']
|
2618
|
-
VInput: typeof import('vuetify/components')['VInput']
|
2619
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
2620
2618
|
VKbd: typeof import('vuetify/components')['VKbd']
|
2621
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
2622
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2623
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
2624
2619
|
VList: typeof import('vuetify/components')['VList']
|
2625
2620
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
2626
2621
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -2630,56 +2625,59 @@ declare module 'vue' {
|
|
2630
2625
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
2631
2626
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
2632
2627
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2633
|
-
|
2628
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
2629
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2634
2630
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2635
|
-
|
2631
|
+
VMain: typeof import('vuetify/components')['VMain']
|
2632
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
2633
|
+
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2634
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
2636
2635
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2637
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2638
2636
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2639
|
-
|
2640
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
2641
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2642
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2637
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2643
2638
|
VRating: typeof import('vuetify/components')['VRating']
|
2639
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2640
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
2641
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
2642
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2644
2643
|
VSheet: typeof import('vuetify/components')['VSheet']
|
2644
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2645
2645
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2646
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2646
2647
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2647
2648
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2649
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2648
2650
|
VStepper: typeof import('vuetify/components')['VStepper']
|
2649
2651
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2650
2652
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2651
2653
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2652
2654
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2653
2655
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2654
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2655
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
2656
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2657
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2658
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2659
|
-
VTable: typeof import('vuetify/components')['VTable']
|
2660
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
2661
2656
|
VTab: typeof import('vuetify/components')['VTab']
|
2662
2657
|
VTabs: typeof import('vuetify/components')['VTabs']
|
2663
2658
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2664
2659
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2665
|
-
|
2666
|
-
|
2667
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2660
|
+
VTable: typeof import('vuetify/components')['VTable']
|
2661
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
2668
2662
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2669
2663
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2670
2664
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2671
2665
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2672
2666
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2673
|
-
|
2674
|
-
|
2675
|
-
|
2667
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2668
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2669
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2670
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
2671
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2672
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2676
2673
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
2677
|
-
|
2674
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2675
|
+
VHover: typeof import('vuetify/components')['VHover']
|
2678
2676
|
VContainer: typeof import('vuetify/components')['VContainer']
|
2679
2677
|
VCol: typeof import('vuetify/components')['VCol']
|
2680
2678
|
VRow: typeof import('vuetify/components')['VRow']
|
2681
2679
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2682
|
-
|
2680
|
+
VForm: typeof import('vuetify/components')['VForm']
|
2683
2681
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2684
2682
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2685
2683
|
VLazy: typeof import('vuetify/components')['VLazy']
|
@@ -2692,9 +2690,10 @@ declare module 'vue' {
|
|
2692
2690
|
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2693
2691
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2694
2692
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2695
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
2696
2693
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2697
2694
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
2695
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
2696
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
2698
2697
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
2699
2698
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
2700
2699
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -2711,28 +2710,29 @@ declare module 'vue' {
|
|
2711
2710
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
2712
2711
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
2713
2712
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
2713
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2714
2714
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
2715
2715
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
2716
2716
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
2717
2717
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
2718
2718
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
2719
2719
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2720
|
+
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2720
2721
|
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2721
2722
|
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2722
|
-
|
2723
|
-
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2724
|
-
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2725
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2723
|
+
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
2726
2724
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2727
2725
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2728
2726
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2729
2727
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2730
2728
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2731
|
-
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
2732
|
-
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
2733
|
-
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
2734
2729
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2735
2730
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2736
2731
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2732
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2733
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2734
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2735
|
+
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
2736
|
+
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
2737
2737
|
}
|
2738
2738
|
}
|
package/lib/framework.js
CHANGED