diff --git a/.gitignore b/.gitignore
index 3e5db9342a1f8..f461599c85893 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,6 +12,7 @@ package-lock.json
apps/site/.next
apps/site/build
apps/site/public/blog-data.json
+apps/site/next-env.d.ts
# Test Runner
junit.xml
diff --git a/apps/site/next-env.d.ts b/apps/site/next-env.d.ts
deleted file mode 100644
index c05d9f7d66f17..0000000000000
--- a/apps/site/next-env.d.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-///
-///
-///
-import './.next/types/routes.d.ts';
-
-// NOTE: This file should not be edited
-// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
diff --git a/apps/site/package.json b/apps/site/package.json
index a77d5cc4b6d9d..cf6a4b7b99610 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -21,7 +21,7 @@
"lint:js:fix": "node --run lint:js -- --fix",
"lint:md": "eslint \"**/*.md?(x)\" --cache --cache-strategy=content --cache-location=.eslintmdcache",
"lint:md:fix": "node --run lint:md -- --fix",
- "lint:types": "tsc --noEmit",
+ "lint:types": "next typegen && tsc --noEmit",
"playwright": "playwright test",
"scripts:release-post": "cross-env NODE_NO_WARNINGS=1 node scripts/release-post/index.mjs",
"serve": "node --run dev",
@@ -60,7 +60,7 @@
"gray-matter": "~4.0.3",
"mdast-util-to-string": "^4.0.0",
"next": "16.1.7",
- "next-intl": "~4.8.3",
+ "next-intl": "~4.9.1",
"next-themes": "~0.4.6",
"postcss-calc": "~10.1.1",
"react": "catalog:",
diff --git a/apps/site/pages/fr/about/get-involved/index.md b/apps/site/pages/fr/about/get-involved/index.md
index 40c859b1ced6a..fd8170e05a461 100644
--- a/apps/site/pages/fr/about/get-involved/index.md
+++ b/apps/site/pages/fr/about/get-involved/index.md
@@ -18,7 +18,7 @@ Si vous souhaitez vous impliquer dans la communauté Node.js, il existe de nombr
Si vous souhaitez en savoir plus sur Node.js, de nombreuses ressources sont à votre disposition.
-- [Matériel d'apprentissage officiel](https://nodejs.org/en/learn/) de Node.js.
+- [Supports pédagogiques officiels](https://nodejs.org/learn/) de Node.js.
- La [documentation officielle de référence de l'API](https://nodejs.org/api/) de Node.js.
- [NodeSchool.io](https://nodeschool.io/) vous enseignera les concepts de Node.js par le biais de jeux interactifs en ligne de commande.
- [Tag StackOverflow Node.js](https://stackoverflow.com/questions/tagged/node.js) contient un grand nombre de fils de discussion avec des ressources utiles.
diff --git a/apps/site/pages/ro/about/get-involved/index.md b/apps/site/pages/ro/about/get-involved/index.md
index 958a9f1304419..afb38b5c7eb4e 100644
--- a/apps/site/pages/ro/about/get-involved/index.md
+++ b/apps/site/pages/ro/about/get-involved/index.md
@@ -18,7 +18,7 @@ Dacă te interesează implicarea în comunitatea Node.js, există multe modalit
Dacă vrei să aprofundezi cunoștințele despre Node.js, ai la dispoziție numeroase resurse.
-- [Materialele oficiale de învățare](https://nodejs.org/en/learn/) Node.js.
+- [Materialele oficiale de învățare](https://nodejs.org/learn/) Node.js.
- [Documentația oficială de referință pentru API](https://nodejs.org/api/) Node.js.
- [NodeSchool.io](https://nodeschool.io/) te învață conceptele Node.js prin intermediul jocurilor interactive în linia de comandă.
- [Eticheta Node.js de pe StackOverflow](https://stackoverflow.com/questions/tagged/node.js) conține un număr mare de articole cu resurse utile.
diff --git a/apps/site/pages/uk/about/get-involved/index.md b/apps/site/pages/uk/about/get-involved/index.md
index 5983f044cf640..71dc6c1dac5a3 100644
--- a/apps/site/pages/uk/about/get-involved/index.md
+++ b/apps/site/pages/uk/about/get-involved/index.md
@@ -18,7 +18,7 @@ layout: about
Якщо ви хочете дізнатися більше про Node.js, використовуйте наступні ресурси:
-- [Офіційні навчальні матеріали](https://nodejs.org/en/learn/) Node.js.
+- [Офіційні навчальні матеріали](https://nodejs.org/learn/) Node.js.
- [Офіційна документація з API](https://nodejs.org/api/) Node.js.
- [NodeSchool.io](https://nodeschool.io/) навчить вас концепцій Node.js за допомогою інтерактивних ігор у командному рядку.
- [Тег Node.js у Stack Overflow](https://stackoverflow.com/questions/tagged/node.js) містить велику кількість гілок із корисними ресурсами.
diff --git a/apps/site/snippets/fr/download/docker.bash b/apps/site/snippets/fr/download/docker.bash
index d5bac4937fee0..3a31f3a6d9a26 100644
--- a/apps/site/snippets/fr/download/docker.bash
+++ b/apps/site/snippets/fr/download/docker.bash
@@ -2,7 +2,7 @@
# Veuillez vous référer à la documentation officielle à l'adresse suivante : https://docker.com/get-started/
# Récupère l'image Docker de Node.js :
-docker pull node:${props.release.major}-${props.release.major >= 4 ? 'alpine' : 'slim'}
+docker pull node:${props.release.major}-slim
# Créer un conteneur Node.js et démarrer une session Shell :
-docker run -it --rm --entrypoint sh node:${props.release.major}-${props.release.major >= 4 ? 'alpine' : 'slim'}
+docker run -it --rm --entrypoint sh node:${props.release.major}-slim
diff --git a/packages/i18n/package.json b/packages/i18n/package.json
index 7f3446347c148..ff56b799404dd 100644
--- a/packages/i18n/package.json
+++ b/packages/i18n/package.json
@@ -1,6 +1,6 @@
{
"name": "@node-core/website-i18n",
- "version": "1.1.26",
+ "version": "1.1.27",
"type": "module",
"exports": {
"./*": [
diff --git a/packages/ui-components/src/Common/Select/index.tsx b/packages/ui-components/src/Common/Select/index.tsx
index 596d51704369a..3d03f8026112a 100644
--- a/packages/ui-components/src/Common/Select/index.tsx
+++ b/packages/ui-components/src/Common/Select/index.tsx
@@ -3,7 +3,7 @@
import { ChevronDownIcon, ChevronUpIcon } from '@heroicons/react/24/outline';
import * as SelectPrimitive from '@radix-ui/react-select';
import classNames from 'classnames';
-import { useId, useMemo, useState } from 'react';
+import { useEffect, useId, useMemo, useState } from 'react';
import Skeleton from '#ui/Common/Skeleton';
@@ -64,6 +64,8 @@ const Select = ({
const id = useId();
const [value, setValue] = useState(defaultValue);
+ useEffect(() => setValue(defaultValue), [defaultValue]);
+
const mappedValues = useMemo(() => mapValues(values), [values]) as Array<
SelectGroup
>;
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b6978a7b95615..dbd3c488b4822 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -166,8 +166,8 @@ importers:
specifier: 16.1.7
version: 16.1.7(@opentelemetry/api@1.9.0)(@playwright/test@1.58.2)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
next-intl:
- specifier: ~4.8.3
- version: 4.8.3(next@16.1.7(@opentelemetry/api@1.9.0)(@playwright/test@1.58.2)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(typescript@5.9.3)
+ specifier: ~4.9.1
+ version: 4.9.1(next@16.1.7(@opentelemetry/api@1.9.0)(@playwright/test@1.58.2)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(typescript@5.9.3)
next-themes:
specifier: ~0.4.6
version: 0.4.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
@@ -1718,20 +1718,23 @@ packages:
'@floating-ui/utils@0.2.10':
resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
- '@formatjs/ecma402-abstract@3.1.1':
- resolution: {integrity: sha512-jhZbTwda+2tcNrs4kKvxrPLPjx8QsBCLCUgrrJ/S+G9YrGHWLhAyFMMBHJBnBoOwuLHd7L14FgYudviKaxkO2Q==}
+ '@formatjs/bigdecimal@0.2.0':
+ resolution: {integrity: sha512-GeaxHZbUoYvHL9tC5eltHLs+1zU70aPw0s7LwqgktIzF5oMhNY4o4deEtusJMsq7WFJF3Ye2zQEzdG8beVk73w==}
- '@formatjs/fast-memoize@3.1.0':
- resolution: {integrity: sha512-b5mvSWCI+XVKiz5WhnBCY3RJ4ZwfjAidU0yVlKa3d3MSgKmH1hC3tBGEAtYyN5mqL7N0G5x0BOUYyO8CEupWgg==}
+ '@formatjs/ecma402-abstract@3.2.0':
+ resolution: {integrity: sha512-dHnqHgBo6GXYGRsepaE1wmsC2etaivOWd5VaJstZd+HI2zR3DCUjbDVZRtoPGkkXZmyHvBwrdEUuqfvzhF/DtQ==}
- '@formatjs/icu-messageformat-parser@3.5.1':
- resolution: {integrity: sha512-sSDmSvmmoVQ92XqWb499KrIhv/vLisJU8ITFrx7T7NZHUmMY7EL9xgRowAosaljhqnj/5iufG24QrdzB6X3ItA==}
+ '@formatjs/fast-memoize@3.1.1':
+ resolution: {integrity: sha512-CbNbf+tlJn1baRnPkNePnBqTLxGliG6DDgNa/UtV66abwIjwsliPMOt0172tzxABYzSuxZBZfcp//qI8AvBWPg==}
- '@formatjs/icu-skeleton-parser@2.1.1':
- resolution: {integrity: sha512-PSFABlcNefjI6yyk8f7nyX1DC7NHmq6WaCHZLySEXBrXuLOB2f935YsnzuPjlz+ibhb9yWTdPeVX1OVcj24w2Q==}
+ '@formatjs/icu-messageformat-parser@3.5.3':
+ resolution: {integrity: sha512-HJWZ9S6JWey6iY5+YXE3Kd0ofWU1sC2KTTp56e1168g/xxWvVvr8k9G4fexIgwYV9wbtjY7kGYK5FjoWB3B2OQ==}
- '@formatjs/intl-localematcher@0.8.1':
- resolution: {integrity: sha512-xwEuwQFdtSq1UKtQnyTZWC+eHdv7Uygoa+H2k/9uzBVQjDyp9r20LNDNKedWXll7FssT3GRHvqsdJGYSUWqYFA==}
+ '@formatjs/icu-skeleton-parser@2.1.3':
+ resolution: {integrity: sha512-9mFp8TJ166ZM2pcjKwsBWXrDnOJGT7vMEScVgLygUODPOsE8S6f/FHoacvrlHK1B4dYZk8vSCNruyPU64AfgJQ==}
+
+ '@formatjs/intl-localematcher@0.8.2':
+ resolution: {integrity: sha512-q05KMYGJLyqFNFtIb8NhWLF5X3aK/k0wYt7dnRFuy6aLQL+vUwQ1cg5cO4qawEiINybeCPXAWlprY2mSBjSXAQ==}
'@heroicons/react@2.2.0':
resolution: {integrity: sha512-LMcepvRaS9LYHJGsF0zzmgKCUim/X3N/DQKc4jepAXJ7l8QxJ1PmxJzqplF2Z3FE4PqBAIGyJAQ/w4B5dsqbtQ==}
@@ -3357,22 +3360,16 @@ packages:
typescript:
optional: true
- '@swc/core-darwin-arm64@1.15.18':
- resolution: {integrity: sha512-+mIv7uBuSaywN3C9LNuWaX1jJJ3SKfiJuE6Lr3bd+/1Iv8oMU7oLBjYMluX1UrEPzwN2qCdY6Io0yVicABoCwQ==}
- engines: {node: '>=10'}
- cpu: [arm64]
- os: [darwin]
-
'@swc/core-darwin-arm64@1.15.21':
resolution: {integrity: sha512-SA8SFg9dp0qKRH8goWsax6bptFE2EdmPf2YRAQW9WoHGf3XKM1bX0nd5UdwxmC5hXsBUZAYf7xSciCler6/oyA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
- '@swc/core-darwin-x64@1.15.18':
- resolution: {integrity: sha512-wZle0eaQhnzxWX5V/2kEOI6Z9vl/lTFEC6V4EWcn+5pDjhemCpQv9e/TDJ0GIoiClX8EDWRvuZwh+Z3dhL1NAg==}
+ '@swc/core-darwin-arm64@1.15.24':
+ resolution: {integrity: sha512-uM5ZGfFXjtvtJ+fe448PVBEbn/CSxS3UAyLj3O9xOqKIWy3S6hPTXSPbszxkSsGDYKi+YFhzAsR4r/eXLxEQ0g==}
engines: {node: '>=10'}
- cpu: [x64]
+ cpu: [arm64]
os: [darwin]
'@swc/core-darwin-x64@1.15.21':
@@ -3381,11 +3378,11 @@ packages:
cpu: [x64]
os: [darwin]
- '@swc/core-linux-arm-gnueabihf@1.15.18':
- resolution: {integrity: sha512-ao61HGXVqrJFHAcPtF4/DegmwEkVCo4HApnotLU8ognfmU8x589z7+tcf3hU+qBiU1WOXV5fQX6W9Nzs6hjxDw==}
+ '@swc/core-darwin-x64@1.15.24':
+ resolution: {integrity: sha512-fMIb/Zfn929pw25VMBhV7Ji2Dl+lCWtUPNdYJQYOke+00E5fcQ9ynxtP8+qhUo/HZc+mYQb1gJxwHM9vty+lXg==}
engines: {node: '>=10'}
- cpu: [arm]
- os: [linux]
+ cpu: [x64]
+ os: [darwin]
'@swc/core-linux-arm-gnueabihf@1.15.21':
resolution: {integrity: sha512-meNI4Sh6h9h8DvIfEc0l5URabYMSuNvyisLmG6vnoYAS43s8ON3NJR8sDHvdP7NJTrLe0q/x2XCn6yL/BeHcZg==}
@@ -3393,12 +3390,11 @@ packages:
cpu: [arm]
os: [linux]
- '@swc/core-linux-arm64-gnu@1.15.18':
- resolution: {integrity: sha512-3xnctOBLIq3kj8PxOCgPrGjBLP/kNOddr6f5gukYt/1IZxsITQaU9TDyjeX6jG+FiCIHjCuWuffsyQDL5Ew1bg==}
+ '@swc/core-linux-arm-gnueabihf@1.15.24':
+ resolution: {integrity: sha512-vOkjsyjjxnoYx3hMEWcGxQrMgnNrRm6WAegBXrN8foHtDAR+zpdhpGF5a4lj1bNPgXAvmysjui8cM1ov/Clkaw==}
engines: {node: '>=10'}
- cpu: [arm64]
+ cpu: [arm]
os: [linux]
- libc: [glibc]
'@swc/core-linux-arm64-gnu@1.15.21':
resolution: {integrity: sha512-QrXlNQnHeXqU2EzLlnsPoWEh8/GtNJLvfMiPsDhk+ht6Xv8+vhvZ5YZ/BokNWSIZiWPKLAqR0M7T92YF5tmD3g==}
@@ -3407,12 +3403,12 @@ packages:
os: [linux]
libc: [glibc]
- '@swc/core-linux-arm64-musl@1.15.18':
- resolution: {integrity: sha512-0a+Lix+FSSHBSBOA0XznCcHo5/1nA6oLLjcnocvzXeqtdjnPb+SvchItHI+lfeiuj1sClYPDvPMLSLyXFaiIKw==}
+ '@swc/core-linux-arm64-gnu@1.15.24':
+ resolution: {integrity: sha512-h/oNu+upkXJ6Cicnq7YGVj9PkdfarLCdQa8l/FlHYvfv8CEiMaeeTnpLU7gSBH/rGxosM6Qkfa/J9mThGF9CLA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- libc: [musl]
+ libc: [glibc]
'@swc/core-linux-arm64-musl@1.15.21':
resolution: {integrity: sha512-8/yGCMO333ultDaMQivE5CjO6oXDPeeg1IV4sphojPkb0Pv0i6zvcRIkgp60xDB+UxLr6VgHgt+BBgqS959E9g==}
@@ -3421,6 +3417,13 @@ packages:
os: [linux]
libc: [musl]
+ '@swc/core-linux-arm64-musl@1.15.24':
+ resolution: {integrity: sha512-ZpF/pRe1guk6sKzQI9D1jAORtjTdNlyeXn9GDz8ophof/w2WhojRblvSDJaGe7rJjcPN8AaOkhwdRUh7q8oYIg==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
'@swc/core-linux-ppc64-gnu@1.15.21':
resolution: {integrity: sha512-ucW0HzPx0s1dgRvcvuLSPSA/2Kk/VYTv9st8qe1Kc22Gu0Q0rH9+6TcBTmMuNIp0Xs4BPr1uBttmbO1wEGI49Q==}
engines: {node: '>=10'}
@@ -3428,6 +3431,13 @@ packages:
os: [linux]
libc: [glibc]
+ '@swc/core-linux-ppc64-gnu@1.15.24':
+ resolution: {integrity: sha512-QZEsZfisHTSJlmyChgDFNmKPb3W6Lhbfo/O76HhIngfEdnQNmukS38/VSe1feho+xkV5A5hETyCbx3sALBZKAQ==}
+ engines: {node: '>=10'}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
'@swc/core-linux-s390x-gnu@1.15.21':
resolution: {integrity: sha512-ulTnOGc5I7YRObE/9NreAhQg94QkiR5qNhhcUZ1iFAYjzg/JGAi1ch+s/Ixe61pMIr8bfVrF0NOaB0f8wjaAfA==}
engines: {node: '>=10'}
@@ -3435,10 +3445,10 @@ packages:
os: [linux]
libc: [glibc]
- '@swc/core-linux-x64-gnu@1.15.18':
- resolution: {integrity: sha512-wG9J8vReUlpaHz4KOD/5UE1AUgirimU4UFT9oZmupUDEofxJKYb1mTA/DrMj0s78bkBiNI+7Fo2EgPuvOJfuAA==}
+ '@swc/core-linux-s390x-gnu@1.15.24':
+ resolution: {integrity: sha512-DLdJKVsJgglqQrJBuoUYNmzm3leI7kUZhLbZGHv42onfKsGf6JDS3+bzCUQfte/XOqDjh/tmmn1DR/CF/tCJFw==}
engines: {node: '>=10'}
- cpu: [x64]
+ cpu: [s390x]
os: [linux]
libc: [glibc]
@@ -3449,12 +3459,12 @@ packages:
os: [linux]
libc: [glibc]
- '@swc/core-linux-x64-musl@1.15.18':
- resolution: {integrity: sha512-4nwbVvCphKzicwNWRmvD5iBaZj8JYsRGa4xOxJmOyHlMDpsvvJ2OR2cODlvWyGFH6BYL1MfIAK3qph3hp0Az6g==}
+ '@swc/core-linux-x64-gnu@1.15.24':
+ resolution: {integrity: sha512-IpLYfposPA/XLxYOKpRfeccl1p5dDa3+okZDHHTchBkXEaVCnq5MADPmIWwIYj1tudt7hORsEHccG5no6IUQRw==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- libc: [musl]
+ libc: [glibc]
'@swc/core-linux-x64-musl@1.15.21':
resolution: {integrity: sha512-nER8u7VeRfmU6fMDzl1NQAbbB/G7O2avmvCOwIul1uGkZ2/acbPH+DCL9h5+0yd/coNcxMBTL6NGepIew+7C2w==}
@@ -3463,11 +3473,12 @@ packages:
os: [linux]
libc: [musl]
- '@swc/core-win32-arm64-msvc@1.15.18':
- resolution: {integrity: sha512-zk0RYO+LjiBCat2RTMHzAWaMky0cra9loH4oRrLKLLNuL+jarxKLFDA8xTZWEkCPLjUTwlRN7d28eDLLMgtUcQ==}
+ '@swc/core-linux-x64-musl@1.15.24':
+ resolution: {integrity: sha512-JHy3fMSc0t/EPWgo74+OK5TGr51aElnzqfUPaiRf2qJ/BfX5CUCfMiWVBuhI7qmVMBnk1jTRnL/xZnOSHDPLYg==}
engines: {node: '>=10'}
- cpu: [arm64]
- os: [win32]
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
'@swc/core-win32-arm64-msvc@1.15.21':
resolution: {integrity: sha512-+/AgNBnjYugUA8C0Do4YzymgvnGbztv7j8HKSQLvR/DQgZPoXQ2B3PqB2mTtGh/X5DhlJWiqnunN35JUgWcAeQ==}
@@ -3475,10 +3486,10 @@ packages:
cpu: [arm64]
os: [win32]
- '@swc/core-win32-ia32-msvc@1.15.18':
- resolution: {integrity: sha512-yVuTrZ0RccD5+PEkpcLOBAuPbYBXS6rslENvIXfvJGXSdX5QGi1ehC4BjAMl5FkKLiam4kJECUI0l7Hq7T1vwg==}
+ '@swc/core-win32-arm64-msvc@1.15.24':
+ resolution: {integrity: sha512-Txj+qUH1z2bUd1P3JvwByfjKFti3cptlAxhWgmunBUUxy/IW3CXLZ6l6Gk4liANadKkU71nIU1X30Z5vpMT3BA==}
engines: {node: '>=10'}
- cpu: [ia32]
+ cpu: [arm64]
os: [win32]
'@swc/core-win32-ia32-msvc@1.15.21':
@@ -3487,10 +3498,10 @@ packages:
cpu: [ia32]
os: [win32]
- '@swc/core-win32-x64-msvc@1.15.18':
- resolution: {integrity: sha512-7NRmE4hmUQNCbYU3Hn9Tz57mK9Qq4c97ZS+YlamlK6qG9Fb5g/BB3gPDe0iLlJkns/sYv2VWSkm8c3NmbEGjbg==}
+ '@swc/core-win32-ia32-msvc@1.15.24':
+ resolution: {integrity: sha512-15D/nl3XwrhFpMv+MADFOiVwv3FvH9j8c6Rf8EXBT3Q5LoMh8YnDnSgPYqw1JzPnksvsBX6QPXLiPqmcR/Z4qQ==}
engines: {node: '>=10'}
- cpu: [x64]
+ cpu: [ia32]
os: [win32]
'@swc/core-win32-x64-msvc@1.15.21':
@@ -3499,8 +3510,14 @@ packages:
cpu: [x64]
os: [win32]
- '@swc/core@1.15.18':
- resolution: {integrity: sha512-z87aF9GphWp//fnkRsqvtY+inMVPgYW3zSlXH1kJFvRT5H/wiAn+G32qW5l3oEk63KSF1x3Ov0BfHCObAmT8RA==}
+ '@swc/core-win32-x64-msvc@1.15.24':
+ resolution: {integrity: sha512-PR0PlTlPra2JbaDphrOAzm6s0v9rA0F17YzB+XbWD95B4g2cWcZY9LAeTa4xll70VLw9Jr7xBrlohqlQmelMFQ==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@swc/core@1.15.21':
+ resolution: {integrity: sha512-fkk7NJcBscrR3/F8jiqlMptRHP650NxqDnspBMrRe5d8xOoCy9MLL5kOBLFXjFLfMo3KQQHhk+/jUULOMlR1uQ==}
engines: {node: '>=10'}
peerDependencies:
'@swc/helpers': '>=0.5.17'
@@ -3508,8 +3525,8 @@ packages:
'@swc/helpers':
optional: true
- '@swc/core@1.15.21':
- resolution: {integrity: sha512-fkk7NJcBscrR3/F8jiqlMptRHP650NxqDnspBMrRe5d8xOoCy9MLL5kOBLFXjFLfMo3KQQHhk+/jUULOMlR1uQ==}
+ '@swc/core@1.15.24':
+ resolution: {integrity: sha512-5Hj8aNasue7yusUt8LGCUe/AjM7RMAce8ZoyDyiFwx7Al+GbYKL+yE7g4sJk8vEr1dKIkTRARkNIJENc4CjkBQ==}
engines: {node: '>=10'}
peerDependencies:
'@swc/helpers': '>=0.5.17'
@@ -3526,9 +3543,6 @@ packages:
'@swc/html-wasm@1.15.21':
resolution: {integrity: sha512-2Wo2S5DbfAswldF/X5gSmqgTy4uMBEUix7zYcIFsXgZyVJ8PDPE19cgxSBkauJxxGXfvo5rVCcEjx0XrJHpDEA==}
- '@swc/types@0.1.25':
- resolution: {integrity: sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g==}
-
'@swc/types@0.1.26':
resolution: {integrity: sha512-lyMwd7WGgG79RS7EERZV3T8wMdmPq3xwyg+1nmAM64kIhx5yl+juO2PYIHb7vTiPgPCj8LYjsNV2T5wiQHUEaw==}
@@ -4430,6 +4444,10 @@ packages:
resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
engines: {node: '>= 0.4'}
+ call-bind@1.0.9:
+ resolution: {integrity: sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==}
+ engines: {node: '>= 0.4'}
+
call-bound@1.0.4:
resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
engines: {node: '>= 0.4'}
@@ -4907,6 +4925,10 @@ packages:
resolution: {integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==}
engines: {node: '>= 0.4'}
+ es-abstract@1.24.2:
+ resolution: {integrity: sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg==}
+ engines: {node: '>= 0.4'}
+
es-define-property@1.0.1:
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
engines: {node: '>= 0.4'}
@@ -5677,8 +5699,8 @@ packages:
peerDependencies:
postcss: ^8.1.0
- icu-minify@4.8.3:
- resolution: {integrity: sha512-65Av7FLosNk7bPbmQx5z5XG2Y3T2GFppcjiXh4z1idHeVgQxlDpAmkGoYI0eFzAvrOnjpWTL5FmPDhsdfRMPEA==}
+ icu-minify@4.9.1:
+ resolution: {integrity: sha512-6NkfF9GHHFouqnz+wuiLjCWQiyxoEyJ5liUv4Jxxo/8wyhV7MY0L0iTEGDAVEa4aAD58WqTxFMa20S5nyMjwNw==}
ignore@5.3.2:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
@@ -5735,8 +5757,8 @@ packages:
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
engines: {node: '>= 0.4'}
- intl-messageformat@11.1.2:
- resolution: {integrity: sha512-ucSrQmZGAxfiBHfBRXW/k7UC8MaGFlEj4Ry1tKiDcmgwQm1y3EDl40u+4VNHYomxJQMJi9NEI3riDRlth96jKg==}
+ intl-messageformat@11.2.0:
+ resolution: {integrity: sha512-IhghAA8n4KSlXuWKzYsWyWb82JoYTzShfyvdSF85oJPnNOjvv4kAo7S7Jtkm3/vJ53C7dQNRO+Gpnj3iWgTjBQ==}
ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
@@ -6512,15 +6534,15 @@ packages:
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- next-intl-swc-plugin-extractor@4.8.3:
- resolution: {integrity: sha512-YcaT+R9z69XkGhpDarVFWUprrCMbxgIQYPUaXoE6LGVnLjGdo8hu3gL6bramDVjNKViYY8a/pXPy7Bna0mXORg==}
+ next-intl-swc-plugin-extractor@4.9.1:
+ resolution: {integrity: sha512-8whJJ6oxJz8JqkHarggmmuEDyXgC7nEnaPhZD91CJwEWW4xp0AST3Mw17YxvHyP2vAF3taWfFbs1maD+WWtz3w==}
- next-intl@4.8.3:
- resolution: {integrity: sha512-PvdBDWg+Leh7BR7GJUQbCDVVaBRn37GwDBWc9sv0rVQOJDQ5JU1rVzx9EEGuOGYo0DHAl70++9LQ7HxTawdL7w==}
+ next-intl@4.9.1:
+ resolution: {integrity: sha512-N7ga0CjtYcdxNvaKNIi6eJ2mmatlHK5hp8rt0YO2Omoc1m0gean242/Ukdj6+gJNiReBVcYIjK0HZeNx7CV1ug==}
peerDependencies:
next: ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0 || ^19.0.0
- typescript: ^5.0.0
+ typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
@@ -6801,10 +6823,6 @@ packages:
resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==}
engines: {node: '>=8.6'}
- picomatch@4.0.3:
- resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
- engines: {node: '>=12'}
-
picomatch@4.0.4:
resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
engines: {node: '>=12'}
@@ -8211,8 +8229,8 @@ packages:
'@types/react':
optional: true
- use-intl@4.8.3:
- resolution: {integrity: sha512-nLxlC/RH+le6g3amA508Itnn/00mE+J22ui21QhOWo5V9hCEC43+WtnRAITbJW0ztVZphev5X9gvOf2/Dk9PLA==}
+ use-intl@4.9.1:
+ resolution: {integrity: sha512-iGVV/xFYlhe3btafRlL8RPLD2Jsuet4yqn9DR6LWWbMhULsJnXgLonDkzDmsAIBIwFtk02oJuX/Ox2vwHKF+UQ==}
peerDependencies:
react: ^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0 || ^19.0.0
@@ -8359,6 +8377,10 @@ packages:
resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==}
engines: {node: '>= 0.4'}
+ which-typed-array@1.1.20:
+ resolution: {integrity: sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==}
+ engines: {node: '>= 0.4'}
+
which@1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
hasBin: true
@@ -9951,32 +9973,28 @@ snapshots:
'@floating-ui/utils@0.2.10': {}
- '@formatjs/ecma402-abstract@3.1.1':
- dependencies:
- '@formatjs/fast-memoize': 3.1.0
- '@formatjs/intl-localematcher': 0.8.1
- decimal.js: 10.6.0
- tslib: 2.8.1
+ '@formatjs/bigdecimal@0.2.0': {}
- '@formatjs/fast-memoize@3.1.0':
+ '@formatjs/ecma402-abstract@3.2.0':
dependencies:
- tslib: 2.8.1
+ '@formatjs/bigdecimal': 0.2.0
+ '@formatjs/fast-memoize': 3.1.1
+ '@formatjs/intl-localematcher': 0.8.2
+
+ '@formatjs/fast-memoize@3.1.1': {}
- '@formatjs/icu-messageformat-parser@3.5.1':
+ '@formatjs/icu-messageformat-parser@3.5.3':
dependencies:
- '@formatjs/ecma402-abstract': 3.1.1
- '@formatjs/icu-skeleton-parser': 2.1.1
- tslib: 2.8.1
+ '@formatjs/ecma402-abstract': 3.2.0
+ '@formatjs/icu-skeleton-parser': 2.1.3
- '@formatjs/icu-skeleton-parser@2.1.1':
+ '@formatjs/icu-skeleton-parser@2.1.3':
dependencies:
- '@formatjs/ecma402-abstract': 3.1.1
- tslib: 2.8.1
+ '@formatjs/ecma402-abstract': 3.2.0
- '@formatjs/intl-localematcher@0.8.1':
+ '@formatjs/intl-localematcher@0.8.2':
dependencies:
- '@formatjs/fast-memoize': 3.1.0
- tslib: 2.8.1
+ '@formatjs/fast-memoize': 3.1.1
'@heroicons/react@2.2.0(react@19.2.4)':
dependencies:
@@ -10682,7 +10700,7 @@ snapshots:
detect-libc: 2.1.2
is-glob: 4.0.3
node-addon-api: 7.1.1
- picomatch: 4.0.3
+ picomatch: 4.0.4
optionalDependencies:
'@parcel/watcher-android-arm64': 2.5.6
'@parcel/watcher-darwin-arm64': 2.5.6
@@ -11749,87 +11767,77 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@swc/core-darwin-arm64@1.15.18':
- optional: true
-
'@swc/core-darwin-arm64@1.15.21':
optional: true
- '@swc/core-darwin-x64@1.15.18':
+ '@swc/core-darwin-arm64@1.15.24':
optional: true
'@swc/core-darwin-x64@1.15.21':
optional: true
- '@swc/core-linux-arm-gnueabihf@1.15.18':
+ '@swc/core-darwin-x64@1.15.24':
optional: true
'@swc/core-linux-arm-gnueabihf@1.15.21':
optional: true
- '@swc/core-linux-arm64-gnu@1.15.18':
+ '@swc/core-linux-arm-gnueabihf@1.15.24':
optional: true
'@swc/core-linux-arm64-gnu@1.15.21':
optional: true
- '@swc/core-linux-arm64-musl@1.15.18':
+ '@swc/core-linux-arm64-gnu@1.15.24':
optional: true
'@swc/core-linux-arm64-musl@1.15.21':
optional: true
+ '@swc/core-linux-arm64-musl@1.15.24':
+ optional: true
+
'@swc/core-linux-ppc64-gnu@1.15.21':
optional: true
+ '@swc/core-linux-ppc64-gnu@1.15.24':
+ optional: true
+
'@swc/core-linux-s390x-gnu@1.15.21':
optional: true
- '@swc/core-linux-x64-gnu@1.15.18':
+ '@swc/core-linux-s390x-gnu@1.15.24':
optional: true
'@swc/core-linux-x64-gnu@1.15.21':
optional: true
- '@swc/core-linux-x64-musl@1.15.18':
+ '@swc/core-linux-x64-gnu@1.15.24':
optional: true
'@swc/core-linux-x64-musl@1.15.21':
optional: true
- '@swc/core-win32-arm64-msvc@1.15.18':
+ '@swc/core-linux-x64-musl@1.15.24':
optional: true
'@swc/core-win32-arm64-msvc@1.15.21':
optional: true
- '@swc/core-win32-ia32-msvc@1.15.18':
+ '@swc/core-win32-arm64-msvc@1.15.24':
optional: true
'@swc/core-win32-ia32-msvc@1.15.21':
optional: true
- '@swc/core-win32-x64-msvc@1.15.18':
+ '@swc/core-win32-ia32-msvc@1.15.24':
optional: true
'@swc/core-win32-x64-msvc@1.15.21':
optional: true
- '@swc/core@1.15.18':
- dependencies:
- '@swc/counter': 0.1.3
- '@swc/types': 0.1.25
- optionalDependencies:
- '@swc/core-darwin-arm64': 1.15.18
- '@swc/core-darwin-x64': 1.15.18
- '@swc/core-linux-arm-gnueabihf': 1.15.18
- '@swc/core-linux-arm64-gnu': 1.15.18
- '@swc/core-linux-arm64-musl': 1.15.18
- '@swc/core-linux-x64-gnu': 1.15.18
- '@swc/core-linux-x64-musl': 1.15.18
- '@swc/core-win32-arm64-msvc': 1.15.18
- '@swc/core-win32-ia32-msvc': 1.15.18
- '@swc/core-win32-x64-msvc': 1.15.18
+ '@swc/core-win32-x64-msvc@1.15.24':
+ optional: true
'@swc/core@1.15.21':
dependencies:
@@ -11849,6 +11857,24 @@ snapshots:
'@swc/core-win32-ia32-msvc': 1.15.21
'@swc/core-win32-x64-msvc': 1.15.21
+ '@swc/core@1.15.24':
+ dependencies:
+ '@swc/counter': 0.1.3
+ '@swc/types': 0.1.26
+ optionalDependencies:
+ '@swc/core-darwin-arm64': 1.15.24
+ '@swc/core-darwin-x64': 1.15.24
+ '@swc/core-linux-arm-gnueabihf': 1.15.24
+ '@swc/core-linux-arm64-gnu': 1.15.24
+ '@swc/core-linux-arm64-musl': 1.15.24
+ '@swc/core-linux-ppc64-gnu': 1.15.24
+ '@swc/core-linux-s390x-gnu': 1.15.24
+ '@swc/core-linux-x64-gnu': 1.15.24
+ '@swc/core-linux-x64-musl': 1.15.24
+ '@swc/core-win32-arm64-msvc': 1.15.24
+ '@swc/core-win32-ia32-msvc': 1.15.24
+ '@swc/core-win32-x64-msvc': 1.15.24
+
'@swc/counter@0.1.3': {}
'@swc/helpers@0.5.15':
@@ -11857,10 +11883,6 @@ snapshots:
'@swc/html-wasm@1.15.21': {}
- '@swc/types@0.1.25':
- dependencies:
- '@swc/counter': 0.1.3
-
'@swc/types@0.1.26':
dependencies:
'@swc/counter': 0.1.3
@@ -12620,10 +12642,10 @@ snapshots:
array.prototype.findlastindex@1.2.6:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.9
call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.24.1
+ es-abstract: 1.24.2
es-errors: 1.3.0
es-object-atoms: 1.1.1
es-shim-unscopables: 1.1.0
@@ -12791,6 +12813,14 @@ snapshots:
get-intrinsic: 1.3.0
set-function-length: 1.2.2
+ call-bind@1.0.9:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ get-intrinsic: 1.3.0
+ set-function-length: 1.2.2
+ optional: true
+
call-bound@1.0.4:
dependencies:
call-bind-apply-helpers: 1.0.2
@@ -13283,6 +13313,64 @@ snapshots:
unbox-primitive: 1.1.0
which-typed-array: 1.1.19
+ es-abstract@1.24.2:
+ dependencies:
+ array-buffer-byte-length: 1.0.2
+ arraybuffer.prototype.slice: 1.0.4
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.9
+ call-bound: 1.0.4
+ data-view-buffer: 1.0.2
+ data-view-byte-length: 1.0.2
+ data-view-byte-offset: 1.0.1
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ es-set-tostringtag: 2.1.0
+ es-to-primitive: 1.3.0
+ function.prototype.name: 1.1.8
+ get-intrinsic: 1.3.0
+ get-proto: 1.0.1
+ get-symbol-description: 1.1.0
+ globalthis: 1.0.4
+ gopd: 1.2.0
+ has-property-descriptors: 1.0.2
+ has-proto: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ internal-slot: 1.1.0
+ is-array-buffer: 3.0.5
+ is-callable: 1.2.7
+ is-data-view: 1.0.2
+ is-negative-zero: 2.0.3
+ is-regex: 1.2.1
+ is-set: 2.0.3
+ is-shared-array-buffer: 1.0.4
+ is-string: 1.1.1
+ is-typed-array: 1.1.15
+ is-weakref: 1.1.1
+ math-intrinsics: 1.1.0
+ object-inspect: 1.13.4
+ object-keys: 1.1.1
+ object.assign: 4.1.7
+ own-keys: 1.0.1
+ regexp.prototype.flags: 1.5.4
+ safe-array-concat: 1.1.3
+ safe-push-apply: 1.0.0
+ safe-regex-test: 1.1.0
+ set-proto: 1.0.0
+ stop-iteration-iterator: 1.1.0
+ string.prototype.trim: 1.2.10
+ string.prototype.trimend: 1.0.9
+ string.prototype.trimstart: 1.0.8
+ typed-array-buffer: 1.0.3
+ typed-array-byte-length: 1.0.3
+ typed-array-byte-offset: 1.0.4
+ typed-array-length: 1.0.7
+ unbox-primitive: 1.1.0
+ which-typed-array: 1.1.20
+ optional: true
+
es-define-property@1.0.1: {}
es-errors@1.3.0: {}
@@ -13468,7 +13556,7 @@ snapshots:
tinyglobby: 0.2.15
unrs-resolver: 1.11.1
optionalDependencies:
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.57.2(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@10.1.0(jiti@2.6.1))
+ eslint-plugin-import: 2.32.0(eslint-import-resolver-typescript@4.4.4)(eslint@10.1.0(jiti@2.6.1))
eslint-plugin-import-x: 4.16.2(@typescript-eslint/utils@8.58.0(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.1.0(jiti@2.6.1))
transitivePeerDependencies:
- supports-color
@@ -13494,11 +13582,10 @@ snapshots:
- bluebird
- supports-color
- eslint-module-utils@2.12.1(@typescript-eslint/parser@8.57.2(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@10.1.0(jiti@2.6.1)):
+ eslint-module-utils@2.12.1(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@10.1.0(jiti@2.6.1)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.57.2(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
eslint: 10.1.0(jiti@2.6.1)
eslint-import-resolver-node: 0.3.9
eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import-x@4.16.2(@typescript-eslint/utils@8.58.0(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.1.0(jiti@2.6.1)))(eslint-plugin-import@2.32.0)(eslint@10.1.0(jiti@2.6.1))
@@ -13525,7 +13612,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.2(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@10.1.0(jiti@2.6.1)):
+ eslint-plugin-import@2.32.0(eslint-import-resolver-typescript@4.4.4)(eslint@10.1.0(jiti@2.6.1)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -13536,7 +13623,7 @@ snapshots:
doctrine: 2.1.0
eslint: 10.1.0(jiti@2.6.1)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.57.2(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@10.1.0(jiti@2.6.1))
+ eslint-module-utils: 2.12.1(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@10.1.0(jiti@2.6.1))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -13547,8 +13634,6 @@ snapshots:
semver: 6.3.1
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
- optionalDependencies:
- '@typescript-eslint/parser': 8.57.2(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -14445,9 +14530,9 @@ snapshots:
dependencies:
postcss: 8.5.8
- icu-minify@4.8.3:
+ icu-minify@4.9.1:
dependencies:
- '@formatjs/icu-messageformat-parser': 3.5.1
+ '@formatjs/icu-messageformat-parser': 3.5.3
ignore@5.3.2: {}
@@ -14494,12 +14579,11 @@ snapshots:
hasown: 2.0.2
side-channel: 1.1.0
- intl-messageformat@11.1.2:
+ intl-messageformat@11.2.0:
dependencies:
- '@formatjs/ecma402-abstract': 3.1.1
- '@formatjs/fast-memoize': 3.1.0
- '@formatjs/icu-messageformat-parser': 3.5.1
- tslib: 2.8.1
+ '@formatjs/ecma402-abstract': 3.2.0
+ '@formatjs/fast-memoize': 3.1.1
+ '@formatjs/icu-messageformat-parser': 3.5.3
ipaddr.js@1.9.1: {}
@@ -15509,20 +15593,20 @@ snapshots:
neo-async@2.6.2: {}
- next-intl-swc-plugin-extractor@4.8.3: {}
+ next-intl-swc-plugin-extractor@4.9.1: {}
- next-intl@4.8.3(next@16.1.7(@opentelemetry/api@1.9.0)(@playwright/test@1.58.2)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(typescript@5.9.3):
+ next-intl@4.9.1(next@16.1.7(@opentelemetry/api@1.9.0)(@playwright/test@1.58.2)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(typescript@5.9.3):
dependencies:
- '@formatjs/intl-localematcher': 0.8.1
+ '@formatjs/intl-localematcher': 0.8.2
'@parcel/watcher': 2.5.6
- '@swc/core': 1.15.18
- icu-minify: 4.8.3
+ '@swc/core': 1.15.24
+ icu-minify: 4.9.1
negotiator: 1.0.0
next: 16.1.7(@opentelemetry/api@1.9.0)(@playwright/test@1.58.2)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- next-intl-swc-plugin-extractor: 4.8.3
+ next-intl-swc-plugin-extractor: 4.9.1
po-parser: 2.1.1
react: 19.2.4
- use-intl: 4.8.3(react@19.2.4)
+ use-intl: 4.9.1(react@19.2.4)
optionalDependencies:
typescript: 5.9.3
transitivePeerDependencies:
@@ -15656,9 +15740,9 @@ snapshots:
object.groupby@1.0.3:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.9
define-properties: 1.2.1
- es-abstract: 1.24.1
+ es-abstract: 1.24.2
optional: true
object.values@1.2.1:
@@ -15823,8 +15907,6 @@ snapshots:
picomatch@2.3.2: {}
- picomatch@4.0.3: {}
-
picomatch@4.0.4: {}
pify@2.3.0: {}
@@ -17835,12 +17917,12 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.14
- use-intl@4.8.3(react@19.2.4):
+ use-intl@4.9.1(react@19.2.4):
dependencies:
- '@formatjs/fast-memoize': 3.1.0
+ '@formatjs/fast-memoize': 3.1.1
'@schummar/icu-type-parser': 1.21.5
- icu-minify: 4.8.3
- intl-messageformat: 11.1.2
+ icu-minify: 4.9.1
+ intl-messageformat: 11.2.0
react: 19.2.4
use-sidecar@1.1.3(@types/react@19.2.14)(react@19.2.4):
@@ -18050,6 +18132,17 @@ snapshots:
gopd: 1.2.0
has-tostringtag: 1.0.2
+ which-typed-array@1.1.20:
+ dependencies:
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.9
+ call-bound: 1.0.4
+ for-each: 0.3.5
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-tostringtag: 1.0.2
+ optional: true
+
which@1.3.1:
dependencies:
isexe: 2.0.0