sweetalert2
Version:
A beautiful, responsive, customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes, supported fork of sweetalert
40 lines (36 loc) • 1.44 kB
JavaScript
/**
* @typedef { import('./SweetAlert').SweetAlert } SweetAlert
* @typedef { import('sweetalert2').SweetAlertOptions } SweetAlertOptions
* @typedef { import('sweetalert2').SweetAlertIcon } SweetAlertIcon
* @typedef { import('sweetalert2').SweetAlertInput } SweetAlertInput
* @typedef { import('sweetalert2').SweetAlertResult } SweetAlertResult
* @typedef { import('sweetalert2').SweetAlertOptions['inputValue'] } SweetAlertInputValue
*/
/**
* @typedef { import('./utils/Timer').default } Timer
*/
/**
* @typedef GlobalState
* @property {SweetAlert} [currentInstance]
* @property {Element | null} [previousActiveElement]
* @property {Timer} [timeout]
* @property {NodeJS.Timeout} [restoreFocusTimeout]
* @property {(this: HTMLElement, event: KeyboardEvent) => any} [keydownHandler]
* @property {HTMLElement | (Window & typeof globalThis)} [keydownTarget]
* @property {boolean} [keydownHandlerAdded]
* @property {boolean} [keydownListenerCapture]
* @property {Function} [swalCloseEventFinishedCallback]
*/
/**
* @typedef DomCache
* @property {HTMLElement} popup
* @property {HTMLElement} container
* @property {HTMLElement} actions
* @property {HTMLElement} confirmButton
* @property {HTMLElement} denyButton
* @property {HTMLElement} cancelButton
* @property {HTMLElement} loader
* @property {HTMLElement} closeButton
* @property {HTMLElement} validationMessage
* @property {HTMLElement} progressSteps
*/