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.
33 lines (32 loc) • 853 B
TypeScript
import { LitElement } from 'lit';
export default class IgcComboItemComponent extends LitElement {
static readonly tagName: string;
static styles: import("lit").CSSResult[];
static register(): void;
private _internals;
index: number;
/**
* Determines whether the item is selected.
* @attr selected
*/
selected: boolean;
/**
* Determines whether the item is active.
*/
active: boolean;
/**
* Determines whether the item is active.
* @attr hide-checkbox
*/
hideCheckbox: boolean;
protected selectedChange(): void;
constructor();
connectedCallback(): void;
private renderCheckbox;
protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'igc-combo-item': IgcComboItemComponent;
}
}