@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.
Files changed (37) hide show
  1. package/CHANGELOG.md +7 -3
  2. package/dist/json/attributes.json +2036 -2036
  3. package/dist/json/importMap-labs.json +16 -16
  4. package/dist/json/importMap.json +154 -154
  5. package/dist/json/web-types.json +3872 -3861
  6. package/dist/vuetify-labs.css +4879 -4879
  7. package/dist/vuetify-labs.d.ts +90 -24
  8. package/dist/vuetify-labs.esm.js +13 -4
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +13 -4
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +4116 -4116
  13. package/dist/vuetify.d.ts +144 -78
  14. package/dist/vuetify.esm.js +13 -4
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +13 -4
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +10 -10
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VAutocomplete/index.d.mts +21 -6
  22. package/lib/components/VCombobox/index.d.mts +21 -6
  23. package/lib/components/VDialog/index.d.mts +21 -6
  24. package/lib/components/VMenu/index.d.mts +21 -6
  25. package/lib/components/VOverlay/VOverlay.mjs +10 -1
  26. package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
  27. package/lib/components/VOverlay/index.d.mts +6 -0
  28. package/lib/components/VSelect/index.d.mts +21 -6
  29. package/lib/components/VSnackbar/index.d.mts +21 -6
  30. package/lib/components/VTooltip/index.d.mts +21 -6
  31. package/lib/components/index.d.mts +90 -24
  32. package/lib/entry-bundler.mjs +1 -1
  33. package/lib/framework.mjs +1 -1
  34. package/lib/index.d.mts +54 -54
  35. package/lib/labs/VSnackbarQueue/index.d.mts +21 -6
  36. package/lib/labs/components.d.mts +21 -6
  37. package/package.json +1 -1
package/dist/vuetify.d.ts CHANGED
@@ -6593,6 +6593,7 @@ declare const VMenu: {
6593
6593
  }) => vue.VNodeChild) | undefined;
6594
6594
  onAfterEnter?: (() => any) | undefined;
6595
6595
  onAfterLeave?: (() => any) | undefined;
6596
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
6596
6597
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
6597
6598
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
6598
6599
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
@@ -6675,6 +6676,7 @@ declare const VMenu: {
6675
6676
  } & {
6676
6677
  onAfterEnter?: (() => any) | undefined;
6677
6678
  onAfterLeave?: (() => any) | undefined;
6679
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
6678
6680
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
6679
6681
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
6680
6682
  }, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
@@ -6696,7 +6698,7 @@ declare const VMenu: {
6696
6698
  }>;
6697
6699
  $root: vue.ComponentPublicInstance | null;
6698
6700
  $parent: vue.ComponentPublicInstance | null;
6699
- $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
6701
+ $emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
6700
6702
  $el: any;
