vuetify 3.5.14 → 3.5.15
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/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +114 -114
- package/dist/json/web-types.json +24 -2
- package/dist/vuetify-labs.css +1967 -1933
- package/dist/vuetify-labs.d.ts +12 -0
- package/dist/vuetify-labs.esm.js +20 -15
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +20 -15
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1081 -1047
- package/dist/vuetify.d.ts +51 -39
- package/dist/vuetify.esm.js +10 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +10 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +9 -8
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtn/VBtn.css +4 -0
- package/lib/components/VBtn/VBtn.mjs +0 -1
- package/lib/components/VBtn/VBtn.mjs.map +1 -1
- package/lib/components/VBtn/VBtn.sass +4 -0
- package/lib/components/VBtn/_variables.scss +1 -0
- package/lib/components/VDataTable/composables/options.mjs +1 -1
- package/lib/components/VDataTable/composables/options.mjs.map +1 -1
- package/lib/components/VDialog/VDialog.mjs +3 -1
- package/lib/components/VDialog/VDialog.mjs.map +1 -1
- package/lib/components/VDialog/index.d.mts +12 -0
- package/lib/components/VMenu/VMenu.mjs +2 -1
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs +1 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/index.d.mts +12 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +39 -39
- package/lib/labs/VTimePicker/VTimePicker.mjs +2 -2
- package/lib/labs/VTimePicker/VTimePicker.mjs.map +1 -1
- package/lib/labs/VTimePicker/VTimePickerClock.mjs +8 -5
- package/lib/labs/VTimePicker/VTimePickerClock.mjs.map +1 -1
- package/lib/locale/lt.mjs +25 -25
- package/lib/locale/lt.mjs.map +1 -1
- package/lib/locale/sl.mjs +30 -30
- package/lib/locale/sl.mjs.map +1 -1
- package/lib/styles/main.css +30 -0
- package/lib/styles/settings/_variables.scss +1 -0
- package/package.json +2 -2
package/dist/vuetify.d.ts
CHANGED
|
@@ -29347,7 +29347,9 @@ declare const VDialog: {
|
|
|
29347
29347
|
props: Record<string, any>;
|
|
29348
29348
|
}) => vue.VNodeChild) | undefined;
|
|
29349
29349
|
} & {
|
|
29350
|
+
onAfterLeave?: (() => any) | undefined;
|
|
29350
29351
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
29352
|
+
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
29351
29353
|
}, Omit<Omit<{
|
|
29352
29354
|
$: vue.ComponentInternalInstance;
|
|
29353
29355
|
$data: {};
|
|
@@ -29792,7 +29794,9 @@ declare const VDialog: {
|
|
|
29792
29794
|
localTop: vue.ComputedRef<boolean>;
|
|
29793
29795
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
29794
29796
|
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "ref" | "onAfterLeave" | "$children" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
29797
|
+
'click:outside': (e: MouseEvent) => boolean;
|
|
29795
29798
|
'update:modelValue': (value: boolean) => boolean;
|
|
29799
|
+
afterLeave: () => boolean;
|
|
29796
29800
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
29797
29801
|
absolute: boolean;
|
|
29798
29802
|
location: Anchor;
|
|
@@ -29872,7 +29876,9 @@ declare const VDialog: {
|
|
|
29872
29876
|
props: Record<string, any>;
|
|
29873
29877
|
}) => vue.VNodeChild) | undefined;
|
|
29874
29878
|
} & {
|
|
29879
|
+
onAfterLeave?: (() => any) | undefined;
|
|
29875
29880
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
29881
|
+
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
29876
29882
|
}, {
|
|
29877
29883
|
absolute: boolean;
|
|
29878
29884
|
location: Anchor;
|
|
@@ -30002,7 +30008,9 @@ declare const VDialog: {
|
|
|
30002
30008
|
props: Record<string, any>;
|
|
30003
30009
|
}) => vue.VNodeChild) | undefined;
|
|
30004
30010
|
} & {
|
|
30011
|
+
onAfterLeave?: (() => any) | undefined;
|
|
30005
30012
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
30013
|
+
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
30006
30014
|
}, Omit<Omit<{
|
|
30007
30015
|
$: vue.ComponentInternalInstance;
|
|
30008
30016
|
$data: {};
|
|
@@ -30560,7 +30568,9 @@ declare const VDialog: {
|
|
|
30560
30568
|
props: Record<string, any>;
|
|
30561
30569
|
}) => vue.VNodeChild) | undefined;
|
|
30562
30570
|
} & {
|
|
30571
|
+
onAfterLeave?: (() => any) | undefined;
|
|
30563
30572
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
30573
|
+
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
30564
30574
|
}, Omit<Omit<{
|
|
30565
30575
|
$: vue.ComponentInternalInstance;
|
|
30566
30576
|
$data: {};
|
|
@@ -31005,7 +31015,9 @@ declare const VDialog: {
|
|
|
31005
31015
|
localTop: vue.ComputedRef<boolean>;
|
|
31006
31016
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
31007
31017
|
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "ref" | "onAfterLeave" | "$children" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
31018
|
+
'click:outside': (e: MouseEvent) => boolean;
|
|
31008
31019
|
'update:modelValue': (value: boolean) => boolean;
|
|
31020
|
+
afterLeave: () => boolean;
|
|
31009
31021
|
}, string, {
|
|
31010
31022
|
absolute: boolean;
|
|
31011
31023
|
location: Anchor;
|
|
@@ -68987,40 +68999,41 @@ declare module '@vue/runtime-core' {
|
|
|
68987
68999
|
}
|
|
68988
69000
|
|
|
68989
69001
|
export interface GlobalComponents {
|
|
69002
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
69003
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
69004
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
68990
69005
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
68991
69006
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
68992
69007
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
68993
|
-
|
|
68994
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
68995
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
|
69008
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
68996
69009
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
68997
|
-
|
|
68998
|
-
|
|
68999
|
-
|
|
69010
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
69011
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
69012
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
69000
69013
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
69001
69014
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
69002
69015
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
69003
|
-
|
|
69004
|
-
|
|
69005
|
-
|
|
69006
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
69016
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
69017
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
69018
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
69007
69019
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
69020
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
69021
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
69008
69022
|
VCard: typeof import('vuetify/components')['VCard']
|
|
69009
69023
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
69010
69024
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
69011
69025
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
69012
69026
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
69013
69027
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
69014
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
69015
69028
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
69016
69029
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
69017
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
69018
69030
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
69019
69031
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
69020
|
-
|
|
69021
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
69032
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
69022
69033
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
69034
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
69023
69035
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
69036
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
69024
69037
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
69025
69038
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
69026
69039
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
@@ -69029,32 +69042,32 @@ declare module '@vue/runtime-core' {
|
|
|
69029
69042
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
69030
69043
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
69031
69044
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
69045
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
69032
69046
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
69033
69047
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
69034
69048
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
69035
69049
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
69036
69050
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
69037
69051
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
69038
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
|
69039
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
|
69040
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
69041
69052
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
69042
69053
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
69043
69054
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
69044
69055
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
69045
|
-
|
|
69056
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
69046
69057
|
VField: typeof import('vuetify/components')['VField']
|
|
69047
69058
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
69059
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
69060
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
69048
69061
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
69049
69062
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
69050
69063
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
69051
69064
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
69052
69065
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
69053
|
-
VImg: typeof import('vuetify/components')['VImg']
|
|
69054
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
69055
69066
|
VInput: typeof import('vuetify/components')['VInput']
|
|
69056
69067
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
69057
69068
|
VItem: typeof import('vuetify/components')['VItem']
|
|
69069
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
69070
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
69058
69071
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
69059
69072
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
69060
69073
|
VList: typeof import('vuetify/components')['VList']
|
|
@@ -69067,54 +69080,54 @@ declare module '@vue/runtime-core' {
|
|
|
69067
69080
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
69068
69081
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
69069
69082
|
VMain: typeof import('vuetify/components')['VMain']
|
|
69070
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
|
69071
69083
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
69072
69084
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
69073
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
69074
69085
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
69086
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
|
69075
69087
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
69088
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
69076
69089
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
69090
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
69077
69091
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
69078
69092
|
VRating: typeof import('vuetify/components')['VRating']
|
|
69079
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
69080
69093
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
69081
69094
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
69082
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
|
69083
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
69084
69095
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
69096
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
69097
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
69085
69098
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
69086
69099
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
69087
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
69088
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
69089
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
69090
69100
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
69091
69101
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
69092
69102
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
69093
69103
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
69094
69104
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
69095
69105
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
69106
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
69107
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
69108
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
|
69109
|
+
VTab: typeof import('vuetify/components')['VTab']
|
|
69096
69110
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
69111
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
69097
69112
|
VTable: typeof import('vuetify/components')['VTable']
|
|
69098
69113
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
69099
|
-
|
|
69100
|
-
|
|
69114
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
69115
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
69101
69116
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
69102
69117
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
69103
69118
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
69104
69119
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
69105
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
69106
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
69107
69120
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
69108
69121
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
69109
69122
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
69110
69123
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
69111
69124
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
69112
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
69113
69125
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
69114
69126
|
VCol: typeof import('vuetify/components')['VCol']
|
|
69115
69127
|
VRow: typeof import('vuetify/components')['VRow']
|
|
69116
69128
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
69117
69129
|
VHover: typeof import('vuetify/components')['VHover']
|
|
69130
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
69118
69131
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
69119
69132
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
69120
69133
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
@@ -69125,8 +69138,8 @@ declare module '@vue/runtime-core' {
|
|
|
69125
69138
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
69126
69139
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
69127
69140
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
69128
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
|
69129
69141
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
69142
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
69130
69143
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
69131
69144
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
69132
69145
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -69143,26 +69156,25 @@ declare module '@vue/runtime-core' {
|
|
|
69143
69156
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
69144
69157
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
69145
69158
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
69146
|
-
|
|
69159
|
+
VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
|
|
69147
69160
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
69148
69161
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
69149
69162
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
69150
69163
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
69151
69164
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
69152
69165
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
69153
|
-
|
|
69154
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
|
69166
|
+
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
69155
69167
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
69156
69168
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
69157
|
-
|
|
69169
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
|
69158
69170
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
|
69159
69171
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
|
69160
69172
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
|
69161
69173
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
69162
69174
|
VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
|
|
69163
|
-
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
69164
69175
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
|
69165
69176
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
|
69166
69177
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
|
69178
|
+
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
69167
69179
|
}
|
|
69168
69180
|
}
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.5.
|
|
2
|
+
* Vuetify v3.5.15
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -5879,7 +5879,6 @@ const VBtn = genericComponent()({
|
|
|
5879
5879
|
}, [slots.loader?.() ?? createVNode(VProgressCircular, {
|
|
5880
5880
|
"color": typeof props.loading === 'boolean' ? undefined : props.loading,
|
|
5881
5881
|
"indeterminate": true,
|
|
5882
|
-
"size": "23",
|
|
5883
5882
|
"width": "2"
|
|
5884
5883
|
}, null)])]
|
|
5885
5884
|
}), [[resolveDirective("ripple"), !isDisabled.value && props.ripple, null]]);
|
|
@@ -6361,7 +6360,7 @@ function useSelectionControl(props) {
|
|
|
6361
6360
|
backgroundColorClasses,
|
|
6362
6361
|
backgroundColorStyles
|
|
6363
6362
|
} = useBackgroundColor(computed(() => {
|
|
6364
|
-
return model.value && !props.error && !props.disabled ? props.color :
|
|
6363
|
+
return model.value && !props.error && !props.disabled ? props.color : props.baseColor;
|
|
6365
6364
|
}));
|
|
6366
6365
|
const icon = computed(() => model.value ? props.trueIcon : props.falseIcon);
|
|
6367
6366
|
return {
|
|
@@ -11086,7 +11085,8 @@ const VMenu = genericComponent()({
|
|
|
11086
11085
|
}
|
|
11087
11086
|
function onKeydown(e) {
|
|
11088
11087
|
if (props.disabled) return;
|
|
11089
|
-
if (e.key === 'Tab') {
|
|
11088
|
+
if (e.key === 'Tab' || e.key === 'Enter' && !props.closeOnContentClick) {
|
|
11089
|
+
if (e.key === 'Enter') e.preventDefault();
|
|
11090
11090
|
const nextElement = getNextElement(focusableChildren(overlay.value?.contentEl, false), e.shiftKey ? 'prev' : 'next', el => el.tabIndex >= 0);
|
|
11091
11091
|
if (!nextElement) {
|
|
11092
11092
|
isActive.value = false;
|
|
@@ -13523,7 +13523,9 @@ const VDialog = genericComponent()({
|
|
|
13523
13523
|
name: 'VDialog',
|
|
13524
13524
|
props: makeVDialogProps(),
|
|
13525
13525
|
emits: {
|
|
13526
|
-
'
|
|
13526
|
+
'click:outside': e => true,
|
|
13527
|
+
'update:modelValue': value => true,
|
|
13528
|
+
afterLeave: () => true
|
|
13527
13529
|
},
|
|
13528
13530
|
setup(props, _ref) {
|
|
13529
13531
|
let {
|
|
@@ -17179,7 +17181,7 @@ function useOptions(_ref) {
|
|
|
17179
17181
|
if (deepEqual(oldOptions, options.value)) return;
|
|
17180
17182
|
|
|
17181
17183
|
// Reset page when searching
|
|
17182
|
-
if (oldOptions
|
|
17184
|
+
if (oldOptions && oldOptions.search !== options.value.search) {
|
|
17183
17185
|
page.value = 1;
|
|
17184
17186
|
}
|
|
17185
17187
|
vm.emit('update:options', options.value);
|
|
@@ -26330,7 +26332,7 @@ function createVuetify$1() {
|
|
|
26330
26332
|
goTo
|
|
26331
26333
|
};
|
|
26332
26334
|
}
|
|
26333
|
-
const version$1 = "3.5.
|
|
26335
|
+
const version$1 = "3.5.15";
|
|
26334
26336
|
createVuetify$1.version = version$1;
|
|
26335
26337
|
|
|
26336
26338
|
// Vue's inject() can only be used in setup
|
|
@@ -26355,7 +26357,7 @@ const createVuetify = function () {
|
|
|
26355
26357
|
...options
|
|
26356
26358
|
});
|
|
26357
26359
|
};
|
|
26358
|
-
const version = "3.5.
|
|
26360
|
+
const version = "3.5.15";
|
|
26359
26361
|
createVuetify.version = version;
|
|
26360
26362
|
|
|
26361
26363
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|