@vuetify/nightly 3.7.15-master.2025-03-10 → 3.7.15-master.2025-03-11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -3
- package/dist/json/attributes.json +2036 -2036
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +154 -154
- package/dist/json/web-types.json +3872 -3861
- package/dist/vuetify-labs.css +4879 -4879
- package/dist/vuetify-labs.d.ts +90 -24
- package/dist/vuetify-labs.esm.js +13 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +13 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4116 -4116
- package/dist/vuetify.d.ts +144 -78
- package/dist/vuetify.esm.js +13 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +21 -6
- package/lib/components/VCombobox/index.d.mts +21 -6
- package/lib/components/VDialog/index.d.mts +21 -6
- package/lib/components/VMenu/index.d.mts +21 -6
- package/lib/components/VOverlay/VOverlay.mjs +10 -1
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/index.d.mts +6 -0
- package/lib/components/VSelect/index.d.mts +21 -6
- package/lib/components/VSnackbar/index.d.mts +21 -6
- package/lib/components/VTooltip/index.d.mts +21 -6
- package/lib/components/index.d.mts +90 -24
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +54 -54
- package/lib/labs/VSnackbarQueue/index.d.mts +21 -6
- package/lib/labs/components.d.mts +21 -6
- package/package.json +1 -1
@@ -287,6 +287,7 @@ declare const VSnackbar: {
|
|
287
287
|
}) => vue.VNodeChild) | undefined;
|
288
288
|
onAfterEnter?: (() => any) | undefined;
|
289
289
|
onAfterLeave?: (() => any) | undefined;
|
290
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
290
291
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
291
292
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
292
293
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -369,6 +370,7 @@ declare const VSnackbar: {
|
|
369
370
|
} & {
|
370
371
|
onAfterEnter?: (() => any) | undefined;
|
371
372
|
onAfterLeave?: (() => any) | undefined;
|
373
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
372
374
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
373
375
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
374
376
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -390,7 +392,7 @@ declare const VSnackbar: {
|
|
390
392
|
}>;
|
391
393
|
$root: vue.ComponentPublicInstance | null;
|
392
394
|
$parent: vue.ComponentPublicInstance | null;
|
393
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
395
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
394
396
|
$el: any;
|
395
397
|
$options: vue.ComponentOptionsBase<{
|
396
398
|
absolute: boolean;
|
@@ -472,6 +474,7 @@ declare const VSnackbar: {
|
|
472
474
|
} & {
|
473
475
|
onAfterEnter?: (() => any) | undefined;
|
474
476
|
onAfterLeave?: (() => any) | undefined;
|
477
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
475
478
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
476
479
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
477
480
|
}, {
|
@@ -486,6 +489,7 @@ declare const VSnackbar: {
|
|
486
489
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
487
490
|
'click:outside': (e: MouseEvent) => true;
|
488
491
|
'update:modelValue': (value: boolean) => true;
|
492
|
+
keydown: (e: KeyboardEvent) => true;
|
489
493
|
afterEnter: () => true;
|
490
494
|
afterLeave: () => true;
|
491
495
|
}, string, {
|
@@ -624,6 +628,7 @@ declare const VSnackbar: {
|
|
624
628
|
} & {
|
625
629
|
onAfterEnter?: (() => any) | undefined;
|
626
630
|
onAfterLeave?: (() => any) | undefined;
|
631
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
627
632
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
628
633
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
629
634
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -635,7 +640,7 @@ declare const VSnackbar: {
|
|
635
640
|
globalTop: Readonly<Ref<boolean>>;
|
636
641
|
localTop: vue.ComputedRef<boolean>;
|
637
642
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
638
|
-
}> & {} & 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}`> & {
|
643
|
+
}> & {} & 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}`> & {
|
639
644
|
_allExposed: {
|
640
645
|
activatorEl: Ref<HTMLElement | undefined>;
|
641
646
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -969,6 +974,7 @@ declare const VSnackbar: {
|
|
969
974
|
}) => vue.VNodeChild) | undefined;
|
970
975
|
onAfterEnter?: (() => any) | undefined;
|
971
976
|
onAfterLeave?: (() => any) | undefined;
|
977
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
972
978
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
973
979
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
974
980
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -1051,6 +1057,7 @@ declare const VSnackbar: {
|
|
1051
1057
|
} & {
|
1052
1058
|
onAfterEnter?: (() => any) | undefined;
|
1053
1059
|
onAfterLeave?: (() => any) | undefined;
|
1060
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1054
1061
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1055
1062
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1056
1063
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -1072,7 +1079,7 @@ declare const VSnackbar: {
|
|
1072
1079
|
}>;
|
1073
1080
|
$root: vue.ComponentPublicInstance | null;
|
1074
1081
|
$parent: vue.ComponentPublicInstance | null;
|
1075
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1082
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1076
1083
|
$el: any;
|
1077
1084
|
$options: vue.ComponentOptionsBase<{
|
1078
1085
|
absolute: boolean;
|
@@ -1154,6 +1161,7 @@ declare const VSnackbar: {
|
|
1154
1161
|
} & {
|
1155
1162
|
onAfterEnter?: (() => any) | undefined;
|
1156
1163
|
onAfterLeave?: (() => any) | undefined;
|
1164
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1157
1165
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1158
1166
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1159
1167
|
}, {
|
@@ -1168,6 +1176,7 @@ declare const VSnackbar: {
|
|
1168
1176
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
1169
1177
|
'click:outside': (e: MouseEvent) => true;
|
1170
1178
|
'update:modelValue': (value: boolean) => true;
|
1179
|
+
keydown: (e: KeyboardEvent) => true;
|
1171
1180
|
afterEnter: () => true;
|
1172
1181
|
afterLeave: () => true;
|
1173
1182
|
}, string, {
|
@@ -1306,6 +1315,7 @@ declare const VSnackbar: {
|
|
1306
1315
|
} & {
|
1307
1316
|
onAfterEnter?: (() => any) | undefined;
|
1308
1317
|
onAfterLeave?: (() => any) | undefined;
|
1318
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1309
1319
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1310
1320
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1311
1321
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -1317,7 +1327,7 @@ declare const VSnackbar: {
|
|
1317
1327
|
globalTop: Readonly<Ref<boolean>>;
|
1318
1328
|
localTop: vue.ComputedRef<boolean>;
|
1319
1329
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
1320
|
-
}> & {} & 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}`> & {
|
1330
|
+
}> & {} & 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}`> & {
|
1321
1331
|
_allExposed: {
|
1322
1332
|
activatorEl: Ref<HTMLElement | undefined>;
|
1323
1333
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -1551,6 +1561,7 @@ declare const VSnackbar: {
|
|
1551
1561
|
}) => vue.VNodeChild) | undefined;
|
1552
1562
|
onAfterEnter?: (() => any) | undefined;
|
1553
1563
|
onAfterLeave?: (() => any) | undefined;
|
1564
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1554
1565
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1555
1566
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1556
1567
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -1633,6 +1644,7 @@ declare const VSnackbar: {
|
|
1633
1644
|
} & {
|
1634
1645
|
onAfterEnter?: (() => any) | undefined;
|
1635
1646
|
onAfterLeave?: (() => any) | undefined;
|
1647
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1636
1648
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1637
1649
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1638
1650
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -1654,7 +1666,7 @@ declare const VSnackbar: {
|
|
1654
1666
|
}>;
|
1655
1667
|
$root: vue.ComponentPublicInstance | null;
|
1656
1668
|
$parent: vue.ComponentPublicInstance | null;
|
1657
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1669
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1658
1670
|
$el: any;
|
1659
1671
|
$options: vue.ComponentOptionsBase<{
|
1660
1672
|
absolute: boolean;
|
@@ -1736,6 +1748,7 @@ declare const VSnackbar: {
|
|
1736
1748
|
} & {
|
1737
1749
|
onAfterEnter?: (() => any) | undefined;
|
1738
1750
|
onAfterLeave?: (() => any) | undefined;
|
1751
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1739
1752
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1740
1753
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1741
1754
|
}, {
|
@@ -1750,6 +1763,7 @@ declare const VSnackbar: {
|
|
1750
1763
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
1751
1764
|
'click:outside': (e: MouseEvent) => true;
|
1752
1765
|
'update:modelValue': (value: boolean) => true;
|
1766
|
+
keydown: (e: KeyboardEvent) => true;
|
1753
1767
|
afterEnter: () => true;
|
1754
1768
|
afterLeave: () => true;
|
1755
1769
|
}, string, {
|
@@ -1888,6 +1902,7 @@ declare const VSnackbar: {
|
|
1888
1902
|
} & {
|
1889
1903
|
onAfterEnter?: (() => any) | undefined;
|
1890
1904
|
onAfterLeave?: (() => any) | undefined;
|
1905
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1891
1906
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1892
1907
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1893
1908
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -1899,7 +1914,7 @@ declare const VSnackbar: {
|
|
1899
1914
|
globalTop: Readonly<Ref<boolean>>;
|
1900
1915
|
localTop: vue.ComputedRef<boolean>;
|
1901
1916
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
1902
|
-
}> & {} & 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}`> & {
|
1917
|
+
}> & {} & 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}`> & {
|
1903
1918
|
_allExposed: {
|
1904
1919
|
activatorEl: Ref<HTMLElement | undefined>;
|
1905
1920
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -277,6 +277,7 @@ declare const VTooltip: {
|
|
277
277
|
}) => vue.VNodeChild) | undefined;
|
278
278
|
onAfterEnter?: (() => any) | undefined;
|
279
279
|
onAfterLeave?: (() => any) | undefined;
|
280
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
280
281
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
281
282
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
282
283
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -359,6 +360,7 @@ declare const VTooltip: {
|
|
359
360
|
} & {
|
360
361
|
onAfterEnter?: (() => any) | undefined;
|
361
362
|
onAfterLeave?: (() => any) | undefined;
|
363
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
362
364
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
363
365
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
364
366
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -380,7 +382,7 @@ declare const VTooltip: {
|
|
380
382
|
}>;
|
381
383
|
$root: vue.ComponentPublicInstance | null;
|
382
384
|
$parent: vue.ComponentPublicInstance | null;
|
383
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
385
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
384
386
|
$el: any;
|
385
387
|
$options: vue.ComponentOptionsBase<{
|
386
388
|
absolute: boolean;
|
@@ -462,6 +464,7 @@ declare const VTooltip: {
|
|
462
464
|
} & {
|
463
465
|
onAfterEnter?: (() => any) | undefined;
|
464
466
|
onAfterLeave?: (() => any) | undefined;
|
467
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
465
468
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
466
469
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
467
470
|
}, {
|
@@ -476,6 +479,7 @@ declare const VTooltip: {
|
|
476
479
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
477
480
|
'click:outside': (e: MouseEvent) => true;
|
478
481
|
'update:modelValue': (value: boolean) => true;
|
482
|
+
keydown: (e: KeyboardEvent) => true;
|
479
483
|
afterEnter: () => true;
|
480
484
|
afterLeave: () => true;
|
481
485
|
}, string, {
|
@@ -614,6 +618,7 @@ declare const VTooltip: {
|
|
614
618
|
} & {
|
615
619
|
onAfterEnter?: (() => any) | undefined;
|
616
620
|
onAfterLeave?: (() => any) | undefined;
|
621
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
617
622
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
618
623
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
619
624
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -625,7 +630,7 @@ declare const VTooltip: {
|
|
625
630
|
globalTop: Readonly<vue.Ref<boolean>>;
|
626
631
|
localTop: vue.ComputedRef<boolean>;
|
627
632
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
628
|
-
}> & {} & 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}`> & {
|
633
|
+
}> & {} & 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}`> & {
|
629
634
|
_allExposed: {
|
630
635
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
631
636
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -942,6 +947,7 @@ declare const VTooltip: {
|
|
942
947
|
}) => vue.VNodeChild) | undefined;
|
943
948
|
onAfterEnter?: (() => any) | undefined;
|
944
949
|
onAfterLeave?: (() => any) | undefined;
|
950
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
945
951
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
946
952
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
947
953
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -1024,6 +1030,7 @@ declare const VTooltip: {
|
|
1024
1030
|
} & {
|
1025
1031
|
onAfterEnter?: (() => any) | undefined;
|
1026
1032
|
onAfterLeave?: (() => any) | undefined;
|
1033
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1027
1034
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1028
1035
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1029
1036
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -1045,7 +1052,7 @@ declare const VTooltip: {
|
|
1045
1052
|
}>;
|
1046
1053
|
$root: vue.ComponentPublicInstance | null;
|
1047
1054
|
$parent: vue.ComponentPublicInstance | null;
|
1048
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1055
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1049
1056
|
$el: any;
|
1050
1057
|
$options: vue.ComponentOptionsBase<{
|
1051
1058
|
absolute: boolean;
|
@@ -1127,6 +1134,7 @@ declare const VTooltip: {
|
|
1127
1134
|
} & {
|
1128
1135
|
onAfterEnter?: (() => any) | undefined;
|
1129
1136
|
onAfterLeave?: (() => any) | undefined;
|
1137
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1130
1138
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1131
1139
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1132
1140
|
}, {
|
@@ -1141,6 +1149,7 @@ declare const VTooltip: {
|
|
1141
1149
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
1142
1150
|
'click:outside': (e: MouseEvent) => true;
|
1143
1151
|
'update:modelValue': (value: boolean) => true;
|
1152
|
+
keydown: (e: KeyboardEvent) => true;
|
1144
1153
|
afterEnter: () => true;
|
1145
1154
|
afterLeave: () => true;
|
1146
1155
|
}, string, {
|
@@ -1279,6 +1288,7 @@ declare const VTooltip: {
|
|
1279
1288
|
} & {
|
1280
1289
|
onAfterEnter?: (() => any) | undefined;
|
1281
1290
|
onAfterLeave?: (() => any) | undefined;
|
1291
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1282
1292
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1283
1293
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1284
1294
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -1290,7 +1300,7 @@ declare const VTooltip: {
|
|
1290
1300
|
globalTop: Readonly<vue.Ref<boolean>>;
|
1291
1301
|
localTop: vue.ComputedRef<boolean>;
|
1292
1302
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
1293
|
-
}> & {} & 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}`> & {
|
1303
|
+
}> & {} & 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}`> & {
|
1294
1304
|
_allExposed: {
|
1295
1305
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
1296
1306
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
@@ -1515,6 +1525,7 @@ declare const VTooltip: {
|
|
1515
1525
|
}) => vue.VNodeChild) | undefined;
|
1516
1526
|
onAfterEnter?: (() => any) | undefined;
|
1517
1527
|
onAfterLeave?: (() => any) | undefined;
|
1528
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1518
1529
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1519
1530
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1520
1531
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -1597,6 +1608,7 @@ declare const VTooltip: {
|
|
1597
1608
|
} & {
|
1598
1609
|
onAfterEnter?: (() => any) | undefined;
|
1599
1610
|
onAfterLeave?: (() => any) | undefined;
|
1611
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1600
1612
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1601
1613
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1602
1614
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -1618,7 +1630,7 @@ declare const VTooltip: {
|
|
1618
1630
|
}>;
|
1619
1631
|
$root: vue.ComponentPublicInstance | null;
|
1620
1632
|
$parent: vue.ComponentPublicInstance | null;
|
1621
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1633
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1622
1634
|
$el: any;
|
1623
1635
|
$options: vue.ComponentOptionsBase<{
|
1624
1636
|
absolute: boolean;
|
@@ -1700,6 +1712,7 @@ declare const VTooltip: {
|
|
1700
1712
|
} & {
|
1701
1713
|
onAfterEnter?: (() => any) | undefined;
|
1702
1714
|
onAfterLeave?: (() => any) | undefined;
|
1715
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1703
1716
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1704
1717
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1705
1718
|
}, {
|
@@ -1714,6 +1727,7 @@ declare const VTooltip: {
|
|
1714
1727
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
1715
1728
|
'click:outside': (e: MouseEvent) => true;
|
1716
1729
|
'update:modelValue': (value: boolean) => true;
|
1730
|
+
keydown: (e: KeyboardEvent) => true;
|
1717
1731
|
afterEnter: () => true;
|
1718
1732
|
afterLeave: () => true;
|
1719
1733
|
}, string, {
|
@@ -1852,6 +1866,7 @@ declare const VTooltip: {
|
|
1852
1866
|
} & {
|
1853
1867
|
onAfterEnter?: (() => any) | undefined;
|
1854
1868
|
onAfterLeave?: (() => any) | undefined;
|
1869
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1855
1870
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1856
1871
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1857
1872
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -1863,7 +1878,7 @@ declare const VTooltip: {
|
|
1863
1878
|
globalTop: Readonly<vue.Ref<boolean>>;
|
1864
1879
|
localTop: vue.ComputedRef<boolean>;
|
1865
1880
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
1866
|
-
}> & {} & 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}`> & {
|
1881
|
+
}> & {} & 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}`> & {
|
1867
1882
|
_allExposed: {
|
1868
1883
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
1869
1884
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|