@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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@signal24/vue-foundation",
3
3
  "type": "module",
4
- "version": "4.29.2",
4
+ "version": "4.29.3",
5
5
  "description": "Common components, directives, and helpers for Vue 3 apps",
6
6
  "module": "./dist/vue-foundation.es.js",
7
7
  "exports": {
@@ -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;