@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
@@ -6238,6 +6238,7 @@ declare const VMenu: {
|
|
6238
6238
|
}) => vue.VNodeChild) | undefined;
|
6239
6239
|
onAfterEnter?: (() => any) | undefined;
|
6240
6240
|
onAfterLeave?: (() => any) | undefined;
|
6241
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
6241
6242
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6242
6243
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
6243
6244
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -6320,6 +6321,7 @@ declare const VMenu: {
|
|
6320
6321
|
} & {
|
6321
6322
|
onAfterEnter?: (() => any) | undefined;
|
6322
6323
|
onAfterLeave?: (() => any) | undefined;
|
6324
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
6323
6325
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6324
6326
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
6325
6327
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -6341,7 +6343,7 @@ declare const VMenu: {
|
|
6341
6343
|
}>;
|
6342
6344
|
$root: vue.ComponentPublicInstance | null;
|
6343
6345
|
$parent: vue.ComponentPublicInstance | null;
|
6344
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
6346
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
6345
6347
|
$el: any;
|
6346
6348
|
$options: vue.ComponentOptionsBase<{
|
6347
6349
|
absolute: boolean;
|
@@ -6423,6 +6425,7 @@ declare const VMenu: {
|
|
6423
6425
|
} & {
|
6424
6426
|
onAfterEnter?: (() => any) | undefined;
|
6425
6427
|
onAfterLeave?: (() => any) | undefined;
|
6428
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
6426
6429
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6427
6430
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
6428
6431
|
}, {
|
@@ -6437,6 +6440,7 @@ declare const VMenu: {
|
|
6437
6440
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
6438
6441
|
'click:outside': (e: MouseEvent) => true;
|
6439
6442
|
'update:modelValue': (value: boolean) => true;
|
6443
|
+
keydown: (e: KeyboardEvent) => true;
|
6440
6444
|
afterEnter: () => true;
|
6441
6445
|
afterLeave: () => true;
|
6442
6446
|
}, string, {
|
@@ -6575,6 +6579,7 @@ declare const VMenu: {
|
|
6575
6579
|
} & {
|
6576
6580
|
onAfterEnter?: (() => any) | undefined;
|
6577
6581
|
onAfterLeave?: (() => any) | undefined;
|
6582
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
6578
6583
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6579
6584
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
6580
6585
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -6586,7 +6591,7 @@ declare const VMenu: {
|
|
6586
6591
|
globalTop: Readonly<vue.Ref<boolean>>;
|
6587
6592
|
localTop: vue.ComputedRef<boolean>;
|
6588
6593
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
6589
|
-
}> & {} & 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}`> & {
|
6594
|
+
}> & {} & 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}`> & {
|
6590
6595
|
_allExposed: {
|
6591
6596
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
6592
6597
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -6919,6 +6924,7 @@ declare const VMenu: {
|
|
6919
6924
|
}) => vue.VNodeChild) | undefined;
|
6920
6925
|
onAfterEnter?: (() => any) | undefined;
|
6921
6926
|
onAfterLeave?: (() => any) | undefined;
|
6927
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
6922
6928
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6923
6929
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
6924
6930
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -7001,6 +7007,7 @@ declare const VMenu: {
|
|
7001
7007
|
} & {
|
7002
7008
|
onAfterEnter?: (() => any) | undefined;
|
7003
7009
|
onAfterLeave?: (() => any) | undefined;
|
7010
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
7004
7011
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7005
7012
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
7006
7013
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -7022,7 +7029,7 @@ declare const VMenu: {
|
|
7022
7029
|
}>;
|
7023
7030
|
$root: vue.ComponentPublicInstance | null;
|
7024
7031
|
$parent: vue.ComponentPublicInstance | null;
|
7025
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
7032
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
7026
7033
|
$el: any;
|
7027
7034
|
$options: vue.ComponentOptionsBase<{
|
7028
7035
|
absolute: boolean;
|
@@ -7104,6 +7111,7 @@ declare const VMenu: {
|
|
7104
7111
|
} & {
|
7105
7112
|
onAfterEnter?: (() => any) | undefined;
|
7106
7113
|
onAfterLeave?: (() => any) | undefined;
|
7114
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
7107
7115
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7108
7116
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
7109
7117
|
}, {
|
@@ -7118,6 +7126,7 @@ declare const VMenu: {
|
|
7118
7126
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
7119
7127
|
'click:outside': (e: MouseEvent) => true;
|
7120
7128
|
'update:modelValue': (value: boolean) => true;
|
7129
|
+
keydown: (e: KeyboardEvent) => true;
|
7121
7130
|
afterEnter: () => true;
|
7122
7131
|
afterLeave: () => true;
|
7123
7132
|
}, string, {
|
@@ -7256,6 +7265,7 @@ declare const VMenu: {
|
|
7256
7265
|
} & {
|
7257
7266
|
onAfterEnter?: (() => any) | undefined;
|
7258
7267
|
onAfterLeave?: (() => any) | undefined;
|
7268
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
7259
7269
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7260
7270
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
7261
7271
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -7267,7 +7277,7 @@ declare const VMenu: {
|
|
7267
7277
|
globalTop: Readonly<vue.Ref<boolean>>;
|
7268
7278
|
localTop: vue.ComputedRef<boolean>;
|
7269
7279
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
7270
|
-
}> & {} & 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}`> & {
|
7280
|
+
}> & {} & 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}`> & {
|
7271
7281
|
_allExposed: {
|
7272
7282
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
7273
7283
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -7505,6 +7515,7 @@ declare const VMenu: {
|
|
7505
7515
|
}) => vue.VNodeChild) | undefined;
|
7506
7516
|
onAfterEnter?: (() => any) | undefined;
|
7507
7517
|
onAfterLeave?: (() => any) | undefined;
|
7518
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
7508
7519
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7509
7520
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
7510
7521
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -7587,6 +7598,7 @@ declare const VMenu: {
|
|
7587
7598
|
} & {
|
7588
7599
|
onAfterEnter?: (() => any) | undefined;
|
7589
7600
|
onAfterLeave?: (() => any) | undefined;
|
7601
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
7590
7602
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7591
7603
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
7592
7604
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -7608,7 +7620,7 @@ declare const VMenu: {
|
|
7608
7620
|
}>;
|
7609
7621
|
$root: vue.ComponentPublicInstance | null;
|
7610
7622
|
$parent: vue.ComponentPublicInstance | null;
|
7611
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
7623
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
7612
7624
|
$el: any;
|
7613
7625
|
$options: vue.ComponentOptionsBase<{
|
7614
7626
|
absolute: boolean;
|
@@ -7690,6 +7702,7 @@ declare const VMenu: {
|
|
7690
7702
|
} & {
|
7691
7703
|
onAfterEnter?: (() => any) | undefined;
|
7692
7704
|
onAfterLeave?: (() => any) | undefined;
|
7705
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
7693
7706
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7694
7707
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
7695
7708
|
}, {
|
@@ -7704,6 +7717,7 @@ declare const VMenu: {
|
|
7704
7717
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
7705
7718
|
'click:outside': (e: MouseEvent) => true;
|
7706
7719
|
'update:modelValue': (value: boolean) => true;
|
7720
|
+
keydown: (e: KeyboardEvent) => true;
|
7707
7721
|
afterEnter: () => true;
|
7708
7722
|
afterLeave: () => true;
|
7709
7723
|
}, string, {
|
@@ -7842,6 +7856,7 @@ declare const VMenu: {
|
|
7842
7856
|
} & {
|
7843
7857
|
onAfterEnter?: (() => any) | undefined;
|
7844
7858
|
onAfterLeave?: (() => any) | undefined;
|
7859
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
7845
7860
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7846
7861
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
7847
7862
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -7853,7 +7868,7 @@ declare const VMenu: {
|
|
7853
7868
|
globalTop: Readonly<vue.Ref<boolean>>;
|
7854
7869
|
localTop: vue.ComputedRef<boolean>;
|
7855
7870
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
7856
|
-
}> & {} & 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}`> & {
|
7871
|
+
}> & {} & 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}`> & {
|
7857
7872
|
_allExposed: {
|
7858
7873
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
7859
7874
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -29553,6 +29568,7 @@ declare const VDialog: {
|
|
29553
29568
|
}) => vue.VNodeChild) | undefined;
|
29554
29569
|
onAfterEnter?: (() => any) | undefined;
|
29555
29570
|
onAfterLeave?: (() => any) | undefined;
|
29571
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
29556
29572
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
29557
29573
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
29558
29574
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -29635,6 +29651,7 @@ declare const VDialog: {
|
|
29635
29651
|
} & {
|
29636
29652
|
onAfterEnter?: (() => any) | undefined;
|
29637
29653
|
onAfterLeave?: (() => any) | undefined;
|
29654
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
29638
29655
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
29639
29656
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
29640
29657
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -29656,7 +29673,7 @@ declare const VDialog: {
|
|
29656
29673
|
}>;
|
29657
29674
|
$root: vue.ComponentPublicInstance | null;
|
29658
29675
|
$parent: vue.ComponentPublicInstance | null;
|
29659
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
29676
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
29660
29677
|
$el: any;
|
29661
29678
|
$options: vue.ComponentOptionsBase<{
|
29662
29679
|
absolute: boolean;
|
@@ -29738,6 +29755,7 @@ declare const VDialog: {
|
|
29738
29755
|
} & {
|
29739
29756
|
onAfterEnter?: (() => any) | undefined;
|
29740
29757
|
onAfterLeave?: (() => any) | undefined;
|
29758
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
29741
29759
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
29742
29760
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
29743
29761
|
}, {
|
@@ -29752,6 +29770,7 @@ declare const VDialog: {
|
|
29752
29770
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
29753
29771
|
'click:outside': (e: MouseEvent) => true;
|
29754
29772
|
'update:modelValue': (value: boolean) => true;
|
29773
|
+
keydown: (e: KeyboardEvent) => true;
|
29755
29774
|
afterEnter: () => true;
|
29756
29775
|
afterLeave: () => true;
|
29757
29776
|
}, string, {
|
@@ -29890,6 +29909,7 @@ declare const VDialog: {
|
|
29890
29909
|
} & {
|
29891
29910
|
onAfterEnter?: (() => any) | undefined;
|
29892
29911
|
onAfterLeave?: (() => any) | undefined;
|
29912
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
29893
29913
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
29894
29914
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
29895
29915
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -29901,7 +29921,7 @@ declare const VDialog: {
|
|
29901
29921
|
globalTop: Readonly<vue.Ref<boolean>>;
|
29902
29922
|
localTop: vue.ComputedRef<boolean>;
|
29903
29923
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
29904
|
-
}> & {} & 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}`> & {
|
29924
|
+
}> & {} & 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}`> & {
|
29905
29925
|
_allExposed: {
|
29906
29926
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
29907
29927
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -30239,6 +30259,7 @@ declare const VDialog: {
|
|
30239
30259
|
}) => vue.VNodeChild) | undefined;
|
30240
30260
|
onAfterEnter?: (() => any) | undefined;
|
30241
30261
|
onAfterLeave?: (() => any) | undefined;
|
30262
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
30242
30263
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30243
30264
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
30244
30265
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -30321,6 +30342,7 @@ declare const VDialog: {
|
|
30321
30342
|
} & {
|
30322
30343
|
onAfterEnter?: (() => any) | undefined;
|
30323
30344
|
onAfterLeave?: (() => any) | undefined;
|
30345
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
30324
30346
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30325
30347
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
30326
30348
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -30342,7 +30364,7 @@ declare const VDialog: {
|
|
30342
30364
|
}>;
|
30343
30365
|
$root: vue.ComponentPublicInstance | null;
|
30344
30366
|
$parent: vue.ComponentPublicInstance | null;
|
30345
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
30367
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
30346
30368
|
$el: any;
|
30347
30369
|
$options: vue.ComponentOptionsBase<{
|
30348
30370
|
absolute: boolean;
|
@@ -30424,6 +30446,7 @@ declare const VDialog: {
|
|
30424
30446
|
} & {
|
30425
30447
|
onAfterEnter?: (() => any) | undefined;
|
30426
30448
|
onAfterLeave?: (() => any) | undefined;
|
30449
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
30427
30450
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30428
30451
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
30429
30452
|
}, {
|
@@ -30438,6 +30461,7 @@ declare const VDialog: {
|
|
30438
30461
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
30439
30462
|
'click:outside': (e: MouseEvent) => true;
|
30440
30463
|
'update:modelValue': (value: boolean) => true;
|
30464
|
+
keydown: (e: KeyboardEvent) => true;
|
30441
30465
|
afterEnter: () => true;
|
30442
30466
|
afterLeave: () => true;
|
30443
30467
|
}, string, {
|
@@ -30576,6 +30600,7 @@ declare const VDialog: {
|
|
30576
30600
|
} & {
|
30577
30601
|
onAfterEnter?: (() => any) | undefined;
|
30578
30602
|
onAfterLeave?: (() => any) | undefined;
|
30603
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
30579
30604
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30580
30605
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
30581
30606
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -30587,7 +30612,7 @@ declare const VDialog: {
|
|
30587
30612
|
globalTop: Readonly<vue.Ref<boolean>>;
|
30588
30613
|
localTop: vue.ComputedRef<boolean>;
|
30589
30614
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
30590
|
-
}> & {} & 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}`> & {
|
30615
|
+
}> & {} & 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}`> & {
|
30591
30616
|
_allExposed: {
|
30592
30617
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
30593
30618
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -30824,6 +30849,7 @@ declare const VDialog: {
|
|
30824
30849
|
}) => vue.VNodeChild) | undefined;
|
30825
30850
|
onAfterEnter?: (() => any) | undefined;
|
30826
30851
|
onAfterLeave?: (() => any) | undefined;
|
30852
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
30827
30853
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30828
30854
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
30829
30855
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -30906,6 +30932,7 @@ declare const VDialog: {
|
|
30906
30932
|
} & {
|
30907
30933
|
onAfterEnter?: (() => any) | undefined;
|
30908
30934
|
onAfterLeave?: (() => any) | undefined;
|
30935
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
30909
30936
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30910
30937
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
30911
30938
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -30927,7 +30954,7 @@ declare const VDialog: {
|
|
30927
30954
|
}>;
|
30928
30955
|
$root: vue.ComponentPublicInstance | null;
|
30929
30956
|
$parent: vue.ComponentPublicInstance | null;
|
30930
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
30957
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
30931
30958
|
$el: any;
|
30932
30959
|
$options: vue.ComponentOptionsBase<{
|
30933
30960
|
absolute: boolean;
|
@@ -31009,6 +31036,7 @@ declare const VDialog: {
|
|
31009
31036
|
} & {
|
31010
31037
|
onAfterEnter?: (() => any) | undefined;
|
31011
31038
|
onAfterLeave?: (() => any) | undefined;
|
31039
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
31012
31040
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
31013
31041
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
31014
31042
|
}, {
|
@@ -31023,6 +31051,7 @@ declare const VDialog: {
|
|
31023
31051
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
31024
31052
|
'click:outside': (e: MouseEvent) => true;
|
31025
31053
|
'update:modelValue': (value: boolean) => true;
|
31054
|
+
keydown: (e: KeyboardEvent) => true;
|
31026
31055
|
afterEnter: () => true;
|
31027
31056
|
afterLeave: () => true;
|
31028
31057
|
}, string, {
|
@@ -31161,6 +31190,7 @@ declare const VDialog: {
|
|
31161
31190
|
} & {
|
31162
31191
|
onAfterEnter?: (() => any) | undefined;
|
31163
31192
|
onAfterLeave?: (() => any) | undefined;
|
31193
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
31164
31194
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
31165
31195
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
31166
31196
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -31172,7 +31202,7 @@ declare const VDialog: {
|
|
31172
31202
|
globalTop: Readonly<vue.Ref<boolean>>;
|
31173
31203
|
localTop: vue.ComputedRef<boolean>;
|
31174
31204
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
31175
|
-
}> & {} & 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}`> & {
|
31205
|
+
}> & {} & 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}`> & {
|
31176
31206
|
_allExposed: {
|
31177
31207
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
31178
31208
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -40421,6 +40451,7 @@ declare const VOverlay: {
|
|
40421
40451
|
} & {
|
40422
40452
|
onAfterEnter?: (() => any) | undefined;
|
40423
40453
|
onAfterLeave?: (() => any) | undefined;
|
40454
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
40424
40455
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
40425
40456
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
40426
40457
|
}, {
|
@@ -40435,6 +40466,7 @@ declare const VOverlay: {
|
|
40435
40466
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
40436
40467
|
'click:outside': (e: MouseEvent) => true;
|
40437
40468
|
'update:modelValue': (value: boolean) => true;
|
40469
|
+
keydown: (e: KeyboardEvent) => true;
|
40438
40470
|
afterEnter: () => true;
|
40439
40471
|
afterLeave: () => true;
|
40440
40472
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -40517,6 +40549,7 @@ declare const VOverlay: {
|
|
40517
40549
|
} & {
|
40518
40550
|
onAfterEnter?: (() => any) | undefined;
|
40519
40551
|
onAfterLeave?: (() => any) | undefined;
|
40552
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
40520
40553
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
40521
40554
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
40522
40555
|
}, {
|
@@ -40642,6 +40675,7 @@ declare const VOverlay: {
|
|
40642
40675
|
} & {
|
40643
40676
|
onAfterEnter?: (() => any) | undefined;
|
40644
40677
|
onAfterLeave?: (() => any) | undefined;
|
40678
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
40645
40679
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
40646
40680
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
40647
40681
|
}, {
|
@@ -40764,6 +40798,7 @@ declare const VOverlay: {
|
|
40764
40798
|
} & {
|
40765
40799
|
onAfterEnter?: (() => any) | undefined;
|
40766
40800
|
onAfterLeave?: (() => any) | undefined;
|
40801
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
40767
40802
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
40768
40803
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
40769
40804
|
}, {
|
@@ -40778,6 +40813,7 @@ declare const VOverlay: {
|
|
40778
40813
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
40779
40814
|
'click:outside': (e: MouseEvent) => true;
|
40780
40815
|
'update:modelValue': (value: boolean) => true;
|
40816
|
+
keydown: (e: KeyboardEvent) => true;
|
40781
40817
|
afterEnter: () => true;
|
40782
40818
|
afterLeave: () => true;
|
40783
40819
|
}, string, {
|
@@ -49029,6 +49065,7 @@ declare const VSnackbar: {
|
|
49029
49065
|
}) => vue.VNodeChild) | undefined;
|
49030
49066
|
onAfterEnter?: (() => any) | undefined;
|
49031
49067
|
onAfterLeave?: (() => any) | undefined;
|
49068
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
49032
49069
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49033
49070
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
49034
49071
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -49111,6 +49148,7 @@ declare const VSnackbar: {
|
|
49111
49148
|
} & {
|
49112
49149
|
onAfterEnter?: (() => any) | undefined;
|
49113
49150
|
onAfterLeave?: (() => any) | undefined;
|
49151
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
49114
49152
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49115
49153
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
49116
49154
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -49132,7 +49170,7 @@ declare const VSnackbar: {
|
|
49132
49170
|
}>;
|
49133
49171
|
$root: vue.ComponentPublicInstance | null;
|
49134
49172
|
$parent: vue.ComponentPublicInstance | null;
|
49135
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
49173
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
49136
49174
|
$el: any;
|
49137
49175
|
$options: vue.ComponentOptionsBase<{
|
49138
49176
|
absolute: boolean;
|
@@ -49214,6 +49252,7 @@ declare const VSnackbar: {
|
|
49214
49252
|
} & {
|
49215
49253
|
onAfterEnter?: (() => any) | undefined;
|
49216
49254
|
onAfterLeave?: (() => any) | undefined;
|
49255
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
49217
49256
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49218
49257
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
49219
49258
|
}, {
|
@@ -49228,6 +49267,7 @@ declare const VSnackbar: {
|
|
49228
49267
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
49229
49268
|
'click:outside': (e: MouseEvent) => true;
|
49230
49269
|
'update:modelValue': (value: boolean) => true;
|
49270
|
+
keydown: (e: KeyboardEvent) => true;
|
49231
49271
|
afterEnter: () => true;
|
49232
49272
|
afterLeave: () => true;
|
49233
49273
|
}, string, {
|
@@ -49366,6 +49406,7 @@ declare const VSnackbar: {
|
|
49366
49406
|
} & {
|
49367
49407
|
onAfterEnter?: (() => any) | undefined;
|
49368
49408
|
onAfterLeave?: (() => any) | undefined;
|
49409
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
49369
49410
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49370
49411
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
49371
49412
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -49377,7 +49418,7 @@ declare const VSnackbar: {
|
|
49377
49418
|
globalTop: Readonly<Ref<boolean>>;
|
49378
49419
|
localTop: vue.ComputedRef<boolean>;
|
49379
49420
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
49380
|
-
}> & {} & 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}`> & {
|
49421
|
+
}> & {} & 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}`> & {
|
49381
49422
|
_allExposed: {
|
49382
49423
|
activatorEl: Ref<HTMLElement | undefined>;
|
49383
49424
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -49711,6 +49752,7 @@ declare const VSnackbar: {
|
|
49711
49752
|
}) => vue.VNodeChild) | undefined;
|
49712
49753
|
onAfterEnter?: (() => any) | undefined;
|
49713
49754
|
onAfterLeave?: (() => any) | undefined;
|
49755
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
49714
49756
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49715
49757
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
49716
49758
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -49793,6 +49835,7 @@ declare const VSnackbar: {
|
|
49793
49835
|
} & {
|
49794
49836
|
onAfterEnter?: (() => any) | undefined;
|
49795
49837
|
onAfterLeave?: (() => any) | undefined;
|
49838
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
49796
49839
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49797
49840
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
49798
49841
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -49814,7 +49857,7 @@ declare const VSnackbar: {
|
|
49814
49857
|
}>;
|
49815
49858
|
$root: vue.ComponentPublicInstance | null;
|
49816
49859
|
$parent: vue.ComponentPublicInstance | null;
|
49817
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
49860
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
49818
49861
|
$el: any;
|
49819
49862
|
$options: vue.ComponentOptionsBase<{
|
49820
49863
|
absolute: boolean;
|
@@ -49896,6 +49939,7 @@ declare const VSnackbar: {
|
|
49896
49939
|
} & {
|
49897
49940
|
onAfterEnter?: (() => any) | undefined;
|
49898
49941
|
onAfterLeave?: (() => any) | undefined;
|
49942
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
49899
49943
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49900
49944
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
49901
49945
|
}, {
|
@@ -49910,6 +49954,7 @@ declare const VSnackbar: {
|
|
49910
49954
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
49911
49955
|
'click:outside': (e: MouseEvent) => true;
|
49912
49956
|
'update:modelValue': (value: boolean) => true;
|
49957
|
+
keydown: (e: KeyboardEvent) => true;
|
49913
49958
|
afterEnter: () => true;
|
49914
49959
|
afterLeave: () => true;
|
49915
49960
|
}, string, {
|
@@ -50048,6 +50093,7 @@ declare const VSnackbar: {
|
|
50048
50093
|
} & {
|
50049
50094
|
onAfterEnter?: (() => any) | undefined;
|
50050
50095
|
onAfterLeave?: (() => any) | undefined;
|
50096
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
50051
50097
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50052
50098
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
50053
50099
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -50059,7 +50105,7 @@ declare const VSnackbar: {
|
|
50059
50105
|
globalTop: Readonly<Ref<boolean>>;
|
50060
50106
|
localTop: vue.ComputedRef<boolean>;
|
50061
50107
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
50062
|
-
}> & {} & 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}`> & {
|
50108
|
+
}> & {} & 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}`> & {
|
50063
50109
|
_allExposed: {
|
50064
50110
|
activatorEl: Ref<HTMLElement | undefined>;
|
50065
50111
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -50293,6 +50339,7 @@ declare const VSnackbar: {
|
|
50293
50339
|
}) => vue.VNodeChild) | undefined;
|
50294
50340
|
onAfterEnter?: (() => any) | undefined;
|
50295
50341
|
onAfterLeave?: (() => any) | undefined;
|
50342
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
50296
50343
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50297
50344
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
50298
50345
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -50375,6 +50422,7 @@ declare const VSnackbar: {
|
|
50375
50422
|
} & {
|
50376
50423
|
onAfterEnter?: (() => any) | undefined;
|
50377
50424
|
onAfterLeave?: (() => any) | undefined;
|
50425
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
50378
50426
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50379
50427
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
50380
50428
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -50396,7 +50444,7 @@ declare const VSnackbar: {
|
|
50396
50444
|
}>;
|
50397
50445
|
$root: vue.ComponentPublicInstance | null;
|
50398
50446
|
$parent: vue.ComponentPublicInstance | null;
|
50399
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
50447
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
50400
50448
|
$el: any;
|
50401
50449
|
$options: vue.ComponentOptionsBase<{
|
50402
50450
|
absolute: boolean;
|
@@ -50478,6 +50526,7 @@ declare const VSnackbar: {
|
|
50478
50526
|
} & {
|
50479
50527
|
onAfterEnter?: (() => any) | undefined;
|
50480
50528
|
onAfterLeave?: (() => any) | undefined;
|
50529
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
50481
50530
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50482
50531
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
50483
50532
|
}, {
|
@@ -50492,6 +50541,7 @@ declare const VSnackbar: {
|
|
50492
50541
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
50493
50542
|
'click:outside': (e: MouseEvent) => true;
|
50494
50543
|
'update:modelValue': (value: boolean) => true;
|
50544
|
+
keydown: (e: KeyboardEvent) => true;
|
50495
50545
|
afterEnter: () => true;
|
50496
50546
|
afterLeave: () => true;
|
50497
50547
|
}, string, {
|
@@ -50630,6 +50680,7 @@ declare const VSnackbar: {
|
|
50630
50680
|
} & {
|
50631
50681
|
onAfterEnter?: (() => any) | undefined;
|
50632
50682
|
onAfterLeave?: (() => any) | undefined;
|
50683
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
50633
50684
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50634
50685
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
50635
50686
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -50641,7 +50692,7 @@ declare const VSnackbar: {
|
|
50641
50692
|
globalTop: Readonly<Ref<boolean>>;
|
50642
50693
|
localTop: vue.ComputedRef<boolean>;
|
50643
50694
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
50644
|
-
}> & {} & 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}`> & {
|
50695
|
+
}> & {} & 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}`> & {
|
50645
50696
|
_allExposed: {
|
50646
50697
|
activatorEl: Ref<HTMLElement | undefined>;
|
50647
50698
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -61897,6 +61948,7 @@ declare const VTooltip: {
|
|
61897
61948
|
}) => vue.VNodeChild) | undefined;
|
61898
61949
|
onAfterEnter?: (() => any) | undefined;
|
61899
61950
|
onAfterLeave?: (() => any) | undefined;
|
61951
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
61900
61952
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
61901
61953
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
61902
61954
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -61979,6 +62031,7 @@ declare const VTooltip: {
|
|
61979
62031
|
} & {
|
61980
62032
|
onAfterEnter?: (() => any) | undefined;
|
61981
62033
|
onAfterLeave?: (() => any) | undefined;
|
62034
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
61982
62035
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
61983
62036
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
61984
62037
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -62000,7 +62053,7 @@ declare const VTooltip: {
|
|
62000
62053
|
}>;
|
62001
62054
|
$root: vue.ComponentPublicInstance | null;
|
62002
62055
|
$parent: vue.ComponentPublicInstance | null;
|
62003
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
62056
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
62004
62057
|
$el: any;
|
62005
62058
|
$options: vue.ComponentOptionsBase<{
|
62006
62059
|
absolute: boolean;
|
@@ -62082,6 +62135,7 @@ declare const VTooltip: {
|
|
62082
62135
|
} & {
|
62083
62136
|
onAfterEnter?: (() => any) | undefined;
|
62084
62137
|
onAfterLeave?: (() => any) | undefined;
|
62138
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
62085
62139
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
62086
62140
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
62087
62141
|
}, {
|
@@ -62096,6 +62150,7 @@ declare const VTooltip: {
|
|
62096
62150
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
62097
62151
|
'click:outside': (e: MouseEvent) => true;
|
62098
62152
|
'update:modelValue': (value: boolean) => true;
|
62153
|
+
keydown: (e: KeyboardEvent) => true;
|
62099
62154
|
afterEnter: () => true;
|
62100
62155
|
afterLeave: () => true;
|
62101
62156
|
}, string, {
|
@@ -62234,6 +62289,7 @@ declare const VTooltip: {
|
|
62234
62289
|
} & {
|
62235
62290
|
onAfterEnter?: (() => any) | undefined;
|
62236
62291
|
onAfterLeave?: (() => any) | undefined;
|
62292
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
62237
62293
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
62238
62294
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
62239
62295
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -62245,7 +62301,7 @@ declare const VTooltip: {
|
|
62245
62301
|
globalTop: Readonly<vue.Ref<boolean>>;
|
62246
62302
|
localTop: vue.ComputedRef<boolean>;
|
62247
62303
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
62248
|
-
}> & {} & 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}`> & {
|
62304
|
+
}> & {} & 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}`> & {
|
62249
62305
|
_allExposed: {
|
62250
62306
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
62251
62307
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -62562,6 +62618,7 @@ declare const VTooltip: {
|
|
62562
62618
|
}) => vue.VNodeChild) | undefined;
|
62563
62619
|
onAfterEnter?: (() => any) | undefined;
|
62564
62620
|
onAfterLeave?: (() => any) | undefined;
|
62621
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
62565
62622
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
62566
62623
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
62567
62624
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -62644,6 +62701,7 @@ declare const VTooltip: {
|
|
62644
62701
|
} & {
|
62645
62702
|
onAfterEnter?: (() => any) | undefined;
|
62646
62703
|
onAfterLeave?: (() => any) | undefined;
|
62704
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
62647
62705
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
62648
62706
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
62649
62707
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -62665,7 +62723,7 @@ declare const VTooltip: {
|
|
62665
62723
|
}>;
|
62666
62724
|
$root: vue.ComponentPublicInstance | null;
|
62667
62725
|
$parent: vue.ComponentPublicInstance | null;
|
62668
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
62726
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
62669
62727
|
$el: any;
|
62670
62728
|
$options: vue.ComponentOptionsBase<{
|
62671
62729
|
absolute: boolean;
|
@@ -62747,6 +62805,7 @@ declare const VTooltip: {
|
|
62747
62805
|
} & {
|
62748
62806
|
onAfterEnter?: (() => any) | undefined;
|
62749
62807
|
onAfterLeave?: (() => any) | undefined;
|
62808
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
62750
62809
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
62751
62810
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
62752
62811
|
}, {
|
@@ -62761,6 +62820,7 @@ declare const VTooltip: {
|
|
62761
62820
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
62762
62821
|
'click:outside': (e: MouseEvent) => true;
|
62763
62822
|
'update:modelValue': (value: boolean) => true;
|
62823
|
+
keydown: (e: KeyboardEvent) => true;
|
62764
62824
|
afterEnter: () => true;
|
62765
62825
|
afterLeave: () => true;
|
62766
62826
|
}, string, {
|
@@ -62899,6 +62959,7 @@ declare const VTooltip: {
|
|
62899
62959
|
} & {
|
62900
62960
|
onAfterEnter?: (() => any) | undefined;
|
62901
62961
|
onAfterLeave?: (() => any) | undefined;
|
62962
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
62902
62963
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
62903
62964
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
62904
62965
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -62910,7 +62971,7 @@ declare const VTooltip: {
|
|
62910
62971
|
globalTop: Readonly<vue.Ref<boolean>>;
|
62911
62972
|
localTop: vue.ComputedRef<boolean>;
|
62912
62973
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
62913
|
-
}> & {} & 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}`> & {
|
62974
|
+
}> & {} & 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}`> & {
|
62914
62975
|
_allExposed: {
|
62915
62976
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
62916
62977
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -63135,6 +63196,7 @@ declare const VTooltip: {
|
|
63135
63196
|
}) => vue.VNodeChild) | undefined;
|
63136
63197
|
onAfterEnter?: (() => any) | undefined;
|
63137
63198
|
onAfterLeave?: (() => any) | undefined;
|
63199
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
63138
63200
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
63139
63201
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
63140
63202
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -63217,6 +63279,7 @@ declare const VTooltip: {
|
|
63217
63279
|
} & {
|
63218
63280
|
onAfterEnter?: (() => any) | undefined;
|
63219
63281
|
onAfterLeave?: (() => any) | undefined;
|
63282
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
63220
63283
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
63221
63284
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
63222
63285
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -63238,7 +63301,7 @@ declare const VTooltip: {
|
|
63238
63301
|
}>;
|
63239
63302
|
$root: vue.ComponentPublicInstance | null;
|
63240
63303
|
$parent: vue.ComponentPublicInstance | null;
|
63241
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
63304
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
63242
63305
|
$el: any;
|
63243
63306
|
$options: vue.ComponentOptionsBase<{
|
63244
63307
|
absolute: boolean;
|
@@ -63320,6 +63383,7 @@ declare const VTooltip: {
|
|
63320
63383
|
} & {
|
63321
63384
|
onAfterEnter?: (() => any) | undefined;
|
63322
63385
|
onAfterLeave?: (() => any) | undefined;
|
63386
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
63323
63387
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
63324
63388
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
63325
63389
|
}, {
|
@@ -63334,6 +63398,7 @@ declare const VTooltip: {
|
|
63334
63398
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
63335
63399
|
'click:outside': (e: MouseEvent) => true;
|
63336
63400
|
'update:modelValue': (value: boolean) => true;
|
63401
|
+
keydown: (e: KeyboardEvent) => true;
|
63337
63402
|
afterEnter: () => true;
|
63338
63403
|
afterLeave: () => true;
|
63339
63404
|
}, string, {
|
@@ -63472,6 +63537,7 @@ declare const VTooltip: {
|
|
63472
63537
|
} & {
|
63473
63538
|
onAfterEnter?: (() => any) | undefined;
|
63474
63539
|
onAfterLeave?: (() => any) | undefined;
|
63540
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
63475
63541
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
63476
63542
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
63477
63543
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -63483,7 +63549,7 @@ declare const VTooltip: {
|
|
63483
63549
|
globalTop: Readonly<vue.Ref<boolean>>;
|
63484
63550
|
localTop: vue.ComputedRef<boolean>;
|
63485
63551
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
63486
|
-
}> & {} & 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}`> & {
|
63552
|
+
}> & {} & 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}`> & {
|
63487
63553
|
_allExposed: {
|
63488
63554
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
63489
63555
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|