{"version":3,"sources":["/home/runner/work/openframe-oss-lib/openframe-oss-lib/openframe-frontend-core/dist/components/toast/index.cjs","../../../src/components/sonner.tsx","../../../src/components/toast/index.ts"],"names":[],"mappings":"AAAA,qFAAY;AACZ,oCAAiC;AACjC;AACA;ACDA,gCAAkC;AAM9B,+CAAA;AAFJ,IAAM,QAAA,EAAU,CAAC,EAAE,GAAG,MAAM,CAAA,EAAA,GAAoB;AAC9C,EAAA,uBACE,6BAAA;AAAA,IAAC,eAAA;AAAA,IAAA;AAAA,MACC,KAAA,EAAM,MAAA;AAAA,MACN,QAAA,EAAS,cAAA;AAAA,MACT,SAAA,EAAU,eAAA;AAAA,MACV,YAAA,EAAc;AAAA,QACZ,UAAA,EAAY;AAAA,UACV,KAAA,EACE,+IAAA;AAAA,UACF,WAAA,EAAa,wCAAA;AAAA,UACb,YAAA,EACE,qEAAA;AAAA,UACF,YAAA,EACE,yEAAA;AAAA,UACF,KAAA,EAAO,kHAAA;AAAA,UACP,OAAA,EAAS;AAAA,QACX;AAAA,MACF,CAAA;AAAA,MACC,GAAG;AAAA,IAAA;AAAA,EACN,CAAA;AAEJ,CAAA;ADDA;AACA;AE1BA;AF4BA;AACE;AACA;AACF,+DAAC","file":"/home/runner/work/openframe-oss-lib/openframe-oss-lib/openframe-frontend-core/dist/components/toast/index.cjs","sourcesContent":[null,"\"use client\"\n\nimport { Toaster as Sonner } from \"sonner\"\n\ntype ToasterProps = React.ComponentProps<typeof Sonner>\n\nconst Toaster = ({ ...props }: ToasterProps) => {\n  return (\n    <Sonner\n      theme=\"dark\"\n      position=\"bottom-right\"\n      className=\"toaster group\"\n      toastOptions={{\n        classNames: {\n          toast:\n            \"group toast group-[.toaster]:bg-ods-card group-[.toaster]:text-ods-text-primary group-[.toaster]:border-ods-border group-[.toaster]:shadow-lg\",\n          description: \"group-[.toast]:text-ods-text-secondary\",\n          actionButton:\n            \"group-[.toast]:bg-ods-accent group-[.toast]:text-ods-text-on-accent\",\n          cancelButton:\n            \"group-[.toast]:bg-ods-bg-surface group-[.toast]:text-ods-text-secondary\",\n          error: \"group-[.toaster]:bg-ods-error-secondary group-[.toaster]:text-ods-text-primary group-[.toaster]:border-ods-error\",\n          success: \"group-[.toaster]:bg-ods-success-secondary group-[.toaster]:text-ods-text-primary group-[.toaster]:border-ods-success\",\n        },\n      }}\n      {...props}\n    />\n  )\n}\n\nexport { Toaster }\n","// Toast system using Sonner\nexport { Toaster } from '../sonner'\nexport { toast as sonnerToast } from 'sonner'"]}