@vuetify/nightly 3.6.4-master.2024-05-10 → 3.6.5-master.2024-05-12

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.
Files changed (60) hide show
  1. package/CHANGELOG.md +4 -9
  2. package/dist/_component-variables-labs.sass +1 -0
  3. package/dist/json/attributes.json +268 -4
  4. package/dist/json/importMap-labs.json +18 -6
  5. package/dist/json/importMap.json +138 -138
  6. package/dist/json/tags.json +81 -0
  7. package/dist/json/web-types.json +1253 -6
  8. package/dist/vuetify-labs.css +2350 -2542
  9. package/dist/vuetify-labs.d.ts +1615 -28
  10. package/dist/vuetify-labs.esm.js +298 -11
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +298 -11
  13. package/dist/vuetify-labs.min.css +3 -3
  14. package/dist/vuetify.css +4466 -4726
  15. package/dist/vuetify.d.ts +94 -70
  16. package/dist/vuetify.esm.js +38 -11
  17. package/dist/vuetify.esm.js.map +1 -1
  18. package/dist/vuetify.js +38 -11
  19. package/dist/vuetify.js.map +1 -1
  20. package/dist/vuetify.min.css +3 -3
  21. package/dist/vuetify.min.js +47 -48
  22. package/dist/vuetify.min.js.map +1 -1
  23. package/lib/components/VBtn/index.d.mts +2 -0
  24. package/lib/components/VExpansionPanel/VExpansionPanel.mjs +3 -1
  25. package/lib/components/VExpansionPanel/VExpansionPanel.mjs.map +1 -1
  26. package/lib/components/VExpansionPanel/VExpansionPanels.mjs +15 -4
  27. package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
  28. package/lib/components/VExpansionPanel/index.d.mts +82 -27
  29. package/lib/components/VSlideGroup/index.d.mts +2 -0
  30. package/lib/components/VStepper/VStepper.mjs +5 -2
  31. package/lib/components/VStepper/VStepper.mjs.map +1 -1
  32. package/lib/components/VStepper/VStepperItem.mjs +5 -2
  33. package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
  34. package/lib/components/VStepper/index.d.mts +1 -1
  35. package/lib/components/VTabs/index.d.mts +2 -0
  36. package/lib/components/VWindow/index.d.mts +2 -0
  37. package/lib/components/index.d.mts +48 -27
  38. package/lib/composables/group.mjs +8 -0
  39. package/lib/composables/group.mjs.map +1 -1
  40. package/lib/entry-bundler.mjs +1 -1
  41. package/lib/framework.mjs +1 -1
  42. package/lib/index.d.mts +46 -43
  43. package/lib/labs/VStepperVertical/VStepperVertical.mjs +106 -0
  44. package/lib/labs/VStepperVertical/VStepperVertical.mjs.map +1 -0
  45. package/lib/labs/VStepperVertical/VStepperVerticalActions.mjs +38 -0
  46. package/lib/labs/VStepperVertical/VStepperVerticalActions.mjs.map +1 -0
  47. package/lib/labs/VStepperVertical/VStepperVerticalItem.css +69 -0
  48. package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs +134 -0
  49. package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs.map +1 -0
  50. package/lib/labs/VStepperVertical/VStepperVerticalItem.sass +74 -0
  51. package/lib/labs/VStepperVertical/_variables.scss +3 -0
  52. package/lib/labs/VStepperVertical/index.d.mts +1590 -0
  53. package/lib/labs/VStepperVertical/index.mjs +4 -0
  54. package/lib/labs/VStepperVertical/index.mjs.map +1 -0
  55. package/lib/labs/components.d.mts +1599 -20
  56. package/lib/labs/components.mjs +1 -0
  57. package/lib/labs/components.mjs.map +1 -1
  58. package/lib/styles/generic/_colors.scss +0 -1
  59. package/lib/styles/main.css +0 -260
  60. package/package.json +1 -1
