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-labs.d.ts
CHANGED
|
@@ -46124,6 +46124,7 @@ declare const VDataTableHeaders: {
|
|
|
46124
46124
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
46125
46125
|
loading?: string | boolean | undefined;
|
|
46126
46126
|
color?: string | undefined;
|
|
46127
|
+
initialSortOrder?: "asc" | "desc" | undefined;
|
|
46127
46128
|
headerProps?: Record<string, any> | undefined;
|
|
46128
46129
|
} & {
|
|
46129
46130
|
$children?: {
|
|
@@ -46193,6 +46194,7 @@ declare const VDataTableHeaders: {
|
|
|
46193
46194
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
46194
46195
|
loading?: string | boolean | undefined;
|
|
46195
46196
|
color?: string | undefined;
|
|
46197
|
+
initialSortOrder?: "asc" | "desc" | undefined;
|
|
46196
46198
|
headerProps?: Record<string, any> | undefined;
|
|
46197
46199
|
} & {
|
|
46198
46200
|
$children?: {
|
|
@@ -46243,6 +46245,7 @@ declare const VDataTableHeaders: {
|
|
|
46243
46245
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
46244
46246
|
loading?: string | boolean | undefined;
|
|
46245
46247
|
color?: string | undefined;
|
|
46248
|
+
initialSortOrder?: "asc" | "desc" | undefined;
|
|
46246
46249
|
headerProps?: Record<string, any> | undefined;
|
|
46247
46250
|
} & {
|
|
46248
46251
|
$children?: {
|
|
@@ -46308,6 +46311,7 @@ declare const VDataTableHeaders: {
|
|
|
46308
46311
|
disableSort: BooleanConstructor;
|
|
46309
46312
|
fixedHeader: BooleanConstructor;
|
|
46310
46313
|
multiSort: BooleanConstructor;
|
|
46314
|
+
initialSortOrder: PropType<"asc" | "desc">;
|
|
46311
46315
|
sortAscIcon: {
|
|
46312
46316
|
type: PropType<IconValue>;
|
|
46313
46317
|
default: string;
|
|
@@ -46336,6 +46340,7 @@ declare const VDataTableHeaders: {
|
|
|
46336
46340
|
disableSort: BooleanConstructor;
|
|
46337
46341
|
fixedHeader: BooleanConstructor;
|
|
46338
46342
|
multiSort: BooleanConstructor;
|
|
46343
|
+
initialSortOrder: PropType<"asc" | "desc">;
|
|
46339
46344
|
sortAscIcon: {
|
|
46340
46345
|
type: PropType<IconValue>;
|
|
46341
46346
|
default: string;
|
|
@@ -98683,6 +98688,7 @@ declare const VTab: {
|
|
|
98683
98688
|
};
|
|
98684
98689
|
fixed: boolean;
|
|
98685
98690
|
hideSlider: boolean;
|
|
98691
|
+
inset: boolean;
|
|
98686
98692
|
direction: "horizontal" | "vertical";
|
|
98687
98693
|
} & {
|
|
98688
98694
|
theme?: string | undefined;
|
|
@@ -99110,6 +99116,7 @@ declare const VTab: {
|
|
|
99110
99116
|
text: string | number | boolean;
|
|
99111
99117
|
fixed: boolean;
|
|
99112
99118
|
hideSlider: boolean;
|
|
99119
|
+
inset: boolean;
|
|
99113
99120
|
direction: "horizontal" | "vertical";
|
|
99114
99121
|
}, true, {}, vue.SlotsType<Partial<{
|
|
99115
99122
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -99151,6 +99158,7 @@ declare const VTab: {
|
|
|
99151
99158
|
};
|
|
99152
99159
|
fixed: boolean;
|
|
99153
99160
|
hideSlider: boolean;
|
|
99161
|
+
inset: boolean;
|
|
99154
99162
|
direction: "horizontal" | "vertical";
|
|
99155
99163
|
} & {
|
|
99156
99164
|
theme?: string | undefined;
|
|
@@ -99578,6 +99586,7 @@ declare const VTab: {
|
|
|
99578
99586
|
text: string | number | boolean;
|
|
99579
99587
|
fixed: boolean;
|
|
99580
99588
|
hideSlider: boolean;
|
|
99589
|
+
inset: boolean;
|
|
99581
99590
|
direction: "horizontal" | "vertical";
|
|
99582
99591
|
}>;
|
|
99583
99592
|
__isFragment?: undefined;
|
|
@@ -99603,6 +99612,7 @@ declare const VTab: {
|
|
|
99603
99612
|
};
|
|
99604
99613
|
fixed: boolean;
|
|
99605
99614
|
hideSlider: boolean;
|
|
99615
|
+
inset: boolean;
|
|
99606
99616
|
direction: "horizontal" | "vertical";
|
|
99607
99617
|
} & {
|
|
99608
99618
|
theme?: string | undefined;
|
|
@@ -100030,6 +100040,7 @@ declare const VTab: {
|
|
|
100030
100040
|
text: string | number | boolean;
|
|
100031
100041
|
fixed: boolean;
|
|
100032
100042
|
hideSlider: boolean;
|
|
100043
|
+
inset: boolean;
|
|
100033
100044
|
direction: "horizontal" | "vertical";
|
|
100034
100045
|
}, {}, string, vue.SlotsType<Partial<{
|
|
100035
100046
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -100131,6 +100142,7 @@ declare const VTab: {
|
|
|
100131
100142
|
sliderTransition: PropType<"fade" | "grow" | "shift">;
|
|
100132
100143
|
sliderTransitionDuration: (NumberConstructor | StringConstructor)[];
|
|
100133
100144
|
hideSlider: BooleanConstructor;
|
|
100145
|
+
inset: BooleanConstructor;
|
|
100134
100146
|
direction: {
|
|
100135
100147
|
type: PropType<"horizontal" | "vertical">;
|
|
100136
100148
|
default: string;
|
|
@@ -100222,6 +100234,7 @@ declare const VTab: {
|
|
|
100222
100234
|
sliderTransition: PropType<"fade" | "grow" | "shift">;
|
|
100223
100235
|
sliderTransitionDuration: (NumberConstructor | StringConstructor)[];
|
|
100224
100236
|
hideSlider: BooleanConstructor;
|
|
100237
|
+
inset: BooleanConstructor;
|
|
100225
100238
|
direction: {
|
|
100226
100239
|
type: PropType<"horizontal" | "vertical">;
|
|
100227
100240
|
default: string;
|
|
@@ -144018,42 +144031,42 @@ declare module 'vue' {
|
|
|
144018
144031
|
$children?: VNodeChild
|
|
144019
144032
|
}
|
|
144020
144033
|
export interface GlobalComponents {
|
|
144034
|
+
VAutocomplete: VAutocomplete
|
|
144035
|
+
VApp: VApp
|
|
144036
|
+
VBadge: VBadge
|
|
144037
|
+
VBottomNavigation: VBottomNavigation
|
|
144021
144038
|
VAppBar: VAppBar
|
|
144022
144039
|
VAppBarNavIcon: VAppBarNavIcon
|
|
144023
144040
|
VAppBarTitle: VAppBarTitle
|
|
144024
144041
|
VAvatar: VAvatar
|
|
144025
|
-
VApp: VApp
|
|
144026
|
-
VAlert: VAlert
|
|
144027
|
-
VAlertTitle: VAlertTitle
|
|
144028
|
-
VBadge: VBadge
|
|
144029
|
-
VBottomSheet: VBottomSheet
|
|
144030
|
-
VBottomNavigation: VBottomNavigation
|
|
144031
144042
|
VBanner: VBanner
|
|
144032
144043
|
VBannerActions: VBannerActions
|
|
144033
144044
|
VBannerText: VBannerText
|
|
144034
|
-
VAutocomplete: VAutocomplete
|
|
144035
|
-
VBtnGroup: VBtnGroup
|
|
144036
144045
|
VBtnToggle: VBtnToggle
|
|
144046
|
+
VBtn: VBtn
|
|
144047
|
+
VBottomSheet: VBottomSheet
|
|
144048
|
+
VAlert: VAlert
|
|
144049
|
+
VAlertTitle: VAlertTitle
|
|
144050
|
+
VBtnGroup: VBtnGroup
|
|
144037
144051
|
VBreadcrumbs: VBreadcrumbs
|
|
144038
144052
|
VBreadcrumbsItem: VBreadcrumbsItem
|
|
144039
144053
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
144040
|
-
VBtn: VBtn
|
|
144041
144054
|
VCalendar: VCalendar
|
|
144042
|
-
|
|
144043
|
-
|
|
144055
|
+
VCode: VCode
|
|
144056
|
+
VCheckbox: VCheckbox
|
|
144057
|
+
VCheckboxBtn: VCheckboxBtn
|
|
144044
144058
|
VCard: VCard
|
|
144045
144059
|
VCardActions: VCardActions
|
|
144046
144060
|
VCardItem: VCardItem
|
|
144047
144061
|
VCardSubtitle: VCardSubtitle
|
|
144048
144062
|
VCardText: VCardText
|
|
144049
144063
|
VCardTitle: VCardTitle
|
|
144050
|
-
|
|
144064
|
+
VChipGroup: VChipGroup
|
|
144065
|
+
VCarousel: VCarousel
|
|
144066
|
+
VCarouselItem: VCarouselItem
|
|
144051
144067
|
VChip: VChip
|
|
144052
|
-
VCheckbox: VCheckbox
|
|
144053
|
-
VCheckboxBtn: VCheckboxBtn
|
|
144054
|
-
VCombobox: VCombobox
|
|
144055
144068
|
VColorPicker: VColorPicker
|
|
144056
|
-
|
|
144069
|
+
VCombobox: VCombobox
|
|
144057
144070
|
VCounter: VCounter
|
|
144058
144071
|
VDatePicker: VDatePicker
|
|
144059
144072
|
VDatePickerControls: VDatePickerControls
|
|
@@ -144061,6 +144074,13 @@ declare module 'vue' {
|
|
|
144061
144074
|
VDatePickerMonth: VDatePickerMonth
|
|
144062
144075
|
VDatePickerMonths: VDatePickerMonths
|
|
144063
144076
|
VDatePickerYears: VDatePickerYears
|
|
144077
|
+
VDialog: VDialog
|
|
144078
|
+
VDivider: VDivider
|
|
144079
|
+
VExpansionPanels: VExpansionPanels
|
|
144080
|
+
VExpansionPanel: VExpansionPanel
|
|
144081
|
+
VExpansionPanelText: VExpansionPanelText
|
|
144082
|
+
VExpansionPanelTitle: VExpansionPanelTitle
|
|
144083
|
+
VEmptyState: VEmptyState
|
|
144064
144084
|
VDataTable: VDataTable
|
|
144065
144085
|
VDataTableHeaders: VDataTableHeaders
|
|
144066
144086
|
VDataTableFooter: VDataTableFooter
|
|
@@ -144068,31 +144088,21 @@ declare module 'vue' {
|
|
|
144068
144088
|
VDataTableRow: VDataTableRow
|
|
144069
144089
|
VDataTableVirtual: VDataTableVirtual
|
|
144070
144090
|
VDataTableServer: VDataTableServer
|
|
144071
|
-
VExpansionPanels: VExpansionPanels
|
|
144072
|
-
VExpansionPanel: VExpansionPanel
|
|
144073
|
-
VExpansionPanelText: VExpansionPanelText
|
|
144074
|
-
VExpansionPanelTitle: VExpansionPanelTitle
|
|
144075
|
-
VDialog: VDialog
|
|
144076
144091
|
VFab: VFab
|
|
144077
|
-
|
|
144092
|
+
VFooter: VFooter
|
|
144093
|
+
VFileInput: VFileInput
|
|
144078
144094
|
VField: VField
|
|
144079
144095
|
VFieldLabel: VFieldLabel
|
|
144080
|
-
VEmptyState: VEmptyState
|
|
144081
|
-
VFileInput: VFileInput
|
|
144082
|
-
VFooter: VFooter
|
|
144083
|
-
VHotkey: VHotkey
|
|
144084
|
-
VInfiniteScroll: VInfiniteScroll
|
|
144085
144096
|
VIcon: VIcon
|
|
144086
144097
|
VComponentIcon: VComponentIcon
|
|
144087
144098
|
VSvgIcon: VSvgIcon
|
|
144088
144099
|
VLigatureIcon: VLigatureIcon
|
|
144089
144100
|
VClassIcon: VClassIcon
|
|
144090
|
-
|
|
144101
|
+
VInfiniteScroll: VInfiniteScroll
|
|
144102
|
+
VImg: VImg
|
|
144103
|
+
VHotkey: VHotkey
|
|
144091
144104
|
VItemGroup: VItemGroup
|
|
144092
144105
|
VItem: VItem
|
|
144093
|
-
VImg: VImg
|
|
144094
|
-
VLabel: VLabel
|
|
144095
|
-
VKbd: VKbd
|
|
144096
144106
|
VList: VList
|
|
144097
144107
|
VListGroup: VListGroup
|
|
144098
144108
|
VListImg: VListImg
|
|
@@ -144102,56 +144112,59 @@ declare module 'vue' {
|
|
|
144102
144112
|
VListItemSubtitle: VListItemSubtitle
|
|
144103
144113
|
VListItemTitle: VListItemTitle
|
|
144104
144114
|
VListSubheader: VListSubheader
|
|
144105
|
-
|
|
144115
|
+
VInput: VInput
|
|
144116
|
+
VLabel: VLabel
|
|
144117
|
+
VKbd: VKbd
|
|
144106
144118
|
VMenu: VMenu
|
|
144119
|
+
VMain: VMain
|
|
144120
|
+
VMessages: VMessages
|
|
144107
144121
|
VNavigationDrawer: VNavigationDrawer
|
|
144108
144122
|
VNumberInput: VNumberInput
|
|
144109
|
-
VPagination: VPagination
|
|
144110
|
-
VMessages: VMessages
|
|
144111
144123
|
VOtpInput: VOtpInput
|
|
144112
|
-
|
|
144113
|
-
VProgressCircular: VProgressCircular
|
|
144124
|
+
VPagination: VPagination
|
|
144114
144125
|
VOverlay: VOverlay
|
|
144115
|
-
|
|
144126
|
+
VProgressCircular: VProgressCircular
|
|
144127
|
+
VProgressLinear: VProgressLinear
|
|
144116
144128
|
VSelectionControl: VSelectionControl
|
|
144117
|
-
|
|
144129
|
+
VSkeletonLoader: VSkeletonLoader
|
|
144130
|
+
VRating: VRating
|
|
144118
144131
|
VRadioGroup: VRadioGroup
|
|
144119
144132
|
VSelectionControlGroup: VSelectionControlGroup
|
|
144120
|
-
VSheet: VSheet
|
|
144121
|
-
VSlideGroup: VSlideGroup
|
|
144122
|
-
VSlideGroupItem: VSlideGroupItem
|
|
144123
|
-
VSkeletonLoader: VSkeletonLoader
|
|
144124
|
-
VSlider: VSlider
|
|
144125
144133
|
VSnackbar: VSnackbar
|
|
144126
|
-
|
|
144127
|
-
|
|
144128
|
-
|
|
144129
|
-
|
|
144130
|
-
VTabsWindowItem: VTabsWindowItem
|
|
144134
|
+
VSlider: VSlider
|
|
144135
|
+
VSheet: VSheet
|
|
144136
|
+
VSelect: VSelect
|
|
144137
|
+
VSystemBar: VSystemBar
|
|
144131
144138
|
VStepper: VStepper
|
|
144132
144139
|
VStepperActions: VStepperActions
|
|
144133
144140
|
VStepperHeader: VStepperHeader
|
|
144134
144141
|
VStepperItem: VStepperItem
|
|
144135
144142
|
VStepperWindow: VStepperWindow
|
|
144136
144143
|
VStepperWindowItem: VStepperWindowItem
|
|
144144
|
+
VSwitch: VSwitch
|
|
144145
|
+
VSlideGroup: VSlideGroup
|
|
144146
|
+
VSlideGroupItem: VSlideGroupItem
|
|
144147
|
+
VTab: VTab
|
|
144148
|
+
VTabs: VTabs
|
|
144149
|
+
VTabsWindow: VTabsWindow
|
|
144150
|
+
VTabsWindowItem: VTabsWindowItem
|
|
144137
144151
|
VTable: VTable
|
|
144138
|
-
VSystemBar: VSystemBar
|
|
144139
|
-
VTimePicker: VTimePicker
|
|
144140
|
-
VTimePickerClock: VTimePickerClock
|
|
144141
|
-
VTimePickerControls: VTimePickerControls
|
|
144142
|
-
VToolbar: VToolbar
|
|
144143
|
-
VToolbarTitle: VToolbarTitle
|
|
144144
|
-
VToolbarItems: VToolbarItems
|
|
144145
144152
|
VTextarea: VTextarea
|
|
144146
|
-
VTextField: VTextField
|
|
144147
|
-
VTooltip: VTooltip
|
|
144148
144153
|
VTimeline: VTimeline
|
|
144149
144154
|
VTimelineItem: VTimelineItem
|
|
144150
|
-
|
|
144151
|
-
|
|
144155
|
+
VTooltip: VTooltip
|
|
144156
|
+
VToolbar: VToolbar
|
|
144157
|
+
VToolbarTitle: VToolbarTitle
|
|
144158
|
+
VToolbarItems: VToolbarItems
|
|
144152
144159
|
VTreeview: VTreeview
|
|
144153
144160
|
VTreeviewItem: VTreeviewItem
|
|
144154
144161
|
VTreeviewGroup: VTreeviewGroup
|
|
144162
|
+
VTimePicker: VTimePicker
|
|
144163
|
+
VTimePickerClock: VTimePickerClock
|
|
144164
|
+
VTimePickerControls: VTimePickerControls
|
|
144165
|
+
VTextField: VTextField
|
|
144166
|
+
VWindow: VWindow
|
|
144167
|
+
VWindowItem: VWindowItem
|
|
144155
144168
|
VConfirmEdit: VConfirmEdit
|
|
144156
144169
|
VDataIterator: VDataIterator
|
|
144157
144170
|
VDefaultsProvider: VDefaultsProvider
|
|
@@ -144161,21 +144174,20 @@ declare module 'vue' {
|
|
|
144161
144174
|
VRow: VRow
|
|
144162
144175
|
VSpacer: VSpacer
|
|
144163
144176
|
VHover: VHover
|
|
144164
|
-
VLocaleProvider: VLocaleProvider
|
|
144165
144177
|
VLayout: VLayout
|
|
144166
144178
|
VLayoutItem: VLayoutItem
|
|
144167
144179
|
VLazy: VLazy
|
|
144180
|
+
VLocaleProvider: VLocaleProvider
|
|
144168
144181
|
VNoSsr: VNoSsr
|
|
144169
144182
|
VParallax: VParallax
|
|
144170
144183
|
VRadio: VRadio
|
|
144171
|
-
VRangeSlider: VRangeSlider
|
|
144172
144184
|
VResponsive: VResponsive
|
|
144173
|
-
|
|
144185
|
+
VRangeSlider: VRangeSlider
|
|
144174
144186
|
VSnackbarQueue: VSnackbarQueue
|
|
144187
|
+
VSparkline: VSparkline
|
|
144175
144188
|
VSpeedDial: VSpeedDial
|
|
144176
144189
|
VThemeProvider: VThemeProvider
|
|
144177
144190
|
VValidation: VValidation
|
|
144178
|
-
VVirtualScroll: VVirtualScroll
|
|
144179
144191
|
VFabTransition: VFabTransition
|
|
144180
144192
|
VDialogBottomTransition: VDialogBottomTransition
|
|
144181
144193
|
VDialogTopTransition: VDialogTopTransition
|
|
@@ -144192,24 +144204,25 @@ declare module 'vue' {
|
|
|
144192
144204
|
VExpandTransition: VExpandTransition
|
|
144193
144205
|
VExpandXTransition: VExpandXTransition
|
|
144194
144206
|
VDialogTransition: VDialogTransition
|
|
144207
|
+
VVirtualScroll: VVirtualScroll
|
|
144195
144208
|
VColorInput: VColorInput
|
|
144196
|
-
|
|
144197
|
-
VStepperVerticalItem: VStepperVerticalItem
|
|
144198
|
-
VStepperVerticalActions: VStepperVerticalActions
|
|
144199
|
-
VPie: VPie
|
|
144200
|
-
VPieSegment: VPieSegment
|
|
144201
|
-
VPieTooltip: VPieTooltip
|
|
144209
|
+
VIconBtn: VIconBtn
|
|
144202
144210
|
VPicker: VPicker
|
|
144203
144211
|
VPickerTitle: VPickerTitle
|
|
144204
|
-
VIconBtn: VIconBtn
|
|
144205
144212
|
VVideo: VVideo
|
|
144206
144213
|
VVideoControls: VVideoControls
|
|
144207
144214
|
VVideoVolume: VVideoVolume
|
|
144215
|
+
VStepperVertical: VStepperVertical
|
|
144216
|
+
VStepperVerticalItem: VStepperVerticalItem
|
|
144217
|
+
VStepperVerticalActions: VStepperVerticalActions
|
|
144208
144218
|
VFileUpload: VFileUpload
|
|
144209
144219
|
VFileUploadItem: VFileUploadItem
|
|
144210
|
-
|
|
144211
|
-
|
|
144220
|
+
VPie: VPie
|
|
144221
|
+
VPieSegment: VPieSegment
|
|
144222
|
+
VPieTooltip: VPieTooltip
|
|
144212
144223
|
VDateInput: VDateInput
|
|
144224
|
+
VMaskInput: VMaskInput
|
|
144225
|
+
VPullToRefresh: VPullToRefresh
|
|
144213
144226
|
}
|
|
144214
144227
|
export interface GlobalDirectives {
|
|
144215
144228
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|
package/dist/vuetify-labs.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
|
*/
|
|
@@ -8131,7 +8131,7 @@ const makeVSlideGroupProps = propsFactory({
|
|
|
8131
8131
|
},
|
|
8132
8132
|
showArrows: {
|
|
8133
8133
|
type: [Boolean, String],
|
|
8134
|
-
validator: v => typeof v === 'boolean' || ['always', 'desktop', 'mobile'].includes(v)
|
|
8134
|
+
validator: v => typeof v === 'boolean' || ['always', 'desktop', 'mobile', 'never'].includes(v)
|
|
8135
8135
|
},
|
|
8136
8136
|
...makeComponentProps(),
|
|
8137
8137
|
...makeDisplayProps({
|
|
@@ -8365,6 +8365,9 @@ const VSlideGroup = genericComponent()({
|
|
|
8365
8365
|
const hasOverflowOrScroll = computed(() => isOverflowing.value || Math.abs(scrollOffset.value) > 0);
|
|
8366
8366
|
const hasAffixes = computed(() => {
|
|
8367
8367
|
switch (props.showArrows) {
|
|
8368
|
+
case 'never':
|
|
8369
|
+
return false;
|
|
8370
|
+
|
|
8368
8371
|
// Always show arrows on desktop & mobile
|
|
8369
8372
|
case 'always':
|
|
8370
8373
|
return true;
|
|
@@ -12831,7 +12834,9 @@ function useAutocomplete(props) {
|
|
|
12831
12834
|
function useAutofocus(props) {
|
|
12832
12835
|
function onIntersect(isIntersecting, entries) {
|
|
12833
12836
|
if (!props.autofocus || !isIntersecting) return;
|
|
12834
|
-
entries[0].target
|
|
12837
|
+
const el = entries[0].target;
|
|
12838
|
+
const target = el.matches('input,textarea') ? el : el.querySelector('input,textarea');
|
|
12839
|
+
target?.focus();
|
|
12835
12840
|
}
|
|
12836
12841
|
return {
|
|
12837
12842
|
onIntersect
|
|
@@ -13009,7 +13014,7 @@ const VTextField = genericComponent()({
|
|
|
13009
13014
|
},
|
|
13010
13015
|
controlRef
|
|
13011
13016
|
} = _ref3;
|
|
13012
|
-
const inputNode =
|
|
13017
|
+
const inputNode = createElementVNode("input", mergeProps({
|
|
13013
13018
|
"ref": val => inputRef.value = controlRef.value = val,
|
|
13014
13019
|
"value": model.value,
|
|
13015
13020
|
"onInput": onInput,
|
|
@@ -13024,21 +13029,19 @@ const VTextField = genericComponent()({
|
|
|
13024
13029
|
"type": props.type,
|
|
13025
13030
|
"onFocus": focus,
|
|
13026
13031
|
"onBlur": blur
|
|
13027
|
-
}, slotProps, inputAttrs), null)
|
|
13028
|
-
handler: onIntersect
|
|
13029
|
-
}, null, {
|
|
13030
|
-
once: true
|
|
13031
|
-
}]]);
|
|
13032
|
+
}, slotProps, inputAttrs), null);
|
|
13032
13033
|
return createElementVNode(Fragment, null, [props.prefix && createElementVNode("span", {
|
|
13033
13034
|
"class": "v-text-field__prefix"
|
|
13034
13035
|
}, [createElementVNode("span", {
|
|
13035
13036
|
"class": "v-text-field__prefix__text"
|
|
13036
|
-
}, [props.prefix])]), slots.default ? createElementVNode("div", {
|
|
13037
|
+
}, [props.prefix])]), withDirectives(slots.default ? createElementVNode("div", {
|
|
13037
13038
|
"class": normalizeClass(fieldClass),
|
|
13038
13039
|
"data-no-activator": ""
|
|
13039
13040
|
}, [slots.default(), inputNode]) : cloneVNode(inputNode, {
|
|
13040
13041
|
class: fieldClass
|
|
13041
|
-
}),
|
|
13042
|
+
}), [[Intersect, onIntersect, null, {
|
|
13043
|
+
once: true
|
|
13044
|
+
}]]), props.suffix && createElementVNode("span", {
|
|
13042
13045
|
"class": "v-text-field__suffix"
|
|
13043
13046
|
}, [createElementVNode("span", {
|
|
13044
13047
|
"class": "v-text-field__suffix__text"
|
|
@@ -24708,6 +24711,7 @@ const makeVDataTableHeadersProps = propsFactory({
|
|
|
24708
24711
|
disableSort: Boolean,
|
|
24709
24712
|
fixedHeader: Boolean,
|
|
24710
24713
|
multiSort: Boolean,
|
|
24714
|
+
initialSortOrder: String,
|
|
24711
24715
|
sortAscIcon: {
|
|
24712
24716
|
type: IconValue,
|
|
24713
24717
|
default: '$sortAsc'
|
|
@@ -24770,8 +24774,7 @@ const VDataTableHeaders = genericComponent()({
|
|
|
24770
24774
|
}
|
|
24771
24775
|
function getSortIcon(column) {
|
|
24772
24776
|
const item = sortBy.value.find(item => item.key === column.key);
|
|
24773
|
-
|
|
24774
|
-
return item.order === 'asc' ? props.sortAscIcon : props.sortDescIcon;
|
|
24777
|
+
return !item && props.initialSortOrder === 'asc' || item?.order === 'asc' ? props.sortAscIcon : props.sortDescIcon;
|
|
24775
24778
|
}
|
|
24776
24779
|
const {
|
|
24777
24780
|
backgroundColorClasses,
|
|
@@ -24871,6 +24874,7 @@ const VDataTableHeaders = genericComponent()({
|
|
|
24871
24874
|
const displayItems = computed(() => {
|
|
24872
24875
|
return columns.value.filter(column => column?.sortable && !props.disableSort);
|
|
24873
24876
|
});
|
|
24877
|
+
const showSelectColumn = columns.value.find(column => column.key === 'data-table-select');
|
|
24874
24878
|
return createVNode(VDataTableColumn, mergeProps({
|
|
24875
24879
|
"tag": "th",
|
|
24876
24880
|
"class": [...headerCellClasses.value],
|
|
@@ -24888,16 +24892,15 @@ const VDataTableHeaders = genericComponent()({
|
|
|
24888
24892
|
"label": t('$vuetify.dataTable.sortBy'),
|
|
24889
24893
|
"multiple": props.multiSort,
|
|
24890
24894
|
"variant": "underlined",
|
|
24891
|
-
"onClick:clear": () => sortBy.value = []
|
|
24892
|
-
"onClick:append": () => selectAll(!allSelected.value)
|
|
24895
|
+
"onClick:clear": () => sortBy.value = []
|
|
24893
24896
|
}, {
|
|
24894
|
-
append: () => createVNode(VCheckboxBtn, {
|
|
24897
|
+
append: showSelectColumn ? () => createVNode(VCheckboxBtn, {
|
|
24895
24898
|
"color": props.color,
|
|
24896
24899
|
"density": "compact",
|
|
24897
24900
|
"modelValue": allSelected.value,
|
|
24898
24901
|
"indeterminate": someSelected.value && !allSelected.value,
|
|
24899
|
-
"onUpdate:modelValue": selectAll
|
|
24900
|
-
}, null),
|
|
24902
|
+
"onUpdate:modelValue": () => selectAll(!allSelected.value)
|
|
24903
|
+
}, null) : undefined,
|
|
24901
24904
|
chip: props => createVNode(VChip, {
|
|
24902
24905
|
"onClick": props.item.raw?.sortable ? () => toggleSort(props.item.raw) : undefined,
|
|
24903
24906
|
"onMousedown": e => {
|
|
@@ -25453,7 +25456,7 @@ const makeDataTableProps = propsFactory({
|
|
|
25453
25456
|
...makeDataTableItemsProps(),
|
|
25454
25457
|
...makeDataTableSelectProps(),
|
|
25455
25458
|
...makeDataTableSortProps(),
|
|
25456
|
-
...omit(makeVDataTableHeadersProps(), ['multiSort']),
|
|
25459
|
+
...omit(makeVDataTableHeadersProps(), ['multiSort', 'initialSortOrder']),
|
|
25457
25460
|
...makeVTableProps()
|
|
25458
25461
|
}, 'DataTable');
|
|
25459
25462
|
const makeVDataTableProps = propsFactory({
|
|
@@ -27345,7 +27348,10 @@ const VDatePicker = genericComponent()({
|
|
|
27345
27348
|
const formattedDate = model.value[0] && adapter.isValid(model.value[0]) ? adapter.format(adapter.date(model.value[0]), props.headerDateFormat) : t(props.header);
|
|
27346
27349
|
return props.landscape && formattedDate.split(' ').length === 3 ? formattedDate.replace(' ', '\n') : formattedDate;
|
|
27347
27350
|
});
|
|
27348
|
-
const date = toRef(() =>
|
|
27351
|
+
const date = toRef(() => {
|
|
27352
|
+
const monthTwoDigits = String(month.value + 1).padStart(2, '0');
|
|
27353
|
+
return adapter.parseISO(`${year.value}-${monthTwoDigits}-01`);
|
|
27354
|
+
});
|
|
27349
27355
|
const monthYearText = toRef(() => adapter.format(date.value, 'monthAndYear'));
|
|
27350
27356
|
const monthText = toRef(() => adapter.format(date.value, 'monthShort'));
|
|
27351
27357
|
const yearText = toRef(() => adapter.format(date.value, 'year'));
|
|
@@ -27447,7 +27453,8 @@ const VDatePicker = genericComponent()({
|
|
|
27447
27453
|
function onClickNextYear() {
|
|
27448
27454
|
year.value++;
|
|
27449
27455
|
if (maxDate.value) {
|
|
27450
|
-
const
|
|
27456
|
+
const monthTwoDigits = String(month.value + 1).padStart(2, '0');
|
|
27457
|
+
const monthStart = adapter.parseISO(`${year.value}-${monthTwoDigits}-01`);
|
|
27451
27458
|
if (adapter.isAfter(monthStart, maxDate.value)) {
|
|
27452
27459
|
month.value = adapter.getMonth(maxDate.value);
|
|
27453
27460
|
}
|
|
@@ -27457,7 +27464,8 @@ const VDatePicker = genericComponent()({
|
|
|
27457
27464
|
function onClickPrevYear() {
|
|
27458
27465
|
year.value--;
|
|
27459
27466
|
if (minDate.value) {
|
|
27460
|
-
const
|
|
27467
|
+
const monthTwoDigits = String(month.value + 1).padStart(2, '0');
|
|
27468
|
+
const monthStart = adapter.endOfMonth(adapter.parseISO(`${year.value}-${monthTwoDigits}-01`));
|
|
27461
27469
|
if (adapter.isAfter(minDate.value, monthStart)) {
|
|
27462
27470
|
month.value = adapter.getMonth(minDate.value);
|
|
27463
27471
|
}
|
|
@@ -30314,7 +30322,7 @@ const VNumberInput = genericComponent()({
|
|
|
30314
30322
|
});
|
|
30315
30323
|
const isOutOfRange = computed(() => {
|
|
30316
30324
|
if (_lastParsedValue.value === null) return false;
|
|
30317
|
-
const numberFromText = Number(_inputText.value);
|
|
30325
|
+
const numberFromText = Number(_inputText.value?.replace(decimalSeparator.value, '.'));
|
|
30318
30326
|
return numberFromText !== clamp(numberFromText, props.min, props.max);
|
|
30319
30327
|
});
|
|
30320
30328
|
const canIncrease = computed(() => {
|
|
@@ -33184,6 +33192,7 @@ const makeVTabProps = propsFactory({
|
|
|
33184
33192
|
sliderTransition: String,
|
|
33185
33193
|
sliderTransitionDuration: [String, Number],
|
|
33186
33194
|
hideSlider: Boolean,
|
|
33195
|
+
inset: Boolean,
|
|
33187
33196
|
direction: {
|
|
33188
33197
|
type: String,
|
|
33189
33198
|
default: 'horizontal'
|
|
@@ -33278,8 +33287,8 @@ const VTab = genericComponent()({
|
|
|
33278
33287
|
return createVNode(VBtn, mergeProps({
|
|
33279
33288
|
"symbol": VTabsSymbol,
|
|
33280
33289
|
"ref": rootEl,
|
|
33281
|
-
"class": ['v-tab', props.class, isSelected.value ? insetColorClasses.value : []],
|
|
33282
|
-
"style": [props.style, isSelected.value ? insetColorStyles.value : []],
|
|
33290
|
+
"class": ['v-tab', props.class, isSelected.value && props.inset ? insetColorClasses.value : []],
|
|
33291
|
+
"style": [props.style, isSelected.value && props.inset ? insetColorStyles.value : []],
|
|
33283
33292
|
"tabindex": isSelected.value ? 0 : -1,
|
|
33284
33293
|
"role": "tab",
|
|
33285
33294
|
"aria-selected": String(isSelected.value),
|
|
@@ -33442,6 +33451,7 @@ const VTabs = genericComponent()({
|
|
|
33442
33451
|
direction: toRef(props, 'direction'),
|
|
33443
33452
|
stacked: toRef(props, 'stacked'),
|
|
33444
33453
|
fixed: toRef(props, 'fixedTabs'),
|
|
33454
|
+
inset: toRef(props, 'inset'),
|
|
33445
33455
|
sliderColor: toRef(props, 'sliderColor'),
|
|
33446
33456
|
sliderTransition: toRef(props, 'sliderTransition'),
|
|
33447
33457
|
sliderTransitionDuration: toRef(props, 'sliderTransitionDuration'),
|
|
@@ -36574,8 +36584,8 @@ const VMaskInput = genericComponent()({
|
|
|
36574
36584
|
}
|
|
36575
36585
|
async function onCut(e) {
|
|
36576
36586
|
e.preventDefault();
|
|
36577
|
-
copySelectionToClipboard(e);
|
|
36578
|
-
deleteSelection(e);
|
|
36587
|
+
await copySelectionToClipboard(e);
|
|
36588
|
+
await deleteSelection(e);
|
|
36579
36589
|
}
|
|
36580
36590
|
async function onPaste(e) {
|
|
36581
36591
|
e.preventDefault();
|
|
@@ -36590,12 +36600,12 @@ const VMaskInput = genericComponent()({
|
|
|
36590
36600
|
insertCharacters(inputElement, pastedCharacters);
|
|
36591
36601
|
}
|
|
36592
36602
|
}
|
|
36593
|
-
function copySelectionToClipboard(e) {
|
|
36603
|
+
async function copySelectionToClipboard(e) {
|
|
36594
36604
|
const inputElement = e.target;
|
|
36595
36605
|
const start = inputElement.selectionStart || 0;
|
|
36596
36606
|
const end = inputElement.selectionEnd || 0;
|
|
36597
36607
|
const selectedText = inputElement.value.substring(start, end);
|
|
36598
|
-
navigator.clipboard.writeText(selectedText);
|
|
36608
|
+
await navigator.clipboard.writeText(selectedText);
|
|
36599
36609
|
}
|
|
36600
36610
|
async function deleteSelection(e) {
|
|
36601
36611
|
const inputElement = e.target;
|
|
@@ -38989,7 +38999,7 @@ function createVuetify$1() {
|
|
|
38989
38999
|
};
|
|
38990
39000
|
});
|
|
38991
39001
|
}
|
|
38992
|
-
const version$1 = "3.11.
|
|
39002
|
+
const version$1 = "3.11.2";
|
|
38993
39003
|
createVuetify$1.version = version$1;
|
|
38994
39004
|
|
|
38995
39005
|
// Vue's inject() can only be used in setup
|
|
@@ -39292,7 +39302,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
39292
39302
|
|
|
39293
39303
|
/* eslint-disable local-rules/sort-imports */
|
|
39294
39304
|
|
|
39295
|
-
const version = "3.11.
|
|
39305
|
+
const version = "3.11.2";
|
|
39296
39306
|
|
|
39297
39307
|
/* eslint-disable local-rules/sort-imports */
|
|
39298
39308
|
|