igniteui-webcomponents
Version:
Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.
13 lines • 466 B
JavaScript
import { LitVirtualizer } from '@lit-labs/virtualizer/LitVirtualizer.js';
import { registerComponent } from '../common/definitions/register.js';
export default class IgcComboListComponent extends LitVirtualizer {
constructor() {
super(...arguments);
this.scroller = true;
}
static { this.tagName = 'igc-combo-list'; }
static register() {
registerComponent(IgcComboListComponent);
}
}
//# sourceMappingURL=combo-list.js.map