@vuetify/nightly 3.5.9-dev.2024-03-17 → 3.5.9-dev.2024-03-29

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.
@@ -39256,6 +39256,12 @@ declare const VMain: {
39256
39256
  tag: string;
39257
39257
  scrollable: boolean;
39258
39258
  } & {
39259
+ height?: string | number | undefined;
39260
+ width?: string | number | undefined;
39261
+ maxHeight?: string | number | undefined;
39262
+ maxWidth?: string | number | undefined;
39263
+ minHeight?: string | number | undefined;
39264
+ minWidth?: string | number | undefined;
39259
39265
  class?: any;
39260
39266
  } & {
39261
39267
  $children?: vue.VNodeChild | {
@@ -39271,6 +39277,12 @@ declare const VMain: {
39271
39277
  tag: string;
39272
39278
  scrollable: boolean;
39273
39279
  } & {
39280
+ height?: string | number | undefined;
39281
+ width?: string | number | undefined;
39282
+ maxHeight?: string | number | undefined;
39283
+ maxWidth?: string | number | undefined;
39284
+ minHeight?: string | number | undefined;
39285
+ minWidth?: string | number | undefined;
39274
39286
  class?: any;
39275
39287
  } & {
39276
39288
  $children?: vue.VNodeChild | {
@@ -39301,6 +39313,12 @@ declare const VMain: {
39301
39313
  tag: string;
39302
39314
  scrollable: boolean;
39303
39315
  } & {
39316
+ height?: string | number | undefined;
39317
+ width?: string | number | undefined;
39318
+ maxHeight?: string | number | undefined;
39319
+ maxWidth?: string | number | undefined;
39320
+ minHeight?: string | number | undefined;
39321
+ minWidth?: string | number | undefined;
39304
39322
  class?: any;
39305
39323
  } & {
39306
39324
  $children?: vue.VNodeChild | {
@@ -39324,6 +39342,12 @@ declare const VMain: {
39324
39342
  tag: string;
39325
39343
  scrollable: boolean;
39326
39344
  } & {
39345
+ height?: string | number | undefined;
39346
+ width?: string | number | undefined;
39347
+ maxHeight?: string | number | undefined;
39348
+ maxWidth?: string | number | undefined;
39349
+ minHeight?: string | number | undefined;
39350
+ minWidth?: string | number | undefined;
39327
39351
  class?: any;
39328
39352
  } & {
39329
39353
  $children?: vue.VNodeChild | {
@@ -39350,6 +39374,12 @@ declare const VMain: {
39350
39374
  type: vue.PropType<string>;
39351
39375
  default: string;
39352
39376
  };
39377
+ height: (StringConstructor | NumberConstructor)[];
39378
+ maxHeight: (StringConstructor | NumberConstructor)[];
39379
+ maxWidth: (StringConstructor | NumberConstructor)[];
39380
+ minHeight: (StringConstructor | NumberConstructor)[];
39381
+ minWidth: (StringConstructor | NumberConstructor)[];
39382
+ width: (StringConstructor | NumberConstructor)[];
39353
39383
  class: vue.PropType<any>;
39354
39384
  style: {
39355
39385
  type: vue.PropType<vue.StyleValue>;
@@ -39364,6 +39394,12 @@ declare const VMain: {
39364
39394
  type: vue.PropType<string>;
39365
39395
  default: string;
39366
39396
  };
39397
+ height: (StringConstructor | NumberConstructor)[];
39398
+ maxHeight: (StringConstructor | NumberConstructor)[];
39399
+ maxWidth: (StringConstructor | NumberConstructor)[];
39400
+ minHeight: (StringConstructor | NumberConstructor)[];
39401
+ minWidth: (StringConstructor | NumberConstructor)[];
39402
+ width: (StringConstructor | NumberConstructor)[];
39367
39403
  class: vue.PropType<any>;
39368
39404
  style: {
39369
39405
  type: vue.PropType<vue.StyleValue>;
@@ -62767,10 +62803,12 @@ type TimelineTruncateLine = 'start' | 'end' | 'both' | undefined;
62767
62803
  declare const VTimeline: {
62768
62804
  new (...args: any[]): vue.CreateComponentPublicInstance<{
62769
62805
  style: vue.StyleValue;
62806
+ size: string | number;
62770
62807
  tag: string;
62771
62808
  justify: string;
62772
62809
  density: Density;
62773
- lineInset: string | number;
62810
+ fillDot: boolean;
62811
+ lineInset: NonNullable<string | number>;
62774
62812
  lineThickness: string | number;
62775
62813
  } & {
62776
62814
  direction?: TimelineDirection | undefined;
@@ -62778,7 +62816,10 @@ declare const VTimeline: {
62778
62816
  align?: TimelineAlign | undefined;
62779
62817
  side?: TimelineSide;
62780
62818
  theme?: string | undefined;
62819
+ dotColor?: string | undefined;
62820
+ iconColor?: string | undefined;
62781
62821
  lineColor?: string | undefined;
62822
+ hideOpposite?: boolean | undefined;
62782
62823
  truncateLine?: TimelineTruncateLine;
62783
62824
  } & {
62784
62825
  $children?: vue.VNodeChild | {
@@ -62791,10 +62832,12 @@ declare const VTimeline: {
62791
62832
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
62792
62833
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
62793
62834
  style: vue.StyleValue;
62835
+ size: string | number;
62794
62836
  tag: string;
62795
62837
  justify: string;
62796
62838
  density: Density;
62797
- lineInset: string | number;
62839
+ fillDot: boolean;
62840
+ lineInset: NonNullable<string | number>;
62798
62841
  lineThickness: string | number;
62799
62842
  } & {
62800
62843
  direction?: TimelineDirection | undefined;
@@ -62802,7 +62845,10 @@ declare const VTimeline: {
62802
62845
  align?: TimelineAlign | undefined;
62803
62846
  side?: TimelineSide;
62804
62847
  theme?: string | undefined;
62848
+ dotColor?: string | undefined;
62849
+ iconColor?: string | undefined;
62805
62850
  lineColor?: string | undefined;
62851
+ hideOpposite?: boolean | undefined;
62806
62852
  truncateLine?: TimelineTruncateLine;
62807
62853
  } & {
62808
62854
  $children?: vue.VNodeChild | {
@@ -62815,10 +62861,13 @@ declare const VTimeline: {
62815
62861
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
62816
62862
  }, {
62817
62863
  style: vue.StyleValue;
62864
+ size: string | number;
62818
62865
  tag: string;
62819
62866
  justify: string;
62820
62867
  density: Density;
62821
- lineInset: string | number;
62868
+ fillDot: boolean;
62869
+ hideOpposite: boolean;
62870
+ lineInset: NonNullable<string | number>;
62822
62871
  lineThickness: string | number;
62823
62872
  }, true, {}, vue.SlotsType<Partial<{
62824
62873
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -62833,10 +62882,12 @@ declare const VTimeline: {
62833
62882
  Defaults: {};
62834
62883
  }, {
62835
62884
  style: vue.StyleValue;
62885
+ size: string | number;
62836
62886
  tag: string;
62837
62887
  justify: string;
62838
62888
  density: Density;
62839
- lineInset: string | number;
62889
+ fillDot: boolean;
62890
+ lineInset: NonNullable<string | number>;
62840
62891
  lineThickness: string | number;
62841
62892
  } & {
62842
62893
  direction?: TimelineDirection | undefined;
@@ -62844,7 +62895,10 @@ declare const VTimeline: {
62844
62895
  align?: TimelineAlign | undefined;
62845
62896
  side?: TimelineSide;
62846
62897
  theme?: string | undefined;
62898
+ dotColor?: string | undefined;
62899
+ iconColor?: string | undefined;
62847
62900
  lineColor?: string | undefined;
62901
+ hideOpposite?: boolean | undefined;
62848
62902
  truncateLine?: TimelineTruncateLine;
62849
62903
  } & {
62850
62904
  $children?: vue.VNodeChild | {
@@ -62857,10 +62911,13 @@ declare const VTimeline: {
62857
62911
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
62858
62912
  }, {}, {}, {}, {}, {
62859
62913
  style: vue.StyleValue;
62914
+ size: string | number;
62860
62915
  tag: string;
62861
62916
  justify: string;
62862
62917
  density: Density;
62863
- lineInset: string | number;
62918
+ fillDot: boolean;
62919
+ hideOpposite: boolean;
62920
+ lineInset: NonNullable<string | number>;
62864
62921
  lineThickness: string | number;
62865
62922
  }>;
62866
62923
  __isFragment?: undefined;
@@ -62868,10 +62925,12 @@ declare const VTimeline: {
62868
62925
  __isSuspense?: undefined;
62869
62926
  } & vue.ComponentOptionsBase<{
62870
62927
  style: vue.StyleValue;
62928
+ size: string | number;
62871
62929
  tag: string;
62872
62930
  justify: string;
62873
62931
  density: Density;
62874
- lineInset: string | number;
62932
+ fillDot: boolean;
62933
+ lineInset: NonNullable<string | number>;
62875
62934
  lineThickness: string | number;
62876
62935
  } & {
62877
62936
  direction?: TimelineDirection | undefined;
@@ -62879,7 +62938,10 @@ declare const VTimeline: {
62879
62938
  align?: TimelineAlign | undefined;
62880
62939
  side?: TimelineSide;
62881
62940
  theme?: string | undefined;
62941
+ dotColor?: string | undefined;
62942
+ iconColor?: string | undefined;
62882
62943
  lineColor?: string | undefined;
62944
+ hideOpposite?: boolean | undefined;
62883
62945
  truncateLine?: TimelineTruncateLine;
62884
62946
  } & {
62885
62947
  $children?: vue.VNodeChild | {
@@ -62892,10 +62954,13 @@ declare const VTimeline: {
62892
62954
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
62893
62955
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
62894
62956
  style: vue.StyleValue;
62957
+ size: string | number;
62895
62958
  tag: string;
62896
62959
  justify: string;
62897
62960
  density: Density;
62898
- lineInset: string | number;
62961
+ fillDot: boolean;
62962
+ hideOpposite: boolean;
62963
+ lineInset: NonNullable<string | number>;
62899
62964
  lineThickness: string | number;
62900
62965
  }, {}, string, vue.SlotsType<Partial<{
62901
62966
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -62917,6 +62982,21 @@ declare const VTimeline: {
62917
62982
  type: vue.PropType<vue.StyleValue>;
62918
62983
  default: null;
62919
62984
  };
62985
+ size: {
62986
+ type: (StringConstructor | NumberConstructor)[];
62987
+ default: string;
62988
+ };
62989
+ dotColor: StringConstructor;
62990
+ fillDot: BooleanConstructor;
62991
+ iconColor: StringConstructor;
62992
+ hideOpposite: {
62993
+ type: BooleanConstructor;
62994
+ default: undefined;
62995
+ };
62996
+ lineInset: {
62997
+ type: vue.PropType<NonNullable<string | number>>;
62998
+ default: NonNullable<string | number>;
62999
+ };
62920
63000
  align: Prop<TimelineAlign>;
62921
63001
  direction: Prop<TimelineDirection>;
62922
63002
  justify: {
@@ -62925,10 +63005,6 @@ declare const VTimeline: {
62925
63005
  validator: (v: any) => boolean;
62926
63006
  };
62927
63007
  side: Prop<TimelineSide>;
62928
- lineInset: {
62929
- type: (StringConstructor | NumberConstructor)[];
62930
- default: number;
62931
- };
62932
63008
  lineThickness: {
62933
63009
  type: (StringConstructor | NumberConstructor)[];
62934
63010
  default: number;
@@ -62951,6 +63027,21 @@ declare const VTimeline: {
62951
63027
  type: vue.PropType<vue.StyleValue>;
62952
63028
  default: null;
62953
63029
  };
63030
+ size: {
63031
+ type: (StringConstructor | NumberConstructor)[];
63032
+ default: string;
63033
+ };
63034
+ dotColor: StringConstructor;
63035
+ fillDot: BooleanConstructor;
63036
+ iconColor: StringConstructor;
63037
+ hideOpposite: {
63038
+ type: BooleanConstructor;
63039
+ default: undefined;
63040
+ };
63041
+ lineInset: {
63042
+ type: vue.PropType<NonNullable<string | number>>;
63043
+ default: NonNullable<string | number>;
63044
+ };
62954
63045
  align: Prop<TimelineAlign>;
62955
63046
  direction: Prop<TimelineDirection>;
62956
63047
  justify: {
@@ -62959,10 +63050,6 @@ declare const VTimeline: {
62959
63050
  validator: (v: any) => boolean;
62960
63051
  };
62961
63052
  side: Prop<TimelineSide>;
62962
- lineInset: {
62963
- type: (StringConstructor | NumberConstructor)[];
62964
- default: number;
62965
- };
62966
63053
  lineThickness: {
62967
63054
  type: (StringConstructor | NumberConstructor)[];
62968
63055
  default: number;
@@ -62992,10 +63079,10 @@ declare const VTimelineItem: {
62992
63079
  elevation?: string | number | undefined;
62993
63080
  rounded?: string | number | boolean | undefined;
62994
63081
  density?: "default" | "compact" | undefined;
62995
- lineInset?: string | number | undefined;
62996
63082
  dotColor?: string | undefined;
62997
63083
  iconColor?: string | undefined;
62998
63084
  hideOpposite?: boolean | undefined;
63085
+ lineInset?: string | number | undefined;
62999
63086
  } & {
63000
63087
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
63001
63088
  default?: (() => vue.VNodeChild) | undefined;
@@ -63030,10 +63117,10 @@ declare const VTimelineItem: {
63030
63117
  elevation?: string | number | undefined;
63031
63118
  rounded?: string | number | boolean | undefined;
63032
63119
  density?: "default" | "compact" | undefined;
63033
- lineInset?: string | number | undefined;
63034
63120
  dotColor?: string | undefined;
63035
63121
  iconColor?: string | undefined;
63036
63122
  hideOpposite?: boolean | undefined;
63123
+ lineInset?: string | number | undefined;
63037
63124
  } & {
63038
63125
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
63039
63126
  default?: (() => vue.VNodeChild) | undefined;
@@ -63094,10 +63181,10 @@ declare const VTimelineItem: {
63094
63181
  elevation?: string | number | undefined;
63095
63182
  rounded?: string | number | boolean | undefined;
63096
63183
  density?: "default" | "compact" | undefined;
63097
- lineInset?: string | number | undefined;
63098
63184
  dotColor?: string | undefined;
63099
63185
  iconColor?: string | undefined;
63100
63186
  hideOpposite?: boolean | undefined;
63187
+ lineInset?: string | number | undefined;
63101
63188
  } & {
63102
63189
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
63103
63190
  default?: (() => vue.VNodeChild) | undefined;
@@ -63145,10 +63232,10 @@ declare const VTimelineItem: {
63145
63232
  elevation?: string | number | undefined;
63146
63233
  rounded?: string | number | boolean | undefined;
63147
63234
  density?: "default" | "compact" | undefined;
63148
- lineInset?: string | number | undefined;
63149
63235
  dotColor?: string | undefined;
63150
63236
  iconColor?: string | undefined;
63151
63237
  hideOpposite?: boolean | undefined;
63238
+ lineInset?: string | number | undefined;
63152
63239
  } & {
63153
63240
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
63154
63241
  default?: (() => vue.VNodeChild) | undefined;
@@ -16,7 +16,7 @@ export const createVuetify = function () {
16
16
  ...options
17
17
  });
18
18
  };
19
- export const version = "3.5.9-dev.2024-03-17";
19
+ export const version = "3.5.9-dev.2024-03-29";
20
20
  createVuetify.version = version;
21
21
  export { blueprints, components, directives };
22
22
  export * from "./composables/index.mjs";
package/lib/framework.mjs CHANGED
@@ -97,7 +97,7 @@ export function createVuetify() {
97
97
  goTo
98
98
  };
99
99
  }
100
- export const version = "3.5.9-dev.2024-03-17";
100
+ export const version = "3.5.9-dev.2024-03-29";
101
101
  createVuetify.version = version;
102
102
 
103
103
  // Vue's inject() can only be used in setup
package/lib/index.d.mts CHANGED
@@ -530,44 +530,37 @@ declare module '@vue/runtime-core' {
530
530
  VAppBar: typeof import('vuetify/components')['VAppBar']
531
531
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
532
532
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
533
- VAlert: typeof import('vuetify/components')['VAlert']
534
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
535
533
  VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
536
534
  VAvatar: typeof import('vuetify/components')['VAvatar']
535
+ VAlert: typeof import('vuetify/components')['VAlert']
536
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
537
537
  VBadge: typeof import('vuetify/components')['VBadge']
538
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
539
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
538
540
  VBanner: typeof import('vuetify/components')['VBanner']
539
541
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
540
542
  VBannerText: typeof import('vuetify/components')['VBannerText']
541
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
542
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
543
543
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
544
544
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
545
545
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
546
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
547
546
  VBtn: typeof import('vuetify/components')['VBtn']
547
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
548
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
548
549
  VCard: typeof import('vuetify/components')['VCard']
549
550
  VCardActions: typeof import('vuetify/components')['VCardActions']
550
551
  VCardItem: typeof import('vuetify/components')['VCardItem']
551
552
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
552
553
  VCardText: typeof import('vuetify/components')['VCardText']
553
554
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
554
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
555
555
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
556
556
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
557
+ VChip: typeof import('vuetify/components')['VChip']
558
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
559
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
557
560
  VCarousel: typeof import('vuetify/components')['VCarousel']
558
561
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
559
562
  VCode: typeof import('vuetify/components')['VCode']
560
- VChip: typeof import('vuetify/components')['VChip']
561
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
562
563
  VCounter: typeof import('vuetify/components')['VCounter']
563
- VCombobox: typeof import('vuetify/components')['VCombobox']
564
- VDatePicker: typeof import('vuetify/components')['VDatePicker']
565
- VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
566
- VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
567
- VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
568
- VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
569
- VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
570
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
571
564
  VDataTable: typeof import('vuetify/components')['VDataTable']
572
565
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
573
566
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -575,27 +568,34 @@ declare module '@vue/runtime-core' {
575
568
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
576
569
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
577
570
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
578
- VDialog: typeof import('vuetify/components')['VDialog']
571
+ VCombobox: typeof import('vuetify/components')['VCombobox']
572
+ VDatePicker: typeof import('vuetify/components')['VDatePicker']
573
+ VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
574
+ VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
575
+ VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
576
+ VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
577
+ VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
579
578
  VDivider: typeof import('vuetify/components')['VDivider']
579
+ VDialog: typeof import('vuetify/components')['VDialog']
580
580
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
581
581
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
582
582
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
583
583
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
584
- VFileInput: typeof import('vuetify/components')['VFileInput']
585
- VFooter: typeof import('vuetify/components')['VFooter']
586
584
  VField: typeof import('vuetify/components')['VField']
587
585
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
586
+ VFileInput: typeof import('vuetify/components')['VFileInput']
587
+ VApp: typeof import('vuetify/components')['VApp']
588
+ VFooter: typeof import('vuetify/components')['VFooter']
589
+ VImg: typeof import('vuetify/components')['VImg']
588
590
  VIcon: typeof import('vuetify/components')['VIcon']
589
591
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
590
592
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
591
593
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
592
594
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
593
- VImg: typeof import('vuetify/components')['VImg']
594
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
595
595
  VInput: typeof import('vuetify/components')['VInput']
596
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
596
597
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
597
598
  VItem: typeof import('vuetify/components')['VItem']
598
- VLabel: typeof import('vuetify/components')['VLabel']
599
599
  VKbd: typeof import('vuetify/components')['VKbd']
600
600
  VList: typeof import('vuetify/components')['VList']
601
601
  VListGroup: typeof import('vuetify/components')['VListGroup']
@@ -607,22 +607,24 @@ declare module '@vue/runtime-core' {
607
607
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
608
608
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
609
609
  VMain: typeof import('vuetify/components')['VMain']
610
- VMessages: typeof import('vuetify/components')['VMessages']
610
+ VLabel: typeof import('vuetify/components')['VLabel']
611
611
  VMenu: typeof import('vuetify/components')['VMenu']
612
+ VMessages: typeof import('vuetify/components')['VMessages']
613
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
612
614
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
613
615
  VPagination: typeof import('vuetify/components')['VPagination']
614
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
615
616
  VOverlay: typeof import('vuetify/components')['VOverlay']
616
617
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
617
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
618
618
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
619
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
619
620
  VRating: typeof import('vuetify/components')['VRating']
621
+ VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
620
622
  VSelect: typeof import('vuetify/components')['VSelect']
621
623
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
622
- VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
623
624
  VSheet: typeof import('vuetify/components')['VSheet']
624
625
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
625
626
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
627
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
626
628
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
627
629
  VSlider: typeof import('vuetify/components')['VSlider']
628
630
  VStepper: typeof import('vuetify/components')['VStepper']
@@ -632,35 +634,34 @@ declare module '@vue/runtime-core' {
632
634
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
633
635
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
634
636
  VSwitch: typeof import('vuetify/components')['VSwitch']
635
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
636
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
637
637
  VTabs: typeof import('vuetify/components')['VTabs']
638
638
  VTab: typeof import('vuetify/components')['VTab']
639
- VTable: typeof import('vuetify/components')['VTable']
639
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
640
640
  VTextarea: typeof import('vuetify/components')['VTextarea']
641
+ VTable: typeof import('vuetify/components')['VTable']
641
642
  VTextField: typeof import('vuetify/components')['VTextField']
642
643
  VTimeline: typeof import('vuetify/components')['VTimeline']
643
644
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
644
- VTooltip: typeof import('vuetify/components')['VTooltip']
645
- VWindow: typeof import('vuetify/components')['VWindow']
646
- VWindowItem: typeof import('vuetify/components')['VWindowItem']
647
645
  VToolbar: typeof import('vuetify/components')['VToolbar']
648
646
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
649
647
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
648
+ VTooltip: typeof import('vuetify/components')['VTooltip']
649
+ VWindow: typeof import('vuetify/components')['VWindow']
650
+ VWindowItem: typeof import('vuetify/components')['VWindowItem']
650
651
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
651
652
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
652
653
  VForm: typeof import('vuetify/components')['VForm']
654
+ VHover: typeof import('vuetify/components')['VHover']
653
655
  VContainer: typeof import('vuetify/components')['VContainer']
654
656
  VCol: typeof import('vuetify/components')['VCol']
655
657
  VRow: typeof import('vuetify/components')['VRow']
656
658
  VSpacer: typeof import('vuetify/components')['VSpacer']
657
- VHover: typeof import('vuetify/components')['VHover']
658
659
  VLayout: typeof import('vuetify/components')['VLayout']
659
660
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
660
661
  VLazy: typeof import('vuetify/components')['VLazy']
661
662
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
662
- VNoSsr: typeof import('vuetify/components')['VNoSsr']
663
663
  VParallax: typeof import('vuetify/components')['VParallax']
664
+ VNoSsr: typeof import('vuetify/components')['VNoSsr']
664
665
  VRadio: typeof import('vuetify/components')['VRadio']
665
666
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
666
667
  VResponsive: typeof import('vuetify/components')['VResponsive']
@@ -683,22 +684,21 @@ declare module '@vue/runtime-core' {
683
684
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
684
685
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
685
686
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
686
- VApp: typeof import('vuetify/components')['VApp']
687
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
688
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
689
+ VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
690
+ VFab: typeof import('vuetify/labs/components')['VFab']
687
691
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
688
692
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
689
693
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
690
694
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
691
695
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
692
696
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
693
- VFab: typeof import('vuetify/labs/components')['VFab']
694
- VPicker: typeof import('vuetify/labs/components')['VPicker']
695
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
696
- VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
697
- VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
698
697
  VSparkline: typeof import('vuetify/labs/components')['VSparkline']
698
+ VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
699
+ VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
699
700
  VTreeview: typeof import('vuetify/labs/components')['VTreeview']
700
701
  VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
701
702
  VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
702
- VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
703
703
  }
704
704
  }
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.5.9-dev.2024-03-17",
4
+ "version": "3.5.9-dev.2024-03-29",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"