@signal24/vue-foundation 4.29.2 → 4.29.3
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/package.json
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
:name="name"
|
|
13
13
|
data-1p-ignore
|
|
14
14
|
@keydown="handleKeyDown"
|
|
15
|
+
@paste="handlePaste"
|
|
15
16
|
@focus="handleInputFocused"
|
|
16
17
|
@blur="handleInputBlurred"
|
|
17
18
|
/>
|
|
@@ -411,6 +412,10 @@ function handleKeyDown(e: KeyboardEvent) {
|
|
|
411
412
|
}
|
|
412
413
|
}
|
|
413
414
|
|
|
415
|
+
function handlePaste() {
|
|
416
|
+
isSearching.value = true;
|
|
417
|
+
}
|
|
418
|
+
|
|
414
419
|
function handleInputFocused() {
|
|
415
420
|
setHighlightedOptionKey();
|
|
416
421
|
shouldDisplayOptions.value = true;
|