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.

25 lines 969 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'; export default class IgcListHeaderComponent extends LitElement { static { this.tagName = 'igc-list-header'; } static { this.styles = [styles, shared]; } static register() { registerComponent(IgcListHeaderComponent); } constructor() { super(); addThemingController(this, all); addInternalsController(this, { initialARIA: { role: 'separator' }, }); } render() { return html `<slot></slot>`; } } //# sourceMappingURL=list-header.js.map