@vuetify/nightly 3.10.5-dev.2025-10-10 → 3.10.5-dev.2025-10-17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -3
- package/dist/json/attributes.json +3389 -3381
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +158 -158
- package/dist/json/tags.json +2 -0
- package/dist/json/web-types.json +6644 -6624
- package/dist/vuetify-labs.cjs +8 -4
- package/dist/vuetify-labs.css +4430 -4422
- package/dist/vuetify-labs.d.ts +84 -56
- package/dist/vuetify-labs.esm.js +8 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +8 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +8 -4
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4457 -4449
- package/dist/vuetify.d.ts +84 -56
- package/dist/vuetify.esm.js +8 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +8 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.d.ts +25 -0
- package/lib/components/VToolbar/VToolbar.css +8 -0
- package/lib/components/VToolbar/VToolbar.d.ts +25 -0
- package/lib/components/VToolbar/VToolbar.js +5 -1
- package/lib/components/VToolbar/VToolbar.js.map +1 -1
- package/lib/components/VToolbar/VToolbar.sass +9 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +56 -56
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -3609,6 +3609,7 @@ declare const VToolbar: {
|
|
|
3609
3609
|
tag: string | JSXComponent;
|
|
3610
3610
|
absolute: boolean;
|
|
3611
3611
|
collapse: boolean;
|
|
3612
|
+
collapsePosition: "end" | "start";
|
|
3612
3613
|
density: Density$1;
|
|
3613
3614
|
extended: boolean;
|
|
3614
3615
|
extensionHeight: string | number;
|
|
@@ -3660,6 +3661,7 @@ declare const VToolbar: {
|
|
|
3660
3661
|
tag: string | JSXComponent;
|
|
3661
3662
|
absolute: boolean;
|
|
3662
3663
|
collapse: boolean;
|
|
3664
|
+
collapsePosition: "end" | "start";
|
|
3663
3665
|
density: Density$1;
|
|
3664
3666
|
extended: boolean;
|
|
3665
3667
|
extensionHeight: string | number;
|
|
@@ -3698,6 +3700,7 @@ declare const VToolbar: {
|
|
|
3698
3700
|
tag: string | JSXComponent;
|
|
3699
3701
|
absolute: boolean;
|
|
3700
3702
|
collapse: boolean;
|
|
3703
|
+
collapsePosition: "end" | "start";
|
|
3701
3704
|
density: Density$1;
|
|
3702
3705
|
extended: boolean;
|
|
3703
3706
|
extensionHeight: string | number;
|
|
@@ -3749,6 +3752,7 @@ declare const VToolbar: {
|
|
|
3749
3752
|
tag: string | JSXComponent;
|
|
3750
3753
|
absolute: boolean;
|
|
3751
3754
|
collapse: boolean;
|
|
3755
|
+
collapsePosition: "end" | "start";
|
|
3752
3756
|
density: Density$1;
|
|
3753
3757
|
extended: boolean;
|
|
3754
3758
|
extensionHeight: string | number;
|
|
@@ -3765,6 +3769,7 @@ declare const VToolbar: {
|
|
|
3765
3769
|
tag: string | JSXComponent;
|
|
3766
3770
|
absolute: boolean;
|
|
3767
3771
|
collapse: boolean;
|
|
3772
|
+
collapsePosition: "end" | "start";
|
|
3768
3773
|
density: Density$1;
|
|
3769
3774
|
extended: boolean;
|
|
3770
3775
|
extensionHeight: string | number;
|
|
@@ -3816,6 +3821,7 @@ declare const VToolbar: {
|
|
|
3816
3821
|
tag: string | JSXComponent;
|
|
3817
3822
|
absolute: boolean;
|
|
3818
3823
|
collapse: boolean;
|
|
3824
|
+
collapsePosition: "end" | "start";
|
|
3819
3825
|
density: Density$1;
|
|
3820
3826
|
extended: boolean;
|
|
3821
3827
|
extensionHeight: string | number;
|
|
@@ -3867,6 +3873,10 @@ declare const VToolbar: {
|
|
|
3867
3873
|
};
|
|
3868
3874
|
absolute: BooleanConstructor;
|
|
3869
3875
|
collapse: BooleanConstructor;
|
|
3876
|
+
collapsePosition: {
|
|
3877
|
+
type: PropType<"end" | "start">;
|
|
3878
|
+
default: string;
|
|
3879
|
+
};
|
|
3870
3880
|
color: StringConstructor;
|
|
3871
3881
|
density: {
|
|
3872
3882
|
type: PropType<Density$1>;
|
|
@@ -3915,6 +3925,10 @@ declare const VToolbar: {
|
|
|
3915
3925
|
};
|
|
3916
3926
|
absolute: BooleanConstructor;
|
|
3917
3927
|
collapse: BooleanConstructor;
|
|
3928
|
+
collapsePosition: {
|
|
3929
|
+
type: PropType<"end" | "start">;
|
|
3930
|
+
default: string;
|
|
3931
|
+
};
|
|
3918
3932
|
color: StringConstructor;
|
|
3919
3933
|
density: {
|
|
3920
3934
|
type: PropType<Density$1>;
|
|
@@ -3948,6 +3962,7 @@ declare const VAppBar: {
|
|
|
3948
3962
|
tile: boolean;
|
|
3949
3963
|
tag: string | JSXComponent;
|
|
3950
3964
|
collapse: boolean;
|
|
3965
|
+
collapsePosition: "end" | "start";
|
|
3951
3966
|
density: Density$1;
|
|
3952
3967
|
extended: boolean;
|
|
3953
3968
|
extensionHeight: string | number;
|
|
@@ -4007,6 +4022,7 @@ declare const VAppBar: {
|
|
|
4007
4022
|
tile: boolean;
|
|
4008
4023
|
tag: string | JSXComponent;
|
|
4009
4024
|
collapse: boolean;
|
|
4025
|
+
collapsePosition: "end" | "start";
|
|
4010
4026
|
density: Density$1;
|
|
4011
4027
|
extended: boolean;
|
|
4012
4028
|
extensionHeight: string | number;
|
|
@@ -4049,6 +4065,7 @@ declare const VAppBar: {
|
|
|
4049
4065
|
tile: boolean;
|
|
4050
4066
|
tag: string | JSXComponent;
|
|
4051
4067
|
collapse: boolean;
|
|
4068
|
+
collapsePosition: "end" | "start";
|
|
4052
4069
|
density: Density$1;
|
|
4053
4070
|
extended: boolean;
|
|
4054
4071
|
extensionHeight: string | number;
|
|
@@ -4106,6 +4123,7 @@ declare const VAppBar: {
|
|
|
4106
4123
|
tile: boolean;
|
|
4107
4124
|
tag: string | JSXComponent;
|
|
4108
4125
|
collapse: boolean;
|
|
4126
|
+
collapsePosition: "end" | "start";
|
|
4109
4127
|
density: Density$1;
|
|
4110
4128
|
extended: boolean;
|
|
4111
4129
|
extensionHeight: string | number;
|
|
@@ -4126,6 +4144,7 @@ declare const VAppBar: {
|
|
|
4126
4144
|
tile: boolean;
|
|
4127
4145
|
tag: string | JSXComponent;
|
|
4128
4146
|
collapse: boolean;
|
|
4147
|
+
collapsePosition: "end" | "start";
|
|
4129
4148
|
density: Density$1;
|
|
4130
4149
|
extended: boolean;
|
|
4131
4150
|
extensionHeight: string | number;
|
|
@@ -4185,6 +4204,7 @@ declare const VAppBar: {
|
|
|
4185
4204
|
tile: boolean;
|
|
4186
4205
|
tag: string | JSXComponent;
|
|
4187
4206
|
collapse: boolean;
|
|
4207
|
+
collapsePosition: "end" | "start";
|
|
4188
4208
|
density: Density$1;
|
|
4189
4209
|
extended: boolean;
|
|
4190
4210
|
extensionHeight: string | number;
|
|
@@ -4246,6 +4266,10 @@ declare const VAppBar: {
|
|
|
4246
4266
|
default: NonNullable<string | JSXComponent>;
|
|
4247
4267
|
};
|
|
4248
4268
|
collapse: BooleanConstructor;
|
|
4269
|
+
collapsePosition: {
|
|
4270
|
+
type: PropType<"end" | "start">;
|
|
4271
|
+
default: string;
|
|
4272
|
+
};
|
|
4249
4273
|
color: StringConstructor;
|
|
4250
4274
|
density: {
|
|
4251
4275
|
type: PropType<Density$1>;
|
|
@@ -4318,6 +4342,10 @@ declare const VAppBar: {
|
|
|
4318
4342
|
default: NonNullable<string | JSXComponent>;
|
|
4319
4343
|
};
|
|
4320
4344
|
collapse: BooleanConstructor;
|
|
4345
|
+
collapsePosition: {
|
|
4346
|
+
type: PropType<"end" | "start">;
|
|
4347
|
+
default: string;
|
|
4348
|
+
};
|
|
4321
4349
|
color: StringConstructor;
|
|
4322
4350
|
density: {
|
|
4323
4351
|
type: PropType<Density$1>;
|
|
@@ -142893,41 +142921,39 @@ declare module 'vue' {
|
|
|
142893
142921
|
}
|
|
142894
142922
|
export interface GlobalComponents {
|
|
142895
142923
|
VApp: VApp
|
|
142896
|
-
VAutocomplete: VAutocomplete
|
|
142897
142924
|
VAppBar: VAppBar
|
|
142898
142925
|
VAppBarNavIcon: VAppBarNavIcon
|
|
142899
142926
|
VAppBarTitle: VAppBarTitle
|
|
142900
|
-
|
|
142927
|
+
VAutocomplete: VAutocomplete
|
|
142901
142928
|
VAlert: VAlert
|
|
142902
142929
|
VAlertTitle: VAlertTitle
|
|
142930
|
+
VAvatar: VAvatar
|
|
142931
|
+
VBadge: VBadge
|
|
142903
142932
|
VBanner: VBanner
|
|
142904
142933
|
VBannerActions: VBannerActions
|
|
142905
142934
|
VBannerText: VBannerText
|
|
142906
|
-
|
|
142935
|
+
VBottomNavigation: VBottomNavigation
|
|
142907
142936
|
VBottomSheet: VBottomSheet
|
|
142937
|
+
VBreadcrumbs: VBreadcrumbs
|
|
142938
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
|
142939
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
142908
142940
|
VBtn: VBtn
|
|
142941
|
+
VBtnGroup: VBtnGroup
|
|
142942
|
+
VBtnToggle: VBtnToggle
|
|
142943
|
+
VChip: VChip
|
|
142944
|
+
VCarousel: VCarousel
|
|
142945
|
+
VCarouselItem: VCarouselItem
|
|
142909
142946
|
VCard: VCard
|
|
142910
142947
|
VCardActions: VCardActions
|
|
142911
142948
|
VCardItem: VCardItem
|
|
142912
142949
|
VCardSubtitle: VCardSubtitle
|
|
142913
142950
|
VCardText: VCardText
|
|
142914
142951
|
VCardTitle: VCardTitle
|
|
142915
|
-
VBottomNavigation: VBottomNavigation
|
|
142916
|
-
VBreadcrumbs: VBreadcrumbs
|
|
142917
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
|
142918
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
142919
|
-
VBtnGroup: VBtnGroup
|
|
142920
|
-
VBtnToggle: VBtnToggle
|
|
142921
|
-
VCheckbox: VCheckbox
|
|
142922
|
-
VCheckboxBtn: VCheckboxBtn
|
|
142923
142952
|
VChipGroup: VChipGroup
|
|
142924
|
-
VChip: VChip
|
|
142925
142953
|
VColorPicker: VColorPicker
|
|
142926
|
-
VCarousel: VCarousel
|
|
142927
|
-
VCarouselItem: VCarouselItem
|
|
142928
|
-
VCounter: VCounter
|
|
142929
|
-
VCombobox: VCombobox
|
|
142930
142954
|
VCode: VCode
|
|
142955
|
+
VCombobox: VCombobox
|
|
142956
|
+
VCounter: VCounter
|
|
142931
142957
|
VDataTable: VDataTable
|
|
142932
142958
|
VDataTableHeaders: VDataTableHeaders
|
|
142933
142959
|
VDataTableFooter: VDataTableFooter
|
|
@@ -142935,6 +142961,7 @@ declare module 'vue' {
|
|
|
142935
142961
|
VDataTableRow: VDataTableRow
|
|
142936
142962
|
VDataTableVirtual: VDataTableVirtual
|
|
142937
142963
|
VDataTableServer: VDataTableServer
|
|
142964
|
+
VDialog: VDialog
|
|
142938
142965
|
VDatePicker: VDatePicker
|
|
142939
142966
|
VDatePickerControls: VDatePickerControls
|
|
142940
142967
|
VDatePickerHeader: VDatePickerHeader
|
|
@@ -142942,24 +142969,28 @@ declare module 'vue' {
|
|
|
142942
142969
|
VDatePickerMonths: VDatePickerMonths
|
|
142943
142970
|
VDatePickerYears: VDatePickerYears
|
|
142944
142971
|
VEmptyState: VEmptyState
|
|
142945
|
-
VFileInput: VFileInput
|
|
142946
142972
|
VExpansionPanels: VExpansionPanels
|
|
142947
142973
|
VExpansionPanel: VExpansionPanel
|
|
142948
142974
|
VExpansionPanelText: VExpansionPanelText
|
|
142949
142975
|
VExpansionPanelTitle: VExpansionPanelTitle
|
|
142950
|
-
VDialog: VDialog
|
|
142951
|
-
VFab: VFab
|
|
142952
142976
|
VDivider: VDivider
|
|
142953
|
-
|
|
142954
|
-
VImg: VImg
|
|
142977
|
+
VFab: VFab
|
|
142955
142978
|
VField: VField
|
|
142956
142979
|
VFieldLabel: VFieldLabel
|
|
142957
|
-
|
|
142980
|
+
VFileInput: VFileInput
|
|
142981
|
+
VFooter: VFooter
|
|
142958
142982
|
VIcon: VIcon
|
|
142959
142983
|
VComponentIcon: VComponentIcon
|
|
142960
142984
|
VSvgIcon: VSvgIcon
|
|
142961
142985
|
VLigatureIcon: VLigatureIcon
|
|
142962
142986
|
VClassIcon: VClassIcon
|
|
142987
|
+
VImg: VImg
|
|
142988
|
+
VKbd: VKbd
|
|
142989
|
+
VInput: VInput
|
|
142990
|
+
VInfiniteScroll: VInfiniteScroll
|
|
142991
|
+
VLabel: VLabel
|
|
142992
|
+
VItemGroup: VItemGroup
|
|
142993
|
+
VItem: VItem
|
|
142963
142994
|
VList: VList
|
|
142964
142995
|
VListGroup: VListGroup
|
|
142965
142996
|
VListImg: VListImg
|
|
@@ -142969,66 +143000,58 @@ declare module 'vue' {
|
|
|
142969
143000
|
VListItemSubtitle: VListItemSubtitle
|
|
142970
143001
|
VListItemTitle: VListItemTitle
|
|
142971
143002
|
VListSubheader: VListSubheader
|
|
142972
|
-
|
|
142973
|
-
VKbd: VKbd
|
|
142974
|
-
VItemGroup: VItemGroup
|
|
142975
|
-
VItem: VItem
|
|
142976
|
-
VLabel: VLabel
|
|
142977
|
-
VNavigationDrawer: VNavigationDrawer
|
|
142978
|
-
VOtpInput: VOtpInput
|
|
143003
|
+
VMain: VMain
|
|
142979
143004
|
VMenu: VMenu
|
|
143005
|
+
VNavigationDrawer: VNavigationDrawer
|
|
142980
143006
|
VMessages: VMessages
|
|
142981
|
-
VMain: VMain
|
|
142982
|
-
VPagination: VPagination
|
|
142983
143007
|
VNumberInput: VNumberInput
|
|
142984
143008
|
VOverlay: VOverlay
|
|
142985
|
-
|
|
143009
|
+
VOtpInput: VOtpInput
|
|
143010
|
+
VPagination: VPagination
|
|
142986
143011
|
VProgressCircular: VProgressCircular
|
|
142987
143012
|
VProgressLinear: VProgressLinear
|
|
142988
|
-
|
|
142989
|
-
VSkeletonLoader: VSkeletonLoader
|
|
142990
|
-
VSelectionControlGroup: VSelectionControlGroup
|
|
143013
|
+
VRadioGroup: VRadioGroup
|
|
142991
143014
|
VRating: VRating
|
|
143015
|
+
VSelect: VSelect
|
|
142992
143016
|
VSelectionControl: VSelectionControl
|
|
142993
|
-
|
|
143017
|
+
VSelectionControlGroup: VSelectionControlGroup
|
|
143018
|
+
VSheet: VSheet
|
|
143019
|
+
VSkeletonLoader: VSkeletonLoader
|
|
142994
143020
|
VSlideGroup: VSlideGroup
|
|
142995
143021
|
VSlideGroupItem: VSlideGroupItem
|
|
142996
|
-
|
|
143022
|
+
VSlider: VSlider
|
|
143023
|
+
VSnackbar: VSnackbar
|
|
142997
143024
|
VStepper: VStepper
|
|
142998
143025
|
VStepperActions: VStepperActions
|
|
142999
143026
|
VStepperHeader: VStepperHeader
|
|
143000
143027
|
VStepperItem: VStepperItem
|
|
143001
143028
|
VStepperWindow: VStepperWindow
|
|
143002
143029
|
VStepperWindowItem: VStepperWindowItem
|
|
143003
|
-
|
|
143030
|
+
VSwitch: VSwitch
|
|
143004
143031
|
VSystemBar: VSystemBar
|
|
143005
143032
|
VTab: VTab
|
|
143006
143033
|
VTabs: VTabs
|
|
143007
143034
|
VTabsWindow: VTabsWindow
|
|
143008
143035
|
VTabsWindowItem: VTabsWindowItem
|
|
143009
143036
|
VTable: VTable
|
|
143010
|
-
VTextarea: VTextarea
|
|
143011
|
-
VSwitch: VSwitch
|
|
143012
143037
|
VTextField: VTextField
|
|
143013
143038
|
VTimeline: VTimeline
|
|
143014
143039
|
VTimelineItem: VTimelineItem
|
|
143015
143040
|
VTimePicker: VTimePicker
|
|
143016
143041
|
VTimePickerClock: VTimePickerClock
|
|
143017
143042
|
VTimePickerControls: VTimePickerControls
|
|
143018
|
-
|
|
143019
|
-
|
|
143043
|
+
VToolbar: VToolbar
|
|
143044
|
+
VToolbarTitle: VToolbarTitle
|
|
143045
|
+
VToolbarItems: VToolbarItems
|
|
143020
143046
|
VTooltip: VTooltip
|
|
143021
143047
|
VTreeview: VTreeview
|
|
143022
143048
|
VTreeviewItem: VTreeviewItem
|
|
143023
143049
|
VTreeviewGroup: VTreeviewGroup
|
|
143024
|
-
|
|
143025
|
-
|
|
143026
|
-
|
|
143050
|
+
VWindow: VWindow
|
|
143051
|
+
VWindowItem: VWindowItem
|
|
143052
|
+
VTextarea: VTextarea
|
|
143027
143053
|
VDataIterator: VDataIterator
|
|
143028
143054
|
VConfirmEdit: VConfirmEdit
|
|
143029
|
-
VHover: VHover
|
|
143030
|
-
VDefaultsProvider: VDefaultsProvider
|
|
143031
|
-
VForm: VForm
|
|
143032
143055
|
VContainer: VContainer
|
|
143033
143056
|
VCol: VCol
|
|
143034
143057
|
VRow: VRow
|
|
@@ -143040,13 +143063,14 @@ declare module 'vue' {
|
|
|
143040
143063
|
VNoSsr: VNoSsr
|
|
143041
143064
|
VParallax: VParallax
|
|
143042
143065
|
VRadio: VRadio
|
|
143043
|
-
VRangeSlider: VRangeSlider
|
|
143044
143066
|
VResponsive: VResponsive
|
|
143045
143067
|
VSnackbarQueue: VSnackbarQueue
|
|
143046
143068
|
VSparkline: VSparkline
|
|
143069
|
+
VRangeSlider: VRangeSlider
|
|
143047
143070
|
VSpeedDial: VSpeedDial
|
|
143048
143071
|
VThemeProvider: VThemeProvider
|
|
143049
143072
|
VValidation: VValidation
|
|
143073
|
+
VVirtualScroll: VVirtualScroll
|
|
143050
143074
|
VFabTransition: VFabTransition
|
|
143051
143075
|
VDialogBottomTransition: VDialogBottomTransition
|
|
143052
143076
|
VDialogTopTransition: VDialogTopTransition
|
|
@@ -143063,17 +143087,18 @@ declare module 'vue' {
|
|
|
143063
143087
|
VExpandTransition: VExpandTransition
|
|
143064
143088
|
VExpandXTransition: VExpandXTransition
|
|
143065
143089
|
VDialogTransition: VDialogTransition
|
|
143066
|
-
|
|
143067
|
-
|
|
143068
|
-
|
|
143069
|
-
|
|
143070
|
-
|
|
143090
|
+
VHover: VHover
|
|
143091
|
+
VDefaultsProvider: VDefaultsProvider
|
|
143092
|
+
VForm: VForm
|
|
143093
|
+
VCheckbox: VCheckbox
|
|
143094
|
+
VCheckboxBtn: VCheckboxBtn
|
|
143071
143095
|
VPie: VPie
|
|
143072
143096
|
VPieSegment: VPieSegment
|
|
143073
143097
|
VPieTooltip: VPieTooltip
|
|
143098
|
+
VColorInput: VColorInput
|
|
143074
143099
|
VIconBtn: VIconBtn
|
|
143075
|
-
|
|
143076
|
-
|
|
143100
|
+
VFileUpload: VFileUpload
|
|
143101
|
+
VFileUploadItem: VFileUploadItem
|
|
143077
143102
|
VStepperVertical: VStepperVertical
|
|
143078
143103
|
VStepperVerticalItem: VStepperVerticalItem
|
|
143079
143104
|
VStepperVerticalActions: VStepperVerticalActions
|
|
@@ -143081,6 +143106,9 @@ declare module 'vue' {
|
|
|
143081
143106
|
VVideo: VVideo
|
|
143082
143107
|
VVideoControls: VVideoControls
|
|
143083
143108
|
VVideoVolume: VVideoVolume
|
|
143109
|
+
VPicker: VPicker
|
|
143110
|
+
VPickerTitle: VPickerTitle
|
|
143111
|
+
VCalendar: VCalendar
|
|
143084
143112
|
VDateInput: VDateInput
|
|
143085
143113
|
VMaskInput: VMaskInput
|
|
143086
143114
|
VPullToRefresh: VPullToRefresh
|
package/dist/vuetify-labs.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.10.5-dev.2025-10-
|
|
2
|
+
* Vuetify v3.10.5-dev.2025-10-17
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -3985,6 +3985,10 @@ const allowedDensities$1 = [null, 'prominent', 'default', 'comfortable', 'compac
|
|
|
3985
3985
|
const makeVToolbarProps = propsFactory({
|
|
3986
3986
|
absolute: Boolean,
|
|
3987
3987
|
collapse: Boolean,
|
|
3988
|
+
collapsePosition: {
|
|
3989
|
+
type: String,
|
|
3990
|
+
default: 'start'
|
|
3991
|
+
},
|
|
3988
3992
|
color: String,
|
|
3989
3993
|
density: {
|
|
3990
3994
|
type: String,
|
|
@@ -4056,7 +4060,7 @@ const VToolbar = genericComponent()({
|
|
|
4056
4060
|
const extension = slots.extension?.();
|
|
4057
4061
|
isExtended.value = props.extended === null ? !!extension : props.extended;
|
|
4058
4062
|
return createVNode(props.tag, {
|
|
4059
|
-
"class": normalizeClass(['v-toolbar', {
|
|
4063
|
+
"class": normalizeClass(['v-toolbar', `v-toolbar--collapse-${props.collapsePosition}`, {
|
|
4060
4064
|
'v-toolbar--absolute': props.absolute,
|
|
4061
4065
|
'v-toolbar--collapse': props.collapse,
|
|
4062
4066
|
'v-toolbar--flat': props.flat,
|
|
@@ -38067,7 +38071,7 @@ function createVuetify$1() {
|
|
|
38067
38071
|
};
|
|
38068
38072
|
});
|
|
38069
38073
|
}
|
|
38070
|
-
const version$1 = "3.10.5-dev.2025-10-
|
|
38074
|
+
const version$1 = "3.10.5-dev.2025-10-17";
|
|
38071
38075
|
createVuetify$1.version = version$1;
|
|
38072
38076
|
|
|
38073
38077
|
// Vue's inject() can only be used in setup
|
|
@@ -38365,7 +38369,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
38365
38369
|
|
|
38366
38370
|
/* eslint-disable local-rules/sort-imports */
|
|
38367
38371
|
|
|
38368
|
-
const version = "3.10.5-dev.2025-10-
|
|
38372
|
+
const version = "3.10.5-dev.2025-10-17";
|
|
38369
38373
|
|
|
38370
38374
|
/* eslint-disable local-rules/sort-imports */
|
|
38371
38375
|
|