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 (24 loc) • 871 B
TypeScript
import { IgcBaseOptionLikeComponent } from '../common/mixins/option.js';
/**
* Represents an item in a dropdown list.
*
* @element igc-dropdown-item
*
* @slot prefix - Renders content before the item's main content.
* @slot - Renders the item's main content.
* @slot suffix - Renders content after the item's main content.
*
* @csspart prefix - The prefix wrapper of the igc-dropdown-item.
* @csspart content - The main content wrapper of the igc-dropdown-item.
* @csspart suffix - The suffix wrapper of the igc-dropdown-item.
*/
export default class IgcDropdownItemComponent extends IgcBaseOptionLikeComponent {
static readonly tagName = "igc-dropdown-item";
static styles: import("lit").CSSResult[];
static register(): void;
}
declare global {
interface HTMLElementTagNameMap {
'igc-dropdown-item': IgcDropdownItemComponent;
}
}