@kor-ui/kor
Version:
Web components library containing lightweight, ready-to-use and framework-agnostic User Interface elements.
15 lines (14 loc) • 711 B
TypeScript
import { LitElement } from 'lit';
/**
* @prop {'top-left'|'top-right'|'bottom-left'|'bottom-right'} position - Defines the corner where the notification is located. Possible values are `top-left`, `top-right`, `bottom-left` and `bottom-right`.
*
* @slot - Hosts kor-notification-items.
*
* @cssprop --body-gap - Defines the gap between elements in the body slot.
*/
export declare class korNotifications extends LitElement {
position: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
static get styles(): import("lit").CSSResultGroup[];
render(): import("lit-html").TemplateResult<1>;
attributeChangedCallback(name: string, oldval: string, newval: string): void;
}