@vuetify/nightly 3.7.15-master.2025-03-10 → 3.7.15-master.2025-03-11
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 +2036 -2036
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +154 -154
- package/dist/json/web-types.json +3872 -3861
- package/dist/vuetify-labs.css +4879 -4879
- package/dist/vuetify-labs.d.ts +90 -24
- package/dist/vuetify-labs.esm.js +13 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +13 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4116 -4116
- package/dist/vuetify.d.ts +144 -78
- package/dist/vuetify.esm.js +13 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +21 -6
- package/lib/components/VCombobox/index.d.mts +21 -6
- package/lib/components/VDialog/index.d.mts +21 -6
- package/lib/components/VMenu/index.d.mts +21 -6
- package/lib/components/VOverlay/VOverlay.mjs +10 -1
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/index.d.mts +6 -0
- package/lib/components/VSelect/index.d.mts +21 -6
- package/lib/components/VSnackbar/index.d.mts +21 -6
- package/lib/components/VTooltip/index.d.mts +21 -6
- package/lib/components/index.d.mts +90 -24
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +54 -54
- package/lib/labs/VSnackbarQueue/index.d.mts +21 -6
- package/lib/labs/components.d.mts +21 -6
- package/package.json +1 -1
@@ -1131,6 +1131,7 @@ declare const VMenu: {
|
|
1131
1131
|
}) => vue.VNodeChild) | undefined;
|
1132
1132
|
onAfterEnter?: (() => any) | undefined;
|
1133
1133
|
onAfterLeave?: (() => any) | undefined;
|
1134
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1134
1135
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1135
1136
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1136
1137
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -1213,6 +1214,7 @@ declare const VMenu: {
|
|
1213
1214
|
} & {
|
1214
1215
|
onAfterEnter?: (() => any) | undefined;
|
1215
1216
|
onAfterLeave?: (() => any) | undefined;
|
1217
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1216
1218
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1217
1219
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1218
1220
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -1234,7 +1236,7 @@ declare const VMenu: {
|
|
1234
1236
|
}>;
|
1235
1237
|
$root: vue.ComponentPublicInstance | null;
|
1236
1238
|
$parent: vue.ComponentPublicInstance | null;
|
1237
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1239
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1238
1240
|
$el: any;
|
1239
1241
|
$options: vue.ComponentOptionsBase<{
|
1240
1242
|
absolute: boolean;
|
@@ -1316,6 +1318,7 @@ declare const VMenu: {
|
|
1316
1318
|
} & {
|
1317
1319
|
onAfterEnter?: (() => any) | undefined;
|
1318
1320
|
onAfterLeave?: (() => any) | undefined;
|
1321
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1319
1322
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1320
1323
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1321
1324
|
}, {
|
@@ -1330,6 +1333,7 @@ declare const VMenu: {
|
|
1330
1333
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
1331
1334
|
'click:outside': (e: MouseEvent) => true;
|
1332
1335
|
'update:modelValue': (value: boolean) => true;
|
1336
|
+
keydown: (e: KeyboardEvent) => true;
|
1333
1337
|
afterEnter: () => true;
|
1334
1338
|
afterLeave: () => true;
|
1335
1339
|
}, string, {
|
@@ -1468,6 +1472,7 @@ declare const VMenu: {
|
|
1468
1472
|
} & {
|
1469
1473
|
onAfterEnter?: (() => any) | undefined;
|
1470
1474
|
onAfterLeave?: (() => any) | undefined;
|
1475
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1471
1476
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1472
1477
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1473
1478
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -1479,7 +1484,7 @@ declare const VMenu: {
|
|
1479
1484
|
globalTop: Readonly<vue.Ref<boolean>>;
|
1480
1485
|
localTop: vue.ComputedRef<boolean>;
|
1481
1486
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
1482
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
1487
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
1483
1488
|
_allExposed: {
|
1484
1489
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
1485
1490
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -1812,6 +1817,7 @@ declare const VMenu: {
|
|
1812
1817
|
}) => vue.VNodeChild) | undefined;
|
1813
1818
|
onAfterEnter?: (() => any) | undefined;
|
1814
1819
|
onAfterLeave?: (() => any) | undefined;
|
1820
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1815
1821
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1816
1822
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1817
1823
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -1894,6 +1900,7 @@ declare const VMenu: {
|
|
1894
1900
|
} & {
|
1895
1901
|
onAfterEnter?: (() => any) | undefined;
|
1896
1902
|
onAfterLeave?: (() => any) | undefined;
|
1903
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1897
1904
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1898
1905
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1899
1906
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -1915,7 +1922,7 @@ declare const VMenu: {
|
|
1915
1922
|
}>;
|
1916
1923
|
$root: vue.ComponentPublicInstance | null;
|
1917
1924
|
$parent: vue.ComponentPublicInstance | null;
|
1918
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1925
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1919
1926
|
$el: any;
|
1920
1927
|
$options: vue.ComponentOptionsBase<{
|
1921
1928
|
absolute: boolean;
|
@@ -1997,6 +2004,7 @@ declare const VMenu: {
|
|
1997
2004
|
} & {
|
1998
2005
|
onAfterEnter?: (() => any) | undefined;
|
1999
2006
|
onAfterLeave?: (() => any) | undefined;
|
2007
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
2000
2008
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2001
2009
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
2002
2010
|
}, {
|
@@ -2011,6 +2019,7 @@ declare const VMenu: {
|
|
2011
2019
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
2012
2020
|
'click:outside': (e: MouseEvent) => true;
|
2013
2021
|
'update:modelValue': (value: boolean) => true;
|
2022
|
+
keydown: (e: KeyboardEvent) => true;
|
2014
2023
|
afterEnter: () => true;
|
2015
2024
|
afterLeave: () => true;
|
2016
2025
|
}, string, {
|
@@ -2149,6 +2158,7 @@ declare const VMenu: {
|
|
2149
2158
|
} & {
|
2150
2159
|
onAfterEnter?: (() => any) | undefined;
|
2151
2160
|
onAfterLeave?: (() => any) | undefined;
|
2161
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
2152
2162
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2153
2163
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
2154
2164
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -2160,7 +2170,7 @@ declare const VMenu: {
|
|
2160
2170
|
globalTop: Readonly<vue.Ref<boolean>>;
|
2161
2171
|
localTop: vue.ComputedRef<boolean>;
|
2162
2172
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
2163
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
2173
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
2164
2174
|
_allExposed: {
|
2165
2175
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
2166
2176
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -2398,6 +2408,7 @@ declare const VMenu: {
|
|
2398
2408
|
}) => vue.VNodeChild) | undefined;
|
2399
2409
|
onAfterEnter?: (() => any) | undefined;
|
2400
2410
|
onAfterLeave?: (() => any) | undefined;
|
2411
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
2401
2412
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2402
2413
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
2403
2414
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -2480,6 +2491,7 @@ declare const VMenu: {
|
|
2480
2491
|
} & {
|
2481
2492
|
onAfterEnter?: (() => any) | undefined;
|
2482
2493
|
onAfterLeave?: (() => any) | undefined;
|
2494
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
2483
2495
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2484
2496
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
2485
2497
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -2501,7 +2513,7 @@ declare const VMenu: {
|
|
2501
2513
|
}>;
|
2502
2514
|
$root: vue.ComponentPublicInstance | null;
|
2503
2515
|
$parent: vue.ComponentPublicInstance | null;
|
2504
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
2516
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
2505
2517
|
$el: any;
|
2506
2518
|
$options: vue.ComponentOptionsBase<{
|
2507
2519
|
absolute: boolean;
|
@@ -2583,6 +2595,7 @@ declare const VMenu: {
|
|
2583
2595
|
} & {
|
2584
2596
|
onAfterEnter?: (() => any) | undefined;
|
2585
2597
|
onAfterLeave?: (() => any) | undefined;
|
2598
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
2586
2599
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2587
2600
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
2588
2601
|
}, {
|
@@ -2597,6 +2610,7 @@ declare const VMenu: {
|
|
2597
2610
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
2598
2611
|
'click:outside': (e: MouseEvent) => true;
|
2599
2612
|
'update:modelValue': (value: boolean) => true;
|
2613
|
+
keydown: (e: KeyboardEvent) => true;
|
2600
2614
|
afterEnter: () => true;
|
2601
2615
|
afterLeave: () => true;
|
2602
2616
|
}, string, {
|
@@ -2735,6 +2749,7 @@ declare const VMenu: {
|
|
2735
2749
|
} & {
|
2736
2750
|
onAfterEnter?: (() => any) | undefined;
|
2737
2751
|
onAfterLeave?: (() => any) | undefined;
|
2752
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
2738
2753
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2739
2754
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
2740
2755
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -2746,7 +2761,7 @@ declare const VMenu: {
|
|
2746
2761
|
globalTop: Readonly<vue.Ref<boolean>>;
|
2747
2762
|
localTop: vue.ComputedRef<boolean>;
|
2748
2763
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
2749
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
2764
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
2750
2765
|
_allExposed: {
|
2751
2766
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
2752
2767
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -1131,6 +1131,7 @@ declare const VMenu: {
|
|
1131
1131
|
}) => vue.VNodeChild) | undefined;
|
1132
1132
|
onAfterEnter?: (() => any) | undefined;
|
1133
1133
|
onAfterLeave?: (() => any) | undefined;
|
1134
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1134
1135
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1135
1136
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1136
1137
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -1213,6 +1214,7 @@ declare const VMenu: {
|
|
1213
1214
|
} & {
|
1214
1215
|
onAfterEnter?: (() => any) | undefined;
|
1215
1216
|
onAfterLeave?: (() => any) | undefined;
|
1217
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1216
1218
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1217
1219
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1218
1220
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -1234,7 +1236,7 @@ declare const VMenu: {
|
|
1234
1236
|
}>;
|
1235
1237
|
$root: vue.ComponentPublicInstance | null;
|
1236
1238
|
$parent: vue.ComponentPublicInstance | null;
|
1237
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1239
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1238
1240
|
$el: any;
|
1239
1241
|
$options: vue.ComponentOptionsBase<{
|
1240
1242
|
absolute: boolean;
|
@@ -1316,6 +1318,7 @@ declare const VMenu: {
|
|
1316
1318
|
} & {
|
1317
1319
|
onAfterEnter?: (() => any) | undefined;
|
1318
1320
|
onAfterLeave?: (() => any) | undefined;
|
1321
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1319
1322
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1320
1323
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1321
1324
|
}, {
|
@@ -1330,6 +1333,7 @@ declare const VMenu: {
|
|
1330
1333
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
1331
1334
|
'click:outside': (e: MouseEvent) => true;
|
1332
1335
|
'update:modelValue': (value: boolean) => true;
|
1336
|
+
keydown: (e: KeyboardEvent) => true;
|
1333
1337
|
afterEnter: () => true;
|
1334
1338
|
afterLeave: () => true;
|
1335
1339
|
}, string, {
|
@@ -1468,6 +1472,7 @@ declare const VMenu: {
|
|
1468
1472
|
} & {
|
1469
1473
|
onAfterEnter?: (() => any) | undefined;
|
1470
1474
|
onAfterLeave?: (() => any) | undefined;
|
1475
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1471
1476
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1472
1477
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1473
1478
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -1479,7 +1484,7 @@ declare const VMenu: {
|
|
1479
1484
|
globalTop: Readonly<vue.Ref<boolean>>;
|
1480
1485
|
localTop: vue.ComputedRef<boolean>;
|
1481
1486
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
1482
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
1487
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
1483
1488
|
_allExposed: {
|
1484
1489
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
1485
1490
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -1812,6 +1817,7 @@ declare const VMenu: {
|
|
1812
1817
|
}) => vue.VNodeChild) | undefined;
|
1813
1818
|
onAfterEnter?: (() => any) | undefined;
|
1814
1819
|
onAfterLeave?: (() => any) | undefined;
|
1820
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1815
1821
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1816
1822
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1817
1823
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -1894,6 +1900,7 @@ declare const VMenu: {
|
|
1894
1900
|
} & {
|
1895
1901
|
onAfterEnter?: (() => any) | undefined;
|
1896
1902
|
onAfterLeave?: (() => any) | undefined;
|
1903
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1897
1904
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1898
1905
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1899
1906
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -1915,7 +1922,7 @@ declare const VMenu: {
|
|
1915
1922
|
}>;
|
1916
1923
|
$root: vue.ComponentPublicInstance | null;
|
1917
1924
|
$parent: vue.ComponentPublicInstance | null;
|
1918
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1925
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1919
1926
|
$el: any;
|
1920
1927
|
$options: vue.ComponentOptionsBase<{
|
1921
1928
|
absolute: boolean;
|
@@ -1997,6 +2004,7 @@ declare const VMenu: {
|
|
1997
2004
|
} & {
|
1998
2005
|
onAfterEnter?: (() => any) | undefined;
|
1999
2006
|
onAfterLeave?: (() => any) | undefined;
|
2007
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
2000
2008
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2001
2009
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
2002
2010
|
}, {
|
@@ -2011,6 +2019,7 @@ declare const VMenu: {
|
|
2011
2019
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
2012
2020
|
'click:outside': (e: MouseEvent) => true;
|
2013
2021
|
'update:modelValue': (value: boolean) => true;
|
2022
|
+
keydown: (e: KeyboardEvent) => true;
|
2014
2023
|
afterEnter: () => true;
|
2015
2024
|
afterLeave: () => true;
|
2016
2025
|
}, string, {
|
@@ -2149,6 +2158,7 @@ declare const VMenu: {
|
|
2149
2158
|
} & {
|
2150
2159
|
onAfterEnter?: (() => any) | undefined;
|
2151
2160
|
onAfterLeave?: (() => any) | undefined;
|
2161
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
2152
2162
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2153
2163
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
2154
2164
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -2160,7 +2170,7 @@ declare const VMenu: {
|
|
2160
2170
|
globalTop: Readonly<vue.Ref<boolean>>;
|
2161
2171
|
localTop: vue.ComputedRef<boolean>;
|
2162
2172
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
2163
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
2173
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
2164
2174
|
_allExposed: {
|
2165
2175
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
2166
2176
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -2398,6 +2408,7 @@ declare const VMenu: {
|
|
2398
2408
|
}) => vue.VNodeChild) | undefined;
|
2399
2409
|
onAfterEnter?: (() => any) | undefined;
|
2400
2410
|
onAfterLeave?: (() => any) | undefined;
|
2411
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
2401
2412
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2402
2413
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
2403
2414
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -2480,6 +2491,7 @@ declare const VMenu: {
|
|
2480
2491
|
} & {
|
2481
2492
|
onAfterEnter?: (() => any) | undefined;
|
2482
2493
|
onAfterLeave?: (() => any) | undefined;
|
2494
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
2483
2495
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2484
2496
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
2485
2497
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -2501,7 +2513,7 @@ declare const VMenu: {
|
|
2501
2513
|
}>;
|
2502
2514
|
$root: vue.ComponentPublicInstance | null;
|
2503
2515
|
$parent: vue.ComponentPublicInstance | null;
|
2504
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
2516
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
2505
2517
|
$el: any;
|
2506
2518
|
$options: vue.ComponentOptionsBase<{
|
2507
2519
|
absolute: boolean;
|
@@ -2583,6 +2595,7 @@ declare const VMenu: {
|
|
2583
2595
|
} & {
|
2584
2596
|
onAfterEnter?: (() => any) | undefined;
|
2585
2597
|
onAfterLeave?: (() => any) | undefined;
|
2598
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
2586
2599
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2587
2600
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
2588
2601
|
}, {
|
@@ -2597,6 +2610,7 @@ declare const VMenu: {
|
|
2597
2610
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
2598
2611
|
'click:outside': (e: MouseEvent) => true;
|
2599
2612
|
'update:modelValue': (value: boolean) => true;
|
2613
|
+
keydown: (e: KeyboardEvent) => true;
|
2600
2614
|
afterEnter: () => true;
|
2601
2615
|
afterLeave: () => true;
|
2602
2616
|
}, string, {
|
@@ -2735,6 +2749,7 @@ declare const VMenu: {
|
|
2735
2749
|
} & {
|
2736
2750
|
onAfterEnter?: (() => any) | undefined;
|
2737
2751
|
onAfterLeave?: (() => any) | undefined;
|
2752
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
2738
2753
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2739
2754
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
2740
2755
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -2746,7 +2761,7 @@ declare const VMenu: {
|
|
2746
2761
|
globalTop: Readonly<vue.Ref<boolean>>;
|
2747
2762
|
localTop: vue.ComputedRef<boolean>;
|
2748
2763
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
2749
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
2764
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
2750
2765
|
_allExposed: {
|
2751
2766
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
2752
2767
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -284,6 +284,7 @@ declare const VDialog: {
|
|
284
284
|
}) => vue.VNodeChild) | undefined;
|
285
285
|
onAfterEnter?: (() => any) | undefined;
|
286
286
|
onAfterLeave?: (() => any) | undefined;
|
287
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
287
288
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
288
289
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
289
290
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -366,6 +367,7 @@ declare const VDialog: {
|
|
366
367
|
} & {
|
367
368
|
onAfterEnter?: (() => any) | undefined;
|
368
369
|
onAfterLeave?: (() => any) | undefined;
|
370
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
369
371
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
370
372
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
371
373
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -387,7 +389,7 @@ declare const VDialog: {
|
|
387
389
|
}>;
|
388
390
|
$root: vue.ComponentPublicInstance | null;
|
389
391
|
$parent: vue.ComponentPublicInstance | null;
|
390
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
392
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
391
393
|
$el: any;
|
392
394
|
$options: vue.ComponentOptionsBase<{
|
393
395
|
absolute: boolean;
|
@@ -469,6 +471,7 @@ declare const VDialog: {
|
|
469
471
|
} & {
|
470
472
|
onAfterEnter?: (() => any) | undefined;
|
471
473
|
onAfterLeave?: (() => any) | undefined;
|
474
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
472
475
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
473
476
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
474
477
|
}, {
|
@@ -483,6 +486,7 @@ declare const VDialog: {
|
|
483
486
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
484
487
|
'click:outside': (e: MouseEvent) => true;
|
485
488
|
'update:modelValue': (value: boolean) => true;
|
489
|
+
keydown: (e: KeyboardEvent) => true;
|
486
490
|
afterEnter: () => true;
|
487
491
|
afterLeave: () => true;
|
488
492
|
}, string, {
|
@@ -621,6 +625,7 @@ declare const VDialog: {
|
|
621
625
|
} & {
|
622
626
|
onAfterEnter?: (() => any) | undefined;
|
623
627
|
onAfterLeave?: (() => any) | undefined;
|
628
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
624
629
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
625
630
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
626
631
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -632,7 +637,7 @@ declare const VDialog: {
|
|
632
637
|
globalTop: Readonly<vue.Ref<boolean>>;
|
633
638
|
localTop: vue.ComputedRef<boolean>;
|
634
639
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
635
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
640
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
636
641
|
_allExposed: {
|
637
642
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
638
643
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -970,6 +975,7 @@ declare const VDialog: {
|
|
970
975
|
}) => vue.VNodeChild) | undefined;
|
971
976
|
onAfterEnter?: (() => any) | undefined;
|
972
977
|
onAfterLeave?: (() => any) | undefined;
|
978
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
973
979
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
974
980
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
975
981
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -1052,6 +1058,7 @@ declare const VDialog: {
|
|
1052
1058
|
} & {
|
1053
1059
|
onAfterEnter?: (() => any) | undefined;
|
1054
1060
|
onAfterLeave?: (() => any) | undefined;
|
1061
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1055
1062
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1056
1063
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1057
1064
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -1073,7 +1080,7 @@ declare const VDialog: {
|
|
1073
1080
|
}>;
|
1074
1081
|
$root: vue.ComponentPublicInstance | null;
|
1075
1082
|
$parent: vue.ComponentPublicInstance | null;
|
1076
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1083
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1077
1084
|
$el: any;
|
1078
1085
|
$options: vue.ComponentOptionsBase<{
|
1079
1086
|
absolute: boolean;
|
@@ -1155,6 +1162,7 @@ declare const VDialog: {
|
|
1155
1162
|
} & {
|
1156
1163
|
onAfterEnter?: (() => any) | undefined;
|
1157
1164
|
onAfterLeave?: (() => any) | undefined;
|
1165
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1158
1166
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1159
1167
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1160
1168
|
}, {
|
@@ -1169,6 +1177,7 @@ declare const VDialog: {
|
|
1169
1177
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
1170
1178
|
'click:outside': (e: MouseEvent) => true;
|
1171
1179
|
'update:modelValue': (value: boolean) => true;
|
1180
|
+
keydown: (e: KeyboardEvent) => true;
|
1172
1181
|
afterEnter: () => true;
|
1173
1182
|
afterLeave: () => true;
|
1174
1183
|
}, string, {
|
@@ -1307,6 +1316,7 @@ declare const VDialog: {
|
|
1307
1316
|
} & {
|
1308
1317
|
onAfterEnter?: (() => any) | undefined;
|
1309
1318
|
onAfterLeave?: (() => any) | undefined;
|
1319
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1310
1320
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1311
1321
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1312
1322
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -1318,7 +1328,7 @@ declare const VDialog: {
|
|
1318
1328
|
globalTop: Readonly<vue.Ref<boolean>>;
|
1319
1329
|
localTop: vue.ComputedRef<boolean>;
|
1320
1330
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
1321
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
1331
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
1322
1332
|
_allExposed: {
|
1323
1333
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
1324
1334
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -1555,6 +1565,7 @@ declare const VDialog: {
|
|
1555
1565
|
}) => vue.VNodeChild) | undefined;
|
1556
1566
|
onAfterEnter?: (() => any) | undefined;
|
1557
1567
|
onAfterLeave?: (() => any) | undefined;
|
1568
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1558
1569
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1559
1570
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1560
1571
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -1637,6 +1648,7 @@ declare const VDialog: {
|
|
1637
1648
|
} & {
|
1638
1649
|
onAfterEnter?: (() => any) | undefined;
|
1639
1650
|
onAfterLeave?: (() => any) | undefined;
|
1651
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1640
1652
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1641
1653
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1642
1654
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -1658,7 +1670,7 @@ declare const VDialog: {
|
|
1658
1670
|
}>;
|
1659
1671
|
$root: vue.ComponentPublicInstance | null;
|
1660
1672
|
$parent: vue.ComponentPublicInstance | null;
|
1661
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1673
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1662
1674
|
$el: any;
|
1663
1675
|
$options: vue.ComponentOptionsBase<{
|
1664
1676
|
absolute: boolean;
|
@@ -1740,6 +1752,7 @@ declare const VDialog: {
|
|
1740
1752
|
} & {
|
1741
1753
|
onAfterEnter?: (() => any) | undefined;
|
1742
1754
|
onAfterLeave?: (() => any) | undefined;
|
1755
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1743
1756
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1744
1757
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1745
1758
|
}, {
|
@@ -1754,6 +1767,7 @@ declare const VDialog: {
|
|
1754
1767
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
1755
1768
|
'click:outside': (e: MouseEvent) => true;
|
1756
1769
|
'update:modelValue': (value: boolean) => true;
|
1770
|
+
keydown: (e: KeyboardEvent) => true;
|
1757
1771
|
afterEnter: () => true;
|
1758
1772
|
afterLeave: () => true;
|
1759
1773
|
}, string, {
|
@@ -1892,6 +1906,7 @@ declare const VDialog: {
|
|
1892
1906
|
} & {
|
1893
1907
|
onAfterEnter?: (() => any) | undefined;
|
1894
1908
|
onAfterLeave?: (() => any) | undefined;
|
1909
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1895
1910
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1896
1911
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1897
1912
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -1903,7 +1918,7 @@ declare const VDialog: {
|
|
1903
1918
|
globalTop: Readonly<vue.Ref<boolean>>;
|
1904
1919
|
localTop: vue.ComputedRef<boolean>;
|
1905
1920
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
1906
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
1921
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | "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" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
1907
1922
|
_allExposed: {
|
1908
1923
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
1909
1924
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|