Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CoreHome/vue/src/SelectOnFocus/SelectOnFocus.ts')
-rw-r--r--plugins/CoreHome/vue/src/SelectOnFocus/SelectOnFocus.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/CoreHome/vue/src/SelectOnFocus/SelectOnFocus.ts b/plugins/CoreHome/vue/src/SelectOnFocus/SelectOnFocus.ts
index 112ab3df2b..a1a588336b 100644
--- a/plugins/CoreHome/vue/src/SelectOnFocus/SelectOnFocus.ts
+++ b/plugins/CoreHome/vue/src/SelectOnFocus/SelectOnFocus.ts
@@ -8,9 +8,11 @@
import { DirectiveBinding } from 'vue';
interface SelectOnFocusArgs {
+ // state
focusedElement?: HTMLElement;
elementSupportsSelect?: boolean;
+ // event handlers
onFocusHandler?: (event: Event) => void;
onClickHandler?: (event: MouseEvent) => void;
onBlurHandler?: (event: Event) => void;