@vuetify/nightly 3.7.6-master.2024-12-26 → 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.
- package/dist/json/attributes.json +1540 -1540
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +168 -168
- package/dist/json/web-types.json +2725 -2705
- package/dist/vuetify-labs.css +3281 -3277
- package/dist/vuetify-labs.d.ts +129 -104
- package/dist/vuetify-labs.esm.js +61 -27
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +61 -27
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3686 -3682
- package/dist/vuetify.d.ts +65 -68
- package/dist/vuetify.esm.js +41 -22
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +41 -22
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +930 -924
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +7 -4
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPickerPreview.mjs +2 -2
- package/lib/components/VColorPicker/VColorPickerPreview.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +7 -4
- 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/VField/VField.mjs +1 -1
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VInput/VInput.css +1 -1
- package/lib/components/VInput/VInput.sass +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.mjs +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.mjs.map +1 -1
- 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/VStepper/VStepperItem.mjs +1 -0
- package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
- package/lib/components/VTextarea/VTextarea.css +1 -0
- package/lib/components/VTextarea/VTextarea.sass +1 -0
- package/lib/components/index.d.mts +7 -10
- package/lib/composables/filter.mjs +3 -3
- package/lib/composables/filter.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +58 -58
- 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/lib/locale/az.mjs +28 -28
- package/lib/locale/az.mjs.map +1 -1
- package/lib/locale/nl.mjs +5 -5
- package/lib/locale/nl.mjs.map +1 -1
- 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,41 +67096,42 @@ declare module 'vue' {
|
|
67099
67096
|
$children?: VNodeChild
|
67100
67097
|
}
|
67101
67098
|
export interface GlobalComponents {
|
67102
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
67103
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67104
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67105
|
-
VApp: typeof import('vuetify/components')['VApp']
|
67106
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
67107
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
67108
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67109
67099
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
67110
67100
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
67111
67101
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
67112
|
-
|
67102
|
+
VApp: typeof import('vuetify/components')['VApp']
|
67103
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
67113
67104
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67105
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
67106
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67114
67107
|
VBanner: typeof import('vuetify/components')['VBanner']
|
67115
67108
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
67116
67109
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
67110
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
67111
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67117
67112
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
67118
67113
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
67119
67114
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
67120
|
-
|
67121
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67122
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67115
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67123
67116
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67117
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67124
67118
|
VCard: typeof import('vuetify/components')['VCard']
|
67125
67119
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
67126
67120
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
67127
67121
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
67128
67122
|
VCardText: typeof import('vuetify/components')['VCardText']
|
67129
67123
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
67124
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67125
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67126
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
67130
67127
|
VChip: typeof import('vuetify/components')['VChip']
|
67131
|
-
VCode: typeof import('vuetify/components')['VCode']
|
67132
67128
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67133
|
-
|
67129
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67130
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67134
67131
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
67132
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
67133
|
+
VCode: typeof import('vuetify/components')['VCode']
|
67135
67134
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67136
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
67137
67135
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
67138
67136
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
67139
67137
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -67141,36 +67139,35 @@ 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']
|
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']
|
67144
67149
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
67145
67150
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
67146
67151
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
67147
67152
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
67148
67153
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
67149
67154
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67150
|
-
|
67151
|
-
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
67152
|
-
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
67153
|
-
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
67154
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
67155
|
+
VFab: typeof import('vuetify/components')['VFab']
|
67155
67156
|
VField: typeof import('vuetify/components')['VField']
|
67156
67157
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67157
|
-
|
67158
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
67159
|
-
VFab: typeof import('vuetify/components')['VFab']
|
67158
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67160
67159
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
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
|
-
VImg: typeof import('vuetify/components')['VImg']
|
67167
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
67168
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67169
|
-
VInput: typeof import('vuetify/components')['VInput']
|
67170
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67171
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67172
67168
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67173
67169
|
VItem: typeof import('vuetify/components')['VItem']
|
67170
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
67174
67171
|
VLabel: typeof import('vuetify/components')['VLabel']
|
67175
67172
|
VList: typeof import('vuetify/components')['VList']
|
67176
67173
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
@@ -67181,69 +67178,70 @@ 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']
|
67184
|
-
VMain: typeof import('vuetify/components')['VMain']
|
67185
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
67186
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
67187
67181
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67182
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
67183
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
67188
67184
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67185
|
+
VMain: typeof import('vuetify/components')['VMain']
|
67189
67186
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67187
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
67190
67188
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67191
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
67192
67189
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67193
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67194
67190
|
VRating: typeof import('vuetify/components')['VRating']
|
67195
|
-
|
67191
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67196
67192
|
VSelect: typeof import('vuetify/components')['VSelect']
|
67193
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67197
67194
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67195
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67198
67196
|
VSheet: typeof import('vuetify/components')['VSheet']
|
67199
|
-
|
67197
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
67198
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67199
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67200
67200
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67201
67201
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67202
|
-
|
67203
|
-
|
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']
|
67204
67207
|
VStepper: typeof import('vuetify/components')['VStepper']
|
67205
67208
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
67206
67209
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
67207
67210
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
67208
67211
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67209
67212
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67210
|
-
|
67211
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
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
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
67218
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67219
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67220
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67221
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67222
|
-
VWindow: typeof import('vuetify/components')['VWindow']
|
67223
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67224
67218
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
67225
67219
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67226
67220
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
67227
|
-
|
67221
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67222
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
67223
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67228
67224
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67229
67225
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
67226
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
67227
|
+
VForm: typeof import('vuetify/components')['VForm']
|
67230
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
|
-
VForm: typeof import('vuetify/components')['VForm']
|
67236
67233
|
VLayout: typeof import('vuetify/components')['VLayout']
|
67237
67234
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
67238
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
67239
67235
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67240
|
-
|
67236
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
67241
67237
|
VParallax: typeof import('vuetify/components')['VParallax']
|
67242
|
-
|
67238
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
67243
67239
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
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']
|
67244
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
67247
67245
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
67248
67246
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
67249
67247
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
@@ -67262,27 +67260,26 @@ declare module 'vue' {
|
|
67262
67260
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
67263
67261
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
67264
67262
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
67265
|
-
|
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
|
-
|
67273
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67271
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67274
67272
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67275
67273
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67276
67274
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67277
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67278
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67279
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67280
67275
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67281
67276
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67282
67277
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67283
67278
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
67284
67279
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
67285
67280
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
67281
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67282
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67286
67283
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
67287
67284
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67288
67285
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.6-master.
|
2
|
+
* Vuetify v3.7.6-master.2025-01-16
|
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 :
|
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')
|
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({
|
@@ -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 =
|
13097
|
-
const filteredMatches =
|
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 (
|
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 =
|
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 (
|
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();
|
@@ -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-master.
|
28306
|
+
const version$1 = "3.7.6-master.2025-01-16";
|
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-master.
|
28331
|
+
const version = "3.7.6-master.2025-01-16";
|
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 };
|