@vuetify/nightly 3.7.6-master.2025-01-15 → 3.7.6-master.2025-01-16

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 (43) hide show
  1. package/dist/json/attributes.json +3190 -3190
  2. package/dist/json/importMap-labs.json +18 -18
  3. package/dist/json/importMap.json +164 -164
  4. package/dist/json/web-types.json +6252 -6232
  5. package/dist/vuetify-labs.css +2912 -2909
  6. package/dist/vuetify-labs.d.ts +129 -104
  7. package/dist/vuetify-labs.esm.js +53 -20
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +53 -20
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +3437 -3434
  12. package/dist/vuetify.d.ts +62 -65
  13. package/dist/vuetify.esm.js +33 -15
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +33 -15
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +29 -23
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/components/VAutocomplete/VAutocomplete.mjs +6 -3
  21. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  22. package/lib/components/VCombobox/VCombobox.mjs +6 -3
  23. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  24. package/lib/components/VDialog/VDialog.css +5 -2
  25. package/lib/components/VDialog/VDialog.sass +6 -2
  26. package/lib/components/VSlideGroup/VSlideGroup.mjs +12 -2
  27. package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
  28. package/lib/components/VSparkline/VBarline.mjs +3 -2
  29. package/lib/components/VSparkline/VBarline.mjs.map +1 -1
  30. package/lib/components/VSparkline/VTrendline.mjs +2 -1
  31. package/lib/components/VSparkline/VTrendline.mjs.map +1 -1
  32. package/lib/components/VSparkline/index.d.mts +7 -10
  33. package/lib/components/VSparkline/util/line.mjs +1 -1
  34. package/lib/components/VSparkline/util/line.mjs.map +1 -1
  35. package/lib/components/index.d.mts +7 -10
  36. package/lib/entry-bundler.mjs +1 -1
  37. package/lib/framework.mjs +1 -1
  38. package/lib/index.d.mts +55 -55
  39. package/lib/labs/VDateInput/VDateInput.mjs +19 -5
  40. package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
  41. package/lib/labs/VDateInput/index.d.mts +176 -97
  42. package/lib/labs/components.d.mts +227 -199
  43. package/package.json +1 -1
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,40 +67096,41 @@ declare module 'vue' {
67099
67096
  $children?: VNodeChild
67100
67097
  }