package/dist/vuetify.d.ts CHANGED
@@ -1810,6 +1810,8 @@ interface GroupProvide {
1810
1810
  interface GroupItemProvide {
1811
1811
  id: number;
1812
1812
  isSelected: Ref<boolean>;
1813
+ isFirst: Ref<boolean>;
1814
+ isLast: Ref<boolean>;
1813
1815
  toggle: () => void;
1814
1816
  select: (value: boolean) => void;
1815
1817
  selectedClass: Ref<(string | undefined)[] | false>;
@@ -32568,6 +32570,10 @@ declare const VEmptyState: {
32568
32570
  }>>;
32569
32571
  type VEmptyState = InstanceType<typeof VEmptyState>;
32570
32572
 
32573
+ type VExpansionPanelSlot = {
32574
+ prev: () => void;
32575
+ next: () => void;
32576
+ };
32571
32577
  declare const VExpansionPanels: {
32572
32578
  new (...args: any[]): vue.CreateComponentPublicInstance<{
32573
32579
  flat: boolean;
@@ -32603,16 +32609,19 @@ declare const VExpansionPanels: {
32603
32609
  bgColor?: string | undefined;
32604
32610
  } & {
32605
32611
  $children?: vue.VNodeChild | {
32606
- default?: (() => vue.VNodeChild) | undefined;
32607
- } | (() => vue.VNodeChild);
32612
+ default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32613
+ } | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
32608
32614
  'v-slots'?: {
32609
- default?: false | (() => vue.VNodeChild) | undefined;
32615
+ default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32610
32616
  } | undefined;
32611
32617
  } & {
32612
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
32618
+ "v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32613
32619
  } & {
32614
32620
  "onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
32615
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
32621
+ }, {
32622
+ next: () => void;
32623
+ prev: () => void;
32624
+ }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
32616
32625
  'update:modelValue': (val: unknown) => boolean;
32617
32626
  }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
32618
32627
  flat: boolean;
@@ -32648,13 +32657,13 @@ declare const VExpansionPanels: {
32648
32657
  bgColor?: string | undefined;
32649
32658
  } & {
32650
32659
  $children?: vue.VNodeChild | {
32651
- default?: (() => vue.VNodeChild) | undefined;
32652
- } | (() => vue.VNodeChild);
32660
+ default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32661
+ } | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
32653
32662
  'v-slots'?: {
32654
- default?: false | (() => vue.VNodeChild) | undefined;
32663
+ default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32655
32664
  } | undefined;
32656
32665
  } & {
32657
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
32666
+ "v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32658
32667
  } & {
32659
32668
  "onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
32660
32669
  }, {
@@ -32678,7 +32687,7 @@ declare const VExpansionPanels: {
32678
32687
  hideActions: boolean;
32679
32688
  focusable: boolean;
32680
32689
  }, true, {}, vue.SlotsType<Partial<{
32681
- default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
32690
+ default: (arg: VExpansionPanelSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
32682
32691
  [key: string]: any;
32683
32692
  }>[];
32684
32693
  }>>, {
@@ -32722,16 +32731,19 @@ declare const VExpansionPanels: {
32722
32731
  bgColor?: string | undefined;
32723
32732
  } & {
32724
32733
  $children?: vue.VNodeChild | {
32725
- default?: (() => vue.VNodeChild) | undefined;
32726
- } | (() => vue.VNodeChild);
32734
+ default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32735
+ } | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
32727
32736
  'v-slots'?: {
32728
- default?: false | (() => vue.VNodeChild) | undefined;
32737
+ default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32729
32738
  } | undefined;
32730
32739
  } & {
32731
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
32740
+ "v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32732
32741
  } & {
32733
32742
  "onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
32734
- }, {}, {}, {}, {}, {
32743
+ }, {
32744
+ next: () => void;
32745
+ prev: () => void;
32746
+ }, {}, {}, {}, {
32735
32747
  flat: boolean;
32736
32748
  style: vue.StyleValue;
32737
32749
  disabled: boolean;
@@ -32789,16 +32801,19 @@ declare const VExpansionPanels: {
32789
32801
  bgColor?: string | undefined;
32790
32802
  } & {
32791
32803
  $children?: vue.VNodeChild | {
32792
- default?: (() => vue.VNodeChild) | undefined;
32793
- } | (() => vue.VNodeChild);
32804
+ default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32805
+ } | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
32794
32806
  'v-slots'?: {
32795
- default?: false | (() => vue.VNodeChild) | undefined;
32807
+ default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32796
32808
  } | undefined;
32797
32809
  } & {
32798
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
32810
+ "v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
32799
32811
  } & {
32800
32812
  "onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
32801
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
32813
+ }, {
32814
+ next: () => void;
32815
+ prev: () => void;
32816
+ }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
32802
32817
  'update:modelValue': (val: unknown) => boolean;
32803
32818
  }, string, {
32804
32819
  flat: boolean;
@@ -32821,7 +32836,7 @@ declare const VExpansionPanels: {
32821
32836
  hideActions: boolean;
32822
32837
  focusable: boolean;
32823
32838
  }, {}, string, vue.SlotsType<Partial<{
32824
- default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
32839
+ default: (arg: VExpansionPanelSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
32825
32840
  [key: string]: any;
32826
32841
  }>[];
32827
32842
  }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
@@ -32990,10 +33005,12 @@ declare const VExpansionPanel: {
32990
33005
  "onGroup:selected"?: ((val: {
32991
33006
  value: boolean;
32992
33007
  }) => any) | undefined;
32993
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
33008
+ }, {
33009
+ groupItem: GroupItemProvide;
33010
+ }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
32994
33011
  'group:selected': (val: {
32995
33012
  value: boolean;
32996
- }) => boolean;
33013
+ }) => true;
32997
33014
  }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
32998
33015
  style: vue.StyleValue;
32999
33016
  disabled: boolean;
@@ -33115,7 +33132,9 @@ declare const VExpansionPanel: {
33115
33132
  "onGroup:selected"?: ((val: {
33116
33133
  value: boolean;
33117
33134
  }) => any) | undefined;
33118
- }, {}, {}, {}, {}, {
33135
+ }, {
33136
+ groupItem: GroupItemProvide;
33137
+ }, {}, {}, {}, {
33119
33138
  style: vue.StyleValue;
33120
33139
  disabled: boolean;
33121
33140
  tag: string;
@@ -33179,10 +33198,12 @@ declare const VExpansionPanel: {
33179
33198
  "onGroup:selected"?: ((val: {
33180
33199
  value: boolean;
33181
33200
  }) => any) | undefined;
33182
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
33201
+ }, {
33202
+ groupItem: GroupItemProvide;
33203
+ }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
33183
33204
  'group:selected': (val: {
33184
33205
  value: boolean;
33185
- }) => boolean;
33206
+ }) => true;
33186
33207
  }, string, {
33187
33208
  style: vue.StyleValue;
33188
33209
  disabled: boolean;
@@ -58058,6 +58079,7 @@ declare const VSpeedDial: {
58058
58079
  }>>;
58059
58080
  type VSpeedDial = InstanceType<typeof VSpeedDial>;
58060
58081
 
58082
+ type StepperItem = string | Record<string, any>;
58061
58083
  type StepperItemSlot = {
58062
58084
  canEdit: boolean;
58063
58085
  hasError: boolean;
@@ -58382,7 +58404,6 @@ declare const VStepperItem: {
58382
58404
  }>>;
58383
58405
  type VStepperItem = InstanceType<typeof VStepperItem>;
58384
58406
 
58385
- type StepperItem = string | Record<string, any>;
58386
58407
  type VStepperSlot = {
58387
58408
  prev: () => void;
58388
58409
  next: () => void;
@@ -73412,49 +73433,42 @@ declare module '@vue/runtime-core' {
73412
73433
  }
73413
73434
 
73414
73435
  export interface GlobalComponents {
73436
+ VApp: typeof import('vuetify/components')['VApp']
73437
+ VAlert: typeof import('vuetify/components')['VAlert']
73438
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
73439
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
73415
73440
  VAppBar: typeof import('vuetify/components')['VAppBar']
73416
73441
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
73417
73442
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
73418
- VAlert: typeof import('vuetify/components')['VAlert']
73419
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
73420
73443
  VAvatar: typeof import('vuetify/components')['VAvatar']
73421
- VApp: typeof import('vuetify/components')['VApp']
73422
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
73423
73444
  VBadge: typeof import('vuetify/components')['VBadge']
73445
+ VBanner: typeof import('vuetify/components')['VBanner']
73446
+ VBannerActions: typeof import('vuetify/components')['VBannerActions']
73447
+ VBannerText: typeof import('vuetify/components')['VBannerText']
73448
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
73424
73449
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
73425
73450
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
73426
73451
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
73427
73452
  VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
73428
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
73429
- VBanner: typeof import('vuetify/components')['VBanner']
73430
- VBannerActions: typeof import('vuetify/components')['VBannerActions']
73431
- VBannerText: typeof import('vuetify/components')['VBannerText']
73432
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
73433
73453
  VBtn: typeof import('vuetify/components')['VBtn']
73454
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
73455
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
73456
+ VCarousel: typeof import('vuetify/components')['VCarousel']
73457
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
73434
73458
  VCard: typeof import('vuetify/components')['VCard']
73435
73459
  VCardActions: typeof import('vuetify/components')['VCardActions']
73436
73460
  VCardItem: typeof import('vuetify/components')['VCardItem']
73437
73461
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
73438
73462
  VCardText: typeof import('vuetify/components')['VCardText']
73439
73463
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
73440
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
73441
- VCarousel: typeof import('vuetify/components')['VCarousel']
73442
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
73464
+ VCode: typeof import('vuetify/components')['VCode']
73443
73465
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
73444
73466
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
73445
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
73446
73467
  VChip: typeof import('vuetify/components')['VChip']
73447
- VCode: typeof import('vuetify/components')['VCode']
73448
73468
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
73469
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
73449
73470
  VCounter: typeof import('vuetify/components')['VCounter']
73450
- VDatePicker: typeof import('vuetify/components')['VDatePicker']
73451
- VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
73452
- VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
73453
- VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
73454
- VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
73455
- VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
73456
73471
  VCombobox: typeof import('vuetify/components')['VCombobox']
73457
- VDialog: typeof import('vuetify/components')['VDialog']
73458
73472
  VDataTable: typeof import('vuetify/components')['VDataTable']
73459
73473
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
73460
73474
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -73462,7 +73476,14 @@ declare module '@vue/runtime-core' {
73462
73476
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
73463
73477
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
73464
73478
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
73479
+ VDatePicker: typeof import('vuetify/components')['VDatePicker']
73480
+ VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
73481
+ VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
73482
+ VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
73483
+ VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
73484
+ VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
73465
73485
  VDivider: typeof import('vuetify/components')['VDivider']
73486
+ VDialog: typeof import('vuetify/components')['VDialog']
73466
73487
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
73467
73488
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
73468
73489
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
@@ -73471,17 +73492,16 @@ declare module '@vue/runtime-core' {
73471
73492
  VField: typeof import('vuetify/components')['VField']
73472
73493
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
73473
73494
  VFab: typeof import('vuetify/components')['VFab']
73474
- VFooter: typeof import('vuetify/components')['VFooter']
73475
73495
  VFileInput: typeof import('vuetify/components')['VFileInput']
73476
- VImg: typeof import('vuetify/components')['VImg']
73496
+ VFooter: typeof import('vuetify/components')['VFooter']
73477
73497
  VIcon: typeof import('vuetify/components')['VIcon']
73478
73498
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
73479
73499
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
73480
73500
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
73481
73501
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
73482
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
73483
73502
  VInput: typeof import('vuetify/components')['VInput']
73484
- VLabel: typeof import('vuetify/components')['VLabel']
73503
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
73504
+ VImg: typeof import('vuetify/components')['VImg']
73485
73505
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
73486
73506
  VItem: typeof import('vuetify/components')['VItem']
73487
73507
  VKbd: typeof import('vuetify/components')['VKbd']
@@ -73494,43 +73514,44 @@ declare module '@vue/runtime-core' {
73494
73514
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
73495
73515
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
73496
73516
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
73517
+ VLabel: typeof import('vuetify/components')['VLabel']
73497
73518
  VMenu: typeof import('vuetify/components')['VMenu']
73498
- VMain: typeof import('vuetify/components')['VMain']
73499
- VMessages: typeof import('vuetify/components')['VMessages']
73500
73519
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
73520
+ VMessages: typeof import('vuetify/components')['VMessages']
73521
+ VMain: typeof import('vuetify/components')['VMain']
73522
+ VOverlay: typeof import('vuetify/components')['VOverlay']
73501
73523
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
73502
73524
  VPagination: typeof import('vuetify/components')['VPagination']
73503
- VOverlay: typeof import('vuetify/components')['VOverlay']
73504
73525
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
73505
73526
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
73506
- VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
73507
73527
  VRating: typeof import('vuetify/components')['VRating']
73508
73528
  VSelect: typeof import('vuetify/components')['VSelect']
73509
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
73529
+ VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
73510
73530
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
73511
- VSheet: typeof import('vuetify/components')['VSheet']
73512
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
73513
73531
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
73514
73532
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
73515
73533
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
73534
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
73535
+ VSheet: typeof import('vuetify/components')['VSheet']
73536
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
73537
+ VSlider: typeof import('vuetify/components')['VSlider']
73516
73538
  VStepper: typeof import('vuetify/components')['VStepper']
73517
73539
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
73518
73540
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
73519
73541
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
73520
73542
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
73521
73543
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
73522
- VSlider: typeof import('vuetify/components')['VSlider']
73523
73544
  VSwitch: typeof import('vuetify/components')['VSwitch']
73545
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
73546
+ VTable: typeof import('vuetify/components')['VTable']
73524
73547
  VTab: typeof import('vuetify/components')['VTab']
73525
73548
  VTabs: typeof import('vuetify/components')['VTabs']
73526
73549
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
73527
73550
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
73528
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
73529
- VTable: typeof import('vuetify/components')['VTable']
73530
- VTextarea: typeof import('vuetify/components')['VTextarea']
73531
- VTextField: typeof import('vuetify/components')['VTextField']
73532
73551
  VTimeline: typeof import('vuetify/components')['VTimeline']
73533
73552
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
73553
+ VTextarea: typeof import('vuetify/components')['VTextarea']
73554
+ VTextField: typeof import('vuetify/components')['VTextField']
73534
73555
  VToolbar: typeof import('vuetify/components')['VToolbar']
73535
73556
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
73536
73557
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
@@ -73540,26 +73561,26 @@ declare module '@vue/runtime-core' {
73540
73561
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
73541
73562
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
73542
73563
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
73543
- VForm: typeof import('vuetify/components')['VForm']
73544
- VHover: typeof import('vuetify/components')['VHover']
73545
73564
  VContainer: typeof import('vuetify/components')['VContainer']
73546
73565
  VCol: typeof import('vuetify/components')['VCol']
73547
73566
  VRow: typeof import('vuetify/components')['VRow']
73548
73567
  VSpacer: typeof import('vuetify/components')['VSpacer']
73568
+ VForm: typeof import('vuetify/components')['VForm']
73569
+ VHover: typeof import('vuetify/components')['VHover']
73549
73570
  VLayout: typeof import('vuetify/components')['VLayout']
73550
73571
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
73551
73572
  VLazy: typeof import('vuetify/components')['VLazy']
73552
73573
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
73553
73574
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
73554
- VParallax: typeof import('vuetify/components')['VParallax']
73555
73575
  VRadio: typeof import('vuetify/components')['VRadio']
73576
+ VParallax: typeof import('vuetify/components')['VParallax']
73556
73577
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
73557
73578
  VResponsive: typeof import('vuetify/components')['VResponsive']
73558
73579
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
73559
73580
  VSparkline: typeof import('vuetify/components')['VSparkline']
73560
73581
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
73561
- VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
73562
73582
  VValidation: typeof import('vuetify/components')['VValidation']
73583
+ VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
73563
73584
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
73564
73585
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
73565
73586
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -73582,17 +73603,20 @@ declare module '@vue/runtime-core' {
73582
73603
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
73583
73604
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
73584
73605
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
73606
+ VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
73585
73607
  VPicker: typeof import('vuetify/labs/components')['VPicker']
73586
73608
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
73587
- VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
73609
+ VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
73610
+ VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
73611
+ VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
73588
73612
  VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
73589
73613
  VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
73590
73614
  VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
73591
73615
  VTreeview: typeof import('vuetify/labs/components')['VTreeview']
73592
73616
  VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
73593
73617
  VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
73594
- VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
73595
73618
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
73619
+ VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
73596
73620
  VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
73597
73621
  }
73598
73622
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.4-master.2024-05-10
2
+ * Vuetify v3.6.5-master.2024-05-12
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -4573,6 +4573,12 @@ function useGroupItem(props, injectKey) {
4573
4573
  const isSelected = computed(() => {
4574
4574
  return group.isSelected(id);
4575
4575
  });
4576
+ const isFirst = computed(() => {
4577
+ return group.items.value[0].id === id;
4578
+ });
4579
+ const isLast = computed(() => {
4580
+ return group.items.value[group.items.value.length - 1].id === id;
4581
+ });
4576
4582
  const selectedClass = computed(() => isSelected.value && [group.selectedClass.value, props.selectedClass]);
4577
4583
  watch(isSelected, value => {
4578
4584
  vm.emit('group:selected', {
@@ -4584,6 +4590,8 @@ function useGroupItem(props, injectKey) {
4584
4590
  return {
4585
4591
  id,
4586
4592
  isSelected,
4593
+ isFirst,
4594
+ isLast,
4587
4595
  toggle: () => group.select(id, !isSelected.value),
4588
4596
  select: value => group.select(id, value),
4589
4597
  selectedClass,
@@ -22604,7 +22612,9 @@ const VExpansionPanel = genericComponent()({
22604
22612
  }), slots.default?.()]
22605
22613
  });
22606
22614
  });
22607
- return {};
22615
+ return {
22616
+ groupItem
22617
+ };
22608
22618
  }
22609
22619
  });
22610
22620
 
@@ -22633,7 +22643,10 @@ const VExpansionPanels = genericComponent()({
22633
22643
  let {
22634
22644
  slots
22635
22645
  } = _ref;
22636
- useGroup(props, VExpansionPanelSymbol);
22646
+ const {
22647
+ next,
22648
+ prev
22649
+ } = useGroup(props, VExpansionPanelSymbol);
22637
22650
  const {
22638
22651
  themeClasses
22639
22652
  } = provideTheme(props);
@@ -22660,8 +22673,16 @@ const VExpansionPanels = genericComponent()({
22660
22673
  'v-expansion-panels--tile': props.tile
22661
22674
  }, themeClasses.value, variantClass.value, props.class],
22662
22675
  "style": props.style
22663
- }, slots));
22664
- return {};
22676
+ }, {
22677
+ default: () => [slots.default?.({
22678
+ prev,
22679
+ next
22680
+ })]
22681
+ }));
22682
+ return {
22683
+ next,
22684
+ prev
22685
+ };
22665
22686
  }
22666
22687
  });
