├── .github ├── FUNDING.yml └── workflows │ └── publish.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.MD ├── assets ├── mascott.png ├── react-toastify.gif ├── react-toastify.mp4 ├── sonner.gif └── sonner.mp4 ├── eslint.config.mjs ├── package.json ├── pull_request_template.md ├── src ├── index.test.ts ├── index.ts ├── middleware │ └── index.ts ├── schema.ts └── session.ts ├── test-apps └── react-router │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── Dockerfile.bun │ ├── Dockerfile.pnpm │ ├── README.md │ ├── app │ ├── app.css │ ├── root.tsx │ ├── routes.ts │ ├── routes │ │ ├── _index.tsx │ │ ├── from-library.tsx │ │ ├── test.tsx │ │ └── without-redirection.tsx │ └── welcome │ │ ├── logo-dark.svg │ │ ├── logo-light.svg │ │ └── welcome.tsx │ ├── package.json │ ├── public │ └── favicon.ico │ ├── react-router.config.ts │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── vite.config.ts ├── tsconfig.json └── vitest.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /build 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 120 3 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/SECURITY.MD -------------------------------------------------------------------------------- /assets/mascott.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/assets/mascott.png -------------------------------------------------------------------------------- /assets/react-toastify.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/assets/react-toastify.gif -------------------------------------------------------------------------------- /assets/react-toastify.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/assets/react-toastify.mp4 -------------------------------------------------------------------------------- /assets/sonner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/assets/sonner.gif -------------------------------------------------------------------------------- /assets/sonner.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/assets/sonner.mp4 -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/package.json -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/middleware/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/src/middleware/index.ts -------------------------------------------------------------------------------- /src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/src/schema.ts -------------------------------------------------------------------------------- /src/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/src/session.ts -------------------------------------------------------------------------------- /test-apps/react-router/.dockerignore: -------------------------------------------------------------------------------- 1 | .react-router 2 | build 3 | node_modules 4 | README.md -------------------------------------------------------------------------------- /test-apps/react-router/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/.gitignore -------------------------------------------------------------------------------- /test-apps/react-router/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/Dockerfile -------------------------------------------------------------------------------- /test-apps/react-router/Dockerfile.bun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/Dockerfile.bun -------------------------------------------------------------------------------- /test-apps/react-router/Dockerfile.pnpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/Dockerfile.pnpm -------------------------------------------------------------------------------- /test-apps/react-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/README.md -------------------------------------------------------------------------------- /test-apps/react-router/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/app/app.css -------------------------------------------------------------------------------- /test-apps/react-router/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/app/root.tsx -------------------------------------------------------------------------------- /test-apps/react-router/app/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/app/routes.ts -------------------------------------------------------------------------------- /test-apps/react-router/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/app/routes/_index.tsx -------------------------------------------------------------------------------- /test-apps/react-router/app/routes/from-library.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/app/routes/from-library.tsx -------------------------------------------------------------------------------- /test-apps/react-router/app/routes/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/app/routes/test.tsx -------------------------------------------------------------------------------- /test-apps/react-router/app/routes/without-redirection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/app/routes/without-redirection.tsx -------------------------------------------------------------------------------- /test-apps/react-router/app/welcome/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/app/welcome/logo-dark.svg -------------------------------------------------------------------------------- /test-apps/react-router/app/welcome/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/app/welcome/logo-light.svg -------------------------------------------------------------------------------- /test-apps/react-router/app/welcome/welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/app/welcome/welcome.tsx -------------------------------------------------------------------------------- /test-apps/react-router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/package.json -------------------------------------------------------------------------------- /test-apps/react-router/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/public/favicon.ico -------------------------------------------------------------------------------- /test-apps/react-router/react-router.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/react-router.config.ts -------------------------------------------------------------------------------- /test-apps/react-router/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/tailwind.config.ts -------------------------------------------------------------------------------- /test-apps/react-router/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/tsconfig.json -------------------------------------------------------------------------------- /test-apps/react-router/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/test-apps/react-router/vite.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-toast/HEAD/vitest.config.ts --------------------------------------------------------------------------------