
Product
Socket Now Supports pylock.toml Files
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
@anypoint-web-components/anypoint-autocomplete
Advanced tools
Anypoint styled autocomplete for inputs.
This component is based on Material Design lists.
Anypoint web components are set of components that allows to build Anypoint enabled UI in open source projects.
The element renders accessible list of suggestions for an input field.
npm install --save @anypoint-web-components/anypoint-autocomplete
<html>
<head>
<script type="module">
import '@anypoint-web-components/anypoint-autocomplete/anypoint-autocomplete.js';
import '@anypoint-web-components/anypoint-input/anypoint-input.js';
</script>
</head>
<body>
<div class="parent">
<anypoint-input id="targetInput"></anypoint-input>
<anypoint-autocomplete target="targetInput"></anypoint-autocomplete>
</div>
<script>
{
document.querySelector('anypoint-autocomplete').source = [
'a',
'b',
'c',
'd'
];
}
</script>
</body>
</html>
When the input value changes the autocomplete dispatches query
event. Your application should handle this event, generate suggestions for the user, and set the source
property.
To indicate to the user that the suggestions are async you may set loader
property. It renders a progress bar until source property change.
<div class="parent">
<anypoint-input id="targetInput"></anypoint-input>
<anypoint-autocomplete target="targetInput"></anypoint-autocomplete>
</div>
<script>
{
document.querySelector('anypoint-autocomplete').onquery = (e) => {
const { value } = e.detail;
const suggestions = await getAsyncSuggestions(value);
e.target.source = suggestions;
};
}
</script>
import { LitElement, html } from 'lit-element';
import '@anypoint-web-components/anypoint-autocomplete/anypoint-autocomplete.js';
import '@anypoint-web-components/anypoint-input/anypoint-input.js';
class SimpleElement extends ControlStateMixin(ButtonStateMixin(LitElement)) {
render() {
return html`
<div class="parent">
<anypoint-input id="targetInput"></anypoint-input>
<anypoint-autocomplete
target="targetInput"
loader
.source="${this.suggestions}"
@query="${this._handleQuery}"></anypoint-autocomplete>
</div>
`;
}
async _handleQuery(e) {
const { value } = e.detail;
this.suggestions = await getAsyncSuggestions(value);
}
}
window.customElements.define('simple-element', SimpleElement);
{
"value": "Required, string. The value to insert into the input field",
"label": "Optional, string. When set this will be used as the drop down list label",
"description": "Optional, string. When set it renders a second line for the suggestion with help message. Keep it short!"
}
The autocomplete element follows W3C guidelines for ARIA 1.1 Combobox with Listbox Popup. The element is enabled to support screen readers.
Because of how screen readers parses page content and associate roles, the element places suggestions as child elements of the autosuggestion element. This means that you may accidentally style list items from your master CSS file.
Because autocomplete element and text input requires a parent element with specific role, put both elements inside single parent. The element takes care of setting roles and aria attributes on all elements.
<div class="parent">
<anypoint-input id="targetInput"></anypoint-input>
<anypoint-autocomplete target="targetInput"></anypoint-autocomplete>
</div>
<div
class="parent"
role="combobox"
aria-label="Text input with list suggestions"
aria-expanded="true"
aria-owns="paperAutocompleteInput7302"
aria-haspopup="listbox">
<anypoint-input
id="targetInput"
aria-autocomplete="list"
autocomplete="off"
aria-haspopup="true"
aria-controls="paperAutocompleteInput63418"></anypoint-input>
<anypoint-autocomplete
target="targetInput"
id="paperAutocompleteInput7302"
aria-controls="paperAutocompleteInput63418"
>
<anypoint-dropdown>
<anypoint-listbox
aria-label="Use arrows and enter to select list item. Escape to close the list."
role="listbox"
aria-activedescendant=""
id="paperAutocompleteInput63418"></anypoint-listbox>
</anypoint-dropdown>
</anypoint-autocomplete>
</div>
You can set aria-label
on the parent to override default message. However other attributes are always changed to comply with accessibility requirements.
git clone https://github.com/anypoint-web-components/anypoint-autocomplete
cd anypoint-autocomplete
npm install
npm start
npm test
FAQs
Anypoint styled autocomplete for inputs.
We found that @anypoint-web-components/anypoint-autocomplete demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.
Research
Security News
Malicious Ruby gems typosquat Fastlane plugins to steal Telegram bot tokens, messages, and files, exploiting demand after Vietnam’s Telegram ban.