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.
22 lines (21 loc) • 708 B
TypeScript
import { LitElement } from 'lit';
/**
* @element igc-carousel-indicator-container
*
* @slot - Default slot for the carousel indicator container.
*
* @csspart base - The wrapping container of all carousel indicators.
*/
export default class IgcCarouselIndicatorContainerComponent extends LitElement {
static readonly tagName = "igc-carousel-indicator-container";
static styles: import("lit").CSSResult[];
static register(): void;
private _kbFocus;
private handleFocusOut;
protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'igc-carousel-indicator-container': IgcCarouselIndicatorContainerComponent;
}
}