@vuetify/nightly 3.6.6-master.2024-05-16 → 3.6.6-master.2024-05-21
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 +10 -2
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +136 -136
- package/dist/json/web-types.json +19 -7
- package/dist/vuetify-labs.css +3113 -3106
- package/dist/vuetify-labs.d.ts +24 -3
- package/dist/vuetify-labs.esm.js +13 -3
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +13 -3
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +622 -615
- package/dist/vuetify.d.ts +67 -46
- package/dist/vuetify.esm.js +13 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -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/VField/VField.css +1 -0
- package/lib/components/VField/VField.sass +2 -0
- 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 +43 -43
- package/lib/util/helpers.mjs +2 -0
- package/lib/util/helpers.mjs.map +1 -1
- 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
|
}>;
|
@@ -73457,42 +73478,42 @@ declare module '@vue/runtime-core' {
|
|
73457
73478
|
}
|
73458
73479
|
|
73459
73480
|
export interface GlobalComponents {
|
73460
|
-
VApp: typeof import('vuetify/components')['VApp']
|
73461
73481
|
VAlert: typeof import('vuetify/components')['VAlert']
|
73462
73482
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
73483
|
+
VApp: typeof import('vuetify/components')['VApp']
|
73463
73484
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
73485
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
73464
73486
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
73465
73487
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
73466
73488
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
73467
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
73468
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
73469
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
73470
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
73471
73489
|
VBanner: typeof import('vuetify/components')['VBanner']
|
73472
73490
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
73473
73491
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
73492
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
73493
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
73494
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
73495
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
73474
73496
|
VBtn: typeof import('vuetify/components')['VBtn']
|
73497
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
73498
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
73499
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
73475
73500
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
73476
73501
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
73477
73502
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
73478
|
-
|
73479
|
-
|
73503
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
73504
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
73505
|
+
VChip: typeof import('vuetify/components')['VChip']
|
73506
|
+
VCode: typeof import('vuetify/components')['VCode']
|
73480
73507
|
VCard: typeof import('vuetify/components')['VCard']
|
73481
73508
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
73482
73509
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
73483
73510
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
73484
73511
|
VCardText: typeof import('vuetify/components')['VCardText']
|
73485
73512
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
73486
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
73487
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
73488
|
-
VChip: typeof import('vuetify/components')['VChip']
|
73489
|
-
VCode: typeof import('vuetify/components')['VCode']
|
73490
73513
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
73491
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
73492
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
73493
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
73494
73514
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
73495
73515
|
VCounter: typeof import('vuetify/components')['VCounter']
|
73516
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
73496
73517
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
73497
73518
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
73498
73519
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -73500,35 +73521,37 @@ declare module '@vue/runtime-core' {
|
|
73500
73521
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
73501
73522
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
73502
73523
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
73524
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
73503
73525
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
73504
73526
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
73505
73527
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
73506
73528
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
73507
73529
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
73508
73530
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
73509
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
73510
|
-
VFab: typeof import('vuetify/components')['VFab']
|
73511
73531
|
VDialog: typeof import('vuetify/components')['VDialog']
|
73532
|
+
VField: typeof import('vuetify/components')['VField']
|
73533
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
73512
73534
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
73513
73535
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
73514
73536
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
73515
73537
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
73516
73538
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
73517
|
-
|
73518
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
73519
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
73539
|
+
VFab: typeof import('vuetify/components')['VFab']
|
73520
73540
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
73541
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
73542
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
73521
73543
|
VIcon: typeof import('vuetify/components')['VIcon']
|
73522
73544
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
73523
73545
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
73524
73546
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
73525
73547
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
73526
|
-
VImg: typeof import('vuetify/components')['VImg']
|
73527
73548
|
VInput: typeof import('vuetify/components')['VInput']
|
73528
|
-
|
73549
|
+
VImg: typeof import('vuetify/components')['VImg']
|
73550
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
73529
73551
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
73530
73552
|
VItem: typeof import('vuetify/components')['VItem']
|
73531
73553
|
VKbd: typeof import('vuetify/components')['VKbd']
|
73554
|
+
VMain: typeof import('vuetify/components')['VMain']
|
73532
73555
|
VList: typeof import('vuetify/components')['VList']
|
73533
73556
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
73534
73557
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -73538,67 +73561,65 @@ declare module '@vue/runtime-core' {
|
|
73538
73561
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
73539
73562
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
73540
73563
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
73541
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
73542
|
-
VMain: typeof import('vuetify/components')['VMain']
|
73543
73564
|
VMenu: typeof import('vuetify/components')['VMenu']
|
73544
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
73545
73565
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
73566
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
73546
73567
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
73547
73568
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
73548
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
73549
73569
|
VPagination: typeof import('vuetify/components')['VPagination']
|
73550
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
73551
73570
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
73552
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
73553
73571
|
VRating: typeof import('vuetify/components')['VRating']
|
73572
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
73573
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
73554
73574
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
73555
|
-
|
73556
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
73557
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
73575
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
73558
73576
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
73559
73577
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
73578
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
73560
73579
|
VSlider: typeof import('vuetify/components')['VSlider']
|
73580
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
73581
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
73582
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
73583
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
73561
73584
|
VStepper: typeof import('vuetify/components')['VStepper']
|
73562
73585
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
73563
73586
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
73564
73587
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
73565
73588
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
73566
73589
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
73567
|
-
|
73568
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
73590
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
73569
73591
|
VTable: typeof import('vuetify/components')['VTable']
|
73592
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
73593
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
73594
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
73570
73595
|
VTab: typeof import('vuetify/components')['VTab']
|
73571
73596
|
VTabs: typeof import('vuetify/components')['VTabs']
|
73572
73597
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
73573
73598
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
73574
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
73575
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
73576
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
73577
73599
|
VTextField: typeof import('vuetify/components')['VTextField']
|
73578
|
-
|
73600
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
73579
73601
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
73580
73602
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
73581
73603
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
73582
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
73583
73604
|
VWindow: typeof import('vuetify/components')['VWindow']
|
73584
73605
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
73585
|
-
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
73586
73606
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
73607
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
73587
73608
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
73588
|
-
VForm: typeof import('vuetify/components')['VForm']
|
73589
73609
|
VContainer: typeof import('vuetify/components')['VContainer']
|
73590
73610
|
VCol: typeof import('vuetify/components')['VCol']
|
73591
73611
|
VRow: typeof import('vuetify/components')['VRow']
|
73592
73612
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
73613
|
+
VForm: typeof import('vuetify/components')['VForm']
|
73593
73614
|
VHover: typeof import('vuetify/components')['VHover']
|
73594
73615
|
VLayout: typeof import('vuetify/components')['VLayout']
|
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
73619
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
73620
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
73599
73621
|
VParallax: typeof import('vuetify/components')['VParallax']
|
73600
73622
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
73601
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
73602
73623
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
73603
73624
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
73604
73625
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
@@ -73630,12 +73651,12 @@ declare module '@vue/runtime-core' {
|
|
73630
73651
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
73631
73652
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
73632
73653
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
73633
|
-
|
73634
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
73654
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
73635
73655
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
73636
73656
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
73637
73657
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
73638
|
-
|
73658
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
73659
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
73639
73660
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
73640
73661
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
73641
73662
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
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-21
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -314,6 +314,8 @@ function findChildrenWithProvide(key, vnode) {
|
|
314
314
|
if (!vnode || typeof vnode !== 'object') return [];
|
315
315
|
if (Array.isArray(vnode)) {
|
316
316
|
return vnode.map(child => findChildrenWithProvide(key, child)).flat(1);
|
317
|
+
} else if (vnode.suspense) {
|
318
|
+
return findChildrenWithProvide(key, vnode.ssContent);
|
317
319
|
} else if (Array.isArray(vnode.children)) {
|
318
320
|
return vnode.children.map(child => findChildrenWithProvide(key, child)).flat(1);
|
319
321
|
} else if (vnode.component) {
|
@@ -18200,12 +18202,20 @@ const VConfirmEdit = genericComponent()({
|
|
18200
18202
|
}, null)]);
|
18201
18203
|
return createVNode(Fragment, null, [slots.default?.({
|
18202
18204
|
model: internalModel,
|
18205
|
+
save,
|
18206
|
+
cancel,
|
18207
|
+
isPristine: isPristine.value,
|
18203
18208
|
get actions() {
|
18204
18209
|
actionsUsed = true;
|
18205
18210
|
return actions;
|
18206
18211
|
}
|
18207
18212
|
}), !actionsUsed && actions]);
|
18208
18213
|
});
|
18214
|
+
return {
|
18215
|
+
save,
|
18216
|
+
cancel,
|
18217
|
+
isPristine
|
18218
|
+
};
|
18209
18219
|
}
|
18210
18220
|
});
|
18211
18221
|
|
@@ -28000,7 +28010,7 @@ function createVuetify$1() {
|
|
28000
28010
|
goTo
|
28001
28011
|
};
|
28002
28012
|
}
|
28003
|
-
const version$1 = "3.6.6-master.2024-05-
|
28013
|
+
const version$1 = "3.6.6-master.2024-05-21";
|
28004
28014
|
createVuetify$1.version = version$1;
|
28005
28015
|
|
28006
28016
|
// Vue's inject() can only be used in setup
|
@@ -28025,7 +28035,7 @@ const createVuetify = function () {
|
|
28025
28035
|
...options
|
28026
28036
|
});
|
28027
28037
|
};
|
28028
|
-
const version = "3.6.6-master.2024-05-
|
28038
|
+
const version = "3.6.6-master.2024-05-21";
|
28029
28039
|
createVuetify.version = version;
|
28030
28040
|
|
28031
28041
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|