@vuetify/nightly 3.5.9-dev.2024-03-17 → 3.5.9-dev.2024-03-26
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 +3 -2
- package/dist/json/attributes.json +24 -0
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +124 -124
- package/dist/json/tags.json +7 -1
- package/dist/json/web-types.json +55 -1
- package/dist/vuetify-labs.css +3291 -3291
- package/dist/vuetify-labs.d.ts +36 -0
- 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.css +578 -578
- package/dist/vuetify.d.ts +75 -39
- 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 +6 -6
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VMain/VMain.mjs +6 -1
- package/lib/components/VMain/VMain.mjs.map +1 -1
- package/lib/components/VMain/index.d.mts +36 -0
- package/lib/components/index.d.mts +36 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +39 -39
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
|
@@ -39622,6 +39622,12 @@ declare const VMain: {
|
|
|
39622
39622
|
tag: string;
|
|
39623
39623
|
scrollable: boolean;
|
|
39624
39624
|
} & {
|
|
39625
|
+
height?: string | number | undefined;
|
|
39626
|
+
width?: string | number | undefined;
|
|
39627
|
+
maxHeight?: string | number | undefined;
|
|
39628
|
+
maxWidth?: string | number | undefined;
|
|
39629
|
+
minHeight?: string | number | undefined;
|
|
39630
|
+
minWidth?: string | number | undefined;
|
|
39625
39631
|
class?: any;
|
|
39626
39632
|
} & {
|
|
39627
39633
|
$children?: vue.VNodeChild | {
|
|
@@ -39637,6 +39643,12 @@ declare const VMain: {
|
|
|
39637
39643
|
tag: string;
|
|
39638
39644
|
scrollable: boolean;
|
|
39639
39645
|
} & {
|
|
39646
|
+
height?: string | number | undefined;
|
|
39647
|
+
width?: string | number | undefined;
|
|
39648
|
+
maxHeight?: string | number | undefined;
|
|
39649
|
+
maxWidth?: string | number | undefined;
|
|
39650
|
+
minHeight?: string | number | undefined;
|
|
39651
|
+
minWidth?: string | number | undefined;
|
|
39640
39652
|
class?: any;
|
|
39641
39653
|
} & {
|
|
39642
39654
|
$children?: vue.VNodeChild | {
|
|
@@ -39667,6 +39679,12 @@ declare const VMain: {
|
|
|
39667
39679
|
tag: string;
|
|
39668
39680
|
scrollable: boolean;
|
|
39669
39681
|
} & {
|
|
39682
|
+
height?: string | number | undefined;
|
|
39683
|
+
width?: string | number | undefined;
|
|
39684
|
+
maxHeight?: string | number | undefined;
|
|
39685
|
+
maxWidth?: string | number | undefined;
|
|
39686
|
+
minHeight?: string | number | undefined;
|
|
39687
|
+
minWidth?: string | number | undefined;
|
|
39670
39688
|
class?: any;
|
|
39671
39689
|
} & {
|
|
39672
39690
|
$children?: vue.VNodeChild | {
|
|
@@ -39690,6 +39708,12 @@ declare const VMain: {
|
|
|
39690
39708
|
tag: string;
|
|
39691
39709
|
scrollable: boolean;
|
|
39692
39710
|
} & {
|
|
39711
|
+
height?: string | number | undefined;
|
|
39712
|
+
width?: string | number | undefined;
|
|
39713
|
+
maxHeight?: string | number | undefined;
|
|
39714
|
+
maxWidth?: string | number | undefined;
|
|
39715
|
+
minHeight?: string | number | undefined;
|
|
39716
|
+
minWidth?: string | number | undefined;
|
|
39693
39717
|
class?: any;
|
|
39694
39718
|
} & {
|
|
39695
39719
|
$children?: vue.VNodeChild | {
|
|
@@ -39716,6 +39740,12 @@ declare const VMain: {
|
|
|
39716
39740
|
type: vue.PropType<string>;
|
|
39717
39741
|
default: string;
|
|
39718
39742
|
};
|
|
39743
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
39744
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
39745
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
39746
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
39747
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
39748
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
39719
39749
|
class: vue.PropType<any>;
|
|
39720
39750
|
style: {
|
|
39721
39751
|
type: vue.PropType<vue.StyleValue>;
|
|
@@ -39730,6 +39760,12 @@ declare const VMain: {
|
|
|
39730
39760
|
type: vue.PropType<string>;
|
|
39731
39761
|
default: string;
|
|
39732
39762
|
};
|
|
39763
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
39764
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
39765
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
39766
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
39767
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
39768
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
39733
39769
|
class: vue.PropType<any>;
|
|
39734
39770
|
style: {
|
|
39735
39771
|
type: vue.PropType<vue.StyleValue>;
|
|
@@ -68914,6 +68950,7 @@ declare module '@vue/runtime-core' {
|
|
|
68914
68950
|
}
|
|
68915
68951
|
|
|
68916
68952
|
export interface GlobalComponents {
|
|
68953
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
68917
68954
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
68918
68955
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
68919
68956
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
@@ -68922,39 +68959,31 @@ declare module '@vue/runtime-core' {
|
|
|
68922
68959
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
68923
68960
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
68924
68961
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
68962
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
68963
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
68964
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
68965
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
68925
68966
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
68926
68967
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
68927
68968
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
68928
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
68929
68969
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
68930
|
-
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
68931
|
-
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
68932
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
68933
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
68934
68970
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
68971
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
68972
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
68973
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
68974
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
68975
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
68976
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
68935
68977
|
VCard: typeof import('vuetify/components')['VCard']
|
|
68936
68978
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
68937
68979
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
68938
68980
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
68939
68981
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
68940
68982
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
68941
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
68942
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
68943
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
68944
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
68945
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
68946
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
68947
68983
|
VChip: typeof import('vuetify/components')['VChip']
|
|
68948
68984
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
68949
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
|
68950
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
68951
|
-
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
68952
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
68953
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
68954
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
68955
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
68956
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
68957
68985
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
68986
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
68958
68987
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
68959
68988
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
68960
68989
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -68962,14 +68991,20 @@ declare module '@vue/runtime-core' {
|
|
|
68962
68991
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
68963
68992
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
68964
68993
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
68965
|
-
|
|
68994
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
68995
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
68996
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
68997
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
68998
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
68999
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
69000
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
69001
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
68966
69002
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
69003
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
68967
69004
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
68968
69005
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
68969
69006
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
68970
69007
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
68971
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
68972
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
68973
69008
|
VField: typeof import('vuetify/components')['VField']
|
|
68974
69009
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
68975
69010
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
@@ -68977,6 +69012,8 @@ declare module '@vue/runtime-core' {
|
|
|
68977
69012
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
68978
69013
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
68979
69014
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
69015
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
69016
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
68980
69017
|
VImg: typeof import('vuetify/components')['VImg']
|
|
68981
69018
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
68982
69019
|
VInput: typeof import('vuetify/components')['VInput']
|
|
@@ -68984,6 +69021,7 @@ declare module '@vue/runtime-core' {
|
|
|
68984
69021
|
VItem: typeof import('vuetify/components')['VItem']
|
|
68985
69022
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
68986
69023
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
69024
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
68987
69025
|
VList: typeof import('vuetify/components')['VList']
|
|
68988
69026
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
68989
69027
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -68993,47 +69031,46 @@ declare module '@vue/runtime-core' {
|
|
|
68993
69031
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
68994
69032
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
68995
69033
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
68996
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
68997
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
|
68998
69034
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
68999
69035
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
69000
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
|
69001
69036
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
69037
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
|
69002
69038
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
69039
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
|
69003
69040
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
69004
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
69005
69041
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
69042
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
69006
69043
|
VRating: typeof import('vuetify/components')['VRating']
|
|
69007
69044
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
69008
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
69009
69045
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
69046
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
69010
69047
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
69048
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
69049
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
69011
69050
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
69012
69051
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
69013
|
-
|
|
69014
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
69052
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
69015
69053
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
69016
69054
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
69017
69055
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
69018
69056
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
69019
69057
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
69020
69058
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
69021
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
69022
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
69023
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
69024
69059
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
69025
69060
|
VTab: typeof import('vuetify/components')['VTab']
|
|
69061
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
69026
69062
|
VTable: typeof import('vuetify/components')['VTable']
|
|
69027
69063
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
69028
|
-
|
|
69064
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
69029
69065
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
69030
69066
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
69031
69067
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
69032
|
-
|
|
69033
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
69068
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
69034
69069
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
69035
69070
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
69036
69071
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
69072
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
|
69073
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
69037
69074
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
69038
69075
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
69039
69076
|
VForm: typeof import('vuetify/components')['VForm']
|
|
@@ -69070,22 +69107,21 @@ declare module '@vue/runtime-core' {
|
|
|
69070
69107
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
69071
69108
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
69072
69109
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
69073
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
69074
69110
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
69075
69111
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
69076
69112
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
69077
69113
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
69078
69114
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
69079
69115
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
69116
|
+
VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
|
|
69080
69117
|
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
69081
69118
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
69082
69119
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
69083
|
-
VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
|
|
69084
|
-
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
69085
69120
|
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
69121
|
+
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
69122
|
+
VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
|
|
69086
69123
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
|
69087
69124
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
|
69088
69125
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
|
69089
|
-
VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
|
|
69090
69126
|
}
|
|
69091
69127
|
}
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.5.9-dev.2024-03-
|
|
2
|
+
* Vuetify v3.5.9-dev.2024-03-26
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -22671,6 +22671,7 @@ const VLocaleProvider = genericComponent()({
|
|
|
22671
22671
|
const makeVMainProps = propsFactory({
|
|
22672
22672
|
scrollable: Boolean,
|
|
22673
22673
|
...makeComponentProps(),
|
|
22674
|
+
...makeDimensionProps(),
|
|
22674
22675
|
...makeTagProps({
|
|
22675
22676
|
tag: 'main'
|
|
22676
22677
|
})
|
|
@@ -22682,6 +22683,9 @@ const VMain = genericComponent()({
|
|
|
22682
22683
|
let {
|
|
22683
22684
|
slots
|
|
22684
22685
|
} = _ref;
|
|
22686
|
+
const {
|
|
22687
|
+
dimensionStyles
|
|
22688
|
+
} = useDimension(props);
|
|
22685
22689
|
const {
|
|
22686
22690
|
mainStyles,
|
|
22687
22691
|
layoutIsReady
|
|
@@ -22693,7 +22697,7 @@ const VMain = genericComponent()({
|
|
|
22693
22697
|
"class": ['v-main', {
|
|
22694
22698
|
'v-main--scrollable': props.scrollable
|
|
22695
22699
|
}, props.class],
|
|
22696
|
-
"style": [mainStyles.value, ssrBootStyles.value, props.style]
|
|
22700
|
+
"style": [mainStyles.value, ssrBootStyles.value, dimensionStyles.value, props.style]
|
|
22697
22701
|
}, {
|
|
22698
22702
|
default: () => [props.scrollable ? createVNode("div", {
|
|
22699
22703
|
"class": "v-main__scroller"
|
|
@@ -26252,7 +26256,7 @@ function createVuetify$1() {
|
|
|
26252
26256
|
goTo
|
|
26253
26257
|
};
|
|
26254
26258
|
}
|
|
26255
|
-
const version$1 = "3.5.9-dev.2024-03-
|
|
26259
|
+
const version$1 = "3.5.9-dev.2024-03-26";
|
|
26256
26260
|
createVuetify$1.version = version$1;
|
|
26257
26261
|
|
|
26258
26262
|
// Vue's inject() can only be used in setup
|
|
@@ -26277,7 +26281,7 @@ const createVuetify = function () {
|
|
|
26277
26281
|
...options
|
|
26278
26282
|
});
|
|
26279
26283
|
};
|
|
26280
|
-
const version = "3.5.9-dev.2024-03-
|
|
26284
|
+
const version = "3.5.9-dev.2024-03-26";
|
|
26281
26285
|
createVuetify.version = version;
|
|
26282
26286
|
|
|
26283
26287
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|