67101
67098
  export interface GlobalComponents {
67102
- VAvatar: typeof import('vuetify/components')['VAvatar']
67103
- VApp: typeof import('vuetify/components')['VApp']
67104
- VAlert: typeof import('vuetify/components')['VAlert']
67105
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
67106
67099
  VAppBar: typeof import('vuetify/components')['VAppBar']
67107
67100
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
67108
67101
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
67102
+ VApp: typeof import('vuetify/components')['VApp']
67103
+ VAvatar: typeof import('vuetify/components')['VAvatar']
67104
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
67105
+ VBadge: typeof import('vuetify/components')['VBadge']
67106
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
67109
67107
  VBanner: typeof import('vuetify/components')['VBanner']
67110
67108
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
67111
67109
  VBannerText: typeof import('vuetify/components')['VBannerText']
67112
- VBadge: typeof import('vuetify/components')['VBadge']
67113
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
67114
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
67115
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
67116
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
67117
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
67118
- VBtn: typeof import('vuetify/components')['VBtn']
67110
+ VAlert: typeof import('vuetify/components')['VAlert']
67111
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
67119
67112
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
67120
67113
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
67121
67114
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
67115
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
67116
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
67117
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
67122
67118
  VCard: typeof import('vuetify/components')['VCard']
67123
67119
  VCardActions: typeof import('vuetify/components')['VCardActions']
67124
67120
  VCardItem: typeof import('vuetify/components')['VCardItem']
67125
67121
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
67126
67122
  VCardText: typeof import('vuetify/components')['VCardText']
67127
67123
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
67128
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
67129
67124
  VCarousel: typeof import('vuetify/components')['VCarousel']
67130
67125
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
67126
+ VBtn: typeof import('vuetify/components')['VBtn']
67131
67127
  VChip: typeof import('vuetify/components')['VChip']
67132
- VCode: typeof import('vuetify/components')['VCode']
67128
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
67133
67129
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
67134
67130
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
67135
67131
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
67132
+ VCounter: typeof import('vuetify/components')['VCounter']
67133
+ VCode: typeof import('vuetify/components')['VCode']
67136
67134
  VCombobox: typeof import('vuetify/components')['VCombobox']
67137
67135
  VDataTable: typeof import('vuetify/components')['VDataTable']
67138
67136
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
@@ -67141,37 +67139,36 @@ declare module 'vue' {
67141
67139
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
67142
67140
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
67143
67141
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
67144
- VCounter: typeof import('vuetify/components')['VCounter']
67142
+ VDialog: typeof import('vuetify/components')['VDialog']
67143
+ VEmptyState: typeof import('vuetify/components')['VEmptyState']
67144
+ VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
67145
+ VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
67146
+ VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
67147
+ VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
67148
+ VDivider: typeof import('vuetify/components')['VDivider']
67145
67149
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
67146
67150
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
67147
67151
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
67148
67152
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
67149
67153
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
67150
67154
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
67151
- VDivider: typeof import('vuetify/components')['VDivider']
67152
- VEmptyState: typeof import('vuetify/components')['VEmptyState']
67155
+ VFab: typeof import('vuetify/components')['VFab']
67153
67156
  VField: typeof import('vuetify/components')['VField']
67154
67157
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
67155
- VFab: typeof import('vuetify/components')['VFab']
67158
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
67156
67159
  VFileInput: typeof import('vuetify/components')['VFileInput']
67157
- VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
67158
- VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
67159
- VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
67160
- VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
67160
+ VFooter: typeof import('vuetify/components')['VFooter']
67161
+ VImg: typeof import('vuetify/components')['VImg']
67162
+ VInput: typeof import('vuetify/components')['VInput']
67161
67163
  VIcon: typeof import('vuetify/components')['VIcon']
67162
67164
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
67163
67165
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
67164
67166
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
67165
67167
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
67166
- VFooter: typeof import('vuetify/components')['VFooter']
67167
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
67168
- VDialog: typeof import('vuetify/components')['VDialog']
67169
- VLabel: typeof import('vuetify/components')['VLabel']
67170
- VInput: typeof import('vuetify/components')['VInput']
67171
- VImg: typeof import('vuetify/components')['VImg']
67172
67168
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
67173
67169
  VItem: typeof import('vuetify/components')['VItem']
67174
67170
  VKbd: typeof import('vuetify/components')['VKbd']
67171
+ VLabel: typeof import('vuetify/components')['VLabel']
67175
67172
  VList: typeof import('vuetify/components')['VList']
67176
67173
  VListGroup: typeof import('vuetify/components')['VListGroup']
67177
67174
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -67181,71 +67178,71 @@ declare module 'vue' {
67181
67178
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
67182
67179
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
67183
67180
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
67181
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
67184
67182
  VMenu: typeof import('vuetify/components')['VMenu']
67183
+ VPagination: typeof import('vuetify/components')['VPagination']
67184
+ VOverlay: typeof import('vuetify/components')['VOverlay']
67185
+ VMain: typeof import('vuetify/components')['VMain']
67185
67186
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
67186
67187
  VMessages: typeof import('vuetify/components')['VMessages']
67187
- VMain: typeof import('vuetify/components')['VMain']
67188
- VOverlay: typeof import('vuetify/components')['VOverlay']
67189
67188
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
67190
- VPagination: typeof import('vuetify/components')['VPagination']
67191
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
67189
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
67192
67190
  VRating: typeof import('vuetify/components')['VRating']
67193
- VSelect: typeof import('vuetify/components')['VSelect']
67194
67191
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
67195
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
67192
+ VSelect: typeof import('vuetify/components')['VSelect']
67193
+ VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
67196
67194
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
67197
- VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
67198
- VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
67199
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
67200
67195
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
67201
67196
  VSheet: typeof import('vuetify/components')['VSheet']
67202
67197
  VSlider: typeof import('vuetify/components')['VSlider']
67198
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
67199
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
67200
+ VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
67201
+ VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
67202
+ VTable: typeof import('vuetify/components')['VTable']
67203
+ VSwitch: typeof import('vuetify/components')['VSwitch']
67204
+ VTimeline: typeof import('vuetify/components')['VTimeline']
67205
+ VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
67206
+ VTextField: typeof import('vuetify/components')['VTextField']
67203
67207
  VStepper: typeof import('vuetify/components')['VStepper']
67204
67208
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
67205
67209
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
67206
67210
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
67207
67211
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
67208
67212
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
67209
- VSwitch: typeof import('vuetify/components')['VSwitch']
67210
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
67211
- VTextField: typeof import('vuetify/components')['VTextField']
67213
+ VTextarea: typeof import('vuetify/components')['VTextarea']
67212
67214
  VTab: typeof import('vuetify/components')['VTab']
67213
67215
  VTabs: typeof import('vuetify/components')['VTabs']
67214
67216
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
67215
67217
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
67216
- VTable: typeof import('vuetify/components')['VTable']
67217
- VTimeline: typeof import('vuetify/components')['VTimeline']
67218
- VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
67219
- VTextarea: typeof import('vuetify/components')['VTextarea']
67220
67218
  VToolbar: typeof import('vuetify/components')['VToolbar']
67221
67219
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
67222
67220
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
67221
+ VTooltip: typeof import('vuetify/components')['VTooltip']
67223
67222
  VWindow: typeof import('vuetify/components')['VWindow']
67224
67223
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
67225
- VTooltip: typeof import('vuetify/components')['VTooltip']
67226
- VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
67227
67224
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
67228
- VDataIterator: typeof import('vuetify/components')['VDataIterator']
67229
67225
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
67226
+ VDataIterator: typeof import('vuetify/components')['VDataIterator']
67230
67227
  VForm: typeof import('vuetify/components')['VForm']
67228
+ VHover: typeof import('vuetify/components')['VHover']
67231
67229
  VContainer: typeof import('vuetify/components')['VContainer']
67232
67230
  VCol: typeof import('vuetify/components')['VCol']
67233
67231
  VRow: typeof import('vuetify/components')['VRow']
67234
67232
  VSpacer: typeof import('vuetify/components')['VSpacer']
67235
- VHover: typeof import('vuetify/components')['VHover']
67236
- VLazy: typeof import('vuetify/components')['VLazy']
67237
67233
  VLayout: typeof import('vuetify/components')['VLayout']
67238
67234
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
67239
- VNoSsr: typeof import('vuetify/components')['VNoSsr']
67240
67235
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
67236
+ VLazy: typeof import('vuetify/components')['VLazy']
67241
67237
  VParallax: typeof import('vuetify/components')['VParallax']
67238
+ VNoSsr: typeof import('vuetify/components')['VNoSsr']
67242
67239
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
67243
67240
  VRadio: typeof import('vuetify/components')['VRadio']
67244
67241
  VResponsive: typeof import('vuetify/components')['VResponsive']
67245
67242
  VSparkline: typeof import('vuetify/components')['VSparkline']
67246
67243
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
67247
- VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
67248
67244
  VValidation: typeof import('vuetify/components')['VValidation']
67245
+ VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
67249
67246
  VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
67250
67247
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
67251
67248
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
@@ -67263,16 +67260,15 @@ declare module 'vue' {
67263
67260
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
67264
67261
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
67265
67262
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
67263
+ VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
67264
+ VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
67266
67265
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
67267
67266
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
67268
67267
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
67269
67268
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
67270
67269
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
67271
67270
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
67272
- VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
67273
- VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
67274
- VPicker: typeof import('vuetify/labs/components')['VPicker']
67275
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
67271
+ VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
67276
67272
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
67277
67273
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
67278
67274
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
@@ -67282,9 +67278,10 @@ declare module 'vue' {
67282
67278
  VTreeview: typeof import('vuetify/labs/components')['VTreeview']
67283
67279
  VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
67284
67280
  VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
67281
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
67282
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
67285
67283
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
67286
67284
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
67287
- VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
67288
67285
  VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
67289
67286
  }
67290
67287
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.6-master.2025-01-15
2
+ * Vuetify v3.7.6-master.2025-01-16
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -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({
@@ -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) {
@@ -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();
@@ -28285,7 +28303,7 @@ function createVuetify$1() {
28285
28303
  goTo
28286
28304
  };
28287
28305
  }
28288
- const version$1 = "3.7.6-master.2025-01-15";
28306
+ const version$1 = "3.7.6-master.2025-01-16";
28289
28307
  createVuetify$1.version = version$1;
28290
28308
 
28291
28309
  // Vue's inject() can only be used in setup
@@ -28310,7 +28328,7 @@ const createVuetify = function () {
28310
28328
  ...options
28311
28329
  });
28312
28330
  };
28313
- const version = "3.7.6-master.2025-01-15";
28331
+ const version = "3.7.6-master.2025-01-16";
28314
28332
  createVuetify.version = version;
28315
28333
 
28316
28334
  export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };