vuetify 3.9.6 → 3.9.7

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 (75) hide show
  1. package/dist/json/attributes.json +2761 -2761
  2. package/dist/json/importMap-labs.json +24 -24
  3. package/dist/json/importMap.json +206 -206
  4. package/dist/json/web-types.json +5372 -5295
  5. package/dist/vuetify-labs.cjs +51 -52
  6. package/dist/vuetify-labs.css +5946 -5832
  7. package/dist/vuetify-labs.d.ts +168 -94
  8. package/dist/vuetify-labs.esm.js +51 -52
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +51 -52
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.cjs +26 -22
  13. package/dist/vuetify.cjs.map +1 -1
  14. package/dist/vuetify.css +1937 -1823
  15. package/dist/vuetify.d.ts +91 -91
  16. package/dist/vuetify.esm.js +26 -22
  17. package/dist/vuetify.esm.js.map +1 -1
  18. package/dist/vuetify.js +26 -22
  19. package/dist/vuetify.js.map +1 -1
  20. package/dist/vuetify.min.css +2 -2
  21. package/dist/vuetify.min.js +35 -32
  22. package/dist/vuetify.min.js.map +1 -1
  23. package/lib/components/VAlert/VAlert.css +12 -0
  24. package/lib/components/VAlert/VAlert.sass +13 -0
  25. package/lib/components/VAutocomplete/VAutocomplete.css +2 -1
  26. package/lib/components/VAutocomplete/VAutocomplete.sass +3 -2
  27. package/lib/components/VBtn/VBtn.sass +1 -4
  28. package/lib/components/VCard/VCard.css +6 -0
  29. package/lib/components/VCard/VCard.sass +5 -0
  30. package/lib/components/VChip/VChip.css +6 -0
  31. package/lib/components/VChip/VChip.sass +5 -0
  32. package/lib/components/VChipGroup/VChipGroup.css +25 -0
  33. package/lib/components/VChipGroup/VChipGroup.sass +23 -0
  34. package/lib/components/VCombobox/VCombobox.css +2 -1
  35. package/lib/components/VCombobox/VCombobox.sass +3 -2
  36. package/lib/components/VList/VListItem.css +30 -0
  37. package/lib/components/VList/VListItem.d.ts +3 -3
  38. package/lib/components/VList/VListItem.sass +29 -0
  39. package/lib/components/VOtpInput/VOtpInput.js +1 -2
  40. package/lib/components/VOtpInput/VOtpInput.js.map +1 -1
  41. package/lib/components/VProgressLinear/VProgressLinear.css +3 -3
  42. package/lib/components/VProgressLinear/VProgressLinear.js +5 -6
  43. package/lib/components/VProgressLinear/VProgressLinear.js.map +1 -1
  44. package/lib/components/VProgressLinear/VProgressLinear.sass +3 -3
  45. package/lib/components/VSelect/VSelect.css +2 -1
  46. package/lib/components/VSelect/VSelect.sass +3 -2
  47. package/lib/components/VSlideGroup/VSlideGroup.js +5 -4
  48. package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
  49. package/lib/components/VSnackbar/VSnackbar.css +5 -0
  50. package/lib/components/VSnackbar/VSnackbar.sass +3 -0
  51. package/lib/components/VTimeline/VTimeline.css +22 -0
  52. package/lib/components/VTimeline/VTimeline.sass +12 -0
  53. package/lib/components/VTreeview/VTreeviewItem.css +13 -8
  54. package/lib/components/VTreeview/VTreeviewItem.d.ts +9 -9
  55. package/lib/components/VTreeview/VTreeviewItem.sass +12 -8
  56. package/lib/composables/filter.js +3 -1
  57. package/lib/composables/filter.js.map +1 -1
  58. package/lib/composables/nested/nested.d.ts +1 -1
  59. package/lib/composables/nested/nested.js +5 -2
  60. package/lib/composables/nested/nested.js.map +1 -1
  61. package/lib/composables/rounded.js +3 -3
  62. package/lib/composables/rounded.js.map +1 -1
  63. package/lib/directives/touch/index.js +2 -2
  64. package/lib/directives/touch/index.js.map +1 -1
  65. package/lib/entry-bundler.js +1 -1
  66. package/lib/framework.d.ts +79 -79
  67. package/lib/framework.js +1 -1
  68. package/lib/labs/VDateInput/VDateInput.d.ts +78 -3
  69. package/lib/labs/VDateInput/VDateInput.js +3 -1
  70. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  71. package/lib/labs/VVideo/VVideo.css +4 -4
  72. package/lib/labs/VVideo/VVideo.js +24 -33
  73. package/lib/labs/VVideo/VVideo.js.map +1 -1
  74. package/lib/labs/VVideo/VVideo.sass +4 -4
  75. package/package.json +2 -2
