@vuetify/nightly 3.8.3-master.2025-04-30 → 3.8.3-master.2025-05-01
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 +17 -3
- package/dist/json/attributes.json +3412 -3408
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +142 -142
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +6053 -6043
- package/dist/vuetify-labs.cjs +31 -11
- package/dist/vuetify-labs.css +3636 -3640
- package/dist/vuetify-labs.d.ts +74 -54
- package/dist/vuetify-labs.esm.js +31 -11
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +31 -11
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +4 -4
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3206 -3210
- package/dist/vuetify.d.ts +52 -52
- package/dist/vuetify.esm.js +4 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +4 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/composables/select.js +1 -1
- package/lib/components/VDataTable/composables/select.js.map +1 -1
- package/lib/components/VTable/VTable.css +2 -6
- package/lib/components/VTable/VTable.sass +4 -22
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +52 -52
- package/lib/framework.js +1 -1
- package/lib/labs/VDateInput/VDateInput.d.ts +41 -4
- package/lib/labs/VDateInput/VDateInput.js +27 -7
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -88484,6 +88484,7 @@ declare const VDateInput: {
|
|
88484
88484
|
weeksInMonth: "static" | "dynamic";
|
88485
88485
|
hideWeekdays: boolean;
|
88486
88486
|
showWeek: boolean;
|
88487
|
+
updateOn: ("blur" | "enter")[];
|
88487
88488
|
} & {
|
88488
88489
|
name?: string | undefined;
|
88489
88490
|
max?: unknown;
|
@@ -90597,6 +90598,7 @@ declare const VDateInput: {
|
|
90597
90598
|
firstDayOfWeek: string | number;
|
90598
90599
|
hideWeekdays: boolean;
|
90599
90600
|
showWeek: boolean;
|
90601
|
+
updateOn: ("blur" | "enter")[];
|
90600
90602
|
}, true, {}, vue.SlotsType<Partial<{
|
90601
90603
|
message: (arg: VMessageSlot) => vue.VNode[];
|
90602
90604
|
clear: (arg: DefaultInputSlot & {
|
@@ -90675,6 +90677,7 @@ declare const VDateInput: {
|
|
90675
90677
|
weeksInMonth: "static" | "dynamic";
|
90676
90678
|
hideWeekdays: boolean;
|
90677
90679
|
showWeek: boolean;
|
90680
|
+
updateOn: ("blur" | "enter")[];
|
90678
90681
|
} & {
|
90679
90682
|
name?: string | undefined;
|
90680
90683
|
max?: unknown;
|
@@ -92784,6 +92787,7 @@ declare const VDateInput: {
|
|
92784
92787
|
firstDayOfWeek: string | number;
|
92785
92788
|
hideWeekdays: boolean;
|
92786
92789
|
showWeek: boolean;
|
92790
|
+
updateOn: ("blur" | "enter")[];
|
92787
92791
|
}>;
|
92788
92792
|
__isFragment?: never;
|
92789
92793
|
__isTeleport?: never;
|
@@ -92841,6 +92845,7 @@ declare const VDateInput: {
|
|
92841
92845
|
weeksInMonth: "static" | "dynamic";
|
92842
92846
|
hideWeekdays: boolean;
|
92843
92847
|
showWeek: boolean;
|
92848
|
+
updateOn: ("blur" | "enter")[];
|
92844
92849
|
} & {
|
92845
92850
|
name?: string | undefined;
|
92846
92851
|
max?: unknown;
|
@@ -94954,6 +94959,7 @@ declare const VDateInput: {
|
|
94954
94959
|
firstDayOfWeek: string | number;
|
94955
94960
|
hideWeekdays: boolean;
|
94956
94961
|
showWeek: boolean;
|
94962
|
+
updateOn: ("blur" | "enter")[];
|
94957
94963
|
}, {}, string, vue.SlotsType<Partial<{
|
94958
94964
|
message: (arg: VMessageSlot) => vue.VNode[];
|
94959
94965
|
clear: (arg: DefaultInputSlot & {
|
@@ -95185,9 +95191,12 @@ declare const VDateInput: {
|
|
95185
95191
|
type: PropType<boolean>;
|
95186
95192
|
default: boolean;
|
95187
95193
|
};
|
95188
|
-
mobile: {
|
95194
|
+
mobile: Omit<{
|
95189
95195
|
type: PropType<boolean | null>;
|
95190
95196
|
default: boolean;
|
95197
|
+
}, "type" | "default"> & {
|
95198
|
+
type: PropType<boolean | null>;
|
95199
|
+
default: NonNullable<boolean | null> | null;
|
95191
95200
|
};
|
95192
95201
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
95193
95202
|
displayFormat: (FunctionConstructor | StringConstructor)[];
|
@@ -95195,6 +95204,10 @@ declare const VDateInput: {
|
|
95195
95204
|
type: PropType<StrategyProps$1["location"]>;
|
95196
95205
|
default: string;
|
95197
95206
|
};
|
95207
|
+
updateOn: {
|
95208
|
+
type: PropType<("blur" | "enter")[]>;
|
95209
|
+
default: () => string[];
|
95210
|
+
};
|
95198
95211
|
}, vue.ExtractPropTypes<{
|
95199
95212
|
max: PropType<unknown>;
|
95200
95213
|
height: (StringConstructor | NumberConstructor)[];
|
@@ -95408,9 +95421,12 @@ declare const VDateInput: {
|
|
95408
95421
|
type: PropType<boolean>;
|
95409
95422
|
default: boolean;
|
95410
95423
|
};
|
95411
|
-
mobile: {
|
95424
|
+
mobile: Omit<{
|
95412
95425
|
type: PropType<boolean | null>;
|
95413
95426
|
default: boolean;
|
95427
|
+
}, "type" | "default"> & {
|
95428
|
+
type: PropType<boolean | null>;
|
95429
|
+
default: NonNullable<boolean | null> | null;
|
95414
95430
|
};
|
95415
95431
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
95416
95432
|
displayFormat: (FunctionConstructor | StringConstructor)[];
|
@@ -95418,6 +95434,10 @@ declare const VDateInput: {
|
|
95418
95434
|
type: PropType<StrategyProps$1["location"]>;
|
95419
95435
|
default: string;
|
95420
95436
|
};
|
95437
|
+
updateOn: {
|
95438
|
+
type: PropType<("blur" | "enter")[]>;
|
95439
|
+
default: () => string[];
|
95440
|
+
};
|
95421
95441
|
}>>;
|
95422
95442
|
type VDateInput = InstanceType<typeof VDateInput>;
|
95423
95443
|
|
@@ -100903,42 +100923,39 @@ declare module 'vue' {
|
|
100903
100923
|
$children?: VNodeChild
|
100904
100924
|
}
|
100905
100925
|
export interface GlobalComponents {
|
100906
|
-
VApp: VApp
|
100907
|
-
VAppBar: VAppBar
|
100908
|
-
VAppBarNavIcon: VAppBarNavIcon
|
100909
|
-
VAppBarTitle: VAppBarTitle
|
100910
100926
|
VAlert: VAlert
|
100911
100927
|
VAlertTitle: VAlertTitle
|
100912
100928
|
VAutocomplete: VAutocomplete
|
100929
|
+
VAppBar: VAppBar
|
100930
|
+
VAppBarNavIcon: VAppBarNavIcon
|
100931
|
+
VAppBarTitle: VAppBarTitle
|
100913
100932
|
VAvatar: VAvatar
|
100914
|
-
VBottomNavigation: VBottomNavigation
|
100915
|
-
VBottomSheet: VBottomSheet
|
100916
100933
|
VBadge: VBadge
|
100934
|
+
VBottomSheet: VBottomSheet
|
100917
100935
|
VBanner: VBanner
|
100918
100936
|
VBannerActions: VBannerActions
|
100919
100937
|
VBannerText: VBannerText
|
100938
|
+
VBtnToggle: VBtnToggle
|
100939
|
+
VBtn: VBtn
|
100920
100940
|
VBreadcrumbs: VBreadcrumbs
|
100921
100941
|
VBreadcrumbsItem: VBreadcrumbsItem
|
100922
100942
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
100923
|
-
|
100924
|
-
|
100943
|
+
VApp: VApp
|
100944
|
+
VBottomNavigation: VBottomNavigation
|
100945
|
+
VBtnGroup: VBtnGroup
|
100946
|
+
VCarousel: VCarousel
|
100947
|
+
VCarouselItem: VCarouselItem
|
100925
100948
|
VCard: VCard
|
100926
100949
|
VCardActions: VCardActions
|
100927
100950
|
VCardItem: VCardItem
|
100928
100951
|
VCardSubtitle: VCardSubtitle
|
100929
100952
|
VCardText: VCardText
|
100930
100953
|
VCardTitle: VCardTitle
|
100954
|
+
VChip: VChip
|
100931
100955
|
VCheckbox: VCheckbox
|
100932
100956
|
VCheckboxBtn: VCheckboxBtn
|
100933
|
-
VBtnGroup: VBtnGroup
|
100934
|
-
VCarousel: VCarousel
|
100935
|
-
VCarouselItem: VCarouselItem
|
100936
|
-
VChipGroup: VChipGroup
|
100937
|
-
VCounter: VCounter
|
100938
|
-
VCode: VCode
|
100939
|
-
VCombobox: VCombobox
|
100940
100957
|
VColorPicker: VColorPicker
|
100941
|
-
|
100958
|
+
VChipGroup: VChipGroup
|
100942
100959
|
VDataTable: VDataTable
|
100943
100960
|
VDataTableHeaders: VDataTableHeaders
|
100944
100961
|
VDataTableFooter: VDataTableFooter
|
@@ -100946,35 +100963,37 @@ declare module 'vue' {
|
|
100946
100963
|
VDataTableRow: VDataTableRow
|
100947
100964
|
VDataTableVirtual: VDataTableVirtual
|
100948
100965
|
VDataTableServer: VDataTableServer
|
100966
|
+
VCombobox: VCombobox
|
100967
|
+
VCode: VCode
|
100968
|
+
VCounter: VCounter
|
100949
100969
|
VDatePicker: VDatePicker
|
100950
100970
|
VDatePickerControls: VDatePickerControls
|
100951
100971
|
VDatePickerHeader: VDatePickerHeader
|
100952
100972
|
VDatePickerMonth: VDatePickerMonth
|
100953
100973
|
VDatePickerMonths: VDatePickerMonths
|
100954
100974
|
VDatePickerYears: VDatePickerYears
|
100955
|
-
VDivider: VDivider
|
100956
100975
|
VDialog: VDialog
|
100957
|
-
|
100976
|
+
VEmptyState: VEmptyState
|
100958
100977
|
VExpansionPanels: VExpansionPanels
|
100959
100978
|
VExpansionPanel: VExpansionPanel
|
100960
100979
|
VExpansionPanelText: VExpansionPanelText
|
100961
100980
|
VExpansionPanelTitle: VExpansionPanelTitle
|
100962
|
-
|
100963
|
-
VFieldLabel: VFieldLabel
|
100981
|
+
VFab: VFab
|
100964
100982
|
VFileInput: VFileInput
|
100965
100983
|
VFooter: VFooter
|
100966
|
-
|
100984
|
+
VDivider: VDivider
|
100985
|
+
VField: VField
|
100986
|
+
VFieldLabel: VFieldLabel
|
100967
100987
|
VIcon: VIcon
|
100968
100988
|
VComponentIcon: VComponentIcon
|
100969
100989
|
VSvgIcon: VSvgIcon
|
100970
100990
|
VLigatureIcon: VLigatureIcon
|
100971
100991
|
VClassIcon: VClassIcon
|
100972
100992
|
VImg: VImg
|
100973
|
-
VInfiniteScroll: VInfiniteScroll
|
100974
100993
|
VInput: VInput
|
100994
|
+
VInfiniteScroll: VInfiniteScroll
|
100995
|
+
VKbd: VKbd
|
100975
100996
|
VLabel: VLabel
|
100976
|
-
VItemGroup: VItemGroup
|
100977
|
-
VItem: VItem
|
100978
100997
|
VList: VList
|
100979
100998
|
VListGroup: VListGroup
|
100980
100999
|
VListImg: VListImg
|
@@ -100984,49 +101003,49 @@ declare module 'vue' {
|
|
100984
101003
|
VListItemSubtitle: VListItemSubtitle
|
100985
101004
|
VListItemTitle: VListItemTitle
|
100986
101005
|
VListSubheader: VListSubheader
|
100987
|
-
|
100988
|
-
|
101006
|
+
VItemGroup: VItemGroup
|
101007
|
+
VItem: VItem
|
100989
101008
|
VMenu: VMenu
|
101009
|
+
VMain: VMain
|
101010
|
+
VNumberInput: VNumberInput
|
100990
101011
|
VMessages: VMessages
|
100991
|
-
|
101012
|
+
VOtpInput: VOtpInput
|
100992
101013
|
VNavigationDrawer: VNavigationDrawer
|
100993
101014
|
VPagination: VPagination
|
100994
|
-
|
100995
|
-
VNumberInput: VNumberInput
|
101015
|
+
VOverlay: VOverlay
|
100996
101016
|
VProgressCircular: VProgressCircular
|
100997
|
-
|
101017
|
+
VSelect: VSelect
|
100998
101018
|
VRating: VRating
|
100999
101019
|
VRadioGroup: VRadioGroup
|
101020
|
+
VProgressLinear: VProgressLinear
|
101021
|
+
VSlideGroup: VSlideGroup
|
101022
|
+
VSlideGroupItem: VSlideGroupItem
|
101000
101023
|
VSelectionControl: VSelectionControl
|
101001
|
-
|
101024
|
+
VSnackbar: VSnackbar
|
101002
101025
|
VSkeletonLoader: VSkeletonLoader
|
101003
101026
|
VSelectionControlGroup: VSelectionControlGroup
|
101004
|
-
VSheet: VSheet
|
101005
101027
|
VSlider: VSlider
|
101006
|
-
|
101007
|
-
|
101008
|
-
VSnackbar: VSnackbar
|
101028
|
+
VSwitch: VSwitch
|
101029
|
+
VSystemBar: VSystemBar
|
101009
101030
|
VStepper: VStepper
|
101010
101031
|
VStepperActions: VStepperActions
|
101011
101032
|
VStepperHeader: VStepperHeader
|
101012
101033
|
VStepperItem: VStepperItem
|
101013
101034
|
VStepperWindow: VStepperWindow
|
101014
101035
|
VStepperWindowItem: VStepperWindowItem
|
101015
|
-
VSystemBar: VSystemBar
|
101016
|
-
VSwitch: VSwitch
|
101017
|
-
VTable: VTable
|
101018
101036
|
VTab: VTab
|
101019
101037
|
VTabs: VTabs
|
101020
101038
|
VTabsWindow: VTabsWindow
|
101021
101039
|
VTabsWindowItem: VTabsWindowItem
|
101040
|
+
VTable: VTable
|
101022
101041
|
VTextarea: VTextarea
|
101023
|
-
VTextField: VTextField
|
101024
|
-
VTimeline: VTimeline
|
101025
|
-
VTimelineItem: VTimelineItem
|
101026
|
-
VTooltip: VTooltip
|
101027
101042
|
VToolbar: VToolbar
|
101028
101043
|
VToolbarTitle: VToolbarTitle
|
101029
101044
|
VToolbarItems: VToolbarItems
|
101045
|
+
VTooltip: VTooltip
|
101046
|
+
VTextField: VTextField
|
101047
|
+
VTimeline: VTimeline
|
101048
|
+
VTimelineItem: VTimelineItem
|
101030
101049
|
VWindow: VWindow
|
101031
101050
|
VWindowItem: VWindowItem
|
101032
101051
|
VConfirmEdit: VConfirmEdit
|
@@ -101040,19 +101059,20 @@ declare module 'vue' {
|
|
101040
101059
|
VHover: VHover
|
101041
101060
|
VLayout: VLayout
|
101042
101061
|
VLayoutItem: VLayoutItem
|
101043
|
-
VLazy: VLazy
|
101044
101062
|
VLocaleProvider: VLocaleProvider
|
101063
|
+
VLazy: VLazy
|
101045
101064
|
VNoSsr: VNoSsr
|
101046
101065
|
VParallax: VParallax
|
101047
101066
|
VRadio: VRadio
|
101048
|
-
VRangeSlider: VRangeSlider
|
101049
101067
|
VResponsive: VResponsive
|
101068
|
+
VRangeSlider: VRangeSlider
|
101050
101069
|
VSnackbarQueue: VSnackbarQueue
|
101070
|
+
VSheet: VSheet
|
101051
101071
|
VSparkline: VSparkline
|
101052
101072
|
VSpeedDial: VSpeedDial
|
101053
101073
|
VThemeProvider: VThemeProvider
|
101054
|
-
VValidation: VValidation
|
101055
101074
|
VVirtualScroll: VVirtualScroll
|
101075
|
+
VValidation: VValidation
|
101056
101076
|
VFabTransition: VFabTransition
|
101057
101077
|
VDialogBottomTransition: VDialogBottomTransition
|
101058
101078
|
VDialogTopTransition: VDialogTopTransition
|
@@ -101069,27 +101089,27 @@ declare module 'vue' {
|
|
101069
101089
|
VExpandTransition: VExpandTransition
|
101070
101090
|
VExpandXTransition: VExpandXTransition
|
101071
101091
|
VDialogTransition: VDialogTransition
|
101072
|
-
VIconBtn: VIconBtn
|
101073
101092
|
VCalendar: VCalendar
|
101074
101093
|
VCalendarDay: VCalendarDay
|
101075
101094
|
VCalendarHeader: VCalendarHeader
|
101076
101095
|
VCalendarInterval: VCalendarInterval
|
101077
101096
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
101078
101097
|
VCalendarMonthDay: VCalendarMonthDay
|
101079
|
-
VTimePicker: VTimePicker
|
101080
|
-
VTimePickerClock: VTimePickerClock
|
101081
|
-
VTimePickerControls: VTimePickerControls
|
101082
101098
|
VFileUpload: VFileUpload
|
101083
101099
|
VFileUploadItem: VFileUploadItem
|
101100
|
+
VIconBtn: VIconBtn
|
101101
|
+
VPicker: VPicker
|
101102
|
+
VPickerTitle: VPickerTitle
|
101084
101103
|
VStepperVertical: VStepperVertical
|
101085
101104
|
VStepperVerticalItem: VStepperVerticalItem
|
101086
101105
|
VStepperVerticalActions: VStepperVerticalActions
|
101087
|
-
VPicker: VPicker
|
101088
|
-
VPickerTitle: VPickerTitle
|
101089
101106
|
VTreeview: VTreeview
|
101090
101107
|
VTreeviewItem: VTreeviewItem
|
101091
101108
|
VTreeviewGroup: VTreeviewGroup
|
101092
|
-
|
101109
|
+
VTimePicker: VTimePicker
|
101110
|
+
VTimePickerClock: VTimePickerClock
|
101111
|
+
VTimePickerControls: VTimePickerControls
|
101093
101112
|
VPullToRefresh: VPullToRefresh
|
101113
|
+
VDateInput: VDateInput
|
101094
101114
|
}
|
101095
101115
|
}
|
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.3-master.2025-
|
2
|
+
* Vuetify v3.8.3-master.2025-05-01
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -18991,7 +18991,7 @@ function provideSelection(props, _ref9) {
|
|
18991
18991
|
index = index ?? currentPage.value.findIndex(i => i.value === item.value);
|
18992
18992
|
if (props.selectStrategy !== 'single' && event?.shiftKey && lastSelectedIndex.value !== null) {
|
18993
18993
|
const [start, end] = [lastSelectedIndex.value, index].sort((a, b) => a - b);
|
18994
|
-
items.push(...currentPage.value.slice(start, end + 1));
|
18994
|
+
items.push(...currentPage.value.slice(start, end + 1).filter(item => item.selectable));
|
18995
18995
|
} else {
|
18996
18996
|
items.push(item);
|
18997
18997
|
lastSelectedIndex.value = index;
|
@@ -29061,7 +29061,13 @@ const makeVDateInputProps = propsFactory({
|
|
29061
29061
|
type: String,
|
29062
29062
|
default: 'bottom start'
|
29063
29063
|
},
|
29064
|
-
|
29064
|
+
updateOn: {
|
29065
|
+
type: Array,
|
29066
|
+
default: () => ['blur', 'enter']
|
29067
|
+
},
|
29068
|
+
...makeDisplayProps({
|
29069
|
+
mobile: null
|
29070
|
+
}),
|
29065
29071
|
...makeFocusProps(),
|
29066
29072
|
...makeVConfirmEditProps({
|
29067
29073
|
hideActions: true
|
@@ -29131,7 +29137,10 @@ const VDateInput = genericComponent()({
|
|
29131
29137
|
return 'none';
|
29132
29138
|
});
|
29133
29139
|
const isInteractive = computed(() => !props.disabled && !props.readonly);
|
29134
|
-
const isReadonly = computed(() =>
|
29140
|
+
const isReadonly = computed(() => {
|
29141
|
+
if (!props.updateOn.length) return true;
|
29142
|
+
return !(mobile.value && isEditingInput.value) && props.readonly;
|
29143
|
+
});
|
29135
29144
|
watch(menu, val => {
|
29136
29145
|
if (val) return;
|
29137
29146
|
isEditingInput.value = false;
|
@@ -29143,8 +29152,9 @@ const VDateInput = genericComponent()({
|
|
29143
29152
|
menu.value = true;
|
29144
29153
|
return;
|
29145
29154
|
}
|
29146
|
-
|
29147
|
-
|
29155
|
+
if (props.updateOn.includes('enter')) {
|
29156
|
+
onUserInput(e.target);
|
29157
|
+
}
|
29148
29158
|
}
|
29149
29159
|
function onClick(e) {
|
29150
29160
|
e.preventDefault();
|
@@ -29168,7 +29178,10 @@ const VDateInput = genericComponent()({
|
|
29168
29178
|
if (value != null) return;
|
29169
29179
|
model.value = null;
|
29170
29180
|
}
|
29171
|
-
function onBlur() {
|
29181
|
+
function onBlur(e) {
|
29182
|
+
if (props.updateOn.includes('blur')) {
|
29183
|
+
onUserInput(e.target);
|
29184
|
+
}
|
29172
29185
|
blur();
|
29173
29186
|
|
29174
29187
|
// When in mobile mode and editing is done (due to keyboard dismissal), close the menu
|
@@ -29177,6 +29190,13 @@ const VDateInput = genericComponent()({
|
|
29177
29190
|
isEditingInput.value = false;
|
29178
29191
|
}
|
29179
29192
|
}
|
29193
|
+
function onUserInput(_ref2) {
|
29194
|
+
let {
|
29195
|
+
value
|
29196
|
+
} = _ref2;
|
29197
|
+
if (value && !adapter.isValid(value)) return;
|
29198
|
+
model.value = !value ? null : value;
|
29199
|
+
}
|
29180
29200
|
useRender(() => {
|
29181
29201
|
const confirmEditProps = VConfirmEdit.filterProps(props);
|
29182
29202
|
const datePickerProps = VDatePicker.filterProps(omit(props, ['active', 'location', 'rounded']));
|
@@ -29215,14 +29235,14 @@ const VDateInput = genericComponent()({
|
|
29215
29235
|
"onSave": onSave,
|
29216
29236
|
"onCancel": onCancel
|
29217
29237
|
}), {
|
29218
|
-
default:
|
29238
|
+
default: _ref3 => {
|
29219
29239
|
let {
|
29220
29240
|
actions,
|
29221
29241
|
model: proxyModel,
|
29222
29242
|
save,
|
29223
29243
|
cancel,
|
29224
29244
|
isPristine
|
29225
|
-
} =
|
29245
|
+
} = _ref3;
|
29226
29246
|
function onUpdateModel(value) {
|
29227
29247
|
if (!props.hideActions) {
|
29228
29248
|
proxyModel.value = value;
|
@@ -31637,7 +31657,7 @@ function createVuetify$1() {
|
|
31637
31657
|
};
|
31638
31658
|
});
|
31639
31659
|
}
|
31640
|
-
const version$1 = "3.8.3-master.2025-
|
31660
|
+
const version$1 = "3.8.3-master.2025-05-01";
|
31641
31661
|
createVuetify$1.version = version$1;
|
31642
31662
|
|
31643
31663
|
// Vue's inject() can only be used in setup
|
@@ -31935,7 +31955,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
31935
31955
|
|
31936
31956
|
/* eslint-disable local-rules/sort-imports */
|
31937
31957
|
|
31938
|
-
const version = "3.8.3-master.2025-
|
31958
|
+
const version = "3.8.3-master.2025-05-01";
|
31939
31959
|
|
31940
31960
|
/* eslint-disable local-rules/sort-imports */
|
31941
31961
|
|