@vuetify/nightly 3.7.7-dev.2025-01-20 → 3.7.7-dev.2025-01-23
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 +7 -3
- package/dist/json/attributes.json +1847 -1847
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +192 -192
- package/dist/json/web-types.json +3645 -3645
- package/dist/vuetify-labs.css +3069 -3069
- package/dist/vuetify-labs.d.ts +78 -77
- package/dist/vuetify-labs.esm.js +113 -73
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +113 -73
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4776 -4776
- package/dist/vuetify.d.ts +78 -77
- package/dist/vuetify.esm.js +113 -73
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +113 -73
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +483 -477
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VList/VListGroup.js +1 -0
- package/lib/components/VList/VListGroup.js.map +1 -1
- package/lib/components/VList/VListItem.js +2 -0
- package/lib/components/VList/VListItem.js.map +1 -1
- package/lib/composables/display.js +4 -1
- package/lib/composables/display.js.map +1 -1
- package/lib/composables/nested/nested.d.ts +1 -1
- package/lib/composables/nested/nested.js +3 -1
- package/lib/composables/nested/nested.js.map +1 -1
- package/lib/composables/nested/selectStrategies.d.ts +1 -0
- package/lib/composables/nested/selectStrategies.js +21 -0
- package/lib/composables/nested/selectStrategies.js.map +1 -1
- package/lib/entry-bundler.d.ts +2 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +77 -76
- package/lib/framework.js +83 -72
- package/lib/framework.js.map +1 -1
- package/lib/labs/entry-bundler.d.ts +2 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -4281,7 +4281,7 @@ type SelectStrategy = {
|
|
4281
4281
|
};
|
4282
4282
|
|
4283
4283
|
type ActiveStrategyProp = 'single-leaf' | 'leaf' | 'independent' | 'single-independent' | ActiveStrategy | ((mandatory: boolean) => ActiveStrategy);
|
4284
|
-
type SelectStrategyProp = 'single-leaf' | 'leaf' | 'independent' | 'single-independent' | 'classic' | SelectStrategy | ((mandatory: boolean) => SelectStrategy);
|
4284
|
+
type SelectStrategyProp = 'single-leaf' | 'leaf' | 'independent' | 'single-independent' | 'classic' | 'trunk' | SelectStrategy | ((mandatory: boolean) => SelectStrategy);
|
4285
4285
|
type OpenStrategyProp = 'single' | 'multiple' | 'list' | OpenStrategy;
|
4286
4286
|
|
4287
4287
|
type VListChildrenSlots<T> = {
|
@@ -72256,6 +72256,7 @@ declare const version: string;
|
|
72256
72256
|
|
72257
72257
|
declare const createVuetify: (options?: VuetifyOptions) => {
|
72258
72258
|
install: (app: vue.App) => void;
|
72259
|
+
unmount: () => void;
|
72259
72260
|
defaults: vue.Ref<DefaultsInstance, DefaultsInstance>;
|
72260
72261
|
display: DisplayInstance;
|
72261
72262
|
theme: ThemeInstance & {
|
@@ -72323,7 +72324,7 @@ declare const createVuetify: (options?: VuetifyOptions) => {
|
|
72323
72324
|
};
|
72324
72325
|
};
|
72325
72326
|
goTo: GoToInstance;
|
72326
|
-
};
|
72327
|
+
} | undefined;
|
72327
72328
|
|
72328
72329
|
export { type DateInstance, type DefaultsInstance, type DisplayBreakpoint, type DisplayInstance, type DisplayThresholds, type GoToInstance, type IconAliases, type IconOptions, type IconProps, type IconSet, type JSXComponent, type LocaleInstance, type LocaleMessages, type LocaleOptions, type RtlInstance, type RtlOptions, type SubmitEventPromise, type ThemeDefinition, type ThemeInstance, index_d$1 as blueprints, allComponents_d as components, createVuetify, index_d as directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|
72329
72330
|
|
@@ -72362,43 +72363,40 @@ declare module 'vue' {
|
|
72362
72363
|
$children?: VNodeChild
|
72363
72364
|
}
|
72364
72365
|
export interface GlobalComponents {
|
72366
|
+
VApp: VApp
|
72367
|
+
VAlert: VAlert
|
72368
|
+
VAlertTitle: VAlertTitle
|
72369
|
+
VAutocomplete: VAutocomplete
|
72365
72370
|
VAvatar: VAvatar
|
72371
|
+
VBottomNavigation: VBottomNavigation
|
72366
72372
|
VAppBar: VAppBar
|
72367
72373
|
VAppBarNavIcon: VAppBarNavIcon
|
72368
72374
|
VAppBarTitle: VAppBarTitle
|
72369
|
-
|
72370
|
-
|
72371
|
-
|
72375
|
+
VBanner: VBanner
|
72376
|
+
VBannerActions: VBannerActions
|
72377
|
+
VBannerText: VBannerText
|
72372
72378
|
VBadge: VBadge
|
72373
|
-
VBottomNavigation: VBottomNavigation
|
72374
72379
|
VBreadcrumbs: VBreadcrumbs
|
72375
72380
|
VBreadcrumbsItem: VBreadcrumbsItem
|
72376
72381
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
72377
|
-
VBtn: VBtn
|
72378
72382
|
VBottomSheet: VBottomSheet
|
72379
|
-
|
72380
|
-
|
72381
|
-
VBannerText: VBannerText
|
72382
|
-
VCheckbox: VCheckbox
|
72383
|
-
VCheckboxBtn: VCheckboxBtn
|
72384
|
-
VBtnGroup: VBtnGroup
|
72383
|
+
VBtn: VBtn
|
72384
|
+
VBtnToggle: VBtnToggle
|
72385
72385
|
VCard: VCard
|
72386
72386
|
VCardActions: VCardActions
|
72387
72387
|
VCardItem: VCardItem
|
72388
72388
|
VCardSubtitle: VCardSubtitle
|
72389
72389
|
VCardText: VCardText
|
72390
72390
|
VCardTitle: VCardTitle
|
72391
|
-
|
72391
|
+
VCode: VCode
|
72392
|
+
VCheckbox: VCheckbox
|
72393
|
+
VCheckboxBtn: VCheckboxBtn
|
72392
72394
|
VCarousel: VCarousel
|
72393
72395
|
VCarouselItem: VCarouselItem
|
72394
|
-
|
72395
|
-
|
72396
|
-
VColorPicker: VColorPicker
|
72397
|
-
VCode: VCode
|
72396
|
+
VBtnGroup: VBtnGroup
|
72397
|
+
VChip: VChip
|
72398
72398
|
VChipGroup: VChipGroup
|
72399
|
-
|
72400
|
-
VDivider: VDivider
|
72401
|
-
VDialog: VDialog
|
72399
|
+
VColorPicker: VColorPicker
|
72402
72400
|
VDataTable: VDataTable
|
72403
72401
|
VDataTableHeaders: VDataTableHeaders
|
72404
72402
|
VDataTableFooter: VDataTableFooter
|
@@ -72406,22 +72404,36 @@ declare module 'vue' {
|
|
72406
72404
|
VDataTableRow: VDataTableRow
|
72407
72405
|
VDataTableVirtual: VDataTableVirtual
|
72408
72406
|
VDataTableServer: VDataTableServer
|
72409
|
-
|
72407
|
+
VCombobox: VCombobox
|
72408
|
+
VCounter: VCounter
|
72409
|
+
VDialog: VDialog
|
72410
|
+
VDatePicker: VDatePicker
|
72411
|
+
VDatePickerControls: VDatePickerControls
|
72412
|
+
VDatePickerHeader: VDatePickerHeader
|
72413
|
+
VDatePickerMonth: VDatePickerMonth
|
72414
|
+
VDatePickerMonths: VDatePickerMonths
|
72415
|
+
VDatePickerYears: VDatePickerYears
|
72416
|
+
VDivider: VDivider
|
72410
72417
|
VEmptyState: VEmptyState
|
72411
|
-
VFooter: VFooter
|
72412
|
-
VFab: VFab
|
72413
72418
|
VField: VField
|
72414
72419
|
VFieldLabel: VFieldLabel
|
72415
|
-
|
72416
|
-
|
72417
|
-
|
72420
|
+
VFab: VFab
|
72421
|
+
VFooter: VFooter
|
72422
|
+
VExpansionPanels: VExpansionPanels
|
72423
|
+
VExpansionPanel: VExpansionPanel
|
72424
|
+
VExpansionPanelText: VExpansionPanelText
|
72425
|
+
VExpansionPanelTitle: VExpansionPanelTitle
|
72426
|
+
VFileInput: VFileInput
|
72418
72427
|
VImg: VImg
|
72419
|
-
|
72428
|
+
VInfiniteScroll: VInfiniteScroll
|
72420
72429
|
VIcon: VIcon
|
72421
72430
|
VComponentIcon: VComponentIcon
|
72422
72431
|
VSvgIcon: VSvgIcon
|
72423
72432
|
VLigatureIcon: VLigatureIcon
|
72424
72433
|
VClassIcon: VClassIcon
|
72434
|
+
VKbd: VKbd
|
72435
|
+
VLabel: VLabel
|
72436
|
+
VInput: VInput
|
72425
72437
|
VList: VList
|
72426
72438
|
VListGroup: VListGroup
|
72427
72439
|
VListImg: VListImg
|
@@ -72431,79 +72443,73 @@ declare module 'vue' {
|
|
72431
72443
|
VListItemSubtitle: VListItemSubtitle
|
72432
72444
|
VListItemTitle: VListItemTitle
|
72433
72445
|
VListSubheader: VListSubheader
|
72434
|
-
|
72435
|
-
|
72436
|
-
VMessages: VMessages
|
72446
|
+
VItemGroup: VItemGroup
|
72447
|
+
VItem: VItem
|
72437
72448
|
VMenu: VMenu
|
72438
|
-
VOverlay: VOverlay
|
72439
72449
|
VNavigationDrawer: VNavigationDrawer
|
72450
|
+
VOverlay: VOverlay
|
72451
|
+
VMain: VMain
|
72452
|
+
VMessages: VMessages
|
72440
72453
|
VPagination: VPagination
|
72441
|
-
|
72442
|
-
|
72443
|
-
|
72444
|
-
VDatePickerMonth: VDatePickerMonth
|
72445
|
-
VDatePickerMonths: VDatePickerMonths
|
72446
|
-
VDatePickerYears: VDatePickerYears
|
72447
|
-
VKbd: VKbd
|
72454
|
+
VOtpInput: VOtpInput
|
72455
|
+
VProgressCircular: VProgressCircular
|
72456
|
+
VProgressLinear: VProgressLinear
|
72448
72457
|
VRadioGroup: VRadioGroup
|
72449
|
-
VRating: VRating
|
72450
|
-
VSelect: VSelect
|
72451
72458
|
VSelectionControlGroup: VSelectionControlGroup
|
72452
72459
|
VSelectionControl: VSelectionControl
|
72453
|
-
|
72454
|
-
|
72460
|
+
VSelect: VSelect
|
72461
|
+
VSkeletonLoader: VSkeletonLoader
|
72455
72462
|
VSheet: VSheet
|
72456
72463
|
VSnackbar: VSnackbar
|
72457
72464
|
VSlider: VSlider
|
72465
|
+
VSystemBar: VSystemBar
|
72466
|
+
VSlideGroup: VSlideGroup
|
72467
|
+
VSlideGroupItem: VSlideGroupItem
|
72468
|
+
VSwitch: VSwitch
|
72458
72469
|
VStepper: VStepper
|
72459
72470
|
VStepperActions: VStepperActions
|
72460
72471
|
VStepperHeader: VStepperHeader
|
72461
72472
|
VStepperItem: VStepperItem
|
72462
72473
|
VStepperWindow: VStepperWindow
|
72463
72474
|
VStepperWindowItem: VStepperWindowItem
|
72464
|
-
|
72465
|
-
VSkeletonLoader: VSkeletonLoader
|
72466
|
-
VTextarea: VTextarea
|
72475
|
+
VTextField: VTextField
|
72467
72476
|
VTab: VTab
|
72468
72477
|
VTabs: VTabs
|
72469
72478
|
VTabsWindow: VTabsWindow
|
72470
72479
|
VTabsWindowItem: VTabsWindowItem
|
72471
|
-
|
72472
|
-
VProgressCircular: VProgressCircular
|
72480
|
+
VRating: VRating
|
72473
72481
|
VToolbar: VToolbar
|
72474
72482
|
VToolbarTitle: VToolbarTitle
|
72475
72483
|
VToolbarItems: VToolbarItems
|
72476
|
-
|
72477
|
-
VWindow: VWindow
|
72478
|
-
VWindowItem: VWindowItem
|
72479
|
-
VTooltip: VTooltip
|
72480
|
-
VExpansionPanels: VExpansionPanels
|
72481
|
-
VExpansionPanel: VExpansionPanel
|
72482
|
-
VExpansionPanelText: VExpansionPanelText
|
72483
|
-
VExpansionPanelTitle: VExpansionPanelTitle
|
72484
|
-
VProgressLinear: VProgressLinear
|
72484
|
+
VTable: VTable
|
72485
72485
|
VTimeline: VTimeline
|
72486
72486
|
VTimelineItem: VTimelineItem
|
72487
|
-
|
72487
|
+
VTooltip: VTooltip
|
72488
|
+
VTextarea: VTextarea
|
72489
|
+
VWindow: VWindow
|
72490
|
+
VWindowItem: VWindowItem
|
72491
|
+
VConfirmEdit: VConfirmEdit
|
72488
72492
|
VDataIterator: VDataIterator
|
72493
|
+
VDefaultsProvider: VDefaultsProvider
|
72494
|
+
VForm: VForm
|
72489
72495
|
VContainer: VContainer
|
72490
72496
|
VCol: VCol
|
72491
72497
|
VRow: VRow
|
72492
72498
|
VSpacer: VSpacer
|
72493
72499
|
VHover: VHover
|
72500
|
+
VLazy: VLazy
|
72494
72501
|
VLayout: VLayout
|
72495
72502
|
VLayoutItem: VLayoutItem
|
72496
|
-
|
72497
|
-
VLazy: VLazy
|
72503
|
+
VLocaleProvider: VLocaleProvider
|
72498
72504
|
VNoSsr: VNoSsr
|
72499
72505
|
VParallax: VParallax
|
72500
|
-
VForm: VForm
|
72501
72506
|
VRadio: VRadio
|
72502
72507
|
VRangeSlider: VRangeSlider
|
72503
72508
|
VResponsive: VResponsive
|
72504
|
-
VSpeedDial: VSpeedDial
|
72505
72509
|
VSparkline: VSparkline
|
72506
|
-
|
72510
|
+
VSpeedDial: VSpeedDial
|
72511
|
+
VValidation: VValidation
|
72512
|
+
VThemeProvider: VThemeProvider
|
72507
72513
|
VFabTransition: VFabTransition
|
72508
72514
|
VDialogBottomTransition: VDialogBottomTransition
|
72509
72515
|
VDialogTopTransition: VDialogTopTransition
|
@@ -72520,26 +72526,21 @@ declare module 'vue' {
|
|
72520
72526
|
VExpandTransition: VExpandTransition
|
72521
72527
|
VExpandXTransition: VExpandXTransition
|
72522
72528
|
VDialogTransition: VDialogTransition
|
72523
|
-
VAutocomplete: VAutocomplete
|
72524
|
-
VOtpInput: VOtpInput
|
72525
72529
|
VVirtualScroll: VVirtualScroll
|
72526
|
-
|
72527
|
-
|
72528
|
-
|
72529
|
-
|
72530
|
-
|
72531
|
-
VStepperVerticalActions: VStepperVerticalActions
|
72530
|
+
VNumberInput: VNumberInput
|
72531
|
+
VPicker: VPicker
|
72532
|
+
VPickerTitle: VPickerTitle
|
72533
|
+
VFileUpload: VFileUpload
|
72534
|
+
VFileUploadItem: VFileUploadItem
|
72532
72535
|
VCalendar: VCalendar
|
72533
72536
|
VCalendarDay: VCalendarDay
|
72534
72537
|
VCalendarHeader: VCalendarHeader
|
72535
72538
|
VCalendarInterval: VCalendarInterval
|
72536
72539
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
72537
72540
|
VCalendarMonthDay: VCalendarMonthDay
|
72538
|
-
|
72539
|
-
|
72540
|
-
|
72541
|
-
VPicker: VPicker
|
72542
|
-
VPickerTitle: VPickerTitle
|
72541
|
+
VStepperVertical: VStepperVertical
|
72542
|
+
VStepperVerticalItem: VStepperVerticalItem
|
72543
|
+
VStepperVerticalActions: VStepperVerticalActions
|
72543
72544
|
VTreeview: VTreeview
|
72544
72545
|
VTreeviewItem: VTreeviewItem
|
72545
72546
|
VTreeviewGroup: VTreeviewGroup
|
@@ -72547,7 +72548,7 @@ declare module 'vue' {
|
|
72547
72548
|
VTimePickerClock: VTimePickerClock
|
72548
72549
|
VTimePickerControls: VTimePickerControls
|
72549
72550
|
VDateInput: VDateInput
|
72550
|
-
VSnackbarQueue: VSnackbarQueue
|
72551
72551
|
VPullToRefresh: VPullToRefresh
|
72552
|
+
VSnackbarQueue: VSnackbarQueue
|
72552
72553
|
}
|
72553
72554
|
}
|
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.7-dev.2025-01-
|
2
|
+
* Vuetify v3.7.7-dev.2025-01-23
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -7174,6 +7174,9 @@ function createDisplay(options, ssr) {
|
|
7174
7174
|
window.addEventListener('resize', updateSize, {
|
7175
7175
|
passive: true
|
7176
7176
|
});
|
7177
|
+
onScopeDispose(() => {
|
7178
|
+
window.removeEventListener('resize', updateSize);
|
7179
|
+
}, true);
|
7177
7180
|
}
|
7178
7181
|
return {
|
7179
7182
|
...toRefs(state),
|
@@ -8494,6 +8497,27 @@ const classicSelectStrategy = mandatory => {
|
|
8494
8497
|
};
|
8495
8498
|
return strategy;
|
8496
8499
|
};
|
8500
|
+
const trunkSelectStrategy = mandatory => {
|
8501
|
+
const parentStrategy = classicSelectStrategy(mandatory);
|
8502
|
+
const strategy = {
|
8503
|
+
select: parentStrategy.select,
|
8504
|
+
in: parentStrategy.in,
|
8505
|
+
out: (v, children, parents) => {
|
8506
|
+
const arr = [];
|
8507
|
+
for (const [key, value] of v.entries()) {
|
8508
|
+
if (value === 'on') {
|
8509
|
+
if (parents.has(key)) {
|
8510
|
+
const parent = parents.get(key);
|
8511
|
+
if (v.get(parent) === 'on') continue;
|
8512
|
+
}
|
8513
|
+
arr.push(key);
|
8514
|
+
}
|
8515
|
+
}
|
8516
|
+
return arr;
|
8517
|
+
}
|
8518
|
+
};
|
8519
|
+
return strategy;
|
8520
|
+
};
|
8497
8521
|
|
8498
8522
|
// Composables
|
8499
8523
|
|
@@ -8563,6 +8587,8 @@ const useNested = props => {
|
|
8563
8587
|
return independentSelectStrategy(props.mandatory);
|
8564
8588
|
case 'single-independent':
|
8565
8589
|
return independentSingleSelectStrategy(props.mandatory);
|
8590
|
+
case 'trunk':
|
8591
|
+
return trunkSelectStrategy(props.mandatory);
|
8566
8592
|
case 'classic':
|
8567
8593
|
default:
|
8568
8594
|
return classicSelectStrategy(props.mandatory);
|
@@ -8799,6 +8825,7 @@ const VListGroup = genericComponent()({
|
|
8799
8825
|
} = useSsrBoot();
|
8800
8826
|
function onClick(e) {
|
8801
8827
|
e.stopPropagation();
|
8828
|
+
if (['INPUT', 'TEXTAREA'].includes(e.target?.tagName)) return;
|
8802
8829
|
open(!isOpen.value, e);
|
8803
8830
|
}
|
8804
8831
|
const activatorProps = computed(() => ({
|
@@ -9016,6 +9043,7 @@ const VListItem = genericComponent()({
|
|
9016
9043
|
}));
|
9017
9044
|
function onClick(e) {
|
9018
9045
|
emit('click', e);
|
9046
|
+
if (['INPUT', 'TEXTAREA'].includes(e.target?.tagName)) return;
|
9019
9047
|
if (!isClickable.value) return;
|
9020
9048
|
link.navigate?.(e);
|
9021
9049
|
if (isGroupActivator) return;
|
@@ -9028,6 +9056,7 @@ const VListItem = genericComponent()({
|
|
9028
9056
|
}
|
9029
9057
|
}
|
9030
9058
|
function onKeyDown(e) {
|
9059
|
+
if (['INPUT', 'TEXTAREA'].includes(e.target?.tagName)) return;
|
9031
9060
|
if (e.key === 'Enter' || e.key === ' ') {
|
9032
9061
|
e.preventDefault();
|
9033
9062
|
e.target.dispatchEvent(new MouseEvent('click', e));
|
@@ -30732,82 +30761,93 @@ function createVuetify$1() {
|
|
30732
30761
|
components = {},
|
30733
30762
|
directives = {}
|
30734
30763
|
} = options;
|
30735
|
-
const
|
30736
|
-
|
30737
|
-
|
30738
|
-
|
30739
|
-
|
30740
|
-
|
30741
|
-
|
30742
|
-
|
30743
|
-
|
30744
|
-
|
30745
|
-
|
30746
|
-
|
30747
|
-
|
30748
|
-
|
30749
|
-
|
30750
|
-
|
30751
|
-
|
30752
|
-
|
30753
|
-
|
30754
|
-
|
30755
|
-
|
30756
|
-
|
30757
|
-
|
30758
|
-
|
30759
|
-
|
30760
|
-
|
30761
|
-
|
30762
|
-
|
30763
|
-
|
30764
|
-
|
30765
|
-
|
30766
|
-
|
30767
|
-
|
30768
|
-
|
30764
|
+
const scope = effectScope();
|
30765
|
+
return scope.run(() => {
|
30766
|
+
const defaults = createDefaults(options.defaults);
|
30767
|
+
const display = createDisplay(options.display, options.ssr);
|
30768
|
+
const theme = createTheme(options.theme);
|
30769
|
+
const icons = createIcons(options.icons);
|
30770
|
+
const locale = createLocale(options.locale);
|
30771
|
+
const date = createDate(options.date, locale);
|
30772
|
+
const goTo = createGoTo(options.goTo, locale);
|
30773
|
+
function install(app) {
|
30774
|
+
for (const key in directives) {
|
30775
|
+
app.directive(key, directives[key]);
|
30776
|
+
}
|
30777
|
+
for (const key in components) {
|
30778
|
+
app.component(key, components[key]);
|
30779
|
+
}
|
30780
|
+
for (const key in aliases) {
|
30781
|
+
app.component(key, defineComponent({
|
30782
|
+
...aliases[key],
|
30783
|
+
name: key,
|
30784
|
+
aliasName: aliases[key].name
|
30785
|
+
}));
|
30786
|
+
}
|
30787
|
+
const appScope = effectScope();
|
30788
|
+
appScope.run(() => {
|
30789
|
+
theme.install(app);
|
30790
|
+
});
|
30791
|
+
app.onUnmount(() => appScope.stop());
|
30792
|
+
app.provide(DefaultsSymbol, defaults);
|
30793
|
+
app.provide(DisplaySymbol, display);
|
30794
|
+
app.provide(ThemeSymbol, theme);
|
30795
|
+
app.provide(IconSymbol, icons);
|
30796
|
+
app.provide(LocaleSymbol, locale);
|
30797
|
+
app.provide(DateOptionsSymbol, date.options);
|
30798
|
+
app.provide(DateAdapterSymbol, date.instance);
|
30799
|
+
app.provide(GoToSymbol, goTo);
|
30800
|
+
if (IN_BROWSER && options.ssr) {
|
30801
|
+
if (app.$nuxt) {
|
30802
|
+
app.$nuxt.hook('app:suspense:resolve', () => {
|
30803
|
+
display.update();
|
30804
|
+
});
|
30805
|
+
} else {
|
30806
|
+
const {
|
30807
|
+
mount
|
30808
|
+
} = app;
|
30809
|
+
app.mount = function () {
|
30810
|
+
const vm = mount(...arguments);
|
30811
|
+
nextTick(() => display.update());
|
30812
|
+
app.mount = mount;
|
30813
|
+
return vm;
|
30814
|
+
};
|
30815
|
+
}
|
30816
|
+
}
|
30817
|
+
if (typeof __VUE_OPTIONS_API__ !== 'boolean' || __VUE_OPTIONS_API__) {
|
30818
|
+
app.mixin({
|
30819
|
+
computed: {
|
30820
|
+
$vuetify() {
|
30821
|
+
return reactive({
|
30822
|
+
defaults: inject.call(this, DefaultsSymbol),
|
30823
|
+
display: inject.call(this, DisplaySymbol),
|
30824
|
+
theme: inject.call(this, ThemeSymbol),
|
30825
|
+
icons: inject.call(this, IconSymbol),
|
30826
|
+
locale: inject.call(this, LocaleSymbol),
|
30827
|
+
date: inject.call(this, DateAdapterSymbol)
|
30828
|
+
});
|
30829
|
+
}
|
30830
|
+
}
|
30769
30831
|
});
|
30770
|
-
} else {
|
30771
|
-
const {
|
30772
|
-
mount
|
30773
|
-
} = app;
|
30774
|
-
app.mount = function () {
|
30775
|
-
const vm = mount(...arguments);
|
30776
|
-
nextTick(() => display.update());
|
30777
|
-
app.mount = mount;
|
30778
|
-
return vm;
|
30779
|
-
};
|
30780
30832
|
}
|
30781
30833
|
}
|
30782
|
-
|
30783
|
-
|
30784
|
-
computed: {
|
30785
|
-
$vuetify() {
|
30786
|
-
return reactive({
|
30787
|
-
defaults: inject.call(this, DefaultsSymbol),
|
30788
|
-
display: inject.call(this, DisplaySymbol),
|
30789
|
-
theme: inject.call(this, ThemeSymbol),
|
30790
|
-
icons: inject.call(this, IconSymbol),
|
30791
|
-
locale: inject.call(this, LocaleSymbol),
|
30792
|
-
date: inject.call(this, DateAdapterSymbol)
|
30793
|
-
});
|
30794
|
-
}
|
30795
|
-
}
|
30796
|
-
});
|
30834
|
+
function unmount() {
|
30835
|
+
scope.stop();
|
30797
30836
|
}
|
30798
|
-
|
30799
|
-
|
30800
|
-
|
30801
|
-
|
30802
|
-
|
30803
|
-
|
30804
|
-
|
30805
|
-
|
30806
|
-
|
30807
|
-
|
30808
|
-
|
30837
|
+
return {
|
30838
|
+
install,
|
30839
|
+
unmount,
|
30840
|
+
defaults,
|
30841
|
+
display,
|
30842
|
+
theme,
|
30843
|
+
icons,
|
30844
|
+
locale,
|
30845
|
+
date,
|
30846
|
+
goTo
|
30847
|
+
};
|
30848
|
+
});
|
30809
30849
|
}
|
30810
|
-
const version$1 = "3.7.7-dev.2025-01-
|
30850
|
+
const version$1 = "3.7.7-dev.2025-01-23";
|
30811
30851
|
createVuetify$1.version = version$1;
|
30812
30852
|
|
30813
30853
|
// Vue's inject() can only be used in setup
|
@@ -31060,7 +31100,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
31060
31100
|
|
31061
31101
|
/* eslint-disable local-rules/sort-imports */
|
31062
31102
|
|
31063
|
-
const version = "3.7.7-dev.2025-01-
|
31103
|
+
const version = "3.7.7-dev.2025-01-23";
|
31064
31104
|
|
31065
31105
|
/* eslint-disable local-rules/sort-imports */
|
31066
31106
|
|