Greasy Fork is available in English.
🍞 Показать модальное окно для чтения
Вам также может понравится ChatGPT Авто-Продолжение 🔄.
- // ==UserScript==
- // @name chatgpt-read-mode
- // @description 🍞 show a modal for Read, also support Claude
- // @author mefengl
- // @version 0.2.16
- // @namespace https://github.com/mefengl
- // @require https://cdn.jsdelivr.net/npm/@mozilla/readability@0.4.3/Readability.min.js
- // @icon https://www.google.com/s2/favicons?sz=64&domain=openai.com
- // @license MIT
- // @match https://chatgpt.com/*
- // @grant GM_registerMenuCommand
- // @name:en ChatGPT Read Mode
- // @description:en 🍞 Show a modal for Read
- // @name:zh-CN ChatGPT 阅读模式
- // @description:zh-CN 🍞 显示一个用于阅读的模态框
- // @name:es Modo de lectura de ChatGPT
- // @description:es 🍞 Mostrar un modal para Leer
- // @name:hi ChatGPT पढ़ने का मोड
- // @description:hi 🍞 पढ़ने के लिए एक मोडल दिखाएं
- // @name:ar وضع القراءة لـ ChatGPT
- // @description:ar 🍞 عرض نموذج للقراءة
- // @name:pt Modo de leitura do ChatGPT
- // @description:pt 🍞 Mostre um modal para Leitura
- // @name:ru Режим чтения ChatGPT
- // @description:ru 🍞 Показать модальное окно для чтения
- // @name:ja ChatGPTの読み取りモード
- // @description:ja 🍞 閲覧用のモーダルを表示する
- // @name:de ChatGPT-Lesemodus
- // @description:de 🍞 Zeigen Sie ein Modal für Lesen an
- // @name:fr Mode de lecture ChatGPT
- // @description:fr 🍞 Afficher une fenêtre modale pour la lecture
- // ==/UserScript==
- "use strict";
- (() => {
- var __create = Object.create;
- var __defProp = Object.defineProperty;
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
- var __getOwnPropNames = Object.getOwnPropertyNames;
- var __getProtoOf = Object.getPrototypeOf;
- var __hasOwnProp = Object.prototype.hasOwnProperty;
- var __commonJS = (cb, mod) => function __require() {
- return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
- };
- var __copyProps = (to, from, except, desc) => {
- if (from && typeof from === "object" || typeof from === "function") {
- for (let key of __getOwnPropNames(from))
- if (!__hasOwnProp.call(to, key) && key !== except)
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
- }
- return to;
- };
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
- // If the importer is in node compatibility mode or this is not an ESM
- // file that has been converted to a CommonJS file using a Babel-
- // compatible transform (i.e. "__esModule" has not been set), then set
- // "default" to the CommonJS "module.exports" for node compatibility.
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
- mod
- ));
- var __async = (__this, __arguments, generator) => {
- return new Promise((resolve, reject) => {
- var fulfilled = (value) => {
- try {
- step(generator.next(value));
- } catch (e) {
- reject(e);
- }
- };
- var rejected = (value) => {
- try {
- step(generator.throw(value));
- } catch (e) {
- reject(e);
- }
- };
- var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
- step((generator = generator.apply(__this, __arguments)).next());
- });
- };
- // ../../node_modules/.pnpm/sweetalert2@11.7.18_patch_hash=f6fyhrnxzcw7s2jwg2q3jn75v4/node_modules/sweetalert2/dist/sweetalert2.all.js
- var require_sweetalert2_all = __commonJS({
- "../../node_modules/.pnpm/sweetalert2@11.7.18_patch_hash=f6fyhrnxzcw7s2jwg2q3jn75v4/node_modules/sweetalert2/dist/sweetalert2.all.js"(exports, module) {
- (function(global, factory) {
- typeof exports === "object" && typeof module !== "undefined" ? module.exports = factory() : typeof define === "function" && define.amd ? define(factory) : (global = typeof globalThis !== "undefined" ? globalThis : global || self, global.Sweetalert2 = factory());
- })(exports, function() {
- "use strict";
- const RESTORE_FOCUS_TIMEOUT = 100;
- const globalState = {};
- const focusPreviousActiveElement = () => {
- if (globalState.previousActiveElement instanceof HTMLElement) {
- globalState.previousActiveElement.focus();
- globalState.previousActiveElement = null;
- } else if (document.body) {
- document.body.focus();
- }
- };
- const restoreActiveElement = (returnFocus) => {
- return new Promise((resolve) => {
- if (!returnFocus) {
- return resolve();
- }
- const x = window.scrollX;
- const y = window.scrollY;
- globalState.restoreFocusTimeout = setTimeout(() => {
- focusPreviousActiveElement();
- resolve();
- }, RESTORE_FOCUS_TIMEOUT);
- window.scrollTo(x, y);
- });
- };
- var privateProps = {
- promise: /* @__PURE__ */ new WeakMap(),
- innerParams: /* @__PURE__ */ new WeakMap(),
- domCache: /* @__PURE__ */ new WeakMap()
- };
- const swalPrefix = "swal2-";
- const classNames = ["container", "shown", "height-auto", "iosfix", "popup", "modal", "no-backdrop", "no-transition", "toast", "toast-shown", "show", "hide", "close", "title", "html-container", "actions", "confirm", "deny", "cancel", "default-outline", "footer", "icon", "icon-content", "image", "input", "file", "range", "select", "radio", "checkbox", "label", "textarea", "inputerror", "input-label", "validation-message", "progress-steps", "active-progress-step", "progress-step", "progress-step-line", "loader", "loading", "styled", "top", "top-start", "top-end", "top-left", "top-right", "center", "center-start", "center-end", "center-left", "center-right", "bottom", "bottom-start", "bottom-end", "bottom-left", "bottom-right", "grow-row", "grow-column", "grow-fullscreen", "rtl", "timer-progress-bar", "timer-progress-bar-container", "scrollbar-measure", "icon-success", "icon-warning", "icon-info", "icon-question", "icon-error"];
- const swalClasses = classNames.reduce(
- (acc, className) => {
- acc[className] = swalPrefix + className;
- return acc;
- },
- /** @type {SwalClasses} */
- {}
- );
- const icons = ["success", "warning", "info", "question", "error"];
- const iconTypes = icons.reduce(
- (acc, icon) => {
- acc[icon] = swalPrefix + icon;
- return acc;
- },
- /** @type {SwalIcons} */
- {}
- );
- const consolePrefix = "SweetAlert2:";
- const capitalizeFirstLetter = (str) => str.charAt(0).toUpperCase() + str.slice(1);
- const warn = (message) => {
- console.warn(`${consolePrefix} ${typeof message === "object" ? message.join(" ") : message}`);
- };
- const error = (message) => {
- console.error(`${consolePrefix} ${message}`);
- };
- const previousWarnOnceMessages = [];
- const warnOnce = (message) => {
- if (!previousWarnOnceMessages.includes(message)) {
- previousWarnOnceMessages.push(message);
- warn(message);
- }
- };
- const warnAboutDeprecation = (deprecatedParam, useInstead) => {
- warnOnce(`"${deprecatedParam}" is deprecated and will be removed in the next major release. Please use "${useInstead}" instead.`);
- };
- const callIfFunction = (arg) => typeof arg === "function" ? arg() : arg;
- const hasToPromiseFn = (arg) => arg && typeof arg.toPromise === "function";
- const asPromise = (arg) => hasToPromiseFn(arg) ? arg.toPromise() : Promise.resolve(arg);
- const isPromise = (arg) => arg && Promise.resolve(arg) === arg;
- const getContainer = () => document.body.querySelector(`.${swalClasses.container}`);
- const elementBySelector = (selectorString) => {
- const container = getContainer();
- return container ? container.querySelector(selectorString) : null;
- };
- const elementByClass = (className) => {
- return elementBySelector(`.${className}`);
- };
- const getPopup = () => elementByClass(swalClasses.popup);
- const getIcon = () => elementByClass(swalClasses.icon);
- const getIconContent = () => elementByClass(swalClasses["icon-content"]);
- const getTitle = () => elementByClass(swalClasses.title);
- const getHtmlContainer = () => elementByClass(swalClasses["html-container"]);
- const getImage = () => elementByClass(swalClasses.image);
- const getProgressSteps = () => elementByClass(swalClasses["progress-steps"]);
- const getValidationMessage = () => elementByClass(swalClasses["validation-message"]);
- const getConfirmButton = () => (
- /** @type {HTMLButtonElement} */
- elementBySelector(`.${swalClasses.actions} .${swalClasses.confirm}`)
- );
- const getCancelButton = () => (
- /** @type {HTMLButtonElement} */
- elementBySelector(`.${swalClasses.actions} .${swalClasses.cancel}`)
- );
- const getDenyButton = () => (
- /** @type {HTMLButtonElement} */
- elementBySelector(`.${swalClasses.actions} .${swalClasses.deny}`)
- );
- const getInputLabel = () => elementByClass(swalClasses["input-label"]);
- const getLoader = () => elementBySelector(`.${swalClasses.loader}`);
- const getActions = () => elementByClass(swalClasses.actions);
- const getFooter = () => elementByClass(swalClasses.footer);
- const getTimerProgressBar = () => elementByClass(swalClasses["timer-progress-bar"]);
- const getCloseButton = () => elementByClass(swalClasses.close);
- const focusable = `
- a[href],
- area[href],
- input:not([disabled]),
- select:not([disabled]),
- textarea:not([disabled]),
- button:not([disabled]),
- iframe,
- object,
- embed,
- [tabindex="0"],
- [contenteditable],
- audio[controls],
- video[controls],
- summary
- `;
- const getFocusableElements = () => {
- const popup = getPopup();
- if (!popup) {
- return [];
- }
- const focusableElementsWithTabindex = popup.querySelectorAll('[tabindex]:not([tabindex="-1"]):not([tabindex="0"])');
- const focusableElementsWithTabindexSorted = Array.from(focusableElementsWithTabindex).sort((a, b) => {
- const tabindexA = parseInt(a.getAttribute("tabindex") || "0");
- const tabindexB = parseInt(b.getAttribute("tabindex") || "0");
- if (tabindexA > tabindexB) {
- return 1;
- } else if (tabindexA < tabindexB) {
- return -1;
- }
- return 0;
- });
- const otherFocusableElements = popup.querySelectorAll(focusable);
- const otherFocusableElementsFiltered = Array.from(otherFocusableElements).filter((el) => el.getAttribute("tabindex") !== "-1");
- return [...new Set(focusableElementsWithTabindexSorted.concat(otherFocusableElementsFiltered))].filter((el) => isVisible$1(el));
- };
- const isModal = () => {
- return hasClass(document.body, swalClasses.shown) && !hasClass(document.body, swalClasses["toast-shown"]) && !hasClass(document.body, swalClasses["no-backdrop"]);
- };
- const isToast = () => {
- const popup = getPopup();
- if (!popup) {
- return false;
- }
- return hasClass(popup, swalClasses.toast);
- };
- const isLoading = () => {
- const popup = getPopup();
- if (!popup) {
- return false;
- }
- return popup.hasAttribute("data-loading");
- };
- const setInnerHtml = (elem, html) => {
- elem.textContent = "";
- if (html) {
- const parser = new DOMParser();
- const parsed = parser.parseFromString(html, `text/html`);
- Array.from(parsed.querySelector("head").childNodes).forEach((child) => {
- elem.appendChild(child);
- });
- Array.from(parsed.querySelector("body").childNodes).forEach((child) => {
- if (child instanceof HTMLVideoElement || child instanceof HTMLAudioElement) {
- elem.appendChild(child.cloneNode(true));
- } else {
- elem.appendChild(child);
- }
- });
- }
- };
- const hasClass = (elem, className) => {
- if (!className) {
- return false;
- }
- const classList = className.split(/\s+/);
- for (let i = 0; i < classList.length; i++) {
- if (!elem.classList.contains(classList[i])) {
- return false;
- }
- }
- return true;
- };
- const removeCustomClasses = (elem, params) => {
- Array.from(elem.classList).forEach((className) => {
- if (!Object.values(swalClasses).includes(className) && !Object.values(iconTypes).includes(className) && !Object.values(params.showClass).includes(className)) {
- elem.classList.remove(className);
- }
- });
- };
- const applyCustomClass = (elem, params, className) => {
- removeCustomClasses(elem, params);
- if (params.customClass && params.customClass[className]) {
- if (typeof params.customClass[className] !== "string" && !params.customClass[className].forEach) {
- warn(`Invalid type of customClass.${className}! Expected string or iterable object, got "${typeof params.customClass[className]}"`);
- return;
- }
- addClass(elem, params.customClass[className]);
- }
- };
- const getInput$1 = (popup, inputClass) => {
- if (!inputClass) {
- return null;
- }
- switch (inputClass) {
- case "select":
- case "textarea":
- case "file":
- return popup.querySelector(`.${swalClasses.popup} > .${swalClasses[inputClass]}`);
- case "checkbox":
- return popup.querySelector(`.${swalClasses.popup} > .${swalClasses.checkbox} input`);
- case "radio":
- return popup.querySelector(`.${swalClasses.popup} > .${swalClasses.radio} input:checked`) || popup.querySelector(`.${swalClasses.popup} > .${swalClasses.radio} input:first-child`);
- case "range":
- return popup.querySelector(`.${swalClasses.popup} > .${swalClasses.range} input`);
- default:
- return popup.querySelector(`.${swalClasses.popup} > .${swalClasses.input}`);
- }
- };
- const focusInput = (input) => {
- input.focus();
- if (input.type !== "file") {
- const val = input.value;
- input.value = "";
- input.value = val;
- }
- };
- const toggleClass = (target, classList, condition) => {
- if (!target || !classList) {
- return;
- }
- if (typeof classList === "string") {
- classList = classList.split(/\s+/).filter(Boolean);
- }
- classList.forEach((className) => {
- if (Array.isArray(target)) {
- target.forEach((elem) => {
- condition ? elem.classList.add(className) : elem.classList.remove(className);
- });
- } else {
- condition ? target.classList.add(className) : target.classList.remove(className);
- }
- });
- };
- const addClass = (target, classList) => {
- toggleClass(target, classList, true);
- };
- const removeClass = (target, classList) => {
- toggleClass(target, classList, false);
- };
- const getDirectChildByClass = (elem, className) => {
- const children = Array.from(elem.children);
- for (let i = 0; i < children.length; i++) {
- const child = children[i];
- if (child instanceof HTMLElement && hasClass(child, className)) {
- return child;
- }
- }
- };
- const applyNumericalStyle = (elem, property, value) => {
- if (value === `${parseInt(value)}`) {
- value = parseInt(value);
- }
- if (value || parseInt(value) === 0) {
- elem.style[property] = typeof value === "number" ? `${value}px` : value;
- } else {
- elem.style.removeProperty(property);
- }
- };
- const show = function(elem) {
- let display = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "flex";
- elem && (elem.style.display = display);
- };
- const hide = (elem) => {
- elem && (elem.style.display = "none");
- };
- const setStyle = (parent, selector, property, value) => {
- const el = parent.querySelector(selector);
- if (el) {
- el.style[property] = value;
- }
- };
- const toggle = function(elem, condition) {
- let display = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : "flex";
- condition ? show(elem, display) : hide(elem);
- };
- const isVisible$1 = (elem) => !!(elem && (elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length));
- const allButtonsAreHidden = () => !isVisible$1(getConfirmButton()) && !isVisible$1(getDenyButton()) && !isVisible$1(getCancelButton());
- const isScrollable = (elem) => !!(elem.scrollHeight > elem.clientHeight);
- const hasCssAnimation = (elem) => {
- const style = window.getComputedStyle(elem);
- const animDuration = parseFloat(style.getPropertyValue("animation-duration") || "0");
- const transDuration = parseFloat(style.getPropertyValue("transition-duration") || "0");
- return animDuration > 0 || transDuration > 0;
- };
- const animateTimerProgressBar = function(timer) {
- let reset = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : false;
- const timerProgressBar = getTimerProgressBar();
- if (isVisible$1(timerProgressBar)) {
- if (reset) {
- timerProgressBar.style.transition = "none";
- timerProgressBar.style.width = "100%";
- }
- setTimeout(() => {
- timerProgressBar.style.transition = `width ${timer / 1e3}s linear`;
- timerProgressBar.style.width = "0%";
- }, 10);
- }
- };
- const stopTimerProgressBar = () => {
- const timerProgressBar = getTimerProgressBar();
- const timerProgressBarWidth = parseInt(window.getComputedStyle(timerProgressBar).width);
- timerProgressBar.style.removeProperty("transition");
- timerProgressBar.style.width = "100%";
- const timerProgressBarFullWidth = parseInt(window.getComputedStyle(timerProgressBar).width);
- const timerProgressBarPercent = timerProgressBarWidth / timerProgressBarFullWidth * 100;
- timerProgressBar.style.width = `${timerProgressBarPercent}%`;
- };
- const isNodeEnv = () => typeof window === "undefined" || typeof document === "undefined";
- const sweetHTML = `
- <div aria-labelledby="${swalClasses.title}" aria-describedby="${swalClasses["html-container"]}" class="${swalClasses.popup}" tabindex="-1">
- <button type="button" class="${swalClasses.close}"></button>
- <ul class="${swalClasses["progress-steps"]}"></ul>
- <div class="${swalClasses.icon}"></div>
- <img class="${swalClasses.image}" />
- <h2 class="${swalClasses.title}" id="${swalClasses.title}"></h2>
- <div class="${swalClasses["html-container"]}" id="${swalClasses["html-container"]}"></div>
- <input class="${swalClasses.input}" id="${swalClasses.input}" />
- <input type="file" class="${swalClasses.file}" />
- <div class="${swalClasses.range}">
- <input type="range" />
- <output></output>
- </div>
- <select class="${swalClasses.select}" id="${swalClasses.select}"></select>
- <div class="${swalClasses.radio}"></div>
- <label class="${swalClasses.checkbox}">
- <input type="checkbox" id="${swalClasses.checkbox}" />
- <span class="${swalClasses.label}"></span>
- </label>
- <textarea class="${swalClasses.textarea}" id="${swalClasses.textarea}"></textarea>
- <div class="${swalClasses["validation-message"]}" id="${swalClasses["validation-message"]}"></div>
- <div class="${swalClasses.actions}">
- <div class="${swalClasses.loader}"></div>
- <button type="button" class="${swalClasses.confirm}"></button>
- <button type="button" class="${swalClasses.deny}"></button>
- <button type="button" class="${swalClasses.cancel}"></button>
- </div>
- <div class="${swalClasses.footer}"></div>
- <div class="${swalClasses["timer-progress-bar-container"]}">
- <div class="${swalClasses["timer-progress-bar"]}"></div>
- </div>
- </div>
- `.replace(/(^|\n)\s*/g, "");
- const resetOldContainer = () => {
- const oldContainer = getContainer();
- if (!oldContainer) {
- return false;
- }
- oldContainer.remove();
- removeClass([document.documentElement, document.body], [swalClasses["no-backdrop"], swalClasses["toast-shown"], swalClasses["has-column"]]);
- return true;
- };
- const resetValidationMessage$1 = () => {
- globalState.currentInstance.resetValidationMessage();
- };
- const addInputChangeListeners = () => {
- const popup = getPopup();
- const input = getDirectChildByClass(popup, swalClasses.input);
- const file = getDirectChildByClass(popup, swalClasses.file);
- const range = popup.querySelector(`.${swalClasses.range} input`);
- const rangeOutput = popup.querySelector(`.${swalClasses.range} output`);
- const select = getDirectChildByClass(popup, swalClasses.select);
- const checkbox = popup.querySelector(`.${swalClasses.checkbox} input`);
- const textarea = getDirectChildByClass(popup, swalClasses.textarea);
- input.oninput = resetValidationMessage$1;
- file.onchange = resetValidationMessage$1;
- select.onchange = resetValidationMessage$1;
- checkbox.onchange = resetValidationMessage$1;
- textarea.oninput = resetValidationMessage$1;
- range.oninput = () => {
- resetValidationMessage$1();
- rangeOutput.value = range.value;
- };
- range.onchange = () => {
- resetValidationMessage$1();
- rangeOutput.value = range.value;
- };
- };
- const getTarget = (target) => typeof target === "string" ? document.querySelector(target) : target;
- const setupAccessibility = (params) => {
- const popup = getPopup();
- popup.setAttribute("role", params.toast ? "alert" : "dialog");
- popup.setAttribute("aria-live", params.toast ? "polite" : "assertive");
- if (!params.toast) {
- popup.setAttribute("aria-modal", "true");
- }
- };
- const setupRTL = (targetElement) => {
- if (window.getComputedStyle(targetElement).direction === "rtl") {
- addClass(getContainer(), swalClasses.rtl);
- }
- };
- const init = (params) => {
- const oldContainerExisted = resetOldContainer();
- if (isNodeEnv()) {
- error("SweetAlert2 requires document to initialize");
- return;
- }
- const container = document.createElement("div");
- container.className = swalClasses.container;
- if (oldContainerExisted) {
- addClass(container, swalClasses["no-transition"]);
- }
- setInnerHtml(container, sweetHTML);
- const targetElement = getTarget(params.target);
- targetElement.appendChild(container);
- setupAccessibility(params);
- setupRTL(targetElement);
- addInputChangeListeners();
- };
- const parseHtmlToContainer = (param, target) => {
- if (param instanceof HTMLElement) {
- target.appendChild(param);
- } else if (typeof param === "object") {
- handleObject(param, target);
- } else if (param) {
- setInnerHtml(target, param);
- }
- };
- const handleObject = (param, target) => {
- if (param.jquery) {
- handleJqueryElem(target, param);
- } else {
- setInnerHtml(target, param.toString());
- }
- };
- const handleJqueryElem = (target, elem) => {
- target.textContent = "";
- if (0 in elem) {
- for (let i = 0; i in elem; i++) {
- target.appendChild(elem[i].cloneNode(true));
- }
- } else {
- target.appendChild(elem.cloneNode(true));
- }
- };
- const animationEndEvent = (() => {
- if (isNodeEnv()) {
- return false;
- }
- const testEl = document.createElement("div");
- const transEndEventNames = {
- WebkitAnimation: "webkitAnimationEnd",
- // Chrome, Safari and Opera
- animation: "animationend"
- // Standard syntax
- };
- for (const i in transEndEventNames) {
- if (Object.prototype.hasOwnProperty.call(transEndEventNames, i) && typeof testEl.style[i] !== "undefined") {
- return transEndEventNames[i];
- }
- }
- return false;
- })();
- const renderActions = (instance, params) => {
- const actions = getActions();
- const loader = getLoader();
- if (!actions || !loader) {
- return;
- }
- if (!params.showConfirmButton && !params.showDenyButton && !params.showCancelButton) {
- hide(actions);
- } else {
- show(actions);
- }
- applyCustomClass(actions, params, "actions");
- renderButtons(actions, loader, params);
- setInnerHtml(loader, params.loaderHtml || "");
- applyCustomClass(loader, params, "loader");
- };
- function renderButtons(actions, loader, params) {
- const confirmButton = getConfirmButton();
- const denyButton = getDenyButton();
- const cancelButton = getCancelButton();
- if (!confirmButton || !denyButton || !cancelButton) {
- return;
- }
- renderButton(confirmButton, "confirm", params);
- renderButton(denyButton, "deny", params);
- renderButton(cancelButton, "cancel", params);
- handleButtonsStyling(confirmButton, denyButton, cancelButton, params);
- if (params.reverseButtons) {
- if (params.toast) {
- actions.insertBefore(cancelButton, confirmButton);
- actions.insertBefore(denyButton, confirmButton);
- } else {
- actions.insertBefore(cancelButton, loader);
- actions.insertBefore(denyButton, loader);
- actions.insertBefore(confirmButton, loader);
- }
- }
- }
- function handleButtonsStyling(confirmButton, denyButton, cancelButton, params) {
- if (!params.buttonsStyling) {
- removeClass([confirmButton, denyButton, cancelButton], swalClasses.styled);
- return;
- }
- addClass([confirmButton, denyButton, cancelButton], swalClasses.styled);
- if (params.confirmButtonColor) {
- confirmButton.style.backgroundColor = params.confirmButtonColor;
- addClass(confirmButton, swalClasses["default-outline"]);
- }
- if (params.denyButtonColor) {
- denyButton.style.backgroundColor = params.denyButtonColor;
- addClass(denyButton, swalClasses["default-outline"]);
- }
- if (params.cancelButtonColor) {
- cancelButton.style.backgroundColor = params.cancelButtonColor;
- addClass(cancelButton, swalClasses["default-outline"]);
- }
- }
- function renderButton(button, buttonType, params) {
- const buttonName = (
- /** @type {'Confirm' | 'Deny' | 'Cancel'} */
- capitalizeFirstLetter(buttonType)
- );
- toggle(button, params[`show${buttonName}Button`], "inline-block");
- setInnerHtml(button, params[`${buttonType}ButtonText`] || "");
- button.setAttribute("aria-label", params[`${buttonType}ButtonAriaLabel`] || "");
- button.className = swalClasses[buttonType];
- applyCustomClass(button, params, `${buttonType}Button`);
- }
- const renderCloseButton = (instance, params) => {
- const closeButton = getCloseButton();
- if (!closeButton) {
- return;
- }
- setInnerHtml(closeButton, params.closeButtonHtml || "");
- applyCustomClass(closeButton, params, "closeButton");
- toggle(closeButton, params.showCloseButton);
- closeButton.setAttribute("aria-label", params.closeButtonAriaLabel || "");
- };
- const renderContainer = (instance, params) => {
- const container = getContainer();
- if (!container) {
- return;
- }
- handleBackdropParam(container, params.backdrop);
- handlePositionParam(container, params.position);
- handleGrowParam(container, params.grow);
- applyCustomClass(container, params, "container");
- };
- function handleBackdropParam(container, backdrop) {
- if (typeof backdrop === "string") {
- container.style.background = backdrop;
- } else if (!backdrop) {
- addClass([document.documentElement, document.body], swalClasses["no-backdrop"]);
- }
- }
- function handlePositionParam(container, position) {
- if (!position) {
- return;
- }
- if (position in swalClasses) {
- addClass(container, swalClasses[position]);
- } else {
- warn('The "position" parameter is not valid, defaulting to "center"');
- addClass(container, swalClasses.center);
- }
- }
- function handleGrowParam(container, grow) {
- if (!grow) {
- return;
- }
- addClass(container, swalClasses[`grow-${grow}`]);
- }
- const inputClasses = ["input", "file", "range", "select", "radio", "checkbox", "textarea"];
- const renderInput = (instance, params) => {
- const popup = getPopup();
- const innerParams = privateProps.innerParams.get(instance);
- const rerender = !innerParams || params.input !== innerParams.input;
- inputClasses.forEach((inputClass) => {
- const inputContainer = getDirectChildByClass(popup, swalClasses[inputClass]);
- setAttributes(inputClass, params.inputAttributes);
- inputContainer.className = swalClasses[inputClass];
- if (rerender) {
- hide(inputContainer);
- }
- });
- if (params.input) {
- if (rerender) {
- showInput(params);
- }
- setCustomClass(params);
- }
- };
- const showInput = (params) => {
- if (!renderInputType[params.input]) {
- error(`Unexpected type of input! Expected "text", "email", "password", "number", "tel", "select", "radio", "checkbox", "textarea", "file" or "url", got "${params.input}"`);
- return;
- }
- const inputContainer = getInputContainer(params.input);
- const input = renderInputType[params.input](inputContainer, params);
- show(inputContainer);
- if (params.inputAutoFocus) {
- setTimeout(() => {
- focusInput(input);
- });
- }
- };
- const removeAttributes = (input) => {
- for (let i = 0; i < input.attributes.length; i++) {
- const attrName = input.attributes[i].name;
- if (!["id", "type", "value", "style"].includes(attrName)) {
- input.removeAttribute(attrName);
- }
- }
- };
- const setAttributes = (inputClass, inputAttributes) => {
- const input = getInput$1(getPopup(), inputClass);
- if (!input) {
- return;
- }
- removeAttributes(input);
- for (const attr in inputAttributes) {
- input.setAttribute(attr, inputAttributes[attr]);
- }
- };
- const setCustomClass = (params) => {
- const inputContainer = getInputContainer(params.input);
- if (typeof params.customClass === "object") {
- addClass(inputContainer, params.customClass.input);
- }
- };
- const setInputPlaceholder = (input, params) => {
- if (!input.placeholder || params.inputPlaceholder) {
- input.placeholder = params.inputPlaceholder;
- }
- };
- const setInputLabel = (input, prependTo, params) => {
- if (params.inputLabel) {
- const label = document.createElement("label");
- const labelClass = swalClasses["input-label"];
- label.setAttribute("for", input.id);
- label.className = labelClass;
- if (typeof params.customClass === "object") {
- addClass(label, params.customClass.inputLabel);
- }
- label.innerText = params.inputLabel;
- prependTo.insertAdjacentElement("beforebegin", label);
- }
- };
- const getInputContainer = (inputType) => {
- return getDirectChildByClass(getPopup(), swalClasses[inputType] || swalClasses.input);
- };
- const checkAndSetInputValue = (input, inputValue) => {
- if (["string", "number"].includes(typeof inputValue)) {
- input.value = `${inputValue}`;
- } else if (!isPromise(inputValue)) {
- warn(`Unexpected type of inputValue! Expected "string", "number" or "Promise", got "${typeof inputValue}"`);
- }
- };
- const renderInputType = {};
- renderInputType.text = renderInputType.email = renderInputType.password = renderInputType.number = renderInputType.tel = renderInputType.url = (input, params) => {
- checkAndSetInputValue(input, params.inputValue);
- setInputLabel(input, input, params);
- setInputPlaceholder(input, params);
- input.type = params.input;
- return input;
- };
- renderInputType.file = (input, params) => {
- setInputLabel(input, input, params);
- setInputPlaceholder(input, params);
- return input;
- };
- renderInputType.range = (range, params) => {
- const rangeInput = range.querySelector("input");
- const rangeOutput = range.querySelector("output");
- checkAndSetInputValue(rangeInput, params.inputValue);
- rangeInput.type = params.input;
- checkAndSetInputValue(rangeOutput, params.inputValue);
- setInputLabel(rangeInput, range, params);
- return range;
- };
- renderInputType.select = (select, params) => {
- select.textContent = "";
- if (params.inputPlaceholder) {
- const placeholder = document.createElement("option");
- setInnerHtml(placeholder, params.inputPlaceholder);
- placeholder.value = "";
- placeholder.disabled = true;
- placeholder.selected = true;
- select.appendChild(placeholder);
- }
- setInputLabel(select, select, params);
- return select;
- };
- renderInputType.radio = (radio) => {
- radio.textContent = "";
- return radio;
- };
- renderInputType.checkbox = (checkboxContainer, params) => {
- const checkbox = getInput$1(getPopup(), "checkbox");
- checkbox.value = "1";
- checkbox.checked = Boolean(params.inputValue);
- const label = checkboxContainer.querySelector("span");
- setInnerHtml(label, params.inputPlaceholder);
- return checkbox;
- };
- renderInputType.textarea = (textarea, params) => {
- checkAndSetInputValue(textarea, params.inputValue);
- setInputPlaceholder(textarea, params);
- setInputLabel(textarea, textarea, params);
- const getMargin = (el) => parseInt(window.getComputedStyle(el).marginLeft) + parseInt(window.getComputedStyle(el).marginRight);
- setTimeout(() => {
- if ("MutationObserver" in window) {
- const initialPopupWidth = parseInt(window.getComputedStyle(getPopup()).width);
- const textareaResizeHandler = () => {
- if (!document.body.contains(textarea)) {
- return;
- }
- const textareaWidth = textarea.offsetWidth + getMargin(textarea);
- if (textareaWidth > initialPopupWidth) {
- getPopup().style.width = `${textareaWidth}px`;
- } else {
- applyNumericalStyle(getPopup(), "width", params.width);
- }
- };
- new MutationObserver(textareaResizeHandler).observe(textarea, {
- attributes: true,
- attributeFilter: ["style"]
- });
- }
- });
- return textarea;
- };
- const renderContent = (instance, params) => {
- const htmlContainer = getHtmlContainer();
- if (!htmlContainer) {
- return;
- }
- applyCustomClass(htmlContainer, params, "htmlContainer");
- if (params.html) {
- parseHtmlToContainer(params.html, htmlContainer);
- show(htmlContainer, "block");
- } else if (params.text) {
- htmlContainer.textContent = params.text;
- show(htmlContainer, "block");
- } else {
- hide(htmlContainer);
- }
- renderInput(instance, params);
- };
- const renderFooter = (instance, params) => {
- const footer = getFooter();
- if (!footer) {
- return;
- }
- toggle(footer, params.footer);
- if (params.footer) {
- parseHtmlToContainer(params.footer, footer);
- }
- applyCustomClass(footer, params, "footer");
- };
- const renderIcon = (instance, params) => {
- const innerParams = privateProps.innerParams.get(instance);
- const icon = getIcon();
- if (!icon) {
- return;
- }
- if (innerParams && params.icon === innerParams.icon) {
- setContent(icon, params);
- applyStyles(icon, params);
- return;
- }
- if (!params.icon && !params.iconHtml) {
- hide(icon);
- return;
- }
- if (params.icon && Object.keys(iconTypes).indexOf(params.icon) === -1) {
- error(`Unknown icon! Expected "success", "error", "warning", "info" or "question", got "${params.icon}"`);
- hide(icon);
- return;
- }
- show(icon);
- setContent(icon, params);
- applyStyles(icon, params);
- addClass(icon, params.showClass && params.showClass.icon);
- };
- const applyStyles = (icon, params) => {
- for (const [iconType, iconClassName] of Object.entries(iconTypes)) {
- if (params.icon !== iconType) {
- removeClass(icon, iconClassName);
- }
- }
- addClass(icon, params.icon && iconTypes[params.icon]);
- setColor(icon, params);
- adjustSuccessIconBackgroundColor();
- applyCustomClass(icon, params, "icon");
- };
- const adjustSuccessIconBackgroundColor = () => {
- const popup = getPopup();
- if (!popup) {
- return;
- }
- const popupBackgroundColor = window.getComputedStyle(popup).getPropertyValue("background-color");
- const successIconParts = popup.querySelectorAll("[class^=swal2-success-circular-line], .swal2-success-fix");
- for (let i = 0; i < successIconParts.length; i++) {
- successIconParts[i].style.backgroundColor = popupBackgroundColor;
- }
- };
- const successIconHtml = `
- <div class="swal2-success-circular-line-left"></div>
- <span class="swal2-success-line-tip"></span> <span class="swal2-success-line-long"></span>
- <div class="swal2-success-ring"></div> <div class="swal2-success-fix"></div>
- <div class="swal2-success-circular-line-right"></div>
- `;
- const errorIconHtml = `
- <span class="swal2-x-mark">
- <span class="swal2-x-mark-line-left"></span>
- <span class="swal2-x-mark-line-right"></span>
- </span>
- `;
- const setContent = (icon, params) => {
- if (!params.icon) {
- return;
- }
- let oldContent = icon.innerHTML;
- let newContent;
- if (params.iconHtml) {
- newContent = iconContent(params.iconHtml);
- } else if (params.icon === "success") {
- newContent = successIconHtml;
- oldContent = oldContent.replace(/ style=".*?"/g, "");
- } else if (params.icon === "error") {
- newContent = errorIconHtml;
- } else {
- const defaultIconHtml = {
- question: "?",
- warning: "!",
- info: "i"
- };
- newContent = iconContent(defaultIconHtml[params.icon]);
- }
- if (oldContent.trim() !== newContent.trim()) {
- setInnerHtml(icon, newContent);
- }
- };
- const setColor = (icon, params) => {
- if (!params.iconColor) {
- return;
- }
- icon.style.color = params.iconColor;
- icon.style.borderColor = params.iconColor;
- for (const sel of [".swal2-success-line-tip", ".swal2-success-line-long", ".swal2-x-mark-line-left", ".swal2-x-mark-line-right"]) {
- setStyle(icon, sel, "backgroundColor", params.iconColor);
- }
- setStyle(icon, ".swal2-success-ring", "borderColor", params.iconColor);
- };
- const iconContent = (content) => `<div class="${swalClasses["icon-content"]}">${content}</div>`;
- const renderImage = (instance, params) => {
- const image = getImage();
- if (!image) {
- return;
- }
- if (!params.imageUrl) {
- hide(image);
- return;
- }
- show(image, "");
- image.setAttribute("src", params.imageUrl);
- image.setAttribute("alt", params.imageAlt || "");
- applyNumericalStyle(image, "width", params.imageWidth);
- applyNumericalStyle(image, "height", params.imageHeight);
- image.className = swalClasses.image;
- applyCustomClass(image, params, "image");
- };
- const renderPopup = (instance, params) => {
- const container = getContainer();
- const popup = getPopup();
- if (!container || !popup) {
- return;
- }
- if (params.toast) {
- applyNumericalStyle(container, "width", params.width);
- popup.style.width = "100%";
- const loader = getLoader();
- loader && popup.insertBefore(loader, getIcon());
- } else {
- applyNumericalStyle(popup, "width", params.width);
- }
- applyNumericalStyle(popup, "padding", params.padding);
- if (params.color) {
- popup.style.color = params.color;
- }
- if (params.background) {
- popup.style.background = params.background;
- }
- hide(getValidationMessage());
- addClasses$1(popup, params);
- };
- const addClasses$1 = (popup, params) => {
- const showClass = params.showClass || {};
- popup.className = `${swalClasses.popup} ${isVisible$1(popup) ? showClass.popup : ""}`;
- if (params.toast) {
- addClass([document.documentElement, document.body], swalClasses["toast-shown"]);
- addClass(popup, swalClasses.toast);
- } else {
- addClass(popup, swalClasses.modal);
- }
- applyCustomClass(popup, params, "popup");
- if (typeof params.customClass === "string") {
- addClass(popup, params.customClass);
- }
- if (params.icon) {
- addClass(popup, swalClasses[`icon-${params.icon}`]);
- }
- };
- const renderProgressSteps = (instance, params) => {
- const progressStepsContainer = getProgressSteps();
- if (!progressStepsContainer) {
- return;
- }
- const {
- progressSteps,
- currentProgressStep
- } = params;
- if (!progressSteps || progressSteps.length === 0 || currentProgressStep === void 0) {
- hide(progressStepsContainer);
- return;
- }
- show(progressStepsContainer);
- progressStepsContainer.textContent = "";
- if (currentProgressStep >= progressSteps.length) {
- warn("Invalid currentProgressStep parameter, it should be less than progressSteps.length (currentProgressStep like JS arrays starts from 0)");
- }
- progressSteps.forEach((step, index) => {
- const stepEl = createStepElement(step);
- progressStepsContainer.appendChild(stepEl);
- if (index === currentProgressStep) {
- addClass(stepEl, swalClasses["active-progress-step"]);
- }
- if (index !== progressSteps.length - 1) {
- const lineEl = createLineElement(params);
- progressStepsContainer.appendChild(lineEl);
- }
- });
- };
- const createStepElement = (step) => {
- const stepEl = document.createElement("li");
- addClass(stepEl, swalClasses["progress-step"]);
- setInnerHtml(stepEl, step);
- return stepEl;
- };
- const createLineElement = (params) => {
- const lineEl = document.createElement("li");
- addClass(lineEl, swalClasses["progress-step-line"]);
- if (params.progressStepsDistance) {
- applyNumericalStyle(lineEl, "width", params.progressStepsDistance);
- }
- return lineEl;
- };
- const renderTitle = (instance, params) => {
- const title = getTitle();
- if (!title) {
- return;
- }
- toggle(title, params.title || params.titleText, "block");
- if (params.title) {
- parseHtmlToContainer(params.title, title);
- }
- if (params.titleText) {
- title.innerText = params.titleText;
- }
- applyCustomClass(title, params, "title");
- };
- const render = (instance, params) => {
- renderPopup(instance, params);
- renderContainer(instance, params);
- renderProgressSteps(instance, params);
- renderIcon(instance, params);
- renderImage(instance, params);
- renderTitle(instance, params);
- renderCloseButton(instance, params);
- renderContent(instance, params);
- renderActions(instance, params);
- renderFooter(instance, params);
- const popup = getPopup();
- if (typeof params.didRender === "function" && popup) {
- params.didRender(popup);
- }
- };
- const isVisible = () => {
- return isVisible$1(getPopup());
- };
- const clickConfirm = () => getConfirmButton() && getConfirmButton().click();
- const clickDeny = () => getDenyButton() && getDenyButton().click();
- const clickCancel = () => getCancelButton() && getCancelButton().click();
- const DismissReason = Object.freeze({
- cancel: "cancel",
- backdrop: "backdrop",
- close: "close",
- esc: "esc",
- timer: "timer"
- });
- const removeKeydownHandler = (globalState2) => {
- if (globalState2.keydownTarget && globalState2.keydownHandlerAdded) {
- globalState2.keydownTarget.removeEventListener("keydown", globalState2.keydownHandler, {
- capture: globalState2.keydownListenerCapture
- });
- globalState2.keydownHandlerAdded = false;
- }
- };
- const addKeydownHandler = (instance, globalState2, innerParams, dismissWith) => {
- removeKeydownHandler(globalState2);
- if (!innerParams.toast) {
- globalState2.keydownHandler = (e) => keydownHandler(instance, e, dismissWith);
- globalState2.keydownTarget = innerParams.keydownListenerCapture ? window : getPopup();
- globalState2.keydownListenerCapture = innerParams.keydownListenerCapture;
- globalState2.keydownTarget.addEventListener("keydown", globalState2.keydownHandler, {
- capture: globalState2.keydownListenerCapture
- });
- globalState2.keydownHandlerAdded = true;
- }
- };
- const setFocus = (index, increment) => {
- const focusableElements = getFocusableElements();
- if (focusableElements.length) {
- index = index + increment;
- if (index === focusableElements.length) {
- index = 0;
- } else if (index === -1) {
- index = focusableElements.length - 1;
- }
- focusableElements[index].focus();
- return;
- }
- getPopup().focus();
- };
- const arrowKeysNextButton = ["ArrowRight", "ArrowDown"];
- const arrowKeysPreviousButton = ["ArrowLeft", "ArrowUp"];
- const keydownHandler = (instance, event, dismissWith) => {
- const innerParams = privateProps.innerParams.get(instance);
- if (!innerParams) {
- return;
- }
- if (event.isComposing || event.keyCode === 229) {
- return;
- }
- if (innerParams.stopKeydownPropagation) {
- event.stopPropagation();
- }
- if (event.key === "Enter") {
- handleEnter(instance, event, innerParams);
- } else if (event.key === "Tab") {
- handleTab(event);
- } else if ([...arrowKeysNextButton, ...arrowKeysPreviousButton].includes(event.key)) {
- handleArrows(event.key);
- } else if (event.key === "Escape") {
- handleEsc(event, innerParams, dismissWith);
- }
- };
- const handleEnter = (instance, event, innerParams) => {
- if (!callIfFunction(innerParams.allowEnterKey)) {
- return;
- }
- if (event.target && instance.getInput() && event.target instanceof HTMLElement && event.target.outerHTML === instance.getInput().outerHTML) {
- if (["textarea", "file"].includes(innerParams.input)) {
- return;
- }
- clickConfirm();
- event.preventDefault();
- }
- };
- const handleTab = (event) => {
- const targetElement = event.target;
- const focusableElements = getFocusableElements();
- let btnIndex = -1;
- for (let i = 0; i < focusableElements.length; i++) {
- if (targetElement === focusableElements[i]) {
- btnIndex = i;
- break;
- }
- }
- if (!event.shiftKey) {
- setFocus(btnIndex, 1);
- } else {
- setFocus(btnIndex, -1);
- }
- event.stopPropagation();
- event.preventDefault();
- };
- const handleArrows = (key) => {
- const confirmButton = getConfirmButton();
- const denyButton = getDenyButton();
- const cancelButton = getCancelButton();
- const buttons = [confirmButton, denyButton, cancelButton];
- if (document.activeElement instanceof HTMLElement && !buttons.includes(document.activeElement)) {
- return;
- }
- const sibling = arrowKeysNextButton.includes(key) ? "nextElementSibling" : "previousElementSibling";
- let buttonToFocus = document.activeElement;
- for (let i = 0; i < getActions().children.length; i++) {
- buttonToFocus = buttonToFocus[sibling];
- if (!buttonToFocus) {
- return;
- }
- if (buttonToFocus instanceof HTMLButtonElement && isVisible$1(buttonToFocus)) {
- break;
- }
- }
- if (buttonToFocus instanceof HTMLButtonElement) {
- buttonToFocus.focus();
- }
- };
- const handleEsc = (event, innerParams, dismissWith) => {
- if (callIfFunction(innerParams.allowEscapeKey)) {
- event.preventDefault();
- dismissWith(DismissReason.esc);
- }
- };
- var privateMethods = {
- swalPromiseResolve: /* @__PURE__ */ new WeakMap(),
- swalPromiseReject: /* @__PURE__ */ new WeakMap()
- };
- const setAriaHidden = () => {
- const bodyChildren = Array.from(document.body.children);
- bodyChildren.forEach((el) => {
- if (el === getContainer() || el.contains(getContainer())) {
- return;
- }
- if (el.hasAttribute("aria-hidden")) {
- el.setAttribute("data-previous-aria-hidden", el.getAttribute("aria-hidden") || "");
- }
- el.setAttribute("aria-hidden", "true");
- });
- };
- const unsetAriaHidden = () => {
- const bodyChildren = Array.from(document.body.children);
- bodyChildren.forEach((el) => {
- if (el.hasAttribute("data-previous-aria-hidden")) {
- el.setAttribute("aria-hidden", el.getAttribute("data-previous-aria-hidden") || "");
- el.removeAttribute("data-previous-aria-hidden");
- } else {
- el.removeAttribute("aria-hidden");
- }
- });
- };
- const isSafariOrIOS = typeof window !== "undefined" && !!window.GestureEvent;
- const iOSfix = () => {
- if (isSafariOrIOS && !hasClass(document.body, swalClasses.iosfix)) {
- const offset = document.body.scrollTop;
- document.body.style.top = `${offset * -1}px`;
- addClass(document.body, swalClasses.iosfix);
- lockBodyScroll();
- }
- };
- const lockBodyScroll = () => {
- const container = getContainer();
- let preventTouchMove;
- container.ontouchstart = (event) => {
- preventTouchMove = shouldPreventTouchMove(event);
- };
- container.ontouchmove = (event) => {
- if (preventTouchMove) {
- event.preventDefault();
- event.stopPropagation();
- }
- };
- };
- const shouldPreventTouchMove = (event) => {
- const target = event.target;
- const container = getContainer();
- if (isStylus(event) || isZoom(event)) {
- return false;
- }
- if (target === container) {
- return true;
- }
- if (!isScrollable(container) && target instanceof HTMLElement && target.tagName !== "INPUT" && // #1603
- target.tagName !== "TEXTAREA" && // #2266
- !(isScrollable(getHtmlContainer()) && // #1944
- getHtmlContainer().contains(target))) {
- return true;
- }
- return false;
- };
- const isStylus = (event) => {
- return event.touches && event.touches.length && event.touches[0].touchType === "stylus";
- };
- const isZoom = (event) => {
- return event.touches && event.touches.length > 1;
- };
- const undoIOSfix = () => {
- if (hasClass(document.body, swalClasses.iosfix)) {
- const offset = parseInt(document.body.style.top, 10);
- removeClass(document.body, swalClasses.iosfix);
- document.body.style.top = "";
- document.body.scrollTop = offset * -1;
- }
- };
- const measureScrollbar = () => {
- const scrollDiv = document.createElement("div");
- scrollDiv.className = swalClasses["scrollbar-measure"];
- document.body.appendChild(scrollDiv);
- const scrollbarWidth = scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth;
- document.body.removeChild(scrollDiv);
- return scrollbarWidth;
- };
- let previousBodyPadding = null;
- const fixScrollbar = () => {
- if (previousBodyPadding !== null) {
- return;
- }
- if (document.body.scrollHeight > window.innerHeight) {
- previousBodyPadding = parseInt(window.getComputedStyle(document.body).getPropertyValue("padding-right"));
- document.body.style.paddingRight = `${previousBodyPadding + measureScrollbar()}px`;
- }
- };
- const undoScrollbar = () => {
- if (previousBodyPadding !== null) {
- document.body.style.paddingRight = `${previousBodyPadding}px`;
- previousBodyPadding = null;
- }
- };
- function removePopupAndResetState(instance, container, returnFocus, didClose) {
- if (isToast()) {
- triggerDidCloseAndDispose(instance, didClose);
- } else {
- restoreActiveElement(returnFocus).then(() => triggerDidCloseAndDispose(instance, didClose));
- removeKeydownHandler(globalState);
- }
- if (isSafariOrIOS) {
- container.setAttribute("style", "display:none !important");
- container.removeAttribute("class");
- container.innerHTML = "";
- } else {
- container.remove();
- }
- if (isModal()) {
- undoScrollbar();
- undoIOSfix();
- unsetAriaHidden();
- }
- removeBodyClasses();
- }
- function removeBodyClasses() {
- removeClass([document.documentElement, document.body], [swalClasses.shown, swalClasses["height-auto"], swalClasses["no-backdrop"], swalClasses["toast-shown"]]);
- }
- function close(resolveValue) {
- resolveValue = prepareResolveValue(resolveValue);
- const swalPromiseResolve = privateMethods.swalPromiseResolve.get(this);
- const didClose = triggerClosePopup(this);
- if (this.isAwaitingPromise) {
- if (!resolveValue.isDismissed) {
- handleAwaitingPromise(this);
- swalPromiseResolve(resolveValue);
- }
- } else if (didClose) {
- swalPromiseResolve(resolveValue);
- }
- }
- const triggerClosePopup = (instance) => {
- const popup = getPopup();
- if (!popup) {
- return false;
- }
- const innerParams = privateProps.innerParams.get(instance);
- if (!innerParams || hasClass(popup, innerParams.hideClass.popup)) {
- return false;
- }
- removeClass(popup, innerParams.showClass.popup);
- addClass(popup, innerParams.hideClass.popup);
- const backdrop = getContainer();
- removeClass(backdrop, innerParams.showClass.backdrop);
- addClass(backdrop, innerParams.hideClass.backdrop);
- handlePopupAnimation(instance, popup, innerParams);
- return true;
- };
- function rejectPromise(error2) {
- const rejectPromise2 = privateMethods.swalPromiseReject.get(this);
- handleAwaitingPromise(this);
- if (rejectPromise2) {
- rejectPromise2(error2);
- }
- }
- const handleAwaitingPromise = (instance) => {
- if (instance.isAwaitingPromise) {
- delete instance.isAwaitingPromise;
- if (!privateProps.innerParams.get(instance)) {
- instance._destroy();
- }
- }
- };
- const prepareResolveValue = (resolveValue) => {
- if (typeof resolveValue === "undefined") {
- return {
- isConfirmed: false,
- isDenied: false,
- isDismissed: true
- };
- }
- return Object.assign({
- isConfirmed: false,
- isDenied: false,
- isDismissed: false
- }, resolveValue);
- };
- const handlePopupAnimation = (instance, popup, innerParams) => {
- const container = getContainer();
- const animationIsSupported = animationEndEvent && hasCssAnimation(popup);
- if (typeof innerParams.willClose === "function") {
- innerParams.willClose(popup);
- }
- if (animationIsSupported) {
- animatePopup(instance, popup, container, innerParams.returnFocus, innerParams.didClose);
- } else {
- removePopupAndResetState(instance, container, innerParams.returnFocus, innerParams.didClose);
- }
- };
- const animatePopup = (instance, popup, container, returnFocus, didClose) => {
- globalState.swalCloseEventFinishedCallback = removePopupAndResetState.bind(null, instance, container, returnFocus, didClose);
- popup.addEventListener(animationEndEvent, function(e) {
- if (e.target === popup) {
- globalState.swalCloseEventFinishedCallback();
- delete globalState.swalCloseEventFinishedCallback;
- }
- });
- };
- const triggerDidCloseAndDispose = (instance, didClose) => {
- setTimeout(() => {
- if (typeof didClose === "function") {
- didClose.bind(instance.params)();
- }
- if (instance._destroy) {
- instance._destroy();
- }
- });
- };
- const showLoading = (buttonToReplace) => {
- let popup = getPopup();
- if (!popup) {
- new Swal2();
- }
- popup = getPopup();
- const loader = getLoader();
- if (isToast()) {
- hide(getIcon());
- } else {
- replaceButton(popup, buttonToReplace);
- }
- show(loader);
- popup.setAttribute("data-loading", "true");
- popup.setAttribute("aria-busy", "true");
- popup.focus();
- };
- const replaceButton = (popup, buttonToReplace) => {
- const actions = getActions();
- const loader = getLoader();
- if (!buttonToReplace && isVisible$1(getConfirmButton())) {
- buttonToReplace = getConfirmButton();
- }
- show(actions);
- if (buttonToReplace) {
- hide(buttonToReplace);
- loader.setAttribute("data-button-to-replace", buttonToReplace.className);
- }
- loader.parentNode.insertBefore(loader, buttonToReplace);
- addClass([popup, actions], swalClasses.loading);
- };
- const handleInputOptionsAndValue = (instance, params) => {
- if (params.input === "select" || params.input === "radio") {
- handleInputOptions(instance, params);
- } else if (["text", "email", "number", "tel", "textarea"].includes(params.input) && (hasToPromiseFn(params.inputValue) || isPromise(params.inputValue))) {
- showLoading(getConfirmButton());
- handleInputValue(instance, params);
- }
- };
- const getInputValue = (instance, innerParams) => {
- const input = instance.getInput();
- if (!input) {
- return null;
- }
- switch (innerParams.input) {
- case "checkbox":
- return getCheckboxValue(input);
- case "radio":
- return getRadioValue(input);
- case "file":
- return getFileValue(input);
- default:
- return innerParams.inputAutoTrim ? input.value.trim() : input.value;
- }
- };
- const getCheckboxValue = (input) => input.checked ? 1 : 0;
- const getRadioValue = (input) => input.checked ? input.value : null;
- const getFileValue = (input) => input.files.length ? input.getAttribute("multiple") !== null ? input.files : input.files[0] : null;
- const handleInputOptions = (instance, params) => {
- const popup = getPopup();
- const processInputOptions = (inputOptions) => {
- populateInputOptions[params.input](popup, formatInputOptions(inputOptions), params);
- };
- if (hasToPromiseFn(params.inputOptions) || isPromise(params.inputOptions)) {
- showLoading(getConfirmButton());
- asPromise(params.inputOptions).then((inputOptions) => {
- instance.hideLoading();
- processInputOptions(inputOptions);
- });
- } else if (typeof params.inputOptions === "object") {
- processInputOptions(params.inputOptions);
- } else {
- error(`Unexpected type of inputOptions! Expected object, Map or Promise, got ${typeof params.inputOptions}`);
- }
- };
- const handleInputValue = (instance, params) => {
- const input = instance.getInput();
- hide(input);
- asPromise(params.inputValue).then((inputValue) => {
- input.value = params.input === "number" ? `${parseFloat(inputValue) || 0}` : `${inputValue}`;
- show(input);
- input.focus();
- instance.hideLoading();
- }).catch((err) => {
- error(`Error in inputValue promise: ${err}`);
- input.value = "";
- show(input);
- input.focus();
- instance.hideLoading();
- });
- };
- const populateInputOptions = {
- /**
- * @param {HTMLElement} popup
- * @param {Record<string, any>} inputOptions
- * @param {SweetAlertOptions} params
- */
- select: (popup, inputOptions, params) => {
- const select = getDirectChildByClass(popup, swalClasses.select);
- const renderOption = (parent, optionLabel, optionValue) => {
- const option = document.createElement("option");
- option.value = optionValue;
- setInnerHtml(option, optionLabel);
- option.selected = isSelected(optionValue, params.inputValue);
- parent.appendChild(option);
- };
- inputOptions.forEach((inputOption) => {
- const optionValue = inputOption[0];
- const optionLabel = inputOption[1];
- if (Array.isArray(optionLabel)) {
- const optgroup = document.createElement("optgroup");
- optgroup.label = optionValue;
- optgroup.disabled = false;
- select.appendChild(optgroup);
- optionLabel.forEach((o) => renderOption(optgroup, o[1], o[0]));
- } else {
- renderOption(select, optionLabel, optionValue);
- }
- });
- select.focus();
- },
- /**
- * @param {HTMLElement} popup
- * @param {Record<string, any>} inputOptions
- * @param {SweetAlertOptions} params
- */
- radio: (popup, inputOptions, params) => {
- const radio = getDirectChildByClass(popup, swalClasses.radio);
- inputOptions.forEach((inputOption) => {
- const radioValue = inputOption[0];
- const radioLabel = inputOption[1];
- const radioInput = document.createElement("input");
- const radioLabelElement = document.createElement("label");
- radioInput.type = "radio";
- radioInput.name = swalClasses.radio;
- radioInput.value = radioValue;
- if (isSelected(radioValue, params.inputValue)) {
- radioInput.checked = true;
- }
- const label = document.createElement("span");
- setInnerHtml(label, radioLabel);
- label.className = swalClasses.label;
- radioLabelElement.appendChild(radioInput);
- radioLabelElement.appendChild(label);
- radio.appendChild(radioLabelElement);
- });
- const radios = radio.querySelectorAll("input");
- if (radios.length) {
- radios[0].focus();
- }
- }
- };
- const formatInputOptions = (inputOptions) => {
- const r###lt = [];
- if (typeof Map !== "undefined" && inputOptions instanceof Map) {
- inputOptions.forEach((value, key) => {
- let valueFormatted = value;
- if (typeof valueFormatted === "object") {
- valueFormatted = formatInputOptions(valueFormatted);
- }
- r###lt.push([key, valueFormatted]);
- });
- } else {
- Object.keys(inputOptions).forEach((key) => {
- let valueFormatted = inputOptions[key];
- if (typeof valueFormatted === "object") {
- valueFormatted = formatInputOptions(valueFormatted);
- }
- r###lt.push([key, valueFormatted]);
- });
- }
- return r###lt;
- };
- const isSelected = (optionValue, inputValue) => {
- return inputValue && inputValue.toString() === optionValue.toString();
- };
- const handleConfirmButtonClick = (instance) => {
- const innerParams = privateProps.innerParams.get(instance);
- instance.disableButtons();
- if (innerParams.input) {
- handleConfirmOrDenyWithInput(instance, "confirm");
- } else {
- confirm(instance, true);
- }
- };
- const handleDenyButtonClick = (instance) => {
- const innerParams = privateProps.innerParams.get(instance);
- instance.disableButtons();
- if (innerParams.returnInputValueOnDeny) {
- handleConfirmOrDenyWithInput(instance, "deny");
- } else {
- deny(instance, false);
- }
- };
- const handleCancelButtonClick = (instance, dismissWith) => {
- instance.disableButtons();
- dismissWith(DismissReason.cancel);
- };
- const handleConfirmOrDenyWithInput = (instance, type) => {
- const innerParams = privateProps.innerParams.get(instance);
- if (!innerParams.input) {
- error(`The "input" parameter is needed to be set when using returnInputValueOn${capitalizeFirstLetter(type)}`);
- return;
- }
- const inputValue = getInputValue(instance, innerParams);
- if (innerParams.inputValidator) {
- handleInputValidator(instance, inputValue, type);
- } else if (!instance.getInput().checkValidity()) {
- instance.enableButtons();
- instance.showValidationMessage(innerParams.validationMessage);
- } else if (type === "deny") {
- deny(instance, inputValue);
- } else {
- confirm(instance, inputValue);
- }
- };
- const handleInputValidator = (instance, inputValue, type) => {
- const innerParams = privateProps.innerParams.get(instance);
- instance.disableInput();
- const validationPromise = Promise.resolve().then(() => asPromise(innerParams.inputValidator(inputValue, innerParams.validationMessage)));
- validationPromise.then((validationMessage) => {
- instance.enableButtons();
- instance.enableInput();
- if (validationMessage) {
- instance.showValidationMessage(validationMessage);
- } else if (type === "deny") {
- deny(instance, inputValue);
- } else {
- confirm(instance, inputValue);
- }
- });
- };
- const deny = (instance, value) => {
- const innerParams = privateProps.innerParams.get(instance || void 0);
- if (innerParams.showLoaderOnDeny) {
- showLoading(getDenyButton());
- }
- if (innerParams.preDeny) {
- instance.isAwaitingPromise = true;
- const preDenyPromise = Promise.resolve().then(() => asPromise(innerParams.preDeny(value, innerParams.validationMessage)));
- preDenyPromise.then((preDenyValue) => {
- if (preDenyValue === false) {
- instance.hideLoading();
- handleAwaitingPromise(instance);
- } else {
- instance.close({
- isDenied: true,
- value: typeof preDenyValue === "undefined" ? value : preDenyValue
- });
- }
- }).catch((error2) => rejectWith(instance || void 0, error2));
- } else {
- instance.close({
- isDenied: true,
- value
- });
- }
- };
- const succeedWith = (instance, value) => {
- instance.close({
- isConfirmed: true,
- value
- });
- };
- const rejectWith = (instance, error2) => {
- instance.rejectPromise(error2);
- };
- const confirm = (instance, value) => {
- const innerParams = privateProps.innerParams.get(instance || void 0);
- if (innerParams.showLoaderOnConfirm) {
- showLoading();
- }
- if (innerParams.preConfirm) {
- instance.resetValidationMessage();
- instance.isAwaitingPromise = true;
- const preConfirmPromise = Promise.resolve().then(() => asPromise(innerParams.preConfirm(value, innerParams.validationMessage)));
- preConfirmPromise.then((preConfirmValue) => {
- if (isVisible$1(getValidationMessage()) || preConfirmValue === false) {
- instance.hideLoading();
- handleAwaitingPromise(instance);
- } else {
- succeedWith(instance, typeof preConfirmValue === "undefined" ? value : preConfirmValue);
- }
- }).catch((error2) => rejectWith(instance || void 0, error2));
- } else {
- succeedWith(instance, value);
- }
- };
- function hideLoading() {
- const innerParams = privateProps.innerParams.get(this);
- if (!innerParams) {
- return;
- }
- const domCache = privateProps.domCache.get(this);
- hide(domCache.loader);
- if (isToast()) {
- if (innerParams.icon) {
- show(getIcon());
- }
- } else {
- showRelatedButton(domCache);
- }
- removeClass([domCache.popup, domCache.actions], swalClasses.loading);
- domCache.popup.removeAttribute("aria-busy");
- domCache.popup.removeAttribute("data-loading");
- domCache.confirmButton.disabled = false;
- domCache.denyButton.disabled = false;
- domCache.cancelButton.disabled = false;
- }
- const showRelatedButton = (domCache) => {
- const buttonToReplace = domCache.popup.getElementsByClassName(domCache.loader.getAttribute("data-button-to-replace"));
- if (buttonToReplace.length) {
- show(buttonToReplace[0], "inline-block");
- } else if (allButtonsAreHidden()) {
- hide(domCache.actions);
- }
- };
- function getInput() {
- const innerParams = privateProps.innerParams.get(this);
- const domCache = privateProps.domCache.get(this);
- if (!domCache) {
- return null;
- }
- return getInput$1(domCache.popup, innerParams.input);
- }
- function setButtonsDisabled(instance, buttons, disabled) {
- const domCache = privateProps.domCache.get(instance);
- buttons.forEach((button) => {
- domCache[button].disabled = disabled;
- });
- }
- function setInputDisabled(input, disabled) {
- if (!input) {
- return;
- }
- if (input.type === "radio") {
- const radiosContainer = input.parentNode.parentNode;
- const radios = radiosContainer.querySelectorAll("input");
- for (let i = 0; i < radios.length; i++) {
- radios[i].disabled = disabled;
- }
- } else {
- input.disabled = disabled;
- }
- }
- function enableButtons() {
- setButtonsDisabled(this, ["confirmButton", "denyButton", "cancelButton"], false);
- }
- function disableButtons() {
- setButtonsDisabled(this, ["confirmButton", "denyButton", "cancelButton"], true);
- }
- function enableInput() {
- setInputDisabled(this.getInput(), false);
- }
- function disableInput() {
- setInputDisabled(this.getInput(), true);
- }
- function showValidationMessage(error2) {
- const domCache = privateProps.domCache.get(this);
- const params = privateProps.innerParams.get(this);
- setInnerHtml(domCache.validationMessage, error2);
- domCache.validationMessage.className = swalClasses["validation-message"];
- if (params.customClass && params.customClass.validationMessage) {
- addClass(domCache.validationMessage, params.customClass.validationMessage);
- }
- show(domCache.validationMessage);
- const input = this.getInput();
- if (input) {
- input.setAttribute("aria-invalid", true);
- input.setAttribute("aria-describedby", swalClasses["validation-message"]);
- focusInput(input);
- addClass(input, swalClasses.inputerror);
- }
- }
- function resetValidationMessage() {
- const domCache = privateProps.domCache.get(this);
- if (domCache.validationMessage) {
- hide(domCache.validationMessage);
- }
- const input = this.getInput();
- if (input) {
- input.removeAttribute("aria-invalid");
- input.removeAttribute("aria-describedby");
- removeClass(input, swalClasses.inputerror);
- }
- }
- const defaultParams = {
- title: "",
- titleText: "",
- text: "",
- html: "",
- footer: "",
- icon: void 0,
- iconColor: void 0,
- iconHtml: void 0,
- template: void 0,
- toast: false,
- showClass: {
- popup: "swal2-show",
- backdrop: "swal2-backdrop-show",
- icon: "swal2-icon-show"
- },
- hideClass: {
- popup: "swal2-hide",
- backdrop: "swal2-backdrop-hide",
- icon: "swal2-icon-hide"
- },
- customClass: {},
- target: "body",
- color: void 0,
- backdrop: true,
- heightAuto: true,
- allowOutsideClick: true,
- allowEscapeKey: true,
- allowEnterKey: true,
- stopKeydownPropagation: true,
- keydownListenerCapture: false,
- showConfirmButton: true,
- showDenyButton: false,
- showCancelButton: false,
- preConfirm: void 0,
- preDeny: void 0,
- confirmButtonText: "OK",
- confirmButtonAriaLabel: "",
- confirmButtonColor: void 0,
- denyButtonText: "No",
- denyButtonAriaLabel: "",
- denyButtonColor: void 0,
- cancelButtonText: "Cancel",
- cancelButtonAriaLabel: "",
- cancelButtonColor: void 0,
- buttonsStyling: true,
- reverseButtons: false,
- focusConfirm: true,
- focusDeny: false,
- focusCancel: false,
- returnFocus: true,
- showCloseButton: false,
- closeButtonHtml: "×",
- closeButtonAriaLabel: "Close this dialog",
- loaderHtml: "",
- showLoaderOnConfirm: false,
- showLoaderOnDeny: false,
- imageUrl: void 0,
- imageWidth: void 0,
- imageHeight: void 0,
- imageAlt: "",
- timer: void 0,
- timerProgressBar: false,
- width: void 0,
- padding: void 0,
- background: void 0,
- input: void 0,
- inputPlaceholder: "",
- inputLabel: "",
- inputValue: "",
- inputOptions: {},
- inputAutoFocus: true,
- inputAutoTrim: true,
- inputAttributes: {},
- inputValidator: void 0,
- returnInputValueOnDeny: false,
- validationMessage: void 0,
- grow: false,
- position: "center",
- progressSteps: [],
- currentProgressStep: void 0,
- progressStepsDistance: void 0,
- willOpen: void 0,
- didOpen: void 0,
- didRender: void 0,
- willClose: void 0,
- didClose: void 0,
- didDestroy: void 0,
- scrollbarPadding: true
- };
- const updatableParams = ["allowEscapeKey", "allowOutsideClick", "background", "buttonsStyling", "cancelButtonAriaLabel", "cancelButtonColor", "cancelButtonText", "closeButtonAriaLabel", "closeButtonHtml", "color", "confirmButtonAriaLabel", "confirmButtonColor", "confirmButtonText", "currentProgressStep", "customClass", "denyButtonAriaLabel", "denyButtonColor", "denyButtonText", "didClose", "didDestroy", "footer", "hideClass", "html", "icon", "iconColor", "iconHtml", "imageAlt", "imageHeight", "imageUrl", "imageWidth", "preConfirm", "preDeny", "progressSteps", "returnFocus", "reverseButtons", "showCancelButton", "showCloseButton", "showConfirmButton", "showDenyButton", "text", "title", "titleText", "willClose"];
- const deprecatedParams = {};
- const toastIncompatibleParams = ["allowOutsideClick", "allowEnterKey", "backdrop", "focusConfirm", "focusDeny", "focusCancel", "returnFocus", "heightAuto", "keydownListenerCapture"];
- const isValidParameter = (paramName) => {
- return Object.prototype.hasOwnProperty.call(defaultParams, paramName);
- };
- const isUpdatableParameter = (paramName) => {
- return updatableParams.indexOf(paramName) !== -1;
- };
- const isDeprecatedParameter = (paramName) => {
- return deprecatedParams[paramName];
- };
- const checkIfParamIsValid = (param) => {
- if (!isValidParameter(param)) {
- warn(`Unknown parameter "${param}"`);
- }
- };
- const checkIfToastParamIsValid = (param) => {
- if (toastIncompatibleParams.includes(param)) {
- warn(`The parameter "${param}" is incompatible with toasts`);
- }
- };
- const checkIfParamIsDeprecated = (param) => {
- const isDeprecated = isDeprecatedParameter(param);
- if (isDeprecated) {
- warnAboutDeprecation(param, isDeprecated);
- }
- };
- const showWarningsForParams = (params) => {
- if (params.backdrop === false && params.allowOutsideClick) {
- warn('"allowOutsideClick" parameter requires `backdrop` parameter to be set to `true`');
- }
- for (const param in params) {
- checkIfParamIsValid(param);
- if (params.toast) {
- checkIfToastParamIsValid(param);
- }
- checkIfParamIsDeprecated(param);
- }
- };
- function update(params) {
- const popup = getPopup();
- const innerParams = privateProps.innerParams.get(this);
- if (!popup || hasClass(popup, innerParams.hideClass.popup)) {
- warn(`You're trying to update the closed or closing popup, that won't work. Use the update() method in preConfirm parameter or show a new popup.`);
- return;
- }
- const validUpdatableParams = filterValidParams(params);
- const updatedParams = Object.assign({}, innerParams, validUpdatableParams);
- render(this, updatedParams);
- privateProps.innerParams.set(this, updatedParams);
- Object.defineProperties(this, {
- params: {
- value: Object.assign({}, this.params, params),
- writable: false,
- enumerable: true
- }
- });
- }
- const filterValidParams = (params) => {
- const validUpdatableParams = {};
- Object.keys(params).forEach((param) => {
- if (isUpdatableParameter(param)) {
- validUpdatableParams[param] = params[param];
- } else {
- warn(`Invalid parameter to update: ${param}`);
- }
- });
- return validUpdatableParams;
- };
- function _destroy() {
- const domCache = privateProps.domCache.get(this);
- const innerParams = privateProps.innerParams.get(this);
- if (!innerParams) {
- disposeWeakMaps(this);
- return;
- }
- if (domCache.popup && globalState.swalCloseEventFinishedCallback) {
- globalState.swalCloseEventFinishedCallback();
- delete globalState.swalCloseEventFinishedCallback;
- }
- if (typeof innerParams.didDestroy === "function") {
- innerParams.didDestroy();
- }
- disposeSwal(this);
- }
- const disposeSwal = (instance) => {
- disposeWeakMaps(instance);
- delete instance.params;
- delete globalState.keydownHandler;
- delete globalState.keydownTarget;
- delete globalState.currentInstance;
- };
- const disposeWeakMaps = (instance) => {
- if (instance.isAwaitingPromise) {
- unsetWeakMaps(privateProps, instance);
- instance.isAwaitingPromise = true;
- } else {
- unsetWeakMaps(privateMethods, instance);
- unsetWeakMaps(privateProps, instance);
- delete instance.isAwaitingPromise;
- delete instance.disableButtons;
- delete instance.enableButtons;
- delete instance.getInput;
- delete instance.disableInput;
- delete instance.enableInput;
- delete instance.hideLoading;
- delete instance.disableLoading;
- delete instance.showValidationMessage;
- delete instance.resetValidationMessage;
- delete instance.close;
- delete instance.closePopup;
- delete instance.closeModal;
- delete instance.closeToast;
- delete instance.rejectPromise;
- delete instance.update;
- delete instance._destroy;
- }
- };
- const unsetWeakMaps = (obj, instance) => {
- for (const i in obj) {
- obj[i].delete(instance);
- }
- };
- var instanceMethods = /* @__PURE__ */ Object.freeze({
- __proto__: null,
- _destroy,
- close,
- closeModal: close,
- closePopup: close,
- closeToast: close,
- disableButtons,
- disableInput,
- disableLoading: hideLoading,
- enableButtons,
- enableInput,
- getInput,
- handleAwaitingPromise,
- hideLoading,
- rejectPromise,
- resetValidationMessage,
- showValidationMessage,
- update
- });
- const handlePopupClick = (instance, domCache, dismissWith) => {
- const innerParams = privateProps.innerParams.get(instance);
- if (innerParams.toast) {
- handleToastClick(instance, domCache, dismissWith);
- } else {
- handleModalMousedown(domCache);
- handleContainerMousedown(domCache);
- handleModalClick(instance, domCache, dismissWith);
- }
- };
- const handleToastClick = (instance, domCache, dismissWith) => {
- domCache.popup.onclick = () => {
- const innerParams = privateProps.innerParams.get(instance);
- if (innerParams && (isAnyButtonShown(innerParams) || innerParams.timer || innerParams.input)) {
- return;
- }
- dismissWith(DismissReason.close);
- };
- };
- const isAnyButtonShown = (innerParams) => {
- return innerParams.showConfirmButton || innerParams.showDenyButton || innerParams.showCancelButton || innerParams.showCloseButton;
- };
- let ignoreOutsideClick = false;
- const handleModalMousedown = (domCache) => {
- domCache.popup.onmousedown = () => {
- domCache.container.onmouseup = function(e) {
- domCache.container.onmouseup = void 0;
- if (e.target === domCache.container) {
- ignoreOutsideClick = true;
- }
- };
- };
- };
- const handleContainerMousedown = (domCache) => {
- domCache.container.onmousedown = () => {
- domCache.popup.onmouseup = function(e) {
- domCache.popup.onmouseup = void 0;
- if (e.target === domCache.popup || domCache.popup.contains(e.target)) {
- ignoreOutsideClick = true;
- }
- };
- };
- };
- const handleModalClick = (instance, domCache, dismissWith) => {
- domCache.container.onclick = (e) => {
- const innerParams = privateProps.innerParams.get(instance);
- if (ignoreOutsideClick) {
- ignoreOutsideClick = false;
- return;
- }
- if (e.target === domCache.container && callIfFunction(innerParams.allowOutsideClick)) {
- dismissWith(DismissReason.backdrop);
- }
- };
- };
- const isJqueryElement = (elem) => typeof elem === "object" && elem.jquery;
- const isElement = (elem) => elem instanceof Element || isJqueryElement(elem);
- const argsToParams = (args) => {
- const params = {};
- if (typeof args[0] === "object" && !isElement(args[0])) {
- Object.assign(params, args[0]);
- } else {
- ["title", "html", "icon"].forEach((name, index) => {
- const arg = args[index];
- if (typeof arg === "string" || isElement(arg)) {
- params[name] = arg;
- } else if (arg !== void 0) {
- error(`Unexpected type of ${name}! Expected "string" or "Element", got ${typeof arg}`);
- }
- });
- }
- return params;
- };
- function fire() {
- const Swal3 = this;
- for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
- args[_key] = arguments[_key];
- }
- return new Swal3(...args);
- }
- function mixin(mixinParams) {
- class MixinSwal extends this {
- _main(params, priorityMixinParams) {
- return super._main(params, Object.assign({}, mixinParams, priorityMixinParams));
- }
- }
- return MixinSwal;
- }
- const getTimerLeft = () => {
- return globalState.timeout && globalState.timeout.getTimerLeft();
- };
- const stopTimer = () => {
- if (globalState.timeout) {
- stopTimerProgressBar();
- return globalState.timeout.stop();
- }
- };
- const r###meTimer = () => {
- if (globalState.timeout) {
- const remaining = globalState.timeout.start();
- animateTimerProgressBar(remaining);
- return remaining;
- }
- };
- const toggleTimer = () => {
- const timer = globalState.timeout;
- return timer && (timer.running ? stopTimer() : r###meTimer());
- };
- const increaseTimer = (n) => {
- if (globalState.timeout) {
- const remaining = globalState.timeout.increase(n);
- animateTimerProgressBar(remaining, true);
- return remaining;
- }
- };
- const isTimerRunning = () => {
- return !!(globalState.timeout && globalState.timeout.isRunning());
- };
- let bodyClickListenerAdded = false;
- const clickHandlers = {};
- function bindClickHandler() {
- let attr = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : "data-swal-template";
- clickHandlers[attr] = this;
- if (!bodyClickListenerAdded) {
- document.body.addEventListener("click", bodyClickListener);
- bodyClickListenerAdded = true;
- }
- }
- const bodyClickListener = (event) => {
- for (let el = event.target; el && el !== document; el = el.parentNode) {
- for (const attr in clickHandlers) {
- const template = el.getAttribute(attr);
- if (template) {
- clickHandlers[attr].fire({
- template
- });
- return;
- }
- }
- }
- };
- var staticMethods = /* @__PURE__ */ Object.freeze({
- __proto__: null,
- argsToParams,
- bindClickHandler,
- clickCancel,
- clickConfirm,
- clickDeny,
- enableLoading: showLoading,
- fire,
- getActions,
- getCancelButton,
- getCloseButton,
- getConfirmButton,
- getContainer,
- getDenyButton,
- getFocusableElements,
- getFooter,
- getHtmlContainer,
- getIcon,
- getIconContent,
- getImage,
- getInputLabel,
- getLoader,
- getPopup,
- getProgressSteps,
- getTimerLeft,
- getTimerProgressBar,
- getTitle,
- getValidationMessage,
- increaseTimer,
- isDeprecatedParameter,
- isLoading,
- isTimerRunning,
- isUpdatableParameter,
- isValidParameter,
- isVisible,
- mixin,
- r###meTimer,
- showLoading,
- stopTimer,
- toggleTimer
- });
- class Timer {
- /**
- * @param {Function} callback
- * @param {number} delay
- */
- constructor(callback, delay) {
- this.callback = callback;
- this.remaining = delay;
- this.running = false;
- this.start();
- }
- /**
- * @returns {number}
- */
- start() {
- if (!this.running) {
- this.running = true;
- this.started = /* @__PURE__ */ new Date();
- this.id = setTimeout(this.callback, this.remaining);
- }
- return this.remaining;
- }
- /**
- * @returns {number}
- */
- stop() {
- if (this.started && this.running) {
- this.running = false;
- clearTimeout(this.id);
- this.remaining -= (/* @__PURE__ */ new Date()).getTime() - this.started.getTime();
- }
- return this.remaining;
- }
- /**
- * @param {number} n
- * @returns {number}
- */
- increase(n) {
- const running = this.running;
- if (running) {
- this.stop();
- }
- this.remaining += n;
- if (running) {
- this.start();
- }
- return this.remaining;
- }
- /**
- * @returns {number}
- */
- getTimerLeft() {
- if (this.running) {
- this.stop();
- this.start();
- }
- return this.remaining;
- }
- /**
- * @returns {boolean}
- */
- isRunning() {
- return this.running;
- }
- }
- const swalStringParams = ["swal-title", "swal-html", "swal-footer"];
- const getTemplateParams = (params) => {
- const template = typeof params.template === "string" ? document.querySelector(params.template) : params.template;
- if (!template) {
- return {};
- }
- const templateContent = template.content;
- showWarningsForElements(templateContent);
- const r###lt = Object.assign(getSwalParams(templateContent), getSwalFunctionParams(templateContent), getSwalButtons(templateContent), getSwalImage(templateContent), getSwalIcon(templateContent), getSwalInput(templateContent), getSwalStringParams(templateContent, swalStringParams));
- return r###lt;
- };
- const getSwalParams = (templateContent) => {
- const r###lt = {};
- const swalParams = Array.from(templateContent.querySelectorAll("swal-param"));
- swalParams.forEach((param) => {
- showWarningsForAttributes(param, ["name", "value"]);
- const paramName = param.getAttribute("name");
- const value = param.getAttribute("value");
- if (typeof defaultParams[paramName] === "boolean") {
- r###lt[paramName] = value !== "false";
- } else if (typeof defaultParams[paramName] === "object") {
- r###lt[paramName] = JSON.parse(value);
- } else {
- r###lt[paramName] = value;
- }
- });
- return r###lt;
- };
- const getSwalFunctionParams = (templateContent) => {
- const r###lt = {};
- const swalFunctions = Array.from(templateContent.querySelectorAll("swal-function-param"));
- swalFunctions.forEach((param) => {
- const paramName = param.getAttribute("name");
- const value = param.getAttribute("value");
- r###lt[paramName] = new Function(`return ${value}`)();
- });
- return r###lt;
- };
- const getSwalButtons = (templateContent) => {
- const r###lt = {};
- const swalButtons = Array.from(templateContent.querySelectorAll("swal-button"));
- swalButtons.forEach((button) => {
- showWarningsForAttributes(button, ["type", "color", "aria-label"]);
- const type = button.getAttribute("type");
- r###lt[`${type}ButtonText`] = button.innerHTML;
- r###lt[`show${capitalizeFirstLetter(type)}Button`] = true;
- if (button.hasAttribute("color")) {
- r###lt[`${type}ButtonColor`] = button.getAttribute("color");
- }
- if (button.hasAttribute("aria-label")) {
- r###lt[`${type}ButtonAriaLabel`] = button.getAttribute("aria-label");
- }
- });
- return r###lt;
- };
- const getSwalImage = (templateContent) => {
- const r###lt = {};
- const image = templateContent.querySelector("swal-image");
- if (image) {
- showWarningsForAttributes(image, ["src", "width", "height", "alt"]);
- if (image.hasAttribute("src")) {
- r###lt.imageUrl = image.getAttribute("src");
- }
- if (image.hasAttribute("width")) {
- r###lt.imageWidth = image.getAttribute("width");
- }
- if (image.hasAttribute("height")) {
- r###lt.imageHeight = image.getAttribute("height");
- }
- if (image.hasAttribute("alt")) {
- r###lt.imageAlt = image.getAttribute("alt");
- }
- }
- return r###lt;
- };
- const getSwalIcon = (templateContent) => {
- const r###lt = {};
- const icon = templateContent.querySelector("swal-icon");
- if (icon) {
- showWarningsForAttributes(icon, ["type", "color"]);
- if (icon.hasAttribute("type")) {
- r###lt.icon = icon.getAttribute("type");
- }
- if (icon.hasAttribute("color")) {
- r###lt.iconColor = icon.getAttribute("color");
- }
- r###lt.iconHtml = icon.innerHTML;
- }
- return r###lt;
- };
- const getSwalInput = (templateContent) => {
- const r###lt = {};
- const input = templateContent.querySelector("swal-input");
- if (input) {
- showWarningsForAttributes(input, ["type", "label", "placeholder", "value"]);
- r###lt.input = input.getAttribute("type") || "text";
- if (input.hasAttribute("label")) {
- r###lt.inputLabel = input.getAttribute("label");
- }
- if (input.hasAttribute("placeholder")) {
- r###lt.inputPlaceholder = input.getAttribute("placeholder");
- }
- if (input.hasAttribute("value")) {
- r###lt.inputValue = input.getAttribute("value");
- }
- }
- const inputOptions = Array.from(templateContent.querySelectorAll("swal-input-option"));
- if (inputOptions.length) {
- r###lt.inputOptions = {};
- inputOptions.forEach((option) => {
- showWarningsForAttributes(option, ["value"]);
- const optionValue = option.getAttribute("value");
- const optionName = option.innerHTML;
- r###lt.inputOptions[optionValue] = optionName;
- });
- }
- return r###lt;
- };
- const getSwalStringParams = (templateContent, paramNames) => {
- const r###lt = {};
- for (const i in paramNames) {
- const paramName = paramNames[i];
- const tag = templateContent.querySelector(paramName);
- if (tag) {
- showWarningsForAttributes(tag, []);
- r###lt[paramName.replace(/^swal-/, "")] = tag.innerHTML.trim();
- }
- }
- return r###lt;
- };
- const showWarningsForElements = (templateContent) => {
- const allowedElements = swalStringParams.concat(["swal-param", "swal-function-param", "swal-button", "swal-image", "swal-icon", "swal-input", "swal-input-option"]);
- Array.from(templateContent.children).forEach((el) => {
- const tagName = el.tagName.toLowerCase();
- if (!allowedElements.includes(tagName)) {
- warn(`Unrecognized element <${tagName}>`);
- }
- });
- };
- const showWarningsForAttributes = (el, allowedAttributes) => {
- Array.from(el.attributes).forEach((attribute) => {
- if (allowedAttributes.indexOf(attribute.name) === -1) {
- warn([`Unrecognized attribute "${attribute.name}" on <${el.tagName.toLowerCase()}>.`, `${allowedAttributes.length ? `Allowed attributes are: ${allowedAttributes.join(", ")}` : "To set the value, use HTML within the element."}`]);
- }
- });
- };
- const SHOW_CLASS_TIMEOUT = 10;
- const openPopup = (params) => {
- const container = getContainer();
- const popup = getPopup();
- if (typeof params.willOpen === "function") {
- params.willOpen(popup);
- }
- const bodyStyles = window.getComputedStyle(document.body);
- const initialBodyOverflow = bodyStyles.overflowY;
- addClasses(container, popup, params);
- setTimeout(() => {
- setScrollingVisibility(container, popup);
- }, SHOW_CLASS_TIMEOUT);
- if (isModal()) {
- fixScrollContainer(container, params.scrollbarPadding, initialBodyOverflow);
- setAriaHidden();
- }
- if (!isToast() && !globalState.previousActiveElement) {
- globalState.previousActiveElement = document.activeElement;
- }
- if (typeof params.didOpen === "function") {
- setTimeout(() => params.didOpen(popup));
- }
- removeClass(container, swalClasses["no-transition"]);
- };
- const swalOpenAnimationFinished = (event) => {
- const popup = getPopup();
- if (event.target !== popup) {
- return;
- }
- const container = getContainer();
- popup.removeEventListener(animationEndEvent, swalOpenAnimationFinished);
- container.style.overflowY = "auto";
- };
- const setScrollingVisibility = (container, popup) => {
- if (animationEndEvent && hasCssAnimation(popup)) {
- container.style.overflowY = "hidden";
- popup.addEventListener(animationEndEvent, swalOpenAnimationFinished);
- } else {
- container.style.overflowY = "auto";
- }
- };
- const fixScrollContainer = (container, scrollbarPadding, initialBodyOverflow) => {
- iOSfix();
- if (scrollbarPadding && initialBodyOverflow !== "hidden") {
- fixScrollbar();
- }
- setTimeout(() => {
- container.scrollTop = 0;
- });
- };
- const addClasses = (container, popup, params) => {
- addClass(container, params.showClass.backdrop);
- popup.style.setProperty("opacity", "0", "important");
- show(popup, "grid");
- setTimeout(() => {
- addClass(popup, params.showClass.popup);
- popup.style.removeProperty("opacity");
- }, SHOW_CLASS_TIMEOUT);
- addClass([document.documentElement, document.body], swalClasses.shown);
- if (params.heightAuto && params.backdrop && !params.toast) {
- addClass([document.documentElement, document.body], swalClasses["height-auto"]);
- }
- };
- var defaultInputValidators = {
- /**
- * @param {string} string
- * @param {string} validationMessage
- * @returns {Promise<void | string>}
- */
- email: (string, validationMessage) => {
- return /^[a-zA-Z0-9.+_-]+@[a-zA-Z0-9.-]+\.[a-zA-Z0-9-]{2,24}$/.test(string) ? Promise.resolve() : Promise.resolve(validationMessage || "Invalid email address");
- },
- /**
- * @param {string} string
- * @param {string} validationMessage
- * @returns {Promise<void | string>}
- */
- url: (string, validationMessage) => {
- return /^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{1,256}\.[a-z]{2,63}\b([-a-zA-Z0-9@:%_+.~#?&/=]*)$/.test(string) ? Promise.resolve() : Promise.resolve(validationMessage || "Invalid URL");
- }
- };
- function setDefaultInputValidators(params) {
- if (!params.inputValidator) {
- Object.keys(defaultInputValidators).forEach((key) => {
- if (params.input === key) {
- params.inputValidator = defaultInputValidators[key];
- }
- });
- }
- }
- function validateCustomTargetElement(params) {
- if (!params.target || typeof params.target === "string" && !document.querySelector(params.target) || typeof params.target !== "string" && !params.target.appendChild) {
- warn('Target parameter is not valid, defaulting to "body"');
- params.target = "body";
- }
- }
- function setParameters(params) {
- setDefaultInputValidators(params);
- if (params.showLoaderOnConfirm && !params.preConfirm) {
- warn("showLoaderOnConfirm is set to true, but preConfirm is not defined.\nshowLoaderOnConfirm should be used together with preConfirm, see usage example:\nhttps://sweetalert2.github.io/#ajax-request");
- }
- validateCustomTargetElement(params);
- if (typeof params.title === "string") {
- params.title = params.title.split("\n").join("<br />");
- }
- init(params);
- }
- let currentInstance;
- class SweetAlert {
- /**
- * @param {...any} args
- * @this {SweetAlert}
- */
- constructor() {
- if (typeof window === "undefined") {
- return;
- }
- currentInstance = this;
- for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
- args[_key] = arguments[_key];
- }
- const outerParams = Object.freeze(this.constructor.argsToParams(args));
- this.params = outerParams;
- this.isAwaitingPromise = false;
- const promise = currentInstance._main(currentInstance.params);
- privateProps.promise.set(this, promise);
- }
- _main(userParams) {
- let mixinParams = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
- showWarningsForParams(Object.assign({}, mixinParams, userParams));
- if (globalState.currentInstance) {
- globalState.currentInstance._destroy();
- if (isModal()) {
- unsetAriaHidden();
- }
- }
- globalState.currentInstance = currentInstance;
- const innerParams = prepareParams(userParams, mixinParams);
- setParameters(innerParams);
- Object.freeze(innerParams);
- if (globalState.timeout) {
- globalState.timeout.stop();
- delete globalState.timeout;
- }
- clearTimeout(globalState.restoreFocusTimeout);
- const domCache = populateDomCache(currentInstance);
- render(currentInstance, innerParams);
- privateProps.innerParams.set(currentInstance, innerParams);
- return swalPromise(currentInstance, domCache, innerParams);
- }
- // `catch` cannot be the name of a module export, so we define our thenable methods here instead
- then(onFulfilled) {
- const promise = privateProps.promise.get(this);
- return promise.then(onFulfilled);
- }
- finally(onFinally) {
- const promise = privateProps.promise.get(this);
- return promise.finally(onFinally);
- }
- }
- const swalPromise = (instance, domCache, innerParams) => {
- return new Promise((resolve, reject) => {
- const dismissWith = (dismiss) => {
- instance.close({
- isDismissed: true,
- dismiss
- });
- };
- privateMethods.swalPromiseResolve.set(instance, resolve);
- privateMethods.swalPromiseReject.set(instance, reject);
- domCache.confirmButton.onclick = () => {
- handleConfirmButtonClick(instance);
- };
- domCache.denyButton.onclick = () => {
- handleDenyButtonClick(instance);
- };
- domCache.cancelButton.onclick = () => {
- handleCancelButtonClick(instance, dismissWith);
- };
- domCache.closeButton.onclick = () => {
- dismissWith(DismissReason.close);
- };
- handlePopupClick(instance, domCache, dismissWith);
- addKeydownHandler(instance, globalState, innerParams, dismissWith);
- handleInputOptionsAndValue(instance, innerParams);
- openPopup(innerParams);
- setupTimer(globalState, innerParams, dismissWith);
- initFocus(domCache, innerParams);
- setTimeout(() => {
- domCache.container.scrollTop = 0;
- });
- });
- };
- const prepareParams = (userParams, mixinParams) => {
- const templateParams = getTemplateParams(userParams);
- const params = Object.assign({}, defaultParams, mixinParams, templateParams, userParams);
- params.showClass = Object.assign({}, defaultParams.showClass, params.showClass);
- params.hideClass = Object.assign({}, defaultParams.hideClass, params.hideClass);
- return params;
- };
- const populateDomCache = (instance) => {
- const domCache = {
- popup: getPopup(),
- container: getContainer(),
- actions: getActions(),
- confirmButton: getConfirmButton(),
- denyButton: getDenyButton(),
- cancelButton: getCancelButton(),
- loader: getLoader(),
- closeButton: getCloseButton(),
- validationMessage: getValidationMessage(),
- progressSteps: getProgressSteps()
- };
- privateProps.domCache.set(instance, domCache);
- return domCache;
- };
- const setupTimer = (globalState2, innerParams, dismissWith) => {
- const timerProgressBar = getTimerProgressBar();
- hide(timerProgressBar);
- if (innerParams.timer) {
- globalState2.timeout = new Timer(() => {
- dismissWith("timer");
- delete globalState2.timeout;
- }, innerParams.timer);
- if (innerParams.timerProgressBar) {
- show(timerProgressBar);
- applyCustomClass(timerProgressBar, innerParams, "timerProgressBar");
- setTimeout(() => {
- if (globalState2.timeout && globalState2.timeout.running) {
- animateTimerProgressBar(innerParams.timer);
- }
- });
- }
- }
- };
- const initFocus = (domCache, innerParams) => {
- if (innerParams.toast) {
- return;
- }
- if (!callIfFunction(innerParams.allowEnterKey)) {
- blurActiveElement();
- return;
- }
- if (!focusButton(domCache, innerParams)) {
- setFocus(-1, 1);
- }
- };
- const focusButton = (domCache, innerParams) => {
- if (innerParams.focusDeny && isVisible$1(domCache.denyButton)) {
- domCache.denyButton.focus();
- return true;
- }
- if (innerParams.focusCancel && isVisible$1(domCache.cancelButton)) {
- domCache.cancelButton.focus();
- return true;
- }
- if (innerParams.focusConfirm && isVisible$1(domCache.confirmButton)) {
- domCache.confirmButton.focus();
- return true;
- }
- return false;
- };
- const blurActiveElement = () => {
- if (document.activeElement instanceof HTMLElement && typeof document.activeElement.blur === "function") {
- document.activeElement.blur();
- }
- };
- SweetAlert.prototype.disableButtons = disableButtons;
- SweetAlert.prototype.enableButtons = enableButtons;
- SweetAlert.prototype.getInput = getInput;
- SweetAlert.prototype.disableInput = disableInput;
- SweetAlert.prototype.enableInput = enableInput;
- SweetAlert.prototype.hideLoading = hideLoading;
- SweetAlert.prototype.disableLoading = hideLoading;
- SweetAlert.prototype.showValidationMessage = showValidationMessage;
- SweetAlert.prototype.resetValidationMessage = resetValidationMessage;
- SweetAlert.prototype.close = close;
- SweetAlert.prototype.closePopup = close;
- SweetAlert.prototype.closeModal = close;
- SweetAlert.prototype.closeToast = close;
- SweetAlert.prototype.rejectPromise = rejectPromise;
- SweetAlert.prototype.update = update;
- SweetAlert.prototype._destroy = _destroy;
- Object.assign(SweetAlert, staticMethods);
- Object.keys(instanceMethods).forEach((key) => {
- SweetAlert[key] = function() {
- if (currentInstance && currentInstance[key]) {
- return currentInstance[key](...arguments);
- }
- return null;
- };
- });
- SweetAlert.DismissReason = DismissReason;
- SweetAlert.version = "11.7.18";
- const Swal2 = SweetAlert;
- Swal2.default = Swal2;
- return Swal2;
- });
- if (typeof exports !== "undefined" && exports.Sweetalert2) {
- exports.swal = exports.sweetAlert = exports.Swal = exports.SweetAlert = exports.Sweetalert2;
- }
- "undefined" != typeof document && function(e, t) {
- var n = e.createElement("style");
- if (e.getElementsByTagName("head")[0].appendChild(n), n.styleSheet)
- n.styleSheet.disabled || (n.styleSheet.cssText = t);
- else
- try {
- n.innerHTML = t;
- } catch (e2) {
- n.innerText = t;
- }
- }(document, '.swal2-popup.swal2-toast{box-sizing:border-box;grid-column:1/4 !important;grid-row:1/4 !important;grid-template-columns:min-content auto min-content;padding:1em;overflow-y:hidden;background:#fff;box-shadow:0 0 1px rgba(0,0,0,.075),0 1px 2px rgba(0,0,0,.075),1px 2px 4px rgba(0,0,0,.075),1px 3px 8px rgba(0,0,0,.075),2px 4px 16px rgba(0,0,0,.075);pointer-events:all}.swal2-popup.swal2-toast>*{grid-column:2}.swal2-popup.swal2-toast .swal2-title{margin:.5em 1em;padding:0;font-size:1em;text-align:initial}.swal2-popup.swal2-toast .swal2-loading{justify-content:center}.swal2-popup.swal2-toast .swal2-input{height:2em;margin:.5em;font-size:1em}.swal2-popup.swal2-toast .swal2-validation-message{font-size:1em}.swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.swal2-popup.swal2-toast .swal2-close{grid-column:3/3;grid-row:1/99;align-self:center;width:.8em;height:.8em;margin:0;font-size:2em}.swal2-popup.swal2-toast .swal2-html-container{margin:.5em 1em;padding:0;overflow:initial;font-size:1em;text-align:initial}.swal2-popup.swal2-toast .swal2-html-container:empty{padding:0}.swal2-popup.swal2-toast .swal2-loader{grid-column:1;grid-row:1/99;align-self:center;width:2em;height:2em;margin:.25em}.swal2-popup.swal2-toast .swal2-icon{grid-column:1;grid-row:1/99;align-self:center;width:2em;min-width:2em;height:2em;margin:0 .5em 0 0}.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:1.8em;font-weight:bold}.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.swal2-popup.swal2-toast .swal2-actions{justify-content:flex-start;height:auto;margin:0;margin-top:.5em;padding:0 .5em}.swal2-popup.swal2-toast .swal2-styled{margin:.25em .5em;padding:.4em .6em;font-size:1em}.swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:1.6em;height:3em;transform:rotate(45deg);border-radius:50%}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-0.8em;left:-0.5em;transform:rotate(-45deg);transform-origin:2em 2em;border-radius:4em 0 0 4em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-0.25em;left:.9375em;transform-origin:0 1.5em;border-radius:0 4em 4em 0}.swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip{animation:swal2-toast-animate-success-line-tip .75s}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long{animation:swal2-toast-animate-success-line-long .75s}.swal2-popup.swal2-toast.swal2-show{animation:swal2-toast-show .5s}.swal2-popup.swal2-toast.swal2-hide{animation:swal2-toast-hide .1s forwards}div:where(.swal2-container){display:grid;position:fixed;z-index:1060;inset:0;box-sizing:border-box;grid-template-areas:"top-start top top-end" "center-start center center-end" "bottom-start bottom-center bottom-end";grid-template-rows:minmax(min-content, auto) minmax(min-content, auto) minmax(min-content, auto);height:100%;padding:.625em;overflow-x:hidden;transition:background-color .1s;-webkit-overflow-scrolling:touch}div:where(.swal2-container).swal2-backdrop-show,div:where(.swal2-container).swal2-noanimation{background:rgba(0,0,0,.4)}div:where(.swal2-container).swal2-backdrop-hide{background:rgba(0,0,0,0) !important}div:where(.swal2-container).swal2-top-start,div:where(.swal2-container).swal2-center-start,div:where(.swal2-container).swal2-bottom-start{grid-template-columns:minmax(0, 1fr) auto auto}div:where(.swal2-container).swal2-top,div:where(.swal2-container).swal2-center,div:where(.swal2-container).swal2-bottom{grid-template-columns:auto minmax(0, 1fr) auto}div:where(.swal2-container).swal2-top-end,div:where(.swal2-container).swal2-center-end,div:where(.swal2-container).swal2-bottom-end{grid-template-columns:auto auto minmax(0, 1fr)}div:where(.swal2-container).swal2-top-start>.swal2-popup{align-self:start}div:where(.swal2-container).swal2-top>.swal2-popup{grid-column:2;align-self:start;justify-self:center}div:where(.swal2-container).swal2-top-end>.swal2-popup,div:where(.swal2-container).swal2-top-right>.swal2-popup{grid-column:3;align-self:start;justify-self:end}div:where(.swal2-container).swal2-center-start>.swal2-popup,div:where(.swal2-container).swal2-center-left>.swal2-popup{grid-row:2;align-self:center}div:where(.swal2-container).swal2-center>.swal2-popup{grid-column:2;grid-row:2;align-self:center;justify-self:center}div:where(.swal2-container).swal2-center-end>.swal2-popup,div:where(.swal2-container).swal2-center-right>.swal2-popup{grid-column:3;grid-row:2;align-self:center;justify-self:end}div:where(.swal2-container).swal2-bottom-start>.swal2-popup,div:where(.swal2-container).swal2-bottom-left>.swal2-popup{grid-column:1;grid-row:3;align-self:end}div:where(.swal2-container).swal2-bottom>.swal2-popup{grid-column:2;grid-row:3;justify-self:center;align-self:end}div:where(.swal2-container).swal2-bottom-end>.swal2-popup,div:where(.swal2-container).swal2-bottom-right>.swal2-popup{grid-column:3;grid-row:3;align-self:end;justify-self:end}div:where(.swal2-container).swal2-grow-row>.swal2-popup,div:where(.swal2-container).swal2-grow-fullscreen>.swal2-popup{grid-column:1/4;width:100%}div:where(.swal2-container).swal2-grow-column>.swal2-popup,div:where(.swal2-container).swal2-grow-fullscreen>.swal2-popup{grid-row:1/4;align-self:stretch}div:where(.swal2-container).swal2-no-transition{transition:none !important}div:where(.swal2-container) div:where(.swal2-popup){display:none;position:relative;box-sizing:border-box;grid-template-columns:minmax(0, 100%);width:32em;max-width:100%;padding:0 0 1.25em;border:none;border-radius:5px;background:#fff;color:#545454;font-family:inherit;font-size:1rem}div:where(.swal2-container) div:where(.swal2-popup):focus{outline:none}div:where(.swal2-container) div:where(.swal2-popup).swal2-loading{overflow-y:hidden}div:where(.swal2-container) h2:where(.swal2-title){position:relative;max-width:100%;margin:0;padding:.8em 1em 0;color:inherit;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}div:where(.swal2-container) div:where(.swal2-actions){display:flex;z-index:1;box-sizing:border-box;flex-wrap:wrap;align-items:center;justify-content:center;width:auto;margin:1.25em auto 0;padding:0}div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled:hover{background-image:linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1))}div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled:active{background-image:linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2))}div:where(.swal2-container) div:where(.swal2-loader){display:none;align-items:center;justify-content:center;width:2.2em;height:2.2em;margin:0 1.875em;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;border-width:.25em;border-style:solid;border-radius:100%;border-color:#2778c4 rgba(0,0,0,0) #2778c4 rgba(0,0,0,0)}div:where(.swal2-container) button:where(.swal2-styled){margin:.3125em;padding:.625em 1.1em;transition:box-shadow .1s;box-shadow:0 0 0 3px rgba(0,0,0,0);font-weight:500}div:where(.swal2-container) button:where(.swal2-styled):not([disabled]){cursor:pointer}div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#7066e0;color:#fff;font-size:1em}div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:focus{box-shadow:0 0 0 3px rgba(112,102,224,.5)}div:where(.swal2-container) button:where(.swal2-styled).swal2-deny{border:0;border-radius:.25em;background:initial;background-color:#dc3741;color:#fff;font-size:1em}div:where(.swal2-container) button:where(.swal2-styled).swal2-deny:focus{box-shadow:0 0 0 3px rgba(220,55,65,.5)}div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#6e7881;color:#fff;font-size:1em}div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel:focus{box-shadow:0 0 0 3px rgba(110,120,129,.5)}div:where(.swal2-container) button:where(.swal2-styled).swal2-default-outline:focus{box-shadow:0 0 0 3px rgba(100,150,200,.5)}div:where(.swal2-container) button:where(.swal2-styled):focus{outline:none}div:where(.swal2-container) button:where(.swal2-styled)::-moz-focus-inner{border:0}div:where(.swal2-container) div:where(.swal2-footer){justify-content:center;margin:1em 0 0;padding:1em 1em 0;border-top:1px solid #eee;color:inherit;font-size:1em}div:where(.swal2-container) .swal2-timer-progress-bar-container{position:absolute;right:0;bottom:0;left:0;grid-column:auto !important;overflow:hidden;border-bottom-right-radius:5px;border-bottom-left-radius:5px}div:where(.swal2-container) div:where(.swal2-timer-progress-bar){width:100%;height:.25em;background:rgba(0,0,0,.2)}div:where(.swal2-container) img:where(.swal2-image){max-width:100%;margin:2em auto 1em}div:where(.swal2-container) button:where(.swal2-close){z-index:2;align-items:center;justify-content:center;width:1.2em;height:1.2em;margin-top:0;margin-right:0;margin-bottom:-1.2em;padding:0;overflow:hidden;transition:color .1s,box-shadow .1s;border:none;border-radius:5px;background:rgba(0,0,0,0);color:#ccc;font-family:monospace;font-size:2.5em;cursor:pointer;justify-self:end}div:where(.swal2-container) button:where(.swal2-close):hover{transform:none;background:rgba(0,0,0,0);color:#f27474}div:where(.swal2-container) button:where(.swal2-close):focus{outline:none;box-shadow:inset 0 0 0 3px rgba(100,150,200,.5)}div:where(.swal2-container) button:where(.swal2-close)::-moz-focus-inner{border:0}div:where(.swal2-container) .swal2-html-container{z-index:1;justify-content:center;margin:1em 1.6em .3em;padding:0;overflow:auto;color:inherit;font-size:1.125em;font-weight:normal;line-height:normal;text-align:center;word-wrap:break-word;word-break:break-word}div:where(.swal2-container) input:where(.swal2-input),div:where(.swal2-container) input:where(.swal2-file),div:where(.swal2-container) textarea:where(.swal2-textarea),div:where(.swal2-container) select:where(.swal2-select),div:where(.swal2-container) div:where(.swal2-radio),div:where(.swal2-container) label:where(.swal2-checkbox){margin:1em 2em 3px}div:where(.swal2-container) input:where(.swal2-input),div:where(.swal2-container) input:where(.swal2-file),div:where(.swal2-container) textarea:where(.swal2-textarea){box-sizing:border-box;width:auto;transition:border-color .1s,box-shadow .1s;border:1px solid #d9d9d9;border-radius:.1875em;background:rgba(0,0,0,0);box-shadow:inset 0 1px 1px rgba(0,0,0,.06),0 0 0 3px rgba(0,0,0,0);color:inherit;font-size:1.125em}div:where(.swal2-container) input:where(.swal2-input).swal2-inputerror,div:where(.swal2-container) input:where(.swal2-file).swal2-inputerror,div:where(.swal2-container) textarea:where(.swal2-textarea).swal2-inputerror{border-color:#f27474 !important;box-shadow:0 0 2px #f27474 !important}div:where(.swal2-container) input:where(.swal2-input):focus,div:where(.swal2-container) input:where(.swal2-file):focus,div:where(.swal2-container) textarea:where(.swal2-textarea):focus{border:1px solid #b4dbed;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,.06),0 0 0 3px rgba(100,150,200,.5)}div:where(.swal2-container) input:where(.swal2-input)::placeholder,div:where(.swal2-container) input:where(.swal2-file)::placeholder,div:where(.swal2-container) textarea:where(.swal2-textarea)::placeholder{color:#ccc}div:where(.swal2-container) .swal2-range{margin:1em 2em 3px;background:#fff}div:where(.swal2-container) .swal2-range input{width:80%}div:where(.swal2-container) .swal2-range output{width:20%;color:inherit;font-weight:600;text-align:center}div:where(.swal2-container) .swal2-range input,div:where(.swal2-container) .swal2-range output{height:2.625em;padding:0;font-size:1.125em;line-height:2.625em}div:where(.swal2-container) .swal2-input{height:2.625em;padding:0 .75em}div:where(.swal2-container) .swal2-file{width:75%;margin-right:auto;margin-left:auto;background:rgba(0,0,0,0);font-size:1.125em}div:where(.swal2-container) .swal2-textarea{height:6.75em;padding:.75em}div:where(.swal2-container) .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;background:rgba(0,0,0,0);color:inherit;font-size:1.125em}div:where(.swal2-container) .swal2-radio,div:where(.swal2-container) .swal2-checkbox{align-items:center;justify-content:center;background:#fff;color:inherit}div:where(.swal2-container) .swal2-radio label,div:where(.swal2-container) .swal2-checkbox label{margin:0 .6em;font-size:1.125em}div:where(.swal2-container) .swal2-radio input,div:where(.swal2-container) .swal2-checkbox input{flex-shrink:0;margin:0 .4em}div:where(.swal2-container) label:where(.swal2-input-label){display:flex;justify-content:center;margin:1em auto 0}div:where(.swal2-container) div:where(.swal2-validation-message){align-items:center;justify-content:center;margin:1em 0 0;padding:.625em;overflow:hidden;background:#f0f0f0;color:#666;font-size:1em;font-weight:300}div:where(.swal2-container) div:where(.swal2-validation-message)::before{content:"!";display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center}div:where(.swal2-container) .swal2-progress-steps{flex-wrap:wrap;align-items:center;max-width:100%;margin:1.25em auto;padding:0;background:rgba(0,0,0,0);font-weight:600}div:where(.swal2-container) .swal2-progress-steps li{display:inline-block;position:relative}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step{z-index:20;flex-shrink:0;width:2em;height:2em;border-radius:2em;background:#2778c4;color:#fff;line-height:2em;text-align:center}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step{background:#2778c4}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step{background:#add8e6;color:#fff}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line{background:#add8e6}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step-line{z-index:10;flex-shrink:0;width:2.5em;height:.4em;margin:0 -1px;background:#2778c4}div:where(.swal2-icon){position:relative;box-sizing:content-box;justify-content:center;width:5em;height:5em;margin:2.5em auto .6em;border:0.25em solid rgba(0,0,0,0);border-radius:50%;border-color:#000;font-family:inherit;line-height:5em;cursor:default;user-select:none}div:where(.swal2-icon) .swal2-icon-content{display:flex;align-items:center;font-size:3.75em}div:where(.swal2-icon).swal2-error{border-color:#f27474;color:#f27474}div:where(.swal2-icon).swal2-error .swal2-x-mark{position:relative;flex-grow:1}div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;transform:rotate(45deg)}div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;transform:rotate(-45deg)}div:where(.swal2-icon).swal2-error.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-error.swal2-icon-show .swal2-x-mark{animation:swal2-animate-error-x-mark .5s}div:where(.swal2-icon).swal2-warning{border-color:#facea8;color:#f8bb86}div:where(.swal2-icon).swal2-warning.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-warning.swal2-icon-show .swal2-icon-content{animation:swal2-animate-i-mark .5s}div:where(.swal2-icon).swal2-info{border-color:#9de0f6;color:#3fc3ee}div:where(.swal2-icon).swal2-info.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-info.swal2-icon-show .swal2-icon-content{animation:swal2-animate-i-mark .8s}div:where(.swal2-icon).swal2-question{border-color:#c9dae1;color:#87adbd}div:where(.swal2-icon).swal2-question.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-question.swal2-icon-show .swal2-icon-content{animation:swal2-animate-question-mark .8s}div:where(.swal2-icon).swal2-success{border-color:#a5dc86;color:#a5dc86}div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;transform:rotate(45deg);border-radius:50%}div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=left]{top:-0.4375em;left:-2.0635em;transform:rotate(-45deg);transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=right]{top:-0.6875em;left:1.875em;transform:rotate(-45deg);transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}div:where(.swal2-icon).swal2-success .swal2-success-ring{position:absolute;z-index:2;top:-0.25em;left:-0.25em;box-sizing:content-box;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%}div:where(.swal2-icon).swal2-success .swal2-success-fix{position:absolute;z-index:1;top:.5em;left:1.625em;width:.4375em;height:5.625em;transform:rotate(-45deg)}div:where(.swal2-icon).swal2-success [class^=swal2-success-line]{display:block;position:absolute;z-index:2;height:.3125em;border-radius:.125em;background-color:#a5dc86}div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.8125em;width:1.5625em;transform:rotate(45deg)}div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;transform:rotate(-45deg)}div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-tip{animation:swal2-animate-success-line-tip .75s}div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-long{animation:swal2-animate-success-line-long .75s}div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-circular-line-right{animation:swal2-rotate-success-circular-line 4.25s ease-in}[class^=swal2]{-webkit-tap-highlight-color:rgba(0,0,0,0)}.swal2-show{animation:swal2-show .3s}.swal2-hide{animation:swal2-hide .15s forwards}.swal2-noanimation{transition:none}.swal2-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.swal2-rtl .swal2-close{margin-right:initial;margin-left:0}.swal2-rtl .swal2-timer-progress-bar{right:0;left:auto}@keyframes swal2-toast-show{0%{transform:translateY(-0.625em) rotateZ(2deg)}33%{transform:translateY(0) rotateZ(-2deg)}66%{transform:translateY(0.3125em) rotateZ(2deg)}100%{transform:translateY(0) rotateZ(0deg)}}@keyframes swal2-toast-hide{100%{transform:rotateZ(1deg);opacity:0}}@keyframes swal2-toast-animate-success-line-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-0.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@keyframes swal2-toast-animate-success-line-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}@keyframes swal2-show{0%{transform:scale(0.7)}45%{transform:scale(1.05)}80%{transform:scale(0.95)}100%{transform:scale(1)}}@keyframes swal2-hide{0%{transform:scale(1);opacity:1}100%{transform:scale(0.5);opacity:0}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-0.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.8125em;width:1.5625em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}100%{transform:rotate(-405deg)}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;transform:scale(0.4);opacity:0}50%{margin-top:1.625em;transform:scale(0.4);opacity:0}80%{margin-top:-0.375em;transform:scale(1.15)}100%{margin-top:0;transform:scale(1);opacity:1}}@keyframes swal2-animate-error-icon{0%{transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0deg);opacity:1}}@keyframes swal2-rotate-loading{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes swal2-animate-question-mark{0%{transform:rotateY(-360deg)}100%{transform:rotateY(0)}}@keyframes swal2-animate-i-mark{0%{transform:rotateZ(45deg);opacity:0}25%{transform:rotateZ(-25deg);opacity:.4}50%{transform:rotateZ(15deg);opacity:.8}75%{transform:rotateZ(-5deg);opacity:1}100%{transform:rotateX(0);opacity:1}}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}body.swal2-height-auto{height:auto !important}body.swal2-no-backdrop .swal2-container{background-color:rgba(0,0,0,0) !important;pointer-events:none}body.swal2-no-backdrop .swal2-container .swal2-popup{pointer-events:all}body.swal2-no-backdrop .swal2-container .swal2-modal{box-shadow:0 0 10px rgba(0,0,0,.4)}@media print{body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll !important}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static !important}}body.swal2-toast-shown .swal2-container{box-sizing:border-box;width:360px;max-width:100%;background-color:rgba(0,0,0,0);pointer-events:none}body.swal2-toast-shown .swal2-container.swal2-top{inset:0 auto auto 50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{inset:0 0 auto auto}body.swal2-toast-shown .swal2-container.swal2-top-start,body.swal2-toast-shown .swal2-container.swal2-top-left{inset:0 auto auto 0}body.swal2-toast-shown .swal2-container.swal2-center-start,body.swal2-toast-shown .swal2-container.swal2-center-left{inset:50% auto auto 0;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{inset:50% auto auto 50%;transform:translate(-50%, -50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{inset:50% 0 auto auto;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-start,body.swal2-toast-shown .swal2-container.swal2-bottom-left{inset:auto auto 0 0}body.swal2-toast-shown .swal2-container.swal2-bottom{inset:auto auto 0 50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{inset:auto 0 0 auto}');
- }
- });
- // ../../packages/chatkit/dist/chunk-XT4TKGC2.mjs
- var __defProp2 = Object.defineProperty;
- var __export = (target, all) => {
- for (var name in all)
- __defProp2(target, name, { get: all[name], enumerable: true });
- };
- // ../../packages/chatkit/dist/chunk-OO65UF7B.mjs
- var chatgpt_exports = {};
- __export(chatgpt_exports, {
- clickFollowUpButton: () => clickFollowUpButton,
- getButton: () => getButton,
- getContinueGeneratingButton: () => getContinueGeneratingButton,
- getConversation: () => getConversation,
- getCopyLinkButton: () => getCopyLinkButton,
- getFollowUpButtons: () => getFollowUpButtons,
- getHistoryBlockTitle: () => getHistoryBlockTitle,
- getHistoryBlocks: () => getHistoryBlocks,
- getHistoryBlocksWithTitle: () => getHistoryBlocksWithTitle,
- getInitialButtons: () => getInitialButtons,
- getLastResponse: () => getLastResponse,
- getLastResponseElement: () => getLastResponseElement,
- getModelSelectButton: () => getModelSelectButton,
- getNav: () => getNav,
- getNewModelSelectButtons: () => getNewModelSelectButtons,
- getRegenerateButton: () => getRegenerateButton,
- getResponseElementHTMLs: () => getResponseElementHTMLs,
- getShareChatButton: () => getShareChatButton,
- getStopGeneratingButton: () => getStopGeneratingButton,
- getSubmitButton: () => getSubmitButton,
- getTextarea: () => getTextarea,
- getTextareaValue: () => getTextareaValue,
- hasNewModelSelectButtons: () => hasNewModelSelectButtons,
- isConversationStarted: () => isConversationStarted,
- isGenerating: () => isGenerating,
- isHorizontalConversation: () => isHorizontalConversation,
- onSend: () => onSend,
- regenerate: () => regenerate,
- send: () => send,
- sendArray: () => sendArray,
- setHorizontalConversation: () => setHorizontalConversation,
- setPromptListener: () => setPromptListener,
- setPureConversation: () => setPureConversation,
- setTextarea: () => setTextarea,
- waitForIdle: () => waitForIdle
- });
- function getNav() {
- return document.querySelector("nav");
- }
- function getHistoryBlocks() {
- const nav = getNav();
- if (!nav)
- return [];
- const r###lt = Array.from(nav.querySelectorAll("ol")).map((ol) => ol.parentElement);
- return r###lt;
- }
- function getHistoryBlockTitle(historyBlock) {
- var _a;
- return ((_a = historyBlock.querySelector("h3")) == null ? void 0 : _a.textContent) || "";
- }
- function getHistoryBlocksWithTitle() {
- const historyBlocks = getHistoryBlocks();
- const r###lt = historyBlocks.map((historyBlock) => ({
- block: historyBlock,
- title: getHistoryBlockTitle(historyBlock)
- }));
- return r###lt;
- }
- function getTextarea() {
- const form = document.querySelector("form");
- if (!form)
- return;
- const textareas = form.querySelectorAll("textarea");
- const r###lt = textareas[0];
- return r###lt;
- }
- function getNewSubmitButton() {
- return document.querySelector('button[data-testid$="send-button"]');
- }
- function getSubmitButton() {
- if (getNewSubmitButton()) {
- return getNewSubmitButton();
- }
- const textarea = getTextarea();
- if (!textarea)
- return;
- return textarea.nextElementSibling;
- }
- function getInitialButtons() {
- return Array.from(document.querySelectorAll('button[as="button"]')).filter((button) => button.querySelectorAll(".truncate").length === 2);
- }
- function getFollowUpButtons() {
- return Array.from(document.querySelectorAll('button[as="button"]')).filter((button) => {
- var _a;
- return (_a = button.textContent) == null ? void 0 : _a.trim().match(/[.!?]$/);
- });
- }
- function clickFollowUpButton(index) {
- const followUpButtons = getFollowUpButtons();
- if (followUpButtons.length === 0)
- return;
- if (index === void 0 || index < 0 || index >= followUpButtons.length) {
- index = Math.floor(Math.random() * followUpButtons.length);
- }
- followUpButtons[index].click();
- }
- function getButton(text) {
- const button = Array.from(document.querySelectorAll('button[data-testid$="button"]')).find((button2) => {
- var _a;
- return (_a = button2.getAttribute("data-testid")) == null ? void 0 : _a.includes(text);
- });
- if (button)
- return button;
- return Array.from(document.querySelectorAll('button[as="button"]')).find((button2) => {
- var _a;
- return (_a = button2.textContent) == null ? void 0 : _a.trim().toLowerCase().includes(text);
- });
- }
- function getRegenerateButton() {
- return getButton("regenerate");
- }
- function getContinueGeneratingButton() {
- const buttonInWideScreen = getButton("continue");
- if (buttonInWideScreen)
- return buttonInWideScreen;
- function getNthGenerationDescendants(element, generation) {
- const descendants = [];
- function findDescendants(node, currentDepth) {
- if (currentDepth === generation) {
- descendants.push(node);
- return;
- }
- node.childNodes.forEach((child) => findDescendants(child, currentDepth + 1));
- }
- findDescendants(element, 0);
- return descendants;
- }
- const form = document.querySelector("form");
- if (!form)
- return;
- const seventhGenerationDescendants = getNthGenerationDescendants(form, 7);
- if (seventhGenerationDescendants.length === 0 || seventhGenerationDescendants[0].nodeName !== "BUTTON")
- return;
- return seventhGenerationDescendants[0];
- }
- function getNewStopGeneratingButton() {
- const stopButtonNotLogin = document.querySelector('button[aria-label="Stop generating"]');
- const stopButton = document.querySelector('button[data-testid$="stop-button"]');
- return stopButtonNotLogin || stopButton;
- }
- function getStopGeneratingButton() {
- return getNewStopGeneratingButton() || getButton("stop");
- }
- function getResponseElementHTMLs() {
- return Array.from(document.querySelectorAll(".markdown")).map((m) => m.innerHTML);
- }
- function getLastResponseElement() {
- const responseElements = document.querySelectorAll(".group.w-full");
- return responseElements[responseElements.length - 1];
- }
- function getLastResponse() {
- const lastResponseElement = getLastResponseElement();
- if (!lastResponseElement)
- return;
- const lastResponse = lastResponseElement.textContent;
- return lastResponse;
- }
- function getTextareaValue() {
- var _a;
- return ((_a = getTextarea()) == null ? void 0 : _a.value) || "";
- }
- function setTextarea(message) {
- const textarea = getTextarea();
- if (!textarea)
- return;
- textarea.value = message;
- textarea.dispatchEvent(new Event("input", { bubbles: true }));
- }
- function send(message) {
- return __async(this, null, function* () {
- var _a;
- setTextarea(message);
- const textarea = getTextarea();
- if (!textarea)
- return;
- (_a = getSubmitButton()) == null ? void 0 : _a.click();
- for (let i = 0; i < 10; i++) {
- if (isGenerating()) {
- break;
- }
- yield new Promise((resolve) => setTimeout(resolve, 1e3));
- }
- });
- }
- function regenerate() {
- const regenerateButton = getRegenerateButton();
- if (!regenerateButton)
- return;
- regenerateButton.click();
- }
- function onSend(callback) {
- const textarea = getTextarea();
- if (!textarea)
- return;
- textarea.addEventListener("keydown", function(event) {
- if (event.key === "Enter" && !event.shiftKey) {
- callback();
- }
- });
- const sendButton = getSubmitButton();
- if (!sendButton)
- return;
- sendButton.addEventListener("mousedown", callback);
- }
- function isGenerating() {
- var _a, _b;
- if (getNewStopGeneratingButton()) {
- return true;
- }
- return ((_b = (_a = getSubmitButton()) == null ? void 0 : _a.firstElementChild) == null ? void 0 : _b.childElementCount) === 3;
- }
- function waitForIdle() {
- return new Promise((resolve) => {
- const interval = setInterval(() => {
- if (!isGenerating()) {
- clearInterval(interval);
- resolve();
- }
- }, 1e3);
- });
- }
- function sendArray(messages) {
- return __async(this, null, function* () {
- var _a, _b;
- let firstTime = true;
- const isLong = messages.length > 60;
- let stop = false;
- while (messages.length > 0 || stop) {
- stop = false;
- const waitTime = isLong && !document.hasFocus() ? 20 * 1e3 : 2e3;
- if (!firstTime) {
- yield new Promise((resolve) => setTimeout(resolve, waitTime));
- }
- firstTime = false;
- if (isGenerating()) {
- continue;
- } else if (getContinueGeneratingButton()) {
- (_a = getContinueGeneratingButton()) == null ? void 0 : _a.click();
- stop = true;
- continue;
- } else if (getRegenerateButton() && !getTextarea()) {
- yield new Promise((resolve) => setTimeout(resolve, 10 * 1e3));
- (_b = getRegenerateButton()) == null ? void 0 : _b.click();
- stop = true;
- continue;
- }
- if (messages.length === 0) {
- break;
- }
- yield send(messages.shift() || "");
- }
- });
- }
- function setPromptListener(key = "prompt_texts") {
- let last_trigger_time = +/* @__PURE__ */ new Date();
- if (location.href.includes("chatgpt.com")) {
- GM_addValueChangeListener(key, (name, old_value, new_value) => __async(this, null, function* () {
- if (+/* @__PURE__ */ new Date() - last_trigger_time < 500) {
- return;
- }
- last_trigger_time = +/* @__PURE__ */ new Date();
- setTimeout(() => __async(this, null, function* () {
- sendArray(new_value);
- GM_setValue(key, []);
- }), 0);
- }));
- }
- }
- function getConversation() {
- var _a, _b;
- return (_b = (_a = document.querySelector('div[class^="react-scroll-to-bottom"]')) == null ? void 0 : _a.firstChild) == null ? void 0 : _b.firstChild;
- }
- function getModelSelectButton() {
- const conversation = getConversation();
- if (!conversation)
- return;
- return Array.from(conversation.querySelectorAll("button")).find((button) => {
- var _a;
- return (_a = button.textContent) == null ? void 0 : _a.trim().toLowerCase().includes("model");
- });
- }
- function getNewModelSelectButtons() {
- return Array.from(document.querySelectorAll("[class^='group/button']"));
- }
- function hasNewModelSelectButtons() {
- return getNewModelSelectButtons().length > 0;
- }
- function isConversationStarted() {
- return !getModelSelectButton();
- }
- function setPureConversation() {
- const conversation = getConversation();
- if (!conversation)
- return;
- const firstChild = conversation.firstChild;
- if (!firstChild)
- return;
- const newDiv = document.createElement("div");
- conversation.insertBefore(newDiv, firstChild.nextSibling);
- }
- function isHorizontalConversation() {
- const conversation = getConversation();
- if (!conversation)
- return true;
- if (!isConversationStarted())
- return true;
- return conversation.classList.contains("grid");
- }
- function setHorizontalConversation() {
- if (isHorizontalConversation())
- return;
- setPureConversation();
- const conversation = getConversation();
- if (!conversation)
- return;
- conversation.classList.remove("flex", "flex-col", "items-center");
- conversation.classList.add("grid", "grid-cols-2", "place-items-center");
- }
- function getShareChatButton() {
- return document.querySelector('button[aria-label="Share chat"]');
- }
- function getCopyLinkButton() {
- return Array.from(document.querySelectorAll('button[as="button"]')).filter((button) => {
- var _a;
- return (_a = button.textContent) == null ? void 0 : _a.trim().toLowerCase().includes("copy link");
- })[0];
- }
- // ../../packages/chatkit/dist/chunk-RFRANKSD.mjs
- var claude_exports = {};
- __export(claude_exports, {
- getFieldset: () => getFieldset,
- getPromptElementHTMLs: () => getPromptElementHTMLs,
- getResponseElementHTMLs: () => getResponseElementHTMLs2,
- getSubmitButton: () => getSubmitButton2,
- getTextarea: () => getTextarea2,
- isGenerating: () => isGenerating2,
- send: () => send2,
- setPromptListener: () => setPromptListener2,
- setTextarea: () => setTextarea2
- });
- function getFieldset() {
- const fieldsets = document.querySelectorAll("fieldset");
- return fieldsets[fieldsets.length - 1];
- }
- function getTextarea2() {
- const fieldset = getFieldset();
- if (!fieldset)
- return;
- return fieldset.querySelector("p");
- }
- function setTextarea2(message) {
- const textarea = getTextarea2();
- if (!textarea)
- return;
- textarea.textContent = message;
- }
- function getSubmitButton2() {
- const fieldset = getFieldset();
- return fieldset.querySelector("button");
- }
- function getPromptElementHTMLs() {
- return Array.from(document.querySelectorAll(".ReactMarkdown.place-self-end > .contents")).map((m) => m.innerHTML);
- }
- function getResponseElementHTMLs2() {
- return Array.from(document.querySelectorAll(".ReactMarkdown.place-self-start > .contents")).map((m) => m.innerHTML);
- }
- function isGenerating2() {
- var _a;
- return (_a = getSubmitButton2()) == null ? void 0 : _a.hasAttribute("disabled");
- }
- function send2(message) {
- return __async(this, null, function* () {
- var _a;
- setTextarea2(message);
- const textarea = getTextarea2();
- if (!textarea)
- return;
- while (textarea.textContent === message) {
- yield new Promise((resolve) => setTimeout(resolve, 100));
- (_a = getSubmitButton2()) == null ? void 0 : _a.click();
- }
- for (let i = 0; i < 10; i++) {
- if (isGenerating2()) {
- return;
- }
- yield new Promise((resolve) => setTimeout(resolve, 1e3));
- }
- });
- }
- function setPromptListener2(key = "prompt_texts") {
- let last_trigger_time = +/* @__PURE__ */ new Date();
- if (location.href.includes("claude.ai")) {
- GM_addValueChangeListener(key, (name, old_value, new_value) => __async(this, null, function* () {
- if (+/* @__PURE__ */ new Date() - last_trigger_time < 500) {
- return;
- }
- last_trigger_time = +/* @__PURE__ */ new Date();
- setTimeout(() => __async(this, null, function* () {
- const prompt_texts = new_value;
- const isLong = prompt_texts.length > 60;
- if (prompt_texts.length > 0) {
- let firstTime = true;
- while (prompt_texts.length > 0) {
- const waitTime = isLong && !document.hasFocus() ? 20 * 1e3 : 2e3;
- if (firstTime) {
- yield new Promise((resolve) => setTimeout(resolve, 2e3));
- }
- if (!firstTime) {
- yield new Promise((resolve) => setTimeout(resolve, waitTime));
- }
- if (!firstTime && isGenerating2()) {
- continue;
- }
- firstTime = false;
- yield send2(prompt_texts.shift() || "");
- }
- }
- }), 0);
- GM_setValue(key, []);
- }));
- }
- }
- // ../../packages/page-button/dist/index.mjs
- var import_sweetalert2 = __toESM(require_sweetalert2_all(), 1);
- function displayHTML(html) {
- return __async(this, null, function* () {
- let screenWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
- let swalWidth = screenWidth < 800 ? "80%" : "800px";
- if (!document.head.querySelector("#readModeStyle")) {
- let style = document.createElement("style");
- style.type = "text/css";
- style.id = "readModeStyle";
- style.innerHTML = `
- .text-left { text-align: left !important; }
- .scrollable { max-height: 90vh; overflow-y: auto; }
- `;
- document.head.appendChild(style);
- }
- import_sweetalert2.default.fire({
- title: "",
- html,
- width: swalWidth,
- padding: "0em",
- background: "#fff",
- backdrop: "rgba(128,128,128,0.4)",
- showConfirmButton: false,
- showClass: { popup: "", backdrop: "" },
- customClass: { htmlContainer: "text-left scrollable swal-font" },
- willClose: () => {
- const scrollable = document.querySelector(".scrollable");
- if (scrollable) {
- localStorage.setItem("scrollPos" + window.location.href, `${scrollable.scrollTop}`);
- }
- },
- didOpen: () => {
- const scrollable = document.querySelector(".scrollable");
- if (scrollable) {
- scrollable.scrollTop = parseInt(localStorage.getItem("scrollPos" + window.location.href) || "0");
- }
- }
- });
- });
- }
- // src/index.ts
- function initialize() {
- return __async(this, null, function* () {
- yield new Promise((r) => window.addEventListener("load", r));
- yield new Promise((r) => setTimeout(r, 1e3));
- });
- }
- (() => __async(void 0, null, function* () {
- yield initialize();
- function displayReadMode() {
- if (window.location.href.includes("chatgpt.com")) {
- let elements = chatgpt_exports.getResponseElementHTMLs();
- if (elements.length === 0) {
- elements = ["<p>No responses available.</p>"];
- }
- displayHTML(`<div class="relative p-2 markdown prose w-full break-words dark:prose-invert light">${elements.join("")}</div>`);
- }
- if (window.location.href.includes("claude.ai")) {
- let elements = claude_exports.getResponseElementHTMLs();
- if (elements.length === 0) {
- elements = ["<p>No responses available.</p>"];
- }
- displayHTML(`<div class="ReactMarkdown break-words text-stone-900 gap-3 grid">${elements.join("")}</div>`);
- }
- }
- GM_registerMenuCommand("\u{1F4D6} Read Mode", displayReadMode);
- }))();
- })();
- /*! Bundled license information:
- sweetalert2/dist/sweetalert2.all.js:
- (*!
- * sweetalert2 v11.7.18
- * Released under the MIT License.
- *)
- */