vuetify 3.7.6 → 3.7.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 (67) hide show
  1. package/dist/json/attributes.json +2156 -2156
  2. package/dist/json/importMap-labs.json +26 -26
  3. package/dist/json/importMap.json +174 -174
  4. package/dist/json/web-types.json +3809 -3789
  5. package/dist/vuetify-labs.css +2848 -2844
  6. package/dist/vuetify-labs.d.ts +129 -104
  7. package/dist/vuetify-labs.esm.js +64 -30
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +64 -30
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +4497 -4493
  12. package/dist/vuetify.d.ts +71 -74
  13. package/dist/vuetify.esm.js +42 -23
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +42 -23
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +930 -924
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/components/VAutocomplete/VAutocomplete.mjs +7 -4
  21. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  22. package/lib/components/VColorPicker/VColorPickerPreview.mjs +2 -2
  23. package/lib/components/VColorPicker/VColorPickerPreview.mjs.map +1 -1
  24. package/lib/components/VCombobox/VCombobox.mjs +7 -4
  25. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  26. package/lib/components/VDialog/VDialog.css +5 -2
  27. package/lib/components/VDialog/VDialog.sass +6 -2
  28. package/lib/components/VField/VField.mjs +1 -1
  29. package/lib/components/VField/VField.mjs.map +1 -1
  30. package/lib/components/VInput/VInput.css +1 -1
  31. package/lib/components/VInput/VInput.sass +1 -1
  32. package/lib/components/VProgressLinear/VProgressLinear.mjs +1 -1
  33. package/lib/components/VProgressLinear/VProgressLinear.mjs.map +1 -1
  34. package/lib/components/VSlideGroup/VSlideGroup.mjs +12 -2
  35. package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
  36. package/lib/components/VSparkline/VBarline.mjs +3 -2
  37. package/lib/components/VSparkline/VBarline.mjs.map +1 -1
  38. package/lib/components/VSparkline/VTrendline.mjs +2 -1
  39. package/lib/components/VSparkline/VTrendline.mjs.map +1 -1
  40. package/lib/components/VSparkline/index.d.mts +7 -10
  41. package/lib/components/VSparkline/util/line.mjs +1 -1
  42. package/lib/components/VSparkline/util/line.mjs.map +1 -1
  43. package/lib/components/VStepper/VStepperItem.mjs +1 -0
  44. package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
  45. package/lib/components/VTextarea/VTextarea.css +1 -0
  46. package/lib/components/VTextarea/VTextarea.sass +1 -0
  47. package/lib/components/index.d.mts +7 -10
  48. package/lib/composables/filter.mjs +3 -3
  49. package/lib/composables/filter.mjs.map +1 -1
  50. package/lib/composables/nested/nested.mjs +1 -1
  51. package/lib/composables/nested/nested.mjs.map +1 -1
  52. package/lib/entry-bundler.mjs +1 -1
  53. package/lib/framework.mjs +1 -1
  54. package/lib/index.d.mts +64 -64
  55. package/lib/labs/VDateInput/VDateInput.mjs +19 -5
  56. package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
  57. package/lib/labs/VDateInput/index.d.mts +176 -97
  58. package/lib/labs/VTreeview/VTreeviewChildren.mjs +1 -1
  59. package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
  60. package/lib/labs/VTreeview/VTreeviewItem.mjs +2 -2
  61. package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
  62. package/lib/labs/components.d.mts +227 -199
  63. package/lib/locale/az.mjs +28 -28
  64. package/lib/locale/az.mjs.map +1 -1
  65. package/lib/locale/nl.mjs +5 -5
  66. package/lib/locale/nl.mjs.map +1 -1
  67. package/package.json +2 -2
package/dist/vuetify.d.ts CHANGED
@@ -51180,7 +51180,7 @@ declare const VSnackbar: {
51180
51180
  }>>;
51181
51181
  type VSnackbar = InstanceType<typeof VSnackbar>;
51182
51182
 
