@anypoint-web-components/anypoint-dialog
Version:
A Material design dialog with compatibility with Anypoint platform
27 lines (18 loc) • 558 B
TypeScript
import { TemplateResult, CSSResult, LitElement } from 'lit-element';
import { AnypointDialog } from './AnypointDialog';
export declare class AnypointDialogScrollable extends LitElement {
static readonly styles: CSSResult;
/**
* Parent element to this element.
*/
dialogElement: AnypointDialog;
/**
* Returns the scrolling element.
*/
readonly scrollTarget: HTMLElement;
firstUpdated(): void;
_ensureTarget(): void;
updateScrollState(): void;
_toggleClass(klas: string, add: boolean): void;
render(): TemplateResult;
}