"use client";
import {
require_react_dom
} from "./chunk-ODBTC7VH.js";
import {
require_react
} from "./chunk-7EEON6PG.js";
import {
__toESM
} from "./chunk-4B2QHNJT.js";
// node_modules/sonner/dist/index.mjs
var import_react = __toESM(require_react(), 1);
var import_react_dom = __toESM(require_react_dom(), 1);
function __insertCSS(code) {
if (!code || typeof document == "undefined") return;
let head = document.head || document.getElementsByTagName("head")[0];
let style = document.createElement("style");
style.type = "text/css";
head.appendChild(style);
style.styleSheet ? style.styleSheet.cssText = code : style.appendChild(document.createTextNode(code));
}
var getAsset = (type) => {
switch (type) {
case "success":
return SuccessIcon;
case "info":
return InfoIcon;
case "warning":
return WarningIcon;
case "error":
return ErrorIcon;
default:
return null;
}
};
var bars = Array(12).fill(0);
var Loader = ({ visible, className }) => {
return import_react.default.createElement("div", {
className: [
"sonner-loading-wrapper",
className
].filter(Boolean).join(" "),
"data-visible": visible
}, import_react.default.createElement("div", {
className: "sonner-spinner"
}, bars.map((_, i) => import_react.default.createElement("div", {
className: "sonner-loading-bar",
key: `spinner-bar-${i}`
}))));
};
var SuccessIcon = import_react.default.createElement("svg", {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor",
height: "20",
width: "20"
}, import_react.default.createElement("path", {
fillRule: "evenodd",
d: "M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z",
clipRule: "evenodd"
}));
var WarningIcon = import_react.default.createElement("svg", {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
height: "20",
width: "20"
}, import_react.default.createElement("path", {
fillRule: "evenodd",
d: "M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003zM12 8.25a.75.75 0 01.75.75v3.75a.75.75 0 01-1.5 0V9a.75.75 0 01.75-.75zm0 8.25a.75.75 0 100-1.5.75.75 0 000 1.5z",
clipRule: "evenodd"
}));
var InfoIcon = import_react.default.createElement("svg", {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor",
height: "20",
width: "20"
}, import_react.default.createElement("path", {
fillRule: "evenodd",
d: "M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a.75.75 0 000 1.5h.253a.25.25 0 01.244.304l-.459 2.066A1.75 1.75 0 0010.747 15H11a.75.75 0 000-1.5h-.253a.25.25 0 01-.244-.304l.459-2.066A1.75 1.75 0 009.253 9H9z",
clipRule: "evenodd"
}));
var ErrorIcon = import_react.default.createElement("svg", {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor",
height: "20",
width: "20"
}, import_react.default.createElement("path", {
fillRule: "evenodd",
d: "M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-5a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0v-4.5A.75.75 0 0110 5zm0 10a1 1 0 100-2 1 1 0 000 2z",
clipRule: "evenodd"
}));
var CloseIcon = import_react.default.createElement("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: "12",
height: "12",
viewBox: "0 0 24 24",
fill: "none",
stroke: "currentColor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}, import_react.default.createElement("line", {
x1: "18",
y1: "6",
x2: "6",
y2: "18"
}), import_react.default.createElement("line", {
x1: "6",
y1: "6",
x2: "18",
y2: "18"
}));
var useIsDocumentHidden = () => {
const [isDocumentHidden, setIsDocumentHidden] = import_react.default.useState(document.hidden);
import_react.default.useEffect(() => {
const callback = () => {
setIsDocumentHidden(document.hidden);
};
document.addEventListener("visibilitychange", callback);
return () => window.removeEventListener("visibilitychange", callback);
}, []);
return isDocumentHidden;
};
var toastsCounter = 1;
var Observer = class {
constructor() {
this.subscribe = (subscriber) => {
this.subscribers.push(subscriber);
return () => {
const index = this.subscribers.indexOf(subscriber);
this.subscribers.splice(index, 1);
};
};
this.publish = (data) => {
this.subscribers.forEach((subscriber) => subscriber(data));
};
this.addToast = (data) => {
this.publish(data);
this.toasts = [
...this.toasts,
data
];
};
this.create = (data) => {
var _data_id;
const { message, ...rest } = data;
const id = typeof (data == null ? void 0 : data.id) === "number" || ((_data_id = data.id) == null ? void 0 : _data_id.length) > 0 ? data.id : toastsCounter++;
const alreadyExists = this.toasts.find((toast2) => {
return toast2.id === id;
});
const dismissible = data.dismissible === void 0 ? true : data.dismissible;
if (this.dismissedToasts.has(id)) {
this.dismissedToasts.delete(id);
}
if (alreadyExists) {
this.toasts = this.toasts.map((toast2) => {
if (toast2.id === id) {
this.publish({
...toast2,
...data,
id,
title: message
});
return {
...toast2,
...data,
id,
dismissible,
title: message
};
}
return toast2;
});
} else {
this.addToast({
title: message,
...rest,
dismissible,
id
});
}
return id;
};
this.dismiss = (id) => {
if (id) {
this.dismissedToasts.add(id);
requestAnimationFrame(() => this.subscribers.forEach((subscriber) => subscriber({
id,
dismiss: true
})));
} else {
this.toasts.forEach((toast2) => {
this.subscribers.forEach((subscriber) => subscriber({
id: toast2.id,
dismiss: true
}));
});
}
return id;
};
this.message = (message, data) => {
return this.create({
...data,
message
});
};
this.error = (message, data) => {
return this.create({
...data,
message,
type: "error"
});
};
this.success = (message, data) => {
return this.create({
...data,
type: "success",
message
});
};
this.info = (message, data) => {
return this.create({
...data,
type: "info",
message
});
};
this.warning = (message, data) => {
return this.create({
...data,
type: "warning",
message
});
};
this.loading = (message, data) => {
return this.create({
...data,
type: "loading",
message
});
};
this.promise = (promise, data) => {
if (!data) {
return;
}
let id = void 0;
if (data.loading !== void 0) {
id = this.create({
...data,
promise,
type: "loading",
message: data.loading,
description: typeof data.description !== "function" ? data.description : void 0
});
}
const p = Promise.resolve(promise instanceof Function ? promise() : promise);
let shouldDismiss = id !== void 0;
let result;
const originalPromise = p.then(async (response) => {
result = [
"resolve",
response
];
const isReactElementResponse = import_react.default.isValidElement(response);
if (isReactElementResponse) {
shouldDismiss = false;
this.create({
id,
type: "default",
message: response
});
} else if (isHttpResponse(response) && !response.ok) {
shouldDismiss = false;
const promiseData = typeof data.error === "function" ? await data.error(`HTTP error! status: ${response.status}`) : data.error;
const description = typeof data.description === "function" ? await data.description(`HTTP error! status: ${response.status}`) : data.description;
const isExtendedResult = typeof promiseData === "object" && !import_react.default.isValidElement(promiseData);
const toastSettings = isExtendedResult ? promiseData : {
message: promiseData
};
this.create({
id,
type: "error",
description,
...toastSettings
});
} else if (response instanceof Error) {
shouldDismiss = false;
const promiseData = typeof data.error === "function" ? await data.error(response) : data.error;
const description = typeof data.description === "function" ? await data.description(response) : data.description;
const isExtendedResult = typeof promiseData === "object" && !import_react.default.isValidElement(promiseData);
const toastSettings = isExtendedResult ? promiseData : {
message: promiseData
};
this.create({
id,
type: "error",
description,
...toastSettings
});
} else if (data.success !== void 0) {
shouldDismiss = false;
const promiseData = typeof data.success === "function" ? await data.success(response) : data.success;
const description = typeof data.description === "function" ? await data.description(response) : data.description;
const isExtendedResult = typeof promiseData === "object" && !import_react.default.isValidElement(promiseData);
const toastSettings = isExtendedResult ? promiseData : {
message: promiseData
};
this.create({
id,
type: "success",
description,
...toastSettings
});
}
}).catch(async (error) => {
result = [
"reject",
error
];
if (data.error !== void 0) {
shouldDismiss = false;
const promiseData = typeof data.error === "function" ? await data.error(error) : data.error;
const description = typeof data.description === "function" ? await data.description(error) : data.description;
const isExtendedResult = typeof promiseData === "object" && !import_react.default.isValidElement(promiseData);
const toastSettings = isExtendedResult ? promiseData : {
message: promiseData
};
this.create({
id,
type: "error",
description,
...toastSettings
});
}
}).finally(() => {
if (shouldDismiss) {
this.dismiss(id);
id = void 0;
}
data.finally == null ? void 0 : data.finally.call(data);
});
const unwrap = () => new Promise((resolve, reject) => originalPromise.then(() => result[0] === "reject" ? reject(result[1]) : resolve(result[1])).catch(reject));
if (typeof id !== "string" && typeof id !== "number") {
return {
unwrap
};
} else {
return Object.assign(id, {
unwrap
});
}
};
this.custom = (jsx, data) => {
const id = (data == null ? void 0 : data.id) || toastsCounter++;
this.create({
jsx: jsx(id),
id,
...data
});
return id;
};
this.getActiveToasts = () => {
return this.toasts.filter((toast2) => !this.dismissedToasts.has(toast2.id));
};
this.subscribers = [];
this.toasts = [];
this.dismissedToasts = /* @__PURE__ */ new Set();
}
};
var ToastState = new Observer();
var toastFunction = (message, data) => {
const id = (data == null ? void 0 : data.id) || toastsCounter++;
ToastState.addToast({
title: message,
...data,
id
});
return id;
};
var isHttpResponse = (data) => {
return data && typeof data === "object" && "ok" in data && typeof data.ok === "boolean" && "status" in data && typeof data.status === "number";
};
var basicToast = toastFunction;
var getHistory = () => ToastState.toasts;
var getToasts = () => ToastState.getActiveToasts();
var toast = Object.assign(basicToast, {
success: ToastState.success,
info: ToastState.info,
warning: ToastState.warning,
error: ToastState.error,
custom: ToastState.custom,
message: ToastState.message,
promise: ToastState.promise,
dismiss: ToastState.dismiss,
loading: ToastState.loading
}, {
getHistory,
getToasts
});
__insertCSS("[data-sonner-toaster][dir=ltr],html[dir=ltr]{--toast-icon-margin-start:-3px;--toast-icon-margin-end:4px;--toast-svg-margin-start:-1px;--toast-svg-margin-end:0px;--toast-button-margin-start:auto;--toast-button-margin-end:0;--toast-close-button-start:0;--toast-close-button-end:unset;--toast-close-button-transform:translate(-35%, -35%)}[data-sonner-toaster][dir=rtl],html[dir=rtl]{--toast-icon-margin-start:4px;--toast-icon-margin-end:-3px;--toast-svg-margin-start:0px;--toast-svg-margin-end:-1px;--toast-button-margin-start:0;--toast-button-margin-end:auto;--toast-close-button-start:unset;--toast-close-button-end:0;--toast-close-button-transform:translate(35%, -35%)}[data-sonner-toaster]{position:fixed;width:var(--width);font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--gray1:hsl(0, 0%, 99%);--gray2:hsl(0, 0%, 97.3%);--gray3:hsl(0, 0%, 95.1%);--gray4:hsl(0, 0%, 93%);--gray5:hsl(0, 0%, 90.9%);--gray6:hsl(0, 0%, 88.7%);--gray7:hsl(0, 0%, 85.8%);--gray8:hsl(0, 0%, 78%);--gray9:hsl(0, 0%, 56.1%);--gray10:hsl(0, 0%, 52.3%);--gray11:hsl(0, 0%, 43.5%);--gray12:hsl(0, 0%, 9%);--border-radius:8px;box-sizing:border-box;padding:0;margin:0;list-style:none;outline:0;z-index:999999999;transition:transform .4s ease}@media (hover:none) and (pointer:coarse){[data-sonner-toaster][data-lifted=true]{transform:none}}[data-sonner-toaster][data-x-position=right]{right:var(--offset-right)}[data-sonner-toaster][data-x-position=left]{left:var(--offset-left)}[data-sonner-toaster][data-x-position=center]{left:50%;transform:translateX(-50%)}[data-sonner-toaster][data-y-position=top]{top:var(--offset-top)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--offset-bottom)}[data-sonner-toast]{--y:translateY(100%);--lift-amount:calc(var(--lift) * var(--gap));z-index:var(--z-index);position:absolute;opacity:0;transform:var(--y);touch-action:none;transition:transform .4s,opacity .4s,height .4s,box-shadow .2s;box-sizing:border-box;outline:0;overflow-wrap:anywhere}[data-sonner-toast][data-styled=true]{padding:16px;background:var(--normal-bg);border:1px solid var(--normal-border);color:var(--normal-text);border-radius:var(--border-radius);box-shadow:0 4px 12px rgba(0,0,0,.1);width:var(--width);font-size:13px;display:flex;align-items:center;gap:6px}[data-sonner-toast]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-y-position=top]{top:0;--y:translateY(-100%);--lift:1;--lift-amount:calc(1 * var(--gap))}[data-sonner-toast][data-y-position=bottom]{bottom:0;--y:translateY(100%);--lift:-1;--lift-amount:calc(var(--lift) * var(--gap))}[data-sonner-toast][data-styled=true] [data-description]{font-weight:400;line-height:1.4;color:#3f3f3f}[data-rich-colors=true][data-sonner-toast][data-styled=true] [data-description]{color:inherit}[data-sonner-toaster][data-sonner-theme=dark] [data-description]{color:#e8e8e8}[data-sonner-toast][data-styled=true] [data-title]{font-weight:500;line-height:1.5;color:inherit}[data-sonner-toast][data-styled=true] [data-icon]{display:flex;height:16px;width:16px;position:relative;justify-content:flex-start;align-items:center;flex-shrink:0;margin-left:var(--toast-icon-margin-start);margin-right:var(--toast-icon-margin-end)}[data-sonner-toast][data-promise=true] [data-icon]>svg{opacity:0;transform:scale(.8);transform-origin:center;animation:sonner-fade-in .3s ease forwards}[data-sonner-toast][data-styled=true] [data-icon]>*{flex-shrink:0}[data-sonner-toast][data-styled=true] [data-icon] svg{margin-left:var(--toast-svg-margin-start);margin-right:var(--toast-svg-margin-end)}[data-sonner-toast][data-styled=true] [data-content]{display:flex;flex-direction:column;gap:2px}[data-sonner-toast][data-styled=true] [data-button]{border-radius:4px;padding-left:8px;padding-right:8px;height:24px;font-size:12px;color:var(--normal-bg);background:var(--normal-text);margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end);border:none;font-weight:500;cursor:pointer;outline:0;display:flex;align-items:center;flex-shrink:0;transition:opacity .4s,box-shadow .2s}[data-sonner-toast][data-styled=true] [data-button]:focus-visible{box-shadow:0 0 0 2px rgba(0,0,0,.4)}[data-sonner-toast][data-styled=true] [data-button]:first-of-type{margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end)}[data-sonner-toast][data-styled=true] [data-cancel]{color:var(--normal-text);background:rgba(0,0,0,.08)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-styled=true] [data-cancel]{background:rgba(255,255,255,.3)}[data-sonner-toast][data-styled=true] [data-close-button]{position:absolute;left:var(--toast-close-button-start);right:var(--toast-close-button-end);top:0;height:20px;width:20px;display:flex;justify-content:center;align-items:center;padding:0;color:var(--gray12);background:var(--normal-bg);border:1px solid var(--gray4);transform:var(--toast-close-button-transform);border-radius:50%;cursor:pointer;z-index:1;transition:opacity .1s,background .2s,border-color .2s}[data-sonner-toast][data-styled=true] [data-close-button]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-styled=true] [data-disabled=true]{cursor:not-allowed}[data-sonner-toast][data-styled=true]:hover [data-close-button]:hover{background:var(--gray2);border-color:var(--gray5)}[data-sonner-toast][data-swiping=true]::before{content:'';position:absolute;left:-100%;right:-100%;height:100%;z-index:-1}[data-sonner-toast][data-y-position=top][data-swiping=true]::before{bottom:50%;transform:scaleY(3) translateY(50%)}[data-sonner-toast][data-y-position=bottom][data-swiping=true]::before{top:50%;transform:scaleY(3) translateY(-50%)}[data-sonner-toast][data-swiping=false][data-removed=true]::before{content:'';position:absolute;inset:0;transform:scaleY(2)}[data-sonner-toast][data-expanded=true]::after{content:'';position:absolute;left:0;height:calc(var(--gap) + 1px);bottom:100%;width:100%}[data-sonner-toast][data-mounted=true]{--y:translateY(0);opacity:1}[data-sonner-toast][data-expanded=false][data-front=false]{--scale:var(--toasts-before) * 0.05 + 1;--y:translateY(calc(var(--lift-amount) * var(--toasts-before))) scale(calc(-1 * var(--scale)));height:var(--front-toast-height)}[data-sonner-toast]>*{transition:opacity .4s}[data-sonner-toast][data-x-position=right]{right:0}[data-sonner-toast][data-x-position=left]{left:0}[data-sonner-toast][data-expanded=false][data-front=false][data-styled=true]>*{opacity:0}[data-sonner-toast][data-visible=false]{opacity:0;pointer-events:none}[data-sonner-toast][data-mounted=true][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset)));height:var(--initial-height)}[data-sonner-toast][data-removed=true][data-front=true][data-swipe-out=false]{--y:translateY(calc(var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset) + var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=false]{--y:translateY(40%);opacity:0;transition:transform .5s,opacity .2s}[data-sonner-toast][data-removed=true][data-front=false]::before{height:calc(var(--initial-height) + 20%)}[data-sonner-toast][data-swiping=true]{transform:var(--y) translateY(var(--swipe-amount-y,0)) translateX(var(--swipe-amount-x,0));transition:none}[data-sonner-toast][data-swiped=true]{user-select:none}[data-sonner-toast][data-swipe-out=true][data-y-position=bottom],[data-sonner-toast][data-swipe-out=true][data-y-position=top]{animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:forwards}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=left]{animation-name:swipe-out-left}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=right]{animation-name:swipe-out-right}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=up]{animation-name:swipe-out-up}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=down]{animation-name:swipe-out-down}@keyframes swipe-out-left{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) - 100%));opacity:0}}@keyframes swipe-out-right{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) + 100%));opacity:0}}@keyframes swipe-out-up{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) - 100%));opacity:0}}@keyframes swipe-out-down{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) + 100%));opacity:0}}@media (max-width:600px){[data-sonner-toaster]{position:fixed;right:var(--mobile-offset-right);left:var(--mobile-offset-left);width:100%}[data-sonner-toaster][dir=rtl]{left:calc(var(--mobile-offset-left) * -1)}[data-sonner-toaster] [data-sonner-toast]{left:0;right:0;width:calc(100% - var(--mobile-offset-left) * 2)}[data-sonner-toaster][data-x-position=left]{left:var(--mobile-offset-left)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--mobile-offset-bottom)}[data-sonner-toaster][data-y-position=top]{top:var(--mobile-offset-top)}[data-sonner-toaster][data-x-position=center]{left:var(--mobile-offset-left);right:var(--mobile-offset-right);transform:none}}[data-sonner-toaster][data-sonner-theme=light]{--normal-bg:#fff;--normal-border:var(--gray4);--normal-text:var(--gray12);--success-bg:hsl(143, 85%, 96%);--success-border:hsl(145, 92%, 87%);--success-text:hsl(140, 100%, 27%);--info-bg:hsl(208, 100%, 97%);--info-border:hsl(221, 91%, 93%);--info-text:hsl(210, 92%, 45%);--warning-bg:hsl(49, 100%, 97%);--warning-border:hsl(49, 91%, 84%);--warning-text:hsl(31, 92%, 45%);--error-bg:hsl(359, 100%, 97%);--error-border:hsl(359, 100%, 94%);--error-text:hsl(360, 100%, 45%)}[data-sonner-toaster][data-sonner-theme=light] [data-sonner-toast][data-invert=true]{--normal-bg:#000;--normal-border:hsl(0, 0%, 20%);--normal-text:var(--gray1)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-invert=true]{--normal-bg:#fff;--normal-border:var(--gray3);--normal-text:var(--gray12)}[data-sonner-toaster][data-sonner-theme=dark]{--normal-bg:#000;--normal-bg-hover:hsl(0, 0%, 12%);--normal-border:hsl(0, 0%, 20%);--normal-border-hover:hsl(0, 0%, 25%);--normal-text:var(--gray1);--success-bg:hsl(150, 100%, 6%);--success-border:hsl(147, 100%, 12%);--success-text:hsl(150, 86%, 65%);--info-bg:hsl(215, 100%, 6%);--info-border:hsl(223, 43%, 17%);--info-text:hsl(216, 87%, 65%);--warning-bg:hsl(64, 100%, 6%);--warning-border:hsl(60, 100%, 9%);--warning-text:hsl(46, 87%, 65%);--error-bg:hsl(358, 76%, 10%);--error-border:hsl(357, 89%, 16%);--error-text:hsl(358, 100%, 81%)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]{background:var(--normal-bg);border-color:var(--normal-border);color:var(--normal-text)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]:hover{background:var(--normal-bg-hover);border-color:var(--normal-border-hover)}[data-rich-colors=true][data-sonner-toast][data-type=success]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=success] [data-close-button]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=info]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=info] [data-close-button]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning] [data-close-button]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=error]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}[data-rich-colors=true][data-sonner-toast][data-type=error] [data-close-button]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}.sonner-loading-wrapper{--size:16px;height:var(--size);width:var(--size);position:absolute;inset:0;z-index:10}.sonner-loading-wrapper[data-visible=false]{transform-origin:center;animation:sonner-fade-out .2s ease forwards}.sonner-spinner{position:relative;top:50%;left:50%;height:var(--size);width:var(--size)}.sonner-loading-bar{animation:sonner-spin 1.2s linear infinite;background:var(--gray11);border-radius:6px;height:8%;left:-10%;position:absolute;top:-3.9%;width:24%}.sonner-loading-bar:first-child{animation-delay:-1.2s;transform:rotate(.0001deg) translate(146%)}.sonner-loading-bar:nth-child(2){animation-delay:-1.1s;transform:rotate(30deg) translate(146%)}.sonner-loading-bar:nth-child(3){animation-delay:-1s;transform:rotate(60deg) translate(146%)}.sonner-loading-bar:nth-child(4){animation-delay:-.9s;transform:rotate(90deg) translate(146%)}.sonner-loading-bar:nth-child(5){animation-delay:-.8s;transform:rotate(120deg) translate(146%)}.sonner-loading-bar:nth-child(6){animation-delay:-.7s;transform:rotate(150deg) translate(146%)}.sonner-loading-bar:nth-child(7){animation-delay:-.6s;transform:rotate(180deg) translate(146%)}.sonner-loading-bar:nth-child(8){animation-delay:-.5s;transform:rotate(210deg) translate(146%)}.sonner-loading-bar:nth-child(9){animation-delay:-.4s;transform:rotate(240deg) translate(146%)}.sonner-loading-bar:nth-child(10){animation-delay:-.3s;transform:rotate(270deg) translate(146%)}.sonner-loading-bar:nth-child(11){animation-delay:-.2s;transform:rotate(300deg) translate(146%)}.sonner-loading-bar:nth-child(12){animation-delay:-.1s;transform:rotate(330deg) translate(146%)}@keyframes sonner-fade-in{0%{opacity:0;transform:scale(.8)}100%{opacity:1;transform:scale(1)}}@keyframes sonner-fade-out{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(.8)}}@keyframes sonner-spin{0%{opacity:1}100%{opacity:.15}}@media (prefers-reduced-motion){.sonner-loading-bar,[data-sonner-toast],[data-sonner-toast]>*{transition:none!important;animation:none!important}}.sonner-loader{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);transform-origin:center;transition:opacity .2s,transform .2s}.sonner-loader[data-visible=false]{opacity:0;transform:scale(.8) translate(-50%,-50%)}");
function isAction(action) {
return action.label !== void 0;
}
var VISIBLE_TOASTS_AMOUNT = 3;
var VIEWPORT_OFFSET = "24px";
var MOBILE_VIEWPORT_OFFSET = "16px";
var TOAST_LIFETIME = 4e3;
var TOAST_WIDTH = 356;
var GAP = 14;
var SWIPE_THRESHOLD = 45;
var TIME_BEFORE_UNMOUNT = 200;
function cn(...classes) {
return classes.filter(Boolean).join(" ");
}
function getDefaultSwipeDirections(position) {
const [y, x] = position.split("-");
const directions = [];
if (y) {
directions.push(y);
}
if (x) {
directions.push(x);
}
return directions;
}
var Toast = (props) => {
var _toast_classNames, _toast_classNames1, _toast_classNames2, _toast_classNames3, _toast_classNames4, _toast_classNames5, _toast_classNames6, _toast_classNames7, _toast_classNames8;
const { invert: ToasterInvert, toast: toast2, unstyled, interacting, setHeights, visibleToasts, heights, index, toasts, expanded, removeToast, defaultRichColors, closeButton: closeButtonFromToaster, style, cancelButtonStyle, actionButtonStyle, className = "", descriptionClassName = "", duration: durationFromToaster, position, gap, expandByDefault, classNames, icons, closeButtonAriaLabel = "Close toast" } = props;
const [swipeDirection, setSwipeDirection] = import_react.default.useState(null);
const [swipeOutDirection, setSwipeOutDirection] = import_react.default.useState(null);
const [mounted, setMounted] = import_react.default.useState(false);
const [removed, setRemoved] = import_react.default.useState(false);
const [swiping, setSwiping] = import_react.default.useState(false);
const [swipeOut, setSwipeOut] = import_react.default.useState(false);
const [isSwiped, setIsSwiped] = import_react.default.useState(false);
const [offsetBeforeRemove, setOffsetBeforeRemove] = import_react.default.useState(0);
const [initialHeight, setInitialHeight] = import_react.default.useState(0);
const remainingTime = import_react.default.useRef(toast2.duration || durationFromToaster || TOAST_LIFETIME);
const dragStartTime = import_react.default.useRef(null);
const toastRef = import_react.default.useRef(null);
const isFront = index === 0;
const isVisible = index + 1 <= visibleToasts;
const toastType = toast2.type;
const dismissible = toast2.dismissible !== false;
const toastClassname = toast2.className || "";
const toastDescriptionClassname = toast2.descriptionClassName || "";
const heightIndex = import_react.default.useMemo(() => heights.findIndex((height) => height.toastId === toast2.id) || 0, [
heights,
toast2.id
]);
const closeButton = import_react.default.useMemo(() => {
var _toast_closeButton;
return (_toast_closeButton = toast2.closeButton) != null ? _toast_closeButton : closeButtonFromToaster;
}, [
toast2.closeButton,
closeButtonFromToaster
]);
const duration = import_react.default.useMemo(() => toast2.duration || durationFromToaster || TOAST_LIFETIME, [
toast2.duration,
durationFromToaster
]);
const closeTimerStartTimeRef = import_react.default.useRef(0);
const offset = import_react.default.useRef(0);
const lastCloseTimerStartTimeRef = import_react.default.useRef(0);
const pointerStartRef = import_react.default.useRef(null);
const [y, x] = position.split("-");
const toastsHeightBefore = import_react.default.useMemo(() => {
return heights.reduce((prev, curr, reducerIndex) => {
if (reducerIndex >= heightIndex) {
return prev;
}
return prev + curr.height;
}, 0);
}, [
heights,
heightIndex
]);
const isDocumentHidden = useIsDocumentHidden();
const invert = toast2.invert || ToasterInvert;
const disabled = toastType === "loading";
offset.current = import_react.default.useMemo(() => heightIndex * gap + toastsHeightBefore, [
heightIndex,
toastsHeightBefore
]);
import_react.default.useEffect(() => {
remainingTime.current = duration;
}, [
duration
]);
import_react.default.useEffect(() => {
setMounted(true);
}, []);
import_react.default.useEffect(() => {
const toastNode = toastRef.current;
if (toastNode) {
const height = toastNode.getBoundingClientRect().height;
setInitialHeight(height);
setHeights((h) => [
{
toastId: toast2.id,
height,
position: toast2.position
},
...h
]);
return () => setHeights((h) => h.filter((height2) => height2.toastId !== toast2.id));
}
}, [
setHeights,
toast2.id
]);
import_react.default.useLayoutEffect(() => {
if (!mounted) return;
const toastNode = toastRef.current;
const originalHeight = toastNode.style.height;
toastNode.style.height = "auto";
const newHeight = toastNode.getBoundingClientRect().height;
toastNode.style.height = originalHeight;
setInitialHeight(newHeight);
setHeights((heights2) => {
const alreadyExists = heights2.find((height) => height.toastId === toast2.id);
if (!alreadyExists) {
return [
{
toastId: toast2.id,
height: newHeight,
position: toast2.position
},
...heights2
];
} else {
return heights2.map((height) => height.toastId === toast2.id ? {
...height,
height: newHeight
} : height);
}
});
}, [
mounted,
toast2.title,
toast2.description,
setHeights,
toast2.id,
toast2.jsx,
toast2.action,
toast2.cancel
]);
const deleteToast = import_react.default.useCallback(() => {
setRemoved(true);
setOffsetBeforeRemove(offset.current);
setHeights((h) => h.filter((height) => height.toastId !== toast2.id));
setTimeout(() => {
removeToast(toast2);
}, TIME_BEFORE_UNMOUNT);
}, [
toast2,
removeToast,
setHeights,
offset
]);
import_react.default.useEffect(() => {
if (toast2.promise && toastType === "loading" || toast2.duration === Infinity || toast2.type === "loading") return;
let timeoutId;
const pauseTimer = () => {
if (lastCloseTimerStartTimeRef.current < closeTimerStartTimeRef.current) {
const elapsedTime = (/* @__PURE__ */ new Date()).getTime() - closeTimerStartTimeRef.current;
remainingTime.current = remainingTime.current - elapsedTime;
}
lastCloseTimerStartTimeRef.current = (/* @__PURE__ */ new Date()).getTime();
};
const startTimer = () => {
if (remainingTime.current === Infinity) return;
closeTimerStartTimeRef.current = (/* @__PURE__ */ new Date()).getTime();
timeoutId = setTimeout(() => {
toast2.onAutoClose == null ? void 0 : toast2.onAutoClose.call(toast2, toast2);
deleteToast();
}, remainingTime.current);
};
if (expanded || interacting || isDocumentHidden) {
pauseTimer();
} else {
startTimer();
}
return () => clearTimeout(timeoutId);
}, [
expanded,
interacting,
toast2,
toastType,
isDocumentHidden,
deleteToast
]);
import_react.default.useEffect(() => {
if (toast2.delete) {
deleteToast();
toast2.onDismiss == null ? void 0 : toast2.onDismiss.call(toast2, toast2);
}
}, [
deleteToast,
toast2.delete
]);
function getLoadingIcon() {
var _toast_classNames9;
if (icons == null ? void 0 : icons.loading) {
var _toast_classNames12;
return import_react.default.createElement("div", {
className: cn(classNames == null ? void 0 : classNames.loader, toast2 == null ? void 0 : (_toast_classNames12 = toast2.classNames) == null ? void 0 : _toast_classNames12.loader, "sonner-loader"),
"data-visible": toastType === "loading"
}, icons.loading);
}
return import_react.default.createElement(Loader, {
className: cn(classNames == null ? void 0 : classNames.loader, toast2 == null ? void 0 : (_toast_classNames9 = toast2.classNames) == null ? void 0 : _toast_classNames9.loader),
visible: toastType === "loading"
});
}
const icon = toast2.icon || (icons == null ? void 0 : icons[toastType]) || getAsset(toastType);
var _toast_richColors, _icons_close;
return import_react.default.createElement("li", {
tabIndex: 0,
ref: toastRef,
className: cn(className, toastClassname, classNames == null ? void 0 : classNames.toast, toast2 == null ? void 0 : (_toast_classNames = toast2.classNames) == null ? void 0 : _toast_classNames.toast, classNames == null ? void 0 : classNames.default, classNames == null ? void 0 : classNames[toastType], toast2 == null ? void 0 : (_toast_classNames1 = toast2.classNames) == null ? void 0 : _toast_classNames1[toastType]),
"data-sonner-toast": "",
"data-rich-colors": (_toast_richColors = toast2.richColors) != null ? _toast_richColors : defaultRichColors,
"data-styled": !Boolean(toast2.jsx || toast2.unstyled || unstyled),
"data-mounted": mounted,
"data-promise": Boolean(toast2.promise),
"data-swiped": isSwiped,
"data-removed": removed,
"data-visible": isVisible,
"data-y-position": y,
"data-x-position": x,
"data-index": index,
"data-front": isFront,
"data-swiping": swiping,
"data-dismissible": dismissible,
"data-type": toastType,
"data-invert": invert,
"data-swipe-out": swipeOut,
"data-swipe-direction": swipeOutDirection,
"data-expanded": Boolean(expanded || expandByDefault && mounted),
style: {
"--index": index,
"--toasts-before": index,
"--z-index": toasts.length - index,
"--offset": `${removed ? offsetBeforeRemove : offset.current}px`,
"--initial-height": expandByDefault ? "auto" : `${initialHeight}px`,
...style,
...toast2.style
},
onDragEnd: () => {
setSwiping(false);
setSwipeDirection(null);
pointerStartRef.current = null;
},
onPointerDown: (event) => {
if (disabled || !dismissible) return;
dragStartTime.current = /* @__PURE__ */ new Date();
setOffsetBeforeRemove(offset.current);
event.target.setPointerCapture(event.pointerId);
if (event.target.tagName === "BUTTON") return;
setSwiping(true);
pointerStartRef.current = {
x: event.clientX,
y: event.clientY
};
},
onPointerUp: () => {
var _toastRef_current, _toastRef_current1, _dragStartTime_current;
if (swipeOut || !dismissible) return;
pointerStartRef.current = null;
const swipeAmountX = Number(((_toastRef_current = toastRef.current) == null ? void 0 : _toastRef_current.style.getPropertyValue("--swipe-amount-x").replace("px", "")) || 0);
const swipeAmountY = Number(((_toastRef_current1 = toastRef.current) == null ? void 0 : _toastRef_current1.style.getPropertyValue("--swipe-amount-y").replace("px", "")) || 0);
const timeTaken = (/* @__PURE__ */ new Date()).getTime() - ((_dragStartTime_current = dragStartTime.current) == null ? void 0 : _dragStartTime_current.getTime());
const swipeAmount = swipeDirection === "x" ? swipeAmountX : swipeAmountY;
const velocity = Math.abs(swipeAmount) / timeTaken;
if (Math.abs(swipeAmount) >= SWIPE_THRESHOLD || velocity > 0.11) {
setOffsetBeforeRemove(offset.current);
toast2.onDismiss == null ? void 0 : toast2.onDismiss.call(toast2, toast2);
if (swipeDirection === "x") {
setSwipeOutDirection(swipeAmountX > 0 ? "right" : "left");
} else {
setSwipeOutDirection(swipeAmountY > 0 ? "down" : "up");
}
deleteToast();
setSwipeOut(true);
return;
} else {
var _toastRef_current2, _toastRef_current3;
(_toastRef_current2 = toastRef.current) == null ? void 0 : _toastRef_current2.style.setProperty("--swipe-amount-x", `0px`);
(_toastRef_current3 = toastRef.current) == null ? void 0 : _toastRef_current3.style.setProperty("--swipe-amount-y", `0px`);
}
setIsSwiped(false);
setSwiping(false);
setSwipeDirection(null);
},
onPointerMove: (event) => {
var _window_getSelection, _toastRef_current, _toastRef_current1;
if (!pointerStartRef.current || !dismissible) return;
const isHighlighted = ((_window_getSelection = window.getSelection()) == null ? void 0 : _window_getSelection.toString().length) > 0;
if (isHighlighted) return;
const yDelta = event.clientY - pointerStartRef.current.y;
const xDelta = event.clientX - pointerStartRef.current.x;
var _props_swipeDirections;
const swipeDirections = (_props_swipeDirections = props.swipeDirections) != null ? _props_swipeDirections : getDefaultSwipeDirections(position);
if (!swipeDirection && (Math.abs(xDelta) > 1 || Math.abs(yDelta) > 1)) {
setSwipeDirection(Math.abs(xDelta) > Math.abs(yDelta) ? "x" : "y");
}
let swipeAmount = {
x: 0,
y: 0
};
const getDampening = (delta) => {
const factor = Math.abs(delta) / 20;
return 1 / (1.5 + factor);
};
if (swipeDirection === "y") {
if (swipeDirections.includes("top") || swipeDirections.includes("bottom")) {
if (swipeDirections.includes("top") && yDelta < 0 || swipeDirections.includes("bottom") && yDelta > 0) {
swipeAmount.y = yDelta;
} else {
const dampenedDelta = yDelta * getDampening(yDelta);
swipeAmount.y = Math.abs(dampenedDelta) < Math.abs(yDelta) ? dampenedDelta : yDelta;
}
}
} else if (swipeDirection === "x") {
if (swipeDirections.includes("left") || swipeDirections.includes("right")) {
if (swipeDirections.includes("left") && xDelta < 0 || swipeDirections.includes("right") && xDelta > 0) {
swipeAmount.x = xDelta;
} else {
const dampenedDelta = xDelta * getDampening(xDelta);
swipeAmount.x = Math.abs(dampenedDelta) < Math.abs(xDelta) ? dampenedDelta : xDelta;
}
}
}
if (Math.abs(swipeAmount.x) > 0 || Math.abs(swipeAmount.y) > 0) {
setIsSwiped(true);
}
(_toastRef_current = toastRef.current) == null ? void 0 : _toastRef_current.style.setProperty("--swipe-amount-x", `${swipeAmount.x}px`);
(_toastRef_current1 = toastRef.current) == null ? void 0 : _toastRef_current1.style.setProperty("--swipe-amount-y", `${swipeAmount.y}px`);
}
}, closeButton && !toast2.jsx && toastType !== "loading" ? import_react.default.createElement("button", {
"aria-label": closeButtonAriaLabel,
"data-disabled": disabled,
"data-close-button": true,
onClick: disabled || !dismissible ? () => {
} : () => {
deleteToast();
toast2.onDismiss == null ? void 0 : toast2.onDismiss.call(toast2, toast2);
},
className: cn(classNames == null ? void 0 : classNames.closeButton, toast2 == null ? void 0 : (_toast_classNames2 = toast2.classNames) == null ? void 0 : _toast_classNames2.closeButton)
}, (_icons_close = icons == null ? void 0 : icons.close) != null ? _icons_close : CloseIcon) : null, (toastType || toast2.icon || toast2.promise) && toast2.icon !== null && ((icons == null ? void 0 : icons[toastType]) !== null || toast2.icon) ? import_react.default.createElement("div", {
"data-icon": "",
className: cn(classNames == null ? void 0 : classNames.icon, toast2 == null ? void 0 : (_toast_classNames3 = toast2.classNames) == null ? void 0 : _toast_classNames3.icon)
}, toast2.promise || toast2.type === "loading" && !toast2.icon ? toast2.icon || getLoadingIcon() : null, toast2.type !== "loading" ? icon : null) : null, import_react.default.createElement("div", {
"data-content": "",
className: cn(classNames == null ? void 0 : classNames.content, toast2 == null ? void 0 : (_toast_classNames4 = toast2.classNames) == null ? void 0 : _toast_classNames4.content)
}, import_react.default.createElement("div", {
"data-title": "",
className: cn(classNames == null ? void 0 : classNames.title, toast2 == null ? void 0 : (_toast_classNames5 = toast2.classNames) == null ? void 0 : _toast_classNames5.title)
}, toast2.jsx ? toast2.jsx : typeof toast2.title === "function" ? toast2.title() : toast2.title), toast2.description ? import_react.default.createElement("div", {
"data-description": "",
className: cn(descriptionClassName, toastDescriptionClassname, classNames == null ? void 0 : classNames.description, toast2 == null ? void 0 : (_toast_classNames6 = toast2.classNames) == null ? void 0 : _toast_classNames6.description)
}, typeof toast2.description === "function" ? toast2.description() : toast2.description) : null), import_react.default.isValidElement(toast2.cancel) ? toast2.cancel : toast2.cancel && isAction(toast2.cancel) ? import_react.default.createElement("button", {
"data-button": true,
"data-cancel": true,
style: toast2.cancelButtonStyle || cancelButtonStyle,
onClick: (event) => {
if (!isAction(toast2.cancel)) return;
if (!dismissible) return;
toast2.cancel.onClick == null ? void 0 : toast2.cancel.onClick.call(toast2.cancel, event);
deleteToast();
},
className: cn(classNames == null ? void 0 : classNames.cancelButton, toast2 == null ? void 0 : (_toast_classNames7 = toast2.classNames) == null ? void 0 : _toast_classNames7.cancelButton)
}, toast2.cancel.label) : null, import_react.default.isValidElement(toast2.action) ? toast2.action : toast2.action && isAction(toast2.action) ? import_react.default.createElement("button", {
"data-button": true,
"data-action": true,
style: toast2.actionButtonStyle || actionButtonStyle,
onClick: (event) => {
if (!isAction(toast2.action)) return;
toast2.action.onClick == null ? void 0 : toast2.action.onClick.call(toast2.action, event);
if (event.defaultPrevented) return;
deleteToast();
},
className: cn(classNames == null ? void 0 : classNames.actionButton, toast2 == null ? void 0 : (_toast_classNames8 = toast2.classNames) == null ? void 0 : _toast_classNames8.actionButton)
}, toast2.action.label) : null);
};
function getDocumentDirection() {
if (typeof window === "undefined") return "ltr";
if (typeof document === "undefined") return "ltr";
const dirAttribute = document.documentElement.getAttribute("dir");
if (dirAttribute === "auto" || !dirAttribute) {
return window.getComputedStyle(document.documentElement).direction;
}
return dirAttribute;
}
function assignOffset(defaultOffset, mobileOffset) {
const styles = {};
[
defaultOffset,
mobileOffset
].forEach((offset, index) => {
const isMobile = index === 1;
const prefix = isMobile ? "--mobile-offset" : "--offset";
const defaultValue = isMobile ? MOBILE_VIEWPORT_OFFSET : VIEWPORT_OFFSET;
function assignAll(offset2) {
[
"top",
"right",
"bottom",
"left"
].forEach((key) => {
styles[`${prefix}-${key}`] = typeof offset2 === "number" ? `${offset2}px` : offset2;
});
}
if (typeof offset === "number" || typeof offset === "string") {
assignAll(offset);
} else if (typeof offset === "object") {
[
"top",
"right",
"bottom",
"left"
].forEach((key) => {
if (offset[key] === void 0) {
styles[`${prefix}-${key}`] = defaultValue;
} else {
styles[`${prefix}-${key}`] = typeof offset[key] === "number" ? `${offset[key]}px` : offset[key];
}
});
} else {
assignAll(defaultValue);
}
});
return styles;
}
function useSonner() {
const [activeToasts, setActiveToasts] = import_react.default.useState([]);
import_react.default.useEffect(() => {
return ToastState.subscribe((toast2) => {
if (toast2.dismiss) {
setTimeout(() => {
import_react_dom.default.flushSync(() => {
setActiveToasts((toasts) => toasts.filter((t) => t.id !== toast2.id));
});
});
return;
}
setTimeout(() => {
import_react_dom.default.flushSync(() => {
setActiveToasts((toasts) => {
const indexOfExistingToast = toasts.findIndex((t) => t.id === toast2.id);
if (indexOfExistingToast !== -1) {
return [
...toasts.slice(0, indexOfExistingToast),
{
...toasts[indexOfExistingToast],
...toast2
},
...toasts.slice(indexOfExistingToast + 1)
];
}
return [
toast2,
...toasts
];
});
});
});
});
}, []);
return {
toasts: activeToasts
};
}
var Toaster = import_react.default.forwardRef(function Toaster2(props, ref) {
const { invert, position = "bottom-right", hotkey = [
"altKey",
"KeyT"
], expand, closeButton, className, offset, mobileOffset, theme = "light", richColors, duration, style, visibleToasts = VISIBLE_TOASTS_AMOUNT, toastOptions, dir = getDocumentDirection(), gap = GAP, icons, containerAriaLabel = "Notifications" } = props;
const [toasts, setToasts] = import_react.default.useState([]);
const possiblePositions = import_react.default.useMemo(() => {
return Array.from(new Set([
position
].concat(toasts.filter((toast2) => toast2.position).map((toast2) => toast2.position))));
}, [
toasts,
position
]);
const [heights, setHeights] = import_react.default.useState([]);
const [expanded, setExpanded] = import_react.default.useState(false);
const [interacting, setInteracting] = import_react.default.useState(false);
const [actualTheme, setActualTheme] = import_react.default.useState(theme !== "system" ? theme : typeof window !== "undefined" ? window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light" : "light");
const listRef = import_react.default.useRef(null);
const hotkeyLabel = hotkey.join("+").replace(/Key/g, "").replace(/Digit/g, "");
const lastFocusedElementRef = import_react.default.useRef(null);
const isFocusWithinRef = import_react.default.useRef(false);
const removeToast = import_react.default.useCallback((toastToRemove) => {
setToasts((toasts2) => {
var _toasts_find;
if (!((_toasts_find = toasts2.find((toast2) => toast2.id === toastToRemove.id)) == null ? void 0 : _toasts_find.delete)) {
ToastState.dismiss(toastToRemove.id);
}
return toasts2.filter(({ id }) => id !== toastToRemove.id);
});
}, []);
import_react.default.useEffect(() => {
return ToastState.subscribe((toast2) => {
if (toast2.dismiss) {
requestAnimationFrame(() => {
setToasts((toasts2) => toasts2.map((t) => t.id === toast2.id ? {
...t,
delete: true
} : t));
});
return;
}
setTimeout(() => {
import_react_dom.default.flushSync(() => {
setToasts((toasts2) => {
const indexOfExistingToast = toasts2.findIndex((t) => t.id === toast2.id);
if (indexOfExistingToast !== -1) {
return [
...toasts2.slice(0, indexOfExistingToast),
{
...toasts2[indexOfExistingToast],
...toast2
},
...toasts2.slice(indexOfExistingToast + 1)
];
}
return [
toast2,
...toasts2
];
});
});
});
});
}, [
toasts
]);
import_react.default.useEffect(() => {
if (theme !== "system") {
setActualTheme(theme);
return;
}
if (theme === "system") {
if (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches) {
setActualTheme("dark");
} else {
setActualTheme("light");
}
}
if (typeof window === "undefined") return;
const darkMediaQuery = window.matchMedia("(prefers-color-scheme: dark)");
try {
darkMediaQuery.addEventListener("change", ({ matches }) => {
if (matches) {
setActualTheme("dark");
} else {
setActualTheme("light");
}
});
} catch (error) {
darkMediaQuery.addListener(({ matches }) => {
try {
if (matches) {
setActualTheme("dark");
} else {
setActualTheme("light");
}
} catch (e) {
console.error(e);
}
});
}
}, [
theme
]);
import_react.default.useEffect(() => {
if (toasts.length <= 1) {
setExpanded(false);
}
}, [
toasts
]);
import_react.default.useEffect(() => {
const handleKeyDown = (event) => {
var _listRef_current;
const isHotkeyPressed = hotkey.every((key) => event[key] || event.code === key);
if (isHotkeyPressed) {
var _listRef_current1;
setExpanded(true);
(_listRef_current1 = listRef.current) == null ? void 0 : _listRef_current1.focus();
}
if (event.code === "Escape" && (document.activeElement === listRef.current || ((_listRef_current = listRef.current) == null ? void 0 : _listRef_current.contains(document.activeElement)))) {
setExpanded(false);
}
};
document.addEventListener("keydown", handleKeyDown);
return () => document.removeEventListener("keydown", handleKeyDown);
}, [
hotkey
]);
import_react.default.useEffect(() => {
if (listRef.current) {
return () => {
if (lastFocusedElementRef.current) {
lastFocusedElementRef.current.focus({
preventScroll: true
});
lastFocusedElementRef.current = null;
isFocusWithinRef.current = false;
}
};
}
}, [
listRef.current
]);
return (
// Remove item from normal navigation flow, only available via hotkey
import_react.default.createElement("section", {
ref,
"aria-label": `${containerAriaLabel} ${hotkeyLabel}`,
tabIndex: -1,
"aria-live": "polite",
"aria-relevant": "additions text",
"aria-atomic": "false",
suppressHydrationWarning: true
}, possiblePositions.map((position2, index) => {
var _heights_;
const [y, x] = position2.split("-");
if (!toasts.length) return null;
return import_react.default.createElement("ol", {
key: position2,
dir: dir === "auto" ? getDocumentDirection() : dir,
tabIndex: -1,
ref: listRef,
className,
"data-sonner-toaster": true,
"data-sonner-theme": actualTheme,
"data-y-position": y,
"data-x-position": x,
style: {
"--front-toast-height": `${((_heights_ = heights[0]) == null ? void 0 : _heights_.height) || 0}px`,
"--width": `${TOAST_WIDTH}px`,
"--gap": `${gap}px`,
...style,
...assignOffset(offset, mobileOffset)
},
onBlur: (event) => {
if (isFocusWithinRef.current && !event.currentTarget.contains(event.relatedTarget)) {
isFocusWithinRef.current = false;
if (lastFocusedElementRef.current) {
lastFocusedElementRef.current.focus({
preventScroll: true
});
lastFocusedElementRef.current = null;
}
}
},
onFocus: (event) => {
const isNotDismissible = event.target instanceof HTMLElement && event.target.dataset.dismissible === "false";
if (isNotDismissible) return;
if (!isFocusWithinRef.current) {
isFocusWithinRef.current = true;
lastFocusedElementRef.current = event.relatedTarget;
}
},
onMouseEnter: () => setExpanded(true),
onMouseMove: () => setExpanded(true),
onMouseLeave: () => {
if (!interacting) {
setExpanded(false);
}
},
onDragEnd: () => setExpanded(false),
onPointerDown: (event) => {
const isNotDismissible = event.target instanceof HTMLElement && event.target.dataset.dismissible === "false";
if (isNotDismissible) return;
setInteracting(true);
},
onPointerUp: () => setInteracting(false)
}, toasts.filter((toast2) => !toast2.position && index === 0 || toast2.position === position2).map((toast2, index2) => {
var _toastOptions_duration, _toastOptions_closeButton;
return import_react.default.createElement(Toast, {
key: toast2.id,
icons,
index: index2,
toast: toast2,
defaultRichColors: richColors,
duration: (_toastOptions_duration = toastOptions == null ? void 0 : toastOptions.duration) != null ? _toastOptions_duration : duration,
className: toastOptions == null ? void 0 : toastOptions.className,
descriptionClassName: toastOptions == null ? void 0 : toastOptions.descriptionClassName,
invert,
visibleToasts,
closeButton: (_toastOptions_closeButton = toastOptions == null ? void 0 : toastOptions.closeButton) != null ? _toastOptions_closeButton : closeButton,
interacting,
position: position2,
style: toastOptions == null ? void 0 : toastOptions.style,
unstyled: toastOptions == null ? void 0 : toastOptions.unstyled,
classNames: toastOptions == null ? void 0 : toastOptions.classNames,
cancelButtonStyle: toastOptions == null ? void 0 : toastOptions.cancelButtonStyle,
actionButtonStyle: toastOptions == null ? void 0 : toastOptions.actionButtonStyle,
closeButtonAriaLabel: toastOptions == null ? void 0 : toastOptions.closeButtonAriaLabel,
removeToast,
toasts: toasts.filter((t) => t.position == toast2.position),
heights: heights.filter((h) => h.position == toast2.position),
setHeights,
expandByDefault: expand,
gap,
expanded,
swipeDirections: props.swipeDirections
});
}));
}))
);
});
export {
Toaster,
toast,
useSonner
};
//# sourceMappingURL=sonner.js.map