@vuetify/nightly 3.6.3-dev.2024-05-14 → 3.6.3-dev.2024-05-29
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 +16 -16
- package/dist/json/importMap.json +134 -134
- package/dist/json/tags.json +7 -1
- package/dist/json/web-types.json +55 -1
- package/dist/vuetify-labs.css +3049 -3049
- 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 +293 -293
- package/dist/vuetify.d.ts +82 -46
- 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/VGrid/VContainer.mjs +6 -1
- package/lib/components/VGrid/VContainer.mjs.map +1 -1
- package/lib/components/VGrid/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 +46 -46
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -37075,6 +37075,12 @@ declare const VContainer: {
|
|
37075
37075
|
fluid: boolean;
|
37076
37076
|
} & {
|
37077
37077
|
class?: any;
|
37078
|
+
width?: string | number | undefined;
|
37079
|
+
height?: string | number | undefined;
|
37080
|
+
maxHeight?: string | number | undefined;
|
37081
|
+
maxWidth?: string | number | undefined;
|
37082
|
+
minHeight?: string | number | undefined;
|
37083
|
+
minWidth?: string | number | undefined;
|
37078
37084
|
} & {
|
37079
37085
|
$children?: vue.VNodeChild | {
|
37080
37086
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -37090,6 +37096,12 @@ declare const VContainer: {
|
|
37090
37096
|
fluid: boolean;
|
37091
37097
|
} & {
|
37092
37098
|
class?: any;
|
37099
|
+
width?: string | number | undefined;
|
37100
|
+
height?: string | number | undefined;
|
37101
|
+
maxHeight?: string | number | undefined;
|
37102
|
+
maxWidth?: string | number | undefined;
|
37103
|
+
minHeight?: string | number | undefined;
|
37104
|
+
minWidth?: string | number | undefined;
|
37093
37105
|
} & {
|
37094
37106
|
$children?: vue.VNodeChild | {
|
37095
37107
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -37120,6 +37132,12 @@ declare const VContainer: {
|
|
37120
37132
|
fluid: boolean;
|
37121
37133
|
} & {
|
37122
37134
|
class?: any;
|
37135
|
+
width?: string | number | undefined;
|
37136
|
+
height?: string | number | undefined;
|
37137
|
+
maxHeight?: string | number | undefined;
|
37138
|
+
maxWidth?: string | number | undefined;
|
37139
|
+
minHeight?: string | number | undefined;
|
37140
|
+
minWidth?: string | number | undefined;
|
37123
37141
|
} & {
|
37124
37142
|
$children?: vue.VNodeChild | {
|
37125
37143
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -37143,6 +37161,12 @@ declare const VContainer: {
|
|
37143
37161
|
fluid: boolean;
|
37144
37162
|
} & {
|
37145
37163
|
class?: any;
|
37164
|
+
width?: string | number | undefined;
|
37165
|
+
height?: string | number | undefined;
|
37166
|
+
maxHeight?: string | number | undefined;
|
37167
|
+
maxWidth?: string | number | undefined;
|
37168
|
+
minHeight?: string | number | undefined;
|
37169
|
+
minWidth?: string | number | undefined;
|
37146
37170
|
} & {
|
37147
37171
|
$children?: vue.VNodeChild | {
|
37148
37172
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -37165,6 +37189,12 @@ declare const VContainer: {
|
|
37165
37189
|
type: StringConstructor;
|
37166
37190
|
default: string;
|
37167
37191
|
};
|
37192
|
+
height: (StringConstructor | NumberConstructor)[];
|
37193
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
37194
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
37195
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
37196
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
37197
|
+
width: (StringConstructor | NumberConstructor)[];
|
37168
37198
|
class: vue.PropType<any>;
|
37169
37199
|
style: {
|
37170
37200
|
type: vue.PropType<vue.StyleValue>;
|
@@ -37179,6 +37209,12 @@ declare const VContainer: {
|
|
37179
37209
|
type: StringConstructor;
|
37180
37210
|
default: string;
|
37181
37211
|
};
|
37212
|
+
height: (StringConstructor | NumberConstructor)[];
|
37213
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
37214
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
37215
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
37216
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
37217
|
+
width: (StringConstructor | NumberConstructor)[];
|
37182
37218
|
class: vue.PropType<any>;
|
37183
37219
|
style: {
|
37184
37220
|
type: vue.PropType<vue.StyleValue>;
|
@@ -73407,41 +73443,41 @@ declare module '@vue/runtime-core' {
|
|
73407
73443
|
}
|
73408
73444
|
|
73409
73445
|
export interface GlobalComponents {
|
73410
|
-
VApp: typeof import('vuetify/components')['VApp']
|
73411
|
-
VAppBar: typeof import('vuetify/components')['VAppBar']
|
73412
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
73413
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
73414
73446
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
73415
73447
|
VAlert: typeof import('vuetify/components')['VAlert']
|
73416
73448
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
73417
73449
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
73418
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
73419
73450
|
VBanner: typeof import('vuetify/components')['VBanner']
|
73420
73451
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
73421
73452
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
73422
|
-
|
73453
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
73454
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
73455
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
73456
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
73457
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
73423
73458
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
73424
73459
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
73425
73460
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
73426
|
-
|
73427
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
73428
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
73461
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
73429
73462
|
VCard: typeof import('vuetify/components')['VCard']
|
73430
73463
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
73431
73464
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
73432
73465
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
73433
73466
|
VCardText: typeof import('vuetify/components')['VCardText']
|
73434
73467
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
73468
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
73469
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
73470
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
73435
73471
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
73436
73472
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
73437
|
-
|
73438
|
-
|
73473
|
+
VApp: typeof import('vuetify/components')['VApp']
|
73474
|
+
VChip: typeof import('vuetify/components')['VChip']
|
73439
73475
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
73440
73476
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
73441
|
-
|
73442
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
73477
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
73443
73478
|
VCode: typeof import('vuetify/components')['VCode']
|
73444
73479
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
73480
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
73445
73481
|
VCounter: typeof import('vuetify/components')['VCounter']
|
73446
73482
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
73447
73483
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
@@ -73450,36 +73486,36 @@ declare module '@vue/runtime-core' {
|
|
73450
73486
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
73451
73487
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
73452
73488
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
73489
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
73453
73490
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
73454
73491
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
73455
73492
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
73456
73493
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
73457
73494
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
73458
73495
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
73459
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
73460
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
73461
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
73462
|
-
VField: typeof import('vuetify/components')['VField']
|
73463
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
73464
73496
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
73465
73497
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
73466
73498
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
73467
73499
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
73468
|
-
|
73469
|
-
|
73500
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
73501
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
73502
|
+
VField: typeof import('vuetify/components')['VField']
|
73503
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
73470
73504
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
73505
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
73471
73506
|
VIcon: typeof import('vuetify/components')['VIcon']
|
73472
73507
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
73473
73508
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
73474
73509
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
73475
73510
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
73511
|
+
VFab: typeof import('vuetify/components')['VFab']
|
73476
73512
|
VImg: typeof import('vuetify/components')['VImg']
|
73477
73513
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
73478
73514
|
VItem: typeof import('vuetify/components')['VItem']
|
73515
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
73479
73516
|
VInput: typeof import('vuetify/components')['VInput']
|
73480
73517
|
VLabel: typeof import('vuetify/components')['VLabel']
|
73481
73518
|
VKbd: typeof import('vuetify/components')['VKbd']
|
73482
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
73483
73519
|
VList: typeof import('vuetify/components')['VList']
|
73484
73520
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
73485
73521
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -73489,51 +73525,51 @@ declare module '@vue/runtime-core' {
|
|
73489
73525
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
73490
73526
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
73491
73527
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
73492
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
73493
73528
|
VMain: typeof import('vuetify/components')['VMain']
|
73494
|
-
|
73529
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
73530
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
73495
73531
|
VMessages: typeof import('vuetify/components')['VMessages']
|
73532
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
73496
73533
|
VPagination: typeof import('vuetify/components')['VPagination']
|
73497
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
73498
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
73499
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
73500
73534
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
73535
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
73536
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
73501
73537
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
73502
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
73503
73538
|
VRating: typeof import('vuetify/components')['VRating']
|
73504
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
73505
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
73506
73539
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
73507
|
-
|
73540
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
73541
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
73508
73542
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
73509
73543
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
73510
|
-
|
73544
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
73545
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
73511
73546
|
VStepper: typeof import('vuetify/components')['VStepper']
|
73512
73547
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
73513
73548
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
73514
73549
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
73515
73550
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
73516
73551
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
73517
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
73518
73552
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
73519
|
-
|
73520
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
73553
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
73521
73554
|
VTab: typeof import('vuetify/components')['VTab']
|
73522
73555
|
VTabs: typeof import('vuetify/components')['VTabs']
|
73523
73556
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
73524
73557
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
73558
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
73559
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
73525
73560
|
VTextField: typeof import('vuetify/components')['VTextField']
|
73526
|
-
|
73527
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
73528
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
73561
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
73529
73562
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
73530
73563
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
73531
73564
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
73532
|
-
|
73565
|
+
VTable: typeof import('vuetify/components')['VTable']
|
73566
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
73567
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
73533
73568
|
VWindow: typeof import('vuetify/components')['VWindow']
|
73534
73569
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
73535
|
-
|
73570
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
73536
73571
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
73572
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
73537
73573
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
73538
73574
|
VForm: typeof import('vuetify/components')['VForm']
|
73539
73575
|
VContainer: typeof import('vuetify/components')['VContainer']
|
@@ -73543,18 +73579,18 @@ declare module '@vue/runtime-core' {
|
|
73543
73579
|
VHover: typeof import('vuetify/components')['VHover']
|
73544
73580
|
VLayout: typeof import('vuetify/components')['VLayout']
|
73545
73581
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
73546
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
73547
73582
|
VLazy: typeof import('vuetify/components')['VLazy']
|
73583
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
73548
73584
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
73549
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
73550
73585
|
VRadio: typeof import('vuetify/components')['VRadio']
|
73586
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
73551
73587
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
73552
73588
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
73553
73589
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
73554
73590
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
73555
73591
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
73556
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
73557
73592
|
VValidation: typeof import('vuetify/components')['VValidation']
|
73593
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
73558
73594
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
73559
73595
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
73560
73596
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -73577,17 +73613,17 @@ declare module '@vue/runtime-core' {
|
|
73577
73613
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
73578
73614
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
73579
73615
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
73580
|
-
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
73581
|
-
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
73582
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
73583
73616
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
73584
73617
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
73585
73618
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
73619
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
73620
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
73621
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
73586
73622
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
73587
73623
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
73588
73624
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
73589
73625
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
73590
|
-
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
73591
73626
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
73627
|
+
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
73592
73628
|
}
|
73593
73629
|
}
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.3-dev.2024-05-
|
2
|
+
* Vuetify v3.6.3-dev.2024-05-29
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -21051,6 +21051,7 @@ const makeVContainerProps = propsFactory({
|
|
21051
21051
|
default: false
|
21052
21052
|
},
|
21053
21053
|
...makeComponentProps(),
|
21054
|
+
...makeDimensionProps(),
|
21054
21055
|
...makeTagProps()
|
21055
21056
|
}, 'VContainer');
|
21056
21057
|
const VContainer = genericComponent()({
|
@@ -21063,11 +21064,14 @@ const VContainer = genericComponent()({
|
|
21063
21064
|
const {
|
21064
21065
|
rtlClasses
|
21065
21066
|
} = useRtl();
|
21067
|
+
const {
|
21068
|
+
dimensionStyles
|
21069
|
+
} = useDimension(props);
|
21066
21070
|
useRender(() => createVNode(props.tag, {
|
21067
21071
|
"class": ['v-container', {
|
21068
21072
|
'v-container--fluid': props.fluid
|
21069
21073
|
}, rtlClasses.value, props.class],
|
21070
|
-
"style": props.style
|
21074
|
+
"style": [dimensionStyles.value, props.style]
|
21071
21075
|
}, slots));
|
21072
21076
|
return {};
|
21073
21077
|
}
|
@@ -27928,7 +27932,7 @@ function createVuetify$1() {
|
|
27928
27932
|
goTo
|
27929
27933
|
};
|
27930
27934
|
}
|
27931
|
-
const version$1 = "3.6.3-dev.2024-05-
|
27935
|
+
const version$1 = "3.6.3-dev.2024-05-29";
|
27932
27936
|
createVuetify$1.version = version$1;
|
27933
27937
|
|
27934
27938
|
// Vue's inject() can only be used in setup
|
@@ -27953,7 +27957,7 @@ const createVuetify = function () {
|
|
27953
27957
|
...options
|
27954
27958
|
});
|
27955
27959
|
};
|
27956
|
-
const version = "3.6.3-dev.2024-05-
|
27960
|
+
const version = "3.6.3-dev.2024-05-29";
|
27957
27961
|
createVuetify.version = version;
|
27958
27962
|
|
27959
27963
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|