getaddress-autocomplete
Advanced tools
Comparing version 1.0.17 to 1.0.18
{ | ||
"name": "getaddress-autocomplete", | ||
"version": "1.0.17", | ||
"version": "1.0.18", | ||
"description": "GetAddress.io - Autocomplete plug-in", | ||
@@ -5,0 +5,0 @@ "main": "./dist/getaddress-autocomplete.mjs", |
@@ -1,2 +0,2 @@ | ||
import {version} from "./package.json"; | ||
import {version} from "./package.json"; | ||
import { nodeResolve } from '@rollup/plugin-node-resolve'; | ||
@@ -3,0 +3,0 @@ import ts from "rollup-plugin-ts"; |
@@ -65,2 +65,8 @@ import AttributeValues from "./AttributeValues"; | ||
}); | ||
this.input.addEventListener('paste', (event) => { | ||
if(this.input.value){ | ||
this.populateList(false); | ||
} | ||
}); | ||
@@ -464,3 +470,5 @@ this.container.addEventListener('focusout', (event) => { | ||
if(showAllOption && success.suggestions.length) | ||
if(showAllOption | ||
&& success.suggestions.length | ||
&& (success.suggestions.length) === autocompleteOptions.top) | ||
{ | ||
@@ -467,0 +475,0 @@ const li = this.getShowAllListItem(this.list.children.length,totalLength); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
43306
869