svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
38 lines (37 loc) • 2.12 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
open?: boolean;
portal?: boolean;
persistent?: boolean;
loading?: boolean | null;
classes?: {
root?: string;
dialog?: string;
title?: string;
actions?: string;
};
};
events: {
introstart: FocusEvent | UIEvent | Event | ClipboardEvent | AnimationEvent | MouseEvent | InputEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | KeyboardEvent | ProgressEvent<EventTarget> | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
outrostart: FocusEvent | UIEvent | Event | ClipboardEvent | AnimationEvent | MouseEvent | InputEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | KeyboardEvent | ProgressEvent<EventTarget> | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
introend: FocusEvent | UIEvent | Event | ClipboardEvent | AnimationEvent | MouseEvent | InputEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | KeyboardEvent | ProgressEvent<EventTarget> | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
outroend: FocusEvent | UIEvent | Event | ClipboardEvent | AnimationEvent | MouseEvent | InputEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | KeyboardEvent | ProgressEvent<EventTarget> | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
close: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
header: {};
title: {};
default: {};
actions: {};
};
};
export type DialogProps = typeof __propDef.props;
export type DialogEvents = typeof __propDef.events;
export type DialogSlots = typeof __propDef.slots;
export default class Dialog extends SvelteComponentTyped<DialogProps, DialogEvents, DialogSlots> {
}
export {};