@vuetify/nightly 3.6.8-master.2024-06-07 → 3.6.8-master.2024-06-11

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/vuetify.d.ts CHANGED
@@ -103,6 +103,29 @@ type InternalDateOptions = {
103
103
  type DateOptions = Partial<InternalDateOptions>;
104
104
  declare function useDate(): DateInstance;
105
105
 
106
+ declare const block: readonly ["top", "bottom"];
107
+ declare const inline: readonly ["start", "end", "left", "right"];
108
+ type Tblock = typeof block[number];
109
+ type Tinline = typeof inline[number];
110
+ type Anchor = Tblock | Tinline | 'center' | 'center center' | `${Tblock} ${Tinline | 'center'}` | `${Tinline} ${Tblock | 'center'}`;
111
+
112
+ declare class Box {
113
+ x: number;
114
+ y: number;
115
+ width: number;
116
+ height: number;
117
+ constructor({ x, y, width, height }: {
118
+ x: number;
119
+ y: number;
120
+ width: number;
121
+ height: number;
122
+ });
123
+ get top(): number;
124
+ get bottom(): number;
125
+ get left(): number;
126
+ get right(): number;
127
+ }
128
+
106
129
  type DeepPartial<T> = T extends object ? {
107
130
  [P in keyof T]?: DeepPartial<T[P]>;
108
131
  } : T;
@@ -161,116 +184,6 @@ interface ThemeInstance {
161
184
  }
162
185
  declare function useTheme(): ThemeInstance;
163
186
 
164
- declare const breakpoints: readonly ["sm", "md", "lg", "xl", "xxl"];
165
- type Breakpoint = typeof breakpoints[number];
166
- type DisplayBreakpoint = 'xs' | Breakpoint;
167
- type DisplayThresholds = {
168
- [key in DisplayBreakpoint]: number;
169
- };
170
- interface DisplayProps {
171
- mobile?: boolean | null;
172
- mobileBreakpoint?: number | DisplayBreakpoint;
173
- }
174
- interface DisplayOptions {
175
- mobileBreakpoint?: number | DisplayBreakpoint;
176
- thresholds?: Partial<DisplayThresholds>;
177
- }
178
- type SSROptions = boolean | {
179
- clientWidth: number;
180
- clientHeight?: number;
181
- };
182
- interface DisplayPlatform {
183
- android: boolean;
184
- ios: boolean;
185
- cordova: boolean;
186
- electron: boolean;
187
- chrome: boolean;
188
- edge: boolean;
189
- firefox: boolean;
190
- opera: boolean;
191
- win: boolean;
192
- mac: boolean;
193
- linux: boolean;
194
- touch: boolean;
195
- ssr: boolean;
196
- }
197
- interface DisplayInstance {
198
- xs: Ref<boolean>;
199
- sm: Ref<boolean>;
200
- md: Ref<boolean>;
201
- lg: Ref<boolean>;
202
- xl: Ref<boolean>;
203
- xxl: Ref<boolean>;
204
- smAndUp: Ref<boolean>;
205
- mdAndUp: Ref<boolean>;
206
- lgAndUp: Ref<boolean>;
207
- xlAndUp: Ref<boolean>;
208
- smAndDown: Ref<boolean>;
209
- mdAndDown: Ref<boolean>;
210
- lgAndDown: Ref<boolean>;
211
- xlAndDown: Ref<boolean>;
212
- name: Ref<DisplayBreakpoint>;
213
- height: Ref<number>;
214
- width: Ref<number>;
215
- mobile: Ref<boolean>;
216
- mobileBreakpoint: Ref<number | DisplayBreakpoint>;
217
- platform: Ref<DisplayPlatform>;
218
- thresholds: Ref<DisplayThresholds>;
219
- update(): void;
220
- }
221
- declare function useDisplay(props?: DisplayProps, name?: string): {
222
- displayClasses: vue.ComputedRef<{
223
- [x: string]: boolean;
224
- }>;
225
- mobile: vue.ComputedRef<boolean>;
226
- xs: Ref<boolean>;
227
- sm: Ref<boolean>;
228
- md: Ref<boolean>;
229
- lg: Ref<boolean>;
230
- xl: Ref<boolean>;
231
- xxl: Ref<boolean>;
232
- smAndUp: Ref<boolean>;
233
- mdAndUp: Ref<boolean>;
234
- lgAndUp: Ref<boolean>;
235
- xlAndUp: Ref<boolean>;
236
- smAndDown: Ref<boolean>;
237
- mdAndDown: Ref<boolean>;
238
- lgAndDown: Ref<boolean>;
239
- xlAndDown: Ref<boolean>;
240
- name: Ref<DisplayBreakpoint>;
241
- height: Ref<number>;
242
- width: Ref<number>;
243
- mobileBreakpoint: Ref<number | DisplayBreakpoint>;
244
- platform: Ref<DisplayPlatform>;
245
- thresholds: Ref<DisplayThresholds>;
246
- /** @internal */
247
- ssr: boolean;
248
- update(): void;
249
- };
250
-
251
- declare const block: readonly ["top", "bottom"];
252
- declare const inline: readonly ["start", "end", "left", "right"];
253
- type Tblock = typeof block[number];
254
- type Tinline = typeof inline[number];
255
- type Anchor = Tblock | Tinline | 'center' | 'center center' | `${Tblock} ${Tinline | 'center'}` | `${Tinline} ${Tblock | 'center'}`;
256
-
257
- declare class Box {
258
- x: number;
259
- y: number;
260
- width: number;
261
- height: number;
262
- constructor({ x, y, width, height }: {
263
- x: number;
264
- y: number;
265
- width: number;
266
- height: number;
267
- });
268
- get top(): number;
269
- get bottom(): number;
270
- get left(): number;
271
- get right(): number;
272
- }
273
-
274
187
  type HSV = {
275
188
  h: number;
276
189
  s: number;
@@ -318,31 +231,6 @@ type TemplateRef = {
318
231
  readonly el: HTMLElement | undefined;
319
232
  };
320
233
 
321
- type DefaultsInstance = undefined | {
322
- [key: string]: undefined | Record<string, unknown>;
323
- global?: Record<string, unknown>;
324
- };
325
- type DefaultsOptions = Partial<DefaultsInstance>;
326
- declare function useDefaults<T extends Record<string, any>>(props: T, name?: string): T;
327
- declare function useDefaults(props?: undefined, name?: string): Record<string, any>;
328
-
329
- interface GoToInstance {
330
- rtl: Ref<boolean>;
331
- options: GoToOptions;
332
- }
333
- interface GoToOptions {
334
- container: ComponentPublicInstance | HTMLElement | string;
335
- duration: number;
336
- layout: boolean;
337
- offset: number;
338
- easing: string | ((t: number) => number);
339
- patterns: Record<string, (t: number) => number>;
340
- }
341
- declare function useGoTo(_options?: Partial<GoToOptions>): {
342
- (target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial<GoToOptions>): Promise<unknown>;
343
- horizontal(target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial<GoToOptions>): Promise<unknown>;
344
- };
345
-
346
234
  type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
347
235
  declare const IconValue: PropType<IconValue>;
348
236
  interface IconAliases {
@@ -392,11 +280,12 @@ type IconComponent = JSXComponent<IconProps>;
392
280
  interface IconSet {
393
281
  component: IconComponent;
394
282
  }
395
- type IconOptions = {
396
- defaultSet?: string;
397
- aliases?: Partial<IconAliases>;
398
- sets?: Record<string, IconSet>;
283
+ type InternalIconOptions = {
284
+ defaultSet: string;
285
+ aliases: Partial<IconAliases>;
286
+ sets: Record<string, IconSet>;
399
287
  };
288
+ type IconOptions = Partial<InternalIconOptions>;
400
289
  declare const VComponentIcon: {
401
290
  new (...args: any[]): vue.CreateComponentPublicInstance<{
402
291
  tag: string;
@@ -674,6 +563,119 @@ declare const VClassIcon: {
674
563
  }>>;
675
564
  type VClassIcon = InstanceType<typeof VClassIcon>;
676
565
 
566
+ interface GoToInstance {
567
+ rtl: Ref<boolean>;
568
+ options: InternalGoToOptions;
569
+ }
570
+ interface InternalGoToOptions {
571
+ container: ComponentPublicInstance | HTMLElement | string;
572
+ duration: number;
573
+ layout: boolean;
574
+ offset: number;
575
+ easing: string | ((t: number) => number);
576
+ patterns: Record<string, (t: number) => number>;
577
+ }
578
+ type GoToOptions = Partial<InternalGoToOptions>;
579
+ declare function useGoTo(_options?: GoToOptions): {
580
+ (target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial<GoToOptions>): Promise<unknown>;
581
+ horizontal(target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial<GoToOptions>): Promise<unknown>;
582
+ };
583
+
584
+ declare const breakpoints: readonly ["sm", "md", "lg", "xl", "xxl"];
585
+ type Breakpoint = typeof breakpoints[number];
586
+ type DisplayBreakpoint = 'xs' | Breakpoint;
587
+ type DisplayThresholds = {
588
+ [key in DisplayBreakpoint]: number;
589
+ };
590
+ interface DisplayProps {
591
+ mobile?: boolean | null;
592
+ mobileBreakpoint?: number | DisplayBreakpoint;
593
+ }
594
+ interface DisplayOptions {
595
+ mobileBreakpoint?: number | DisplayBreakpoint;
596
+ thresholds?: Partial<DisplayThresholds>;
597
+ }
598
+ type SSROptions = boolean | {
599
+ clientWidth: number;
600
+ clientHeight?: number;
601
+ };
602
+ interface DisplayPlatform {
603
+ android: boolean;
604
+ ios: boolean;
605
+ cordova: boolean;
606
+ electron: boolean;
607
+ chrome: boolean;
608
+ edge: boolean;
609
+ firefox: boolean;
610
+ opera: boolean;
611
+ win: boolean;
612
+ mac: boolean;
613
+ linux: boolean;
614
+ touch: boolean;
615
+ ssr: boolean;
616
+ }
617
+ interface DisplayInstance {
618
+ xs: Ref<boolean>;
619
+ sm: Ref<boolean>;
620
+ md: Ref<boolean>;
621
+ lg: Ref<boolean>;
622
+ xl: Ref<boolean>;
623
+ xxl: Ref<boolean>;
624
+ smAndUp: Ref<boolean>;
625
+ mdAndUp: Ref<boolean>;
626
+ lgAndUp: Ref<boolean>;
627
+ xlAndUp: Ref<boolean>;
628
+ smAndDown: Ref<boolean>;
629
+ mdAndDown: Ref<boolean>;
630
+ lgAndDown: Ref<boolean>;
631
+ xlAndDown: Ref<boolean>;
632
+ name: Ref<DisplayBreakpoint>;
633
+ height: Ref<number>;
634
+ width: Ref<number>;
635
+ mobile: Ref<boolean>;
636
+ mobileBreakpoint: Ref<number | DisplayBreakpoint>;
637
+ platform: Ref<DisplayPlatform>;
638
+ thresholds: Ref<DisplayThresholds>;
639
+ update(): void;
640
+ }
641
+ declare function useDisplay(props?: DisplayProps, name?: string): {
642
+ displayClasses: vue.ComputedRef<{
643
+ [x: string]: boolean;
644
+ }>;
645
+ mobile: vue.ComputedRef<boolean>;
646
+ xs: Ref<boolean>;
647
+ sm: Ref<boolean>;
648
+ md: Ref<boolean>;
649
+ lg: Ref<boolean>;
650
+ xl: Ref<boolean>;
651
+ xxl: Ref<boolean>;
652
+ smAndUp: Ref<boolean>;
653
+ mdAndUp: Ref<boolean>;
654
+ lgAndUp: Ref<boolean>;
655
+ xlAndUp: Ref<boolean>;
656
+ smAndDown: Ref<boolean>;
657
+ mdAndDown: Ref<boolean>;
658
+ lgAndDown: Ref<boolean>;
659
+ xlAndDown: Ref<boolean>;
660
+ name: Ref<DisplayBreakpoint>;
661
+ height: Ref<number>;
662
+ width: Ref<number>;
663
+ mobileBreakpoint: Ref<number | DisplayBreakpoint>;
664
+ platform: Ref<DisplayPlatform>;
665
+ thresholds: Ref<DisplayThresholds>;
666
+ /** @internal */
667
+ ssr: boolean;
668
+ update(): void;
669
+ };
670
+
671
+ type DefaultsInstance = undefined | {
672
+ [key: string]: undefined | Record<string, unknown>;
673
+ global?: Record<string, unknown>;
674
+ };
675
+ type DefaultsOptions = Partial<DefaultsInstance>;
676
+ declare function useDefaults<T extends Record<string, any>>(props: T, name?: string): T;
677
+ declare function useDefaults(props?: undefined, name?: string): Record<string, any>;
678
+
677
679
  type Position = 'top' | 'left' | 'right' | 'bottom';
678
680
  interface Layer {
679
681
  top: number;
@@ -72740,7 +72742,7 @@ declare const createVuetify: {
72740
72742
  theme: ThemeInstance & {
72741
72743
  install: (app: vue.App<any>) => void;
72742
72744
  };
72743
- icons: Record<string, any>;
72745
+ icons: InternalIconOptions;
72744
72746
  locale: {
72745
72747
  isRtl: vue.Ref<boolean>;
72746
72748
  rtl: vue.Ref<Record<string, boolean>>;
@@ -72801,10 +72803,7 @@ declare const createVuetify: {
72801
72803
  setMinutes: (date: unknown, minutes: number) => unknown;
72802
72804
  };
72803
72805
  };
72804
- goTo: {
72805
- rtl: vue.Ref<boolean>;
72806
- options: Record<string, any>;
72807
- };
72806
+ goTo: GoToInstance;
72808
72807
  };
72809
72808
  version: string;
72810
72809
  };
@@ -72856,40 +72855,37 @@ declare module '@vue/runtime-core' {
72856
72855
 
72857
72856
  export interface GlobalComponents {
72858
72857
  VApp: typeof import('vuetify/components')['VApp']
72858
+ VAlert: typeof import('vuetify/components')['VAlert']
72859
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
72860
+ VAvatar: typeof import('vuetify/components')['VAvatar']
72861
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
72859
72862
  VAppBar: typeof import('vuetify/components')['VAppBar']
72860
72863
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
72861
72864
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
72862
- VAlert: typeof import('vuetify/components')['VAlert']
72863
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
72864
72865
  VBadge: typeof import('vuetify/components')['VBadge']
72865
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
72866
- VAvatar: typeof import('vuetify/components')['VAvatar']
72867
72866
  VBanner: typeof import('vuetify/components')['VBanner']
72868
72867
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
72869
72868
  VBannerText: typeof import('vuetify/components')['VBannerText']
72870
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
72871
72869
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
72872
72870
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
72873
72871
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
72874
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
72875
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
72872
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
72876
72873
  VBtn: typeof import('vuetify/components')['VBtn']
72874
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
72877
72875
  VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
72878
72876
  VCarousel: typeof import('vuetify/components')['VCarousel']
72879
72877
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
72878
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
72879
+ VChip: typeof import('vuetify/components')['VChip']
72880
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
72881
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
72880
72882
  VCard: typeof import('vuetify/components')['VCard']
72881
72883
  VCardActions: typeof import('vuetify/components')['VCardActions']
72882
72884
  VCardItem: typeof import('vuetify/components')['VCardItem']
72883
72885
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
72884
72886
  VCardText: typeof import('vuetify/components')['VCardText']
72885
72887
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
72886
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
72887
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
72888
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
72889
- VChip: typeof import('vuetify/components')['VChip']
72890
72888
  VCombobox: typeof import('vuetify/components')['VCombobox']
72891
- VCode: typeof import('vuetify/components')['VCode']
72892
- VCounter: typeof import('vuetify/components')['VCounter']
72893
72889
  VDataTable: typeof import('vuetify/components')['VDataTable']
72894
72890
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
72895
72891
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -72897,25 +72893,33 @@ declare module '@vue/runtime-core' {
72897
72893
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
72898
72894
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
72899
72895
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
72900
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
72896
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
72897
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
72898
+ VCode: typeof import('vuetify/components')['VCode']
72899
+ VCounter: typeof import('vuetify/components')['VCounter']
72900
+ VDialog: typeof import('vuetify/components')['VDialog']
72901
72901
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
72902
72902
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
72903
72903
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
72904
72904
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
72905
72905
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
72906
72906
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
72907
- VDialog: typeof import('vuetify/components')['VDialog']
72908
- VEmptyState: typeof import('vuetify/components')['VEmptyState']
72909
- VDivider: typeof import('vuetify/components')['VDivider']
72910
- VFab: typeof import('vuetify/components')['VFab']
72911
- VField: typeof import('vuetify/components')['VField']
72912
- VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
72913
- VFooter: typeof import('vuetify/components')['VFooter']
72914
72907
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
72915
72908
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
72916
72909
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
72917
72910
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
72911
+ VDivider: typeof import('vuetify/components')['VDivider']
72912
+ VEmptyState: typeof import('vuetify/components')['VEmptyState']
72913
+ VField: typeof import('vuetify/components')['VField']
72914
+ VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
72915
+ VFab: typeof import('vuetify/components')['VFab']
72918
72916
  VFileInput: typeof import('vuetify/components')['VFileInput']
72917
+ VIcon: typeof import('vuetify/components')['VIcon']
72918
+ VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
72919
+ VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
72920
+ VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
72921
+ VClassIcon: typeof import('vuetify/components')['VClassIcon']
72922
+ VFooter: typeof import('vuetify/components')['VFooter']
72919
72923
  VImg: typeof import('vuetify/components')['VImg']
72920
72924
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
72921
72925
  VInput: typeof import('vuetify/components')['VInput']
@@ -72923,7 +72927,6 @@ declare module '@vue/runtime-core' {
72923
72927
  VItem: typeof import('vuetify/components')['VItem']
72924
72928
  VLabel: typeof import('vuetify/components')['VLabel']
72925
72929
  VKbd: typeof import('vuetify/components')['VKbd']
72926
- VMain: typeof import('vuetify/components')['VMain']
72927
72930
  VList: typeof import('vuetify/components')['VList']
72928
72931
  VListGroup: typeof import('vuetify/components')['VListGroup']
72929
72932
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -72933,53 +72936,49 @@ declare module '@vue/runtime-core' {
72933
72936
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
72934
72937
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
72935
72938
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
72936
- VMessages: typeof import('vuetify/components')['VMessages']
72937
72939
  VMenu: typeof import('vuetify/components')['VMenu']
72940
+ VMessages: typeof import('vuetify/components')['VMessages']
72938
72941
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
72942
+ VPagination: typeof import('vuetify/components')['VPagination']
72939
72943
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
72944
+ VMain: typeof import('vuetify/components')['VMain']
72940
72945
  VOverlay: typeof import('vuetify/components')['VOverlay']
72941
- VPagination: typeof import('vuetify/components')['VPagination']
72942
72946
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
72943
72947
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
72944
72948
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
72945
72949
  VRating: typeof import('vuetify/components')['VRating']
72946
72950
  VSelect: typeof import('vuetify/components')['VSelect']
72947
72951
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
72948
- VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
72949
72952
  VSheet: typeof import('vuetify/components')['VSheet']
72950
72953
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
72951
72954
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
72952
72955
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
72953
72956
  VSlider: typeof import('vuetify/components')['VSlider']
72957
+ VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
72954
72958
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
72955
- VIcon: typeof import('vuetify/components')['VIcon']
72956
- VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
72957
- VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
72958
- VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
72959
- VClassIcon: typeof import('vuetify/components')['VClassIcon']
72960
- VSwitch: typeof import('vuetify/components')['VSwitch']
72961
72959
  VStepper: typeof import('vuetify/components')['VStepper']
72962
72960
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
72963
72961
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
72964
72962
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
72965
72963
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
72966
72964
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
72967
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
72965
+ VSwitch: typeof import('vuetify/components')['VSwitch']
72968
72966
  VTable: typeof import('vuetify/components')['VTable']
72967
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
72969
72968
  VTab: typeof import('vuetify/components')['VTab']
72970
72969
  VTabs: typeof import('vuetify/components')['VTabs']
72971
72970
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
72972
72971
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
72973
- VTextarea: typeof import('vuetify/components')['VTextarea']
72974
72972
  VTextField: typeof import('vuetify/components')['VTextField']
72975
72973
  VTimeline: typeof import('vuetify/components')['VTimeline']
72976
72974
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
72977
72975
  VToolbar: typeof import('vuetify/components')['VToolbar']
72978
72976
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
72979
72977
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
72980
- VTooltip: typeof import('vuetify/components')['VTooltip']
72978
+ VTextarea: typeof import('vuetify/components')['VTextarea']
72981
72979
  VWindow: typeof import('vuetify/components')['VWindow']
72982
72980
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
72981
+ VTooltip: typeof import('vuetify/components')['VTooltip']
72983
72982
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
72984
72983
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
72985
72984
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
@@ -72989,15 +72988,16 @@ declare module '@vue/runtime-core' {
72989
72988
  VRow: typeof import('vuetify/components')['VRow']
72990
72989
  VSpacer: typeof import('vuetify/components')['VSpacer']
72991
72990
  VHover: typeof import('vuetify/components')['VHover']
72991
+ VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
72992
72992
  VLayout: typeof import('vuetify/components')['VLayout']
72993
72993
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
72994
- VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
72995
72994
  VLazy: typeof import('vuetify/components')['VLazy']
72996
- VNoSsr: typeof import('vuetify/components')['VNoSsr']
72997
72995
  VParallax: typeof import('vuetify/components')['VParallax']
72998
- VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
72996
+ VNoSsr: typeof import('vuetify/components')['VNoSsr']
72999
72997
  VRadio: typeof import('vuetify/components')['VRadio']
73000
72998
  VResponsive: typeof import('vuetify/components')['VResponsive']
72999
+ VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
73000
+ VSparkline: typeof import('vuetify/components')['VSparkline']
73001
73001
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
73002
73002
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
73003
73003
  VValidation: typeof import('vuetify/components')['VValidation']
@@ -73018,22 +73018,21 @@ declare module '@vue/runtime-core' {
73018
73018
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
73019
73019
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
73020
73020
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
73021
- VSparkline: typeof import('vuetify/components')['VSparkline']
73022
73021
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
73023
73022
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
73024
73023
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
73025
73024
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
73026
73025
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
73027
73026
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
73027
+ VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
73028
+ VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
73029
+ VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
73030
+ VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
73028
73031
  VPicker: typeof import('vuetify/labs/components')['VPicker']
73029
73032
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
73030
- VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
73031
73033
  VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
73032
73034
  VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
73033
73035
  VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
73034
- VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
73035
- VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
73036
- VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
73037
73036
  VTreeview: typeof import('vuetify/labs/components')['VTreeview']
73038
73037
  VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
73039
73038
  VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.8-master.2024-06-07
2
+ * Vuetify v3.6.8-master.2024-06-11
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -28067,7 +28067,7 @@ function createVuetify$1() {
28067
28067
  goTo
28068
28068
  };
28069
28069
  }
28070
- const version$1 = "3.6.8-master.2024-06-07";
28070
+ const version$1 = "3.6.8-master.2024-06-11";
28071
28071
  createVuetify$1.version = version$1;
28072
28072
 
28073
28073
  // Vue's inject() can only be used in setup
@@ -28092,7 +28092,7 @@ const createVuetify = function () {
28092
28092
  ...options
28093
28093
  });
28094
28094
  };
28095
- const version = "3.6.8-master.2024-06-07";
28095
+ const version = "3.6.8-master.2024-06-11";
28096
28096
  createVuetify.version = version;
28097
28097
 
28098
28098
  export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };