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.

38 lines (37 loc) 1.02 kB
import { LitElement, type PropertyValues } from 'lit'; export default class IgcComboItemComponent extends LitElement { static readonly tagName = "igc-combo-item"; static styles: import("lit").CSSResult[]; static register(): void; private readonly _internals; index: number; /** * Determines whether the item is selected. * @attr selected * @default false */ selected: boolean; /** * Determines whether the item is active. * @attr active * @default false */ active: boolean; /** * Determines whether the item is active. * @attr hide-checkbox * @default false */ hideCheckbox: boolean; constructor(); /** @internal */ connectedCallback(): void; protected willUpdate(props: PropertyValues<this>): void; private _renderCheckbox; protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'igc-combo-item': IgcComboItemComponent; } }