@vuetify/nightly 3.5.3-dev.2024-02-25 → 3.5.3-dev.2024-03-06
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 +4 -2
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +130 -130
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +1341 -1341
- package/dist/vuetify-labs.d.ts +15 -6
- package/dist/vuetify-labs.esm.js +23 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +23 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +433 -433
- package/dist/vuetify.d.ts +56 -47
- package/dist/vuetify.esm.js +23 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +23 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +279 -279
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +5 -2
- package/lib/blueprints/md1.d.mts +5 -2
- package/lib/blueprints/md2.d.mts +5 -2
- package/lib/blueprints/md3.d.mts +5 -2
- package/lib/composables/date/DateAdapter.mjs.map +1 -1
- package/lib/composables/date/adapters/vuetify.mjs +18 -0
- package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
- package/lib/composables/icons.mjs +2 -1
- package/lib/composables/icons.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +56 -47
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -15,11 +15,13 @@ interface DateAdapter<T = unknown> {
|
|
|
15
15
|
endOfMonth(date: T): T;
|
|
16
16
|
startOfYear(date: T): T;
|
|
17
17
|
endOfYear(date: T): T;
|
|
18
|
-
isBefore(date: T, comparing: T): boolean;
|
|
19
18
|
isAfter(date: T, comparing: T): boolean;
|
|
20
|
-
|
|
19
|
+
isAfterDay(value: T, comparing: T): boolean;
|
|
21
20
|
isSameDay(date: T, comparing: T): boolean;
|
|
22
21
|
isSameMonth(date: T, comparing: T): boolean;
|
|
22
|
+
isSameYear(value: T, comparing: T): boolean;
|
|
23
|
+
isBefore(date: T, comparing: T): boolean;
|
|
24
|
+
isEqual(date: T, comparing: T): boolean;
|
|
23
25
|
isValid(date: any): boolean;
|
|
24
26
|
isWithinRange(date: T, range: [T, T]): boolean;
|
|
25
27
|
addMinutes(date: T, amount: number): T;
|
|
@@ -35,6 +37,7 @@ interface DateAdapter<T = unknown> {
|
|
|
35
37
|
getMonth(date: T): number;
|
|
36
38
|
setMonth(date: T, month: number): T;
|
|
37
39
|
getNextMonth(date: T): T;
|
|
40
|
+
getPreviousMonth(date: T): T;
|
|
38
41
|
getHours(date: T): number;
|
|
39
42
|
setHours(date: T, hours: number): T;
|
|
40
43
|
getMinutes(date: T): number;
|
|
@@ -104,11 +107,13 @@ declare function useDate(): {
|
|
|
104
107
|
endOfMonth: (date: unknown) => unknown;
|
|
105
108
|
startOfYear: (date: unknown) => unknown;
|
|
106
109
|
endOfYear: (date: unknown) => unknown;
|
|
107
|
-
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
108
110
|
isAfter: (date: unknown, comparing: unknown) => boolean;
|
|
109
|
-
|
|
111
|
+
isAfterDay: (value: unknown, comparing: unknown) => boolean;
|
|
110
112
|
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
|
111
113
|
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
|
114
|
+
isSameYear: (value: unknown, comparing: unknown) => boolean;
|
|
115
|
+
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
116
|
+
isEqual: (date: unknown, comparing: unknown) => boolean;
|
|
112
117
|
isValid: (date: any) => boolean;
|
|
113
118
|
isWithinRange: (date: unknown, range: [unknown, unknown]) => boolean;
|
|
114
119
|
addMinutes: (date: unknown, amount: number) => unknown;
|
|
@@ -124,6 +129,7 @@ declare function useDate(): {
|
|
|
124
129
|
getMonth: (date: unknown) => number;
|
|
125
130
|
setMonth: (date: unknown, month: number) => unknown;
|
|
126
131
|
getNextMonth: (date: unknown) => unknown;
|
|
132
|
+
getPreviousMonth: (date: unknown) => unknown;
|
|
127
133
|
getHours: (date: unknown) => number;
|
|
128
134
|
setHours: (date: unknown, hours: number) => unknown;
|
|
129
135
|
getMinutes: (date: unknown) => number;
|
|
@@ -437,11 +443,13 @@ declare function createVuetify(vuetify?: VuetifyOptions): {
|
|
|
437
443
|
endOfMonth: (date: unknown) => unknown;
|
|
438
444
|
startOfYear: (date: unknown) => unknown;
|
|
439
445
|
endOfYear: (date: unknown) => unknown;
|
|
440
|
-
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
441
446
|
isAfter: (date: unknown, comparing: unknown) => boolean;
|
|
442
|
-
|
|
447
|
+
isAfterDay: (value: unknown, comparing: unknown) => boolean;
|
|
443
448
|
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
|
444
449
|
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
|
450
|
+
isSameYear: (value: unknown, comparing: unknown) => boolean;
|
|
451
|
+
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
452
|
+
isEqual: (date: unknown, comparing: unknown) => boolean;
|
|
445
453
|
isValid: (date: any) => boolean;
|
|
446
454
|
isWithinRange: (date: unknown, range: [unknown, unknown]) => boolean;
|
|
447
455
|
addMinutes: (date: unknown, amount: number) => unknown;
|
|
@@ -457,6 +465,7 @@ declare function createVuetify(vuetify?: VuetifyOptions): {
|
|
|
457
465
|
getMonth: (date: unknown) => number;
|
|
458
466
|
setMonth: (date: unknown, month: number) => unknown;
|
|
459
467
|
getNextMonth: (date: unknown) => unknown;
|
|
468
|
+
getPreviousMonth: (date: unknown) => unknown;
|
|
460
469
|
getHours: (date: unknown) => number;
|
|
461
470
|
setHours: (date: unknown, hours: number) => unknown;
|
|
462
471
|
getMinutes: (date: unknown) => number;
|
|
@@ -516,42 +525,43 @@ declare module '@vue/runtime-core' {
|
|
|
516
525
|
}
|
|
517
526
|
|
|
518
527
|
export interface GlobalComponents {
|
|
519
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
520
528
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
521
529
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
522
530
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
523
|
-
|
|
531
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
524
532
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
525
533
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
526
534
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
535
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
527
536
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
528
537
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
529
538
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
530
539
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
531
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
532
540
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
541
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
542
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
533
543
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
534
544
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
535
545
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
536
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
537
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
538
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
539
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
540
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
541
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
542
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
543
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
544
546
|
VCard: typeof import('vuetify/components')['VCard']
|
|
545
547
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
546
548
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
547
549
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
548
550
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
549
551
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
552
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
553
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
554
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
555
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
550
556
|
VChip: typeof import('vuetify/components')['VChip']
|
|
557
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
558
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
551
559
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
552
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
553
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
554
560
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
561
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
562
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
563
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
564
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
555
565
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
556
566
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
557
567
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
@@ -564,25 +574,24 @@ declare module '@vue/runtime-core' {
|
|
|
564
574
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
565
575
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
566
576
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
567
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
|
568
577
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
578
|
+
VField: typeof import('vuetify/components')['VField']
|
|
579
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
569
580
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
570
581
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
571
582
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
572
583
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
573
|
-
VField: typeof import('vuetify/components')['VField']
|
|
574
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
575
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
576
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
577
|
-
VImg: typeof import('vuetify/components')['VImg']
|
|
578
584
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
579
585
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
580
586
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
581
587
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
582
588
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
589
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
590
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
583
591
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
584
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
585
592
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
593
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
594
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
586
595
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
587
596
|
VItem: typeof import('vuetify/components')['VItem']
|
|
588
597
|
VList: typeof import('vuetify/components')['VList']
|
|
@@ -595,45 +604,45 @@ declare module '@vue/runtime-core' {
|
|
|
595
604
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
596
605
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
597
606
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
598
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
|
599
607
|
VMain: typeof import('vuetify/components')['VMain']
|
|
600
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
|
601
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
|
602
608
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
609
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
|
610
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
603
611
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
604
612
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
613
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
|
605
614
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
606
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
607
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
608
615
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
616
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
617
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
609
618
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
619
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
610
620
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
611
621
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
612
622
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
613
623
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
614
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
615
624
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
616
625
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
617
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
618
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
619
626
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
620
627
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
621
628
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
622
629
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
623
630
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
624
631
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
632
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
633
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
628
634
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
629
635
|
VTab: typeof import('vuetify/components')['VTab']
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
636
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
637
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
633
638
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
639
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
640
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
634
641
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
635
642
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
636
643
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
644
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
645
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
637
646
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
638
647
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
639
648
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
@@ -644,16 +653,18 @@ declare module '@vue/runtime-core' {
|
|
|
644
653
|
VRow: typeof import('vuetify/components')['VRow']
|
|
645
654
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
646
655
|
VHover: typeof import('vuetify/components')['VHover']
|
|
647
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
|
648
656
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
649
657
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
658
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
|
650
659
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
651
|
-
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
652
660
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
653
|
-
|
|
661
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
654
662
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
663
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
655
664
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
656
665
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
666
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
667
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
657
668
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
658
669
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
659
670
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -670,16 +681,14 @@ declare module '@vue/runtime-core' {
|
|
|
670
681
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
671
682
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
672
683
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
673
|
-
|
|
674
|
-
|
|
684
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
685
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
675
686
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
676
687
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
677
688
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
678
689
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
679
690
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
680
691
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
681
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
682
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
683
692
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
684
693
|
}
|
|
685
694
|
}
|