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.
14 lines • 491 B
JavaScript
import { LitVirtualizer } from '@lit-labs/virtualizer/LitVirtualizer.js';
import { registerComponent } from '../common/definitions/register.js';
class IgcComboListComponent extends LitVirtualizer {
constructor() {
super(...arguments);
this.scroller = true;
}
static register() {
registerComponent(IgcComboListComponent);
}
}
IgcComboListComponent.tagName = 'igc-combo-list';
export default IgcComboListComponent;
//# sourceMappingURL=combo-list.js.map