@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.d.ts
CHANGED
|
@@ -3684,6 +3684,7 @@ declare const VToolbar: {
|
|
|
3684
3684
|
tag: string | JSXComponent;
|
|
3685
3685
|
absolute: boolean;
|
|
3686
3686
|
collapse: boolean;
|
|
3687
|
+
collapsePosition: "end" | "start";
|
|
3687
3688
|
density: Density$1;
|
|
3688
3689
|
extended: boolean;
|
|
3689
3690
|
extensionHeight: string | number;
|
|
@@ -3735,6 +3736,7 @@ declare const VToolbar: {
|
|
|
3735
3736
|
tag: string | JSXComponent;
|
|
3736
3737
|
absolute: boolean;
|
|
3737
3738
|
collapse: boolean;
|
|
3739
|
+
collapsePosition: "end" | "start";
|
|
3738
3740
|
density: Density$1;
|
|
3739
3741
|
extended: boolean;
|
|
3740
3742
|
extensionHeight: string | number;
|
|
@@ -3773,6 +3775,7 @@ declare const VToolbar: {
|
|
|
3773
3775
|
tag: string | JSXComponent;
|
|
3774
3776
|
absolute: boolean;
|
|
3775
3777
|
collapse: boolean;
|
|
3778
|
+
collapsePosition: "end" | "start";
|
|
3776
3779
|
density: Density$1;
|
|
3777
3780
|
extended: boolean;
|
|
3778
3781
|
extensionHeight: string | number;
|
|
@@ -3824,6 +3827,7 @@ declare const VToolbar: {
|
|
|
3824
3827
|
tag: string | JSXComponent;
|
|
3825
3828
|
absolute: boolean;
|
|
3826
3829
|
collapse: boolean;
|
|
3830
|
+
collapsePosition: "end" | "start";
|
|
3827
3831
|
density: Density$1;
|
|
3828
3832
|
extended: boolean;
|
|
3829
3833
|
extensionHeight: string | number;
|
|
@@ -3840,6 +3844,7 @@ declare const VToolbar: {
|
|
|
3840
3844
|
tag: string | JSXComponent;
|
|
3841
3845
|
absolute: boolean;
|
|
3842
3846
|
collapse: boolean;
|
|
3847
|
+
collapsePosition: "end" | "start";
|
|
3843
3848
|
density: Density$1;
|
|
3844
3849
|
extended: boolean;
|
|
3845
3850
|
extensionHeight: string | number;
|
|
@@ -3891,6 +3896,7 @@ declare const VToolbar: {
|
|
|
3891
3896
|
tag: string | JSXComponent;
|
|
3892
3897
|
absolute: boolean;
|
|
3893
3898
|
collapse: boolean;
|
|
3899
|
+
collapsePosition: "end" | "start";
|
|
3894
3900
|
density: Density$1;
|
|
3895
3901
|
extended: boolean;
|
|
3896
3902
|
extensionHeight: string | number;
|
|
@@ -3942,6 +3948,10 @@ declare const VToolbar: {
|
|
|
3942
3948
|
};
|
|
3943
3949
|
absolute: BooleanConstructor;
|
|
3944
3950
|
collapse: BooleanConstructor;
|
|
3951
|
+
collapsePosition: {
|
|
3952
|
+
type: PropType<"end" | "start">;
|
|
3953
|
+
default: string;
|
|
3954
|
+
};
|
|
3945
3955
|
color: StringConstructor;
|
|
3946
3956
|
density: {
|
|
3947
3957
|
type: PropType<Density$1>;
|
|
@@ -3990,6 +4000,10 @@ declare const VToolbar: {
|
|
|
3990
4000
|
};
|
|
3991
4001
|
absolute: BooleanConstructor;
|
|
3992
4002
|
collapse: BooleanConstructor;
|
|
4003
|
+
collapsePosition: {
|
|
4004
|
+
type: PropType<"end" | "start">;
|
|
4005
|
+
default: string;
|
|
4006
|
+
};
|
|
3993
4007
|
color: StringConstructor;
|
|
3994
4008
|
density: {
|
|
3995
4009
|
type: PropType<Density$1>;
|
|
@@ -4023,6 +4037,7 @@ declare const VAppBar: {
|
|
|
4023
4037
|
tile: boolean;
|
|
4024
4038
|
tag: string | JSXComponent;
|
|
4025
4039
|
collapse: boolean;
|
|
4040
|
+
collapsePosition: "end" | "start";
|
|
4026
4041
|
density: Density$1;
|
|
4027
4042
|
extended: boolean;
|
|
4028
4043
|
extensionHeight: string | number;
|
|
@@ -4082,6 +4097,7 @@ declare const VAppBar: {
|
|
|
4082
4097
|
tile: boolean;
|
|
4083
4098
|
tag: string | JSXComponent;
|
|
4084
4099
|
collapse: boolean;
|
|
4100
|
+
collapsePosition: "end" | "start";
|
|
4085
4101
|
density: Density$1;
|
|
4086
4102
|
extended: boolean;
|
|
4087
4103
|
extensionHeight: string | number;
|
|
@@ -4124,6 +4140,7 @@ declare const VAppBar: {
|
|
|
4124
4140
|
tile: boolean;
|
|
4125
4141
|
tag: string | JSXComponent;
|
|
4126
4142
|
collapse: boolean;
|
|
4143
|
+
collapsePosition: "end" | "start";
|
|
4127
4144
|
density: Density$1;
|
|
4128
4145
|
extended: boolean;
|
|
4129
4146
|
extensionHeight: string | number;
|
|
@@ -4181,6 +4198,7 @@ declare const VAppBar: {
|
|
|
4181
4198
|
tile: boolean;
|
|
4182
4199
|
tag: string | JSXComponent;
|
|
4183
4200
|
collapse: boolean;
|
|
4201
|
+
collapsePosition: "end" | "start";
|
|
4184
4202
|
density: Density$1;
|
|
4185
4203
|
extended: boolean;
|
|
4186
4204
|
extensionHeight: string | number;
|
|
@@ -4201,6 +4219,7 @@ declare const VAppBar: {
|
|
|
4201
4219
|
tile: boolean;
|
|
4202
4220
|
tag: string | JSXComponent;
|
|
4203
4221
|
collapse: boolean;
|
|
4222
|
+
collapsePosition: "end" | "start";
|
|
4204
4223
|
density: Density$1;
|
|
4205
4224
|
extended: boolean;
|
|
4206
4225
|
extensionHeight: string | number;
|
|
@@ -4260,6 +4279,7 @@ declare const VAppBar: {
|
|
|
4260
4279
|
tile: boolean;
|
|
4261
4280
|
tag: string | JSXComponent;
|
|
4262
4281
|
collapse: boolean;
|
|
4282
|
+
collapsePosition: "end" | "start";
|
|
4263
4283
|
density: Density$1;
|
|
4264
4284
|
extended: boolean;
|
|
4265
4285
|
extensionHeight: string | number;
|
|
@@ -4321,6 +4341,10 @@ declare const VAppBar: {
|
|
|
4321
4341
|
default: NonNullable<string | JSXComponent>;
|
|
4322
4342
|
};
|
|
4323
4343
|
collapse: BooleanConstructor;
|
|
4344
|
+
collapsePosition: {
|
|
4345
|
+
type: PropType<"end" | "start">;
|
|
4346
|
+
default: string;
|
|
4347
|
+
};
|
|
4324
4348
|
color: StringConstructor;
|
|
4325
4349
|
density: {
|
|
4326
4350
|
type: PropType<Density$1>;
|
|
@@ -4393,6 +4417,10 @@ declare const VAppBar: {
|
|
|
4393
4417
|
default: NonNullable<string | JSXComponent>;
|
|
4394
4418
|
};
|
|
4395
4419
|
collapse: BooleanConstructor;
|
|
4420
|
+
collapsePosition: {
|
|
4421
|
+
type: PropType<"end" | "start">;
|
|
4422
|
+
default: string;
|
|
4423
|
+
};
|
|
4396
4424
|
color: StringConstructor;
|
|
4397
4425
|
density: {
|
|
4398
4426
|
type: PropType<Density$1>;
|
|
@@ -106036,41 +106064,39 @@ declare module 'vue' {
|
|
|
106036
106064
|
}
|
|
106037
106065
|
export interface GlobalComponents {
|
|
106038
106066
|
VApp: VApp
|
|
106039
|
-
VAutocomplete: VAutocomplete
|
|
106040
106067
|
VAppBar: VAppBar
|
|
106041
106068
|
VAppBarNavIcon: VAppBarNavIcon
|
|
106042
106069
|
VAppBarTitle: VAppBarTitle
|
|
106043
|
-
|
|
106070
|
+
VAutocomplete: VAutocomplete
|
|
106044
106071
|
VAlert: VAlert
|
|
106045
106072
|
VAlertTitle: VAlertTitle
|
|
106073
|
+
VAvatar: VAvatar
|
|
106074
|
+
VBadge: VBadge
|
|
106046
106075
|
VBanner: VBanner
|
|
106047
106076
|
VBannerActions: VBannerActions
|
|
106048
106077
|
VBannerText: VBannerText
|
|
106049
|
-
|
|
106078
|
+
VBottomNavigation: VBottomNavigation
|
|
106050
106079
|
VBottomSheet: VBottomSheet
|
|
106080
|
+
VBreadcrumbs: VBreadcrumbs
|
|
106081
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
|
106082
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
106051
106083
|
VBtn: VBtn
|
|
106084
|
+
VBtnGroup: VBtnGroup
|
|
106085
|
+
VBtnToggle: VBtnToggle
|
|
106086
|
+
VChip: VChip
|
|
106087
|
+
VCarousel: VCarousel
|
|
106088
|
+
VCarouselItem: VCarouselItem
|
|
106052
106089
|
VCard: VCard
|
|
106053
106090
|
VCardActions: VCardActions
|
|
106054
106091
|
VCardItem: VCardItem
|
|
106055
106092
|
VCardSubtitle: VCardSubtitle
|
|
106056
106093
|
VCardText: VCardText
|
|
106057
106094
|
VCardTitle: VCardTitle
|
|
106058
|
-
VBottomNavigation: VBottomNavigation
|
|
106059
|
-
VBreadcrumbs: VBreadcrumbs
|
|
106060
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
|
106061
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
106062
|
-
VBtnGroup: VBtnGroup
|
|
106063
|
-
VBtnToggle: VBtnToggle
|
|
106064
|
-
VCheckbox: VCheckbox
|
|
106065
|
-
VCheckboxBtn: VCheckboxBtn
|
|
106066
106095
|
VChipGroup: VChipGroup
|
|
106067
|
-
VChip: VChip
|
|
106068
106096
|
VColorPicker: VColorPicker
|
|
106069
|
-
VCarousel: VCarousel
|
|
106070
|
-
VCarouselItem: VCarouselItem
|
|
106071
|
-
VCounter: VCounter
|
|
106072
|
-
VCombobox: VCombobox
|
|
106073
106097
|
VCode: VCode
|
|
106098
|
+
VCombobox: VCombobox
|
|
106099
|
+
VCounter: VCounter
|
|
106074
106100
|
VDataTable: VDataTable
|
|
106075
106101
|
VDataTableHeaders: VDataTableHeaders
|
|
106076
106102
|
VDataTableFooter: VDataTableFooter
|
|
@@ -106078,6 +106104,7 @@ declare module 'vue' {
|
|
|
106078
106104
|
VDataTableRow: VDataTableRow
|
|
106079
106105
|
VDataTableVirtual: VDataTableVirtual
|
|
106080
106106
|
VDataTableServer: VDataTableServer
|
|
106107
|
+
VDialog: VDialog
|
|
106081
106108
|
VDatePicker: VDatePicker
|
|
106082
106109
|
VDatePickerControls: VDatePickerControls
|
|
106083
106110
|
VDatePickerHeader: VDatePickerHeader
|
|
@@ -106085,24 +106112,28 @@ declare module 'vue' {
|
|
|
106085
106112
|
VDatePickerMonths: VDatePickerMonths
|
|
106086
106113
|
VDatePickerYears: VDatePickerYears
|
|
106087
106114
|
VEmptyState: VEmptyState
|
|
106088
|
-
VFileInput: VFileInput
|
|
106089
106115
|
VExpansionPanels: VExpansionPanels
|
|
106090
106116
|
VExpansionPanel: VExpansionPanel
|
|
106091
106117
|
VExpansionPanelText: VExpansionPanelText
|
|
106092
106118
|
VExpansionPanelTitle: VExpansionPanelTitle
|
|
106093
|
-
VDialog: VDialog
|
|
106094
|
-
VFab: VFab
|
|
106095
106119
|
VDivider: VDivider
|
|
106096
|
-
|
|
106097
|
-
VImg: VImg
|
|
106120
|
+
VFab: VFab
|
|
106098
106121
|
VField: VField
|
|
106099
106122
|
VFieldLabel: VFieldLabel
|
|
106100
|
-
|
|
106123
|
+
VFileInput: VFileInput
|
|
106124
|
+
VFooter: VFooter
|
|
106101
106125
|
VIcon: VIcon
|
|
106102
106126
|
VComponentIcon: VComponentIcon
|
|
106103
106127
|
VSvgIcon: VSvgIcon
|
|
106104
106128
|
VLigatureIcon: VLigatureIcon
|
|
106105
106129
|
VClassIcon: VClassIcon
|
|
106130
|
+
VImg: VImg
|
|
106131
|
+
VKbd: VKbd
|
|
106132
|
+
VInput: VInput
|
|
106133
|
+
VInfiniteScroll: VInfiniteScroll
|
|
106134
|
+
VLabel: VLabel
|
|
106135
|
+
VItemGroup: VItemGroup
|
|
106136
|
+
VItem: VItem
|
|
106106
106137
|
VList: VList
|
|
106107
106138
|
VListGroup: VListGroup
|
|
106108
106139
|
VListImg: VListImg
|
|
@@ -106112,66 +106143,58 @@ declare module 'vue' {
|
|
|
106112
106143
|
VListItemSubtitle: VListItemSubtitle
|
|
106113
106144
|
VListItemTitle: VListItemTitle
|
|
106114
106145
|
VListSubheader: VListSubheader
|
|
106115
|
-
|
|
106116
|
-
VKbd: VKbd
|
|
106117
|
-
VItemGroup: VItemGroup
|
|
106118
|
-
VItem: VItem
|
|
106119
|
-
VLabel: VLabel
|
|
106120
|
-
VNavigationDrawer: VNavigationDrawer
|
|
106121
|
-
VOtpInput: VOtpInput
|
|
106146
|
+
VMain: VMain
|
|
106122
106147
|
VMenu: VMenu
|
|
106148
|
+
VNavigationDrawer: VNavigationDrawer
|
|
106123
106149
|
VMessages: VMessages
|
|
106124
|
-
VMain: VMain
|
|
106125
|
-
VPagination: VPagination
|
|
106126
106150
|
VNumberInput: VNumberInput
|
|
106127
106151
|
VOverlay: VOverlay
|
|
106128
|
-
|
|
106152
|
+
VOtpInput: VOtpInput
|
|
106153
|
+
VPagination: VPagination
|
|
106129
106154
|
VProgressCircular: VProgressCircular
|
|
106130
106155
|
VProgressLinear: VProgressLinear
|
|
106131
|
-
|
|
106132
|
-
VSkeletonLoader: VSkeletonLoader
|
|
106133
|
-
VSelectionControlGroup: VSelectionControlGroup
|
|
106156
|
+
VRadioGroup: VRadioGroup
|
|
106134
106157
|
VRating: VRating
|
|
106158
|
+
VSelect: VSelect
|
|
106135
106159
|
VSelectionControl: VSelectionControl
|
|
106136
|
-
|
|
106160
|
+
VSelectionControlGroup: VSelectionControlGroup
|
|
106161
|
+
VSheet: VSheet
|
|
106162
|
+
VSkeletonLoader: VSkeletonLoader
|
|
106137
106163
|
VSlideGroup: VSlideGroup
|
|
106138
106164
|
VSlideGroupItem: VSlideGroupItem
|
|
106139
|
-
|
|
106165
|
+
VSlider: VSlider
|
|
106166
|
+
VSnackbar: VSnackbar
|
|
106140
106167
|
VStepper: VStepper
|
|
106141
106168
|
VStepperActions: VStepperActions
|
|
106142
106169
|
VStepperHeader: VStepperHeader
|
|
106143
106170
|
VStepperItem: VStepperItem
|
|
106144
106171
|
VStepperWindow: VStepperWindow
|
|
106145
106172
|
VStepperWindowItem: VStepperWindowItem
|
|
106146
|
-
|
|
106173
|
+
VSwitch: VSwitch
|
|
106147
106174
|
VSystemBar: VSystemBar
|
|
106148
106175
|
VTab: VTab
|
|
106149
106176
|
VTabs: VTabs
|
|
106150
106177
|
VTabsWindow: VTabsWindow
|
|
106151
106178
|
VTabsWindowItem: VTabsWindowItem
|
|
106152
106179
|
VTable: VTable
|
|
106153
|
-
VTextarea: VTextarea
|
|
106154
|
-
VSwitch: VSwitch
|
|
106155
106180
|
VTextField: VTextField
|
|
106156
106181
|
VTimeline: VTimeline
|
|
106157
106182
|
VTimelineItem: VTimelineItem
|
|
106158
106183
|
VTimePicker: VTimePicker
|
|
106159
106184
|
VTimePickerClock: VTimePickerClock
|
|
106160
106185
|
VTimePickerControls: VTimePickerControls
|
|
106161
|
-
|
|
106162
|
-
|
|
106186
|
+
VToolbar: VToolbar
|
|
106187
|
+
VToolbarTitle: VToolbarTitle
|
|
106188
|
+
VToolbarItems: VToolbarItems
|
|
106163
106189
|
VTooltip: VTooltip
|
|
106164
106190
|
VTreeview: VTreeview
|
|
106165
106191
|
VTreeviewItem: VTreeviewItem
|
|
106166
106192
|
VTreeviewGroup: VTreeviewGroup
|
|
106167
|
-
|
|
106168
|
-
|
|
106169
|
-
|
|
106193
|
+
VWindow: VWindow
|
|
106194
|
+
VWindowItem: VWindowItem
|
|
106195
|
+
VTextarea: VTextarea
|
|
106170
106196
|
VDataIterator: VDataIterator
|
|
106171
106197
|
VConfirmEdit: VConfirmEdit
|
|
106172
|
-
VHover: VHover
|
|
106173
|
-
VDefaultsProvider: VDefaultsProvider
|
|
106174
|
-
VForm: VForm
|
|
106175
106198
|
VContainer: VContainer
|
|
106176
106199
|
VCol: VCol
|
|
106177
106200
|
VRow: VRow
|
|
@@ -106183,13 +106206,14 @@ declare module 'vue' {
|
|
|
106183
106206
|
VNoSsr: VNoSsr
|
|
106184
106207
|
VParallax: VParallax
|
|
106185
106208
|
VRadio: VRadio
|
|
106186
|
-
VRangeSlider: VRangeSlider
|
|
106187
106209
|
VResponsive: VResponsive
|
|
106188
106210
|
VSnackbarQueue: VSnackbarQueue
|
|
106189
106211
|
VSparkline: VSparkline
|
|
106212
|
+
VRangeSlider: VRangeSlider
|
|
106190
106213
|
VSpeedDial: VSpeedDial
|
|
106191
106214
|
VThemeProvider: VThemeProvider
|
|
106192
106215
|
VValidation: VValidation
|
|
106216
|
+
VVirtualScroll: VVirtualScroll
|
|
106193
106217
|
VFabTransition: VFabTransition
|
|
106194
106218
|
VDialogBottomTransition: VDialogBottomTransition
|
|
106195
106219
|
VDialogTopTransition: VDialogTopTransition
|
|
@@ -106206,17 +106230,18 @@ declare module 'vue' {
|
|
|
106206
106230
|
VExpandTransition: VExpandTransition
|
|
106207
106231
|
VExpandXTransition: VExpandXTransition
|
|
106208
106232
|
VDialogTransition: VDialogTransition
|
|
106209
|
-
|
|
106210
|
-
|
|
106211
|
-
|
|
106212
|
-
|
|
106213
|
-
|
|
106233
|
+
VHover: VHover
|
|
106234
|
+
VDefaultsProvider: VDefaultsProvider
|
|
106235
|
+
VForm: VForm
|
|
106236
|
+
VCheckbox: VCheckbox
|
|
106237
|
+
VCheckboxBtn: VCheckboxBtn
|
|
106214
106238
|
VPie: VPie
|
|
106215
106239
|
VPieSegment: VPieSegment
|
|
106216
106240
|
VPieTooltip: VPieTooltip
|
|
106241
|
+
VColorInput: VColorInput
|
|
106217
106242
|
VIconBtn: VIconBtn
|
|
106218
|
-
|
|
106219
|
-
|
|
106243
|
+
VFileUpload: VFileUpload
|
|
106244
|
+
VFileUploadItem: VFileUploadItem
|
|
106220
106245
|
VStepperVertical: VStepperVertical
|
|
106221
106246
|
VStepperVerticalItem: VStepperVerticalItem
|
|
106222
106247
|
VStepperVerticalActions: VStepperVerticalActions
|
|
@@ -106224,6 +106249,9 @@ declare module 'vue' {
|
|
|
106224
106249
|
VVideo: VVideo
|
|
106225
106250
|
VVideoControls: VVideoControls
|
|
106226
106251
|
VVideoVolume: VVideoVolume
|
|
106252
|
+
VPicker: VPicker
|
|
106253
|
+
VPickerTitle: VPickerTitle
|
|
106254
|
+
VCalendar: VCalendar
|
|
106227
106255
|
VDateInput: VDateInput
|
|
106228
106256
|
VMaskInput: VMaskInput
|
|
106229
106257
|
VPullToRefresh: VPullToRefresh
|
package/dist/vuetify.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
|
*/
|
|
@@ -4432,6 +4432,10 @@ const allowedDensities$1 = [null, 'prominent', 'default', 'comfortable', 'compac
|
|
|
4432
4432
|
const makeVToolbarProps = propsFactory({
|
|
4433
4433
|
absolute: Boolean,
|
|
4434
4434
|
collapse: Boolean,
|
|
4435
|
+
collapsePosition: {
|
|
4436
|
+
type: String,
|
|
4437
|
+
default: 'start'
|
|
4438
|
+
},
|
|
4435
4439
|
color: String,
|
|
4436
4440
|
density: {
|
|
4437
4441
|
type: String,
|
|
@@ -4503,7 +4507,7 @@ const VToolbar = genericComponent()({
|
|
|
4503
4507
|
const extension = slots.extension?.();
|
|
4504
4508
|
isExtended.value = props.extended === null ? !!extension : props.extended;
|
|
4505
4509
|
return createVNode(props.tag, {
|
|
4506
|
-
"class": normalizeClass(['v-toolbar', {
|
|
4510
|
+
"class": normalizeClass(['v-toolbar', `v-toolbar--collapse-${props.collapsePosition}`, {
|
|
4507
4511
|
'v-toolbar--absolute': props.absolute,
|
|
4508
4512
|
'v-toolbar--collapse': props.collapse,
|
|
4509
4513
|
'v-toolbar--flat': props.flat,
|
|
@@ -32441,7 +32445,7 @@ function createVuetify$1() {
|
|
|
32441
32445
|
};
|
|
32442
32446
|
});
|
|
32443
32447
|
}
|
|
32444
|
-
const version$1 = "3.10.5-dev.2025-10-
|
|
32448
|
+
const version$1 = "3.10.5-dev.2025-10-17";
|
|
32445
32449
|
createVuetify$1.version = version$1;
|
|
32446
32450
|
|
|
32447
32451
|
// Vue's inject() can only be used in setup
|
|
@@ -32466,7 +32470,7 @@ const createVuetify = function () {
|
|
|
32466
32470
|
...options
|
|
32467
32471
|
});
|
|
32468
32472
|
};
|
|
32469
|
-
const version = "3.10.5-dev.2025-10-
|
|
32473
|
+
const version = "3.10.5-dev.2025-10-17";
|
|
32470
32474
|
createVuetify.version = version;
|
|
32471
32475
|
|
|
32472
32476
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useHotkey, useLayout, useLocale, useMask, useRtl, useTheme, version };
|