flowbite-2.0
Version:
The most popular library of interactive components built with Tailwind CSS
30 lines • 1.05 kB
TypeScript
import type { ModalOptions } from './types';
import { ModalInterface } from './interface';
declare class Modal implements ModalInterface {
_targetEl: HTMLElement | null;
_options: ModalOptions;
_isHidden: boolean;
_backdropEl: HTMLElement | null;
_clickOutsideEventListener: EventListenerOrEventListenerObject;
_keydownEventListener: EventListenerOrEventListenerObject;
_initialized: boolean;
constructor(targetEl?: HTMLElement | null, options?: ModalOptions);
init(): void;
destroy(): void;
removeInstance(): void;
destroyAndRemoveInstance(): void;
_createBackdrop(): void;
_destroyBackdropEl(): void;
_setupModalCloseEventListeners(): void;
_removeModalCloseEventListeners(): void;
_handleOutsideClick(target: EventTarget): void;
_getPlacementClasses(): string[];
toggle(): void;
show(): void;
hide(): void;
isVisible(): boolean;
isHidden(): boolean;
}
export declare function initModals(): void;
export default Modal;
//# sourceMappingURL=index.d.ts.map