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) • 560 B
TypeScript
import { LitElement } from 'lit';
/**
* A ripple can be applied to an element to represent
* interactive surface.
*
* @element igc-ripple
*/
export default class IgcRippleComponent extends LitElement {
static readonly tagName = "igc-ripple";
static styles: import("lit").CSSResult;
static register(): void;
constructor();
private handler;
private getDimensions;
protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'igc-ripple': IgcRippleComponent;
}
}