51183
- type SparklineItem = number | {
51183
+ type SparklineItem = string | number | {
51184
51184
  value: number;
51185
51185
  };
51186
51186
 
@@ -51190,7 +51190,6 @@ declare const VSparkline: {
51190
51190
  type: "bar" | "trend";
51191
51191
  height: string | number;
51192
51192
  width: string | number;
51193
- smooth: boolean;
51194
51193
  padding: string | number;
51195
51194
  labels: SparklineItem[];
51196
51195
  modelValue: SparklineItem[];
@@ -51206,6 +51205,7 @@ declare const VSparkline: {
51206
51205
  } & {
51207
51206
  max?: string | number | undefined;
51208
51207
  id?: string | undefined;
51208
+ smooth?: string | number | boolean | undefined;
51209
51209
  min?: string | number | undefined;
51210
51210
  color?: string | undefined;
51211
51211
  autoDrawDuration?: string | number | undefined;
@@ -51235,7 +51235,6 @@ declare const VSparkline: {
51235
51235
  type: "bar" | "trend";
51236
51236
  height: string | number;
51237
51237
  width: string | number;
51238
- smooth: boolean;
51239
51238
  padding: string | number;
51240
51239
  labels: SparklineItem[];
51241
51240
  modelValue: SparklineItem[];
@@ -51251,6 +51250,7 @@ declare const VSparkline: {
51251
51250
  } & {
51252
51251
  max?: string | number | undefined;
51253
51252
  id?: string | undefined;
51253
+ smooth?: string | number | boolean | undefined;
51254
51254
  min?: string | number | undefined;
51255
51255
  color?: string | undefined;
51256
51256
  autoDrawDuration?: string | number | undefined;
@@ -51280,7 +51280,6 @@ declare const VSparkline: {
51280
51280
  type: "bar" | "trend";
51281
51281
  height: string | number;
51282
51282
  width: string | number;
51283
- smooth: boolean;
51284
51283
  padding: string | number;
51285
51284
  labels: SparklineItem[];
51286
51285
  modelValue: SparklineItem[];
@@ -51311,7 +51310,6 @@ declare const VSparkline: {
51311
51310
  type: "bar" | "trend";
51312
51311
  height: string | number;
51313
51312
  width: string | number;
51314
- smooth: boolean;
51315
51313
  padding: string | number;
51316
51314
  labels: SparklineItem[];
51317
51315
  modelValue: SparklineItem[];
@@ -51327,6 +51325,7 @@ declare const VSparkline: {
51327
51325
  } & {
51328
51326
  max?: string | number | undefined;
51329
51327
  id?: string | undefined;
51328
+ smooth?: string | number | boolean | undefined;
51330
51329
  min?: string | number | undefined;
51331
51330
  color?: string | undefined;
51332
51331
  autoDrawDuration?: string | number | undefined;
@@ -51356,7 +51355,6 @@ declare const VSparkline: {
51356
51355
  type: "bar" | "trend";
51357
51356
  height: string | number;
51358
51357
  width: string | number;
51359
- smooth: boolean;
51360
51358
  padding: string | number;
51361
51359
  labels: SparklineItem[];
51362
51360
  modelValue: SparklineItem[];
@@ -51378,7 +51376,6 @@ declare const VSparkline: {
51378
51376
  type: "bar" | "trend";
51379
51377
  height: string | number;
51380
51378
  width: string | number;
51381
- smooth: boolean;
51382
51379
  padding: string | number;
51383
51380
  labels: SparklineItem[];
51384
51381
  modelValue: SparklineItem[];
@@ -51394,6 +51391,7 @@ declare const VSparkline: {
51394
51391
  } & {
51395
51392
  max?: string | number | undefined;
51396
51393
  id?: string | undefined;
51394
+ smooth?: string | number | boolean | undefined;
51397
51395
  min?: string | number | undefined;
51398
51396
  color?: string | undefined;
51399
51397
  autoDrawDuration?: string | number | undefined;
@@ -51423,7 +51421,6 @@ declare const VSparkline: {
51423
51421
  type: "bar" | "trend";
51424
51422
  height: string | number;
51425
51423
  width: string | number;
51426
- smooth: boolean;
51427
51424
  padding: string | number;
51428
51425
  labels: SparklineItem[];
51429
51426
  modelValue: SparklineItem[];
@@ -51491,7 +51488,7 @@ declare const VSparkline: {
51491
51488
  default: number;
51492
51489
  };
51493
51490
  showLabels: BooleanConstructor;
51494
- smooth: BooleanConstructor;
51491
+ smooth: (StringConstructor | BooleanConstructor | NumberConstructor)[];
51495
51492
  width: {
51496
51493
  type: (StringConstructor | NumberConstructor)[];
51497
51494
  default: number;
@@ -51551,7 +51548,7 @@ declare const VSparkline: {
51551
51548
  default: number;
51552
51549
  };
51553
51550
  showLabels: BooleanConstructor;
51554
- smooth: BooleanConstructor;
51551
+ smooth: (StringConstructor | BooleanConstructor | NumberConstructor)[];
51555
51552
  width: {
51556
51553
  type: (StringConstructor | NumberConstructor)[];
51557
51554
  default: number;
@@ -67099,82 +67096,77 @@ declare module 'vue' {
67099
67096
  $children?: VNodeChild
67100
67097
  }
67101
67098
  export interface GlobalComponents {
67102
- VApp: typeof import('vuetify/components')['VApp']
67103
67099
  VAppBar: typeof import('vuetify/components')['VAppBar']
67104
67100
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
67105
67101
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
67102
+ VApp: typeof import('vuetify/components')['VApp']
67106
67103
  VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
67107
67104
  VAlert: typeof import('vuetify/components')['VAlert']
67108
67105
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
67109
- VBadge: typeof import('vuetify/components')['VBadge']
67110
- VAvatar: typeof import('vuetify/components')['VAvatar']
67111
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
67106
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
67112
67107
  VBanner: typeof import('vuetify/components')['VBanner']
67113
67108
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
67114
67109
  VBannerText: typeof import('vuetify/components')['VBannerText']
67115
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
67116
- VBtn: typeof import('vuetify/components')['VBtn']
67117
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
67118
67110
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
67119
67111
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
67120
67112
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
67121
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
67122
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
67123
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
67124
- VChip: typeof import('vuetify/components')['VChip']
67125
- VCarousel: typeof import('vuetify/components')['VCarousel']
67126
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
67127
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
67128
- VCode: typeof import('vuetify/components')['VCode']
67113
+ VAvatar: typeof import('vuetify/components')['VAvatar']
67114
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
67115
+ VBadge: typeof import('vuetify/components')['VBadge']
67116
+ VBtn: typeof import('vuetify/components')['VBtn']
67129
67117
  VCard: typeof import('vuetify/components')['VCard']
67130
67118
  VCardActions: typeof import('vuetify/components')['VCardActions']
67131
67119
  VCardItem: typeof import('vuetify/components')['VCardItem']
67132
67120
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
67133
67121
  VCardText: typeof import('vuetify/components')['VCardText']
67134
67122
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
67123
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
67124
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
67125
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
67126
+ VCarousel: typeof import('vuetify/components')['VCarousel']
67127
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
67128
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
67129
+ VChip: typeof import('vuetify/components')['VChip']
67130
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
67135
67131
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
67136
- VDataTable: typeof import('vuetify/components')['VDataTable']
67137
- VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
67138
- VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
67139
- VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
67140
- VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
67141
- VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
67142
- VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
67143
- VCombobox: typeof import('vuetify/components')['VCombobox']
67144
67132
  VCounter: typeof import('vuetify/components')['VCounter']
67133
+ VCode: typeof import('vuetify/components')['VCode']
67134
+ VCombobox: typeof import('vuetify/components')['VCombobox']
67145
67135
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
67146
67136
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
67147
67137
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
67148
67138
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
67149
67139
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
67150
67140
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
67141
+ VDataTable: typeof import('vuetify/components')['VDataTable']
67142
+ VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
67143
+ VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
67144
+ VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
67145
+ VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
67146
+ VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
67147
+ VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
67151
67148
  VDialog: typeof import('vuetify/components')['VDialog']
67152
67149
  VEmptyState: typeof import('vuetify/components')['VEmptyState']
67153
- VDivider: typeof import('vuetify/components')['VDivider']
67154
- VField: typeof import('vuetify/components')['VField']
67155
- VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
67156
- VFileInput: typeof import('vuetify/components')['VFileInput']
67157
- VFab: typeof import('vuetify/components')['VFab']
67158
67150
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
67159
67151
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
67160
67152
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
67161
67153
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
67162
- VImg: typeof import('vuetify/components')['VImg']
67154
+ VDivider: typeof import('vuetify/components')['VDivider']
67155
+ VFileInput: typeof import('vuetify/components')['VFileInput']
67163
67156
  VFooter: typeof import('vuetify/components')['VFooter']
67164
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
67165
- VLabel: typeof import('vuetify/components')['VLabel']
67166
- VInput: typeof import('vuetify/components')['VInput']
67157
+ VField: typeof import('vuetify/components')['VField']
67158
+ VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
67167
67159
  VIcon: typeof import('vuetify/components')['VIcon']
67168
67160
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
67169
67161
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
67170
67162
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
67171
67163
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
67172
- VKbd: typeof import('vuetify/components')['VKbd']
67173
- VMain: typeof import('vuetify/components')['VMain']
67164
+ VFab: typeof import('vuetify/components')['VFab']
67165
+ VLabel: typeof import('vuetify/components')['VLabel']
67166
+ VImg: typeof import('vuetify/components')['VImg']
67167
+ VInput: typeof import('vuetify/components')['VInput']
67174
67168
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
67175
67169
  VItem: typeof import('vuetify/components')['VItem']
67176
- VMessages: typeof import('vuetify/components')['VMessages']
67177
- VMenu: typeof import('vuetify/components')['VMenu']
67178
67170
  VList: typeof import('vuetify/components')['VList']
67179
67171
  VListGroup: typeof import('vuetify/components')['VListGroup']
67180
67172
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -67184,63 +67176,68 @@ declare module 'vue' {
67184
67176
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
67185
67177
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
67186
67178
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
67179
+ VKbd: typeof import('vuetify/components')['VKbd']
67180
+ VMain: typeof import('vuetify/components')['VMain']
67187
67181
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
67188
- VPagination: typeof import('vuetify/components')['VPagination']
67189
67182
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
67183
+ VMessages: typeof import('vuetify/components')['VMessages']
67184
+ VMenu: typeof import('vuetify/components')['VMenu']
67185
+ VOverlay: typeof import('vuetify/components')['VOverlay']
67190
67186
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
67191
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
67192
- VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
67187
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
67193
67188
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
67194
- VRating: typeof import('vuetify/components')['VRating']
67195
- VOverlay: typeof import('vuetify/components')['VOverlay']
67196
- VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
67189
+ VPagination: typeof import('vuetify/components')['VPagination']
67190
+ VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
67197
67191
  VSheet: typeof import('vuetify/components')['VSheet']
67192
+ VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
67193
+ VRating: typeof import('vuetify/components')['VRating']
67198
67194
  VSelect: typeof import('vuetify/components')['VSelect']
67195
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
67199
67196
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
67200
67197
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
67201
- VSlider: typeof import('vuetify/components')['VSlider']
67202
67198
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
67203
67199
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
67200
+ VSlider: typeof import('vuetify/components')['VSlider']
67201
+ VStepper: typeof import('vuetify/components')['VStepper']
67202
+ VStepperActions: typeof import('vuetify/components')['VStepperActions']
67203
+ VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
67204
+ VStepperItem: typeof import('vuetify/components')['VStepperItem']
67205
+ VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
67206
+ VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
67204
67207
  VSystemBar: typeof import('vuetify/components')['VSystemBar']
67205
- VSwitch: typeof import('vuetify/components')['VSwitch']
67206
67208
  VTab: typeof import('vuetify/components')['VTab']
67207
67209
  VTabs: typeof import('vuetify/components')['VTabs']
67208
67210
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
67209
67211
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
67212
+ VTable: typeof import('vuetify/components')['VTable']
67213
+ VSwitch: typeof import('vuetify/components')['VSwitch']
67210
67214
  VTextarea: typeof import('vuetify/components')['VTextarea']
67211
67215
  VTextField: typeof import('vuetify/components')['VTextField']
67212
- VStepper: typeof import('vuetify/components')['VStepper']
67213
- VStepperActions: typeof import('vuetify/components')['VStepperActions']
67214
- VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
67215
- VStepperItem: typeof import('vuetify/components')['VStepperItem']
67216
- VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
67217
- VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
67218
- VTimeline: typeof import('vuetify/components')['VTimeline']
67219
- VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
67216
+ VTooltip: typeof import('vuetify/components')['VTooltip']
67220
67217
  VToolbar: typeof import('vuetify/components')['VToolbar']
67221
67218
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
67222
67219
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
67223
- VTable: typeof import('vuetify/components')['VTable']
67224
67220
  VWindow: typeof import('vuetify/components')['VWindow']
67225
67221
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
67226
- VTooltip: typeof import('vuetify/components')['VTooltip']
67222
+ VTimeline: typeof import('vuetify/components')['VTimeline']
67223
+ VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
67227
67224
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
67228
- VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
67229
67225
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
67226
+ VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
67230
67227
  VForm: typeof import('vuetify/components')['VForm']
67231
- VHover: typeof import('vuetify/components')['VHover']
67232
67228
  VContainer: typeof import('vuetify/components')['VContainer']
67233
67229
  VCol: typeof import('vuetify/components')['VCol']
67234
67230
  VRow: typeof import('vuetify/components')['VRow']
67235
67231
  VSpacer: typeof import('vuetify/components')['VSpacer']
67232
+ VHover: typeof import('vuetify/components')['VHover']
67236
67233
  VLayout: typeof import('vuetify/components')['VLayout']
67237
67234
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
67238
67235
  VLazy: typeof import('vuetify/components')['VLazy']
67239
67236
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
67240
67237
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
67241
67238
  VParallax: typeof import('vuetify/components')['VParallax']
67242
- VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
67243
67239
  VRadio: typeof import('vuetify/components')['VRadio']
67240
+ VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
67244
67241
  VResponsive: typeof import('vuetify/components')['VResponsive']
67245
67242
  VSparkline: typeof import('vuetify/components')['VSparkline']
67246
67243
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
@@ -67269,22 +67266,22 @@ declare module 'vue' {
67269
67266
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
67270
67267
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
67271
67268
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
67272
- VPicker: typeof import('vuetify/labs/components')['VPicker']
67273
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
67274
67269
  VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
67275
67270
  VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
67276
- VTreeview: typeof import('vuetify/labs/components')['VTreeview']
67277
- VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
67278
- VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
67279
- VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
67280
67271
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
67281
67272
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
67282
67273
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
67274
+ VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
67275
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
67276
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
67283
67277
  VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
67284
67278
  VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
67285
67279
  VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
67280
+ VTreeview: typeof import('vuetify/labs/components')['VTreeview']
67281
+ VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
67282
+ VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
67286
67283
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
67287
- VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
67288
67284
  VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
67285
+ VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
67289
67286
  }
67290
67287
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.6
2
+ * Vuetify v3.7.7
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -5269,7 +5269,7 @@ const VProgressLinear = genericComponent()({
5269
5269
  "aria-hidden": props.active ? 'false' : 'true',
5270
5270
  "aria-valuemin": "0",
5271
5271
  "aria-valuemax": props.max,
5272
- "aria-valuenow": props.indeterminate ? undefined : normalizedValue.value,
5272
+ "aria-valuenow": props.indeterminate ? undefined : Math.min(parseFloat(progress.value), max.value),
5273
5273
  "onClick": props.clickable && handleClick
5274
5274
  }, {
5275
5275
  default: () => [props.stream && createVNode("div", {
@@ -7848,6 +7848,14 @@ const VSlideGroup = genericComponent()({
7848
7848
  toFocus('last');
7849
7849
  }
7850
7850
  }
7851
+ function getSiblingElement(el, location) {
7852
+ if (!el) return undefined;
7853
+ let sibling = el;
7854
+ do {
7855
+ sibling = sibling?.[location === 'next' ? 'nextElementSibling' : 'previousElementSibling'];
7856
+ } while (sibling?.hasAttribute('disabled'));
7857
+ return sibling;
7858
+ }
7851
7859
  function focus(location) {
7852
7860
  if (!contentRef.el) return;
7853
7861
  let el;
@@ -7855,15 +7863,17 @@ const VSlideGroup = genericComponent()({
7855
7863
  const focusable = focusableChildren(contentRef.el);
7856
7864
  el = focusable[0];
7857
7865
  } else if (location === 'next') {
7858
- el = contentRef.el.querySelector(':focus')?.nextElementSibling;
7866
+ el = getSiblingElement(contentRef.el.querySelector(':focus'), location);
7859
7867
  if (!el) return focus('first');
7860
7868
  } else if (location === 'prev') {
7861
- el = contentRef.el.querySelector(':focus')?.previousElementSibling;
7869
+ el = getSiblingElement(contentRef.el.querySelector(':focus'), location);
7862
7870
  if (!el) return focus('last');
7863
7871
  } else if (location === 'first') {
7864
7872
  el = contentRef.el.firstElementChild;
7873
+ if (el?.hasAttribute('disabled')) el = getSiblingElement(el, 'next');
7865
7874
  } else if (location === 'last') {
7866
7875
  el = contentRef.el.lastElementChild;
7876
+ if (el?.hasAttribute('disabled')) el = getSiblingElement(el, 'prev');
7867
7877
  }
7868
7878
  if (el) {
7869
7879
  el.focus({
@@ -8943,7 +8953,7 @@ const useNestedItem = (id, isGroup) => {
8943
8953
  isActivated: computed(() => parent.root.activated.value.has(toRaw(computedId.value))),
8944
8954
  select: (selected, e) => parent.root.select(computedId.value, selected, e),
8945
8955
  isSelected: computed(() => parent.root.selected.value.get(toRaw(computedId.value)) === 'on'),
8946
- isIndeterminate: computed(() => parent.root.selected.value.get(computedId.value) === 'indeterminate'),
8956
+ isIndeterminate: computed(() => parent.root.selected.value.get(toRaw(computedId.value)) === 'indeterminate'),
8947
8957
  isLeaf: computed(() => !parent.root.children.value.get(computedId.value)),
8948
8958
  isGroupActivator: parent.isGroupActivator
8949
8959
  };
@@ -11811,7 +11821,7 @@ const VField = genericComponent()({
11811
11821
  useRender(() => {
11812
11822
  const isOutlined = props.variant === 'outlined';
11813
11823
  const hasPrepend = !!(slots['prepend-inner'] || props.prependInnerIcon);
11814
- const hasClear = !!(props.clearable || slots.clear);
11824
+ const hasClear = !!(props.clearable || slots.clear) && !props.disabled;
11815
11825
  const hasAppend = !!(slots['append-inner'] || props.appendInnerIcon || hasClear);
11816
11826
  const label = () => slots.label ? slots.label({
11817
11827
  ...slotProps.value,
@@ -13093,8 +13103,8 @@ function filterItems(items, query, options) {
13093
13103
  return array;
13094
13104
  }
13095
13105
  function useFilter(props, items, query, options) {
13096
- const filteredItems = ref([]);
13097
- const filteredMatches = ref(new Map());
13106
+ const filteredItems = shallowRef([]);
13107
+ const filteredMatches = shallowRef(new Map());
13098
13108
  const transformedItems = computed(() => options?.transform ? unref(items).map(item => [item, options.transform(item)]) : unref(items));
13099
13109
  watchEffect(() => {
13100
13110
  const _query = typeof query === 'function' ? query() : unref(query);
@@ -13255,7 +13265,7 @@ const VAutocomplete = genericComponent()({
13255
13265
  menu.value = !menu.value;
13256
13266
  }
13257
13267
  function onListKeydown(e) {
13258
- if (checkPrintable(e)) {
13268
+ if (e.key !== ' ' && checkPrintable(e)) {
13259
13269
  vTextFieldRef.value?.focus();
13260
13270
  }
13261
13271
  }
@@ -13263,7 +13273,7 @@ const VAutocomplete = genericComponent()({
13263
13273
  if (form.isReadonly.value) return;
13264
13274
  const selectionStart = vTextFieldRef.value.selectionStart;
13265
13275
  const length = model.value.length;
13266
- if (selectionIndex.value > -1 || ['Enter', 'ArrowDown', 'ArrowUp'].includes(e.key)) {
13276
+ if (['Enter', 'ArrowDown', 'ArrowUp'].includes(e.key)) {
13267
13277
  e.preventDefault();
13268
13278
  }
13269
13279
  if (['Enter', 'ArrowDown'].includes(e.key)) {
@@ -13286,12 +13296,14 @@ const VAutocomplete = genericComponent()({
13286
13296
  if (['Backspace', 'Delete'].includes(e.key)) {
13287
13297
  if (!props.multiple && hasSelectionSlot.value && model.value.length > 0 && !search.value) return select(model.value[0], false);
13288
13298
  if (~selectionIndex.value) {
13299
+ e.preventDefault();
13289
13300
  const originalSelectionIndex = selectionIndex.value;
13290
13301
  select(model.value[selectionIndex.value], false);
13291
13302
  selectionIndex.value = originalSelectionIndex >= length - 1 ? length - 2 : originalSelectionIndex;
13292
13303
  } else if (e.key === 'Backspace' && !search.value) {
13293
13304
  selectionIndex.value = length - 1;
13294
13305
  }
13306
+ return;
13295
13307
  }
13296
13308
  if (!props.multiple) return;
13297
13309
  if (e.key === 'ArrowLeft') {
@@ -13303,8 +13315,7 @@ const VAutocomplete = genericComponent()({
13303
13315
  selectionIndex.value = -1;
13304
13316
  vTextFieldRef.value.setSelectionRange(search.value?.length, search.value?.length);
13305
13317
  }
13306
- }
13307
- if (e.key === 'ArrowRight') {
13318
+ } else if (e.key === 'ArrowRight') {
13308
13319
  if (selectionIndex.value < 0) return;
13309
13320
  const next = selectionIndex.value + 1;
13310
13321
  if (model.value[next]) {
@@ -13313,6 +13324,8 @@ const VAutocomplete = genericComponent()({
13313
13324
  selectionIndex.value = -1;
13314
13325
  vTextFieldRef.value.setSelectionRange(0, 0);
13315
13326
  }
13327
+ } else if (~selectionIndex.value && checkPrintable(e)) {
13328
+ selectionIndex.value = -1;
13316
13329
  }
13317
13330
  }
13318
13331
  function onChange(e) {
@@ -16328,7 +16341,7 @@ const VColorPickerPreview = defineComponent({
16328
16341
  const result = await eyeDropper.open({
16329
16342
  signal: abortController.signal
16330
16343
  });
16331
- const colorHexValue = HexToHSV(result.sRGBHex);
16344
+ const colorHexValue = RGBtoHSV(parseColor(result.sRGBHex));
16332
16345
  emit('update:color', {
16333
16346
  ...(props.color ?? nullColor),
16334
16347
  ...colorHexValue
@@ -17139,7 +17152,7 @@ const VCombobox = genericComponent()({
17139
17152
  menu.value = !menu.value;
17140
17153
  }
17141
17154
  function onListKeydown(e) {
17142
- if (checkPrintable(e)) {
17155
+ if (e.key !== ' ' && checkPrintable(e)) {
17143
17156
  vTextFieldRef.value?.focus();
17144
17157
  }
17145
17158
  }
@@ -17148,7 +17161,7 @@ const VCombobox = genericComponent()({
17148
17161
  if (isComposingIgnoreKey(e) || form.isReadonly.value) return;
17149
17162
  const selectionStart = vTextFieldRef.value.selectionStart;
17150
17163
  const length = model.value.length;
17151
- if (selectionIndex.value > -1 || ['Enter', 'ArrowDown', 'ArrowUp'].includes(e.key)) {
17164
+ if (['Enter', 'ArrowDown', 'ArrowUp'].includes(e.key)) {
17152
17165
  e.preventDefault();
17153
17166
  }
17154
17167
  if (['Enter', 'ArrowDown'].includes(e.key)) {
@@ -17178,12 +17191,14 @@ const VCombobox = genericComponent()({
17178
17191
  if (['Backspace', 'Delete'].includes(e.key)) {
17179
17192
  if (!props.multiple && hasSelectionSlot.value && model.value.length > 0 && !search.value) return select(model.value[0], false);
17180
17193
  if (~selectionIndex.value) {
17194
+ e.preventDefault();
17181
17195
  const originalSelectionIndex = selectionIndex.value;
17182
17196
  select(model.value[selectionIndex.value], false);
17183
17197
  selectionIndex.value = originalSelectionIndex >= length - 1 ? length - 2 : originalSelectionIndex;
17184
17198
  } else if (e.key === 'Backspace' && !search.value) {
17185
17199
  selectionIndex.value = length - 1;
17186
17200
  }
17201
+ return;
17187
17202
  }
17188
17203
  if (!props.multiple) return;
17189
17204
  if (e.key === 'ArrowLeft') {
@@ -17195,8 +17210,7 @@ const VCombobox = genericComponent()({
17195
17210
  selectionIndex.value = -1;
17196
17211
  vTextFieldRef.value.setSelectionRange(search.value.length, search.value.length);
17197
17212
  }
17198
- }
17199
- if (e.key === 'ArrowRight') {
17213
+ } else if (e.key === 'ArrowRight') {
17200
17214
  if (selectionIndex.value < 0) return;
17201
17215
  const next = selectionIndex.value + 1;
17202
17216
  if (model.value[next]) {
@@ -17205,6 +17219,8 @@ const VCombobox = genericComponent()({
17205
17219
  selectionIndex.value = -1;
17206
17220
  vTextFieldRef.value.setSelectionRange(0, 0);
17207
17221
  }
17222
+ } else if (~selectionIndex.value && checkPrintable(e)) {
17223
+ selectionIndex.value = -1;
17208
17224
  }
17209
17225
  }
17210
17226
  function onAfterEnter() {
@@ -25777,7 +25793,7 @@ const makeLineProps = propsFactory({
25777
25793
  default: 8
25778
25794
  },
25779
25795
  showLabels: Boolean,
25780
- smooth: Boolean,
25796
+ smooth: [Boolean, String, Number],
25781
25797
  width: {
25782
25798
  type: [Number, String],
25783
25799
  default: 300
@@ -25858,6 +25874,7 @@ const VBarline = genericComponent()({
25858
25874
  });
25859
25875
  const bars = computed(() => genBars(items.value, boundary.value));
25860
25876
  const offsetX = computed(() => (Math.abs(bars.value[0].x - bars.value[1].x) - lineWidth.value) / 2);
25877
+ const smooth = computed(() => typeof props.smooth === 'boolean' ? props.smooth ? 2 : 0 : Number(props.smooth));
25861
25878
  useRender(() => {
25862
25879
  const gradientData = !props.gradient.slice().length ? [''] : props.gradient.slice().reverse();
25863
25880
  return createVNode("svg", {
@@ -25879,8 +25896,8 @@ const VBarline = genericComponent()({
25879
25896
  "y": item.y,
25880
25897
  "width": lineWidth.value,
25881
25898
  "height": item.height,
25882
- "rx": typeof props.smooth === 'number' ? props.smooth : props.smooth ? 2 : 0,
25883
- "ry": typeof props.smooth === 'number' ? props.smooth : props.smooth ? 2 : 0
25899
+ "rx": smooth.value,
25900
+ "ry": smooth.value
25884
25901
  }, [props.autoDraw && createVNode(Fragment, null, [createVNode("animate", {
25885
25902
  "attributeName": "y",
25886
25903
  "from": item.y + item.height,
@@ -26082,7 +26099,8 @@ const VTrendline = genericComponent()({
26082
26099
  immediate: true
26083
26100
  });
26084
26101
  function genPath$1(fill) {
26085
- return genPath(genPoints(items.value, boundary.value), props.smooth ? 8 : Number(props.smooth), fill, parseInt(props.height, 10));
26102
+ const smoothValue = typeof props.smooth === 'boolean' ? props.smooth ? 8 : 0 : Number(props.smooth);
26103
+ return genPath(genPoints(items.value, boundary.value), smoothValue, fill, parseInt(props.height, 10));
26086
26104
  }
26087
26105
  useRender(() => {
26088
26106
  const gradientData = !props.gradient.slice().length ? [''] : props.gradient.slice().reverse();
@@ -26406,6 +26424,7 @@ const VStepperItem = genericComponent()({
26406
26424
  'v-stepper-item--error': hasError.value
26407
26425
  }, group?.selectedClass.value],
26408
26426
  "disabled": !props.editable,
26427
+ "type": "button",
26409
26428
  "onClick": onClick
26410
26429
  }, [isClickable.value && genOverlays(true, 'v-stepper-item'), createVNode(VAvatar, {
26411
26430
  "key": "stepper-avatar",
@@ -28284,7 +28303,7 @@ function createVuetify$1() {
28284
28303
  goTo
28285
28304
  };
28286
28305
  }
28287
- const version$1 = "3.7.6";
28306
+ const version$1 = "3.7.7";
28288
28307
  createVuetify$1.version = version$1;
28289
28308
 
28290
28309
  // Vue's inject() can only be used in setup
@@ -28309,7 +28328,7 @@ const createVuetify = function () {
28309
28328
  ...options
28310
28329
  });
28311
28330
  };
28312
- const version = "3.7.6";
28331
+ const version = "3.7.7";
28313
28332
  createVuetify.version = version;
28314
28333
 
28315
28334
  export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };