@vuetify/nightly 3.8.1-dev.2025-04-07 → 3.8.1-dev.2025-04-13

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.
@@ -146,11 +146,12 @@ type DeepPartial<T> = T extends object ? {
146
146
  } : T;
147
147
  type ThemeOptions = false | {
148
148
  cspNonce?: string;
149
- defaultTheme?: string;
149
+ defaultTheme?: 'light' | 'dark' | 'system' | string;
150
150
  variations?: false | VariationsOptions;
151
151
  themes?: Record<string, ThemeDefinition>;
152
152
  stylesheetId?: string;
153
153
  scope?: string;
154
+ unimportant?: boolean;
154
155
  };
155
156
  type ThemeDefinition = DeepPartial<InternalThemeDefinition>;
156
157
  interface VariationsOptions {
@@ -187,11 +188,15 @@ interface OnColors {
187
188
  'on-info': string;
188
189
  }
189
190
  interface ThemeInstance {
191
+ change: (themeName: string) => void;
192
+ cycle: (themeArray?: string[]) => void;
193
+ toggle: (themeArray?: [string, string]) => void;
190
194
  readonly isDisabled: boolean;
191
195
  readonly themes: Ref<Record<string, InternalThemeDefinition>>;
192
196
  readonly name: Readonly<Ref<string>>;
193
197
  readonly current: DeepReadonly<Ref<InternalThemeDefinition>>;
194
198
  readonly computedThemes: DeepReadonly<Ref<Record<string, InternalThemeDefinition>>>;
199
+ readonly prefix: string;
195
200
  readonly themeClasses: Readonly<Ref<string | undefined>>;
196
201
  readonly styles: Readonly<Ref<string>>;
197
202
  readonly global: {
@@ -2567,40 +2572,40 @@ declare module 'vue' {
2567
2572
  $children?: VNodeChild
2568
2573
  }
2569
2574
  export interface GlobalComponents {
2570
- VApp: typeof import('vuetify/components')['VApp']
2571
2575
  VAppBar: typeof import('vuetify/components')['VAppBar']
2572
2576
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
2573
2577
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
2574
- VAvatar: typeof import('vuetify/components')['VAvatar']
2578
+ VApp: typeof import('vuetify/components')['VApp']
2579
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2575
2580
  VAlert: typeof import('vuetify/components')['VAlert']
2576
2581
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2577
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2582
+ VAvatar: typeof import('vuetify/components')['VAvatar']
2578
2583
  VBadge: typeof import('vuetify/components')['VBadge']
2579
2584
  VBanner: typeof import('vuetify/components')['VBanner']
2580
2585
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
2581
2586
  VBannerText: typeof import('vuetify/components')['VBannerText']
2587
+ VBtn: typeof import('vuetify/components')['VBtn']
2582
2588
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
2583
2589
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
2584
2590
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
2585
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2586
2591
  VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2587
2592
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2588
- VBtn: typeof import('vuetify/components')['VBtn']
2589
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
2590
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2593
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2594
+ VCarousel: typeof import('vuetify/components')['VCarousel']
2595
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2596
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2597
+ VChip: typeof import('vuetify/components')['VChip']
2598
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
2591
2599
  VCard: typeof import('vuetify/components')['VCard']
2592
2600
  VCardActions: typeof import('vuetify/components')['VCardActions']
2593
2601
  VCardItem: typeof import('vuetify/components')['VCardItem']
2594
2602
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
2595
2603
  VCardText: typeof import('vuetify/components')['VCardText']
2596
2604
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
2597
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2598
2605
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
2599
- VCarousel: typeof import('vuetify/components')['VCarousel']
2600
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2601
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
2602
- VCode: typeof import('vuetify/components')['VCode']
2603
2606
  VCombobox: typeof import('vuetify/components')['VCombobox']
2607
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
2608
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2604
2609
  VDataTable: typeof import('vuetify/components')['VDataTable']
2605
2610
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
2606
2611
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -2608,38 +2613,39 @@ declare module 'vue' {
2608
2613
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
2609
2614
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
2610
2615
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
2616
+ VCounter: typeof import('vuetify/components')['VCounter']
2611
2617
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
2612
2618
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
2613
2619
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
2614
2620
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2615
2621
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2616
2622
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2617
- VCounter: typeof import('vuetify/components')['VCounter']
2618
- VChip: typeof import('vuetify/components')['VChip']
2623
+ VDialog: typeof import('vuetify/components')['VDialog']
2624
+ VCode: typeof import('vuetify/components')['VCode']
2619
2625
  VEmptyState: typeof import('vuetify/components')['VEmptyState']
2626
+ VFab: typeof import('vuetify/components')['VFab']
2620
2627
  VDivider: typeof import('vuetify/components')['VDivider']
2628
+ VIcon: typeof import('vuetify/components')['VIcon']
2629
+ VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
2630
+ VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
2631
+ VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
2632
+ VClassIcon: typeof import('vuetify/components')['VClassIcon']
2621
2633
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
2622
2634
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
2623
2635
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
2624
2636
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
2625
- VDialog: typeof import('vuetify/components')['VDialog']
2626
- VFab: typeof import('vuetify/components')['VFab']
2627
2637
  VField: typeof import('vuetify/components')['VField']
2628
2638
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
2639
+ VInput: typeof import('vuetify/components')['VInput']
2629
2640
  VFooter: typeof import('vuetify/components')['VFooter']
2641
+ VImg: typeof import('vuetify/components')['VImg']
2630
2642
  VFileInput: typeof import('vuetify/components')['VFileInput']
2631
- VIcon: typeof import('vuetify/components')['VIcon']
2632
- VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
2633
- VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
2634
- VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
2635
- VClassIcon: typeof import('vuetify/components')['VClassIcon']
2636
- VInput: typeof import('vuetify/components')['VInput']
2637
- VLabel: typeof import('vuetify/components')['VLabel']
2638
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2639
2643
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
2640
2644
  VItem: typeof import('vuetify/components')['VItem']
2645
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2641
2646
  VKbd: typeof import('vuetify/components')['VKbd']
2642
- VImg: typeof import('vuetify/components')['VImg']
2647
+ VLabel: typeof import('vuetify/components')['VLabel']
2648
+ VMenu: typeof import('vuetify/components')['VMenu']
2643
2649
  VList: typeof import('vuetify/components')['VList']
2644
2650
  VListGroup: typeof import('vuetify/components')['VListGroup']
2645
2651
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -2650,65 +2656,64 @@ declare module 'vue' {
2650
2656
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
2651
2657
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
2652
2658
  VMain: typeof import('vuetify/components')['VMain']
2659
+ VMessages: typeof import('vuetify/components')['VMessages']
2653
2660
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2654
- VMenu: typeof import('vuetify/components')['VMenu']
2655
2661
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
2656
2662
  VOverlay: typeof import('vuetify/components')['VOverlay']
2657
- VMessages: typeof import('vuetify/components')['VMessages']
2658
- VNumberInput: typeof import('vuetify/components')['VNumberInput']
2659
2663
  VPagination: typeof import('vuetify/components')['VPagination']
2660
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2661
- VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
2664
+ VNumberInput: typeof import('vuetify/components')['VNumberInput']
2662
2665
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2663
- VSelect: typeof import('vuetify/components')['VSelect']
2666
+ VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
2664
2667
  VRating: typeof import('vuetify/components')['VRating']
2665
- VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2668
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2666
2669
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2670
+ VSheet: typeof import('vuetify/components')['VSheet']
2671
+ VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2667
2672
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
2668
2673
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
2669
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
2670
- VSheet: typeof import('vuetify/components')['VSheet']
2671
- VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2672
- VSlider: typeof import('vuetify/components')['VSlider']
2673
- VSwitch: typeof import('vuetify/components')['VSwitch']
2674
- VTab: typeof import('vuetify/components')['VTab']
2675
- VTabs: typeof import('vuetify/components')['VTabs']
2676
- VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
2677
- VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
2678
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
2674
+ VSelect: typeof import('vuetify/components')['VSelect']
2679
2675
  VStepper: typeof import('vuetify/components')['VStepper']
2680
2676
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
2681
2677
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
2682
2678
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
2683
2679
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
2684
2680
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
2685
- VTextarea: typeof import('vuetify/components')['VTextarea']
2681
+ VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2682
+ VSlider: typeof import('vuetify/components')['VSlider']
2683
+ VSwitch: typeof import('vuetify/components')['VSwitch']
2684
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
2685
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
2686
2686
  VTable: typeof import('vuetify/components')['VTable']
2687
+ VTextField: typeof import('vuetify/components')['VTextField']
2688
+ VTextarea: typeof import('vuetify/components')['VTextarea']
2689
+ VTab: typeof import('vuetify/components')['VTab']
2690
+ VTabs: typeof import('vuetify/components')['VTabs']
2691
+ VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
2692
+ VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
2687
2693
  VToolbar: typeof import('vuetify/components')['VToolbar']
2688
2694
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2689
2695
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
2690
- VTextField: typeof import('vuetify/components')['VTextField']
2691
- VTimeline: typeof import('vuetify/components')['VTimeline']
2692
- VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2693
2696
  VWindow: typeof import('vuetify/components')['VWindow']
2694
2697
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
2695
2698
  VTooltip: typeof import('vuetify/components')['VTooltip']
2699
+ VTimeline: typeof import('vuetify/components')['VTimeline']
2700
+ VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2696
2701
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
2697
2702
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
2698
2703
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
2699
- VForm: typeof import('vuetify/components')['VForm']
2700
- VHover: typeof import('vuetify/components')['VHover']
2701
2704
  VContainer: typeof import('vuetify/components')['VContainer']
2702
2705
  VCol: typeof import('vuetify/components')['VCol']
2703
2706
  VRow: typeof import('vuetify/components')['VRow']
2704
2707
  VSpacer: typeof import('vuetify/components')['VSpacer']
2708
+ VForm: typeof import('vuetify/components')['VForm']
2709
+ VHover: typeof import('vuetify/components')['VHover']
2705
2710
  VLayout: typeof import('vuetify/components')['VLayout']
2706
2711
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
2707
2712
  VLazy: typeof import('vuetify/components')['VLazy']
2708
- VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2709
2713
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
2710
- VParallax: typeof import('vuetify/components')['VParallax']
2714
+ VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2711
2715
  VRadio: typeof import('vuetify/components')['VRadio']
2716
+ VParallax: typeof import('vuetify/components')['VParallax']
2712
2717
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
2713
2718
  VResponsive: typeof import('vuetify/components')['VResponsive']
2714
2719
  VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
@@ -2733,26 +2738,26 @@ declare module 'vue' {
2733
2738
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
2734
2739
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
2735
2740
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
2736
- VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2737
- VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2738
2741
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
2739
2742
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
2740
2743
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
2744
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
2745
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2741
2746
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
2742
2747
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
2743
2748
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
2744
2749
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
2745
2750
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
2746
2751
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
2747
- VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2748
- VPicker: typeof import('vuetify/labs/components')['VPicker']
2749
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2750
2752
  VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
2751
2753
  VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
2752
2754
  VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
2755
+ VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2753
2756
  VTreeview: typeof import('vuetify/labs/components')['VTreeview']
2754
2757
  VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
2755
2758
  VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
2759
+ VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2760
+ VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2756
2761
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
2757
2762
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
2758
2763
  }
package/lib/framework.js CHANGED
@@ -109,7 +109,7 @@ export function createVuetify() {
109
109
  };
110
110
  });
111
111
  }
112
- export const version = "3.8.1-dev.2025-04-07";
112
+ export const version = "3.8.1-dev.2025-04-13";
113
113
  createVuetify.version = version;
114
114
 
115
115
  // Vue's inject() can only be used in setup
@@ -2,3 +2,4 @@ export declare const IN_BROWSER: boolean;
2
2
  export declare const SUPPORTS_INTERSECTION: boolean;
3
3
  export declare const SUPPORTS_TOUCH: boolean;
4
4
  export declare const SUPPORTS_EYE_DROPPER: boolean;
5
+ export declare const SUPPORTS_MATCH_MEDIA: boolean;
@@ -2,4 +2,5 @@ export const IN_BROWSER = typeof window !== 'undefined';
2
2
  export const SUPPORTS_INTERSECTION = IN_BROWSER && 'IntersectionObserver' in window;
3
3
  export const SUPPORTS_TOUCH = IN_BROWSER && ('ontouchstart' in window || window.navigator.maxTouchPoints > 0);
4
4
  export const SUPPORTS_EYE_DROPPER = IN_BROWSER && 'EyeDropper' in window;
5
+ export const SUPPORTS_MATCH_MEDIA = IN_BROWSER && 'matchMedia' in window && typeof window.matchMedia === 'function';
5
6
  //# sourceMappingURL=globals.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"globals.js","names":["IN_BROWSER","window","SUPPORTS_INTERSECTION","SUPPORTS_TOUCH","navigator","maxTouchPoints","SUPPORTS_EYE_DROPPER"],"sources":["../../src/util/globals.ts"],"sourcesContent":["export const IN_BROWSER = typeof window !== 'undefined'\nexport const SUPPORTS_INTERSECTION = IN_BROWSER && 'IntersectionObserver' in window\nexport const SUPPORTS_TOUCH = IN_BROWSER && ('ontouchstart' in window || window.navigator.maxTouchPoints > 0)\nexport const SUPPORTS_EYE_DROPPER = IN_BROWSER && 'EyeDropper' in window\n"],"mappings":"AAAA,OAAO,MAAMA,UAAU,GAAG,OAAOC,MAAM,KAAK,WAAW;AACvD,OAAO,MAAMC,qBAAqB,GAAGF,UAAU,IAAI,sBAAsB,IAAIC,MAAM;AACnF,OAAO,MAAME,cAAc,GAAGH,UAAU,KAAK,cAAc,IAAIC,MAAM,IAAIA,MAAM,CAACG,SAAS,CAACC,cAAc,GAAG,CAAC,CAAC;AAC7G,OAAO,MAAMC,oBAAoB,GAAGN,UAAU,IAAI,YAAY,IAAIC,MAAM","ignoreList":[]}
1
+ {"version":3,"file":"globals.js","names":["IN_BROWSER","window","SUPPORTS_INTERSECTION","SUPPORTS_TOUCH","navigator","maxTouchPoints","SUPPORTS_EYE_DROPPER","SUPPORTS_MATCH_MEDIA","matchMedia"],"sources":["../../src/util/globals.ts"],"sourcesContent":["export const IN_BROWSER = typeof window !== 'undefined'\nexport const SUPPORTS_INTERSECTION = IN_BROWSER && 'IntersectionObserver' in window\nexport const SUPPORTS_TOUCH = IN_BROWSER && ('ontouchstart' in window || window.navigator.maxTouchPoints > 0)\nexport const SUPPORTS_EYE_DROPPER = IN_BROWSER && 'EyeDropper' in window\nexport const SUPPORTS_MATCH_MEDIA = IN_BROWSER && 'matchMedia' in window && typeof window.matchMedia === 'function'\n"],"mappings":"AAAA,OAAO,MAAMA,UAAU,GAAG,OAAOC,MAAM,KAAK,WAAW;AACvD,OAAO,MAAMC,qBAAqB,GAAGF,UAAU,IAAI,sBAAsB,IAAIC,MAAM;AACnF,OAAO,MAAME,cAAc,GAAGH,UAAU,KAAK,cAAc,IAAIC,MAAM,IAAIA,MAAM,CAACG,SAAS,CAACC,cAAc,GAAG,CAAC,CAAC;AAC7G,OAAO,MAAMC,oBAAoB,GAAGN,UAAU,IAAI,YAAY,IAAIC,MAAM;AACxE,OAAO,MAAMM,oBAAoB,GAAGP,UAAU,IAAI,YAAY,IAAIC,MAAM,IAAI,OAAOA,MAAM,CAACO,UAAU,KAAK,UAAU","ignoreList":[]}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vuetify/nightly",
3
3
  "description": "Vue Material Component Framework",
4
- "version": "3.8.1-dev.2025-04-07",
4
+ "version": "3.8.1-dev.2025-04-13",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"