22667
22688
 
@@ -26024,7 +26045,7 @@ const VStepperHeader = createSimpleFunctional('v-stepper-header');
26024
26045
 
26025
26046
  // Types
26026
26047
 
26027
- const makeVStepperItemProps = propsFactory({
26048
+ const makeStepperItemProps = propsFactory({
26028
26049
  color: String,
26029
26050
  title: String,
26030
26051
  subtitle: String,
@@ -26051,7 +26072,10 @@ const makeVStepperItemProps = propsFactory({
26051
26072
  rules: {
26052
26073
  type: Array,
26053
26074
  default: () => []
26054
- },
26075
+ }
26076
+ }, 'StepperItem');
26077
+ const makeVStepperItemProps = propsFactory({
26078
+ ...makeStepperItemProps(),
26055
26079
  ...makeGroupItemProps()
26056
26080
  }, 'VStepperItem');
26057
26081
  const VStepperItem = genericComponent()({
@@ -26202,7 +26226,7 @@ const VStepperWindowItem = genericComponent()({
26202
26226
  // Types
26203
26227
 
26204
26228
  const VStepperSymbol = Symbol.for('vuetify:v-stepper');
26205
- const makeVStepperProps = propsFactory({
26229
+ const makeStepperProps = propsFactory({
26206
26230
  altLabels: Boolean,
26207
26231
  bgColor: String,
26208
26232
  editable: Boolean,
@@ -26221,7 +26245,10 @@ const makeVStepperProps = propsFactory({
26221
26245
  },
26222
26246
  mobile: Boolean,
26223
26247
  nonLinear: Boolean,
26224
- flat: Boolean,
26248
+ flat: Boolean
26249
+ }, 'Stepper');
26250
+ const makeVStepperProps = propsFactory({
26251
+ ...makeStepperProps(),
26225
26252
  ...makeGroupProps({
26226
26253
  mandatory: 'force',
26227
26254
  selectedClass: 'v-stepper-item--selected'
@@ -27967,7 +27994,7 @@ function createVuetify$1() {
27967
27994
  goTo
27968
27995
  };
27969
27996
  }
27970
- const version$1 = "3.6.4-master.2024-05-10";
27997
+ const version$1 = "3.6.5-master.2024-05-12";
27971
27998
  createVuetify$1.version = version$1;
27972
27999
 
27973
28000
  // Vue's inject() can only be used in setup
@@ -27992,7 +28019,7 @@ const createVuetify = function () {
27992
28019
  ...options
27993
28020
  });
27994
28021
  };
27995
- const version = "3.6.4-master.2024-05-10";
28022
+ const version = "3.6.5-master.2024-05-12";
27996
28023
  createVuetify.version = version;
27997
28024
 
27998
28025
  export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };