@vaadin-component-factory/vcf-autocomplete
Version:
Web Component with a text input that provides a panel of suggested options.
15 lines (13 loc) • 381 B
JavaScript
import '@vaadin/vaadin-lumo-styles/style';
import '@polymer/polymer/lib/elements/dom-module.js';
const theme = document.createElement('dom-module');
theme.id = 'vcf-autocomplete-lumo';
theme.setAttribute('theme-for', 'vcf-autocomplete');
theme.innerHTML = `
<template>
<style>
:host {}
</style>
</template>
`;
theme.register(theme.id);