@vuetify/nightly 3.7.15-master.2025-03-08 → 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 +16 -3
- package/dist/json/attributes.json +3084 -3084
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +144 -144
- package/dist/json/web-types.json +5593 -5582
- package/dist/vuetify-labs.css +4571 -4571
- 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 +3823 -3823
- 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
package/dist/vuetify-labs.d.ts
CHANGED
@@ -6578,6 +6578,7 @@ declare const VMenu: {
|
|
6578
6578
|
}) => vue.VNodeChild) | undefined;
|
6579
6579
|
onAfterEnter?: (() => any) | undefined;
|
6580
6580
|
onAfterLeave?: (() => any) | undefined;
|
6581
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
6581
6582
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6582
6583
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
6583
6584
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -6660,6 +6661,7 @@ declare const VMenu: {
|
|
6660
6661
|
} & {
|
6661
6662
|
onAfterEnter?: (() => any) | undefined;
|
6662
6663
|
onAfterLeave?: (() => any) | undefined;
|
6664
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
6663
6665
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6664
6666
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
6665
6667
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -6681,7 +6683,7 @@ declare const VMenu: {
|
|
6681
6683
|
}>;
|
6682
6684
|
$root: vue.ComponentPublicInstance | null;
|
6683
6685
|
$parent: vue.ComponentPublicInstance | null;
|
6684
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
6686
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
6685
6687
|
$el: any;
|
6686
6688
|
$options: vue.ComponentOptionsBase<{
|
6687
6689
|
absolute: boolean;
|
@@ -6763,6 +6765,7 @@ declare const VMenu: {
|
|
6763
6765
|
} & {
|
6764
6766
|
onAfterEnter?: (() => any) | undefined;
|
6765
6767
|
onAfterLeave?: (() => any) | undefined;
|
6768
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
6766
6769
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6767
6770
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
6768
6771
|
}, {
|
@@ -6777,6 +6780,7 @@ declare const VMenu: {
|
|
6777
6780
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
6778
6781
|
'click:outside': (e: MouseEvent) => true;
|
6779
6782
|
'update:modelValue': (value: boolean) => true;
|
6783
|
+
keydown: (e: KeyboardEvent) => true;
|
6780
6784
|
afterEnter: () => true;
|
6781
6785
|
afterLeave: () => true;
|
6782
6786
|
}, string, {
|
@@ -6915,6 +6919,7 @@ declare const VMenu: {
|
|
6915
6919
|
} & {
|
6916
6920
|
onAfterEnter?: (() => any) | undefined;
|
6917
6921
|
onAfterLeave?: (() => any) | undefined;
|
6922
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
6918
6923
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6919
6924
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
6920
6925
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -6926,7 +6931,7 @@ declare const VMenu: {
|
|
6926
6931
|
globalTop: Readonly<vue.Ref<boolean>>;
|
6927
6932
|
localTop: vue.ComputedRef<boolean>;
|
6928
6933
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
6929
|
-
}> & {} & 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}`> & {
|
6934
|
+
}> & {} & 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}`> & {
|
6930
6935
|
_allExposed: {
|
6931
6936
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
6932
6937
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -7259,6 +7264,7 @@ declare const VMenu: {
|
|
7259
7264
|
}) => vue.VNodeChild) | undefined;
|
7260
7265
|
onAfterEnter?: (() => any) | undefined;
|
7261
7266
|
onAfterLeave?: (() => any) | undefined;
|
7267
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
7262
7268
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7263
7269
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
7264
7270
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -7341,6 +7347,7 @@ declare const VMenu: {
|
|
7341
7347
|
} & {
|
7342
7348
|
onAfterEnter?: (() => any) | undefined;
|
7343
7349
|
onAfterLeave?: (() => any) | undefined;
|
7350
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
7344
7351
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7345
7352
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
7346
7353
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -7362,7 +7369,7 @@ declare const VMenu: {
|
|
7362
7369
|
}>;
|
7363
7370
|
$root: vue.ComponentPublicInstance | null;
|
7364
7371
|
$parent: vue.ComponentPublicInstance | null;
|
7365
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
7372
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
7366
7373
|
$el: any;
|
7367
7374
|
$options: vue.ComponentOptionsBase<{
|
7368
7375
|
absolute: boolean;
|
@@ -7444,6 +7451,7 @@ declare const VMenu: {
|
|
7444
7451
|
} & {
|
7445
7452
|
onAfterEnter?: (() => any) | undefined;
|
7446
7453
|
onAfterLeave?: (() => any) | undefined;
|
7454
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
7447
7455
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7448
7456
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
7449
7457
|
}, {
|
@@ -7458,6 +7466,7 @@ declare const VMenu: {
|
|
7458
7466
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
7459
7467
|
'click:outside': (e: MouseEvent) => true;
|
7460
7468
|
'update:modelValue': (value: boolean) => true;
|
7469
|
+
keydown: (e: KeyboardEvent) => true;
|
7461
7470
|
afterEnter: () => true;
|
7462
7471
|
afterLeave: () => true;
|
7463
7472
|
}, string, {
|
@@ -7596,6 +7605,7 @@ declare const VMenu: {
|
|
7596
7605
|
} & {
|
7597
7606
|
onAfterEnter?: (() => any) | undefined;
|
7598
7607
|
onAfterLeave?: (() => any) | undefined;
|
7608
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
7599
7609
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7600
7610
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
7601
7611
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -7607,7 +7617,7 @@ declare const VMenu: {
|
|
7607
7617
|
globalTop: Readonly<vue.Ref<boolean>>;
|
7608
7618
|
localTop: vue.ComputedRef<boolean>;
|
7609
7619
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
7610
|
-
}> & {} & 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}`> & {
|
7620
|
+
}> & {} & 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}`> & {
|
7611
7621
|
_allExposed: {
|
7612
7622
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
7613
7623
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -7845,6 +7855,7 @@ declare const VMenu: {
|
|
7845
7855
|
}) => vue.VNodeChild) | undefined;
|
7846
7856
|
onAfterEnter?: (() => any) | undefined;
|
7847
7857
|
onAfterLeave?: (() => any) | undefined;
|
7858
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
7848
7859
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7849
7860
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
7850
7861
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -7927,6 +7938,7 @@ declare const VMenu: {
|
|
7927
7938
|
} & {
|
7928
7939
|
onAfterEnter?: (() => any) | undefined;
|
7929
7940
|
onAfterLeave?: (() => any) | undefined;
|
7941
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
7930
7942
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7931
7943
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
7932
7944
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -7948,7 +7960,7 @@ declare const VMenu: {
|
|
7948
7960
|
}>;
|
7949
7961
|
$root: vue.ComponentPublicInstance | null;
|
7950
7962
|
$parent: vue.ComponentPublicInstance | null;
|
7951
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
7963
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
7952
7964
|
$el: any;
|
7953
7965
|
$options: vue.ComponentOptionsBase<{
|
7954
7966
|
absolute: boolean;
|
@@ -8030,6 +8042,7 @@ declare const VMenu: {
|
|
8030
8042
|
} & {
|
8031
8043
|
onAfterEnter?: (() => any) | undefined;
|
8032
8044
|
onAfterLeave?: (() => any) | undefined;
|
8045
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
8033
8046
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
8034
8047
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
8035
8048
|
}, {
|
@@ -8044,6 +8057,7 @@ declare const VMenu: {
|
|
8044
8057
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
8045
8058
|
'click:outside': (e: MouseEvent) => true;
|
8046
8059
|
'update:modelValue': (value: boolean) => true;
|
8060
|
+
keydown: (e: KeyboardEvent) => true;
|
8047
8061
|
afterEnter: () => true;
|
8048
8062
|
afterLeave: () => true;
|
8049
8063
|
}, string, {
|
@@ -8182,6 +8196,7 @@ declare const VMenu: {
|
|
8182
8196
|
} & {
|
8183
8197
|
onAfterEnter?: (() => any) | undefined;
|
8184
8198
|
onAfterLeave?: (() => any) | undefined;
|
8199
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
8185
8200
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
8186
8201
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
8187
8202
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -8193,7 +8208,7 @@ declare const VMenu: {
|
|
8193
8208
|
globalTop: Readonly<vue.Ref<boolean>>;
|
8194
8209
|
localTop: vue.ComputedRef<boolean>;
|
8195
8210
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
8196
|
-
}> & {} & 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}`> & {
|
8211
|
+
}> & {} & 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}`> & {
|
8197
8212
|
_allExposed: {
|
8198
8213
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
8199
8214
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -30160,6 +30175,7 @@ declare const VDialog: {
|
|
30160
30175
|
}) => vue.VNodeChild) | undefined;
|
30161
30176
|
onAfterEnter?: (() => any) | undefined;
|
30162
30177
|
onAfterLeave?: (() => any) | undefined;
|
30178
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
30163
30179
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30164
30180
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
30165
30181
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -30242,6 +30258,7 @@ declare const VDialog: {
|
|
30242
30258
|
} & {
|
30243
30259
|
onAfterEnter?: (() => any) | undefined;
|
30244
30260
|
onAfterLeave?: (() => any) | undefined;
|
30261
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
30245
30262
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30246
30263
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
30247
30264
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -30263,7 +30280,7 @@ declare const VDialog: {
|
|
30263
30280
|
}>;
|
30264
30281
|
$root: vue.ComponentPublicInstance | null;
|
30265
30282
|
$parent: vue.ComponentPublicInstance | null;
|
30266
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
30283
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
30267
30284
|
$el: any;
|
30268
30285
|
$options: vue.ComponentOptionsBase<{
|
30269
30286
|
absolute: boolean;
|
@@ -30345,6 +30362,7 @@ declare const VDialog: {
|
|
30345
30362
|
} & {
|
30346
30363
|
onAfterEnter?: (() => any) | undefined;
|
30347
30364
|
onAfterLeave?: (() => any) | undefined;
|
30365
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
30348
30366
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30349
30367
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
30350
30368
|
}, {
|
@@ -30359,6 +30377,7 @@ declare const VDialog: {
|
|
30359
30377
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
30360
30378
|
'click:outside': (e: MouseEvent) => true;
|
30361
30379
|
'update:modelValue': (value: boolean) => true;
|
30380
|
+
keydown: (e: KeyboardEvent) => true;
|
30362
30381
|
afterEnter: () => true;
|
30363
30382
|
afterLeave: () => true;
|
30364
30383
|
}, string, {
|
@@ -30497,6 +30516,7 @@ declare const VDialog: {
|
|
30497
30516
|
} & {
|
30498
30517
|
onAfterEnter?: (() => any) | undefined;
|
30499
30518
|
onAfterLeave?: (() => any) | undefined;
|
30519
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
30500
30520
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30501
30521
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
30502
30522
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -30508,7 +30528,7 @@ declare const VDialog: {
|
|
30508
30528
|
globalTop: Readonly<vue.Ref<boolean>>;
|
30509
30529
|
localTop: vue.ComputedRef<boolean>;
|
30510
30530
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
30511
|
-
}> & {} & 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}`> & {
|
30531
|
+
}> & {} & 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}`> & {
|
30512
30532
|
_allExposed: {
|
30513
30533
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
30514
30534
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -30846,6 +30866,7 @@ declare const VDialog: {
|
|
30846
30866
|
}) => vue.VNodeChild) | undefined;
|
30847
30867
|
onAfterEnter?: (() => any) | undefined;
|
30848
30868
|
onAfterLeave?: (() => any) | undefined;
|
30869
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
30849
30870
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30850
30871
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
30851
30872
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -30928,6 +30949,7 @@ declare const VDialog: {
|
|
30928
30949
|
} & {
|
30929
30950
|
onAfterEnter?: (() => any) | undefined;
|
30930
30951
|
onAfterLeave?: (() => any) | undefined;
|
30952
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
30931
30953
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30932
30954
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
30933
30955
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -30949,7 +30971,7 @@ declare const VDialog: {
|
|
30949
30971
|
}>;
|
30950
30972
|
$root: vue.ComponentPublicInstance | null;
|
30951
30973
|
$parent: vue.ComponentPublicInstance | null;
|
30952
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
30974
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
30953
30975
|
$el: any;
|
30954
30976
|
$options: vue.ComponentOptionsBase<{
|
30955
30977
|
absolute: boolean;
|
@@ -31031,6 +31053,7 @@ declare const VDialog: {
|
|
31031
31053
|
} & {
|
31032
31054
|
onAfterEnter?: (() => any) | undefined;
|
31033
31055
|
onAfterLeave?: (() => any) | undefined;
|
31056
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
31034
31057
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
31035
31058
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
31036
31059
|
}, {
|
@@ -31045,6 +31068,7 @@ declare const VDialog: {
|
|
31045
31068
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
31046
31069
|
'click:outside': (e: MouseEvent) => true;
|
31047
31070
|
'update:modelValue': (value: boolean) => true;
|
31071
|
+
keydown: (e: KeyboardEvent) => true;
|
31048
31072
|
afterEnter: () => true;
|
31049
31073
|
afterLeave: () => true;
|
31050
31074
|
}, string, {
|
@@ -31183,6 +31207,7 @@ declare const VDialog: {
|
|
31183
31207
|
} & {
|
31184
31208
|
onAfterEnter?: (() => any) | undefined;
|
31185
31209
|
onAfterLeave?: (() => any) | undefined;
|
31210
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
31186
31211
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
31187
31212
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
31188
31213
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -31194,7 +31219,7 @@ declare const VDialog: {
|
|
31194
31219
|
globalTop: Readonly<vue.Ref<boolean>>;
|
31195
31220
|
localTop: vue.ComputedRef<boolean>;
|
31196
31221
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
31197
|
-
}> & {} & 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}`> & {
|
31222
|
+
}> & {} & 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}`> & {
|
31198
31223
|
_allExposed: {
|
31199
31224
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
31200
31225
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -31431,6 +31456,7 @@ declare const VDialog: {
|
|
31431
31456
|
}) => vue.VNodeChild) | undefined;
|
31432
31457
|
onAfterEnter?: (() => any) | undefined;
|
31433
31458
|
onAfterLeave?: (() => any) | undefined;
|
31459
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
31434
31460
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
31435
31461
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
31436
31462
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -31513,6 +31539,7 @@ declare const VDialog: {
|
|
31513
31539
|
} & {
|
31514
31540
|
onAfterEnter?: (() => any) | undefined;
|
31515
31541
|
onAfterLeave?: (() => any) | undefined;
|
31542
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
31516
31543
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
31517
31544
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
31518
31545
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -31534,7 +31561,7 @@ declare const VDialog: {
|
|
31534
31561
|
}>;
|
31535
31562
|
$root: vue.ComponentPublicInstance | null;
|
31536
31563
|
$parent: vue.ComponentPublicInstance | null;
|
31537
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
31564
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
31538
31565
|
$el: any;
|
31539
31566
|
$options: vue.ComponentOptionsBase<{
|
31540
31567
|
absolute: boolean;
|
@@ -31616,6 +31643,7 @@ declare const VDialog: {
|
|
31616
31643
|
} & {
|
31617
31644
|
onAfterEnter?: (() => any) | undefined;
|
31618
31645
|
onAfterLeave?: (() => any) | undefined;
|
31646
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
31619
31647
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
31620
31648
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
31621
31649
|
}, {
|
@@ -31630,6 +31658,7 @@ declare const VDialog: {
|
|
31630
31658
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
31631
31659
|
'click:outside': (e: MouseEvent) => true;
|
31632
31660
|
'update:modelValue': (value: boolean) => true;
|
31661
|
+
keydown: (e: KeyboardEvent) => true;
|
31633
31662
|
afterEnter: () => true;
|
31634
31663
|
afterLeave: () => true;
|
31635
31664
|
}, string, {
|
@@ -31768,6 +31797,7 @@ declare const VDialog: {
|
|
31768
31797
|
} & {
|
31769
31798
|
onAfterEnter?: (() => any) | undefined;
|
31770
31799
|
onAfterLeave?: (() => any) | undefined;
|
31800
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
31771
31801
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
31772
31802
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
31773
31803
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -31779,7 +31809,7 @@ declare const VDialog: {
|
|
31779
31809
|
globalTop: Readonly<vue.Ref<boolean>>;
|
31780
31810
|
localTop: vue.ComputedRef<boolean>;
|
31781
31811
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
31782
|
-
}> & {} & 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}`> & {
|
31812
|
+
}> & {} & 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}`> & {
|
31783
31813
|
_allExposed: {
|
31784
31814
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
31785
31815
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -41028,6 +41058,7 @@ declare const VOverlay: {
|
|
41028
41058
|
} & {
|
41029
41059
|
onAfterEnter?: (() => any) | undefined;
|
41030
41060
|
onAfterLeave?: (() => any) | undefined;
|
41061
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
41031
41062
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
41032
41063
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
41033
41064
|
}, {
|
@@ -41042,6 +41073,7 @@ declare const VOverlay: {
|
|
41042
41073
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
41043
41074
|
'click:outside': (e: MouseEvent) => true;
|
41044
41075
|
'update:modelValue': (value: boolean) => true;
|
41076
|
+
keydown: (e: KeyboardEvent) => true;
|
41045
41077
|
afterEnter: () => true;
|
41046
41078
|
afterLeave: () => true;
|
41047
41079
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -41124,6 +41156,7 @@ declare const VOverlay: {
|
|
41124
41156
|
} & {
|
41125
41157
|
onAfterEnter?: (() => any) | undefined;
|
41126
41158
|
onAfterLeave?: (() => any) | undefined;
|
41159
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
41127
41160
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
41128
41161
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
41129
41162
|
}, {
|
@@ -41249,6 +41282,7 @@ declare const VOverlay: {
|
|
41249
41282
|
} & {
|
41250
41283
|
onAfterEnter?: (() => any) | undefined;
|
41251
41284
|
onAfterLeave?: (() => any) | undefined;
|
41285
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
41252
41286
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
41253
41287
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
41254
41288
|
}, {
|
@@ -41371,6 +41405,7 @@ declare const VOverlay: {
|
|
41371
41405
|
} & {
|
41372
41406
|
onAfterEnter?: (() => any) | undefined;
|
41373
41407
|
onAfterLeave?: (() => any) | undefined;
|
41408
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
41374
41409
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
41375
41410
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
41376
41411
|
}, {
|
@@ -41385,6 +41420,7 @@ declare const VOverlay: {
|
|
41385
41420
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
41386
41421
|
'click:outside': (e: MouseEvent) => true;
|
41387
41422
|
'update:modelValue': (value: boolean) => true;
|
41423
|
+
keydown: (e: KeyboardEvent) => true;
|
41388
41424
|
afterEnter: () => true;
|
41389
41425
|
afterLeave: () => true;
|
41390
41426
|
}, string, {
|
@@ -49636,6 +49672,7 @@ declare const VSnackbar: {
|
|
49636
49672
|
}) => vue.VNodeChild) | undefined;
|
49637
49673
|
onAfterEnter?: (() => any) | undefined;
|
49638
49674
|
onAfterLeave?: (() => any) | undefined;
|
49675
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
49639
49676
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49640
49677
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
49641
49678
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -49718,6 +49755,7 @@ declare const VSnackbar: {
|
|
49718
49755
|
} & {
|
49719
49756
|
onAfterEnter?: (() => any) | undefined;
|
49720
49757
|
onAfterLeave?: (() => any) | undefined;
|
49758
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
49721
49759
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49722
49760
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
49723
49761
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -49739,7 +49777,7 @@ declare const VSnackbar: {
|
|
49739
49777
|
}>;
|
49740
49778
|
$root: vue.ComponentPublicInstance | null;
|
49741
49779
|
$parent: vue.ComponentPublicInstance | null;
|
49742
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
49780
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
49743
49781
|
$el: any;
|
49744
49782
|
$options: vue.ComponentOptionsBase<{
|
49745
49783
|
absolute: boolean;
|
@@ -49821,6 +49859,7 @@ declare const VSnackbar: {
|
|
49821
49859
|
} & {
|
49822
49860
|
onAfterEnter?: (() => any) | undefined;
|
49823
49861
|
onAfterLeave?: (() => any) | undefined;
|
49862
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
49824
49863
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49825
49864
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
49826
49865
|
}, {
|
@@ -49835,6 +49874,7 @@ declare const VSnackbar: {
|
|
49835
49874
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
49836
49875
|
'click:outside': (e: MouseEvent) => true;
|
49837
49876
|
'update:modelValue': (value: boolean) => true;
|
49877
|
+
keydown: (e: KeyboardEvent) => true;
|
49838
49878
|
afterEnter: () => true;
|
49839
49879
|
afterLeave: () => true;
|
49840
49880
|
}, string, {
|
@@ -49973,6 +50013,7 @@ declare const VSnackbar: {
|
|
49973
50013
|
} & {
|
49974
50014
|
onAfterEnter?: (() => any) | undefined;
|
49975
50015
|
onAfterLeave?: (() => any) | undefined;
|
50016
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
49976
50017
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49977
50018
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
49978
50019
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -49984,7 +50025,7 @@ declare const VSnackbar: {
|
|
49984
50025
|
globalTop: Readonly<Ref<boolean>>;
|
49985
50026
|
localTop: vue.ComputedRef<boolean>;
|
49986
50027
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
49987
|
-
}> & {} & 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}`> & {
|
50028
|
+
}> & {} & 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}`> & {
|
49988
50029
|
_allExposed: {
|
49989
50030
|
activatorEl: Ref<HTMLElement | undefined>;
|
49990
50031
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -50318,6 +50359,7 @@ declare const VSnackbar: {
|
|
50318
50359
|
}) => vue.VNodeChild) | undefined;
|
50319
50360
|
onAfterEnter?: (() => any) | undefined;
|
50320
50361
|
onAfterLeave?: (() => any) | undefined;
|
50362
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
50321
50363
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50322
50364
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
50323
50365
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -50400,6 +50442,7 @@ declare const VSnackbar: {
|
|
50400
50442
|
} & {
|
50401
50443
|
onAfterEnter?: (() => any) | undefined;
|
50402
50444
|
onAfterLeave?: (() => any) | undefined;
|
50445
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
50403
50446
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50404
50447
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
50405
50448
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -50421,7 +50464,7 @@ declare const VSnackbar: {
|
|
50421
50464
|
}>;
|
50422
50465
|
$root: vue.ComponentPublicInstance | null;
|
50423
50466
|
$parent: vue.ComponentPublicInstance | null;
|
50424
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
50467
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
50425
50468
|
$el: any;
|
50426
50469
|
$options: vue.ComponentOptionsBase<{
|
50427
50470
|
absolute: boolean;
|
@@ -50503,6 +50546,7 @@ declare const VSnackbar: {
|
|
50503
50546
|
} & {
|
50504
50547
|
onAfterEnter?: (() => any) | undefined;
|
50505
50548
|
onAfterLeave?: (() => any) | undefined;
|
50549
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
50506
50550
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50507
50551
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
50508
50552
|
}, {
|
@@ -50517,6 +50561,7 @@ declare const VSnackbar: {
|
|
50517
50561
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
50518
50562
|
'click:outside': (e: MouseEvent) => true;
|
50519
50563
|
'update:modelValue': (value: boolean) => true;
|
50564
|
+
keydown: (e: KeyboardEvent) => true;
|
50520
50565
|
afterEnter: () => true;
|
50521
50566
|
afterLeave: () => true;
|
50522
50567
|
}, string, {
|
@@ -50655,6 +50700,7 @@ declare const VSnackbar: {
|
|
50655
50700
|
} & {
|
50656
50701
|
onAfterEnter?: (() => any) | undefined;
|
50657
50702
|
onAfterLeave?: (() => any) | undefined;
|
50703
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
50658
50704
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50659
50705
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
50660
50706
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -50666,7 +50712,7 @@ declare const VSnackbar: {
|
|
50666
50712
|
globalTop: Readonly<Ref<boolean>>;
|
50667
50713
|
localTop: vue.ComputedRef<boolean>;
|
50668
50714
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
50669
|
-
}> & {} & 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}`> & {
|
50715
|
+
}> & {} & 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}`> & {
|
50670
50716
|
_allExposed: {
|
50671
50717
|
activatorEl: Ref<HTMLElement | undefined>;
|
50672
50718
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -50900,6 +50946,7 @@ declare const VSnackbar: {
|
|
50900
50946
|
}) => vue.VNodeChild) | undefined;
|
50901
50947
|
onAfterEnter?: (() => any) | undefined;
|
50902
50948
|
onAfterLeave?: (() => any) | undefined;
|
50949
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
50903
50950
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50904
50951
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
50905
50952
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -50982,6 +51029,7 @@ declare const VSnackbar: {
|
|
50982
51029
|
} & {
|
50983
51030
|
onAfterEnter?: (() => any) | undefined;
|
50984
51031
|
onAfterLeave?: (() => any) | undefined;
|
51032
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
50985
51033
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50986
51034
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
50987
51035
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -51003,7 +51051,7 @@ declare const VSnackbar: {
|
|
51003
51051
|
}>;
|
51004
51052
|
$root: vue.ComponentPublicInstance | null;
|
51005
51053
|
$parent: vue.ComponentPublicInstance | null;
|
51006
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
51054
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
51007
51055
|
$el: any;
|
51008
51056
|
$options: vue.ComponentOptionsBase<{
|
51009
51057
|
absolute: boolean;
|
@@ -51085,6 +51133,7 @@ declare const VSnackbar: {
|
|
51085
51133
|
} & {
|
51086
51134
|
onAfterEnter?: (() => any) | undefined;
|
51087
51135
|
onAfterLeave?: (() => any) | undefined;
|
51136
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
51088
51137
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
51089
51138
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
51090
51139
|
}, {
|
@@ -51099,6 +51148,7 @@ declare const VSnackbar: {
|
|
51099
51148
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
51100
51149
|
'click:outside': (e: MouseEvent) => true;
|
51101
51150
|
'update:modelValue': (value: boolean) => true;
|
51151
|
+
keydown: (e: KeyboardEvent) => true;
|
51102
51152
|
afterEnter: () => true;
|
51103
51153
|
afterLeave: () => true;
|
51104
51154
|
}, string, {
|
@@ -51237,6 +51287,7 @@ declare const VSnackbar: {
|
|
51237
51287
|
} & {
|
51238
51288
|
onAfterEnter?: (() => any) | undefined;
|
51239
51289
|
onAfterLeave?: (() => any) | undefined;
|
51290
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
51240
51291
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
51241
51292
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
51242
51293
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -51248,7 +51299,7 @@ declare const VSnackbar: {
|
|
51248
51299
|
globalTop: Readonly<Ref<boolean>>;
|
51249
51300
|
localTop: vue.ComputedRef<boolean>;
|
51250
51301
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
51251
|
-
}> & {} & 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}`> & {
|
51302
|
+
}> & {} & 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}`> & {
|
51252
51303
|
_allExposed: {
|
51253
51304
|
activatorEl: Ref<HTMLElement | undefined>;
|
51254
51305
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -62504,6 +62555,7 @@ declare const VTooltip: {
|
|
62504
62555
|
}) => vue.VNodeChild) | undefined;
|
62505
62556
|
onAfterEnter?: (() => any) | undefined;
|
62506
62557
|
onAfterLeave?: (() => any) | undefined;
|
62558
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
62507
62559
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
62508
62560
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
62509
62561
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -62586,6 +62638,7 @@ declare const VTooltip: {
|
|
62586
62638
|
} & {
|
62587
62639
|
onAfterEnter?: (() => any) | undefined;
|
62588
62640
|
onAfterLeave?: (() => any) | undefined;
|
62641
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
62589
62642
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
62590
62643
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
62591
62644
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -62607,7 +62660,7 @@ declare const VTooltip: {
|
|
62607
62660
|
}>;
|
62608
62661
|
$root: vue.ComponentPublicInstance | null;
|
62609
62662
|
$parent: vue.ComponentPublicInstance | null;
|
62610
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
62663
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
62611
62664
|
$el: any;
|
62612
62665
|
$options: vue.ComponentOptionsBase<{
|
62613
62666
|
absolute: boolean;
|
@@ -62689,6 +62742,7 @@ declare const VTooltip: {
|
|
62689
62742
|
} & {
|
62690
62743
|
onAfterEnter?: (() => any) | undefined;
|
62691
62744
|
onAfterLeave?: (() => any) | undefined;
|
62745
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
62692
62746
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
62693
62747
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
62694
62748
|
}, {
|
@@ -62703,6 +62757,7 @@ declare const VTooltip: {
|
|
62703
62757
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
62704
62758
|
'click:outside': (e: MouseEvent) => true;
|
62705
62759
|
'update:modelValue': (value: boolean) => true;
|
62760
|
+
keydown: (e: KeyboardEvent) => true;
|
62706
62761
|
afterEnter: () => true;
|
62707
62762
|
afterLeave: () => true;
|
62708
62763
|
}, string, {
|
@@ -62841,6 +62896,7 @@ declare const VTooltip: {
|
|
62841
62896
|
} & {
|
62842
62897
|
onAfterEnter?: (() => any) | undefined;
|
62843
62898
|
onAfterLeave?: (() => any) | undefined;
|
62899
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
62844
62900
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
62845
62901
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
62846
62902
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -62852,7 +62908,7 @@ declare const VTooltip: {
|
|
62852
62908
|
globalTop: Readonly<vue.Ref<boolean>>;
|
62853
62909
|
localTop: vue.ComputedRef<boolean>;
|
62854
62910
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
62855
|
-
}> & {} & 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}`> & {
|
62911
|
+
}> & {} & 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}`> & {
|
62856
62912
|
_allExposed: {
|
62857
62913
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
62858
62914
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -63169,6 +63225,7 @@ declare const VTooltip: {
|
|
63169
63225
|
}) => vue.VNodeChild) | undefined;
|
63170
63226
|
onAfterEnter?: (() => any) | undefined;
|
63171
63227
|
onAfterLeave?: (() => any) | undefined;
|
63228
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
63172
63229
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
63173
63230
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
63174
63231
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -63251,6 +63308,7 @@ declare const VTooltip: {
|
|
63251
63308
|
} & {
|
63252
63309
|
onAfterEnter?: (() => any) | undefined;
|
63253
63310
|
onAfterLeave?: (() => any) | undefined;
|
63311
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
63254
63312
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
63255
63313
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
63256
63314
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -63272,7 +63330,7 @@ declare const VTooltip: {
|
|
63272
63330
|
}>;
|
63273
63331
|
$root: vue.ComponentPublicInstance | null;
|
63274
63332
|
$parent: vue.ComponentPublicInstance | null;
|
63275
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
63333
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
63276
63334
|
$el: any;
|
63277
63335
|
$options: vue.ComponentOptionsBase<{
|
63278
63336
|
absolute: boolean;
|
@@ -63354,6 +63412,7 @@ declare const VTooltip: {
|
|
63354
63412
|
} & {
|
63355
63413
|
onAfterEnter?: (() => any) | undefined;
|
63356
63414
|
onAfterLeave?: (() => any) | undefined;
|
63415
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
63357
63416
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
63358
63417
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
63359
63418
|
}, {
|
@@ -63368,6 +63427,7 @@ declare const VTooltip: {
|
|
63368
63427
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
63369
63428
|
'click:outside': (e: MouseEvent) => true;
|
63370
63429
|
'update:modelValue': (value: boolean) => true;
|
63430
|
+
keydown: (e: KeyboardEvent) => true;
|
63371
63431
|
afterEnter: () => true;
|
63372
63432
|
afterLeave: () => true;
|
63373
63433
|
}, string, {
|
@@ -63506,6 +63566,7 @@ declare const VTooltip: {
|
|
63506
63566
|
} & {
|
63507
63567
|
onAfterEnter?: (() => any) | undefined;
|
63508
63568
|
onAfterLeave?: (() => any) | undefined;
|
63569
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
63509
63570
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
63510
63571
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
63511
63572
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -63517,7 +63578,7 @@ declare const VTooltip: {
|
|
63517
63578
|
globalTop: Readonly<vue.Ref<boolean>>;
|
63518
63579
|
localTop: vue.ComputedRef<boolean>;
|
63519
63580
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
63520
|
-
}> & {} & 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}`> & {
|
63581
|
+
}> & {} & 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}`> & {
|
63521
63582
|
_allExposed: {
|
63522
63583
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
63523
63584
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -63742,6 +63803,7 @@ declare const VTooltip: {
|
|
63742
63803
|
}) => vue.VNodeChild) | undefined;
|
63743
63804
|
onAfterEnter?: (() => any) | undefined;
|
63744
63805
|
onAfterLeave?: (() => any) | undefined;
|
63806
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
63745
63807
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
63746
63808
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
63747
63809
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -63824,6 +63886,7 @@ declare const VTooltip: {
|
|
63824
63886
|
} & {
|
63825
63887
|
onAfterEnter?: (() => any) | undefined;
|
63826
63888
|
onAfterLeave?: (() => any) | undefined;
|
63889
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
63827
63890
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
63828
63891
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
63829
63892
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -63845,7 +63908,7 @@ declare const VTooltip: {
|
|
63845
63908
|
}>;
|
63846
63909
|
$root: vue.ComponentPublicInstance | null;
|
63847
63910
|
$parent: vue.ComponentPublicInstance | null;
|
63848
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
63911
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
63849
63912
|
$el: any;
|
63850
63913
|
$options: vue.ComponentOptionsBase<{
|
63851
63914
|
absolute: boolean;
|
@@ -63927,6 +63990,7 @@ declare const VTooltip: {
|
|
63927
63990
|
} & {
|
63928
63991
|
onAfterEnter?: (() => any) | undefined;
|
63929
63992
|
onAfterLeave?: (() => any) | undefined;
|
63993
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
63930
63994
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
63931
63995
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
63932
63996
|
}, {
|
@@ -63941,6 +64005,7 @@ declare const VTooltip: {
|
|
63941
64005
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
63942
64006
|
'click:outside': (e: MouseEvent) => true;
|
63943
64007
|
'update:modelValue': (value: boolean) => true;
|
64008
|
+
keydown: (e: KeyboardEvent) => true;
|
63944
64009
|
afterEnter: () => true;
|
63945
64010
|
afterLeave: () => true;
|
63946
64011
|
}, string, {
|
@@ -64079,6 +64144,7 @@ declare const VTooltip: {
|
|
64079
64144
|
} & {
|
64080
64145
|
onAfterEnter?: (() => any) | undefined;
|
64081
64146
|
onAfterLeave?: (() => any) | undefined;
|
64147
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
64082
64148
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
64083
64149
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
64084
64150
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -64090,7 +64156,7 @@ declare const VTooltip: {
|
|
64090
64156
|
globalTop: Readonly<vue.Ref<boolean>>;
|
64091
64157
|
localTop: vue.ComputedRef<boolean>;
|
64092
64158
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
64093
|
-
}> & {} & 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}`> & {
|
64159
|
+
}> & {} & 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}`> & {
|
64094
64160
|
_allExposed: {
|
64095
64161
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
64096
64162
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|