import { IgniteProperty } from "../ignite-html/ignite-html.js"; class Toast { static info(content, timeout = 4000, closable = true) { return this.makeToast("?", content, "info", timeout, closable); } static warning(content, timeout = 4000, closable = true) { return this.makeToast("!", content, "warning", timeout, closable); } static error(content, timeout = 4000, closable = true) { return this.makeToast("×", content, "error", timeout, closable); } static success(content, timeout = 4000, closable = true) { return this.makeToast("✔", content, "success", timeout, closable); } static makeToast(icon, content, type, timeout, closable) { var color = ""; if (type == "error") { color = "#ff7979"; } else if (type == "warning") { color = "#ffc107"; } else if (type == "info") { color = "#2196f3"; } else if (type == "success") { color = "#10c469"; } document.querySelectorAll(".ignite-html-toast").forEach(element => element.remove()); var temp = document.createElement('div'); temp.innerHTML = `