package/dist/vuetify.d.ts CHANGED
@@ -6688,7 +6688,7 @@ declare const VListItem: {
6688
6688
  openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
6689
6689
  getPath: (id: unknown) => unknown[];
6690
6690
  };
6691
- id: vue.ComputedRef<{}>;
6691
+ id: vue.ComputedRef<{} | null>;
6692
6692
  link: UseLink;
6693
6693
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
6694
6694
  click: (e: MouseEvent | KeyboardEvent) => true;
@@ -6824,7 +6824,7 @@ declare const VListItem: {
6824
6824
  openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
6825
6825
  getPath: (id: unknown) => unknown[];
6826
6826
  };
6827
- id: vue.ComputedRef<{}>;
6827
+ id: vue.ComputedRef<{} | null>;
6828
6828
  link: UseLink;
6829
6829
  }, {}, {}, {}, {
6830
6830
  replace: boolean;
@@ -6949,7 +6949,7 @@ declare const VListItem: {
6949
6949
  openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
6950
6950
  getPath: (id: unknown) => unknown[];
6951
6951
  };
6952
- id: vue.ComputedRef<{}>;
6952
+ id: vue.ComputedRef<{} | null>;
6953
6953
  link: UseLink;
6954
6954
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
6955
6955
  click: (e: MouseEvent | KeyboardEvent) => true;
@@ -90898,7 +90898,7 @@ declare const VTreeviewItem: {
90898
90898
  openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
90899
90899
  getPath: (id: unknown) => unknown[];
90900
90900
  };
90901
- id: vue.ComputedRef<{}>;
90901
+ id: vue.ComputedRef<{} | null>;
90902
90902
  link: UseLink;
90903
90903
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
90904
90904
  click: (e: MouseEvent | KeyboardEvent) => true;
@@ -91067,7 +91067,7 @@ declare const VTreeviewItem: {
91067
91067
  openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
91068
91068
  getPath: (id: unknown) => unknown[];
91069
91069
  };
91070
- id: vue.ComputedRef<{}>;
91070
+ id: vue.ComputedRef<{} | null>;
91071
91071
  link: UseLink;
91072
91072
  }> & {} & vue.ComponentCustomProperties & {}, "height" | "width" | "border" | "color" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "value" | "class" | "theme" | "to" | "lines" | "onClick" | "onClickOnce" | "$children" | "href" | "elevation" | "v-slots" | "v-slot:default" | keyof vue.VNodeProps | "baseColor" | "activeColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "activeClass" | "appendAvatar" | "prependAvatar" | ("replace" | "link" | "variant" | "exact" | "active" | "nav" | "style" | "title" | "disabled" | "tag" | "density" | "rounded" | "tile" | "slim" | "ripple" | "subtitle") | "v-slot:subtitle">, `$${any}`> & {
91073
91073
  _allExposed: {
@@ -91099,7 +91099,7 @@ declare const VTreeviewItem: {
91099
91099
  openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
91100
91100
  getPath: (id: unknown) => unknown[];
91101
91101
  };
91102
- id: vue.ComputedRef<{}>;
91102
+ id: vue.ComputedRef<{} | null>;
91103
91103
  link: UseLink;
91104
91104
  } | {};
91105
91105
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
@@ -91419,7 +91419,7 @@ declare const VTreeviewItem: {
91419
91419
  openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
91420
91420
  getPath: (id: unknown) => unknown[];
91421
91421
  };
91422
- id: vue.ComputedRef<{}>;
91422
+ id: vue.ComputedRef<{} | null>;
91423
91423
  link: UseLink;
91424
91424
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
91425
91425
  click: (e: MouseEvent | KeyboardEvent) => true;
@@ -91588,7 +91588,7 @@ declare const VTreeviewItem: {
91588
91588
  openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
91589
91589
  getPath: (id: unknown) => unknown[];
91590
91590
  };
91591
- id: vue.ComputedRef<{}>;
91591
+ id: vue.ComputedRef<{} | null>;
91592
91592
  link: UseLink;
91593
91593
  }> & {} & vue.ComponentCustomProperties & {}, "height" | "width" | "border" | "color" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "value" | "class" | "theme" | "to" | "lines" | "onClick" | "onClickOnce" | "$children" | "href" | "elevation" | "v-slots" | "v-slot:default" | keyof vue.VNodeProps | "baseColor" | "activeColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "activeClass" | "appendAvatar" | "prependAvatar" | ("replace" | "link" | "variant" | "exact" | "active" | "nav" | "style" | "title" | "disabled" | "tag" | "density" | "rounded" | "tile" | "slim" | "ripple" | "subtitle") | "v-slot:subtitle">, `$${any}`> & {
91594
91594
  _allExposed: {
@@ -91620,7 +91620,7 @@ declare const VTreeviewItem: {
91620
91620
  openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
91621
91621
  getPath: (id: unknown) => unknown[];
91622
91622
  };
91623
- id: vue.ComputedRef<{}>;
91623
+ id: vue.ComputedRef<{} | null>;
91624
91624
  link: UseLink;
91625
91625
  } | {};
91626
91626
  }, {}, {}, {}, {
@@ -91929,7 +91929,7 @@ declare const VTreeviewItem: {
91929
91929
  openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
91930
91930
  getPath: (id: unknown) => unknown[];
91931
91931
  };
91932
- id: vue.ComputedRef<{}>;
91932
+ id: vue.ComputedRef<{} | null>;
91933
91933
  link: UseLink;
91934
91934
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
91935
91935
  click: (e: MouseEvent | KeyboardEvent) => true;
@@ -92098,7 +92098,7 @@ declare const VTreeviewItem: {
92098
92098
  openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
92099
92099
  getPath: (id: unknown) => unknown[];
92100
92100
  };
92101
- id: vue.ComputedRef<{}>;
92101
+ id: vue.ComputedRef<{} | null>;
92102
92102
  link: UseLink;
92103
92103
  }> & {} & vue.ComponentCustomProperties & {}, "height" | "width" | "border" | "color" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "value" | "class" | "theme" | "to" | "lines" | "onClick" | "onClickOnce" | "$children" | "href" | "elevation" | "v-slots" | "v-slot:default" | keyof vue.VNodeProps | "baseColor" | "activeColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "activeClass" | "appendAvatar" | "prependAvatar" | ("replace" | "link" | "variant" | "exact" | "active" | "nav" | "style" | "title" | "disabled" | "tag" | "density" | "rounded" | "tile" | "slim" | "ripple" | "subtitle") | "v-slot:subtitle">, `$${any}`> & {
92104
92104
  _allExposed: {
@@ -92130,7 +92130,7 @@ declare const VTreeviewItem: {
92130
92130
  openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
92131
92131
  getPath: (id: unknown) => unknown[];
92132
92132
  };
92133
- id: vue.ComputedRef<{}>;
92133
+ id: vue.ComputedRef<{} | null>;
92134
92134
  link: UseLink;
92135
92135
  } | {};
92136
92136
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
@@ -95363,44 +95363,40 @@ declare module 'vue' {
95363
95363
  $children?: VNodeChild
95364
95364
  }
95365
95365
  export interface GlobalComponents {
95366
+ VAlert: VAlert
95367
+ VAlertTitle: VAlertTitle
95366
95368
  VApp: VApp
95369
+ VAvatar: VAvatar
95367
95370
  VAppBar: VAppBar
95368
95371
  VAppBarNavIcon: VAppBarNavIcon
95369
95372
  VAppBarTitle: VAppBarTitle
95370
- VAlert: VAlert
95371
- VAlertTitle: VAlertTitle
95372
- VAvatar: VAvatar
95373
95373
  VBadge: VBadge
95374
- VAutocomplete: VAutocomplete
95375
- VBanner: VBanner
95376
- VBannerActions: VBannerActions
95377
- VBannerText: VBannerText
95374
+ VBtn: VBtn
95378
95375
  VBottomNavigation: VBottomNavigation
95379
- VBottomSheet: VBottomSheet
95376
+ VAutocomplete: VAutocomplete
95377
+ VBtnGroup: VBtnGroup
95380
95378
  VBreadcrumbs: VBreadcrumbs
95381
95379
  VBreadcrumbsItem: VBreadcrumbsItem
95382
95380
  VBreadcrumbsDivider: VBreadcrumbsDivider
95383
- VCarousel: VCarousel
95384
- VCarouselItem: VCarouselItem
95385
- VBtnGroup: VBtnGroup
95381
+ VBanner: VBanner
95382
+ VBannerActions: VBannerActions
95383
+ VBannerText: VBannerText
95386
95384
  VBtnToggle: VBtnToggle
95387
- VBtn: VBtn
95388
95385
  VCheckbox: VCheckbox
95389
95386
  VCheckboxBtn: VCheckboxBtn
95387
+ VCard: VCard
95388
+ VCardActions: VCardActions
95389
+ VCardItem: VCardItem
95390
+ VCardSubtitle: VCardSubtitle
95391
+ VCardText: VCardText
95392
+ VCardTitle: VCardTitle
95390
95393
  VChip: VChip
95391
95394
  VChipGroup: VChipGroup
95392
- VCode: VCode
95393
- VCombobox: VCombobox
95394
- VDataTable: VDataTable
95395
- VDataTableHeaders: VDataTableHeaders
95396
- VDataTableFooter: VDataTableFooter
95397
- VDataTableRows: VDataTableRows
95398
- VDataTableRow: VDataTableRow
95399
- VDataTableVirtual: VDataTableVirtual
95400
- VDataTableServer: VDataTableServer
95401
- VCounter: VCounter
95402
95395
  VColorPicker: VColorPicker
95403
- VDialog: VDialog
95396
+ VCode: VCode
95397
+ VCarousel: VCarousel
95398
+ VCarouselItem: VCarouselItem
95399
+ VBottomSheet: VBottomSheet
95404
95400
  VDatePicker: VDatePicker
95405
95401
  VDatePickerControls: VDatePickerControls
95406
95402
  VDatePickerHeader: VDatePickerHeader
@@ -95408,28 +95404,32 @@ declare module 'vue' {
95408
95404
  VDatePickerMonths: VDatePickerMonths
95409
95405
  VDatePickerYears: VDatePickerYears
95410
95406
  VDivider: VDivider
95407
+ VDialog: VDialog
95408
+ VCounter: VCounter
95409
+ VFab: VFab
95410
+ VFileInput: VFileInput
95411
95411
  VEmptyState: VEmptyState
95412
95412
  VExpansionPanels: VExpansionPanels
95413
95413
  VExpansionPanel: VExpansionPanel
95414
95414
  VExpansionPanelText: VExpansionPanelText
95415
95415
  VExpansionPanelTitle: VExpansionPanelTitle
95416
- VFab: VFab
95417
95416
  VField: VField
95418
95417
  VFieldLabel: VFieldLabel
95419
- VFileInput: VFileInput
95420
95418
  VFooter: VFooter
95419
+ VImg: VImg
95420
+ VInput: VInput
95421
+ VInfiniteScroll: VInfiniteScroll
95422
+ VKbd: VKbd
95421
95423
  VIcon: VIcon
95422
95424
  VComponentIcon: VComponentIcon
95423
95425
  VSvgIcon: VSvgIcon
95424
95426
  VLigatureIcon: VLigatureIcon
95425
95427
  VClassIcon: VClassIcon
95426
- VInfiniteScroll: VInfiniteScroll
95427
- VInput: VInput
95428
- VImg: VImg
95428
+ VLabel: VLabel
95429
95429
  VItemGroup: VItemGroup
95430
95430
  VItem: VItem
95431
- VLabel: VLabel
95432
- VKbd: VKbd
95431
+ VMain: VMain
95432
+ VMessages: VMessages
95433
95433
  VList: VList
95434
95434
  VListGroup: VListGroup
95435
95435
  VListImg: VListImg
@@ -95439,37 +95439,40 @@ declare module 'vue' {
95439
95439
  VListItemSubtitle: VListItemSubtitle
95440
95440
  VListItemTitle: VListItemTitle
95441
95441
  VListSubheader: VListSubheader
95442
- VMain: VMain
95442
+ VNavigationDrawer: VNavigationDrawer
95443
95443
  VMenu: VMenu
95444
- VMessages: VMessages
95445
95444
  VNumberInput: VNumberInput
95446
- VOverlay: VOverlay
95447
95445
  VOtpInput: VOtpInput
95448
- VNavigationDrawer: VNavigationDrawer
95449
- VPagination: VPagination
95450
- VProgressCircular: VProgressCircular
95446
+ VOverlay: VOverlay
95451
95447
  VProgressLinear: VProgressLinear
95448
+ VPagination: VPagination
95452
95449
  VRadioGroup: VRadioGroup
95453
95450
  VRating: VRating
95454
- VSelect: VSelect
95455
- VSelectionControl: VSelectionControl
95456
- VSlider: VSlider
95457
95451
  VSelectionControlGroup: VSelectionControlGroup
95452
+ VSelect: VSelect
95458
95453
  VSlideGroup: VSlideGroup
95459
95454
  VSlideGroupItem: VSlideGroupItem
95460
- VSheet: VSheet
95455
+ VSlider: VSlider
95461
95456
  VSkeletonLoader: VSkeletonLoader
95457
+ VProgressCircular: VProgressCircular
95458
+ VSelectionControl: VSelectionControl
95459
+ VSheet: VSheet
95460
+ VSnackbar: VSnackbar
95461
+ VSwitch: VSwitch
95462
95462
  VStepper: VStepper
95463
95463
  VStepperActions: VStepperActions
95464
95464
  VStepperHeader: VStepperHeader
95465
95465
  VStepperItem: VStepperItem
95466
95466
  VStepperWindow: VStepperWindow
95467
95467
  VStepperWindowItem: VStepperWindowItem
95468
- VSwitch: VSwitch
95469
- VSnackbar: VSnackbar
95470
- VSystemBar: VSystemBar
95471
95468
  VTable: VTable
95472
- VTextarea: VTextarea
95469
+ VTab: VTab
95470
+ VTabs: VTabs
95471
+ VTabsWindow: VTabsWindow
95472
+ VTabsWindowItem: VTabsWindowItem
95473
+ VSystemBar: VSystemBar
95474
+ VTimeline: VTimeline
95475
+ VTimelineItem: VTimelineItem
95473
95476
  VTextField: VTextField
95474
95477
  VTimePicker: VTimePicker
95475
95478
  VTimePickerClock: VTimePickerClock
@@ -95477,43 +95480,37 @@ declare module 'vue' {
95477
95480
  VToolbar: VToolbar
95478
95481
  VToolbarTitle: VToolbarTitle
95479
95482
  VToolbarItems: VToolbarItems
95480
- VTimeline: VTimeline
95481
- VTimelineItem: VTimelineItem
95482
- VWindow: VWindow
95483
- VWindowItem: VWindowItem
95484
- VTooltip: VTooltip
95483
+ VTextarea: VTextarea
95485
95484
  VTreeview: VTreeview
95486
95485
  VTreeviewItem: VTreeviewItem
95487
95486
  VTreeviewGroup: VTreeviewGroup
95487
+ VTooltip: VTooltip
95488
+ VWindow: VWindow
95489
+ VWindowItem: VWindowItem
95490
+ VCombobox: VCombobox
95488
95491
  VConfirmEdit: VConfirmEdit
95489
95492
  VDataIterator: VDataIterator
95490
95493
  VDefaultsProvider: VDefaultsProvider
95491
95494
  VForm: VForm
95495
+ VContainer: VContainer
95496
+ VCol: VCol
95497
+ VRow: VRow
95498
+ VSpacer: VSpacer
95492
95499
  VHover: VHover
95493
95500
  VLayout: VLayout
95494
95501
  VLayoutItem: VLayoutItem
95495
- VLocaleProvider: VLocaleProvider
95496
95502
  VLazy: VLazy
95503
+ VLocaleProvider: VLocaleProvider
95497
95504
  VNoSsr: VNoSsr
95498
- VParallax: VParallax
95499
95505
  VRangeSlider: VRangeSlider
95500
- VRadio: VRadio
95501
95506
  VResponsive: VResponsive
95507
+ VRadio: VRadio
95502
95508
  VSnackbarQueue: VSnackbarQueue
95503
95509
  VSparkline: VSparkline
95504
- VThemeProvider: VThemeProvider
95505
95510
  VSpeedDial: VSpeedDial
95511
+ VThemeProvider: VThemeProvider
95512
+ VValidation: VValidation
95506
95513
  VVirtualScroll: VVirtualScroll
95507
- VCard: VCard
95508
- VCardActions: VCardActions
95509
- VCardItem: VCardItem
95510
- VCardSubtitle: VCardSubtitle
95511
- VCardText: VCardText
95512
- VCardTitle: VCardTitle
95513
- VContainer: VContainer
95514
- VCol: VCol
95515
- VRow: VRow
95516
- VSpacer: VSpacer
95517
95514
  VFabTransition: VFabTransition
95518
95515
  VDialogBottomTransition: VDialogBottomTransition
95519
95516
  VDialogTopTransition: VDialogTopTransition
@@ -95530,11 +95527,14 @@ declare module 'vue' {
95530
95527
  VExpandTransition: VExpandTransition
95531
95528
  VExpandXTransition: VExpandXTransition
95532
95529
  VDialogTransition: VDialogTransition
95533
- VValidation: VValidation
95534
- VTab: VTab
95535
- VTabs: VTabs
95536
- VTabsWindow: VTabsWindow
95537
- VTabsWindowItem: VTabsWindowItem
95530
+ VDataTable: VDataTable
95531
+ VDataTableHeaders: VDataTableHeaders
95532
+ VDataTableFooter: VDataTableFooter
95533
+ VDataTableRows: VDataTableRows
95534
+ VDataTableRow: VDataTableRow
95535
+ VDataTableVirtual: VDataTableVirtual
95536
+ VDataTableServer: VDataTableServer
95537
+ VParallax: VParallax
95538
95538
  VCalendar: VCalendar
95539
95539
  VCalendarDay: VCalendarDay
95540
95540
  VCalendarHeader: VCalendarHeader
@@ -95542,24 +95542,24 @@ declare module 'vue' {
95542
95542
  VCalendarIntervalEvent: VCalendarIntervalEvent
95543
95543
  VCalendarMonthDay: VCalendarMonthDay
95544
95544
  VColorInput: VColorInput
95545
- VFileUpload: VFileUpload
95546
- VFileUploadItem: VFileUploadItem
95545
+ VPicker: VPicker
95546
+ VPickerTitle: VPickerTitle
95547
95547
  VIconBtn: VIconBtn
95548
+ VHotkey: VHotkey
95548
95549
  VPie: VPie
95549
95550
  VPieSegment: VPieSegment
95550
95551
  VPieTooltip: VPieTooltip
95551
- VPicker: VPicker
95552
- VPickerTitle: VPickerTitle
95553
- VHotkey: VHotkey
95554
- VStepperVertical: VStepperVertical
95555
- VStepperVerticalItem: VStepperVerticalItem
95556
- VStepperVerticalActions: VStepperVerticalActions
95557
- VVideo: VVideo
95558
- VVideoControls: VVideoControls
95559
- VVideoVolume: VVideoVolume
95560
95552
  VDateInput: VDateInput
95561
95553
  VMaskInput: VMaskInput
95554
+ VFileUpload: VFileUpload
95555
+ VFileUploadItem: VFileUploadItem
95562
95556
  VPullToRefresh: VPullToRefresh
95557
+ VVideo: VVideo
95558
+ VVideoControls: VVideoControls
95559
+ VVideoVolume: VVideoVolume
95560
+ VStepperVertical: VStepperVertical
95561
+ VStepperVerticalItem: VStepperVerticalItem
95562
+ VStepperVerticalActions: VStepperVerticalActions
95563
95563
  }
95564
95564
  export interface GlobalDirectives {
95565
95565
  vClickOutside: typeof import('vuetify/directives')['ClickOutside']
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.9.6
2
+ * Vuetify v3.9.7
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -3965,14 +3965,14 @@ function useRounded(props) {
3965
3965
  const rounded = isRef(props) ? props.value : props.rounded;
3966
3966
  const tile = isRef(props) ? props.value : props.tile;
3967
3967
  const classes = [];
3968
- if (rounded === true || rounded === '') {
3968
+ if (tile || rounded === false) {
3969
+ classes.push('rounded-0');
3970
+ } else if (rounded === true || rounded === '') {
3969
3971
  classes.push(`${name}--rounded`);
3970
3972
  } else if (typeof rounded === 'string' || rounded === 0) {
3971
3973
  for (const value of String(rounded).split(' ')) {
3972
3974
  classes.push(`rounded-${value}`);
3973
3975
  }
3974
- } else if (tile || rounded === false) {
3975
- classes.push('rounded-0');
3976
3976
  }
3977
3977
  return classes;
3978
3978
  });
@@ -5604,7 +5604,6 @@ const VProgressLinear = genericComponent()({
5604
5604
  const normalizedValue = computed(() => clamp(parseFloat(progress.value) / max.value * 100, 0, 100));
5605
5605
  const isReversed = computed(() => isRtl.value !== props.reverse);
5606
5606
  const transition = computed(() => props.indeterminate ? 'fade-transition' : 'slide-x-transition');
5607
- const isForcedColorsModeActive = IN_BROWSER && window.matchMedia?.('(forced-colors: active)').matches;
5608
5607
  function handleClick(e) {
5609
5608
  if (!intersectionRef.value) return;
5610
5609
  const {
@@ -5653,13 +5652,13 @@ const VProgressLinear = genericComponent()({
5653
5652
  '--v-progress-linear-stream-to': convertToUnit(height.value * (isReversed.value ? 1 : -1))
5654
5653
  }
5655
5654
  }, null), createElementVNode("div", {
5656
- "class": normalizeClass(['v-progress-linear__background', !isForcedColorsModeActive ? backgroundColorClasses.value : undefined]),
5655
+ "class": normalizeClass(['v-progress-linear__background', backgroundColorClasses.value]),
5657
5656
  "style": normalizeStyle([backgroundColorStyles.value, {
5658
5657
  opacity: parseFloat(props.bgOpacity),
5659
5658
  width: props.stream ? 0 : undefined
5660
5659
  }])
5661
5660
  }, null), createElementVNode("div", {
5662
- "class": normalizeClass(['v-progress-linear__buffer', !isForcedColorsModeActive ? bufferColorClasses.value : undefined]),
5661
+ "class": normalizeClass(['v-progress-linear__buffer', bufferColorClasses.value]),
5663
5662
  "style": normalizeStyle([bufferColorStyles.value, {
5664
5663
  opacity: parseFloat(props.bufferOpacity),
5665
5664
  width: convertToUnit(normalizedBuffer.value, '%')
@@ -5668,7 +5667,7 @@ const VProgressLinear = genericComponent()({
5668
5667
  "name": transition.value
5669
5668
  }, {
5670
5669
  default: () => [!props.indeterminate ? createElementVNode("div", {
5671
- "class": normalizeClass(['v-progress-linear__determinate', !isForcedColorsModeActive ? barColorClasses.value : undefined]),
5670
+ "class": normalizeClass(['v-progress-linear__determinate', barColorClasses.value]),
5672
5671
  "style": normalizeStyle([barColorStyles.value, {
5673
5672
  width: convertToUnit(normalizedValue.value, '%')
5674
5673
  }])
@@ -5676,7 +5675,7 @@ const VProgressLinear = genericComponent()({
5676
5675
  "class": "v-progress-linear__indeterminate"
5677
5676
  }, [['long', 'short'].map(bar => createElementVNode("div", {
5678
5677
  "key": bar,
5679
- "class": normalizeClass(['v-progress-linear__indeterminate', bar, !isForcedColorsModeActive ? barColorClasses.value : undefined]),
5678
+ "class": normalizeClass(['v-progress-linear__indeterminate', bar, barColorClasses.value]),
5680
5679
  "style": normalizeStyle(barColorStyles.value)
5681
5680
  }, null))])]
5682
5681
  }), slots.default && createElementVNode("div", {
@@ -8448,6 +8447,7 @@ const VSlideGroup = genericComponent()({
8448
8447
  select: group.select,
8449
8448
  isSelected: group.isSelected
8450
8449
  }));
8450
+ const hasOverflowOrScroll = computed(() => isOverflowing.value || Math.abs(scrollOffset.value) > 0);
8451
8451
  const hasAffixes = computed(() => {
8452
8452
  switch (props.showArrows) {
8453
8453
  // Always show arrows on desktop & mobile
@@ -8461,17 +8461,17 @@ const VSlideGroup = genericComponent()({
8461
8461
  // Show arrows on mobile when overflowing.
8462
8462
  // This matches the default 2.2 behavior
8463
8463
  case true:
8464
- return isOverflowing.value || Math.abs(scrollOffset.value) > 0;
8464
+ return hasOverflowOrScroll.value;
8465
8465
 
8466
8466
  // Always show on mobile
8467
8467
  case 'mobile':
8468
- return mobile.value || isOverflowing.value || Math.abs(scrollOffset.value) > 0;
8468
+ return mobile.value || hasOverflowOrScroll.value;
8469
8469
 
8470
8470
  // https://material.io/components/tabs#scrollable-tabs
8471
8471
  // Always show arrows when
8472
8472
  // overflowed on desktop
8473
8473
  default:
8474
- return !mobile.value && (isOverflowing.value || Math.abs(scrollOffset.value) > 0);
8474
+ return !mobile.value && hasOverflowOrScroll.value;
8475
8475
  }
8476
8476
  });
8477
8477
  const hasPrev = computed(() => {
@@ -8479,7 +8479,7 @@ const VSlideGroup = genericComponent()({
8479
8479
  return Math.abs(scrollOffset.value) > 1;
8480
8480
  });
8481
8481
  const hasNext = computed(() => {
8482
- if (!containerRef.value) return false;
8482
+ if (!containerRef.value || !hasOverflowOrScroll.value) return false;
8483
8483
  const scrollSize = getScrollSize(isHorizontal.value, containerRef.el);
8484
8484
  const clientSize = getClientSize(isHorizontal.value, containerRef.el);
8485
8485
  const scrollSizeMax = scrollSize - clientSize;
@@ -9476,7 +9476,7 @@ const useNested = props => {
9476
9476
  function getPath(id) {
9477
9477
  const path = [];
9478
9478
  let parent = toRaw(id);
9479
- while (parent != null) {
9479
+ while (parent !== undefined) {
9480
9480
  path.unshift(parent);
9481
9481
  parent = parents.value.get(parent);
9482
9482
  }
@@ -9622,7 +9622,10 @@ const useNested = props => {
9622
9622
  const useNestedItem = (id, isDisabled, isGroup) => {
9623
9623
  const parent = inject$1(VNestedSymbol, emptyNested);
9624
9624
  const uidSymbol = Symbol('nested item');
9625
- const computedId = computed(() => toRaw(toValue(id)) ?? uidSymbol);
9625
+ const computedId = computed(() => {
9626
+ const idValue = toRaw(toValue(id));
9627
+ return idValue !== undefined ? idValue : uidSymbol;
9628
+ });
9626
9629
  const item = {
9627
9630
  ...parent,
9628
9631
  id: computedId,
@@ -13833,11 +13836,13 @@ function filterItems(items, query, options) {
13833
13836
  const defaultMatches = {};
13834
13837
  let match = -1;
13835
13838
  if ((query || customFiltersLength > 0) && !options?.noFilter) {
13839
+ let hasOnlyCustomFilters = false;
13836
13840
  if (typeof item === 'object') {
13837
13841
  if (item.type === 'divider' || item.type === 'subheader') {
13838
13842
  continue;
13839
13843
  }
13840
13844
  const filterKeys = keys || Object.keys(transformed);
13845
+ hasOnlyCustomFilters = filterKeys.length === customFiltersLength;
13841
13846
  for (const key of filterKeys) {
13842
13847
  const value = getPropertyFromItem(transformed, key);
13843
13848
  const keyFilter = options?.customKeyFilter?.[key];
@@ -13858,7 +13863,7 @@ function filterItems(items, query, options) {
13858
13863
  const customMatchesLength = Object.keys(customMatches).length;
13859
13864
  if (!defaultMatchesLength && !customMatchesLength) continue;
13860
13865
  if (options?.filterMode === 'union' && customMatchesLength !== customFiltersLength && !defaultMatchesLength) continue;
13861
- if (options?.filterMode === 'intersection' && (customMatchesLength !== customFiltersLength || !defaultMatchesLength)) continue;
13866
+ if (options?.filterMode === 'intersection' && (customMatchesLength !== customFiltersLength || !defaultMatchesLength && customFiltersLength > 0 && !hasOnlyCustomFilters)) continue;
13862
13867
  }
13863
13868
  array.push({
13864
13869
  index: i,
@@ -15532,7 +15537,7 @@ function mounted$3(el, binding) {
15532
15537
  };
15533
15538
  const uid = binding.instance?.$.uid; // TODO: use custom uid generator
15534
15539
 
15535
- if (!target || !uid) return;
15540
+ if (!target || uid === undefined) return;
15536
15541
  const handlers = createHandlers(binding.value);
15537
15542
  target._touchHandlers = target._touchHandlers ?? Object.create(null);
15538
15543
  target._touchHandlers[uid] = handlers;
@@ -15543,7 +15548,7 @@ function mounted$3(el, binding) {
15543
15548
  function unmounted$3(el, binding) {
15544
15549
  const target = binding.value?.parent ? el.parentElement : el;
15545
15550
  const uid = binding.instance?.$.uid;
15546
- if (!target?._touchHandlers || !uid) return;
15551
+ if (!target?._touchHandlers || uid === undefined) return;
15547
15552
  const handlers = target._touchHandlers[uid];
15548
15553
  keys(handlers).forEach(eventName => {
15549
15554
  target.removeEventListener(eventName, handlers[eventName]);
@@ -26671,7 +26676,7 @@ const VOtpInput = genericComponent()({
26671
26676
  const finalIndex = clipboardText.length - 1 === -1 ? index : clipboardText.length - 1;
26672
26677
  if (isValidNumber(clipboardText)) return;
26673
26678
  model.value = clipboardText.split('');
26674
- inputRef.value?.[finalIndex].focus();
26679
+ focusIndex.value = finalIndex;
26675
26680
  }
26676
26681
  function reset() {
26677
26682
  model.value = [];
@@ -26701,7 +26706,6 @@ const VOtpInput = genericComponent()({
26701
26706
  });
26702
26707
  watch(model, val => {
26703
26708
  if (val.length === length.value) {
26704
- focusIndex.value = length.value - 1;
26705
26709
  emit('finish', val.join(''));
26706
26710
  }
26707
26711
  }, {
@@ -31570,7 +31574,7 @@ function createVuetify$1() {
31570
31574
  };
31571
31575
  });
31572
31576
  }
31573
- const version$1 = "3.9.6";
31577
+ const version$1 = "3.9.7";
31574
31578
  createVuetify$1.version = version$1;
31575
31579
 
31576
31580
  // Vue's inject() can only be used in setup
@@ -31595,7 +31599,7 @@ const createVuetify = function () {
31595
31599
  ...options
31596
31600
  });
31597
31601
  };
31598
- const version = "3.9.6";
31602
+ const version = "3.9.7";
31599
31603
  createVuetify.version = version;
31600
31604
 
31601
31605
  export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useHotkey, useLayout, useLocale, useRtl, useTheme, version };