vuetify 3.11.0 → 3.11.2
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 +2912 -2904
- package/dist/json/importMap-labs.json +30 -30
- package/dist/json/importMap.json +198 -198
- package/dist/json/tags.json +2 -0
- package/dist/json/web-types.json +4995 -4976
- package/dist/vuetify-labs.cjs +41 -31
- package/dist/vuetify-labs.css +5310 -5314
- package/dist/vuetify-labs.d.ts +85 -72
- package/dist/vuetify-labs.esm.js +41 -31
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +41 -31
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +37 -27
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4184 -4185
- package/dist/vuetify.d.ts +85 -72
- package/dist/vuetify.esm.js +37 -27
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +37 -27
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +25 -21
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.js +1 -1
- package/lib/components/VDataTable/VDataTable.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.d.ts +10 -0
- package/lib/components/VDataTable/VDataTableHeaders.js +7 -7
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.js +8 -3
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/components/VDialog/__test__/VDialog.spec.browser.js +5 -9
- package/lib/components/VDialog/__test__/VDialog.spec.browser.js.map +1 -1
- package/lib/components/VHotkey/_variables.scss +1 -1
- package/lib/components/VNumberInput/VNumberInput.js +1 -1
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/components/VSlideGroup/VSlideGroup.js +4 -1
- package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/lib/components/VTabs/VTab.d.ts +13 -0
- package/lib/components/VTabs/VTab.js +3 -2
- package/lib/components/VTabs/VTab.js.map +1 -1
- package/lib/components/VTabs/VTabs.css +6 -7
- package/lib/components/VTabs/VTabs.js +1 -0
- package/lib/components/VTabs/VTabs.js.map +1 -1
- package/lib/components/VTabs/VTabs.sass +6 -7
- package/lib/components/VTextField/VTextField.js +8 -10
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/composables/autofocus.js +3 -1
- package/lib/composables/autofocus.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +72 -72
- package/lib/framework.js +1 -1
- package/lib/labs/VMaskInput/VMaskInput.js +4 -4
- package/lib/labs/VMaskInput/VMaskInput.js.map +1 -1
- package/lib/labs/VStepperVertical/VStepperVerticalItem.css +0 -3
- package/lib/labs/VStepperVertical/VStepperVerticalItem.sass +0 -3
- package/package.json +26 -26
package/dist/vuetify.d.ts
CHANGED
|
@@ -45833,6 +45833,7 @@ declare const VDataTableHeaders: {
|
|
|
45833
45833
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
45834
45834
|
loading?: string | boolean | undefined;
|
|
45835
45835
|
color?: string | undefined;
|
|
45836
|
+
initialSortOrder?: "asc" | "desc" | undefined;
|
|
45836
45837
|
headerProps?: Record<string, any> | undefined;
|
|
45837
45838
|
} & {
|
|
45838
45839
|
$children?: {
|
|
@@ -45902,6 +45903,7 @@ declare const VDataTableHeaders: {
|
|
|
45902
45903
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
45903
45904
|
loading?: string | boolean | undefined;
|
|
45904
45905
|
color?: string | undefined;
|
|
45906
|
+
initialSortOrder?: "asc" | "desc" | undefined;
|
|
45905
45907
|
headerProps?: Record<string, any> | undefined;
|
|
45906
45908
|
} & {
|
|
45907
45909
|
$children?: {
|
|
@@ -45952,6 +45954,7 @@ declare const VDataTableHeaders: {
|
|
|
45952
45954
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
45953
45955
|
loading?: string | boolean | undefined;
|
|
45954
45956
|
color?: string | undefined;
|
|
45957
|
+
initialSortOrder?: "asc" | "desc" | undefined;
|
|
45955
45958
|
headerProps?: Record<string, any> | undefined;
|
|
45956
45959
|
} & {
|
|
45957
45960
|
$children?: {
|
|
@@ -46017,6 +46020,7 @@ declare const VDataTableHeaders: {
|
|
|
46017
46020
|
disableSort: BooleanConstructor;
|
|
46018
46021
|
fixedHeader: BooleanConstructor;
|
|
46019
46022
|
multiSort: BooleanConstructor;
|
|
46023
|
+
initialSortOrder: PropType<"asc" | "desc">;
|
|
46020
46024
|
sortAscIcon: {
|
|
46021
46025
|
type: PropType<IconValue>;
|
|
46022
46026
|
default: string;
|
|
@@ -46045,6 +46049,7 @@ declare const VDataTableHeaders: {
|
|
|
46045
46049
|
disableSort: BooleanConstructor;
|
|
46046
46050
|
fixedHeader: BooleanConstructor;
|
|
46047
46051
|
multiSort: BooleanConstructor;
|
|
46052
|
+
initialSortOrder: PropType<"asc" | "desc">;
|
|
46048
46053
|
sortAscIcon: {
|
|
46049
46054
|
type: PropType<IconValue>;
|
|
46050
46055
|
default: string;
|
|
@@ -98112,6 +98117,7 @@ declare const VTab: {
|
|
|
98112
98117
|
};
|
|
98113
98118
|
fixed: boolean;
|
|
98114
98119
|
hideSlider: boolean;
|
|
98120
|
+
inset: boolean;
|
|
98115
98121
|
direction: "horizontal" | "vertical";
|
|
98116
98122
|
} & {
|
|
98117
98123
|
theme?: string | undefined;
|
|
@@ -98539,6 +98545,7 @@ declare const VTab: {
|
|
|
98539
98545
|
text: string | number | boolean;
|
|
98540
98546
|
fixed: boolean;
|
|
98541
98547
|
hideSlider: boolean;
|
|
98548
|
+
inset: boolean;
|
|
98542
98549
|
direction: "horizontal" | "vertical";
|
|
98543
98550
|
}, true, {}, vue.SlotsType<Partial<{
|
|
98544
98551
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -98580,6 +98587,7 @@ declare const VTab: {
|
|
|
98580
98587
|
};
|
|
98581
98588
|
fixed: boolean;
|
|
98582
98589
|
hideSlider: boolean;
|
|
98590
|
+
inset: boolean;
|
|
98583
98591
|
direction: "horizontal" | "vertical";
|
|
98584
98592
|
} & {
|
|
98585
98593
|
theme?: string | undefined;
|
|
@@ -99007,6 +99015,7 @@ declare const VTab: {
|
|
|
99007
99015
|
text: string | number | boolean;
|
|
99008
99016
|
fixed: boolean;
|
|
99009
99017
|
hideSlider: boolean;
|
|
99018
|
+
inset: boolean;
|
|
99010
99019
|
direction: "horizontal" | "vertical";
|
|
99011
99020
|
}>;
|
|
99012
99021
|
__isFragment?: undefined;
|
|
@@ -99032,6 +99041,7 @@ declare const VTab: {
|
|
|
99032
99041
|
};
|
|
99033
99042
|
fixed: boolean;
|
|
99034
99043
|
hideSlider: boolean;
|
|
99044
|
+
inset: boolean;
|
|
99035
99045
|
direction: "horizontal" | "vertical";
|
|
99036
99046
|
} & {
|
|
99037
99047
|
theme?: string | undefined;
|
|
@@ -99459,6 +99469,7 @@ declare const VTab: {
|
|
|
99459
99469
|
text: string | number | boolean;
|
|
99460
99470
|
fixed: boolean;
|
|
99461
99471
|
hideSlider: boolean;
|
|
99472
|
+
inset: boolean;
|
|
99462
99473
|
direction: "horizontal" | "vertical";
|
|
99463
99474
|
}, {}, string, vue.SlotsType<Partial<{
|
|
99464
99475
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -99560,6 +99571,7 @@ declare const VTab: {
|
|
|
99560
99571
|
sliderTransition: PropType<"fade" | "grow" | "shift">;
|
|
99561
99572
|
sliderTransitionDuration: (NumberConstructor | StringConstructor)[];
|
|
99562
99573
|
hideSlider: BooleanConstructor;
|
|
99574
|
+
inset: BooleanConstructor;
|
|
99563
99575
|
direction: {
|
|
99564
99576
|
type: PropType<"horizontal" | "vertical">;
|
|
99565
99577
|
default: string;
|
|
@@ -99651,6 +99663,7 @@ declare const VTab: {
|
|
|
99651
99663
|
sliderTransition: PropType<"fade" | "grow" | "shift">;
|
|
99652
99664
|
sliderTransitionDuration: (NumberConstructor | StringConstructor)[];
|
|
99653
99665
|
hideSlider: BooleanConstructor;
|
|
99666
|
+
inset: BooleanConstructor;
|
|
99654
99667
|
direction: {
|
|
99655
99668
|
type: PropType<"horizontal" | "vertical">;
|
|
99656
99669
|
default: string;
|
|
@@ -114145,42 +114158,42 @@ declare module 'vue' {
|
|
|
114145
114158
|
$children?: VNodeChild
|
|
114146
114159
|
}
|
|
114147
114160
|
export interface GlobalComponents {
|
|
114161
|
+
VAutocomplete: VAutocomplete
|
|
114162
|
+
VApp: VApp
|
|
114163
|
+
VBadge: VBadge
|
|
114164
|
+
VBottomNavigation: VBottomNavigation
|
|
114148
114165
|
VAppBar: VAppBar
|
|
114149
114166
|
VAppBarNavIcon: VAppBarNavIcon
|
|
114150
114167
|
VAppBarTitle: VAppBarTitle
|
|
114151
114168
|
VAvatar: VAvatar
|
|
114152
|
-
VApp: VApp
|
|
114153
|
-
VAlert: VAlert
|
|
114154
|
-
VAlertTitle: VAlertTitle
|
|
114155
|
-
VBadge: VBadge
|
|
114156
|
-
VBottomSheet: VBottomSheet
|
|
114157
|
-
VBottomNavigation: VBottomNavigation
|
|
114158
114169
|
VBanner: VBanner
|
|
114159
114170
|
VBannerActions: VBannerActions
|
|
114160
114171
|
VBannerText: VBannerText
|
|
114161
|
-
VAutocomplete: VAutocomplete
|
|
114162
|
-
VBtnGroup: VBtnGroup
|
|
114163
114172
|
VBtnToggle: VBtnToggle
|
|
114173
|
+
VBtn: VBtn
|
|
114174
|
+
VBottomSheet: VBottomSheet
|
|
114175
|
+
VAlert: VAlert
|
|
114176
|
+
VAlertTitle: VAlertTitle
|
|
114177
|
+
VBtnGroup: VBtnGroup
|
|
114164
114178
|
VBreadcrumbs: VBreadcrumbs
|
|
114165
114179
|
VBreadcrumbsItem: VBreadcrumbsItem
|
|
114166
114180
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
114167
|
-
VBtn: VBtn
|
|
114168
114181
|
VCalendar: VCalendar
|
|
114169
|
-
|
|
114170
|
-
|
|
114182
|
+
VCode: VCode
|
|
114183
|
+
VCheckbox: VCheckbox
|
|
114184
|
+
VCheckboxBtn: VCheckboxBtn
|
|
114171
114185
|
VCard: VCard
|
|
114172
114186
|
VCardActions: VCardActions
|
|
114173
114187
|
VCardItem: VCardItem
|
|
114174
114188
|
VCardSubtitle: VCardSubtitle
|
|
114175
114189
|
VCardText: VCardText
|
|
114176
114190
|
VCardTitle: VCardTitle
|
|
114177
|
-
|
|
114191
|
+
VChipGroup: VChipGroup
|
|
114192
|
+
VCarousel: VCarousel
|
|
114193
|
+
VCarouselItem: VCarouselItem
|
|
114178
114194
|
VChip: VChip
|
|
114179
|
-
VCheckbox: VCheckbox
|
|
114180
|
-
VCheckboxBtn: VCheckboxBtn
|
|
114181
|
-
VCombobox: VCombobox
|
|
114182
114195
|
VColorPicker: VColorPicker
|
|
114183
|
-
|
|
114196
|
+
VCombobox: VCombobox
|
|
114184
114197
|
VCounter: VCounter
|
|
114185
114198
|
VDatePicker: VDatePicker
|
|
114186
114199
|
VDatePickerControls: VDatePickerControls
|
|
@@ -114188,6 +114201,13 @@ declare module 'vue' {
|
|
|
114188
114201
|
VDatePickerMonth: VDatePickerMonth
|
|
114189
114202
|
VDatePickerMonths: VDatePickerMonths
|
|
114190
114203
|
VDatePickerYears: VDatePickerYears
|
|
114204
|
+
VDialog: VDialog
|
|
114205
|
+
VDivider: VDivider
|
|
114206
|
+
VExpansionPanels: VExpansionPanels
|
|
114207
|
+
VExpansionPanel: VExpansionPanel
|
|
114208
|
+
VExpansionPanelText: VExpansionPanelText
|
|
114209
|
+
VExpansionPanelTitle: VExpansionPanelTitle
|
|
114210
|
+
VEmptyState: VEmptyState
|
|
114191
114211
|
VDataTable: VDataTable
|
|
114192
114212
|
VDataTableHeaders: VDataTableHeaders
|
|
114193
114213
|
VDataTableFooter: VDataTableFooter
|
|
@@ -114195,31 +114215,21 @@ declare module 'vue' {
|
|
|
114195
114215
|
VDataTableRow: VDataTableRow
|
|
114196
114216
|
VDataTableVirtual: VDataTableVirtual
|
|
114197
114217
|
VDataTableServer: VDataTableServer
|
|
114198
|
-
VExpansionPanels: VExpansionPanels
|
|
114199
|
-
VExpansionPanel: VExpansionPanel
|
|
114200
|
-
VExpansionPanelText: VExpansionPanelText
|
|
114201
|
-
VExpansionPanelTitle: VExpansionPanelTitle
|
|
114202
|
-
VDialog: VDialog
|
|
114203
114218
|
VFab: VFab
|
|
114204
|
-
|
|
114219
|
+
VFooter: VFooter
|
|
114220
|
+
VFileInput: VFileInput
|
|
114205
114221
|
VField: VField
|
|
114206
114222
|
VFieldLabel: VFieldLabel
|
|
114207
|
-
VEmptyState: VEmptyState
|
|
114208
|
-
VFileInput: VFileInput
|
|
114209
|
-
VFooter: VFooter
|
|
114210
|
-
VHotkey: VHotkey
|
|
114211
|
-
VInfiniteScroll: VInfiniteScroll
|
|
114212
114223
|
VIcon: VIcon
|
|
114213
114224
|
VComponentIcon: VComponentIcon
|
|
114214
114225
|
VSvgIcon: VSvgIcon
|
|
114215
114226
|
VLigatureIcon: VLigatureIcon
|
|
114216
114227
|
VClassIcon: VClassIcon
|
|
114217
|
-
|
|
114228
|
+
VInfiniteScroll: VInfiniteScroll
|
|
114229
|
+
VImg: VImg
|
|
114230
|
+
VHotkey: VHotkey
|
|
114218
114231
|
VItemGroup: VItemGroup
|
|
114219
114232
|
VItem: VItem
|
|
114220
|
-
VImg: VImg
|
|
114221
|
-
VLabel: VLabel
|
|
114222
|
-
VKbd: VKbd
|
|
114223
114233
|
VList: VList
|
|
114224
114234
|
VListGroup: VListGroup
|
|
114225
114235
|
VListImg: VListImg
|
|
@@ -114229,56 +114239,59 @@ declare module 'vue' {
|
|
|
114229
114239
|
VListItemSubtitle: VListItemSubtitle
|
|
114230
114240
|
VListItemTitle: VListItemTitle
|
|
114231
114241
|
VListSubheader: VListSubheader
|
|
114232
|
-
|
|
114242
|
+
VInput: VInput
|
|
114243
|
+
VLabel: VLabel
|
|
114244
|
+
VKbd: VKbd
|
|
114233
114245
|
VMenu: VMenu
|
|
114246
|
+
VMain: VMain
|
|
114247
|
+
VMessages: VMessages
|
|
114234
114248
|
VNavigationDrawer: VNavigationDrawer
|
|
114235
114249
|
VNumberInput: VNumberInput
|
|
114236
|
-
VPagination: VPagination
|
|
114237
|
-
VMessages: VMessages
|
|
114238
114250
|
VOtpInput: VOtpInput
|
|
114239
|
-
|
|
114240
|
-
VProgressCircular: VProgressCircular
|
|
114251
|
+
VPagination: VPagination
|
|
114241
114252
|
VOverlay: VOverlay
|
|
114242
|
-
|
|
114253
|
+
VProgressCircular: VProgressCircular
|
|
114254
|
+
VProgressLinear: VProgressLinear
|
|
114243
114255
|
VSelectionControl: VSelectionControl
|
|
114244
|
-
|
|
114256
|
+
VSkeletonLoader: VSkeletonLoader
|
|
114257
|
+
VRating: VRating
|
|
114245
114258
|
VRadioGroup: VRadioGroup
|
|
114246
114259
|
VSelectionControlGroup: VSelectionControlGroup
|
|
114247
|
-
VSheet: VSheet
|
|
114248
|
-
VSlideGroup: VSlideGroup
|
|
114249
|
-
VSlideGroupItem: VSlideGroupItem
|
|
114250
|
-
VSkeletonLoader: VSkeletonLoader
|
|
114251
|
-
VSlider: VSlider
|
|
114252
114260
|
VSnackbar: VSnackbar
|
|
114253
|
-
|
|
114254
|
-
|
|
114255
|
-
|
|
114256
|
-
|
|
114257
|
-
VTabsWindowItem: VTabsWindowItem
|
|
114261
|
+
VSlider: VSlider
|
|
114262
|
+
VSheet: VSheet
|
|
114263
|
+
VSelect: VSelect
|
|
114264
|
+
VSystemBar: VSystemBar
|
|
114258
114265
|
VStepper: VStepper
|
|
114259
114266
|
VStepperActions: VStepperActions
|
|
114260
114267
|
VStepperHeader: VStepperHeader
|
|
114261
114268
|
VStepperItem: VStepperItem
|
|
114262
114269
|
VStepperWindow: VStepperWindow
|
|
114263
114270
|
VStepperWindowItem: VStepperWindowItem
|
|
114271
|
+
VSwitch: VSwitch
|
|
114272
|
+
VSlideGroup: VSlideGroup
|
|
114273
|
+
VSlideGroupItem: VSlideGroupItem
|
|
114274
|
+
VTab: VTab
|
|
114275
|
+
VTabs: VTabs
|
|
114276
|
+
VTabsWindow: VTabsWindow
|
|
114277
|
+
VTabsWindowItem: VTabsWindowItem
|
|
114264
114278
|
VTable: VTable
|
|
114265
|
-
VSystemBar: VSystemBar
|
|
114266
|
-
VTimePicker: VTimePicker
|
|
114267
|
-
VTimePickerClock: VTimePickerClock
|
|
114268
|
-
VTimePickerControls: VTimePickerControls
|
|
114269
|
-
VToolbar: VToolbar
|
|
114270
|
-
VToolbarTitle: VToolbarTitle
|
|
114271
|
-
VToolbarItems: VToolbarItems
|
|
114272
114279
|
VTextarea: VTextarea
|
|
114273
|
-
VTextField: VTextField
|
|
114274
|
-
VTooltip: VTooltip
|
|
114275
114280
|
VTimeline: VTimeline
|
|
114276
114281
|
VTimelineItem: VTimelineItem
|
|
114277
|
-
|
|
114278
|
-
|
|
114282
|
+
VTooltip: VTooltip
|
|
114283
|
+
VToolbar: VToolbar
|
|
114284
|
+
VToolbarTitle: VToolbarTitle
|
|
114285
|
+
VToolbarItems: VToolbarItems
|
|
114279
114286
|
VTreeview: VTreeview
|
|
114280
114287
|
VTreeviewItem: VTreeviewItem
|
|
114281
114288
|
VTreeviewGroup: VTreeviewGroup
|
|
114289
|
+
VTimePicker: VTimePicker
|
|
114290
|
+
VTimePickerClock: VTimePickerClock
|
|
114291
|
+
VTimePickerControls: VTimePickerControls
|
|
114292
|
+
VTextField: VTextField
|
|
114293
|
+
VWindow: VWindow
|
|
114294
|
+
VWindowItem: VWindowItem
|
|
114282
114295
|
VConfirmEdit: VConfirmEdit
|
|
114283
114296
|
VDataIterator: VDataIterator
|
|
114284
114297
|
VDefaultsProvider: VDefaultsProvider
|
|
@@ -114288,21 +114301,20 @@ declare module 'vue' {
|
|
|
114288
114301
|
VRow: VRow
|
|
114289
114302
|
VSpacer: VSpacer
|
|
114290
114303
|
VHover: VHover
|
|
114291
|
-
VLocaleProvider: VLocaleProvider
|
|
114292
114304
|
VLayout: VLayout
|
|
114293
114305
|
VLayoutItem: VLayoutItem
|
|
114294
114306
|
VLazy: VLazy
|
|
114307
|
+
VLocaleProvider: VLocaleProvider
|
|
114295
114308
|
VNoSsr: VNoSsr
|
|
114296
114309
|
VParallax: VParallax
|
|
114297
114310
|
VRadio: VRadio
|
|
114298
|
-
VRangeSlider: VRangeSlider
|
|
114299
114311
|
VResponsive: VResponsive
|
|
114300
|
-
|
|
114312
|
+
VRangeSlider: VRangeSlider
|
|
114301
114313
|
VSnackbarQueue: VSnackbarQueue
|
|
114314
|
+
VSparkline: VSparkline
|
|
114302
114315
|
VSpeedDial: VSpeedDial
|
|
114303
114316
|
VThemeProvider: VThemeProvider
|
|
114304
114317
|
VValidation: VValidation
|
|
114305
|
-
VVirtualScroll: VVirtualScroll
|
|
114306
114318
|
VFabTransition: VFabTransition
|
|
114307
114319
|
VDialogBottomTransition: VDialogBottomTransition
|
|
114308
114320
|
VDialogTopTransition: VDialogTopTransition
|
|
@@ -114319,24 +114331,25 @@ declare module 'vue' {
|
|
|
114319
114331
|
VExpandTransition: VExpandTransition
|
|
114320
114332
|
VExpandXTransition: VExpandXTransition
|
|
114321
114333
|
VDialogTransition: VDialogTransition
|
|
114334
|
+
VVirtualScroll: VVirtualScroll
|
|
114322
114335
|
VColorInput: VColorInput
|
|
114323
|
-
|
|
114324
|
-
VStepperVerticalItem: VStepperVerticalItem
|
|
114325
|
-
VStepperVerticalActions: VStepperVerticalActions
|
|
114326
|
-
VPie: VPie
|
|
114327
|
-
VPieSegment: VPieSegment
|
|
114328
|
-
VPieTooltip: VPieTooltip
|
|
114336
|
+
VIconBtn: VIconBtn
|
|
114329
114337
|
VPicker: VPicker
|
|
114330
114338
|
VPickerTitle: VPickerTitle
|
|
114331
|
-
VIconBtn: VIconBtn
|
|
114332
114339
|
VVideo: VVideo
|
|
114333
114340
|
VVideoControls: VVideoControls
|
|
114334
114341
|
VVideoVolume: VVideoVolume
|
|
114342
|
+
VStepperVertical: VStepperVertical
|
|
114343
|
+
VStepperVerticalItem: VStepperVerticalItem
|
|
114344
|
+
VStepperVerticalActions: VStepperVerticalActions
|
|
114335
114345
|
VFileUpload: VFileUpload
|
|
114336
114346
|
VFileUploadItem: VFileUploadItem
|
|
114337
|
-
|
|
114338
|
-
|
|
114347
|
+
VPie: VPie
|
|
114348
|
+
VPieSegment: VPieSegment
|
|
114349
|
+
VPieTooltip: VPieTooltip
|
|
114339
114350
|
VDateInput: VDateInput
|
|
114351
|
+
VMaskInput: VMaskInput
|
|
114352
|
+
VPullToRefresh: VPullToRefresh
|
|
114340
114353
|
}
|
|
114341
114354
|
export interface GlobalDirectives {
|
|
114342
114355
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.11.
|
|
2
|
+
* Vuetify v3.11.2
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -8460,7 +8460,7 @@ const makeVSlideGroupProps = propsFactory({
|
|
|
8460
8460
|
},
|
|
8461
8461
|
showArrows: {
|
|
8462
8462
|
type: [Boolean, String],
|
|
8463
|
-
validator: v => typeof v === 'boolean' || ['always', 'desktop', 'mobile'].includes(v)
|
|
8463
|
+
validator: v => typeof v === 'boolean' || ['always', 'desktop', 'mobile', 'never'].includes(v)
|
|
8464
8464
|
},
|
|
8465
8465
|
...makeComponentProps(),
|
|
8466
8466
|
...makeDisplayProps({
|
|
@@ -8694,6 +8694,9 @@ const VSlideGroup = genericComponent()({
|
|
|
8694
8694
|
const hasOverflowOrScroll = computed(() => isOverflowing.value || Math.abs(scrollOffset.value) > 0);
|
|
8695
8695
|
const hasAffixes = computed(() => {
|
|
8696
8696
|
switch (props.showArrows) {
|
|
8697
|
+
case 'never':
|
|
8698
|
+
return false;
|
|
8699
|
+
|
|
8697
8700
|
// Always show arrows on desktop & mobile
|
|
8698
8701
|
case 'always':
|
|
8699
8702
|
return true;
|
|
@@ -13160,7 +13163,9 @@ function useAutocomplete(props) {
|
|
|
13160
13163
|
function useAutofocus(props) {
|
|
13161
13164
|
function onIntersect(isIntersecting, entries) {
|
|
13162
13165
|
if (!props.autofocus || !isIntersecting) return;
|
|
13163
|
-
entries[0].target
|
|
13166
|
+
const el = entries[0].target;
|
|
13167
|
+
const target = el.matches('input,textarea') ? el : el.querySelector('input,textarea');
|
|
13168
|
+
target?.focus();
|
|
13164
13169
|
}
|
|
13165
13170
|
return {
|
|
13166
13171
|
onIntersect
|
|
@@ -13338,7 +13343,7 @@ const VTextField = genericComponent()({
|
|
|
13338
13343
|
},
|
|
13339
13344
|
controlRef
|
|
13340
13345
|
} = _ref3;
|
|
13341
|
-
const inputNode =
|
|
13346
|
+
const inputNode = createElementVNode("input", mergeProps({
|
|
13342
13347
|
"ref": val => inputRef.value = controlRef.value = val,
|
|
13343
13348
|
"value": model.value,
|
|
13344
13349
|
"onInput": onInput,
|
|
@@ -13353,21 +13358,19 @@ const VTextField = genericComponent()({
|
|
|
13353
13358
|
"type": props.type,
|
|
13354
13359
|
"onFocus": focus,
|
|
13355
13360
|
"onBlur": blur
|
|
13356
|
-
}, slotProps, inputAttrs), null)
|
|
13357
|
-
handler: onIntersect
|
|
13358
|
-
}, null, {
|
|
13359
|
-
once: true
|
|
13360
|
-
}]]);
|
|
13361
|
+
}, slotProps, inputAttrs), null);
|
|
13361
13362
|
return createElementVNode(Fragment, null, [props.prefix && createElementVNode("span", {
|
|
13362
13363
|
"class": "v-text-field__prefix"
|
|
13363
13364
|
}, [createElementVNode("span", {
|
|
13364
13365
|
"class": "v-text-field__prefix__text"
|
|
13365
|
-
}, [props.prefix])]), slots.default ? createElementVNode("div", {
|
|
13366
|
+
}, [props.prefix])]), withDirectives(slots.default ? createElementVNode("div", {
|
|
13366
13367
|
"class": normalizeClass(fieldClass),
|
|
13367
13368
|
"data-no-activator": ""
|
|
13368
13369
|
}, [slots.default(), inputNode]) : cloneVNode(inputNode, {
|
|
13369
13370
|
class: fieldClass
|
|
13370
|
-
}),
|
|
13371
|
+
}), [[Intersect, onIntersect, null, {
|
|
13372
|
+
once: true
|
|
13373
|
+
}]]), props.suffix && createElementVNode("span", {
|
|
13371
13374
|
"class": "v-text-field__suffix"
|
|
13372
13375
|
}, [createElementVNode("span", {
|
|
13373
13376
|
"class": "v-text-field__suffix__text"
|
|
@@ -25028,6 +25031,7 @@ const makeVDataTableHeadersProps = propsFactory({
|
|
|
25028
25031
|
disableSort: Boolean,
|
|
25029
25032
|
fixedHeader: Boolean,
|
|
25030
25033
|
multiSort: Boolean,
|
|
25034
|
+
initialSortOrder: String,
|
|
25031
25035
|
sortAscIcon: {
|
|
25032
25036
|
type: IconValue,
|
|
25033
25037
|
default: '$sortAsc'
|
|
@@ -25090,8 +25094,7 @@ const VDataTableHeaders = genericComponent()({
|
|
|
25090
25094
|
}
|
|
25091
25095
|
function getSortIcon(column) {
|
|
25092
25096
|
const item = sortBy.value.find(item => item.key === column.key);
|
|
25093
|
-
|
|
25094
|
-
return item.order === 'asc' ? props.sortAscIcon : props.sortDescIcon;
|
|
25097
|
+
return !item && props.initialSortOrder === 'asc' || item?.order === 'asc' ? props.sortAscIcon : props.sortDescIcon;
|
|
25095
25098
|
}
|
|
25096
25099
|
const {
|
|
25097
25100
|
backgroundColorClasses,
|
|
@@ -25191,6 +25194,7 @@ const VDataTableHeaders = genericComponent()({
|
|
|
25191
25194
|
const displayItems = computed(() => {
|
|
25192
25195
|
return columns.value.filter(column => column?.sortable && !props.disableSort);
|
|
25193
25196
|
});
|
|
25197
|
+
const showSelectColumn = columns.value.find(column => column.key === 'data-table-select');
|
|
25194
25198
|
return createVNode(VDataTableColumn, mergeProps({
|
|
25195
25199
|
"tag": "th",
|
|
25196
25200
|
"class": [...headerCellClasses.value],
|
|
@@ -25208,16 +25212,15 @@ const VDataTableHeaders = genericComponent()({
|
|
|
25208
25212
|
"label": t('$vuetify.dataTable.sortBy'),
|
|
25209
25213
|
"multiple": props.multiSort,
|
|
25210
25214
|
"variant": "underlined",
|
|
25211
|
-
"onClick:clear": () => sortBy.value = []
|
|
25212
|
-
"onClick:append": () => selectAll(!allSelected.value)
|
|
25215
|
+
"onClick:clear": () => sortBy.value = []
|
|
25213
25216
|
}, {
|
|
25214
|
-
append: () => createVNode(VCheckboxBtn, {
|
|
25217
|
+
append: showSelectColumn ? () => createVNode(VCheckboxBtn, {
|
|
25215
25218
|
"color": props.color,
|
|
25216
25219
|
"density": "compact",
|
|
25217
25220
|
"modelValue": allSelected.value,
|
|
25218
25221
|
"indeterminate": someSelected.value && !allSelected.value,
|
|
25219
|
-
"onUpdate:modelValue": selectAll
|
|
25220
|
-
}, null),
|
|
25222
|
+
"onUpdate:modelValue": () => selectAll(!allSelected.value)
|
|
25223
|
+
}, null) : undefined,
|
|
25221
25224
|
chip: props => createVNode(VChip, {
|
|
25222
25225
|
"onClick": props.item.raw?.sortable ? () => toggleSort(props.item.raw) : undefined,
|
|
25223
25226
|
"onMousedown": e => {
|
|
@@ -25773,7 +25776,7 @@ const makeDataTableProps = propsFactory({
|
|
|
25773
25776
|
...makeDataTableItemsProps(),
|
|
25774
25777
|
...makeDataTableSelectProps(),
|
|
25775
25778
|
...makeDataTableSortProps(),
|
|
25776
|
-
...omit(makeVDataTableHeadersProps(), ['multiSort']),
|
|
25779
|
+
...omit(makeVDataTableHeadersProps(), ['multiSort', 'initialSortOrder']),
|
|
25777
25780
|
...makeVTableProps()
|
|
25778
25781
|
}, 'DataTable');
|
|
25779
25782
|
const makeVDataTableProps = propsFactory({
|
|
@@ -27665,7 +27668,10 @@ const VDatePicker = genericComponent()({
|
|
|
27665
27668
|
const formattedDate = model.value[0] && adapter.isValid(model.value[0]) ? adapter.format(adapter.date(model.value[0]), props.headerDateFormat) : t(props.header);
|
|
27666
27669
|
return props.landscape && formattedDate.split(' ').length === 3 ? formattedDate.replace(' ', '\n') : formattedDate;
|
|
27667
27670
|
});
|
|
27668
|
-
const date = toRef(() =>
|
|
27671
|
+
const date = toRef(() => {
|
|
27672
|
+
const monthTwoDigits = String(month.value + 1).padStart(2, '0');
|
|
27673
|
+
return adapter.parseISO(`${year.value}-${monthTwoDigits}-01`);
|
|
27674
|
+
});
|
|
27669
27675
|
const monthYearText = toRef(() => adapter.format(date.value, 'monthAndYear'));
|
|
27670
27676
|
const monthText = toRef(() => adapter.format(date.value, 'monthShort'));
|
|
27671
27677
|
const yearText = toRef(() => adapter.format(date.value, 'year'));
|
|
@@ -27767,7 +27773,8 @@ const VDatePicker = genericComponent()({
|
|
|
27767
27773
|
function onClickNextYear() {
|
|
27768
27774
|
year.value++;
|
|
27769
27775
|
if (maxDate.value) {
|
|
27770
|
-
const
|
|
27776
|
+
const monthTwoDigits = String(month.value + 1).padStart(2, '0');
|
|
27777
|
+
const monthStart = adapter.parseISO(`${year.value}-${monthTwoDigits}-01`);
|
|
27771
27778
|
if (adapter.isAfter(monthStart, maxDate.value)) {
|
|
27772
27779
|
month.value = adapter.getMonth(maxDate.value);
|
|
27773
27780
|
}
|
|
@@ -27777,7 +27784,8 @@ const VDatePicker = genericComponent()({
|
|
|
27777
27784
|
function onClickPrevYear() {
|
|
27778
27785
|
year.value--;
|
|
27779
27786
|
if (minDate.value) {
|
|
27780
|
-
const
|
|
27787
|
+
const monthTwoDigits = String(month.value + 1).padStart(2, '0');
|
|
27788
|
+
const monthStart = adapter.endOfMonth(adapter.parseISO(`${year.value}-${monthTwoDigits}-01`));
|
|
27781
27789
|
if (adapter.isAfter(minDate.value, monthStart)) {
|
|
27782
27790
|
month.value = adapter.getMonth(minDate.value);
|
|
27783
27791
|
}
|
|
@@ -30634,7 +30642,7 @@ const VNumberInput = genericComponent()({
|
|
|
30634
30642
|
});
|
|
30635
30643
|
const isOutOfRange = computed(() => {
|
|
30636
30644
|
if (_lastParsedValue.value === null) return false;
|
|
30637
|
-
const numberFromText = Number(_inputText.value);
|
|
30645
|
+
const numberFromText = Number(_inputText.value?.replace(decimalSeparator.value, '.'));
|
|
30638
30646
|
return numberFromText !== clamp(numberFromText, props.min, props.max);
|
|
30639
30647
|
});
|
|
30640
30648
|
const canIncrease = computed(() => {
|
|
@@ -33504,6 +33512,7 @@ const makeVTabProps = propsFactory({
|
|
|
33504
33512
|
sliderTransition: String,
|
|
33505
33513
|
sliderTransitionDuration: [String, Number],
|
|
33506
33514
|
hideSlider: Boolean,
|
|
33515
|
+
inset: Boolean,
|
|
33507
33516
|
direction: {
|
|
33508
33517
|
type: String,
|
|
33509
33518
|
default: 'horizontal'
|
|
@@ -33598,8 +33607,8 @@ const VTab = genericComponent()({
|
|
|
33598
33607
|
return createVNode(VBtn, mergeProps({
|
|
33599
33608
|
"symbol": VTabsSymbol,
|
|
33600
33609
|
"ref": rootEl,
|
|
33601
|
-
"class": ['v-tab', props.class, isSelected.value ? insetColorClasses.value : []],
|
|
33602
|
-
"style": [props.style, isSelected.value ? insetColorStyles.value : []],
|
|
33610
|
+
"class": ['v-tab', props.class, isSelected.value && props.inset ? insetColorClasses.value : []],
|
|
33611
|
+
"style": [props.style, isSelected.value && props.inset ? insetColorStyles.value : []],
|
|
33603
33612
|
"tabindex": isSelected.value ? 0 : -1,
|
|
33604
33613
|
"role": "tab",
|
|
33605
33614
|
"aria-selected": String(isSelected.value),
|
|
@@ -33762,6 +33771,7 @@ const VTabs = genericComponent()({
|
|
|
33762
33771
|
direction: toRef(props, 'direction'),
|
|
33763
33772
|
stacked: toRef(props, 'stacked'),
|
|
33764
33773
|
fixed: toRef(props, 'fixedTabs'),
|
|
33774
|
+
inset: toRef(props, 'inset'),
|
|
33765
33775
|
sliderColor: toRef(props, 'sliderColor'),
|
|
33766
33776
|
sliderTransition: toRef(props, 'sliderTransition'),
|
|
33767
33777
|
sliderTransitionDuration: toRef(props, 'sliderTransitionDuration'),
|
|
@@ -36463,7 +36473,7 @@ function createVuetify$1() {
|
|
|
36463
36473
|
};
|
|
36464
36474
|
});
|
|
36465
36475
|
}
|
|
36466
|
-
const version$1 = "3.11.
|
|
36476
|
+
const version$1 = "3.11.2";
|
|
36467
36477
|
createVuetify$1.version = version$1;
|
|
36468
36478
|
|
|
36469
36479
|
// Vue's inject() can only be used in setup
|
|
@@ -36488,7 +36498,7 @@ const createVuetify = function () {
|
|
|
36488
36498
|
...options
|
|
36489
36499
|
});
|
|
36490
36500
|
};
|
|
36491
|
-
const version = "3.11.
|
|
36501
|
+
const version = "3.11.2";
|
|
36492
36502
|
createVuetify.version = version;
|
|
36493
36503
|
|
|
36494
36504
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useHotkey, useLayout, useLocale, useMask, useRtl, useTheme, version };
|