@vuetify/nightly 3.7.6-master.2025-01-15 → 3.7.6-master.2025-01-18
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.
- package/CHANGELOG.md +40 -0
- package/dist/json/attributes.json +3622 -3622
- package/dist/json/importMap-labs.json +14 -14
- package/dist/json/importMap.json +164 -164
- package/dist/json/web-types.json +6178 -6158
- package/dist/vuetify-labs.css +3425 -3422
- package/dist/vuetify-labs.d.ts +129 -104
- package/dist/vuetify-labs.esm.js +53 -20
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +53 -20
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2764 -2761
- package/dist/vuetify.d.ts +62 -65
- package/dist/vuetify.esm.js +33 -15
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +33 -15
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +29 -23
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +6 -3
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +6 -3
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VDialog/VDialog.css +5 -2
- package/lib/components/VDialog/VDialog.sass +6 -2
- package/lib/components/VSlideGroup/VSlideGroup.mjs +12 -2
- package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
- package/lib/components/VSparkline/VBarline.mjs +3 -2
- package/lib/components/VSparkline/VBarline.mjs.map +1 -1
- package/lib/components/VSparkline/VTrendline.mjs +2 -1
- package/lib/components/VSparkline/VTrendline.mjs.map +1 -1
- package/lib/components/VSparkline/index.d.mts +7 -10
- package/lib/components/VSparkline/util/line.mjs +1 -1
- package/lib/components/VSparkline/util/line.mjs.map +1 -1
- package/lib/components/index.d.mts +7 -10
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +55 -55
- package/lib/labs/VDateInput/VDateInput.mjs +19 -5
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +176 -97
- package/lib/labs/components.d.mts +227 -199
- 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,48 +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
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67103
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
67104
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67105
|
+
VApp: typeof import('vuetify/components')['VApp']
|
67109
67106
|
VBanner: typeof import('vuetify/components')['VBanner']
|
67110
67107
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
67111
67108
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
67112
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
67113
67109
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67110
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
67114
67111
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67115
|
-
|
67116
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67117
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67118
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
67112
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
67119
67113
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
67120
67114
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
67121
67115
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
67116
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
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']
|
67124
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67125
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67126
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67127
|
+
VChip: typeof import('vuetify/components')['VChip']
|
67128
67128
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67129
|
+
VCode: typeof import('vuetify/components')['VCode']
|
67129
67130
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67130
67131
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67131
|
-
VChip: typeof import('vuetify/components')['VChip']
|
67132
|
-
VCode: typeof import('vuetify/components')['VCode']
|
67133
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67134
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67135
67132
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
67136
67133
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67137
|
-
VDataTable: typeof import('vuetify/components')['VDataTable']
|
67138
|
-
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
67139
|
-
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
67140
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
67141
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
67142
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
67143
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
67144
67134
|
VCounter: typeof import('vuetify/components')['VCounter']
|
67145
67135
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
67146
67136
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
@@ -67149,29 +67139,36 @@ declare module 'vue' {
|
|
67149
67139
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
67150
67140
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67151
67141
|
VDivider: typeof import('vuetify/components')['VDivider']
|
67142
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
67143
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
67144
|
+
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
67145
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
67146
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
67147
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
67148
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
67149
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
67152
67150
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67153
|
-
VField: typeof import('vuetify/components')['VField']
|
67154
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67155
67151
|
VFab: typeof import('vuetify/components')['VFab']
|
67156
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67157
67152
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
67158
67153
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
67159
67154
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
67160
67155
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
67156
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67157
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
67158
|
+
VField: typeof import('vuetify/components')['VField']
|
67159
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67161
67160
|
VIcon: typeof import('vuetify/components')['VIcon']
|
67162
67161
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
67163
67162
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
67164
67163
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
67165
67164
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
67166
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
67167
67165
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67168
|
-
|
67169
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
67170
|
-
VInput: typeof import('vuetify/components')['VInput']
|
67166
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
67171
67167
|
VImg: typeof import('vuetify/components')['VImg']
|
67172
67168
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67173
67169
|
VItem: typeof import('vuetify/components')['VItem']
|
67174
|
-
|
67170
|
+
VInput: typeof import('vuetify/components')['VInput']
|
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']
|
@@ -67182,50 +67179,50 @@ declare module 'vue' {
|
|
67182
67179
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
67183
67180
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
67184
67181
|
VMenu: typeof import('vuetify/components')['VMenu']
|
67185
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67186
67182
|
VMessages: typeof import('vuetify/components')['VMessages']
|
67183
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67184
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67187
67185
|
VMain: typeof import('vuetify/components')['VMain']
|
67188
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67189
67186
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67190
|
-
|
67191
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67187
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67192
67188
|
VRating: typeof import('vuetify/components')['VRating']
|
67189
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67190
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
67193
67191
|
VSelect: typeof import('vuetify/components')['VSelect']
|
67194
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67195
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67196
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67197
|
-
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67198
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67199
67192
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67200
|
-
|
67201
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
67193
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67202
67194
|
VSlider: typeof import('vuetify/components')['VSlider']
|
67195
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
67196
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67197
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67198
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67203
67199
|
VStepper: typeof import('vuetify/components')['VStepper']
|
67204
67200
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
67205
67201
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
67206
67202
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
67207
67203
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67208
67204
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67205
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67206
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67209
67207
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67210
|
-
|
67211
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
67208
|
+
VTable: typeof import('vuetify/components')['VTable']
|
67212
67209
|
VTab: typeof import('vuetify/components')['VTab']
|
67213
67210
|
VTabs: typeof import('vuetify/components')['VTabs']
|
67214
67211
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67215
67212
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67216
|
-
|
67213
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67217
67214
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67218
67215
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67219
|
-
|
67216
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67217
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
67218
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67219
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
67220
67220
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
67221
67221
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67222
67222
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
67223
|
-
|
67224
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67225
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67226
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67227
|
-
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67223
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67228
67224
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
67225
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67229
67226
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
67230
67227
|
VForm: typeof import('vuetify/components')['VForm']
|
67231
67228
|
VContainer: typeof import('vuetify/components')['VContainer']
|
@@ -67233,14 +67230,14 @@ declare module 'vue' {
|
|
67233
67230
|
VRow: typeof import('vuetify/components')['VRow']
|
67234
67231
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
67235
67232
|
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
|
-
|
67235
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
67240
67236
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
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']
|
@@ -67273,18 +67270,18 @@ declare module 'vue' {
|
|
67273
67270
|
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67274
67271
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67275
67272
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67276
|
-
|
67277
|
-
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67278
|
-
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67273
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67279
67274
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67280
67275
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67281
67276
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67277
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67278
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67279
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67282
67280
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
67283
67281
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
67284
67282
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
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
|
}
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.6-master.2025-01-
|
2
|
+
* Vuetify v3.7.6-master.2025-01-18
|
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')
|
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')
|
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 (
|
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 (
|
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":
|
25883
|
-
"ry":
|
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
|
-
|
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-
|
28306
|
+
const version$1 = "3.7.6-master.2025-01-18";
|
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-
|
28331
|
+
const version = "3.7.6-master.2025-01-18";
|
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 };
|