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.
22 lines • 860 B
JavaScript
import { html, LitElement } from 'lit';
import { addThemingController } from '../../theming/theming-controller.js';
import { registerComponent } from '../common/definitions/register.js';
import { all } from '../dropdown/themes/header.js';
import { styles as shared } from '../dropdown/themes/shared/header/dropdown-header.common.css.js';
import { styles } from './themes/combo-header.base.css.js';
class IgcComboHeaderComponent extends LitElement {
static register() {
registerComponent(IgcComboHeaderComponent);
}
constructor() {
super();
addThemingController(this, all);
}
render() {
return html `<slot></slot>`;
}
}
IgcComboHeaderComponent.tagName = 'igc-combo-header';
IgcComboHeaderComponent.styles = [styles, shared];
export default IgcComboHeaderComponent;
//# sourceMappingURL=combo-header.js.map