6701
6703
  $options: vue.ComponentOptionsBase<{
6702
6704
  absolute: boolean;
@@ -6778,6 +6780,7 @@ declare const VMenu: {
6778
6780
  } & {
6779
6781
  onAfterEnter?: (() => any) | undefined;
6780
6782
  onAfterLeave?: (() => any) | undefined;
6783
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
6781
6784
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
6782
6785
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
6783
6786
  }, {
@@ -6792,6 +6795,7 @@ declare const VMenu: {
6792
6795
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
6793
6796
  'click:outside': (e: MouseEvent) => true;
6794
6797
  'update:modelValue': (value: boolean) => true;
6798
+ keydown: (e: KeyboardEvent) => true;
6795
6799
  afterEnter: () => true;
6796
6800
  afterLeave: () => true;
6797
6801
  }, string, {
@@ -6930,6 +6934,7 @@ declare const VMenu: {
6930
6934
  } & {
6931
6935
  onAfterEnter?: (() => any) | undefined;
6932
6936
  onAfterLeave?: (() => any) | undefined;
6937
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
6933
6938
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
6934
6939
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
6935
6940
  }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
@@ -6941,7 +6946,7 @@ declare const VMenu: {
6941
6946
  globalTop: Readonly<vue.Ref<boolean>>;
6942
6947
  localTop: vue.ComputedRef<boolean>;
6943
6948
  updateLocation: vue.Ref<((e: Event) => void) | undefined>;
6944
- }> & {} & 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}`> & {
6949
+ }> & {} & 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}`> & {
6945
6950
  _allExposed: {
6946
6951
  activatorEl: vue.Ref<HTMLElement | undefined>;
6947
6952
  scrimEl: vue.Ref<HTMLElement | undefined>;
@@ -7274,6 +7279,7 @@ declare const VMenu: {
7274
7279
  }) => vue.VNodeChild) | undefined;
7275
7280
  onAfterEnter?: (() => any) | undefined;
7276
7281
  onAfterLeave?: (() => any) | undefined;
7282
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
7277
7283
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
7278
7284
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
7279
7285
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
@@ -7356,6 +7362,7 @@ declare const VMenu: {
7356
7362
  } & {
7357
7363
  onAfterEnter?: (() => any) | undefined;
7358
7364
  onAfterLeave?: (() => any) | undefined;
7365
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
7359
7366
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
7360
7367
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
7361
7368
  }, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
@@ -7377,7 +7384,7 @@ declare const VMenu: {
7377
7384
  }>;
7378
7385
  $root: vue.ComponentPublicInstance | null;
7379
7386
  $parent: vue.ComponentPublicInstance | null;
7380
- $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
7387
+ $emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
7381
7388
  $el: any;
7382
7389
  $options: vue.ComponentOptionsBase<{
7383
7390
  absolute: boolean;
@@ -7459,6 +7466,7 @@ declare const VMenu: {
7459
7466
  } & {
7460
7467
  onAfterEnter?: (() => any) | undefined;
7461
7468
  onAfterLeave?: (() => any) | undefined;
7469
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
7462
7470
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
7463
7471
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
7464
7472
  }, {
@@ -7473,6 +7481,7 @@ declare const VMenu: {
7473
7481
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
7474
7482
  'click:outside': (e: MouseEvent) => true;
7475
7483
  'update:modelValue': (value: boolean) => true;
7484
+ keydown: (e: KeyboardEvent) => true;
7476
7485
  afterEnter: () => true;
7477
7486
  afterLeave: () => true;
7478
7487
  }, string, {
@@ -7611,6 +7620,7 @@ declare const VMenu: {
7611
7620
  } & {
7612
7621
  onAfterEnter?: (() => any) | undefined;
7613
7622
  onAfterLeave?: (() => any) | undefined;
7623
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
7614
7624
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
7615
7625
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
7616
7626
  }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
@@ -7622,7 +7632,7 @@ declare const VMenu: {
7622
7632
  globalTop: Readonly<vue.Ref<boolean>>;
7623
7633
  localTop: vue.ComputedRef<boolean>;
7624
7634
  updateLocation: vue.Ref<((e: Event) => void) | undefined>;
7625
- }> & {} & 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}`> & {
7635
+ }> & {} & 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}`> & {
7626
7636
  _allExposed: {
7627
7637
  activatorEl: vue.Ref<HTMLElement | undefined>;
7628
7638
  scrimEl: vue.Ref<HTMLElement | undefined>;
@@ -7860,6 +7870,7 @@ declare const VMenu: {
7860
7870
  }) => vue.VNodeChild) | undefined;
7861
7871
  onAfterEnter?: (() => any) | undefined;
7862
7872
  onAfterLeave?: (() => any) | undefined;
7873
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
7863
7874
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
7864
7875
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
7865
7876
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
@@ -7942,6 +7953,7 @@ declare const VMenu: {
7942
7953
  } & {
7943
7954
  onAfterEnter?: (() => any) | undefined;
7944
7955
  onAfterLeave?: (() => any) | undefined;
7956
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
7945
7957
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
7946
7958
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
7947
7959
  }, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
@@ -7963,7 +7975,7 @@ declare const VMenu: {
7963
7975
  }>;
7964
7976
  $root: vue.ComponentPublicInstance | null;
7965
7977
  $parent: vue.ComponentPublicInstance | null;
7966
- $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
7978
+ $emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
7967
7979
  $el: any;
7968
7980
  $options: vue.ComponentOptionsBase<{
7969
7981
  absolute: boolean;
@@ -8045,6 +8057,7 @@ declare const VMenu: {
8045
8057
  } & {
8046
8058
  onAfterEnter?: (() => any) | undefined;
8047
8059
  onAfterLeave?: (() => any) | undefined;
8060
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
8048
8061
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
8049
8062
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
8050
8063
  }, {
@@ -8059,6 +8072,7 @@ declare const VMenu: {
8059
8072
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
8060
8073
  'click:outside': (e: MouseEvent) => true;
8061
8074
  'update:modelValue': (value: boolean) => true;
8075
+ keydown: (e: KeyboardEvent) => true;
8062
8076
  afterEnter: () => true;
8063
8077
  afterLeave: () => true;
8064
8078
  }, string, {
@@ -8197,6 +8211,7 @@ declare const VMenu: {
8197
8211
  } & {
8198
8212
  onAfterEnter?: (() => any) | undefined;
8199
8213
  onAfterLeave?: (() => any) | undefined;
8214
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
8200
8215
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
8201
8216
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
8202
8217
  }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
@@ -8208,7 +8223,7 @@ declare const VMenu: {
8208
8223
  globalTop: Readonly<vue.Ref<boolean>>;
8209
8224
  localTop: vue.ComputedRef<boolean>;
8210
8225
  updateLocation: vue.Ref<((e: Event) => void) | undefined>;
8211
- }> & {} & 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}`> & {
8226
+ }> & {} & 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}`> & {
8212
8227
  _allExposed: {
8213
8228
  activatorEl: vue.Ref<HTMLElement | undefined>;
8214
8229
  scrimEl: vue.Ref<HTMLElement | undefined>;
@@ -29892,6 +29907,7 @@ declare const VDialog: {
29892
29907
  }) => vue.VNodeChild) | undefined;
29893
29908
  onAfterEnter?: (() => any) | undefined;
29894
29909
  onAfterLeave?: (() => any) | undefined;
29910
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
29895
29911
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
29896
29912
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
29897
29913
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
@@ -29974,6 +29990,7 @@ declare const VDialog: {
29974
29990
  } & {
29975
29991
  onAfterEnter?: (() => any) | undefined;
29976
29992
  onAfterLeave?: (() => any) | undefined;
29993
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
29977
29994
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
29978
29995
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
29979
29996
  }, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
@@ -29995,7 +30012,7 @@ declare const VDialog: {
29995
30012
  }>;
29996
30013
  $root: vue.ComponentPublicInstance | null;
29997
30014
  $parent: vue.ComponentPublicInstance | null;
29998
- $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
30015
+ $emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
29999
30016
  $el: any;
30000
30017
  $options: vue.ComponentOptionsBase<{
30001
30018
  absolute: boolean;
@@ -30077,6 +30094,7 @@ declare const VDialog: {
30077
30094
  } & {
30078
30095
  onAfterEnter?: (() => any) | undefined;
30079
30096
  onAfterLeave?: (() => any) | undefined;
30097
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
30080
30098
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
30081
30099
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
30082
30100
  }, {
@@ -30091,6 +30109,7 @@ declare const VDialog: {
30091
30109
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
30092
30110
  'click:outside': (e: MouseEvent) => true;
30093
30111
  'update:modelValue': (value: boolean) => true;
30112
+ keydown: (e: KeyboardEvent) => true;
30094
30113
  afterEnter: () => true;
30095
30114
  afterLeave: () => true;
30096
30115
  }, string, {
@@ -30229,6 +30248,7 @@ declare const VDialog: {
30229
30248
  } & {
30230
30249
  onAfterEnter?: (() => any) | undefined;
30231
30250
  onAfterLeave?: (() => any) | undefined;
30251
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
30232
30252
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
30233
30253
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
30234
30254
  }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
@@ -30240,7 +30260,7 @@ declare const VDialog: {
30240
30260
  globalTop: Readonly<vue.Ref<boolean>>;
30241
30261
  localTop: vue.ComputedRef<boolean>;
30242
30262
  updateLocation: vue.Ref<((e: Event) => void) | undefined>;
30243
- }> & {} & 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}`> & {
30263
+ }> & {} & 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}`> & {
30244
30264
  _allExposed: {
30245
30265
  activatorEl: vue.Ref<HTMLElement | undefined>;
30246
30266
  scrimEl: vue.Ref<HTMLElement | undefined>;
@@ -30578,6 +30598,7 @@ declare const VDialog: {
30578
30598
  }) => vue.VNodeChild) | undefined;
30579
30599
  onAfterEnter?: (() => any) | undefined;
30580
30600
  onAfterLeave?: (() => any) | undefined;
30601
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
30581
30602
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
30582
30603
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
30583
30604
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
@@ -30660,6 +30681,7 @@ declare const VDialog: {
30660
30681
  } & {
30661
30682
  onAfterEnter?: (() => any) | undefined;
30662
30683
  onAfterLeave?: (() => any) | undefined;
30684
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
30663
30685
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
30664
30686
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
30665
30687
  }, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
@@ -30681,7 +30703,7 @@ declare const VDialog: {
30681
30703
  }>;
30682
30704
  $root: vue.ComponentPublicInstance | null;
30683
30705
  $parent: vue.ComponentPublicInstance | null;
30684
- $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
30706
+ $emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
30685
30707
  $el: any;
30686
30708
  $options: vue.ComponentOptionsBase<{
30687
30709
  absolute: boolean;
@@ -30763,6 +30785,7 @@ declare const VDialog: {
30763
30785
  } & {
30764
30786
  onAfterEnter?: (() => any) | undefined;
30765
30787
  onAfterLeave?: (() => any) | undefined;
30788
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
30766
30789
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
30767
30790
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
30768
30791
  }, {
@@ -30777,6 +30800,7 @@ declare const VDialog: {
30777
30800
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
30778
30801
  'click:outside': (e: MouseEvent) => true;
30779
30802
  'update:modelValue': (value: boolean) => true;
30803
+ keydown: (e: KeyboardEvent) => true;
30780
30804
  afterEnter: () => true;
30781
30805
  afterLeave: () => true;
30782
30806
  }, string, {
@@ -30915,6 +30939,7 @@ declare const VDialog: {
30915
30939
  } & {
30916
30940
  onAfterEnter?: (() => any) | undefined;
30917
30941
  onAfterLeave?: (() => any) | undefined;
30942
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
30918
30943
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
30919
30944
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
30920
30945
  }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
@@ -30926,7 +30951,7 @@ declare const VDialog: {
30926
30951
  globalTop: Readonly<vue.Ref<boolean>>;
30927
30952
  localTop: vue.ComputedRef<boolean>;
30928
30953
  updateLocation: vue.Ref<((e: Event) => void) | undefined>;
30929
- }> & {} & 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}`> & {
30954
+ }> & {} & 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}`> & {
30930
30955
  _allExposed: {
30931
30956
  activatorEl: vue.Ref<HTMLElement | undefined>;
30932
30957
  scrimEl: vue.Ref<HTMLElement | undefined>;
@@ -31163,6 +31188,7 @@ declare const VDialog: {
31163
31188
  }) => vue.VNodeChild) | undefined;
31164
31189
  onAfterEnter?: (() => any) | undefined;
31165
31190
  onAfterLeave?: (() => any) | undefined;
31191
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
31166
31192
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
31167
31193
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
31168
31194
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
@@ -31245,6 +31271,7 @@ declare const VDialog: {
31245
31271
  } & {
31246
31272
  onAfterEnter?: (() => any) | undefined;
31247
31273
  onAfterLeave?: (() => any) | undefined;
31274
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
31248
31275
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
31249
31276
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
31250
31277
  }, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
@@ -31266,7 +31293,7 @@ declare const VDialog: {
31266
31293
  }>;
31267
31294
  $root: vue.ComponentPublicInstance | null;
31268
31295
  $parent: vue.ComponentPublicInstance | null;
31269
- $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
31296
+ $emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
31270
31297
  $el: any;
31271
31298
  $options: vue.ComponentOptionsBase<{
31272
31299
  absolute: boolean;
@@ -31348,6 +31375,7 @@ declare const VDialog: {
31348
31375
  } & {
31349
31376
  onAfterEnter?: (() => any) | undefined;
31350
31377
  onAfterLeave?: (() => any) | undefined;
31378
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
31351
31379
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
31352
31380
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
31353
31381
  }, {
@@ -31362,6 +31390,7 @@ declare const VDialog: {
31362
31390
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
31363
31391
  'click:outside': (e: MouseEvent) => true;
31364
31392
  'update:modelValue': (value: boolean) => true;
31393
+ keydown: (e: KeyboardEvent) => true;
31365
31394
  afterEnter: () => true;
31366
31395
  afterLeave: () => true;
31367
31396
  }, string, {
@@ -31500,6 +31529,7 @@ declare const VDialog: {
31500
31529
  } & {
31501
31530
  onAfterEnter?: (() => any) | undefined;
31502
31531
  onAfterLeave?: (() => any) | undefined;
31532
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
31503
31533
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
31504
31534
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
31505
31535
  }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
@@ -31511,7 +31541,7 @@ declare const VDialog: {
31511
31541
  globalTop: Readonly<vue.Ref<boolean>>;
31512
31542
  localTop: vue.ComputedRef<boolean>;
31513
31543
  updateLocation: vue.Ref<((e: Event) => void) | undefined>;
31514
- }> & {} & 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}`> & {
31544
+ }> & {} & 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}`> & {
31515
31545
  _allExposed: {
31516
31546
  activatorEl: vue.Ref<HTMLElement | undefined>;
31517
31547
  scrimEl: vue.Ref<HTMLElement | undefined>;
@@ -40760,6 +40790,7 @@ declare const VOverlay: {
40760
40790
  } & {
40761
40791
  onAfterEnter?: (() => any) | undefined;
40762
40792
  onAfterLeave?: (() => any) | undefined;
40793
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
40763
40794
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
40764
40795
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
40765
40796
  }, {
@@ -40774,6 +40805,7 @@ declare const VOverlay: {
40774
40805
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
40775
40806
  'click:outside': (e: MouseEvent) => true;
40776
40807
  'update:modelValue': (value: boolean) => true;
40808
+ keydown: (e: KeyboardEvent) => true;
40777
40809
  afterEnter: () => true;
40778
40810
  afterLeave: () => true;
40779
40811
  }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
@@ -40856,6 +40888,7 @@ declare const VOverlay: {
40856
40888
  } & {
40857
40889
  onAfterEnter?: (() => any) | undefined;
40858
40890
  onAfterLeave?: (() => any) | undefined;
40891
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
40859
40892
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
40860
40893
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
40861
40894
  }, {
@@ -40981,6 +41014,7 @@ declare const VOverlay: {
40981
41014
  } & {
40982
41015
  onAfterEnter?: (() => any) | undefined;
40983
41016
  onAfterLeave?: (() => any) | undefined;
41017
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
40984
41018
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
40985
41019
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
40986
41020
  }, {
@@ -41103,6 +41137,7 @@ declare const VOverlay: {
41103
41137
  } & {
41104
41138
  onAfterEnter?: (() => any) | undefined;
41105
41139
  onAfterLeave?: (() => any) | undefined;
41140
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
41106
41141
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
41107
41142
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
41108
41143
  }, {
@@ -41117,6 +41152,7 @@ declare const VOverlay: {
41117
41152
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
41118
41153
  'click:outside': (e: MouseEvent) => true;
41119
41154
  'update:modelValue': (value: boolean) => true;
41155
+ keydown: (e: KeyboardEvent) => true;
41120
41156
  afterEnter: () => true;
41121
41157
  afterLeave: () => true;
41122
41158
  }, string, {
@@ -49368,6 +49404,7 @@ declare const VSnackbar: {
49368
49404
  }) => vue.VNodeChild) | undefined;
49369
49405
  onAfterEnter?: (() => any) | undefined;
49370
49406
  onAfterLeave?: (() => any) | undefined;
49407
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
49371
49408
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
49372
49409
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
49373
49410
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
@@ -49450,6 +49487,7 @@ declare const VSnackbar: {
49450
49487
  } & {
49451
49488
  onAfterEnter?: (() => any) | undefined;
49452
49489
  onAfterLeave?: (() => any) | undefined;
49490
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
49453
49491
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
49454
49492
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
49455
49493
  }, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
@@ -49471,7 +49509,7 @@ declare const VSnackbar: {
49471
49509
  }>;
49472
49510
  $root: vue.ComponentPublicInstance | null;
49473
49511
  $parent: vue.ComponentPublicInstance | null;
49474
- $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
49512
+ $emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
49475
49513
  $el: any;
49476
49514
  $options: vue.ComponentOptionsBase<{
49477
49515
  absolute: boolean;
@@ -49553,6 +49591,7 @@ declare const VSnackbar: {
49553
49591
  } & {
49554
49592
  onAfterEnter?: (() => any) | undefined;
49555
49593
  onAfterLeave?: (() => any) | undefined;
49594
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
49556
49595
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
49557
49596
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
49558
49597
  }, {
@@ -49567,6 +49606,7 @@ declare const VSnackbar: {
49567
49606
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
49568
49607
  'click:outside': (e: MouseEvent) => true;
49569
49608
  'update:modelValue': (value: boolean) => true;
49609
+ keydown: (e: KeyboardEvent) => true;
49570
49610
  afterEnter: () => true;
49571
49611
  afterLeave: () => true;
49572
49612
  }, string, {
@@ -49705,6 +49745,7 @@ declare const VSnackbar: {
49705
49745
  } & {
49706
49746
  onAfterEnter?: (() => any) | undefined;
49707
49747
  onAfterLeave?: (() => any) | undefined;
49748
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
49708
49749
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
49709
49750
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
49710
49751
  }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
@@ -49716,7 +49757,7 @@ declare const VSnackbar: {
49716
49757
  globalTop: Readonly<Ref<boolean>>;
49717
49758
  localTop: vue.ComputedRef<boolean>;
49718
49759
  updateLocation: Ref<((e: Event) => void) | undefined>;
49719
- }> & {} & 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}`> & {
49760
+ }> & {} & 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}`> & {
49720
49761
  _allExposed: {
49721
49762
  activatorEl: Ref<HTMLElement | undefined>;
49722
49763
  scrimEl: Ref<HTMLElement | undefined>;
@@ -50050,6 +50091,7 @@ declare const VSnackbar: {
50050
50091
  }) => vue.VNodeChild) | undefined;
50051
50092
  onAfterEnter?: (() => any) | undefined;
50052
50093
  onAfterLeave?: (() => any) | undefined;
50094
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
50053
50095
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
50054
50096
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
50055
50097
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
@@ -50132,6 +50174,7 @@ declare const VSnackbar: {
50132
50174
  } & {
50133
50175
  onAfterEnter?: (() => any) | undefined;
50134
50176
  onAfterLeave?: (() => any) | undefined;
50177
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
50135
50178
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
50136
50179
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
50137
50180
  }, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
@@ -50153,7 +50196,7 @@ declare const VSnackbar: {
50153
50196
  }>;
50154
50197
  $root: vue.ComponentPublicInstance | null;
50155
50198
  $parent: vue.ComponentPublicInstance | null;
50156
- $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
50199
+ $emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
50157
50200
  $el: any;
50158
50201
  $options: vue.ComponentOptionsBase<{
50159
50202
  absolute: boolean;
@@ -50235,6 +50278,7 @@ declare const VSnackbar: {
50235
50278
  } & {
50236
50279
  onAfterEnter?: (() => any) | undefined;
50237
50280
  onAfterLeave?: (() => any) | undefined;
50281
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
50238
50282
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
50239
50283
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
50240
50284
  }, {
@@ -50249,6 +50293,7 @@ declare const VSnackbar: {
50249
50293
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
50250
50294
  'click:outside': (e: MouseEvent) => true;
50251
50295
  'update:modelValue': (value: boolean) => true;
50296
+ keydown: (e: KeyboardEvent) => true;
50252
50297
  afterEnter: () => true;
50253
50298
  afterLeave: () => true;
50254
50299
  }, string, {
@@ -50387,6 +50432,7 @@ declare const VSnackbar: {
50387
50432
  } & {
50388
50433
  onAfterEnter?: (() => any) | undefined;
50389
50434
  onAfterLeave?: (() => any) | undefined;
50435
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
50390
50436
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
50391
50437
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
50392
50438
  }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
@@ -50398,7 +50444,7 @@ declare const VSnackbar: {
50398
50444
  globalTop: Readonly<Ref<boolean>>;
50399
50445
  localTop: vue.ComputedRef<boolean>;
50400
50446
  updateLocation: Ref<((e: Event) => void) | undefined>;
50401
- }> & {} & 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}`> & {
50447
+ }> & {} & 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}`> & {
50402
50448
  _allExposed: {
50403
50449
  activatorEl: Ref<HTMLElement | undefined>;
50404
50450
  scrimEl: Ref<HTMLElement | undefined>;
@@ -50632,6 +50678,7 @@ declare const VSnackbar: {
50632
50678
  }) => vue.VNodeChild) | undefined;
50633
50679
  onAfterEnter?: (() => any) | undefined;
50634
50680
  onAfterLeave?: (() => any) | undefined;
50681
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
50635
50682
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
50636
50683
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
50637
50684
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
@@ -50714,6 +50761,7 @@ declare const VSnackbar: {
50714
50761
  } & {
50715
50762
  onAfterEnter?: (() => any) | undefined;
50716
50763
  onAfterLeave?: (() => any) | undefined;
50764
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
50717
50765
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
50718
50766
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
50719
50767
  }, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
@@ -50735,7 +50783,7 @@ declare const VSnackbar: {
50735
50783
  }>;
50736
50784
  $root: vue.ComponentPublicInstance | null;
50737
50785
  $parent: vue.ComponentPublicInstance | null;
50738
- $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
50786
+ $emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
50739
50787
  $el: any;
50740
50788
  $options: vue.ComponentOptionsBase<{
50741
50789
  absolute: boolean;
@@ -50817,6 +50865,7 @@ declare const VSnackbar: {
50817
50865
  } & {
50818
50866
  onAfterEnter?: (() => any) | undefined;
50819
50867
  onAfterLeave?: (() => any) | undefined;
50868
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
50820
50869
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
50821
50870
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
50822
50871
  }, {
@@ -50831,6 +50880,7 @@ declare const VSnackbar: {
50831
50880
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
50832
50881
  'click:outside': (e: MouseEvent) => true;
50833
50882
  'update:modelValue': (value: boolean) => true;
50883
+ keydown: (e: KeyboardEvent) => true;
50834
50884
  afterEnter: () => true;
50835
50885
  afterLeave: () => true;
50836
50886
  }, string, {
@@ -50969,6 +51019,7 @@ declare const VSnackbar: {
50969
51019
  } & {
50970
51020
  onAfterEnter?: (() => any) | undefined;
50971
51021
  onAfterLeave?: (() => any) | undefined;
51022
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
50972
51023
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
50973
51024
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
50974
51025
  }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
@@ -50980,7 +51031,7 @@ declare const VSnackbar: {
50980
51031
  globalTop: Readonly<Ref<boolean>>;
50981
51032
  localTop: vue.ComputedRef<boolean>;
50982
51033
  updateLocation: Ref<((e: Event) => void) | undefined>;
50983
- }> & {} & 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}`> & {
51034
+ }> & {} & 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}`> & {
50984
51035
  _allExposed: {
50985
51036
  activatorEl: Ref<HTMLElement | undefined>;
50986
51037
  scrimEl: Ref<HTMLElement | undefined>;
@@ -62236,6 +62287,7 @@ declare const VTooltip: {
62236
62287
  }) => vue.VNodeChild) | undefined;
62237
62288
  onAfterEnter?: (() => any) | undefined;
62238
62289
  onAfterLeave?: (() => any) | undefined;
62290
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
62239
62291
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
62240
62292
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
62241
62293
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
@@ -62318,6 +62370,7 @@ declare const VTooltip: {
62318
62370
  } & {
62319
62371
  onAfterEnter?: (() => any) | undefined;
62320
62372
  onAfterLeave?: (() => any) | undefined;
62373
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
62321
62374
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
62322
62375
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
62323
62376
  }, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
@@ -62339,7 +62392,7 @@ declare const VTooltip: {
62339
62392
  }>;
62340
62393
  $root: vue.ComponentPublicInstance | null;
62341
62394
  $parent: vue.ComponentPublicInstance | null;
62342
- $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
62395
+ $emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
62343
62396
  $el: any;
62344
62397
  $options: vue.ComponentOptionsBase<{
62345
62398
  absolute: boolean;
@@ -62421,6 +62474,7 @@ declare const VTooltip: {
62421
62474
  } & {
62422
62475
  onAfterEnter?: (() => any) | undefined;
62423
62476
  onAfterLeave?: (() => any) | undefined;
62477
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
62424
62478
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
62425
62479
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
62426
62480
  }, {
@@ -62435,6 +62489,7 @@ declare const VTooltip: {
62435
62489
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
62436
62490
  'click:outside': (e: MouseEvent) => true;
62437
62491
  'update:modelValue': (value: boolean) => true;
62492
+ keydown: (e: KeyboardEvent) => true;
62438
62493
  afterEnter: () => true;
62439
62494
  afterLeave: () => true;
62440
62495
  }, string, {
@@ -62573,6 +62628,7 @@ declare const VTooltip: {
62573
62628
  } & {
62574
62629
  onAfterEnter?: (() => any) | undefined;
62575
62630
  onAfterLeave?: (() => any) | undefined;
62631
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
62576
62632
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
62577
62633
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
62578
62634
  }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
@@ -62584,7 +62640,7 @@ declare const VTooltip: {
62584
62640
  globalTop: Readonly<vue.Ref<boolean>>;
62585
62641
  localTop: vue.ComputedRef<boolean>;
62586
62642
  updateLocation: vue.Ref<((e: Event) => void) | undefined>;
62587
- }> & {} & 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}`> & {
62643
+ }> & {} & 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}`> & {
62588
62644
  _allExposed: {
62589
62645
  activatorEl: vue.Ref<HTMLElement | undefined>;
62590
62646
  scrimEl: vue.Ref<HTMLElement | undefined>;
@@ -62901,6 +62957,7 @@ declare const VTooltip: {
62901
62957
  }) => vue.VNodeChild) | undefined;
62902
62958
  onAfterEnter?: (() => any) | undefined;
62903
62959
  onAfterLeave?: (() => any) | undefined;
62960
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
62904
62961
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
62905
62962
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
62906
62963
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
@@ -62983,6 +63040,7 @@ declare const VTooltip: {
62983
63040
  } & {
62984
63041
  onAfterEnter?: (() => any) | undefined;
62985
63042
  onAfterLeave?: (() => any) | undefined;
63043
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
62986
63044
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
62987
63045
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
62988
63046
  }, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
@@ -63004,7 +63062,7 @@ declare const VTooltip: {
63004
63062
  }>;
63005
63063
  $root: vue.ComponentPublicInstance | null;
63006
63064
  $parent: vue.ComponentPublicInstance | null;
63007
- $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
63065
+ $emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
63008
63066
  $el: any;
63009
63067
  $options: vue.ComponentOptionsBase<{
63010
63068
  absolute: boolean;
@@ -63086,6 +63144,7 @@ declare const VTooltip: {
63086
63144
  } & {
63087
63145
  onAfterEnter?: (() => any) | undefined;
63088
63146
  onAfterLeave?: (() => any) | undefined;
63147
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
63089
63148
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
63090
63149
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
63091
63150
  }, {
@@ -63100,6 +63159,7 @@ declare const VTooltip: {
63100
63159
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
63101
63160
  'click:outside': (e: MouseEvent) => true;
63102
63161
  'update:modelValue': (value: boolean) => true;
63162
+ keydown: (e: KeyboardEvent) => true;
63103
63163
  afterEnter: () => true;
63104
63164
  afterLeave: () => true;
63105
63165
  }, string, {
@@ -63238,6 +63298,7 @@ declare const VTooltip: {
63238
63298
  } & {
63239
63299
  onAfterEnter?: (() => any) | undefined;
63240
63300
  onAfterLeave?: (() => any) | undefined;
63301
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
63241
63302
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
63242
63303
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
63243
63304
  }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
@@ -63249,7 +63310,7 @@ declare const VTooltip: {
63249
63310
  globalTop: Readonly<vue.Ref<boolean>>;
63250
63311
  localTop: vue.ComputedRef<boolean>;
63251
63312
  updateLocation: vue.Ref<((e: Event) => void) | undefined>;
63252
- }> & {} & 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}`> & {
63313
+ }> & {} & 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}`> & {
63253
63314
  _allExposed: {
63254
63315
  activatorEl: vue.Ref<HTMLElement | undefined>;
63255
63316
  scrimEl: vue.Ref<HTMLElement | undefined>;
@@ -63474,6 +63535,7 @@ declare const VTooltip: {
63474
63535
  }) => vue.VNodeChild) | undefined;
63475
63536
  onAfterEnter?: (() => any) | undefined;
63476
63537
  onAfterLeave?: (() => any) | undefined;
63538
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
63477
63539
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
63478
63540
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
63479
63541
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
@@ -63556,6 +63618,7 @@ declare const VTooltip: {
63556
63618
  } & {
63557
63619
  onAfterEnter?: (() => any) | undefined;
63558
63620
  onAfterLeave?: (() => any) | undefined;
63621
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
63559
63622
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
63560
63623
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
63561
63624
  }, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
@@ -63577,7 +63640,7 @@ declare const VTooltip: {
63577
63640
  }>;
63578
63641
  $root: vue.ComponentPublicInstance | null;
63579
63642
  $parent: vue.ComponentPublicInstance | null;
63580
- $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
63643
+ $emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
63581
63644
  $el: any;
63582
63645
  $options: vue.ComponentOptionsBase<{
63583
63646
  absolute: boolean;
@@ -63659,6 +63722,7 @@ declare const VTooltip: {
63659
63722
  } & {
63660
63723
  onAfterEnter?: (() => any) | undefined;
63661
63724
  onAfterLeave?: (() => any) | undefined;
63725
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
63662
63726
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
63663
63727
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
63664
63728
  }, {
@@ -63673,6 +63737,7 @@ declare const VTooltip: {
63673
63737
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
63674
63738
  'click:outside': (e: MouseEvent) => true;
63675
63739
  'update:modelValue': (value: boolean) => true;
63740
+ keydown: (e: KeyboardEvent) => true;
63676
63741
  afterEnter: () => true;
63677
63742
  afterLeave: () => true;
63678
63743
  }, string, {
@@ -63811,6 +63876,7 @@ declare const VTooltip: {
63811
63876
  } & {
63812
63877
  onAfterEnter?: (() => any) | undefined;
63813
63878
  onAfterLeave?: (() => any) | undefined;
63879
+ onKeydown?: ((e: KeyboardEvent) => any) | undefined;
63814
63880
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
63815
63881
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
63816
63882
  }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
@@ -63822,7 +63888,7 @@ declare const VTooltip: {
63822
63888
  globalTop: Readonly<vue.Ref<boolean>>;
63823
63889
  localTop: vue.ComputedRef<boolean>;
63824
63890
  updateLocation: vue.Ref<((e: Event) => void) | undefined>;
63825
- }> & {} & 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}`> & {
63891
+ }> & {} & 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}`> & {
63826
63892
  _allExposed: {
63827
63893
  activatorEl: vue.Ref<HTMLElement | undefined>;
63828
63894
  scrimEl: vue.Ref<HTMLElement | undefined>;
@@ -67071,79 +67137,80 @@ declare module 'vue' {
67071
67137
  $children?: VNodeChild
67072
67138
  }
67073
67139
  export interface GlobalComponents {
67074
- VAlert: typeof import('vuetify/components')['VAlert']
67075
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
67076
- VApp: typeof import('vuetify/components')['VApp']
67077
67140
  VAppBar: typeof import('vuetify/components')['VAppBar']
67078
67141
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
67079
67142
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
67080
- VAvatar: typeof import('vuetify/components')['VAvatar']
67081
- VBadge: typeof import('vuetify/components')['VBadge']
67143
+ VApp: typeof import('vuetify/components')['VApp']
67144
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
67082
67145
  VBanner: typeof import('vuetify/components')['VBanner']
67083
67146
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
67084
67147
  VBannerText: typeof import('vuetify/components')['VBannerText']
67148
+ VBadge: typeof import('vuetify/components')['VBadge']
67085
67149
  VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
67086
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
67087
- VBtn: typeof import('vuetify/components')['VBtn']
67088
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
67089
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
67090
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
67091
- VCarousel: typeof import('vuetify/components')['VCarousel']
67092
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
67093
67150
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
67094
67151
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
67095
67152
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
67153
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
67154
+ VBtn: typeof import('vuetify/components')['VBtn']
67155
+ VAvatar: typeof import('vuetify/components')['VAvatar']
67156
+ VAlert: typeof import('vuetify/components')['VAlert']
67157
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
67158
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
67096
67159
  VCard: typeof import('vuetify/components')['VCard']
67097
67160
  VCardActions: typeof import('vuetify/components')['VCardActions']
67098
67161
  VCardItem: typeof import('vuetify/components')['VCardItem']
67099
67162
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
67100
67163
  VCardText: typeof import('vuetify/components')['VCardText']
67101
67164
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
67165
+ VChip: typeof import('vuetify/components')['VChip']
67102
67166
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
67103
67167
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
67104
67168
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
67105
- VChip: typeof import('vuetify/components')['VChip']
67106
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
67107
- VCounter: typeof import('vuetify/components')['VCounter']
67169
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
67108
67170
  VCode: typeof import('vuetify/components')['VCode']
67109
- VDataTable: typeof import('vuetify/components')['VDataTable']
67110
- VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
67111
- VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
67112
- VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
67113
- VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
67114
- VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
67115
- VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
67171
+ VCounter: typeof import('vuetify/components')['VCounter']
67172
+ VCarousel: typeof import('vuetify/components')['VCarousel']
67173
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
67174
+ VCombobox: typeof import('vuetify/components')['VCombobox']
67116
67175
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
67117
67176
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
67118
67177
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
67119
67178
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
67120
67179
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
67121
67180
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
67122
- VCombobox: typeof import('vuetify/components')['VCombobox']
67123
- VEmptyState: typeof import('vuetify/components')['VEmptyState']
67124
67181
  VDialog: typeof import('vuetify/components')['VDialog']
67125
- VFab: typeof import('vuetify/components')['VFab']
67182
+ VDataTable: typeof import('vuetify/components')['VDataTable']
67183
+ VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
67184
+ VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
67185
+ VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
67186
+ VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
67187
+ VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
67188
+ VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
67126
67189
  VDivider: typeof import('vuetify/components')['VDivider']
67190
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
67127
67191
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
67128
67192
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
67129
67193
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
67130
67194
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
67195
+ VFab: typeof import('vuetify/components')['VFab']
67196
+ VEmptyState: typeof import('vuetify/components')['VEmptyState']
67131
67197
  VFileInput: typeof import('vuetify/components')['VFileInput']
67198
+ VFooter: typeof import('vuetify/components')['VFooter']
67132
67199
  VField: typeof import('vuetify/components')['VField']
67133
67200
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
67134
- VFooter: typeof import('vuetify/components')['VFooter']
67201
+ VImg: typeof import('vuetify/components')['VImg']
67202
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
67135
67203
  VIcon: typeof import('vuetify/components')['VIcon']
67136
67204
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
67137
67205
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
67138
67206
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
67139
67207
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
67140
- VImg: typeof import('vuetify/components')['VImg']
67141
67208
  VInput: typeof import('vuetify/components')['VInput']
67142
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
67209
+ VLabel: typeof import('vuetify/components')['VLabel']
67143
67210
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
67144
67211
  VItem: typeof import('vuetify/components')['VItem']
67212
+ VMenu: typeof import('vuetify/components')['VMenu']
67145
67213
  VKbd: typeof import('vuetify/components')['VKbd']
67146
- VMain: typeof import('vuetify/components')['VMain']
67147
67214
  VList: typeof import('vuetify/components')['VList']
67148
67215
  VListGroup: typeof import('vuetify/components')['VListGroup']
67149
67216
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -67153,27 +67220,24 @@ declare module 'vue' {
67153
67220
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
67154
67221
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
67155
67222
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
67156
- VLabel: typeof import('vuetify/components')['VLabel']
67157
- VMessages: typeof import('vuetify/components')['VMessages']
67223
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
67158
67224
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
67225
+ VMessages: typeof import('vuetify/components')['VMessages']
67226
+ VOverlay: typeof import('vuetify/components')['VOverlay']
67227
+ VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
67159
67228
  VPagination: typeof import('vuetify/components')['VPagination']
67160
- VMenu: typeof import('vuetify/components')['VMenu']
67161
67229
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
67162
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
67163
- VOverlay: typeof import('vuetify/components')['VOverlay']
67164
67230
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
67165
- VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
67166
- VRating: typeof import('vuetify/components')['VRating']
67167
67231
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
67232
+ VRating: typeof import('vuetify/components')['VRating']
67168
67233
  VSelect: typeof import('vuetify/components')['VSelect']
67169
67234
  VSheet: typeof import('vuetify/components')['VSheet']
67170
- VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
67235
+ VSlider: typeof import('vuetify/components')['VSlider']
67171
67236
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
67172
67237
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
67173
- VSlider: typeof import('vuetify/components')['VSlider']
67238
+ VMain: typeof import('vuetify/components')['VMain']
67174
67239
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
67175
67240
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
67176
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
67177
67241
  VSwitch: typeof import('vuetify/components')['VSwitch']
67178
67242
  VStepper: typeof import('vuetify/components')['VStepper']
67179
67243
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
@@ -67185,19 +67249,19 @@ declare module 'vue' {
67185
67249
  VTabs: typeof import('vuetify/components')['VTabs']
67186
67250
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
67187
67251
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
67188
- VTextField: typeof import('vuetify/components')['VTextField']
67189
- VTable: typeof import('vuetify/components')['VTable']
67190
- VTextarea: typeof import('vuetify/components')['VTextarea']
67191
- VTooltip: typeof import('vuetify/components')['VTooltip']
67252
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
67192
67253
  VTimeline: typeof import('vuetify/components')['VTimeline']
67193
67254
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
67194
- VWindow: typeof import('vuetify/components')['VWindow']
67195
- VWindowItem: typeof import('vuetify/components')['VWindowItem']
67196
67255
  VToolbar: typeof import('vuetify/components')['VToolbar']
67197
67256
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
67198
67257
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
67199
- VDataIterator: typeof import('vuetify/components')['VDataIterator']
67258
+ VTooltip: typeof import('vuetify/components')['VTooltip']
67259
+ VWindow: typeof import('vuetify/components')['VWindow']
67260
+ VWindowItem: typeof import('vuetify/components')['VWindowItem']
67261
+ VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
67262
+ VTable: typeof import('vuetify/components')['VTable']
67200
67263
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
67264
+ VDataIterator: typeof import('vuetify/components')['VDataIterator']
67201
67265
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
67202
67266
  VForm: typeof import('vuetify/components')['VForm']
67203
67267
  VContainer: typeof import('vuetify/components')['VContainer']
@@ -67208,17 +67272,16 @@ declare module 'vue' {
67208
67272
  VLayout: typeof import('vuetify/components')['VLayout']
67209
67273
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
67210
67274
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
67211
- VLazy: typeof import('vuetify/components')['VLazy']
67212
67275
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
67213
67276
  VParallax: typeof import('vuetify/components')['VParallax']
67214
67277
  VRadio: typeof import('vuetify/components')['VRadio']
67215
67278
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
67279
+ VTextField: typeof import('vuetify/components')['VTextField']
67216
67280
  VResponsive: typeof import('vuetify/components')['VResponsive']
67281
+ VLazy: typeof import('vuetify/components')['VLazy']
67217
67282
  VSparkline: typeof import('vuetify/components')['VSparkline']
67218
- VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
67219
67283
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
67220
- VValidation: typeof import('vuetify/components')['VValidation']
67221
- VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
67284
+ VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
67222
67285
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
67223
67286
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
67224
67287
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -67235,6 +67298,10 @@ declare module 'vue' {
67235
67298
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
67236
67299
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
67237
67300
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
67301
+ VValidation: typeof import('vuetify/components')['VValidation']
67302
+ VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
67303
+ VTextarea: typeof import('vuetify/components')['VTextarea']
67304
+ VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
67238
67305
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
67239
67306
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
67240
67307
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
@@ -67248,13 +67315,12 @@ declare module 'vue' {
67248
67315
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
67249
67316
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
67250
67317
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
67251
- VTreeview: typeof import('vuetify/labs/components')['VTreeview']
67252
- VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
67253
- VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
67254
- VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
67255
67318
  VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
67256
67319
  VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
67257
67320
  VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
67321
+ VTreeview: typeof import('vuetify/labs/components')['VTreeview']
67322
+ VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
67323
+ VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
67258
67324
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
67259
67325
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
67260
67326
  VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']