UNPKG

smartwizard

Version:

A modern and accessible step wizard plugin for jQuery

61 lines (60 loc) 1.25 kB
/** * Event namespace */ export declare const EVENT_NAMESPACE = ".sw"; /** * Events used on the plugin */ export declare const EVENTS: { CLICK: string; KEYUP: string; HASHCHANGE: string; SCROLLEND: string; WHEEL: string; RESIZE: string; ANIMATIONEND: string; ANIMATIONCANCEL: string; TOUCHSTART: string; TOUCHEND: string; INITIALIZED: string; LOADED: string; LEAVESTEP: string; SHOWSTEP: string; }; export declare const STEP_DIRECTION: { readonly Forward: "forward"; readonly Backward: "backward"; }; export declare const CONTENT_DIRECTION: { readonly LeftToRight: "ltr"; readonly RightToLeft: "rtl"; }; export declare const STEP_POSITION: { readonly First: "first"; readonly Middle: "middle"; readonly Last: "last"; }; export declare const TOOLBAR_POSITION: { readonly None: "none"; readonly Top: "top"; readonly Bottom: "bottom"; readonly Both: "both"; }; /** * CSS Custom Properties */ export declare const CSS_PROPERTIES: { PROGRESS_PERCENTAGE: string; }; /** * Selectors used */ export declare const SELECTORS: { TOOLBAR_ELM: string; }; /** * Data attributes used */ export declare const DATA_ATTRIBUTES: { THEME: string; };