UNPKG

preline

Version:

Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.

78 lines (75 loc) 2.38 kB
export interface IBasePlugin<O, E> { el: E; options?: O; events?: {}; } declare class HSBasePlugin<O, E = HTMLElement> implements IBasePlugin<O, E> { el: E; options: O; events?: any; constructor(el: E, options: O, events?: any); createCollection(collection: any[], element: any): void; fireEvent(evt: string, payload?: any): any; on(evt: string, cb: Function): void; } export interface ICollectionItem<T> { id: string | number; element: T; } export interface IOverlayOptions { hiddenClass?: string | null; emulateScrollbarSpace?: boolean; isClosePrev?: boolean; backdropClasses?: string | null; backdropExtraClasses?: string | null; moveOverlayToBody?: number | null; } export interface IOverlay { options?: IOverlayOptions; open(): void; close(): void; } declare class HSOverlay extends HSBasePlugin<{}> implements IOverlay { private readonly hiddenClass; private readonly emulateScrollbarSpace; private readonly isClosePrev; private readonly backdropClasses; private readonly backdropExtraClasses; private readonly animationTarget; private openNextOverlay; private autoHide; private readonly overlayId; overlay: HTMLElement | null; initContainer: HTMLElement | null; isCloseWhenClickInside: boolean; isTabAccessibilityLimited: boolean; isLayoutAffect: boolean; hasAutofocus: boolean; hasAbilityToCloseOnBackdropClick: boolean; openedBreakpoint: number | null; autoClose: number | null; moveOverlayToBody: number | null; constructor(el: HTMLElement, options?: IOverlayOptions, events?: {}); private init; private hideAuto; private checkTimer; private buildBackdrop; private destroyBackdrop; private focusElement; private getScrollbarSize; open(): false | Promise<void>; close(forceClose?: boolean): Promise<unknown>; static getInstance(target: HTMLElement, isInstance?: boolean): HTMLElement | ICollectionItem<HSOverlay>; static autoInit(): void; static open(target: HTMLElement): void; static close(target: HTMLElement): void; static setOpened(breakpoint: number, el: ICollectionItem<HSOverlay>): void; static accessibility(evt: KeyboardEvent): boolean; static onEscape(target: ICollectionItem<HSOverlay>): void; static onTab(target: ICollectionItem<HSOverlay>, focusableElements: HTMLElement[]): boolean; static on(evt: string, target: HTMLElement, cb: Function): void; } export { HSOverlay as default, }; export {};