UNPKG

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.

26 lines 999 B
import { html, LitElement } from 'lit'; import { addThemingController } from '../../theming/theming-controller.js'; import { addInternalsController } from '../common/controllers/internals.js'; import { registerComponent } from '../common/definitions/register.js'; import { styles } from './themes/header.base.css.js'; import { all } from './themes/header.js'; import { styles as shared } from './themes/shared/header/list-header.common.css.js'; class IgcListHeaderComponent extends LitElement { static register() { registerComponent(IgcListHeaderComponent); } constructor() { super(); addThemingController(this, all); addInternalsController(this, { initialARIA: { role: 'separator' }, }); } render() { return html `<slot></slot>`; } } IgcListHeaderComponent.tagName = 'igc-list-header'; IgcListHeaderComponent.styles = [styles, shared]; export default IgcListHeaderComponent; //# sourceMappingURL=list-header.js.map