@vuetify/nightly 3.8.7-dev.2025-05-30 → 3.8.7-dev.2025-06-03
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 +7 -3
- package/dist/json/attributes.json +3109 -3093
- package/dist/json/importMap-labs.json +38 -38
- package/dist/json/importMap.json +166 -166
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +5823 -5783
- package/dist/vuetify-labs.cjs +19 -7
- package/dist/vuetify-labs.css +4460 -4454
- package/dist/vuetify-labs.d.ts +332 -245
- package/dist/vuetify-labs.esm.js +19 -7
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +19 -7
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +19 -7
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5196 -5190
- package/dist/vuetify.d.ts +332 -245
- package/dist/vuetify.esm.js +19 -7
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +19 -7
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +8 -8
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.d.ts +15 -3
- package/lib/components/VDataTable/VDataTable.d.ts +42 -0
- package/lib/components/VDataTable/VDataTableServer.d.ts +29 -0
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +29 -0
- package/lib/components/VTable/VTable.css +6 -0
- package/lib/components/VTable/VTable.d.ts +55 -24
- package/lib/components/VTable/VTable.js +9 -2
- package/lib/components/VTable/VTable.js.map +1 -1
- package/lib/components/VTable/VTable.sass +14 -0
- package/lib/components/VTable/_variables.scss +1 -0
- package/lib/components/VToolbar/VToolbar.d.ts +15 -3
- package/lib/components/VToolbar/VToolbar.js +6 -3
- package/lib/components/VToolbar/VToolbar.js.map +1 -1
- package/lib/composables/date/DateAdapter.d.ts +2 -2
- package/lib/composables/date/DateAdapter.js.map +1 -1
- package/lib/composables/date/adapters/string.d.ts +54 -0
- package/lib/composables/date/adapters/string.js +153 -0
- package/lib/composables/date/adapters/string.js.map +1 -0
- package/lib/composables/date/date.d.ts +2 -2
- package/lib/entry-bundler.d.ts +2 -2
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +78 -68
- package/lib/framework.js +1 -1
- package/lib/labs/entry-bundler.d.ts +2 -2
- package/package.json +1 -1
package/lib/framework.d.ts
CHANGED
@@ -67,10 +67,10 @@ interface DateAdapter<T = unknown> {
|
|
67
67
|
startOfYear(date: T): T;
|
68
68
|
endOfYear(date: T): T;
|
69
69
|
isAfter(date: T, comparing: T): boolean;
|
70
|
-
isAfterDay(
|
70
|
+
isAfterDay(date: T, comparing: T): boolean;
|
71
71
|
isSameDay(date: T, comparing: T): boolean;
|
72
72
|
isSameMonth(date: T, comparing: T): boolean;
|
73
|
-
isSameYear(
|
73
|
+
isSameYear(date: T, comparing: T): boolean;
|
74
74
|
isBefore(date: T, comparing: T): boolean;
|
75
75
|
isEqual(date: T, comparing: T): boolean;
|
76
76
|
isValid(date: any): boolean;
|
@@ -2468,10 +2468,10 @@ declare function createVuetify(vuetify?: VuetifyOptions): {
|
|
2468
2468
|
startOfYear: (date: unknown) => unknown;
|
2469
2469
|
endOfYear: (date: unknown) => unknown;
|
2470
2470
|
isAfter: (date: unknown, comparing: unknown) => boolean;
|
2471
|
-
isAfterDay: (
|
2471
|
+
isAfterDay: (date: unknown, comparing: unknown) => boolean;
|
2472
2472
|
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
2473
2473
|
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
2474
|
-
isSameYear: (
|
2474
|
+
isSameYear: (date: unknown, comparing: unknown) => boolean;
|
2475
2475
|
isBefore: (date: unknown, comparing: unknown) => boolean;
|
2476
2476
|
isEqual: (date: unknown, comparing: unknown) => boolean;
|
2477
2477
|
isValid: (date: any) => boolean;
|
@@ -2546,37 +2546,37 @@ declare module 'vue' {
|
|
2546
2546
|
export interface GlobalComponents {
|
2547
2547
|
VApp: typeof import('vuetify/components')['VApp']
|
2548
2548
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2549
|
-
|
2549
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2550
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2551
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2552
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
2550
2553
|
VAlert: typeof import('vuetify/components')['VAlert']
|
2551
2554
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2552
|
-
|
2555
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2556
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2557
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
2553
2558
|
VBanner: typeof import('vuetify/components')['VBanner']
|
2554
2559
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2555
2560
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2556
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2557
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2558
2561
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2559
|
-
|
2560
|
-
|
2561
|
-
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2562
|
-
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2563
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2564
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2565
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
2566
|
-
VChip: typeof import('vuetify/components')['VChip']
|
2562
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2563
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2567
2564
|
VCard: typeof import('vuetify/components')['VCard']
|
2568
2565
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
2569
2566
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
2570
2567
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
2571
2568
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2572
2569
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2570
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2571
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2572
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2573
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2574
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2575
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2576
|
+
VChip: typeof import('vuetify/components')['VChip']
|
2573
2577
|
VCode: typeof import('vuetify/components')['VCode']
|
2574
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2575
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2576
2578
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2577
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2578
2579
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2579
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
2580
2580
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2581
2581
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
2582
2582
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -2584,36 +2584,39 @@ declare module 'vue' {
|
|
2584
2584
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2585
2585
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2586
2586
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2587
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
2587
2588
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2588
2589
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2589
2590
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2590
2591
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2591
2592
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2592
2593
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2593
|
-
|
2594
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2594
2595
|
VDivider: typeof import('vuetify/components')['VDivider']
|
2596
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
2597
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2595
2598
|
VField: typeof import('vuetify/components')['VField']
|
2596
2599
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2597
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2598
|
-
VFab: typeof import('vuetify/components')['VFab']
|
2599
2600
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2600
2601
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2601
2602
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2602
2603
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2604
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2605
|
+
VFab: typeof import('vuetify/components')['VFab']
|
2603
2606
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2607
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
2608
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2609
|
+
VImg: typeof import('vuetify/components')['VImg']
|
2604
2610
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2605
2611
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2606
2612
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2607
2613
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2608
2614
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2609
|
-
|
2610
|
-
|
2615
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
2616
|
+
VMain: typeof import('vuetify/components')['VMain']
|
2611
2617
|
VInput: typeof import('vuetify/components')['VInput']
|
2612
|
-
VImg: typeof import('vuetify/components')['VImg']
|
2613
2618
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2614
2619
|
VItem: typeof import('vuetify/components')['VItem']
|
2615
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
2616
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
2617
2620
|
VList: typeof import('vuetify/components')['VList']
|
2618
2621
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
2619
2622
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -2623,54 +2626,47 @@ declare module 'vue' {
|
|
2623
2626
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
2624
2627
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
2625
2628
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2626
|
-
|
2629
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
2627
2630
|
VMessages: typeof import('vuetify/components')['VMessages']
|
2628
|
-
|
2629
|
-
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2631
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
2630
2632
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2631
|
-
|
2632
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
2633
|
+
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2633
2634
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2634
|
-
|
2635
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2635
2636
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2637
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
2636
2638
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2639
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2637
2640
|
VRating: typeof import('vuetify/components')['VRating']
|
2638
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
2639
2641
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2640
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2641
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2642
2642
|
VSheet: typeof import('vuetify/components')['VSheet']
|
2643
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2644
2643
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2645
2644
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2646
|
-
|
2645
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2646
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2647
2647
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2648
|
-
|
2648
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
2649
2649
|
VStepper: typeof import('vuetify/components')['VStepper']
|
2650
2650
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2651
2651
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2652
2652
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2653
2653
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2654
2654
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2655
|
-
|
2656
|
-
|
2657
|
-
|
2658
|
-
|
2659
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
2655
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
2656
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2657
|
+
VTable: typeof import('vuetify/components')['VTable']
|
2658
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2660
2659
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2661
|
-
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2662
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2663
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2664
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2665
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2666
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2667
2660
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2668
2661
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2669
2662
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2663
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2664
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
2665
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2666
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2670
2667
|
VWindow: typeof import('vuetify/components')['VWindow']
|
2671
2668
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2672
2669
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2673
|
-
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2674
2670
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
2675
2671
|
VContainer: typeof import('vuetify/components')['VContainer']
|
2676
2672
|
VCol: typeof import('vuetify/components')['VCol']
|
@@ -2678,21 +2674,21 @@ declare module 'vue' {
|
|
2678
2674
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2679
2675
|
VForm: typeof import('vuetify/components')['VForm']
|
2680
2676
|
VHover: typeof import('vuetify/components')['VHover']
|
2677
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2681
2678
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2682
2679
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2683
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
2684
2680
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2685
|
-
|
2681
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
2686
2682
|
VParallax: typeof import('vuetify/components')['VParallax']
|
2687
2683
|
VRadio: typeof import('vuetify/components')['VRadio']
|
2688
2684
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2689
2685
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2690
|
-
|
2691
|
-
VTable: typeof import('vuetify/components')['VTable']
|
2692
|
-
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2686
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2693
2687
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2688
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2694
2689
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
2695
2690
|
VValidation: typeof import('vuetify/components')['VValidation']
|
2691
|
+
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2696
2692
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2697
2693
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
2698
2694
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
@@ -2710,28 +2706,42 @@ declare module 'vue' {
|
|
2710
2706
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
2711
2707
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
2712
2708
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
2713
|
-
|
2714
|
-
|
2715
|
-
|
2716
|
-
|
2717
|
-
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2718
|
-
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2709
|
+
VTab: typeof import('vuetify/components')['VTab']
|
2710
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
2711
|
+
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2712
|
+
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2719
2713
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
2720
2714
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
2721
2715
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
2722
2716
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
2723
2717
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
2724
2718
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2719
|
+
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2720
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2721
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2722
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2723
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2724
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2725
2725
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2726
2726
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2727
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2728
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2729
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2730
2727
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2731
2728
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2732
2729
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2733
|
-
|
2734
|
-
|
2730
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2731
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2732
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2733
|
+
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
2735
2734
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
2735
|
+
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
2736
|
+
}
|
2737
|
+
export interface GlobalDirectives {
|
2738
|
+
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|
2739
|
+
vIntersect: typeof import('vuetify/directives')['Intersect']
|
2740
|
+
vMutate: typeof import('vuetify/directives')['Mutate']
|
2741
|
+
vResize: typeof import('vuetify/directives')['Resize']
|
2742
|
+
vRipple: typeof import('vuetify/directives')['Ripple']
|
2743
|
+
vScroll: typeof import('vuetify/directives')['Scroll']
|
2744
|
+
vTouch: typeof import('vuetify/directives')['Touch']
|
2745
|
+
vTooltip: typeof import('vuetify/directives')['Tooltip']
|
2736
2746
|
}
|
2737
2747
|
}
|
package/lib/framework.js
CHANGED
@@ -41,10 +41,10 @@ export declare const createVuetify: (options?: VuetifyOptions) => {
|
|
41
41
|
startOfYear: (date: unknown) => unknown;
|
42
42
|
endOfYear: (date: unknown) => unknown;
|
43
43
|
isAfter: (date: unknown, comparing: unknown) => boolean;
|
44
|
-
isAfterDay: (
|
44
|
+
isAfterDay: (date: unknown, comparing: unknown) => boolean;
|
45
45
|
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
46
46
|
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
47
|
-
isSameYear: (
|
47
|
+
isSameYear: (date: unknown, comparing: unknown) => boolean;
|
48
48
|
isBefore: (date: unknown, comparing: unknown) => boolean;
|
49
49
|
isEqual: (date: unknown, comparing: unknown) => boolean;
|
50
50
|
isValid: (date: any) => boolean;
|