diff --git a/apps/dev/nextjs/app/login/page.tsx b/apps/dev/nextjs/app/login/page.tsx new file mode 100644 index 0000000000..47e8d93547 --- /dev/null +++ b/apps/dev/nextjs/app/login/page.tsx @@ -0,0 +1,42 @@ +import { signIn, auth } from "auth" +import { SessionProvider } from "next-auth/react" +import Client from "../client" +export default async function Page() { + const session = await auth() + + return ( +
+

Login Form Sample

+

This sample shows how to login using `auth` module with custom form

+
+
+

Login

+
+
+ {session ? ( +
{JSON.stringify(session, null, 2)}
+ ) : ( +
{ + "use server" + await signIn("credentials", formData) + }} + > + +
+ +
+
+ )} +
+
+
+ ) +} diff --git a/apps/dev/nextjs/app/styles.css b/apps/dev/nextjs/app/styles.css index 8c11a1c38c..3e888e520c 100644 --- a/apps/dev/nextjs/app/styles.css +++ b/apps/dev/nextjs/app/styles.css @@ -82,11 +82,7 @@ main { } .card-body { - padding-bottom: 1.1rem; - - &:has(button) { - padding: 1.1rem; - } + padding: 1.1rem; } .card-footer { @@ -129,4 +125,21 @@ main { button:hover { background-color: #ccc; } + + input { + padding: 0.7rem 0.8rem; + border: 1px solid #ccc; + border-radius: 0.5rem; + font-size: 1rem; + line-height: 1.4rem; + background-color: #fff; + color: black; + margin-bottom: 1rem; + } + + input:focus { + outline: none; + border-color: #999; + background-color: #fafafa; + } } diff --git a/apps/dev/nextjs/components/header.tsx b/apps/dev/nextjs/components/header.tsx index 4a63013a30..1db7a3ef58 100644 --- a/apps/dev/nextjs/components/header.tsx +++ b/apps/dev/nextjs/components/header.tsx @@ -48,6 +48,9 @@ export function Header({ Dashboard (app) + + Login (app) + Policy (pages) diff --git a/apps/dev/nextjs/package.json b/apps/dev/nextjs/package.json index 8fb3570b26..a58bd6b152 100644 --- a/apps/dev/nextjs/package.json +++ b/apps/dev/nextjs/package.json @@ -11,10 +11,10 @@ }, "license": "ISC", "dependencies": { - "next": "15.3.1", + "next": "15.4.5", "next-auth": "workspace:*", - "react": "19.0.0-rc-4c58fce7-20240904", - "react-dom": "19.0.0-rc-4c58fce7-20240904" + "react": "^18.2.0", + "react-dom": "^18.2.0" }, "devDependencies": { "@types/react": "^18.2.23", diff --git a/packages/next-auth/src/lib/actions.ts b/packages/next-auth/src/lib/actions.ts index 80081fa2e0..193fe41dee 100644 --- a/packages/next-auth/src/lib/actions.ts +++ b/packages/next-auth/src/lib/actions.ts @@ -63,7 +63,9 @@ export async function signIn( } if (foundProvider.type === "credentials") { - url = url.replace("signin", "callback") + const urlObj = new URL(url) + urlObj.pathname = urlObj.pathname.replace("signin", "callback") + url = urlObj.href } headers.set("Content-Type", "application/x-www-form-urlencoded") diff --git a/packages/next-auth/test/actions.test.ts b/packages/next-auth/test/actions.test.ts index c4d4122abc..34d2cceb65 100644 --- a/packages/next-auth/test/actions.test.ts +++ b/packages/next-auth/test/actions.test.ts @@ -1,8 +1,17 @@ -import { describe, it, expect, vi, beforeEach, afterEach } from "vitest" +import { + describe, + it, + expect, + vi, + beforeEach, + afterEach, + beforeAll, +} from "vitest" import NextAuth, { NextAuthConfig } from "../src" // TODO: Move the MemoryAdapter to utils package import { MemoryAdapter } from "../../core/test/memory-adapter" import Nodemailer from "@auth/core/providers/nodemailer" +import Credentials from "@auth/core/providers/credentials" let mockedHeaders = vi.hoisted(() => { return new globalThis.Headers() @@ -106,4 +115,33 @@ describe("signIn action", () => { ) }) }) + describe("with credentials provider", () => { + beforeEach(() => { + nextAuth = NextAuth({ + ...config, + providers: [ + Credentials({ + credentials: { password: { label: "Password", type: "password" } }, + authorize(c) { + if (c.password !== "password") return null + return { + id: "test", + name: "Test User", + email: "test@example.com", + } + }, + }), + ], + }) + }) + it("follow redirects and callback signin", async () => { + await nextAuth?.signIn("credentials", { password: "password" }) + expect(mockRedirect).toHaveBeenCalledWith("http://localhost/") + }) + it("only replaces signin on path name", async () => { + process.env.AUTH_URL = "http://signin" + await nextAuth?.signIn("credentials", { password: "password" }) + expect(mockRedirect).toHaveBeenCalledWith("http://signin/") + }) + }) }) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f6fe6e4264..bbf92948a4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -144,24 +144,24 @@ importers: apps/dev/nextjs: dependencies: next: - specifier: 15.3.1 - version: 15.3.1(@opentelemetry/api@1.7.0)(@playwright/test@1.41.2)(react-dom@19.0.0-rc-4c58fce7-20240904(react@19.0.0-rc-4c58fce7-20240904))(react@19.0.0-rc-4c58fce7-20240904)(sass@1.70.0) + specifier: 15.4.5 + version: 15.4.5(@opentelemetry/api@1.7.0)(@playwright/test@1.40.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.70.0) next-auth: specifier: workspace:* version: link:../../../packages/next-auth react: - specifier: 19.0.0-rc-4c58fce7-20240904 - version: 19.0.0-rc-4c58fce7-20240904 + specifier: ^18.2.0 + version: 18.3.1 react-dom: - specifier: 19.0.0-rc-4c58fce7-20240904 - version: 19.0.0-rc-4c58fce7-20240904(react@19.0.0-rc-4c58fce7-20240904) + specifier: ^18.2.0 + version: 18.3.1(react@18.3.1) devDependencies: '@types/react': specifier: ^18.2.23 version: 18.2.78 '@types/react-dom': specifier: ^18.2.8 - version: 18.2.18 + version: 18.3.7(@types/react@18.2.78) apps/dev/qwik: devDependencies: @@ -255,10 +255,10 @@ importers: version: 14.2.15(next@14.2.21(@opentelemetry/api@1.7.0)(@playwright/test@1.41.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.70.0))(react@18.3.1) '@radix-ui/react-accordion': specifier: ^1.2.1 - version: 1.2.1(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 1.2.1(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-tabs': specifier: ^1.1.1 - version: 1.1.1(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 1.1.1(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@vercel/analytics': specifier: ^1.3.1 version: 1.3.1(next@14.2.21(@opentelemetry/api@1.7.0)(@playwright/test@1.41.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.70.0))(react@18.3.1) @@ -377,7 +377,7 @@ importers: version: 0.23.0 drizzle-orm: specifier: ^0.32.0 - version: 0.32.1(@cloudflare/workers-types@4.20240117.0)(@libsql/client@0.6.0)(@neondatabase/serverless@0.10.4)(@opentelemetry/api@1.7.0)(@prisma/client@6.0.0)(@types/better-sqlite3@7.6.9)(@types/pg@8.11.6)(@types/react@18.2.78)(@xata.io/client@0.28.0(typescript@5.3.3))(better-sqlite3@9.6.0)(knex@2.5.1(better-sqlite3@9.6.0)(mysql2@3.9.7)(pg@8.11.3)(sqlite3@5.1.6))(kysely@0.27.5)(mysql2@3.9.7)(pg@8.11.3)(postgres@3.4.3)(react@18.3.1)(sqlite3@5.1.6) + version: 0.32.1(@cloudflare/workers-types@4.20240117.0)(@libsql/client@0.6.0)(@neondatabase/serverless@0.10.4)(@opentelemetry/api@1.7.0)(@prisma/client@6.0.0)(@types/better-sqlite3@7.6.9)(@types/pg@8.11.6)(@types/react@19.1.9)(@xata.io/client@0.28.0(typescript@5.3.3))(better-sqlite3@9.6.0)(knex@2.5.1(better-sqlite3@9.6.0)(mysql2@3.9.7)(pg@8.11.3)(sqlite3@5.1.6))(kysely@0.27.5)(mysql2@3.9.7)(pg@8.11.3)(postgres@3.4.3)(react@19.1.1)(sqlite3@5.1.6) libsql: specifier: ^0.3.18 version: 0.3.18 @@ -870,7 +870,7 @@ importers: version: 10.0.0 next: specifier: 15.3.1 - version: 15.3.1(@opentelemetry/api@1.7.0)(@playwright/test@1.41.2)(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)(sass@1.70.0) + version: 15.3.1(@opentelemetry/api@1.7.0)(@playwright/test@1.41.2)(react-dom@19.1.1(react@18.3.1))(react@18.3.1)(sass@1.70.0) nodemailer: specifier: ^6.9.3 version: 6.9.8 @@ -2080,11 +2080,8 @@ packages: search-insights: optional: true - '@emnapi/runtime@1.2.0': - resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==} - - '@emnapi/runtime@1.4.3': - resolution: {integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==} + '@emnapi/runtime@1.4.5': + resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==} '@emotion/is-prop-valid@0.8.8': resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} @@ -3186,8 +3183,8 @@ packages: cpu: [arm64] os: [darwin] - '@img/sharp-darwin-arm64@0.34.1': - resolution: {integrity: sha512-pn44xgBtgpEbZsu+lWf2KNb6OAf70X68k+yk69Ic2Xz11zHR/w24/U49XT7AeRwJ0Px+mhALhU5LPci1Aymk7A==} + '@img/sharp-darwin-arm64@0.34.3': + resolution: {integrity: sha512-ryFMfvxxpQRsgZJqBd4wsttYQbCxsJksrv9Lw/v798JcQ8+w84mBWuXwl+TT0WJ/WrYOLaYpwQXi3sA9nTIaIg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [darwin] @@ -3198,8 +3195,8 @@ packages: cpu: [x64] os: [darwin] - '@img/sharp-darwin-x64@0.34.1': - resolution: {integrity: sha512-VfuYgG2r8BpYiOUN+BfYeFo69nP/MIwAtSJ7/Zpxc5QF3KS22z8Pvg3FkrSFJBPNQ7mmcUcYQFBmEQp7eu1F8Q==} + '@img/sharp-darwin-x64@0.34.3': + resolution: {integrity: sha512-yHpJYynROAj12TA6qil58hmPmAwxKKC7reUqtGLzsOHfP7/rniNGTL8tjWX6L3CTV4+5P4ypcS7Pp+7OB+8ihA==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [darwin] @@ -3209,8 +3206,8 @@ packages: cpu: [arm64] os: [darwin] - '@img/sharp-libvips-darwin-arm64@1.1.0': - resolution: {integrity: sha512-HZ/JUmPwrJSoM4DIQPv/BfNh9yrOA8tlBbqbLz4JZ5uew2+o22Ik+tHQJcih7QJuSa0zo5coHTfD5J8inqj9DA==} + '@img/sharp-libvips-darwin-arm64@1.2.0': + resolution: {integrity: sha512-sBZmpwmxqwlqG9ueWFXtockhsxefaV6O84BMOrhtg/YqbTaRdqDE7hxraVE3y6gVM4eExmfzW4a8el9ArLeEiQ==} cpu: [arm64] os: [darwin] @@ -3219,8 +3216,8 @@ packages: cpu: [x64] os: [darwin] - '@img/sharp-libvips-darwin-x64@1.1.0': - resolution: {integrity: sha512-Xzc2ToEmHN+hfvsl9wja0RlnXEgpKNmftriQp6XzY/RaSfwD9th+MSh0WQKzUreLKKINb3afirxW7A0fz2YWuQ==} + '@img/sharp-libvips-darwin-x64@1.2.0': + resolution: {integrity: sha512-M64XVuL94OgiNHa5/m2YvEQI5q2cl9d/wk0qFTDVXcYzi43lxuiFTftMR1tOnFQovVXNZJ5TURSDK2pNe9Yzqg==} cpu: [x64] os: [darwin] @@ -3229,8 +3226,8 @@ packages: cpu: [arm64] os: [linux] - '@img/sharp-libvips-linux-arm64@1.1.0': - resolution: {integrity: sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew==} + '@img/sharp-libvips-linux-arm64@1.2.0': + resolution: {integrity: sha512-RXwd0CgG+uPRX5YYrkzKyalt2OJYRiJQ8ED/fi1tq9WQW2jsQIn0tqrlR5l5dr/rjqq6AHAxURhj2DVjyQWSOA==} cpu: [arm64] os: [linux] @@ -3239,13 +3236,13 @@ packages: cpu: [arm] os: [linux] - '@img/sharp-libvips-linux-arm@1.1.0': - resolution: {integrity: sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA==} + '@img/sharp-libvips-linux-arm@1.2.0': + resolution: {integrity: sha512-mWd2uWvDtL/nvIzThLq3fr2nnGfyr/XMXlq8ZJ9WMR6PXijHlC3ksp0IpuhK6bougvQrchUAfzRLnbsen0Cqvw==} cpu: [arm] os: [linux] - '@img/sharp-libvips-linux-ppc64@1.1.0': - resolution: {integrity: sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ==} + '@img/sharp-libvips-linux-ppc64@1.2.0': + resolution: {integrity: sha512-Xod/7KaDDHkYu2phxxfeEPXfVXFKx70EAFZ0qyUdOjCcxbjqyJOEUpDe6RIyaunGxT34Anf9ue/wuWOqBW2WcQ==} cpu: [ppc64] os: [linux] @@ -3254,8 +3251,8 @@ packages: cpu: [s390x] os: [linux] - '@img/sharp-libvips-linux-s390x@1.1.0': - resolution: {integrity: sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA==} + '@img/sharp-libvips-linux-s390x@1.2.0': + resolution: {integrity: sha512-eMKfzDxLGT8mnmPJTNMcjfO33fLiTDsrMlUVcp6b96ETbnJmd4uvZxVJSKPQfS+odwfVaGifhsB07J1LynFehw==} cpu: [s390x] os: [linux] @@ -3264,8 +3261,8 @@ packages: cpu: [x64] os: [linux] - '@img/sharp-libvips-linux-x64@1.1.0': - resolution: {integrity: sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q==} + '@img/sharp-libvips-linux-x64@1.2.0': + resolution: {integrity: sha512-ZW3FPWIc7K1sH9E3nxIGB3y3dZkpJlMnkk7z5tu1nSkBoCgw2nSRTFHI5pB/3CQaJM0pdzMF3paf9ckKMSE9Tg==} cpu: [x64] os: [linux] @@ -3274,8 +3271,8 @@ packages: cpu: [arm64] os: [linux] - '@img/sharp-libvips-linuxmusl-arm64@1.1.0': - resolution: {integrity: sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w==} + '@img/sharp-libvips-linuxmusl-arm64@1.2.0': + resolution: {integrity: sha512-UG+LqQJbf5VJ8NWJ5Z3tdIe/HXjuIdo4JeVNADXBFuG7z9zjoegpzzGIyV5zQKi4zaJjnAd2+g2nna8TZvuW9Q==} cpu: [arm64] os: [linux] @@ -3284,8 +3281,8 @@ packages: cpu: [x64] os: [linux] - '@img/sharp-libvips-linuxmusl-x64@1.1.0': - resolution: {integrity: sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A==} + '@img/sharp-libvips-linuxmusl-x64@1.2.0': + resolution: {integrity: sha512-SRYOLR7CXPgNze8akZwjoGBoN1ThNZoqpOgfnOxmWsklTGVfJiGJoC/Lod7aNMGA1jSsKWM1+HRX43OP6p9+6Q==} cpu: [x64] os: [linux] @@ -3295,8 +3292,8 @@ packages: cpu: [arm64] os: [linux] - '@img/sharp-linux-arm64@0.34.1': - resolution: {integrity: sha512-kX2c+vbvaXC6vly1RDf/IWNXxrlxLNpBVWkdpRq5Ka7OOKj6nr66etKy2IENf6FtOgklkg9ZdGpEu9kwdlcwOQ==} + '@img/sharp-linux-arm64@0.34.3': + resolution: {integrity: sha512-QdrKe3EvQrqwkDrtuTIjI0bu6YEJHTgEeqdzI3uWJOH6G1O8Nl1iEeVYRGdj1h5I21CqxSvQp1Yv7xeU3ZewbA==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] @@ -3307,20 +3304,26 @@ packages: cpu: [arm] os: [linux] - '@img/sharp-linux-arm@0.34.1': - resolution: {integrity: sha512-anKiszvACti2sGy9CirTlNyk7BjjZPiML1jt2ZkTdcvpLU1YH6CXwRAZCA2UmRXnhiIftXQ7+Oh62Ji25W72jA==} + '@img/sharp-linux-arm@0.34.3': + resolution: {integrity: sha512-oBK9l+h6KBN0i3dC8rYntLiVfW8D8wH+NPNT3O/WBHeW0OQWCjfWksLUaPidsrDKpJgXp3G3/hkmhptAW0I3+A==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm] os: [linux] + '@img/sharp-linux-ppc64@0.34.3': + resolution: {integrity: sha512-GLtbLQMCNC5nxuImPR2+RgrviwKwVql28FWZIW1zWruy6zLgA5/x2ZXk3mxj58X/tszVF69KK0Is83V8YgWhLA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ppc64] + os: [linux] + '@img/sharp-linux-s390x@0.33.5': resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [s390x] os: [linux] - '@img/sharp-linux-s390x@0.34.1': - resolution: {integrity: sha512-7s0KX2tI9mZI2buRipKIw2X1ufdTeaRgwmRabt5bi9chYfhur+/C1OXg3TKg/eag1W+6CCWLVmSauV1owmRPxA==} + '@img/sharp-linux-s390x@0.34.3': + resolution: {integrity: sha512-3gahT+A6c4cdc2edhsLHmIOXMb17ltffJlxR0aC2VPZfwKoTGZec6u5GrFgdR7ciJSsHT27BD3TIuGcuRT0KmQ==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [s390x] os: [linux] @@ -3331,8 +3334,8 @@ packages: cpu: [x64] os: [linux] - '@img/sharp-linux-x64@0.34.1': - resolution: {integrity: sha512-wExv7SH9nmoBW3Wr2gvQopX1k8q2g5V5Iag8Zk6AVENsjwd+3adjwxtp3Dcu2QhOXr8W9NusBU6XcQUohBZ5MA==} + '@img/sharp-linux-x64@0.34.3': + resolution: {integrity: sha512-8kYso8d806ypnSq3/Ly0QEw90V5ZoHh10yH0HnrzOCr6DKAPI6QVHvwleqMkVQ0m+fc7EH8ah0BB0QPuWY6zJQ==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] @@ -3343,8 +3346,8 @@ packages: cpu: [arm64] os: [linux] - '@img/sharp-linuxmusl-arm64@0.34.1': - resolution: {integrity: sha512-DfvyxzHxw4WGdPiTF0SOHnm11Xv4aQexvqhRDAoD00MzHekAj9a/jADXeXYCDFH/DzYruwHbXU7uz+H+nWmSOQ==} + '@img/sharp-linuxmusl-arm64@0.34.3': + resolution: {integrity: sha512-vAjbHDlr4izEiXM1OTggpCcPg9tn4YriK5vAjowJsHwdBIdx0fYRsURkxLG2RLm9gyBq66gwtWI8Gx0/ov+JKQ==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] @@ -3355,8 +3358,8 @@ packages: cpu: [x64] os: [linux] - '@img/sharp-linuxmusl-x64@0.34.1': - resolution: {integrity: sha512-pax/kTR407vNb9qaSIiWVnQplPcGU8LRIJpDT5o8PdAx5aAA7AS3X9PS8Isw1/WfqgQorPotjrZL3Pqh6C5EBg==} + '@img/sharp-linuxmusl-x64@0.34.3': + resolution: {integrity: sha512-gCWUn9547K5bwvOn9l5XGAEjVTTRji4aPTqLzGXHvIr6bIDZKNTA34seMPgM0WmSf+RYBH411VavCejp3PkOeQ==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] @@ -3366,19 +3369,25 @@ packages: engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [wasm32] - '@img/sharp-wasm32@0.34.1': - resolution: {integrity: sha512-YDybQnYrLQfEpzGOQe7OKcyLUCML4YOXl428gOOzBgN6Gw0rv8dpsJ7PqTHxBnXnwXr8S1mYFSLSa727tpz0xg==} + '@img/sharp-wasm32@0.34.3': + resolution: {integrity: sha512-+CyRcpagHMGteySaWos8IbnXcHgfDn7pO2fiC2slJxvNq9gDipYBN42/RagzctVRKgxATmfqOSulgZv5e1RdMg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [wasm32] + '@img/sharp-win32-arm64@0.34.3': + resolution: {integrity: sha512-MjnHPnbqMXNC2UgeLJtX4XqoVHHlZNd+nPt1kRPmj63wURegwBhZlApELdtxM2OIZDRv/DFtLcNhVbd1z8GYXQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [win32] + '@img/sharp-win32-ia32@0.33.5': resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [ia32] os: [win32] - '@img/sharp-win32-ia32@0.34.1': - resolution: {integrity: sha512-WKf/NAZITnonBf3U1LfdjoMgNO5JYRSlhovhRhMxXVdvWYveM4kM3L8m35onYIdh75cOMCo1BexgVQcCDzyoWw==} + '@img/sharp-win32-ia32@0.34.3': + resolution: {integrity: sha512-xuCdhH44WxuXgOM714hn4amodJMZl3OEvf0GVTm0BEyMeA2to+8HEdRPShH0SLYptJY1uBw+SCFP9WVQi1Q/cw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [ia32] os: [win32] @@ -3389,8 +3398,8 @@ packages: cpu: [x64] os: [win32] - '@img/sharp-win32-x64@0.34.1': - resolution: {integrity: sha512-hw1iIAHpNE8q3uMIRCgGOeDoz9KtFNarFLQclLxr/LK1VBkj8nby18RjFvr6aP7USRYAjTZW6yisnBWMX571Tw==} + '@img/sharp-win32-x64@0.34.3': + resolution: {integrity: sha512-OWwz05d++TxzLEv4VnsTz5CmZ6mI6S05sfQGEMrNrQcOEERbX46332IvE7pO/EUiw7jUrrS40z/M7kPyjfl04g==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [win32] @@ -3858,6 +3867,9 @@ packages: '@next/env@15.3.1': resolution: {integrity: sha512-cwK27QdzrMblHSn9DZRV+DQscHXRuJv6MydlJRpFSqJWZrTYMLzKDeyueJNN9MGd8NNiUKzDQADAf+dMLXX7YQ==} + '@next/env@15.4.5': + resolution: {integrity: sha512-ruM+q2SCOVCepUiERoxOmZY9ZVoecR3gcXNwCYZRvQQWRjhOiPJGmQ2fAiLR6YKWXcSAh7G79KEFxN3rwhs4LQ==} + '@next/swc-darwin-arm64@14.2.21': resolution: {integrity: sha512-HwEjcKsXtvszXz5q5Z7wCtrHeTTDSTgAbocz45PHMUjU3fBYInfvhR+ZhavDRUYLonm53aHZbB09QtJVJj8T7g==} engines: {node: '>= 10'} @@ -3870,6 +3882,12 @@ packages: cpu: [arm64] os: [darwin] + '@next/swc-darwin-arm64@15.4.5': + resolution: {integrity: sha512-84dAN4fkfdC7nX6udDLz9GzQlMUwEMKD7zsseXrl7FTeIItF8vpk1lhLEnsotiiDt+QFu3O1FVWnqwcRD2U3KA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + '@next/swc-darwin-x64@14.2.21': resolution: {integrity: sha512-TSAA2ROgNzm4FhKbTbyJOBrsREOMVdDIltZ6aZiKvCi/v0UwFmwigBGeqXDA97TFMpR3LNNpw52CbVelkoQBxA==} engines: {node: '>= 10'} @@ -3882,6 +3900,12 @@ packages: cpu: [x64] os: [darwin] + '@next/swc-darwin-x64@15.4.5': + resolution: {integrity: sha512-CL6mfGsKuFSyQjx36p2ftwMNSb8PQog8y0HO/ONLdQqDql7x3aJb/wB+LA651r4we2pp/Ck+qoRVUeZZEvSurA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + '@next/swc-linux-arm64-gnu@14.2.21': resolution: {integrity: sha512-0Dqjn0pEUz3JG+AImpnMMW/m8hRtl1GQCNbO66V1yp6RswSTiKmnHf3pTX6xMdJYSemf3O4Q9ykiL0jymu0TuA==} engines: {node: '>= 10'} @@ -3894,6 +3918,12 @@ packages: cpu: [arm64] os: [linux] + '@next/swc-linux-arm64-gnu@15.4.5': + resolution: {integrity: sha512-1hTVd9n6jpM/thnDc5kYHD1OjjWYpUJrJxY4DlEacT7L5SEOXIifIdTye6SQNNn8JDZrcN+n8AWOmeJ8u3KlvQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + '@next/swc-linux-arm64-musl@14.2.21': resolution: {integrity: sha512-Ggfw5qnMXldscVntwnjfaQs5GbBbjioV4B4loP+bjqNEb42fzZlAaK+ldL0jm2CTJga9LynBMhekNfV8W4+HBw==} engines: {node: '>= 10'} @@ -3906,6 +3936,12 @@ packages: cpu: [arm64] os: [linux] + '@next/swc-linux-arm64-musl@15.4.5': + resolution: {integrity: sha512-4W+D/nw3RpIwGrqpFi7greZ0hjrCaioGErI7XHgkcTeWdZd146NNu1s4HnaHonLeNTguKnL2Urqvj28UJj6Gqw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + '@next/swc-linux-x64-gnu@14.2.21': resolution: {integrity: sha512-uokj0lubN1WoSa5KKdThVPRffGyiWlm/vCc/cMkWOQHw69Qt0X1o3b2PyLLx8ANqlefILZh1EdfLRz9gVpG6tg==} engines: {node: '>= 10'} @@ -3918,6 +3954,12 @@ packages: cpu: [x64] os: [linux] + '@next/swc-linux-x64-gnu@15.4.5': + resolution: {integrity: sha512-N6Mgdxe/Cn2K1yMHge6pclffkxzbSGOydXVKYOjYqQXZYjLCfN/CuFkaYDeDHY2VBwSHyM2fUjYBiQCIlxIKDA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + '@next/swc-linux-x64-musl@14.2.21': resolution: {integrity: sha512-iAEBPzWNbciah4+0yI4s7Pce6BIoxTQ0AGCkxn/UBuzJFkYyJt71MadYQkjPqCQCJAFQ26sYh7MOKdU+VQFgPg==} engines: {node: '>= 10'} @@ -3930,6 +3972,12 @@ packages: cpu: [x64] os: [linux] + '@next/swc-linux-x64-musl@15.4.5': + resolution: {integrity: sha512-YZ3bNDrS8v5KiqgWE0xZQgtXgCTUacgFtnEgI4ccotAASwSvcMPDLua7BWLuTfucoRv6mPidXkITJLd8IdJplQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + '@next/swc-win32-arm64-msvc@14.2.21': resolution: {integrity: sha512-plykgB3vL2hB4Z32W3ktsfqyuyGAPxqwiyrAi2Mr8LlEUhNn9VgkiAl5hODSBpzIfWweX3er1f5uNpGDygfQVQ==} engines: {node: '>= 10'} @@ -3942,6 +3990,12 @@ packages: cpu: [arm64] os: [win32] + '@next/swc-win32-arm64-msvc@15.4.5': + resolution: {integrity: sha512-9Wr4t9GkZmMNcTVvSloFtjzbH4vtT4a8+UHqDoVnxA5QyfWe6c5flTH1BIWPGNWSUlofc8dVJAE7j84FQgskvQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + '@next/swc-win32-ia32-msvc@14.2.21': resolution: {integrity: sha512-w5bacz4Vxqrh06BjWgua3Yf7EMDb8iMcVhNrNx8KnJXt8t+Uu0Zg4JHLDL/T7DkTCEEfKXO/Er1fcfWxn2xfPA==} engines: {node: '>= 10'} @@ -3960,6 +4014,12 @@ packages: cpu: [x64] os: [win32] + '@next/swc-win32-x64-msvc@15.4.5': + resolution: {integrity: sha512-voWk7XtGvlsP+w8VBz7lqp8Y+dYw/MTI4KeS0gTVtfdhdJ5QwhXLmNrndFOin/MDoCvUaLWMkYKATaCoUkt2/A==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + '@next/third-parties@14.2.15': resolution: {integrity: sha512-15CvipE1p1GtlzVfbDfXPrAGIhzJJe75Yy6+GIBRTd36lu95BegRsUJwCxJYoKz47Q09stcU2gJDMduMGqrikw==} peerDependencies: @@ -5151,9 +5211,6 @@ packages: '@swc/counter@0.1.3': resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - '@swc/helpers@0.5.13': - resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==} - '@swc/helpers@0.5.15': resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} @@ -5447,8 +5504,15 @@ packages: '@types/range-parser@1.2.7': resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - '@types/react-dom@18.2.18': - resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==} + '@types/react-dom@18.3.7': + resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==} + peerDependencies: + '@types/react': ^18.0.0 + + '@types/react-dom@19.1.7': + resolution: {integrity: sha512-i5ZzwYpqjmrKenzkoLM2Ibzt6mAsM7pxB6BCIouEVVmgiqaMj1TjaK7hnA36hbW5aZv20kx7Lw6hWzPWg0Rurw==} + peerDependencies: + '@types/react': ^19.0.0 '@types/react@18.0.37': resolution: {integrity: sha512-4yaZZtkRN3ZIQD3KSEwkfcik8s0SWV+82dlJot1AbGYHCzJkWP3ENBY6wYeDRmKZ6HkrgoGAmR2HqdwYGp6OEw==} @@ -5456,6 +5520,9 @@ packages: '@types/react@18.2.78': resolution: {integrity: sha512-qOwdPnnitQY4xKlKayt42q5W5UQrSHjgoXNVEtxeqdITJ99k4VXJOP3vt8Rkm9HmgJpH50UNU+rlqfkfWOqp0A==} + '@types/react@19.1.9': + resolution: {integrity: sha512-WmdoynAX8Stew/36uTSVMcLJJ1KRh6L3IZRx1PZ7qJtBqT3dYTgyDTx8H1qoRghErydW7xw9mSJ3wS//tCRpFA==} + '@types/request@2.48.12': resolution: {integrity: sha512-G3sY+NpsA9jnwm0ixhAFQSJ3Q9JkpLZpJbI3GMv0mIAT0y3mRabYeINzal5WOChIiaTEGQYlHOKgkaM9EisWHw==} @@ -7512,8 +7579,8 @@ packages: resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==} engines: {node: '>=8'} - detect-libc@2.0.3: - resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} + detect-libc@2.0.4: + resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==} engines: {node: '>=8'} devalue@5.1.1: @@ -10482,6 +10549,27 @@ packages: sass: optional: true + next@15.4.5: + resolution: {integrity: sha512-nJ4v+IO9CPmbmcvsPebIoX3Q+S7f6Fu08/dEWu0Ttfa+wVwQRh9epcmsyCPjmL2b8MxC+CkBR97jgDhUUztI3g==} + engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.51.1 + babel-plugin-react-compiler: '*' + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + sass: ^1.3.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@playwright/test': + optional: true + babel-plugin-react-compiler: + optional: true + sass: + optional: true + nextra-theme-docs@3.0.15: resolution: {integrity: sha512-AhvmgcjFYi7aT5nRjdozqCt1hW39tqCIRKi4+pIR62ri26miB3VxREBYlCTHezcML2VLunyYIjFiiQGUan09gA==} peerDependencies: @@ -11521,15 +11609,10 @@ packages: peerDependencies: react: ^18.3.1 - react-dom@19.0.0-rc-4c58fce7-20240904: - resolution: {integrity: sha512-Qmp34cw7mUxI6J7KaFn0LkA0GfwzvLM5Yb4tkM3cjPkSpaPEw2xgRNj2NIrjnbheWNEtCK8dJBgpV90Hv/HENA==} + react-dom@19.1.1: + resolution: {integrity: sha512-Dlq/5LAZgF0Gaz6yiqZCf6VCcZs1ghAJyrsu84Q/GT0gV+mCxbfmKNoGRKBYMJ8IEdGPqu49YWXD02GCknEDkw==} peerDependencies: - react: 19.0.0-rc-4c58fce7-20240904 - - react-dom@19.0.0-rc-935180c7e0-20240524: - resolution: {integrity: sha512-17SL+9qxiLUZnaBWr+mO3hpz5ncP5NbJp6jnbA6cFbsWNdV3p4s8iMVALIcfZF1zPIiWQeYrZQK/Z8GY3xjihg==} - peerDependencies: - react: 19.0.0-rc-935180c7e0-20240524 + react: ^19.1.1 react-error-boundary@4.0.13: resolution: {integrity: sha512-b6PwbdSv8XeOSYvjt8LpgpKrZ0yGdtZokYwkwV2wlcZbxgopHX/hgPl5VgpnoVOWd868n1hktM8Qm4b+02MiLQ==} @@ -11584,8 +11667,8 @@ packages: resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} engines: {node: '>=0.10.0'} - react@19.0.0-rc-4c58fce7-20240904: - resolution: {integrity: sha512-zyekIzYByBxumlv+VL5pN7Kk0153ud6ZA17IU54GrURWFXJsQzv/ZZ0zF8rsBasQ55VEm74VVeVefYOKbOZTQA==} + react@19.1.1: + resolution: {integrity: sha512-w8nqGImo45dmMIfljjMwOGtbmC/mk4CMYhWIicdSflH91J9TyCyczcPFXJzrZ/ZXcgGRFeP6BU0BEJTw6tZdfQ==} engines: {node: '>=0.10.0'} read-cache@1.0.0: @@ -11950,11 +12033,8 @@ packages: scheduler@0.23.2: resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} - scheduler@0.25.0-rc-4c58fce7-20240904: - resolution: {integrity: sha512-eU7RBVIRjFNzLI3oWxMGUYy872yVmN7gDcJiNiWo8Jh+lKfh/k003fgFTZNBCE7DgVCIc6k6/afMuMDqDcUwcw==} - - scheduler@0.25.0-rc-935180c7e0-20240524: - resolution: {integrity: sha512-YfkorLQDTfVArSlFsSmTFMWW2CoUtNhkveeEzfbyqi5bShsEyQxAPLBGOUoBxaXEcQSJ2bXhkz3ZSTJCO/Th8A==} + scheduler@0.26.0: + resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==} scroll-into-view-if-needed@3.1.0: resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==} @@ -11990,8 +12070,8 @@ packages: engines: {node: '>=10'} hasBin: true - semver@7.7.1: - resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} + semver@7.7.2: + resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} engines: {node: '>=10'} hasBin: true @@ -12091,8 +12171,8 @@ packages: resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - sharp@0.34.1: - resolution: {integrity: sha512-1j0w61+eVxu7DawFJtnfYcvSv6qPFvfTaqzTQ2BLknVhHTwGS8sc63ZBF4rzkWMBVKybo4S5OBtDdZahh2A1xg==} + sharp@0.34.3: + resolution: {integrity: sha512-eX2IQ6nFohW4DbvHIOLRB3MHFpYqaqvXd3Tp5e/T/dSH83fxaNJQRvDMhASmkNTsNTVF2/OOopzRCt7xokgPfg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} shebang-command@1.2.0: @@ -14506,7 +14586,7 @@ snapshots: '@smithy/util-retry': 2.1.1 '@smithy/util-utf8': 2.1.1 fast-xml-parser: 4.2.5 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -14517,7 +14597,7 @@ snapshots: '@smithy/signature-v4': 2.1.1 '@smithy/smithy-client': 2.3.1 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/credential-provider-cognito-identity@3.499.0': dependencies: @@ -14577,7 +14657,7 @@ snapshots: '@smithy/property-provider': 2.1.1 '@smithy/shared-ini-file-loader': 2.3.1 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -14650,27 +14730,27 @@ snapshots: '@smithy/node-config-provider': 2.2.1 '@smithy/protocol-http': 3.1.1 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/middleware-host-header@3.496.0': dependencies: '@aws-sdk/types': 3.496.0 '@smithy/protocol-http': 3.1.1 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/middleware-logger@3.496.0': dependencies: '@aws-sdk/types': 3.496.0 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/middleware-recursion-detection@3.496.0': dependencies: '@aws-sdk/types': 3.496.0 '@smithy/protocol-http': 3.1.1 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/middleware-signing@3.496.0': dependencies: @@ -14689,7 +14769,7 @@ snapshots: '@aws-sdk/util-endpoints': 3.496.0 '@smithy/protocol-http': 3.1.1 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/region-config-resolver@3.496.0': dependencies: @@ -14698,7 +14778,7 @@ snapshots: '@smithy/types': 2.9.1 '@smithy/util-config-provider': 2.2.1 '@smithy/util-middleware': 2.1.1 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/token-providers@3.496.0': dependencies: @@ -14745,19 +14825,19 @@ snapshots: '@aws-sdk/types@3.496.0': dependencies: '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/util-dynamodb@3.499.0(@aws-sdk/client-dynamodb@3.499.0)': dependencies: '@aws-sdk/client-dynamodb': 3.499.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/util-endpoints@3.496.0': dependencies: '@aws-sdk/types': 3.496.0 '@smithy/types': 2.9.1 '@smithy/util-endpoints': 1.1.1 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/util-locate-window@3.495.0': dependencies: @@ -14768,14 +14848,14 @@ snapshots: '@aws-sdk/types': 3.496.0 '@smithy/types': 2.9.1 bowser: 2.11.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/util-user-agent-node@3.496.0': dependencies: '@aws-sdk/types': 3.496.0 '@smithy/node-config-provider': 2.2.1 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/util-utf8-browser@3.259.0': dependencies: @@ -14789,7 +14869,7 @@ snapshots: dependencies: '@azure/abort-controller': 1.1.0 '@azure/core-util': 1.6.1 - tslib: 2.7.0 + tslib: 2.8.1 '@azure/core-client@1.7.3': dependencies: @@ -14799,7 +14879,7 @@ snapshots: '@azure/core-tracing': 1.0.1 '@azure/core-util': 1.6.1 '@azure/logger': 1.0.4 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - supports-color @@ -14820,7 +14900,7 @@ snapshots: '@azure/core-paging@1.5.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@azure/core-rest-pipeline@1.13.0': dependencies: @@ -14831,7 +14911,7 @@ snapshots: '@azure/logger': 1.0.4 http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - supports-color @@ -14842,7 +14922,7 @@ snapshots: '@azure/core-tracing@1.0.1': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@azure/core-util@1.6.1': dependencies: @@ -14852,7 +14932,7 @@ snapshots: '@azure/core-xml@1.3.4': dependencies: fast-xml-parser: 4.3.3 - tslib: 2.7.0 + tslib: 2.8.1 '@azure/data-tables@13.2.2': dependencies: @@ -14910,7 +14990,7 @@ snapshots: '@azure/logger@1.0.4': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@azure/ms-rest-azure-env@2.0.0': {} @@ -15914,12 +15994,7 @@ snapshots: transitivePeerDependencies: - '@algolia/client-search' - '@emnapi/runtime@1.2.0': - dependencies: - tslib: 2.8.1 - optional: true - - '@emnapi/runtime@1.4.3': + '@emnapi/runtime@1.4.5': dependencies: tslib: 2.8.1 optional: true @@ -16367,7 +16442,7 @@ snapshots: '@firebase/database-types': 1.0.3 '@firebase/logger': 0.4.2 '@firebase/util': 1.9.6 - tslib: 2.7.0 + tslib: 2.8.1 '@firebase/database-types@1.0.3': dependencies: @@ -16437,7 +16512,7 @@ snapshots: '@formatjs/intl-localematcher@0.5.5': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@gar/promisify@1.1.3': optional: true @@ -16664,7 +16739,7 @@ snapshots: '@graphql-tools/utils': 10.0.13(graphql@16.8.1) '@whatwg-node/fetch': 0.9.16 graphql: 16.8.1 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - encoding @@ -16682,7 +16757,7 @@ snapshots: '@graphql-tools/utils': 10.0.13(graphql@16.8.1) globby: 11.1.0 graphql: 16.8.1 - tslib: 2.7.0 + tslib: 2.8.1 unixify: 1.0.0 transitivePeerDependencies: - supports-color @@ -16701,7 +16776,7 @@ snapshots: dependencies: graphql: 16.8.1 lodash.sortby: 4.7.0 - tslib: 2.7.0 + tslib: 2.8.1 '@graphql-tools/executor-graphql-ws@1.1.0(graphql@16.8.1)': dependencies: @@ -16757,7 +16832,7 @@ snapshots: graphql: 16.8.1 is-glob: 4.0.3 micromatch: 4.0.5 - tslib: 2.7.0 + tslib: 2.8.1 unixify: 1.0.0 transitivePeerDependencies: - supports-color @@ -16770,7 +16845,7 @@ snapshots: '@graphql-tools/utils': 10.0.13(graphql@16.8.1) '@whatwg-node/fetch': 0.9.16 graphql: 16.8.1 - tslib: 2.7.0 + tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: - '@types/node' @@ -16783,7 +16858,7 @@ snapshots: '@graphql-tools/utils': 10.0.13(graphql@16.8.1) globby: 11.1.0 graphql: 16.8.1 - tslib: 2.7.0 + tslib: 2.8.1 unixify: 1.0.0 '@graphql-tools/graphql-tag-pluck@8.2.0(graphql@16.8.1)': @@ -16811,7 +16886,7 @@ snapshots: '@graphql-tools/utils': 10.0.13(graphql@16.8.1) globby: 11.1.0 graphql: 16.8.1 - tslib: 2.7.0 + tslib: 2.8.1 unixify: 1.0.0 '@graphql-tools/load@8.0.1(graphql@16.8.1)': @@ -16820,7 +16895,7 @@ snapshots: '@graphql-tools/utils': 10.0.13(graphql@16.8.1) graphql: 16.8.1 p-limit: 3.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@graphql-tools/merge@9.0.1(graphql@16.8.1)': dependencies: @@ -16852,7 +16927,7 @@ snapshots: json-stable-stringify: 1.1.1 lodash: 4.17.21 scuid: 1.1.0 - tslib: 2.7.0 + tslib: 2.8.1 yaml-ast-parser: 0.0.43 transitivePeerDependencies: - '@types/node' @@ -16892,7 +16967,7 @@ snapshots: '@whatwg-node/fetch': 0.9.16 graphql: 16.8.1 isomorphic-ws: 5.0.0(ws@8.18.0) - tslib: 2.7.0 + tslib: 2.8.1 value-or-promise: 1.0.12 ws: 8.18.0 transitivePeerDependencies: @@ -16907,7 +16982,7 @@ snapshots: cross-inspect: 1.0.0 dset: 3.1.3 graphql: 16.8.1 - tslib: 2.7.0 + tslib: 2.8.1 '@graphql-tools/wrap@10.0.1(graphql@16.8.1)': dependencies: @@ -16988,9 +17063,9 @@ snapshots: '@img/sharp-libvips-darwin-arm64': 1.0.4 optional: true - '@img/sharp-darwin-arm64@0.34.1': + '@img/sharp-darwin-arm64@0.34.3': optionalDependencies: - '@img/sharp-libvips-darwin-arm64': 1.1.0 + '@img/sharp-libvips-darwin-arm64': 1.2.0 optional: true '@img/sharp-darwin-x64@0.33.5': @@ -16998,60 +17073,60 @@ snapshots: '@img/sharp-libvips-darwin-x64': 1.0.4 optional: true - '@img/sharp-darwin-x64@0.34.1': + '@img/sharp-darwin-x64@0.34.3': optionalDependencies: - '@img/sharp-libvips-darwin-x64': 1.1.0 + '@img/sharp-libvips-darwin-x64': 1.2.0 optional: true '@img/sharp-libvips-darwin-arm64@1.0.4': optional: true - '@img/sharp-libvips-darwin-arm64@1.1.0': + '@img/sharp-libvips-darwin-arm64@1.2.0': optional: true '@img/sharp-libvips-darwin-x64@1.0.4': optional: true - '@img/sharp-libvips-darwin-x64@1.1.0': + '@img/sharp-libvips-darwin-x64@1.2.0': optional: true '@img/sharp-libvips-linux-arm64@1.0.4': optional: true - '@img/sharp-libvips-linux-arm64@1.1.0': + '@img/sharp-libvips-linux-arm64@1.2.0': optional: true '@img/sharp-libvips-linux-arm@1.0.5': optional: true - '@img/sharp-libvips-linux-arm@1.1.0': + '@img/sharp-libvips-linux-arm@1.2.0': optional: true - '@img/sharp-libvips-linux-ppc64@1.1.0': + '@img/sharp-libvips-linux-ppc64@1.2.0': optional: true '@img/sharp-libvips-linux-s390x@1.0.4': optional: true - '@img/sharp-libvips-linux-s390x@1.1.0': + '@img/sharp-libvips-linux-s390x@1.2.0': optional: true '@img/sharp-libvips-linux-x64@1.0.4': optional: true - '@img/sharp-libvips-linux-x64@1.1.0': + '@img/sharp-libvips-linux-x64@1.2.0': optional: true '@img/sharp-libvips-linuxmusl-arm64@1.0.4': optional: true - '@img/sharp-libvips-linuxmusl-arm64@1.1.0': + '@img/sharp-libvips-linuxmusl-arm64@1.2.0': optional: true '@img/sharp-libvips-linuxmusl-x64@1.0.4': optional: true - '@img/sharp-libvips-linuxmusl-x64@1.1.0': + '@img/sharp-libvips-linuxmusl-x64@1.2.0': optional: true '@img/sharp-linux-arm64@0.33.5': @@ -17059,9 +17134,9 @@ snapshots: '@img/sharp-libvips-linux-arm64': 1.0.4 optional: true - '@img/sharp-linux-arm64@0.34.1': + '@img/sharp-linux-arm64@0.34.3': optionalDependencies: - '@img/sharp-libvips-linux-arm64': 1.1.0 + '@img/sharp-libvips-linux-arm64': 1.2.0 optional: true '@img/sharp-linux-arm@0.33.5': @@ -17069,9 +17144,14 @@ snapshots: '@img/sharp-libvips-linux-arm': 1.0.5 optional: true - '@img/sharp-linux-arm@0.34.1': + '@img/sharp-linux-arm@0.34.3': + optionalDependencies: + '@img/sharp-libvips-linux-arm': 1.2.0 + optional: true + + '@img/sharp-linux-ppc64@0.34.3': optionalDependencies: - '@img/sharp-libvips-linux-arm': 1.1.0 + '@img/sharp-libvips-linux-ppc64': 1.2.0 optional: true '@img/sharp-linux-s390x@0.33.5': @@ -17079,9 +17159,9 @@ snapshots: '@img/sharp-libvips-linux-s390x': 1.0.4 optional: true - '@img/sharp-linux-s390x@0.34.1': + '@img/sharp-linux-s390x@0.34.3': optionalDependencies: - '@img/sharp-libvips-linux-s390x': 1.1.0 + '@img/sharp-libvips-linux-s390x': 1.2.0 optional: true '@img/sharp-linux-x64@0.33.5': @@ -17089,9 +17169,9 @@ snapshots: '@img/sharp-libvips-linux-x64': 1.0.4 optional: true - '@img/sharp-linux-x64@0.34.1': + '@img/sharp-linux-x64@0.34.3': optionalDependencies: - '@img/sharp-libvips-linux-x64': 1.1.0 + '@img/sharp-libvips-linux-x64': 1.2.0 optional: true '@img/sharp-linuxmusl-arm64@0.33.5': @@ -17099,9 +17179,9 @@ snapshots: '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 optional: true - '@img/sharp-linuxmusl-arm64@0.34.1': + '@img/sharp-linuxmusl-arm64@0.34.3': optionalDependencies: - '@img/sharp-libvips-linuxmusl-arm64': 1.1.0 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.0 optional: true '@img/sharp-linuxmusl-x64@0.33.5': @@ -17109,31 +17189,34 @@ snapshots: '@img/sharp-libvips-linuxmusl-x64': 1.0.4 optional: true - '@img/sharp-linuxmusl-x64@0.34.1': + '@img/sharp-linuxmusl-x64@0.34.3': optionalDependencies: - '@img/sharp-libvips-linuxmusl-x64': 1.1.0 + '@img/sharp-libvips-linuxmusl-x64': 1.2.0 optional: true '@img/sharp-wasm32@0.33.5': dependencies: - '@emnapi/runtime': 1.2.0 + '@emnapi/runtime': 1.4.5 optional: true - '@img/sharp-wasm32@0.34.1': + '@img/sharp-wasm32@0.34.3': dependencies: - '@emnapi/runtime': 1.4.3 + '@emnapi/runtime': 1.4.5 + optional: true + + '@img/sharp-win32-arm64@0.34.3': optional: true '@img/sharp-win32-ia32@0.33.5': optional: true - '@img/sharp-win32-ia32@0.34.1': + '@img/sharp-win32-ia32@0.34.3': optional: true '@img/sharp-win32-x64@0.33.5': optional: true - '@img/sharp-win32-x64@0.34.1': + '@img/sharp-win32-x64@0.34.3': optional: true '@inkeep/color-mode@0.0.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': @@ -17310,11 +17393,11 @@ snapshots: '@internationalized/date@3.5.2': dependencies: - '@swc/helpers': 0.5.13 + '@swc/helpers': 0.5.15 '@internationalized/date@3.5.6': dependencies: - '@swc/helpers': 0.5.13 + '@swc/helpers': 0.5.15 '@ioredis/commands@1.2.0': optional: true @@ -17491,14 +17574,14 @@ snapshots: '@mapbox/node-pre-gyp@1.0.11(encoding@0.1.13)': dependencies: - detect-libc: 2.0.3 + detect-libc: 2.0.4 https-proxy-agent: 5.0.1 make-dir: 3.1.0 node-fetch: 2.7.0(encoding@0.1.13) nopt: 5.0.0 npmlog: 5.0.1 rimraf: 3.0.2 - semver: 7.6.3 + semver: 7.7.2 tar: 6.2.0 transitivePeerDependencies: - encoding @@ -17722,48 +17805,71 @@ snapshots: '@next/env@15.3.1': {} + '@next/env@15.4.5': {} + '@next/swc-darwin-arm64@14.2.21': optional: true '@next/swc-darwin-arm64@15.3.1': optional: true + '@next/swc-darwin-arm64@15.4.5': + optional: true + '@next/swc-darwin-x64@14.2.21': optional: true '@next/swc-darwin-x64@15.3.1': optional: true + '@next/swc-darwin-x64@15.4.5': + optional: true + '@next/swc-linux-arm64-gnu@14.2.21': optional: true '@next/swc-linux-arm64-gnu@15.3.1': optional: true + '@next/swc-linux-arm64-gnu@15.4.5': + optional: true + '@next/swc-linux-arm64-musl@14.2.21': optional: true '@next/swc-linux-arm64-musl@15.3.1': optional: true + '@next/swc-linux-arm64-musl@15.4.5': + optional: true + '@next/swc-linux-x64-gnu@14.2.21': optional: true '@next/swc-linux-x64-gnu@15.3.1': optional: true + '@next/swc-linux-x64-gnu@15.4.5': + optional: true + '@next/swc-linux-x64-musl@14.2.21': optional: true '@next/swc-linux-x64-musl@15.3.1': optional: true + '@next/swc-linux-x64-musl@15.4.5': + optional: true + '@next/swc-win32-arm64-msvc@14.2.21': optional: true '@next/swc-win32-arm64-msvc@15.3.1': optional: true + '@next/swc-win32-arm64-msvc@15.4.5': + optional: true + '@next/swc-win32-ia32-msvc@14.2.21': optional: true @@ -17773,6 +17879,9 @@ snapshots: '@next/swc-win32-x64-msvc@15.3.1': optional: true + '@next/swc-win32-x64-msvc@15.4.5': + optional: true + '@next/third-parties@14.2.15(next@14.2.21(@opentelemetry/api@1.7.0)(@playwright/test@1.41.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.70.0))(react@18.3.1)': dependencies: next: 14.2.21(@opentelemetry/api@1.7.0)(@playwright/test@1.41.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.70.0) @@ -17794,7 +17903,7 @@ snapshots: '@npmcli/fs@1.1.1': dependencies: '@gar/promisify': 1.1.3 - semver: 7.6.3 + semver: 7.7.2 optional: true '@npmcli/move-file@1.1.2': @@ -17837,7 +17946,7 @@ snapshots: supports-color: 8.1.1 supports-hyperlinks: 2.3.0 ts-node: 10.9.2(@swc/core@1.3.106)(@types/node@22.13.5)(typescript@5.6.3) - tslib: 2.7.0 + tslib: 2.8.1 widest-line: 3.1.0 wordwrap: 1.0.0 wrap-ansi: 7.0.0 @@ -17876,8 +17985,8 @@ snapshots: http-call: 5.3.0 load-json-file: 5.3.0 npm-run-path: 4.0.1 - semver: 7.6.3 - tslib: 2.7.0 + semver: 7.7.2 + tslib: 2.8.1 yarn: 1.22.21 transitivePeerDependencies: - '@swc/core' @@ -18124,27 +18233,27 @@ snapshots: dependencies: '@peculiar/asn1-schema': 2.3.8 asn1js: 3.0.5 - tslib: 2.7.0 + tslib: 2.8.1 '@peculiar/asn1-ecc@2.3.8': dependencies: '@peculiar/asn1-schema': 2.3.8 '@peculiar/asn1-x509': 2.3.8 asn1js: 3.0.5 - tslib: 2.7.0 + tslib: 2.8.1 '@peculiar/asn1-rsa@2.3.8': dependencies: '@peculiar/asn1-schema': 2.3.8 '@peculiar/asn1-x509': 2.3.8 asn1js: 3.0.5 - tslib: 2.7.0 + tslib: 2.8.1 '@peculiar/asn1-schema@2.3.8': dependencies: asn1js: 3.0.5 pvtsutils: 1.3.5 - tslib: 2.7.0 + tslib: 2.8.1 '@peculiar/asn1-x509@2.3.8': dependencies: @@ -18152,7 +18261,7 @@ snapshots: asn1js: 3.0.5 ipaddr.js: 2.1.0 pvtsutils: 1.3.5 - tslib: 2.7.0 + tslib: 2.8.1 '@peculiar/json-schema@1.1.12': dependencies: @@ -18287,50 +18396,50 @@ snapshots: '@radix-ui/primitive@1.1.0': {} - '@radix-ui/react-accordion@1.2.1(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-accordion@1.2.1(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@radix-ui/primitive': 1.1.0 - '@radix-ui/react-collapsible': 1.1.1(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-collapsible': 1.1.1(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-collection': 1.1.0(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.78)(react@18.3.1) '@radix-ui/react-context': 1.1.1(@types/react@18.2.78)(react@18.3.1) '@radix-ui/react-direction': 1.1.0(@types/react@18.2.78)(react@18.3.1) '@radix-ui/react-id': 1.1.0(@types/react@18.2.78)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.78)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: '@types/react': 18.2.78 - '@types/react-dom': 18.2.18 + '@types/react-dom': 19.1.7(@types/react@18.2.78) - '@radix-ui/react-collapsible@1.1.1(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-collapsible@1.1.1(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@radix-ui/primitive': 1.1.0 '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.78)(react@18.3.1) '@radix-ui/react-context': 1.1.1(@types/react@18.2.78)(react@18.3.1) '@radix-ui/react-id': 1.1.0(@types/react@18.2.78)(react@18.3.1) - '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.78)(react@18.3.1) '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.78)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: '@types/react': 18.2.78 - '@types/react-dom': 18.2.18 + '@types/react-dom': 19.1.7(@types/react@18.2.78) - '@radix-ui/react-collection@1.1.0(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-collection@1.1.0(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.78)(react@18.3.1) '@radix-ui/react-context': 1.1.0(@types/react@18.2.78)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-slot': 1.1.0(@types/react@18.2.78)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: '@types/react': 18.2.78 - '@types/react-dom': 18.2.18 + '@types/react-dom': 19.1.7(@types/react@18.2.78) '@radix-ui/react-compose-refs@1.1.0(@types/react@18.2.78)(react@18.3.1)': dependencies: @@ -18363,7 +18472,7 @@ snapshots: optionalDependencies: '@types/react': 18.2.78 - '@radix-ui/react-presence@1.1.1(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-presence@1.1.1(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.78)(react@18.3.1) '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.78)(react@18.3.1) @@ -18371,33 +18480,33 @@ snapshots: react-dom: 18.3.1(react@18.3.1) optionalDependencies: '@types/react': 18.2.78 - '@types/react-dom': 18.2.18 + '@types/react-dom': 19.1.7(@types/react@18.2.78) - '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-primitive@2.0.0(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@radix-ui/react-slot': 1.1.0(@types/react@18.2.78)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: '@types/react': 18.2.78 - '@types/react-dom': 18.2.18 + '@types/react-dom': 19.1.7(@types/react@18.2.78) - '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@radix-ui/primitive': 1.1.0 - '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-collection': 1.1.0(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.78)(react@18.3.1) '@radix-ui/react-context': 1.1.0(@types/react@18.2.78)(react@18.3.1) '@radix-ui/react-direction': 1.1.0(@types/react@18.2.78)(react@18.3.1) '@radix-ui/react-id': 1.1.0(@types/react@18.2.78)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.78)(react@18.3.1) '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.78)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: '@types/react': 18.2.78 - '@types/react-dom': 18.2.18 + '@types/react-dom': 19.1.7(@types/react@18.2.78) '@radix-ui/react-slot@1.1.0(@types/react@18.2.78)(react@18.3.1)': dependencies: @@ -18406,21 +18515,21 @@ snapshots: optionalDependencies: '@types/react': 18.2.78 - '@radix-ui/react-tabs@1.1.1(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-tabs@1.1.1(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@radix-ui/primitive': 1.1.0 '@radix-ui/react-context': 1.1.1(@types/react@18.2.78)(react@18.3.1) '@radix-ui/react-direction': 1.1.0(@types/react@18.2.78)(react@18.3.1) '@radix-ui/react-id': 1.1.0(@types/react@18.2.78)(react@18.3.1) - '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.2.18)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@19.1.7(@types/react@18.2.78))(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.78)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: '@types/react': 18.2.78 - '@types/react-dom': 18.2.18 + '@types/react-dom': 19.1.7(@types/react@18.2.78) '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.2.78)(react@18.3.1)': dependencies: @@ -18446,7 +18555,7 @@ snapshots: '@react-aria/interactions': 3.22.4(react@18.3.1) '@react-aria/utils': 3.25.3(react@18.3.1) '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.13 + '@swc/helpers': 0.5.15 clsx: 2.1.0 react: 18.3.1 @@ -18455,12 +18564,12 @@ snapshots: '@react-aria/ssr': 3.9.6(react@18.3.1) '@react-aria/utils': 3.25.3(react@18.3.1) '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.13 + '@swc/helpers': 0.5.15 react: 18.3.1 '@react-aria/ssr@3.9.6(react@18.3.1)': dependencies: - '@swc/helpers': 0.5.13 + '@swc/helpers': 0.5.15 react: 18.3.1 '@react-aria/utils@3.25.3(react@18.3.1)': @@ -18468,13 +18577,13 @@ snapshots: '@react-aria/ssr': 3.9.6(react@18.3.1) '@react-stately/utils': 3.10.4(react@18.3.1) '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.13 + '@swc/helpers': 0.5.15 clsx: 2.1.0 react: 18.3.1 '@react-stately/utils@3.10.4(react@18.3.1)': dependencies: - '@swc/helpers': 0.5.13 + '@swc/helpers': 0.5.15 react: 18.3.1 '@react-types/shared@3.25.0(react@18.3.1)': @@ -18711,7 +18820,7 @@ snapshots: '@smithy/types': 2.9.1 '@smithy/util-config-provider': 2.2.1 '@smithy/util-middleware': 2.1.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/config-resolver@2.2.0': dependencies: @@ -18731,7 +18840,7 @@ snapshots: '@smithy/smithy-client': 2.3.1 '@smithy/types': 2.9.1 '@smithy/util-middleware': 2.1.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/core@1.4.2': dependencies: @@ -18775,7 +18884,7 @@ snapshots: '@smithy/querystring-builder': 2.1.1 '@smithy/types': 2.9.1 '@smithy/util-base64': 2.1.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/fetch-http-handler@2.5.0': dependencies: @@ -18791,7 +18900,7 @@ snapshots: '@smithy/types': 2.9.1 '@smithy/util-buffer-from': 2.1.1 '@smithy/util-utf8': 2.1.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/hash-node@2.2.0': dependencies: @@ -18804,7 +18913,7 @@ snapshots: '@smithy/invalid-dependency@2.1.1': dependencies: '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/invalid-dependency@2.2.0': dependencies: @@ -18825,7 +18934,7 @@ snapshots: dependencies: '@smithy/protocol-http': 3.1.1 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/middleware-content-length@2.2.0': dependencies: @@ -18842,7 +18951,7 @@ snapshots: '@smithy/types': 2.9.1 '@smithy/url-parser': 2.1.1 '@smithy/util-middleware': 2.1.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/middleware-endpoint@2.5.1': dependencies: @@ -18864,7 +18973,7 @@ snapshots: '@smithy/types': 2.9.1 '@smithy/util-middleware': 2.1.1 '@smithy/util-retry': 2.1.1 - tslib: 2.7.0 + tslib: 2.8.1 uuid: 8.3.2 '@smithy/middleware-retry@2.3.1': @@ -18883,7 +18992,7 @@ snapshots: '@smithy/middleware-serde@2.1.1': dependencies: '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/middleware-serde@2.3.0': dependencies: @@ -18894,7 +19003,7 @@ snapshots: '@smithy/middleware-stack@2.1.1': dependencies: '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/middleware-stack@2.2.0': dependencies: @@ -18907,7 +19016,7 @@ snapshots: '@smithy/property-provider': 2.1.1 '@smithy/shared-ini-file-loader': 2.3.1 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/node-config-provider@2.3.0': dependencies: @@ -18923,7 +19032,7 @@ snapshots: '@smithy/protocol-http': 3.1.1 '@smithy/querystring-builder': 2.1.1 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/node-http-handler@2.5.0': dependencies: @@ -18948,7 +19057,7 @@ snapshots: '@smithy/protocol-http@3.1.1': dependencies: '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/protocol-http@3.3.0': dependencies: @@ -19029,7 +19138,7 @@ snapshots: '@smithy/protocol-http': 3.1.1 '@smithy/types': 2.9.1 '@smithy/util-stream': 2.1.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/smithy-client@2.5.1': dependencies: @@ -19048,13 +19157,13 @@ snapshots: '@smithy/types@2.9.1': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/url-parser@2.1.1': dependencies: '@smithy/querystring-parser': 2.1.1 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/url-parser@2.2.0': dependencies: @@ -19066,7 +19175,7 @@ snapshots: '@smithy/util-base64@2.1.1': dependencies: '@smithy/util-buffer-from': 2.1.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-base64@2.3.0': dependencies: @@ -19077,7 +19186,7 @@ snapshots: '@smithy/util-body-length-browser@2.1.1': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-body-length-browser@2.2.0': dependencies: @@ -19086,7 +19195,7 @@ snapshots: '@smithy/util-body-length-node@2.2.1': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-body-length-node@2.3.0': dependencies: @@ -19119,7 +19228,7 @@ snapshots: '@smithy/smithy-client': 2.3.1 '@smithy/types': 2.9.1 bowser: 2.11.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-defaults-mode-browser@2.2.1': dependencies: @@ -19138,7 +19247,7 @@ snapshots: '@smithy/property-provider': 2.1.1 '@smithy/smithy-client': 2.3.1 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-defaults-mode-node@2.3.1': dependencies: @@ -19155,7 +19264,7 @@ snapshots: dependencies: '@smithy/node-config-provider': 2.2.1 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-endpoints@1.2.0': dependencies: @@ -19176,7 +19285,7 @@ snapshots: '@smithy/util-middleware@2.1.1': dependencies: '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-middleware@2.2.0': dependencies: @@ -19188,7 +19297,7 @@ snapshots: dependencies: '@smithy/service-error-classification': 2.1.1 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-retry@2.2.0': dependencies: @@ -19232,7 +19341,7 @@ snapshots: '@smithy/util-utf8@2.1.1': dependencies: '@smithy/util-buffer-from': 2.1.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-utf8@2.3.0': dependencies: @@ -19244,7 +19353,7 @@ snapshots: dependencies: '@smithy/abort-controller': 2.1.1 '@smithy/types': 2.9.1 - tslib: 2.7.0 + tslib: 2.8.1 '@solidjs/meta@0.28.7(solid-js@1.8.12)': dependencies: @@ -19409,10 +19518,6 @@ snapshots: '@swc/counter@0.1.3': {} - '@swc/helpers@0.5.13': - dependencies: - tslib: 2.8.1 - '@swc/helpers@0.5.15': dependencies: tslib: 2.8.1 @@ -19420,7 +19525,7 @@ snapshots: '@swc/helpers@0.5.5': dependencies: '@swc/counter': 0.1.3 - tslib: 2.7.0 + tslib: 2.8.1 '@swc/types@0.1.17': dependencies: @@ -19773,9 +19878,14 @@ snapshots: '@types/range-parser@1.2.7': {} - '@types/react-dom@18.2.18': + '@types/react-dom@18.3.7(@types/react@18.2.78)': + dependencies: + '@types/react': 18.2.78 + + '@types/react-dom@19.1.7(@types/react@18.2.78)': dependencies: '@types/react': 18.2.78 + optional: true '@types/react@18.0.37': dependencies: @@ -19788,6 +19898,11 @@ snapshots: '@types/prop-types': 15.7.11 csstype: 3.1.3 + '@types/react@19.1.9': + dependencies: + csstype: 3.1.3 + optional: true + '@types/request@2.48.12': dependencies: '@types/caseless': 0.12.5 @@ -21751,7 +21866,7 @@ snapshots: builtins@5.0.1: dependencies: - semver: 7.6.3 + semver: 7.7.2 bundle-n-require@1.1.1: dependencies: @@ -22643,7 +22758,7 @@ snapshots: detect-libc@2.0.2: {} - detect-libc@2.0.3: {} + detect-libc@2.0.4: {} devalue@5.1.1: {} @@ -22729,7 +22844,7 @@ snapshots: transitivePeerDependencies: - supports-color - drizzle-orm@0.32.1(@cloudflare/workers-types@4.20240117.0)(@libsql/client@0.6.0)(@neondatabase/serverless@0.10.4)(@opentelemetry/api@1.7.0)(@prisma/client@6.0.0)(@types/better-sqlite3@7.6.9)(@types/pg@8.11.6)(@types/react@18.2.78)(@xata.io/client@0.28.0(typescript@5.3.3))(better-sqlite3@9.6.0)(knex@2.5.1(better-sqlite3@9.6.0)(mysql2@3.9.7)(pg@8.11.3)(sqlite3@5.1.6))(kysely@0.27.5)(mysql2@3.9.7)(pg@8.11.3)(postgres@3.4.3)(react@18.3.1)(sqlite3@5.1.6): + drizzle-orm@0.32.1(@cloudflare/workers-types@4.20240117.0)(@libsql/client@0.6.0)(@neondatabase/serverless@0.10.4)(@opentelemetry/api@1.7.0)(@prisma/client@6.0.0)(@types/better-sqlite3@7.6.9)(@types/pg@8.11.6)(@types/react@19.1.9)(@xata.io/client@0.28.0(typescript@5.3.3))(better-sqlite3@9.6.0)(knex@2.5.1(better-sqlite3@9.6.0)(mysql2@3.9.7)(pg@8.11.3)(sqlite3@5.1.6))(kysely@0.27.5)(mysql2@3.9.7)(pg@8.11.3)(postgres@3.4.3)(react@19.1.1)(sqlite3@5.1.6): optionalDependencies: '@cloudflare/workers-types': 4.20240117.0 '@libsql/client': 0.6.0 @@ -22738,7 +22853,7 @@ snapshots: '@prisma/client': 6.0.0(prisma@6.0.0) '@types/better-sqlite3': 7.6.9 '@types/pg': 8.11.6 - '@types/react': 18.2.78 + '@types/react': 19.1.9 '@xata.io/client': 0.28.0(typescript@5.3.3) better-sqlite3: 9.6.0 knex: 2.5.1(better-sqlite3@9.6.0)(mysql2@3.9.7)(mysql@2.18.1)(pg@8.11.3)(sqlite3@5.1.6(encoding@0.1.13)) @@ -22746,7 +22861,7 @@ snapshots: mysql2: 3.9.7 pg: 8.11.3 postgres: 3.4.3 - react: 18.3.1 + react: 19.1.1 sqlite3: 5.1.6(encoding@0.1.13) dset@3.1.3: {} @@ -24075,7 +24190,7 @@ snapshots: jiti: 1.21.0 minimatch: 4.2.3 string-env-interpolation: 1.0.1 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - '@types/node' - bufferutil @@ -25493,7 +25608,7 @@ snapshots: make-dir@4.0.0: dependencies: - semver: 7.6.3 + semver: 7.7.2 make-error@1.3.6: {} @@ -26583,7 +26698,7 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@15.3.1(@opentelemetry/api@1.7.0)(@playwright/test@1.41.2)(react-dom@19.0.0-rc-4c58fce7-20240904(react@19.0.0-rc-4c58fce7-20240904))(react@19.0.0-rc-4c58fce7-20240904)(sass@1.70.0): + next@15.3.1(@opentelemetry/api@1.7.0)(@playwright/test@1.41.2)(react-dom@19.1.1(react@18.3.1))(react@18.3.1)(sass@1.70.0): dependencies: '@next/env': 15.3.1 '@swc/counter': 0.1.3 @@ -26591,9 +26706,9 @@ snapshots: busboy: 1.6.0 caniuse-lite: 1.0.30001668 postcss: 8.4.31 - react: 19.0.0-rc-4c58fce7-20240904 - react-dom: 19.0.0-rc-4c58fce7-20240904(react@19.0.0-rc-4c58fce7-20240904) - styled-jsx: 5.1.6(react@19.0.0-rc-4c58fce7-20240904) + react: 18.3.1 + react-dom: 19.1.1(react@18.3.1) + styled-jsx: 5.1.6(react@18.3.1) optionalDependencies: '@next/swc-darwin-arm64': 15.3.1 '@next/swc-darwin-x64': 15.3.1 @@ -26606,35 +26721,33 @@ snapshots: '@opentelemetry/api': 1.7.0 '@playwright/test': 1.41.2 sass: 1.70.0 - sharp: 0.34.1 + sharp: 0.34.3 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros - next@15.3.1(@opentelemetry/api@1.7.0)(@playwright/test@1.41.2)(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)(sass@1.70.0): + next@15.4.5(@opentelemetry/api@1.7.0)(@playwright/test@1.40.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.70.0): dependencies: - '@next/env': 15.3.1 - '@swc/counter': 0.1.3 + '@next/env': 15.4.5 '@swc/helpers': 0.5.15 - busboy: 1.6.0 caniuse-lite: 1.0.30001668 postcss: 8.4.31 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) styled-jsx: 5.1.6(react@18.3.1) optionalDependencies: - '@next/swc-darwin-arm64': 15.3.1 - '@next/swc-darwin-x64': 15.3.1 - '@next/swc-linux-arm64-gnu': 15.3.1 - '@next/swc-linux-arm64-musl': 15.3.1 - '@next/swc-linux-x64-gnu': 15.3.1 - '@next/swc-linux-x64-musl': 15.3.1 - '@next/swc-win32-arm64-msvc': 15.3.1 - '@next/swc-win32-x64-msvc': 15.3.1 + '@next/swc-darwin-arm64': 15.4.5 + '@next/swc-darwin-x64': 15.4.5 + '@next/swc-linux-arm64-gnu': 15.4.5 + '@next/swc-linux-arm64-musl': 15.4.5 + '@next/swc-linux-x64-gnu': 15.4.5 + '@next/swc-linux-x64-musl': 15.4.5 + '@next/swc-win32-arm64-msvc': 15.4.5 + '@next/swc-win32-x64-msvc': 15.4.5 '@opentelemetry/api': 1.7.0 - '@playwright/test': 1.41.2 + '@playwright/test': 1.40.0 sass: 1.70.0 - sharp: 0.34.1 + sharp: 0.34.3 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros @@ -26709,7 +26822,7 @@ snapshots: node-abi@3.54.0: dependencies: - semver: 7.6.3 + semver: 7.7.2 node-abort-controller@2.0.0: {} @@ -26758,7 +26871,7 @@ snapshots: nopt: 5.0.0 npmlog: 6.0.2 rimraf: 3.0.2 - semver: 7.6.3 + semver: 7.7.2 tar: 6.2.0 which: 2.0.2 transitivePeerDependencies: @@ -26796,7 +26909,7 @@ snapshots: dependencies: hosted-git-info: 4.1.0 is-core-module: 2.13.1 - semver: 7.6.3 + semver: 7.7.2 validate-npm-package-license: 3.0.4 normalize-path@2.1.1: @@ -26842,7 +26955,7 @@ snapshots: dependencies: execa: 6.1.0 parse-package-name: 1.0.0 - semver: 7.6.3 + semver: 7.7.2 validate-npm-package-name: 4.0.0 nth-check@2.1.1: @@ -27575,7 +27688,7 @@ snapshots: prebuild-install@7.1.1: dependencies: - detect-libc: 2.0.3 + detect-libc: 2.0.4 expand-template: 2.0.3 github-from-package: 0.0.0 minimist: 1.2.8 @@ -27818,15 +27931,10 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 - react-dom@19.0.0-rc-4c58fce7-20240904(react@19.0.0-rc-4c58fce7-20240904): - dependencies: - react: 19.0.0-rc-4c58fce7-20240904 - scheduler: 0.25.0-rc-4c58fce7-20240904 - - react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1): + react-dom@19.1.1(react@18.3.1): dependencies: react: 18.3.1 - scheduler: 0.25.0-rc-935180c7e0-20240524 + scheduler: 0.26.0 react-error-boundary@4.0.13(react@18.3.1): dependencies: @@ -27896,7 +28004,8 @@ snapshots: dependencies: loose-envify: 1.4.0 - react@19.0.0-rc-4c58fce7-20240904: {} + react@19.1.1: + optional: true read-cache@1.0.0: dependencies: @@ -28394,9 +28503,7 @@ snapshots: dependencies: loose-envify: 1.4.0 - scheduler@0.25.0-rc-4c58fce7-20240904: {} - - scheduler@0.25.0-rc-935180c7e0-20240524: {} + scheduler@0.26.0: {} scroll-into-view-if-needed@3.1.0: dependencies: @@ -28425,8 +28532,7 @@ snapshots: semver@7.6.3: {} - semver@7.7.1: - optional: true + semver@7.7.2: {} send@0.18.0: dependencies: @@ -28543,8 +28649,8 @@ snapshots: sharp@0.33.5: dependencies: color: 4.2.3 - detect-libc: 2.0.3 - semver: 7.6.3 + detect-libc: 2.0.4 + semver: 7.7.2 optionalDependencies: '@img/sharp-darwin-arm64': 0.33.5 '@img/sharp-darwin-x64': 0.33.5 @@ -28566,32 +28672,34 @@ snapshots: '@img/sharp-win32-ia32': 0.33.5 '@img/sharp-win32-x64': 0.33.5 - sharp@0.34.1: + sharp@0.34.3: dependencies: color: 4.2.3 - detect-libc: 2.0.3 - semver: 7.7.1 + detect-libc: 2.0.4 + semver: 7.7.2 optionalDependencies: - '@img/sharp-darwin-arm64': 0.34.1 - '@img/sharp-darwin-x64': 0.34.1 - '@img/sharp-libvips-darwin-arm64': 1.1.0 - '@img/sharp-libvips-darwin-x64': 1.1.0 - '@img/sharp-libvips-linux-arm': 1.1.0 - '@img/sharp-libvips-linux-arm64': 1.1.0 - '@img/sharp-libvips-linux-ppc64': 1.1.0 - '@img/sharp-libvips-linux-s390x': 1.1.0 - '@img/sharp-libvips-linux-x64': 1.1.0 - '@img/sharp-libvips-linuxmusl-arm64': 1.1.0 - '@img/sharp-libvips-linuxmusl-x64': 1.1.0 - '@img/sharp-linux-arm': 0.34.1 - '@img/sharp-linux-arm64': 0.34.1 - '@img/sharp-linux-s390x': 0.34.1 - '@img/sharp-linux-x64': 0.34.1 - '@img/sharp-linuxmusl-arm64': 0.34.1 - '@img/sharp-linuxmusl-x64': 0.34.1 - '@img/sharp-wasm32': 0.34.1 - '@img/sharp-win32-ia32': 0.34.1 - '@img/sharp-win32-x64': 0.34.1 + '@img/sharp-darwin-arm64': 0.34.3 + '@img/sharp-darwin-x64': 0.34.3 + '@img/sharp-libvips-darwin-arm64': 1.2.0 + '@img/sharp-libvips-darwin-x64': 1.2.0 + '@img/sharp-libvips-linux-arm': 1.2.0 + '@img/sharp-libvips-linux-arm64': 1.2.0 + '@img/sharp-libvips-linux-ppc64': 1.2.0 + '@img/sharp-libvips-linux-s390x': 1.2.0 + '@img/sharp-libvips-linux-x64': 1.2.0 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.0 + '@img/sharp-libvips-linuxmusl-x64': 1.2.0 + '@img/sharp-linux-arm': 0.34.3 + '@img/sharp-linux-arm64': 0.34.3 + '@img/sharp-linux-ppc64': 0.34.3 + '@img/sharp-linux-s390x': 0.34.3 + '@img/sharp-linux-x64': 0.34.3 + '@img/sharp-linuxmusl-arm64': 0.34.3 + '@img/sharp-linuxmusl-x64': 0.34.3 + '@img/sharp-wasm32': 0.34.3 + '@img/sharp-win32-arm64': 0.34.3 + '@img/sharp-win32-ia32': 0.34.3 + '@img/sharp-win32-x64': 0.34.3 optional: true shebang-command@1.2.0: @@ -29020,11 +29128,6 @@ snapshots: client-only: 0.0.1 react: 18.3.1 - styled-jsx@5.1.6(react@19.0.0-rc-4c58fce7-20240904): - dependencies: - client-only: 0.0.1 - react: 19.0.0-rc-4c58fce7-20240904 - stylis@4.3.1: {} sublevel-pouchdb@8.0.1: @@ -29063,7 +29166,7 @@ snapshots: methods: 1.1.2 mime: 2.6.0 qs: 6.13.0 - semver: 7.6.3 + semver: 7.7.2 transitivePeerDependencies: - supports-color @@ -30140,7 +30243,7 @@ snapshots: error-stack-parser-es: 0.1.1 fs-extra: 11.2.0 open: 9.1.0 - picocolors: 1.0.0 + picocolors: 1.1.0 sirv: 2.0.4 vite: 5.3.1(@types/node@18.11.10)(sass@1.70.0)(terser@5.27.0) transitivePeerDependencies: @@ -30287,7 +30390,7 @@ snapshots: dependencies: '@volar/typescript': 1.11.1 '@vue/language-core': 1.8.27(typescript@5.4.5) - semver: 7.6.3 + semver: 7.7.2 typescript: 5.4.5 vuvuzela@1.0.3: {}