From 462635e51728c5510f20b3ddb8a58417d41aac5d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 15:09:13 +0000 Subject: [PATCH 1/2] build(dev-deps): bump react-toastify from 9.1.3 to 11.0.3 Bumps [react-toastify](https://github.com/fkhadra/react-toastify) from 9.1.3 to 11.0.3. - [Release notes](https://github.com/fkhadra/react-toastify/releases) - [Commits](https://github.com/fkhadra/react-toastify/compare/v9.1.3...v11.0.3) --- updated-dependencies: - dependency-name: react-toastify dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package.json | 2 +- yarn.lock | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 3bedc3bc..18e4dbfc 100644 --- a/package.json +++ b/package.json @@ -137,7 +137,7 @@ "react-dom": "18.3.1", "react-imask": "7.6.1", "react-is": "19.0.0", - "react-toastify": "9.1.3", + "react-toastify": "11.0.3", "rollup": "4.31.0", "rollup-plugin-bundle-size": "1.0.3", "rollup-plugin-import-css": "3.5.8", diff --git a/yarn.lock b/yarn.lock index 1a168037..2ca19fdd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2948,7 +2948,7 @@ __metadata: react-dom: "npm:18.3.1" react-imask: "npm:7.6.1" react-is: "npm:19.0.0" - react-toastify: "npm:9.1.3" + react-toastify: "npm:11.0.3" rollup: "npm:4.31.0" rollup-plugin-bundle-size: "npm:1.0.3" rollup-plugin-import-css: "npm:3.5.8" @@ -7450,10 +7450,10 @@ __metadata: languageName: node linkType: hard -"clsx@npm:^1.1.1": - version: 1.2.1 - resolution: "clsx@npm:1.2.1" - checksum: 10c0/34dead8bee24f5e96f6e7937d711978380647e936a22e76380290e35486afd8634966ce300fc4b74a32f3762c7d4c0303f442c3e259f4ce02374eb0c82834f27 +"clsx@npm:^2.1.1": + version: 2.1.1 + resolution: "clsx@npm:2.1.1" + checksum: 10c0/c4c8eb865f8c82baab07e71bfa8897c73454881c4f99d6bc81585aecd7c441746c1399d08363dc096c550cceaf97bd4ce1e8854e1771e9998d9f94c4fe075839 languageName: node linkType: hard @@ -16514,15 +16514,15 @@ __metadata: languageName: node linkType: hard -"react-toastify@npm:9.1.3": - version: 9.1.3 - resolution: "react-toastify@npm:9.1.3" +"react-toastify@npm:11.0.3": + version: 11.0.3 + resolution: "react-toastify@npm:11.0.3" dependencies: - clsx: "npm:^1.1.1" + clsx: "npm:^2.1.1" peerDependencies: - react: ">=16" - react-dom: ">=16" - checksum: 10c0/51de1e51e9357a24773fbcd45a4db18bf74b8ec40d86a2bfb4a4fee23ca4f9fffdac5dfb7a3c21baea39971f72f72dfcdc79403a6de006f74d69e7bc12f8b3e0 + react: ^18 || ^19 + react-dom: ^18 || ^19 + checksum: 10c0/23b989c6080bc5bf0eb0c1f7ed17bd53d067d9beb33baf93c520119cd69cf75c9f2d1ee524dfe6c8a2a5d326029772b576de00e018b379d03a0e37630b83adea languageName: node linkType: hard From 2c28f95dcfe723b2470882861b5b71c6535eb00c Mon Sep 17 00:00:00 2001 From: Claire Dagan Date: Tue, 21 Jan 2025 17:49:32 +0100 Subject: [PATCH 2/2] fix(components): fix initial placement for Notifier --- src/components/Notifier/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Notifier/index.tsx b/src/components/Notifier/index.tsx index 8578721e..9e46880a 100644 --- a/src/components/Notifier/index.tsx +++ b/src/components/Notifier/index.tsx @@ -17,7 +17,7 @@ export function Notifier({ isSideWindow = false }: NotifierProps) { } toast(event.detail.message, { - position: toast.POSITION.BOTTOM_RIGHT, + position: 'bottom-right', type: event.detail.type }) },