@vuetify/nightly 3.6.6-master.2024-05-15 → 3.6.6-master.2024-05-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 +8 -2
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +124 -124
- package/dist/json/web-types.json +13 -1
- package/dist/vuetify-labs.css +2350 -2344
- package/dist/vuetify-labs.d.ts +24 -3
- package/dist/vuetify-labs.esm.js +11 -3
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +11 -3
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2542 -2536
- package/dist/vuetify.d.ts +66 -45
- package/dist/vuetify.esm.js +11 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +11 -3
- 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/VBtn/VBtn.css +6 -0
- package/lib/components/VBtn/VBtn.sass +6 -0
- package/lib/components/VConfirmEdit/VConfirmEdit.mjs +8 -0
- package/lib/components/VConfirmEdit/VConfirmEdit.mjs.map +1 -1
- package/lib/components/VConfirmEdit/index.d.mts +24 -3
- package/lib/components/index.d.mts +24 -3
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +42 -42
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -22735,6 +22735,9 @@ type VCombobox = InstanceType<typeof VCombobox>;
|
|
22735
22735
|
type VConfirmEditSlots<T> = {
|
22736
22736
|
default: {
|
22737
22737
|
model: Ref<T>;
|
22738
|
+
save: () => void;
|
22739
|
+
cancel: () => void;
|
22740
|
+
isPristine: boolean;
|
22738
22741
|
get actions(): VNode;
|
22739
22742
|
};
|
22740
22743
|
};
|
@@ -22746,7 +22749,11 @@ declare const VConfirmEdit: {
|
|
22746
22749
|
color?: string | undefined;
|
22747
22750
|
} & {
|
22748
22751
|
onCancel?: (() => any) | undefined;
|
22749
|
-
},
|
22752
|
+
}, {
|
22753
|
+
save: () => void;
|
22754
|
+
cancel: () => void;
|
22755
|
+
isPristine: vue.ComputedRef<boolean>;
|
22756
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
22750
22757
|
cancel: () => true;
|
22751
22758
|
save: (value: any) => true;
|
22752
22759
|
'update:modelValue': (value: any) => true;
|
@@ -22763,6 +22770,9 @@ declare const VConfirmEdit: {
|
|
22763
22770
|
}, true, {}, vue.SlotsType<Partial<{
|
22764
22771
|
default: (arg: {
|
22765
22772
|
model: Ref<unknown>;
|
22773
|
+
save: () => void;
|
22774
|
+
cancel: () => void;
|
22775
|
+
isPristine: boolean;
|
22766
22776
|
readonly actions: VNode<vue.RendererNode, vue.RendererElement, {
|
22767
22777
|
[key: string]: any;
|
22768
22778
|
}>;
|
@@ -22783,7 +22793,11 @@ declare const VConfirmEdit: {
|
|
22783
22793
|
color?: string | undefined;
|
22784
22794
|
} & {
|
22785
22795
|
onCancel?: (() => any) | undefined;
|
22786
|
-
}, {
|
22796
|
+
}, {
|
22797
|
+
save: () => void;
|
22798
|
+
cancel: () => void;
|
22799
|
+
isPristine: vue.ComputedRef<boolean>;
|
22800
|
+
}, {}, {}, {}, {
|
22787
22801
|
cancelText: string;
|
22788
22802
|
okText: string;
|
22789
22803
|
}>;
|
@@ -22797,7 +22811,11 @@ declare const VConfirmEdit: {
|
|
22797
22811
|
color?: string | undefined;
|
22798
22812
|
} & {
|
22799
22813
|
onCancel?: (() => any) | undefined;
|
22800
|
-
},
|
22814
|
+
}, {
|
22815
|
+
save: () => void;
|
22816
|
+
cancel: () => void;
|
22817
|
+
isPristine: vue.ComputedRef<boolean>;
|
22818
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
22801
22819
|
cancel: () => true;
|
22802
22820
|
save: (value: any) => true;
|
22803
22821
|
'update:modelValue': (value: any) => true;
|
@@ -22807,6 +22825,9 @@ declare const VConfirmEdit: {
|
|
22807
22825
|
}, {}, string, vue.SlotsType<Partial<{
|
22808
22826
|
default: (arg: {
|
22809
22827
|
model: Ref<unknown>;
|
22828
|
+
save: () => void;
|
22829
|
+
cancel: () => void;
|
22830
|
+
isPristine: boolean;
|
22810
22831
|
readonly actions: VNode<vue.RendererNode, vue.RendererElement, {
|
22811
22832
|
[key: string]: any;
|
22812
22833
|
}>;
|
@@ -73460,47 +73481,45 @@ declare module '@vue/runtime-core' {
|
|
73460
73481
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
73461
73482
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
73462
73483
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
73463
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
73464
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
73465
73484
|
VApp: typeof import('vuetify/components')['VApp']
|
73466
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
73467
73485
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
73486
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
73487
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
73468
73488
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
73469
|
-
|
73489
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
73470
73490
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
73471
73491
|
VBtn: typeof import('vuetify/components')['VBtn']
|
73492
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
73472
73493
|
VBanner: typeof import('vuetify/components')['VBanner']
|
73473
73494
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
73474
73495
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
73475
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
73476
73496
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
73477
73497
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
73478
73498
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
73479
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
73480
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
73481
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
73482
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
73483
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
73484
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
73485
73499
|
VCard: typeof import('vuetify/components')['VCard']
|
73486
73500
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
73487
73501
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
73488
73502
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
73489
73503
|
VCardText: typeof import('vuetify/components')['VCardText']
|
73490
73504
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
73505
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
73506
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
73507
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
73508
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
73509
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
73491
73510
|
VChip: typeof import('vuetify/components')['VChip']
|
73492
|
-
|
73493
|
-
|
73511
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
73512
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
73494
73513
|
VCode: typeof import('vuetify/components')['VCode']
|
73514
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
73515
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
73516
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
73495
73517
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
73496
73518
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
73497
73519
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
73498
73520
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
73499
73521
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
73500
73522
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
73501
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
73502
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
73503
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
73504
73523
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
73505
73524
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
73506
73525
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -73508,28 +73527,30 @@ declare module '@vue/runtime-core' {
|
|
73508
73527
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
73509
73528
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
73510
73529
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
73511
|
-
|
73530
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
73512
73531
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
73513
73532
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
73514
73533
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
73515
73534
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
73516
|
-
VField: typeof import('vuetify/components')['VField']
|
73517
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
73518
73535
|
VFab: typeof import('vuetify/components')['VFab']
|
73536
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
73519
73537
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
73520
|
-
|
73538
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
73521
73539
|
VFooter: typeof import('vuetify/components')['VFooter']
|
73540
|
+
VField: typeof import('vuetify/components')['VField']
|
73541
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
73522
73542
|
VIcon: typeof import('vuetify/components')['VIcon']
|
73523
73543
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
73524
73544
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
73525
73545
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
73526
73546
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
73527
73547
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
73528
|
-
|
73548
|
+
VImg: typeof import('vuetify/components')['VImg']
|
73529
73549
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
73530
73550
|
VItem: typeof import('vuetify/components')['VItem']
|
73531
|
-
|
73551
|
+
VInput: typeof import('vuetify/components')['VInput']
|
73532
73552
|
VLabel: typeof import('vuetify/components')['VLabel']
|
73553
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
73533
73554
|
VList: typeof import('vuetify/components')['VList']
|
73534
73555
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
73535
73556
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -73540,48 +73561,48 @@ declare module '@vue/runtime-core' {
|
|
73540
73561
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
73541
73562
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
73542
73563
|
VMain: typeof import('vuetify/components')['VMain']
|
73543
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
73544
73564
|
VMenu: typeof import('vuetify/components')['VMenu']
|
73545
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
73546
73565
|
VMessages: typeof import('vuetify/components')['VMessages']
|
73547
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
73548
73566
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
73567
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
73568
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
73569
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
73549
73570
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
73550
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
73551
73571
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
73572
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
73552
73573
|
VRating: typeof import('vuetify/components')['VRating']
|
73553
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
73554
73574
|
VSelect: typeof import('vuetify/components')['VSelect']
|
73555
73575
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
73556
|
-
|
73576
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
73557
73577
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
73578
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
73558
73579
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
73580
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
73559
73581
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
73560
73582
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
73561
|
-
|
73583
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
73562
73584
|
VStepper: typeof import('vuetify/components')['VStepper']
|
73563
73585
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
73564
73586
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
73565
73587
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
73566
73588
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
73567
73589
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
73568
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
73569
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
73570
73590
|
VTab: typeof import('vuetify/components')['VTab']
|
73571
73591
|
VTabs: typeof import('vuetify/components')['VTabs']
|
73572
73592
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
73573
73593
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
73574
|
-
|
73575
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
73594
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
73576
73595
|
VTable: typeof import('vuetify/components')['VTable']
|
73577
73596
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
73578
73597
|
VTextField: typeof import('vuetify/components')['VTextField']
|
73579
73598
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
73580
73599
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
73581
73600
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
73601
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
73602
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
73603
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
73582
73604
|
VWindow: typeof import('vuetify/components')['VWindow']
|
73583
73605
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
73584
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
73585
73606
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
73586
73607
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
73587
73608
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
@@ -73595,15 +73616,15 @@ declare module '@vue/runtime-core' {
|
|
73595
73616
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
73596
73617
|
VLazy: typeof import('vuetify/components')['VLazy']
|
73597
73618
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
73598
|
-
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
73599
73619
|
VParallax: typeof import('vuetify/components')['VParallax']
|
73620
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
73600
73621
|
VRadio: typeof import('vuetify/components')['VRadio']
|
73601
73622
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
73602
73623
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
73603
|
-
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
73604
73624
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
73605
|
-
|
73625
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
73606
73626
|
VValidation: typeof import('vuetify/components')['VValidation']
|
73627
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
73607
73628
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
73608
73629
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
73609
73630
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
@@ -73621,8 +73642,6 @@ declare module '@vue/runtime-core' {
|
|
73621
73642
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
73622
73643
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
73623
73644
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
73624
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
73625
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
73626
73645
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
73627
73646
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
73628
73647
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
@@ -73633,12 +73652,14 @@ declare module '@vue/runtime-core' {
|
|
73633
73652
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
73634
73653
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
73635
73654
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
73636
|
-
|
73637
|
-
|
73638
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
73655
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
73656
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
73639
73657
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
73640
73658
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
73641
73659
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
73660
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
73661
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
73662
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
73642
73663
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
73643
73664
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
73644
73665
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.6-master.2024-05-
|
2
|
+
* Vuetify v3.6.6-master.2024-05-17
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -18200,12 +18200,20 @@ const VConfirmEdit = genericComponent()({
|
|
18200
18200
|
}, null)]);
|
18201
18201
|
return createVNode(Fragment, null, [slots.default?.({
|
18202
18202
|
model: internalModel,
|
18203
|
+
save,
|
18204
|
+
cancel,
|
18205
|
+
isPristine: isPristine.value,
|
18203
18206
|
get actions() {
|
18204
18207
|
actionsUsed = true;
|
18205
18208
|
return actions;
|
18206
18209
|
}
|
18207
18210
|
}), !actionsUsed && actions]);
|
18208
18211
|
});
|
18212
|
+
return {
|
18213
|
+
save,
|
18214
|
+
cancel,
|
18215
|
+
isPristine
|
18216
|
+
};
|
18209
18217
|
}
|
18210
18218
|
});
|
18211
18219
|
|
@@ -28000,7 +28008,7 @@ function createVuetify$1() {
|
|
28000
28008
|
goTo
|
28001
28009
|
};
|
28002
28010
|
}
|
28003
|
-
const version$1 = "3.6.6-master.2024-05-
|
28011
|
+
const version$1 = "3.6.6-master.2024-05-17";
|
28004
28012
|
createVuetify$1.version = version$1;
|
28005
28013
|
|
28006
28014
|
// Vue's inject() can only be used in setup
|
@@ -28025,7 +28033,7 @@ const createVuetify = function () {
|
|
28025
28033
|
...options
|
28026
28034
|
});
|
28027
28035
|
};
|
28028
|
-
const version = "3.6.6-master.2024-05-
|
28036
|
+
const version = "3.6.6-master.2024-05-17";
|
28029
28037
|
createVuetify.version = version;
|
28030
28038
|
|
28031
28039
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|