From a6208ccb2fcd8b00385ce371552726c57ca7ae7b Mon Sep 17 00:00:00 2001 From: Daniel Williams Date: Sun, 10 May 2026 17:39:03 +0100 Subject: [PATCH 1/2] fix: address audit errors and use expo dev client --- .github/workflows/publish.yml | 8 + .gitignore | 4 +- .../.expo/prebuild/cached-packages.json | 4 + .../.rnstorybook/index.tsx | 2 + .../expo-new-wrapper-example/package.json | 15 +- .../.rnstorybook/index.tsx | 6 +- examples/expo-router-example/app.json | 9 +- examples/expo-router-example/package.json | 13 +- package.json | 14 - pnpm-lock.yaml | 1563 ++++++++--------- pnpm-workspace.yaml | 19 + 11 files changed, 784 insertions(+), 873 deletions(-) create mode 100644 examples/expo-new-wrapper-example/.expo/prebuild/cached-packages.json diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index defe3f2d07..65f62c4018 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -69,6 +69,10 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Update lockfile (next) + if: inputs.release_type == 'next' + run: pnpm install --no-frozen-lockfile + - name: Publish (next) if: inputs.release_type == 'next' run: pnpm changeset publish @@ -108,6 +112,10 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Update lockfile (latest) + if: inputs.release_type == 'latest' + run: pnpm install --no-frozen-lockfile + - name: Publish (latest) if: inputs.release_type == 'latest' run: pnpm changeset publish --tag latest diff --git a/.gitignore b/.gitignore index 3cdcb860a7..b809ac74c3 100644 --- a/.gitignore +++ b/.gitignore @@ -36,5 +36,5 @@ examples/expo-example/.maestro/output/* examples/expo-example/components/PerfTesting/*.stories.tsx examples/expo-example/.certs/ -examples/expo-example/android -examples/expo-example/ios +examples/**/android +examples/**/ios diff --git a/examples/expo-new-wrapper-example/.expo/prebuild/cached-packages.json b/examples/expo-new-wrapper-example/.expo/prebuild/cached-packages.json new file mode 100644 index 0000000000..522c0e90e1 --- /dev/null +++ b/examples/expo-new-wrapper-example/.expo/prebuild/cached-packages.json @@ -0,0 +1,4 @@ +{ + "dependencies": "2db65b8ae948675d3e3ad862f5e130503e69f47b", + "devDependencies": "f734d48b191d4a8111b07cda4e48396fbcdc84df" +} diff --git a/examples/expo-new-wrapper-example/.rnstorybook/index.tsx b/examples/expo-new-wrapper-example/.rnstorybook/index.tsx index df2acfac64..812f3824f7 100644 --- a/examples/expo-new-wrapper-example/.rnstorybook/index.tsx +++ b/examples/expo-new-wrapper-example/.rnstorybook/index.tsx @@ -4,6 +4,7 @@ // and ../README.md for the full picture. import AsyncStorage from '@react-native-async-storage/async-storage'; import { registerRootComponent } from 'expo'; +import { LiteUI } from '@storybook/react-native-ui-lite'; import { view } from './storybook.requires'; @@ -14,6 +15,7 @@ const StorybookUIRoot = view.getStorybookUI({ setItem: AsyncStorage.setItem, }, enableWebsockets: true, + CustomUIComponent: LiteUI, }); registerRootComponent(StorybookUIRoot); diff --git a/examples/expo-new-wrapper-example/package.json b/examples/expo-new-wrapper-example/package.json index 533478decb..8cbad9c6f3 100644 --- a/examples/expo-new-wrapper-example/package.json +++ b/examples/expo-new-wrapper-example/package.json @@ -4,13 +4,14 @@ "private": true, "main": "index.js", "scripts": { - "start": "expo start", - "ios": "expo start --ios", - "android": "expo start --android", - "storybook:ios": "STORYBOOK_ENABLED=true expo start --ios", - "storybook": "STORYBOOK_ENABLED=true expo start", - "storybook:android": "STORYBOOK_ENABLED=true expo start --android", - "check:types": "tsc --noEmit" + "start": "expo start --dev-client", + "ios": "expo run:ios", + "android": "expo run:android", + "storybook": "STORYBOOK_ENABLED=true expo start --dev-client", + "storybook:ios": "STORYBOOK_ENABLED=true expo run:ios", + "storybook:android": "STORYBOOK_ENABLED=true expo run:android", + "check:types": "tsc --noEmit", + "prebuild": "expo prebuild" }, "dependencies": { "@expo/metro-runtime": "~56.0.5", diff --git a/examples/expo-router-example/.rnstorybook/index.tsx b/examples/expo-router-example/.rnstorybook/index.tsx index 4da363cd80..272ea28d5e 100644 --- a/examples/expo-router-example/.rnstorybook/index.tsx +++ b/examples/expo-router-example/.rnstorybook/index.tsx @@ -2,7 +2,7 @@ // `withStorybook` swaps the resolver from the project's `index.js` to this // file, so it must register a root component itself. See ../metro.config.js // and ../README.md for the full picture. -import AsyncStorage from '@react-native-async-storage/async-storage'; +import Storage from 'expo-sqlite/kv-store'; import { registerRootComponent } from 'expo'; import { LiteUI } from '@storybook/react-native-ui-lite'; import { view } from './storybook.requires'; @@ -10,8 +10,8 @@ import { view } from './storybook.requires'; const StorybookUIRoot = view.getStorybookUI({ shouldPersistSelection: true, storage: { - getItem: AsyncStorage.getItem, - setItem: AsyncStorage.setItem, + getItem: (s) => Storage.getItem(s), + setItem: (s, v) => Storage.setItem(s, v), }, enableWebsockets: true, CustomUIComponent: LiteUI, diff --git a/examples/expo-router-example/app.json b/examples/expo-router-example/app.json index 1f717d90b0..ce36a73afa 100644 --- a/examples/expo-router-example/app.json +++ b/examples/expo-router-example/app.json @@ -9,7 +9,8 @@ "userInterfaceStyle": "automatic", "newArchEnabled": true, "ios": { - "supportsTablet": true + "supportsTablet": true, + "bundleIdentifier": "com.dannyhw.exporouterexample" }, "android": { "adaptiveIcon": { @@ -19,7 +20,8 @@ "monochromeImage": "./assets/images/android-icon-monochrome.png" }, "edgeToEdgeEnabled": true, - "predictiveBackGestureEnabled": false + "predictiveBackGestureEnabled": false, + "package": "com.dannyhw.exporouterexample" }, "web": { "output": "static", @@ -41,7 +43,8 @@ ], "expo-image", "expo-web-browser", - "expo-font" + "expo-font", + "expo-sqlite" ], "experiments": { "typedRoutes": true, diff --git a/examples/expo-router-example/package.json b/examples/expo-router-example/package.json index 510f40f012..7b4ac374ed 100644 --- a/examples/expo-router-example/package.json +++ b/examples/expo-router-example/package.json @@ -3,13 +3,16 @@ "main": "expo-router/entry", "version": "1.0.0", "scripts": { - "start": "expo start", + "start": "expo start --dev-client", "reset-project": "node ./scripts/reset-project.js", - "android": "expo start --android", - "ios": "expo start --ios", + "android": "expo run:android", + "ios": "expo run:ios", "web": "expo start --web", "lint": "expo lint", - "storybook": "STORYBOOK_ENABLED=true expo start" + "storybook": "STORYBOOK_ENABLED=true expo start --dev-client", + "storybook:ios": "STORYBOOK_ENABLED=true expo run:ios", + "storybook:android": "STORYBOOK_ENABLED=true expo run:android", + "prebuild": "expo prebuild" }, "dependencies": { "@expo/vector-icons": "^15.0.3", @@ -33,6 +36,7 @@ "expo-linking": "~56.0.4", "expo-router": "~56.1.1", "expo-splash-screen": "~56.0.4", + "expo-sqlite": "~56.0.3", "expo-status-bar": "~56.0.4", "expo-symbols": "~56.0.5", "expo-system-ui": "~56.0.4", @@ -44,6 +48,7 @@ "react-native-reanimated": "~4.3.0", "react-native-safe-area-context": "^5.7.0", "react-native-screens": "4.25.0-beta.3", + "react-native-svg": "15.15.4", "react-native-web": "^0.21.2", "react-native-worklets": "0.8.3", "storybook": "^10.3.2", diff --git a/package.json b/package.json index 0cd360b7b2..0f40ac615f 100644 --- a/package.json +++ b/package.json @@ -60,20 +60,6 @@ "engines": { "node": ">=26.0.0" }, - "pnpm": { - "overrides": { - "@types/markdown-it": "^14.0.1", - "jest-environment-jsdom>jsdom": "26.1.0", - "lodash": "^4.18.1", - "markdown-it": "^14.0.0", - "minimatch@3": "~3.1.3", - "react-docgen-typescript": "2.2.2", - "serialize-javascript": ">=7.0.3", - "svgo": "3.3.3", - "webpack-dev-server": "^5.2.2", - "zod-validation-error": "^4.0.0" - } - }, "collective": { "type": "opencollective", "url": "https://opencollective.com/storybook" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 82a5082a67..fed5cc176a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,6 +4,26 @@ settings: autoInstallPeers: true excludeLinksFromLockfile: false +overrides: + '@types/markdown-it': ^14.0.1 + '@babel/plugin-transform-modules-systemjs': 7.29.4 + '@tootallnate/once': 3.0.1 + '@xmldom/xmldom': 0.8.13 + fast-uri: 3.1.2 + fast-xml-builder: 1.2.0 + fast-xml-parser: 5.7.2 + follow-redirects: 1.16.0 + jest-environment-jsdom>jsdom: 26.1.0 + lodash: ^4.18.1 + markdown-it: ^14.0.0 + minimatch@3: ~3.1.3 + postcss: 8.5.14 + react-docgen-typescript: 2.2.2 + serialize-javascript: 7.0.5 + svgo: 3.3.3 + webpack-dev-server: ^5.2.2 + zod-validation-error: ^4.0.0 + importers: .: @@ -425,6 +445,9 @@ importers: expo-splash-screen: specifier: ~56.0.4 version: 56.0.4(expo@56.0.0-preview.7)(typescript@6.0.3) + expo-sqlite: + specifier: ~56.0.3 + version: 56.0.3(expo@56.0.0-preview.7)(react-native@0.85.3(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.3))(@react-native/jest-preset@0.85.3(@babel/core@7.29.0)(react@19.2.3))(@react-native/metro-config@0.85.3(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3) expo-status-bar: specifier: ~56.0.4 version: 56.0.4(expo@56.0.0-preview.7)(react-native@0.85.3(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.3))(@react-native/jest-preset@0.85.3(@babel/core@7.29.0)(react@19.2.3))(@react-native/metro-config@0.85.3(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3) @@ -458,6 +481,9 @@ importers: react-native-screens: specifier: 4.25.0-beta.3 version: 4.25.0-beta.3(react-native@0.85.3(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.3))(@react-native/jest-preset@0.85.3(@babel/core@7.29.0)(react@19.2.3))(@react-native/metro-config@0.85.3(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3) + react-native-svg: + specifier: 15.15.4 + version: 15.15.4(react-native@0.85.3(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.3))(@react-native/jest-preset@0.85.3(@babel/core@7.29.0)(react@19.2.3))(@react-native/metro-config@0.85.3(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3) react-native-web: specifier: ^0.21.2 version: 0.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) @@ -1105,6 +1131,9 @@ packages: resolution: {integrity: sha512-qmo1LXrNKLHvJE6mdQbLnsZAoZvj7VyF2ft4xmbSGWI2WWm87fx/CjUX4kEExt4y0a6T6nEts6ofpUfH5TEE1A==} engines: {node: '>= 14.0.0'} + '@asamuzakjp/css-color@3.2.0': + resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==} + '@babel/code-frame@7.29.0': resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==} engines: {node: '>=6.9.0'} @@ -1567,8 +1596,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-systemjs@7.29.0': - resolution: {integrity: sha512-PrujnVFbOdUpw4UHiVwKvKRLMMic8+eC0CuNlxjsyZUiBjhFdPsewdXCkveh2KqBA9/waD0W1b4hXSOBQJezpQ==} + '@babel/plugin-transform-modules-systemjs@7.29.4': + resolution: {integrity: sha512-N7QmZ0xRZfjHOfZeQLJjwgX2zS9pdGHSVl/cjSGlo4dXMqvurfxXDMKY4RqEKzPozV78VMcd0lxyG13mlbKc4w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1954,241 +1983,241 @@ packages: resolution: {integrity: sha512-isfLLwksH3yHkFXfCI2Gcaqg7wGGHZZwunoJzEZk0yKYIokgre6hYVFibKL3SYAoR1kBXova8LB+JoO5vZzi9w==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-cascade-layers@5.0.2': resolution: {integrity: sha512-nWBE08nhO8uWl6kSAeCx4im7QfVko3zLrtgWZY4/bP87zrSPpSyN/3W3TDqz1jJuH+kbKOHXg5rJnK+ZVYcFFg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-color-function-display-p3-linear@1.0.1': resolution: {integrity: sha512-E5qusdzhlmO1TztYzDIi8XPdPoYOjoTY6HBYBCYSj+Gn4gQRBlvjgPQXzfzuPQqt8EhkC/SzPKObg4Mbn8/xMg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-color-function@4.0.12': resolution: {integrity: sha512-yx3cljQKRaSBc2hfh8rMZFZzChaFgwmO2JfFgFr1vMcF3C/uyy5I4RFIBOIWGq1D+XbKCG789CGkG6zzkLpagA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-color-mix-function@3.0.12': resolution: {integrity: sha512-4STERZfCP5Jcs13P1U5pTvI9SkgLgfMUMhdXW8IlJWkzOOOqhZIjcNhWtNJZes2nkBDsIKJ0CJtFtuaZ00moag==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-color-mix-variadic-function-arguments@1.0.2': resolution: {integrity: sha512-rM67Gp9lRAkTo+X31DUqMEq+iK+EFqsidfecmhrteErxJZb6tUoJBVQca1Vn1GpDql1s1rD1pKcuYzMsg7Z1KQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-content-alt-text@2.0.8': resolution: {integrity: sha512-9SfEW9QCxEpTlNMnpSqFaHyzsiRpZ5J5+KqCu1u5/eEJAWsMhzT40qf0FIbeeglEvrGRMdDzAxMIz3wqoGSb+Q==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-contrast-color-function@2.0.12': resolution: {integrity: sha512-YbwWckjK3qwKjeYz/CijgcS7WDUCtKTd8ShLztm3/i5dhh4NaqzsbYnhm4bjrpFpnLZ31jVcbK8YL77z3GBPzA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-exponential-functions@2.0.9': resolution: {integrity: sha512-abg2W/PI3HXwS/CZshSa79kNWNZHdJPMBXeZNyPQFbbj8sKO3jXxOt/wF7juJVjyDTc6JrvaUZYFcSBZBhaxjw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-font-format-keywords@4.0.0': resolution: {integrity: sha512-usBzw9aCRDvchpok6C+4TXC57btc4bJtmKQWOHQxOVKen1ZfVqBUuCZ/wuqdX5GHsD0NRSr9XTP+5ID1ZZQBXw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-gamut-mapping@2.0.11': resolution: {integrity: sha512-fCpCUgZNE2piVJKC76zFsgVW1apF6dpYsqGyH8SIeCcM4pTEsRTWTLCaJIMKFEundsCKwY1rwfhtrio04RJ4Dw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-gradients-interpolation-method@5.0.12': resolution: {integrity: sha512-jugzjwkUY0wtNrZlFeyXzimUL3hN4xMvoPnIXxoZqxDvjZRiSh+itgHcVUWzJ2VwD/VAMEgCLvtaJHX+4Vj3Ow==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-hwb-function@4.0.12': resolution: {integrity: sha512-mL/+88Z53KrE4JdePYFJAQWFrcADEqsLprExCM04GDNgHIztwFzj0Mbhd/yxMBngq0NIlz58VVxjt5abNs1VhA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-ic-unit@4.0.4': resolution: {integrity: sha512-yQ4VmossuOAql65sCPppVO1yfb7hDscf4GseF0VCA/DTDaBc0Wtf8MTqVPfjGYlT5+2buokG0Gp7y0atYZpwjg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-initial@2.0.1': resolution: {integrity: sha512-L1wLVMSAZ4wovznquK0xmC7QSctzO4D0Is590bxpGqhqjboLXYA16dWZpfwImkdOgACdQ9PqXsuRroW6qPlEsg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-is-pseudo-class@5.0.3': resolution: {integrity: sha512-jS/TY4SpG4gszAtIg7Qnf3AS2pjcUM5SzxpApOrlndMeGhIbaTzWBzzP/IApXoNWEW7OhcjkRT48jnAUIFXhAQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-light-dark-function@2.0.11': resolution: {integrity: sha512-fNJcKXJdPM3Lyrbmgw2OBbaioU7yuKZtiXClf4sGdQttitijYlZMD5K7HrC/eF83VRWRrYq6OZ0Lx92leV2LFA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-logical-float-and-clear@3.0.0': resolution: {integrity: sha512-SEmaHMszwakI2rqKRJgE+8rpotFfne1ZS6bZqBoQIicFyV+xT1UF42eORPxJkVJVrH9C0ctUgwMSn3BLOIZldQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-logical-overflow@2.0.0': resolution: {integrity: sha512-spzR1MInxPuXKEX2csMamshR4LRaSZ3UXVaRGjeQxl70ySxOhMpP2252RAFsg8QyyBXBzuVOOdx1+bVO5bPIzA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-logical-overscroll-behavior@2.0.0': resolution: {integrity: sha512-e/webMjoGOSYfqLunyzByZj5KKe5oyVg/YSbie99VEaSDE2kimFm0q1f6t/6Jo+VVCQ/jbe2Xy+uX+C4xzWs4w==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-logical-resize@3.0.0': resolution: {integrity: sha512-DFbHQOFW/+I+MY4Ycd/QN6Dg4Hcbb50elIJCfnwkRTCX05G11SwViI5BbBlg9iHRl4ytB7pmY5ieAFk3ws7yyg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-logical-viewport-units@3.0.4': resolution: {integrity: sha512-q+eHV1haXA4w9xBwZLKjVKAWn3W2CMqmpNpZUk5kRprvSiBEGMgrNH3/sJZ8UA3JgyHaOt3jwT9uFa4wLX4EqQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-media-minmax@2.0.9': resolution: {integrity: sha512-af9Qw3uS3JhYLnCbqtZ9crTvvkR+0Se+bBqSr7ykAnl9yKhk6895z9rf+2F4dClIDJWxgn0iZZ1PSdkhrbs2ig==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.5': resolution: {integrity: sha512-zhAe31xaaXOY2Px8IYfoVTB3wglbJUVigGphFLj6exb7cjZRH9A6adyE22XfFK3P2PzwRk0VDeTJmaxpluyrDg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-nested-calc@4.0.0': resolution: {integrity: sha512-jMYDdqrQQxE7k9+KjstC3NbsmC063n1FTPLCgCRS2/qHUbHM0mNy9pIn4QIiQGs9I/Bg98vMqw7mJXBxa0N88A==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-normalize-display-values@4.0.1': resolution: {integrity: sha512-TQUGBuRvxdc7TgNSTevYqrL8oItxiwPDixk20qCB5me/W8uF7BPbhRrAvFuhEoywQp/woRsUZ6SJ+sU5idZAIA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-oklab-function@4.0.12': resolution: {integrity: sha512-HhlSmnE1NKBhXsTnNGjxvhryKtO7tJd1w42DKOGFD6jSHtYOrsJTQDKPMwvOfrzUAk8t7GcpIfRyM7ssqHpFjg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-position-area-property@1.0.0': resolution: {integrity: sha512-fUP6KR8qV2NuUZV3Cw8itx0Ep90aRjAZxAEzC3vrl6yjFv+pFsQbR18UuQctEKmA72K9O27CoYiKEgXxkqjg8Q==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-progressive-custom-properties@4.2.1': resolution: {integrity: sha512-uPiiXf7IEKtUQXsxu6uWtOlRMXd2QWWy5fhxHDnPdXKCQckPP3E34ZgDoZ62r2iT+UOgWsSbM4NvHE5m3mAEdw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-property-rule-prelude-list@1.0.0': resolution: {integrity: sha512-IxuQjUXq19fobgmSSvUDO7fVwijDJaZMvWQugxfEUxmjBeDCVaDuMpsZ31MsTm5xbnhA+ElDi0+rQ7sQQGisFA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-random-function@2.0.1': resolution: {integrity: sha512-q+FQaNiRBhnoSNo+GzqGOIBKoHQ43lYz0ICrV+UudfWnEF6ksS6DsBIJSISKQT2Bvu3g4k6r7t0zYrk5pDlo8w==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-relative-color-syntax@3.0.12': resolution: {integrity: sha512-0RLIeONxu/mtxRtf3o41Lq2ghLimw0w9ByLWnnEVuy89exmEEq8bynveBxNW3nyHqLAFEeNtVEmC1QK9MZ8Huw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-scope-pseudo-class@4.0.1': resolution: {integrity: sha512-IMi9FwtH6LMNuLea1bjVMQAsUhFxJnyLSgOp/cpv5hrzWmrUYU5fm0EguNDIIOHUqzXode8F/1qkC/tEo/qN8Q==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-sign-functions@1.1.4': resolution: {integrity: sha512-P97h1XqRPcfcJndFdG95Gv/6ZzxUBBISem0IDqPZ7WMvc/wlO+yU0c5D/OCpZ5TJoTt63Ok3knGk64N+o6L2Pg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-stepped-value-functions@4.0.9': resolution: {integrity: sha512-h9btycWrsex4dNLeQfyU3y3w40LMQooJWFMm/SK9lrKguHDcFl4VMkncKKoXi2z5rM9YGWbUQABI8BT2UydIcA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-syntax-descriptor-syntax-production@1.0.1': resolution: {integrity: sha512-GneqQWefjM//f4hJ/Kbox0C6f2T7+pi4/fqTqOFGTL3EjnvOReTqO1qUQ30CaUjkwjYq9qZ41hzarrAxCc4gow==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-system-ui-font-family@1.0.0': resolution: {integrity: sha512-s3xdBvfWYfoPSBsikDXbuorcMG1nN1M6GdU0qBsGfcmNR0A/qhloQZpTxjA3Xsyrk1VJvwb2pOfiOT3at/DuIQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-text-decoration-shorthand@4.0.3': resolution: {integrity: sha512-KSkGgZfx0kQjRIYnpsD7X2Om9BUXX/Kii77VBifQW9Ih929hK0KNjVngHDH0bFB9GmfWcR9vJYJJRvw/NQjkrA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-trigonometric-functions@4.0.9': resolution: {integrity: sha512-Hnh5zJUdpNrJqK9v1/E3BbrQhaDTj5YiX7P61TOvUhoDHnUmsNNxcDAgkQ32RrcWx9GVUvfUNPcUkn8R3vIX6A==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/postcss-unset-value@4.0.0': resolution: {integrity: sha512-cBz3tOCI5Fw6NIFEwU3RiwK6mn3nKegjpJuzCndoGq3BZPkUjnsq7uQmIeMNeMbMk7YD2MfKcgCpZwX5jyXqCA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@csstools/selector-resolve-nested@3.1.0': resolution: {integrity: sha512-mf1LEW0tJLKfWyvn5KdDrhpxHyuxpbNwTIwOYLIvsTffeyOf85j5oIzfG0yosxDgx/sswlqBnESYUcQH0vgZ0g==} @@ -2206,7 +2235,7 @@ packages: resolution: {integrity: sha512-5VdOr0Z71u+Yp3ozOx8T11N703wIFGVRgOWbOZMKgglPJsWA54MRIoMNVMa7shUToIhx5J8vX4sOZgD2XiihiQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 '@dannyhw/rozenite-storybook@0.0.2': resolution: {integrity: sha512-VADdXYGpi0LAWxPUUOkJ8deKBAJFfh2HF3OH9oPNB4eTa3rmRkg33bELBT7u2nQe8RlfUMzLi908fIl64+ijfw==} @@ -4912,10 +4941,6 @@ packages: '@tmcp/auth': optional: true - '@tootallnate/once@2.0.1': - resolution: {integrity: sha512-HqmEUIGRJ5fSXchkVgR5F7qn48bDBzv0kWj/Kfu5e6uci4UlEeng4331LnBkWffb++Ei3FOVLxo8JJWMFBDMeQ==} - engines: {node: '>= 10'} - '@tybys/wasm-util@0.10.1': resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} @@ -5457,10 +5482,9 @@ packages: '@webassemblyjs/wast-printer@1.14.1': resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==} - '@xmldom/xmldom@0.8.12': - resolution: {integrity: sha512-9k/gHF6n/pAi/9tqr3m3aqkuiNosYTurLLUtc7xQ9sxB/wm7WPygCv8GYa6mS0fLJEHhqMC1ATYhz++U/lRHqg==} + '@xmldom/xmldom@0.8.13': + resolution: {integrity: sha512-KRYzxepc14G/CEpEGc3Yn+JKaAeT63smlDr+vjB8jRfgTBBI9wRj/nkQEO+ucV8p8I9bfKLWp37uHgFrbntPvw==} engines: {node: '>=10.0.0'} - deprecated: this version has critical issues, please update to the latest version '@xtuc/ieee754@1.2.0': resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} @@ -5468,10 +5492,6 @@ packages: '@xtuc/long@4.2.2': resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} - abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} - deprecated: Use your platform's native atob() and btoa() methods instead - abort-controller@3.0.0: resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} engines: {node: '>=6.5'} @@ -5487,9 +5507,6 @@ packages: resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==} engines: {node: '>= 0.6'} - acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} - acorn-import-phases@1.0.4: resolution: {integrity: sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==} engines: {node: '>=10.13.0'} @@ -5514,10 +5531,6 @@ packages: resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} engines: {node: '>= 10.0.0'} - agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} - agent-base@7.1.4: resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==} engines: {node: '>= 14'} @@ -5731,9 +5744,6 @@ packages: async-limiter@1.0.1: resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} - asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - atomic-sleep@1.0.0: resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} engines: {node: '>=8.0.0'} @@ -5743,7 +5753,7 @@ packages: engines: {node: ^10 || ^12 || >=14} hasBin: true peerDependencies: - postcss: ^8.1.0 + postcss: 8.5.14 available-typed-arrays@1.0.7: resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} @@ -6225,10 +6235,6 @@ packages: resolution: {integrity: sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ==} engines: {node: '>=10'} - combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} - comma-separated-tokens@2.0.3: resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} @@ -6406,7 +6412,7 @@ packages: resolution: {integrity: sha512-jf+twWGDf6LDoXDUode+nc7ZlrqfaNphrBIBrcmeP3D8yw1uPaix1gCC8LUQUGQ6CycuK2opkbFFWFuq/a94ag==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 css-color-keywords@1.0.0: resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} @@ -6416,13 +6422,13 @@ packages: resolution: {integrity: sha512-LTuzjPoyA2vMGKKcaOqKSp7Ub2eGrNfKiZH4LpezxpNrsICGCSFvsQOI29psISxNZtaXibkC2CXzrQ5enMeGGw==} engines: {node: ^14 || ^16 || >=18} peerDependencies: - postcss: ^8.0.9 + postcss: 8.5.14 css-has-pseudo@7.0.3: resolution: {integrity: sha512-oG+vKuGyqe/xvEMoxAQrhi7uY16deJR3i7wwhBerVrGQKSqUC5GiOVxTpM9F9B9hw0J+eKeOWLH7E9gZ1Dr5rA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 css-in-js-utils@3.1.0: resolution: {integrity: sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==} @@ -6468,7 +6474,7 @@ packages: resolution: {integrity: sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 css-select@4.3.0: resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} @@ -6510,46 +6516,40 @@ packages: resolution: {integrity: sha512-Nhao7eD8ph2DoHolEzQs5CfRpiEP0xa1HBdnFZ82kvqdmbwVBUr2r1QuQ4t1pi+D1ZpqpcO4T+wy/7RxzJ/WPQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 cssnano-preset-default@6.1.2: resolution: {integrity: sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 cssnano-utils@4.0.2: resolution: {integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 cssnano@6.1.2: resolution: {integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 csso@5.0.5: resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} - cssom@0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} - - cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} - - cssstyle@2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} - engines: {node: '>=8'} + cssstyle@4.6.0: + resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==} + engines: {node: '>=18'} csstype@3.2.3: resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==} - data-urls@3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} - engines: {node: '>=12'} + data-urls@5.0.0: + resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} + engines: {node: '>=18'} data-view-buffer@1.0.2: resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} @@ -6675,10 +6675,6 @@ packages: defu@6.1.7: resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==} - delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} - depd@1.1.2: resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} engines: {node: '>= 0.6'} @@ -6762,11 +6758,6 @@ packages: domelementtype@2.3.0: resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} - deprecated: Use your platform's native DOMException instead - domhandler@4.3.1: resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} engines: {node: '>= 4'} @@ -6860,9 +6851,6 @@ packages: resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} engines: {node: '>=8.6'} - entities@2.0.3: - resolution: {integrity: sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==} - entities@2.2.0: resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} @@ -6977,11 +6965,6 @@ packages: resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} engines: {node: '>=12'} - escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true - eslint-config-expo@56.0.2: resolution: {integrity: sha512-bLc6sF6HElMihD3u4q1eHeZifAxD2QmD5aZf3iwCeL0ZSGjOt4ae4wHZ1A4pqkAqEVbn5sRuMqEii3U4SFVZ9g==} peerDependencies: @@ -7504,15 +7487,11 @@ packages: fast-querystring@1.1.2: resolution: {integrity: sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==} - fast-uri@3.1.0: - resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==} - - fast-xml-builder@1.1.5: - resolution: {integrity: sha512-4TJn/8FKLeslLAH3dnohXqE3QSoxkhvaMzepOIZytwJXZO69Bfz0HBdDHzOTOon6G59Zrk6VQ2bEiv1t61rfkA==} + fast-uri@3.1.2: + resolution: {integrity: sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==} - fast-xml-parser@4.5.6: - resolution: {integrity: sha512-Yd4vkROfJf8AuJrDIVMVmYfULKmIJszVsMv7Vo71aocsKgFxpdlpSHXSaInvyYfgw2PRuObQSW2GFpVMUjxu9A==} - hasBin: true + fast-xml-builder@1.2.0: + resolution: {integrity: sha512-00aAWieqff+ZJhsXA4g1g7M8k+7AYoMUUHF+/zFb5U6Uv/P0Vl4QZo84/IcufzYalLuEj9928bXN9PbbFzMF0Q==} fast-xml-parser@5.7.2: resolution: {integrity: sha512-P7oW7tLbYnhOLQk/Gv7cZgzgMPP/XN03K02/Jy6Y/NHzyIAIpxuZIM/YqAkfiXFPxA2CTm7NtCijK9EDu09u2w==} @@ -7644,8 +7623,8 @@ packages: engines: {node: '>=4'} hasBin: true - follow-redirects@1.15.11: - resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==} + follow-redirects@1.16.0: + resolution: {integrity: sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==} engines: {node: '>=4.0'} peerDependencies: debug: '*' @@ -7664,10 +7643,6 @@ packages: resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==} engines: {node: '>= 14.17'} - form-data@4.0.5: - resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==} - engines: {node: '>= 6'} - format@0.2.2: resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} engines: {node: '>=0.4.x'} @@ -7976,9 +7951,9 @@ packages: hpack.js@2.1.6: resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} - html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} + html-encoding-sniffer@4.0.0: + resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} + engines: {node: '>=18'} html-entities@2.6.0: resolution: {integrity: sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==} @@ -8038,9 +8013,9 @@ packages: http-parser-js@0.5.10: resolution: {integrity: sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==} - http-proxy-agent@5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} + http-proxy-agent@7.0.2: + resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} + engines: {node: '>= 14'} http-proxy-middleware@2.0.9: resolution: {integrity: sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==} @@ -8063,10 +8038,6 @@ packages: resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==} engines: {node: '>=10.19.0'} - https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} - https-proxy-agent@7.0.6: resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} engines: {node: '>= 14'} @@ -8102,7 +8073,7 @@ packages: resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: - postcss: ^8.1.0 + postcss: 8.5.14 ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} @@ -8697,11 +8668,11 @@ packages: jsc-safe-url@0.2.4: resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==} - jsdom@20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} - engines: {node: '>=14'} + jsdom@26.1.0: + resolution: {integrity: sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==} + engines: {node: '>=18'} peerDependencies: - canvas: ^2.5.0 + canvas: ^3.0.0 peerDependenciesMeta: canvas: optional: true @@ -8878,8 +8849,8 @@ packages: lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - linkify-it@2.2.0: - resolution: {integrity: sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==} + linkify-it@5.0.0: + resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} loader-runner@4.3.1: resolution: {integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==} @@ -9003,8 +8974,8 @@ packages: resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} engines: {node: '>=16'} - markdown-it@10.0.0: - resolution: {integrity: sha512-YWOP1j7UbDNz+TumYP1kpwnP0aEa711cJjrAQrzd0UXlbJfc5aAq0F/PZHjiioqDC1NKgvIMX+o+9Bk7yuM2dg==} + markdown-it@14.1.1: + resolution: {integrity: sha512-BuU2qnTti9YKgK5N+IeMubp14ZUKUUw7yeJbkjtosvHiP0AZ5c8IAgEMk79D0eC8F23r4Ac/q8cAIFdm2FtyoA==} hasBin: true markdown-table@2.0.0: @@ -9083,8 +9054,8 @@ packages: mdn-data@2.0.30: resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} - mdurl@1.0.1: - resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} + mdurl@2.0.0: + resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} media-typer@0.3.0: resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} @@ -9984,353 +9955,353 @@ packages: resolution: {integrity: sha512-Uai+SupNSqzlschRyNx3kbCTWgY/2hcwtHEI/ej2LJWc9JJ77qKgGptd8DHwY1mXtZ7Aoh4z4yxfwMBue9eNgw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-calc@9.0.1: resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.2 + postcss: 8.5.14 postcss-clamp@4.1.0: resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} engines: {node: '>=7.6.0'} peerDependencies: - postcss: ^8.4.6 + postcss: 8.5.14 postcss-color-functional-notation@7.0.12: resolution: {integrity: sha512-TLCW9fN5kvO/u38/uesdpbx3e8AkTYhMvDZYa9JpmImWuTE99bDQ7GU7hdOADIZsiI9/zuxfAJxny/khknp1Zw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-color-hex-alpha@10.0.0: resolution: {integrity: sha512-1kervM2cnlgPs2a8Vt/Qbe5cQ++N7rkYo/2rz2BkqJZIHQwaVuJgQH38REHrAi4uM0b1fqxMkWYmese94iMp3w==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-color-rebeccapurple@10.0.0: resolution: {integrity: sha512-JFta737jSP+hdAIEhk1Vs0q0YF5P8fFcj+09pweS8ktuGuZ8pPlykHsk6mPxZ8awDl4TrcxUqJo9l1IhVr/OjQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-colormin@6.1.0: resolution: {integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-convert-values@6.1.0: resolution: {integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-custom-media@11.0.6: resolution: {integrity: sha512-C4lD4b7mUIw+RZhtY7qUbf4eADmb7Ey8BFA2px9jUbwg7pjTZDl4KY4bvlUV+/vXQvzQRfiGEVJyAbtOsCMInw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-custom-properties@14.0.6: resolution: {integrity: sha512-fTYSp3xuk4BUeVhxCSJdIPhDLpJfNakZKoiTDx7yRGCdlZrSJR7mWKVOBS4sBF+5poPQFMj2YdXx1VHItBGihQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-custom-selectors@8.0.5: resolution: {integrity: sha512-9PGmckHQswiB2usSO6XMSswO2yFWVoCAuih1yl9FVcwkscLjRKjwsjM3t+NIWpSU2Jx3eOiK2+t4vVTQaoCHHg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-dir-pseudo-class@9.0.1: resolution: {integrity: sha512-tRBEK0MHYvcMUrAuYMEOa0zg9APqirBcgzi6P21OhxtJyJADo/SWBwY1CAwEohQ/6HDaa9jCjLRG7K3PVQYHEA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-discard-comments@6.0.2: resolution: {integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-discard-duplicates@6.0.3: resolution: {integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-discard-empty@6.0.3: resolution: {integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-discard-overridden@6.0.2: resolution: {integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-discard-unused@6.0.5: resolution: {integrity: sha512-wHalBlRHkaNnNwfC8z+ppX57VhvS+HWgjW508esjdaEYr3Mx7Gnn2xA4R/CKf5+Z9S5qsqC+Uzh4ueENWwCVUA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-double-position-gradients@6.0.4: resolution: {integrity: sha512-m6IKmxo7FxSP5nF2l63QbCC3r+bWpFUWmZXZf096WxG0m7Vl1Q1+ruFOhpdDRmKrRS+S3Jtk+TVk/7z0+BVK6g==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-focus-visible@10.0.1: resolution: {integrity: sha512-U58wyjS/I1GZgjRok33aE8juW9qQgQUNwTSdxQGuShHzwuYdcklnvK/+qOWX1Q9kr7ysbraQ6ht6r+udansalA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-focus-within@9.0.1: resolution: {integrity: sha512-fzNUyS1yOYa7mOjpci/bR+u+ESvdar6hk8XNK/TRR0fiGTp2QT5N+ducP0n3rfH/m9I7H/EQU6lsa2BrgxkEjw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-font-variant@5.0.0: resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} peerDependencies: - postcss: ^8.1.0 + postcss: 8.5.14 postcss-gap-properties@6.0.0: resolution: {integrity: sha512-Om0WPjEwiM9Ru+VhfEDPZJAKWUd0mV1HmNXqp2C29z80aQ2uP9UVhLc7e3aYMIor/S5cVhoPgYQ7RtfeZpYTRw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-image-set-function@7.0.0: resolution: {integrity: sha512-QL7W7QNlZuzOwBTeXEmbVckNt1FSmhQtbMRvGGqqU4Nf4xk6KUEQhAoWuMzwbSv5jxiRiSZ5Tv7eiDB9U87znA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-lab-function@7.0.12: resolution: {integrity: sha512-tUcyRk1ZTPec3OuKFsqtRzW2Go5lehW29XA21lZ65XmzQkz43VY2tyWEC202F7W3mILOjw0voOiuxRGTsN+J9w==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-loader@7.3.4: resolution: {integrity: sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==} engines: {node: '>= 14.15.0'} peerDependencies: - postcss: ^7.0.0 || ^8.0.1 + postcss: 8.5.14 webpack: ^5.0.0 postcss-logical@8.1.0: resolution: {integrity: sha512-pL1hXFQ2fEXNKiNiAgtfA005T9FBxky5zkX6s4GZM2D8RkVgRqz3f4g1JUoq925zXv495qk8UNldDwh8uGEDoA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-merge-idents@6.0.3: resolution: {integrity: sha512-1oIoAsODUs6IHQZkLQGO15uGEbK3EAl5wi9SS8hs45VgsxQfMnxvt+L+zIr7ifZFIH14cfAeVe2uCTa+SPRa3g==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-merge-longhand@6.0.5: resolution: {integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-merge-rules@6.1.1: resolution: {integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-minify-font-values@6.1.0: resolution: {integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-minify-gradients@6.0.3: resolution: {integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-minify-params@6.1.0: resolution: {integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-minify-selectors@6.0.4: resolution: {integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-modules-extract-imports@3.1.0: resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: - postcss: ^8.1.0 + postcss: 8.5.14 postcss-modules-local-by-default@4.2.0: resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: - postcss: ^8.1.0 + postcss: 8.5.14 postcss-modules-scope@3.2.1: resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: - postcss: ^8.1.0 + postcss: 8.5.14 postcss-modules-values@4.0.0: resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: - postcss: ^8.1.0 + postcss: 8.5.14 postcss-nesting@13.0.2: resolution: {integrity: sha512-1YCI290TX+VP0U/K/aFxzHzQWHWURL+CtHMSbex1lCdpXD1SoR2sYuxDu5aNI9lPoXpKTCggFZiDJbwylU0LEQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-normalize-charset@6.0.2: resolution: {integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-normalize-display-values@6.0.2: resolution: {integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-normalize-positions@6.0.2: resolution: {integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-normalize-repeat-style@6.0.2: resolution: {integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-normalize-string@6.0.2: resolution: {integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-normalize-timing-functions@6.0.2: resolution: {integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-normalize-unicode@6.1.0: resolution: {integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-normalize-url@6.0.2: resolution: {integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-normalize-whitespace@6.0.2: resolution: {integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-opacity-percentage@3.0.0: resolution: {integrity: sha512-K6HGVzyxUxd/VgZdX04DCtdwWJ4NGLG212US4/LA1TLAbHgmAsTWVR86o+gGIbFtnTkfOpb9sCRBx8K7HO66qQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-ordered-values@6.0.2: resolution: {integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-overflow-shorthand@6.0.0: resolution: {integrity: sha512-BdDl/AbVkDjoTofzDQnwDdm/Ym6oS9KgmO7Gr+LHYjNWJ6ExORe4+3pcLQsLA9gIROMkiGVjjwZNoL/mpXHd5Q==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-page-break@3.0.4: resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} peerDependencies: - postcss: ^8 + postcss: 8.5.14 postcss-place@10.0.0: resolution: {integrity: sha512-5EBrMzat2pPAxQNWYavwAfoKfYcTADJ8AXGVPcUZ2UkNloUTWzJQExgrzrDkh3EKzmAx1evfTAzF9I8NGcc+qw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-preset-env@10.6.1: resolution: {integrity: sha512-yrk74d9EvY+W7+lO9Aj1QmjWY9q5NsKjK2V9drkOPZB/X6KZ0B3igKsHUYakb7oYVhnioWypQX3xGuePf89f3g==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-pseudo-class-any-link@10.0.1: resolution: {integrity: sha512-3el9rXlBOqTFaMFkWDOkHUTQekFIYnaQY55Rsp8As8QQkpiSgIYEcF/6Ond93oHiDsGb4kad8zjt+NPlOC1H0Q==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-reduce-idents@6.0.3: resolution: {integrity: sha512-G3yCqZDpsNPoQgbDUy3T0E6hqOQ5xigUtBQyrmq3tn2GxlyiL0yyl7H+T8ulQR6kOcHJ9t7/9H4/R2tv8tJbMA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-reduce-initial@6.1.0: resolution: {integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-reduce-transforms@6.0.2: resolution: {integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-replace-overflow-wrap@4.0.0: resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} peerDependencies: - postcss: ^8.0.3 + postcss: 8.5.14 postcss-selector-not@8.0.1: resolution: {integrity: sha512-kmVy/5PYVb2UOhy0+LqUYAhKj7DUGDpSWa5LZqlkWJaaAV+dxxsOG3+St0yNLu6vsKD7Dmqx+nWQt0iil89+WA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.14 postcss-selector-parser@6.1.2: resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} @@ -10344,19 +10315,19 @@ packages: resolution: {integrity: sha512-AZ5fDMLD8SldlAYlvi8NIqo0+Z8xnXU2ia0jxmuhxAU+Lqt9K+AlmLNJ/zWEnE9x+Zx3qL3+1K20ATgNOr3fAA==} engines: {node: '>=14.0.0'} peerDependencies: - postcss: ^8.4.23 + postcss: 8.5.14 postcss-svgo@6.0.3: resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==} engines: {node: ^14 || ^16 || >= 18} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-unique-selectors@6.0.4: resolution: {integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} @@ -10365,14 +10336,10 @@ packages: resolution: {integrity: sha512-5BxW9l1evPB/4ZIc+2GobEBoKC+h8gPGCMi+jxsYvd2x0mjq7wazk6DrP71pStqxE9Foxh5TVnonbWpFZzXaYg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 - - postcss@8.4.49: - resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} - engines: {node: ^10 || ^12 || >=14} + postcss: 8.5.14 - postcss@8.5.9: - resolution: {integrity: sha512-7a70Nsot+EMX9fFU3064K/kdHWZqGVY+BADLyXc8Dfv+mTLLVl6JzJpPaCZ2kQL9gIJvKXSLMHhqdRRjwQeFtw==} + postcss@8.5.14: + resolution: {integrity: sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==} engines: {node: ^10 || ^12 || >=14} prelude-ls@1.2.1: @@ -10465,8 +10432,9 @@ packages: resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} engines: {node: '>= 0.10'} - psl@1.15.0: - resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} + punycode.js@2.3.1: + resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} + engines: {node: '>=6'} punycode@2.3.1: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} @@ -10504,9 +10472,6 @@ packages: resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} engines: {node: '>=6'} - querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} - queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -10520,9 +10485,6 @@ packages: resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} engines: {node: '>=10'} - randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} - range-parser@1.2.0: resolution: {integrity: sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==} engines: {node: '>= 0.6'} @@ -10551,11 +10513,6 @@ packages: react-devtools-core@6.1.5: resolution: {integrity: sha512-ePrwPfxAnB+7hgnEr8vpKxL9cmnp7F322t8oqcPshbIQQhDKgFDW4tjhF2wjVbdXF9O/nyuy3sQWd9JGpiLPvA==} - react-docgen-typescript@1.22.0: - resolution: {integrity: sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==} - peerDependencies: - typescript: '>= 3.x' - react-docgen-typescript@2.2.2: resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} peerDependencies: @@ -11073,6 +11030,9 @@ packages: resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==} engines: {node: '>= 18'} + rrweb-cssom@0.8.0: + resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==} + rtlcss@4.3.0: resolution: {integrity: sha512-FI+pHEn7Wc4NqKXMXFM+VAYKEj/mRIcW4h24YVwVtyjI+EqGrLc2Hx/Ny0lrZ21cBWU2goLy36eqMcNj3AQJig==} engines: {node: '>=12.0.0'} @@ -11181,8 +11141,9 @@ packages: resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==} engines: {node: '>=0.10.0'} - serialize-javascript@6.0.2: - resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + serialize-javascript@7.0.5: + resolution: {integrity: sha512-F4LcB0UqUl1zErq+1nYEEzSHJnIwb3AF2XWB94b+afhrekOUijwooAYqFyRbjYkm2PAKBabx6oYv/xDxNi8IBw==} + engines: {node: '>=20.0.0'} serve-handler@6.1.7: resolution: {integrity: sha512-CinAq1xWb0vR3twAv9evEU8cNWkXCb9kd5ePAHUKJBkOsUpR1wt/CvGdeca7vqumL1U5cSaeVQ6zZMxiJ3yWsg==} @@ -11589,9 +11550,6 @@ packages: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} - strnum@1.1.2: - resolution: {integrity: sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==} - strnum@2.2.3: resolution: {integrity: sha512-oKx6RUCuHfT3oyVjtnrmn19H1SiCqgJSg+54XqURKp5aCMbrXrhLjRN9TjuwMjiYstZ0MzDrHqkGZ5dFTKd+zg==} @@ -11608,7 +11566,7 @@ packages: resolution: {integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.14 styleq@0.1.3: resolution: {integrity: sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==} @@ -11759,6 +11717,13 @@ packages: resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==} engines: {node: '>=14.0.0'} + tldts-core@6.1.86: + resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==} + + tldts@6.1.86: + resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==} + hasBin: true + tmcp@1.19.3: resolution: {integrity: sha512-plz/TLKNFrdfQN32LjCTN6ULy6pynfGPgHcU7KGCI5dBrxQ9Mub99SmcYuzxEkLjJooQuOD3gosSwZEl1htOtw==} @@ -11784,16 +11749,16 @@ packages: resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} engines: {node: '>=6'} - tough-cookie@4.1.4: - resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} - engines: {node: '>=6'} + tough-cookie@5.1.2: + resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==} + engines: {node: '>=16'} tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - tr46@3.0.0: - resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} - engines: {node: '>=12'} + tr46@5.1.1: + resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==} + engines: {node: '>=18'} tree-dump@1.1.0: resolution: {integrity: sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA==} @@ -11951,8 +11916,8 @@ packages: resolution: {integrity: sha512-LbBDqdIC5s8iROCUjMbW1f5dJQTEFB1+KO9ogbvlb3nm9n4YHa5p4KTvFPWvh2Hs8gZMBuiB1/8+pdfe/tDPug==} hasBin: true - uc.micro@1.0.6: - resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} + uc.micro@2.1.0: + resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} unbox-primitive@1.1.0: resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} @@ -12017,10 +11982,6 @@ packages: resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} engines: {node: '>= 4.0.0'} - universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} - universalify@2.0.1: resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} engines: {node: '>= 10.0.0'} @@ -12062,9 +12023,6 @@ packages: file-loader: optional: true - url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} - use-callback-ref@1.3.3: resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==} engines: {node: '>=10'} @@ -12232,9 +12190,9 @@ packages: vlq@1.0.1: resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==} - w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} + w3c-xmlserializer@5.0.0: + resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} + engines: {node: '>=18'} walker@1.0.8: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} @@ -12332,17 +12290,17 @@ packages: resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} engines: {node: '>=0.8.0'} - whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} + whatwg-encoding@3.1.1: + resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} + engines: {node: '>=18'} deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation whatwg-fetch@3.6.20: resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} - whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} + whatwg-mimetype@4.0.0: + resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} + engines: {node: '>=18'} whatwg-url-minimum@0.1.2: resolution: {integrity: sha512-XPEm0XFQWNVG292lII1PrRRJl3sItrs7CettZ4ncYxuDVpLyy+NwlGyut2hXI0JswcJUxeCH+CyOJK0ZzAXD6A==} @@ -12351,9 +12309,9 @@ packages: resolution: {integrity: sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==} engines: {node: '>=10'} - whatwg-url@11.0.0: - resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} - engines: {node: '>=12'} + whatwg-url@14.2.0: + resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==} + engines: {node: '>=18'} whatwg-url@5.0.0: resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} @@ -12466,9 +12424,13 @@ packages: resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==} hasBin: true - xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} + xml-name-validator@5.0.0: + resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} + engines: {node: '>=18'} + + xml-naming@0.1.0: + resolution: {integrity: sha512-k8KO9hrMyNk6tUWqUfkTEZbezRRpONVOzUTnc97VnCvyj6Tf9lyUR9EDAIeiVLv56jsMcoXEwjW8Kv5yPY52lw==} + engines: {node: '>=16.0.0'} xml2js@0.6.0: resolution: {integrity: sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==} @@ -12677,6 +12639,14 @@ snapshots: dependencies: '@algolia/client-common': 5.50.1 + '@asamuzakjp/css-color@3.2.0': + dependencies: + '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 + lru-cache: 10.4.3 + '@babel/code-frame@7.29.0': dependencies: '@babel/helper-validator-identifier': 7.28.5 @@ -13203,7 +13173,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-systemjs@7.29.0(@babel/core@7.29.0)': + '@babel/plugin-transform-modules-systemjs@7.29.4(@babel/core@7.29.0)': dependencies: '@babel/core': 7.29.0 '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0) @@ -13476,7 +13446,7 @@ snapshots: '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.29.0) '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.29.0) '@babel/plugin-transform-modules-commonjs': 7.28.6(@babel/core@7.29.0) - '@babel/plugin-transform-modules-systemjs': 7.29.0(@babel/core@7.29.0) + '@babel/plugin-transform-modules-systemjs': 7.29.4(@babel/core@7.29.0) '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.29.0) '@babel/plugin-transform-named-capturing-groups-regex': 7.29.0(@babel/core@7.29.0) '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.29.0) @@ -13824,272 +13794,272 @@ snapshots: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-alpha-function@1.0.1(postcss@8.5.9)': + '@csstools/postcss-alpha-function@1.0.1(postcss@8.5.14)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 - '@csstools/postcss-cascade-layers@5.0.2(postcss@8.5.9)': + '@csstools/postcss-cascade-layers@5.0.2(postcss@8.5.14)': dependencies: '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1) - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 7.1.1 - '@csstools/postcss-color-function-display-p3-linear@1.0.1(postcss@8.5.9)': + '@csstools/postcss-color-function-display-p3-linear@1.0.1(postcss@8.5.14)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 - '@csstools/postcss-color-function@4.0.12(postcss@8.5.9)': + '@csstools/postcss-color-function@4.0.12(postcss@8.5.14)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 - '@csstools/postcss-color-mix-function@3.0.12(postcss@8.5.9)': + '@csstools/postcss-color-mix-function@3.0.12(postcss@8.5.14)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 - '@csstools/postcss-color-mix-variadic-function-arguments@1.0.2(postcss@8.5.9)': + '@csstools/postcss-color-mix-variadic-function-arguments@1.0.2(postcss@8.5.14)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 - '@csstools/postcss-content-alt-text@2.0.8(postcss@8.5.9)': + '@csstools/postcss-content-alt-text@2.0.8(postcss@8.5.14)': dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 - '@csstools/postcss-contrast-color-function@2.0.12(postcss@8.5.9)': + '@csstools/postcss-contrast-color-function@2.0.12(postcss@8.5.14)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 - '@csstools/postcss-exponential-functions@2.0.9(postcss@8.5.9)': + '@csstools/postcss-exponential-functions@2.0.9(postcss@8.5.14)': dependencies: '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-font-format-keywords@4.0.0(postcss@8.5.9)': + '@csstools/postcss-font-format-keywords@4.0.0(postcss@8.5.14)': dependencies: - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 postcss-value-parser: 4.2.0 - '@csstools/postcss-gamut-mapping@2.0.11(postcss@8.5.9)': + '@csstools/postcss-gamut-mapping@2.0.11(postcss@8.5.14)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-gradients-interpolation-method@5.0.12(postcss@8.5.9)': + '@csstools/postcss-gradients-interpolation-method@5.0.12(postcss@8.5.14)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 - '@csstools/postcss-hwb-function@4.0.12(postcss@8.5.9)': + '@csstools/postcss-hwb-function@4.0.12(postcss@8.5.14)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 - '@csstools/postcss-ic-unit@4.0.4(postcss@8.5.9)': + '@csstools/postcss-ic-unit@4.0.4(postcss@8.5.14)': dependencies: - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 postcss-value-parser: 4.2.0 - '@csstools/postcss-initial@2.0.1(postcss@8.5.9)': + '@csstools/postcss-initial@2.0.1(postcss@8.5.14)': dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-is-pseudo-class@5.0.3(postcss@8.5.9)': + '@csstools/postcss-is-pseudo-class@5.0.3(postcss@8.5.14)': dependencies: '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1) - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 7.1.1 - '@csstools/postcss-light-dark-function@2.0.11(postcss@8.5.9)': + '@csstools/postcss-light-dark-function@2.0.11(postcss@8.5.14)': dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 - '@csstools/postcss-logical-float-and-clear@3.0.0(postcss@8.5.9)': + '@csstools/postcss-logical-float-and-clear@3.0.0(postcss@8.5.14)': dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-logical-overflow@2.0.0(postcss@8.5.9)': + '@csstools/postcss-logical-overflow@2.0.0(postcss@8.5.14)': dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-logical-overscroll-behavior@2.0.0(postcss@8.5.9)': + '@csstools/postcss-logical-overscroll-behavior@2.0.0(postcss@8.5.14)': dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-logical-resize@3.0.0(postcss@8.5.9)': + '@csstools/postcss-logical-resize@3.0.0(postcss@8.5.14)': dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - '@csstools/postcss-logical-viewport-units@3.0.4(postcss@8.5.9)': + '@csstools/postcss-logical-viewport-units@3.0.4(postcss@8.5.14)': dependencies: '@csstools/css-tokenizer': 3.0.4 - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 - '@csstools/postcss-media-minmax@2.0.9(postcss@8.5.9)': + '@csstools/postcss-media-minmax@2.0.9(postcss@8.5.14)': dependencies: '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.5(postcss@8.5.9)': + '@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.5(postcss@8.5.14)': dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-nested-calc@4.0.0(postcss@8.5.9)': + '@csstools/postcss-nested-calc@4.0.0(postcss@8.5.14)': dependencies: - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 postcss-value-parser: 4.2.0 - '@csstools/postcss-normalize-display-values@4.0.1(postcss@8.5.9)': + '@csstools/postcss-normalize-display-values@4.0.1(postcss@8.5.14)': dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - '@csstools/postcss-oklab-function@4.0.12(postcss@8.5.9)': + '@csstools/postcss-oklab-function@4.0.12(postcss@8.5.14)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 - '@csstools/postcss-position-area-property@1.0.0(postcss@8.5.9)': + '@csstools/postcss-position-area-property@1.0.0(postcss@8.5.14)': dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-progressive-custom-properties@4.2.1(postcss@8.5.9)': + '@csstools/postcss-progressive-custom-properties@4.2.1(postcss@8.5.14)': dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - '@csstools/postcss-property-rule-prelude-list@1.0.0(postcss@8.5.9)': + '@csstools/postcss-property-rule-prelude-list@1.0.0(postcss@8.5.14)': dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-random-function@2.0.1(postcss@8.5.9)': + '@csstools/postcss-random-function@2.0.1(postcss@8.5.14)': dependencies: '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-relative-color-syntax@3.0.12(postcss@8.5.9)': + '@csstools/postcss-relative-color-syntax@3.0.12(postcss@8.5.14)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 - '@csstools/postcss-scope-pseudo-class@4.0.1(postcss@8.5.9)': + '@csstools/postcss-scope-pseudo-class@4.0.1(postcss@8.5.14)': dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 7.1.1 - '@csstools/postcss-sign-functions@1.1.4(postcss@8.5.9)': + '@csstools/postcss-sign-functions@1.1.4(postcss@8.5.14)': dependencies: '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-stepped-value-functions@4.0.9(postcss@8.5.9)': + '@csstools/postcss-stepped-value-functions@4.0.9(postcss@8.5.14)': dependencies: '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-syntax-descriptor-syntax-production@1.0.1(postcss@8.5.9)': + '@csstools/postcss-syntax-descriptor-syntax-production@1.0.1(postcss@8.5.14)': dependencies: '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-system-ui-font-family@1.0.0(postcss@8.5.9)': + '@csstools/postcss-system-ui-font-family@1.0.0(postcss@8.5.14)': dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-text-decoration-shorthand@4.0.3(postcss@8.5.9)': + '@csstools/postcss-text-decoration-shorthand@4.0.3(postcss@8.5.14)': dependencies: '@csstools/color-helpers': 5.1.0 - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - '@csstools/postcss-trigonometric-functions@4.0.9(postcss@8.5.9)': + '@csstools/postcss-trigonometric-functions@4.0.9(postcss@8.5.14)': dependencies: '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.9 + postcss: 8.5.14 - '@csstools/postcss-unset-value@4.0.0(postcss@8.5.9)': + '@csstools/postcss-unset-value@4.0.0(postcss@8.5.14)': dependencies: - postcss: 8.5.9 + postcss: 8.5.14 '@csstools/selector-resolve-nested@3.1.0(postcss-selector-parser@7.1.1)': dependencies: @@ -14099,9 +14069,9 @@ snapshots: dependencies: postcss-selector-parser: 7.1.1 - '@csstools/utilities@2.0.0(postcss@8.5.9)': + '@csstools/utilities@2.0.0(postcss@8.5.14)': dependencies: - postcss: 8.5.9 + postcss: 8.5.14 '@dannyhw/rozenite-storybook@0.0.2(react-native@0.85.3(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.3))(@react-native/jest-preset@0.85.3(@babel/core@7.29.0)(react@19.2.3))(@react-native/metro-config@0.85.3(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3)': dependencies: @@ -14171,14 +14141,14 @@ snapshots: copy-webpack-plugin: 11.0.0(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))) css-loader: 6.11.0(@rspack/core@1.7.11(@swc/helpers@0.5.21))(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))) css-minimizer-webpack-plugin: 5.0.1(clean-css@5.3.3)(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))) - cssnano: 6.1.2(postcss@8.5.9) + cssnano: 6.1.2(postcss@8.5.14) file-loader: 6.2.0(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))) html-minifier-terser: 7.2.0 mini-css-extract-plugin: 2.10.2(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))) null-loader: 4.0.1(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))) - postcss: 8.5.9 - postcss-loader: 7.3.4(postcss@8.5.9)(typescript@6.0.3)(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))) - postcss-preset-env: 10.6.1(postcss@8.5.9) + postcss: 8.5.14 + postcss-loader: 7.3.4(postcss@8.5.14)(typescript@6.0.3)(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))) + postcss-preset-env: 10.6.1(postcss@8.5.14) terser-webpack-plugin: 5.4.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))) tslib: 2.8.1 url-loader: 4.1.1(file-loader@6.2.0(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))))(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))) @@ -14268,9 +14238,9 @@ snapshots: '@docusaurus/cssnano-preset@3.10.0': dependencies: - cssnano-preset-advanced: 6.1.2(postcss@8.5.9) - postcss: 8.5.9 - postcss-sort-media-queries: 5.2.0(postcss@8.5.9) + cssnano-preset-advanced: 6.1.2(postcss@8.5.14) + postcss: 8.5.14 + postcss-sort-media-queries: 5.2.0(postcss@8.5.14) tslib: 2.8.1 '@docusaurus/eslint-plugin@3.10.0(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)': @@ -14731,7 +14701,7 @@ snapshots: infima: 0.2.0-alpha.45 lodash: 4.18.1 nprogress: 0.2.0 - postcss: 8.5.9 + postcss: 8.5.14 prism-react-renderer: 2.4.1(react@19.2.3) prismjs: 1.30.0 react: 19.2.3 @@ -15376,7 +15346,7 @@ snapshots: jsc-safe-url: 0.2.4 lightningcss: 1.32.0 picomatch: 4.0.4 - postcss: 8.4.49 + postcss: 8.5.14 resolve-from: 5.0.0 optionalDependencies: expo: 56.0.0-preview.7(@babel/core@7.29.0)(@expo/dom-webview@56.0.4)(@expo/metro-runtime@56.0.5)(expo-router@56.1.1)(react-dom@19.2.3(react@19.2.3))(react-native-web@0.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.85.3(@babel/core@7.29.0))(react-native@0.85.3(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.3))(@react-native/jest-preset@0.85.3(@babel/core@7.29.0)(react@19.2.3))(@react-native/metro-config@0.85.3(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3))(react-native@0.85.3(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.3))(@react-native/jest-preset@0.85.3(@babel/core@7.29.0)(react@19.2.3))(@react-native/metro-config@0.85.3(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3)(typescript@6.0.3) @@ -15446,7 +15416,7 @@ snapshots: '@expo/plist@0.6.1': dependencies: - '@xmldom/xmldom': 0.8.12 + '@xmldom/xmldom': 0.8.13 base64-js: 1.5.1 xmlbuilder: 15.1.1 @@ -15544,7 +15514,7 @@ snapshots: dependencies: ajv: 8.18.0 ajv-formats: 3.0.1(ajv@8.18.0) - fast-uri: 3.1.0 + fast-uri: 3.1.2 '@fastify/error@4.2.0': {} @@ -16536,7 +16506,7 @@ snapshots: '@react-native-community/cli-tools': 20.0.0 chalk: 4.1.2 fast-glob: 3.3.3 - fast-xml-parser: 4.5.6 + fast-xml-parser: 5.7.2 '@react-native-community/cli-config-apple@20.0.0': dependencies: @@ -16590,7 +16560,7 @@ snapshots: '@react-native-community/cli-tools': 20.0.0 chalk: 4.1.2 execa: 5.1.1 - fast-xml-parser: 4.5.6 + fast-xml-parser: 5.7.2 '@react-native-community/cli-platform-ios@20.0.0': dependencies: @@ -17903,8 +17873,6 @@ snapshots: esm-env: 1.2.2 tmcp: 1.19.3(typescript@6.0.3) - '@tootallnate/once@2.0.1': {} - '@tybys/wasm-util@0.10.1': dependencies: tslib: 2.8.1 @@ -18561,14 +18529,12 @@ snapshots: '@webassemblyjs/ast': 1.14.1 '@xtuc/long': 4.2.2 - '@xmldom/xmldom@0.8.12': {} + '@xmldom/xmldom@0.8.13': {} '@xtuc/ieee754@1.2.0': {} '@xtuc/long@4.2.2': {} - abab@2.0.6: {} - abort-controller@3.0.0: dependencies: event-target-shim: 5.0.1 @@ -18585,11 +18551,6 @@ snapshots: mime-types: 3.0.2 negotiator: 1.0.0 - acorn-globals@7.0.1: - dependencies: - acorn: 8.16.0 - acorn-walk: 8.3.5 - acorn-import-phases@1.0.4(acorn@8.16.0): dependencies: acorn: 8.16.0 @@ -18606,12 +18567,6 @@ snapshots: address@1.2.2: {} - agent-base@6.0.2: - dependencies: - debug: 4.4.3 - transitivePeerDependencies: - - supports-color - agent-base@7.1.4: {} aggregate-error@3.1.0: @@ -18646,7 +18601,7 @@ snapshots: ajv@8.18.0: dependencies: fast-deep-equal: 3.1.3 - fast-uri: 3.1.0 + fast-uri: 3.1.2 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 @@ -18842,17 +18797,15 @@ snapshots: async-limiter@1.0.1: {} - asynckit@0.4.0: {} - atomic-sleep@1.0.0: {} - autoprefixer@10.4.27(postcss@8.5.9): + autoprefixer@10.4.27(postcss@8.5.14): dependencies: browserslist: 4.28.2 caniuse-lite: 1.0.30001787 fraction.js: 5.3.4 picocolors: 1.1.1 - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 available-typed-arrays@1.0.7: @@ -18959,7 +18912,7 @@ snapshots: babel-plugin-react-docgen-typescript@1.5.1(@babel/core@7.29.0)(typescript@6.0.3): dependencies: '@babel/core': 7.29.0 - react-docgen-typescript: 1.22.0(typescript@6.0.3) + react-docgen-typescript: 2.2.2(typescript@6.0.3) transitivePeerDependencies: - typescript @@ -19498,10 +19451,6 @@ snapshots: combine-promises@1.2.0: {} - combined-stream@1.0.8: - dependencies: - delayed-stream: 1.0.0 - comma-separated-tokens@2.0.3: {} command-exists@1.2.9: {} @@ -19601,7 +19550,7 @@ snapshots: globby: 13.2.2 normalize-path: 3.0.0 schema-utils: 4.3.3 - serialize-javascript: 6.0.2 + serialize-javascript: 7.0.5 webpack: 5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21)) core-js-compat@3.49.0: @@ -19674,21 +19623,21 @@ snapshots: dependencies: type-fest: 1.4.0 - css-blank-pseudo@7.0.1(postcss@8.5.9): + css-blank-pseudo@7.0.1(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 7.1.1 css-color-keywords@1.0.0: {} - css-declaration-sorter@7.4.0(postcss@8.5.9): + css-declaration-sorter@7.4.0(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - css-has-pseudo@7.0.3(postcss@8.5.9): + css-has-pseudo@7.0.3(postcss@8.5.14): dependencies: '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1) - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 7.1.1 postcss-value-parser: 4.2.0 @@ -19698,12 +19647,12 @@ snapshots: css-loader@6.11.0(@rspack/core@1.7.11(@swc/helpers@0.5.21))(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))): dependencies: - icss-utils: 5.1.0(postcss@8.5.9) - postcss: 8.5.9 - postcss-modules-extract-imports: 3.1.0(postcss@8.5.9) - postcss-modules-local-by-default: 4.2.0(postcss@8.5.9) - postcss-modules-scope: 3.2.1(postcss@8.5.9) - postcss-modules-values: 4.0.0(postcss@8.5.9) + icss-utils: 5.1.0(postcss@8.5.14) + postcss: 8.5.14 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.14) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.14) + postcss-modules-scope: 3.2.1(postcss@8.5.14) + postcss-modules-values: 4.0.0(postcss@8.5.14) postcss-value-parser: 4.2.0 semver: 7.7.4 optionalDependencies: @@ -19713,18 +19662,18 @@ snapshots: css-minimizer-webpack-plugin@5.0.1(clean-css@5.3.3)(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))): dependencies: '@jridgewell/trace-mapping': 0.3.31 - cssnano: 6.1.2(postcss@8.5.9) + cssnano: 6.1.2(postcss@8.5.14) jest-worker: 29.7.0 - postcss: 8.5.9 + postcss: 8.5.14 schema-utils: 4.3.3 - serialize-javascript: 6.0.2 + serialize-javascript: 7.0.5 webpack: 5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21)) optionalDependencies: clean-css: 5.3.3 - css-prefers-color-scheme@10.0.0(postcss@8.5.9): + css-prefers-color-scheme@10.0.0(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 css-select@4.3.0: dependencies: @@ -19771,80 +19720,76 @@ snapshots: cssesc@3.0.0: {} - cssnano-preset-advanced@6.1.2(postcss@8.5.9): + cssnano-preset-advanced@6.1.2(postcss@8.5.14): dependencies: - autoprefixer: 10.4.27(postcss@8.5.9) + autoprefixer: 10.4.27(postcss@8.5.14) browserslist: 4.28.2 - cssnano-preset-default: 6.1.2(postcss@8.5.9) - postcss: 8.5.9 - postcss-discard-unused: 6.0.5(postcss@8.5.9) - postcss-merge-idents: 6.0.3(postcss@8.5.9) - postcss-reduce-idents: 6.0.3(postcss@8.5.9) - postcss-zindex: 6.0.2(postcss@8.5.9) + cssnano-preset-default: 6.1.2(postcss@8.5.14) + postcss: 8.5.14 + postcss-discard-unused: 6.0.5(postcss@8.5.14) + postcss-merge-idents: 6.0.3(postcss@8.5.14) + postcss-reduce-idents: 6.0.3(postcss@8.5.14) + postcss-zindex: 6.0.2(postcss@8.5.14) - cssnano-preset-default@6.1.2(postcss@8.5.9): + cssnano-preset-default@6.1.2(postcss@8.5.14): dependencies: browserslist: 4.28.2 - css-declaration-sorter: 7.4.0(postcss@8.5.9) - cssnano-utils: 4.0.2(postcss@8.5.9) - postcss: 8.5.9 - postcss-calc: 9.0.1(postcss@8.5.9) - postcss-colormin: 6.1.0(postcss@8.5.9) - postcss-convert-values: 6.1.0(postcss@8.5.9) - postcss-discard-comments: 6.0.2(postcss@8.5.9) - postcss-discard-duplicates: 6.0.3(postcss@8.5.9) - postcss-discard-empty: 6.0.3(postcss@8.5.9) - postcss-discard-overridden: 6.0.2(postcss@8.5.9) - postcss-merge-longhand: 6.0.5(postcss@8.5.9) - postcss-merge-rules: 6.1.1(postcss@8.5.9) - postcss-minify-font-values: 6.1.0(postcss@8.5.9) - postcss-minify-gradients: 6.0.3(postcss@8.5.9) - postcss-minify-params: 6.1.0(postcss@8.5.9) - postcss-minify-selectors: 6.0.4(postcss@8.5.9) - postcss-normalize-charset: 6.0.2(postcss@8.5.9) - postcss-normalize-display-values: 6.0.2(postcss@8.5.9) - postcss-normalize-positions: 6.0.2(postcss@8.5.9) - postcss-normalize-repeat-style: 6.0.2(postcss@8.5.9) - postcss-normalize-string: 6.0.2(postcss@8.5.9) - postcss-normalize-timing-functions: 6.0.2(postcss@8.5.9) - postcss-normalize-unicode: 6.1.0(postcss@8.5.9) - postcss-normalize-url: 6.0.2(postcss@8.5.9) - postcss-normalize-whitespace: 6.0.2(postcss@8.5.9) - postcss-ordered-values: 6.0.2(postcss@8.5.9) - postcss-reduce-initial: 6.1.0(postcss@8.5.9) - postcss-reduce-transforms: 6.0.2(postcss@8.5.9) - postcss-svgo: 6.0.3(postcss@8.5.9) - postcss-unique-selectors: 6.0.4(postcss@8.5.9) - - cssnano-utils@4.0.2(postcss@8.5.9): - dependencies: - postcss: 8.5.9 - - cssnano@6.1.2(postcss@8.5.9): - dependencies: - cssnano-preset-default: 6.1.2(postcss@8.5.9) + css-declaration-sorter: 7.4.0(postcss@8.5.14) + cssnano-utils: 4.0.2(postcss@8.5.14) + postcss: 8.5.14 + postcss-calc: 9.0.1(postcss@8.5.14) + postcss-colormin: 6.1.0(postcss@8.5.14) + postcss-convert-values: 6.1.0(postcss@8.5.14) + postcss-discard-comments: 6.0.2(postcss@8.5.14) + postcss-discard-duplicates: 6.0.3(postcss@8.5.14) + postcss-discard-empty: 6.0.3(postcss@8.5.14) + postcss-discard-overridden: 6.0.2(postcss@8.5.14) + postcss-merge-longhand: 6.0.5(postcss@8.5.14) + postcss-merge-rules: 6.1.1(postcss@8.5.14) + postcss-minify-font-values: 6.1.0(postcss@8.5.14) + postcss-minify-gradients: 6.0.3(postcss@8.5.14) + postcss-minify-params: 6.1.0(postcss@8.5.14) + postcss-minify-selectors: 6.0.4(postcss@8.5.14) + postcss-normalize-charset: 6.0.2(postcss@8.5.14) + postcss-normalize-display-values: 6.0.2(postcss@8.5.14) + postcss-normalize-positions: 6.0.2(postcss@8.5.14) + postcss-normalize-repeat-style: 6.0.2(postcss@8.5.14) + postcss-normalize-string: 6.0.2(postcss@8.5.14) + postcss-normalize-timing-functions: 6.0.2(postcss@8.5.14) + postcss-normalize-unicode: 6.1.0(postcss@8.5.14) + postcss-normalize-url: 6.0.2(postcss@8.5.14) + postcss-normalize-whitespace: 6.0.2(postcss@8.5.14) + postcss-ordered-values: 6.0.2(postcss@8.5.14) + postcss-reduce-initial: 6.1.0(postcss@8.5.14) + postcss-reduce-transforms: 6.0.2(postcss@8.5.14) + postcss-svgo: 6.0.3(postcss@8.5.14) + postcss-unique-selectors: 6.0.4(postcss@8.5.14) + + cssnano-utils@4.0.2(postcss@8.5.14): + dependencies: + postcss: 8.5.14 + + cssnano@6.1.2(postcss@8.5.14): + dependencies: + cssnano-preset-default: 6.1.2(postcss@8.5.14) lilconfig: 3.1.3 - postcss: 8.5.9 + postcss: 8.5.14 csso@5.0.5: dependencies: css-tree: 2.2.1 - cssom@0.3.8: {} - - cssom@0.5.0: {} - - cssstyle@2.3.0: + cssstyle@4.6.0: dependencies: - cssom: 0.3.8 + '@asamuzakjp/css-color': 3.2.0 + rrweb-cssom: 0.8.0 csstype@3.2.3: {} - data-urls@3.0.2: + data-urls@5.0.0: dependencies: - abab: 2.0.6 - whatwg-mimetype: 3.0.0 - whatwg-url: 11.0.0 + whatwg-mimetype: 4.0.0 + whatwg-url: 14.2.0 data-view-buffer@1.0.2: dependencies: @@ -19941,8 +19886,6 @@ snapshots: defu@6.1.7: {} - delayed-stream@1.0.0: {} - depd@1.1.2: {} depd@2.0.0: {} @@ -20014,10 +19957,6 @@ snapshots: domelementtype@2.3.0: {} - domexception@4.0.0: - dependencies: - webidl-conversions: 7.0.0 - domhandler@4.3.1: dependencies: domelementtype: 2.3.0 @@ -20097,8 +20036,6 @@ snapshots: ansi-colors: 4.1.3 strip-ansi: 6.0.1 - entities@2.0.3: {} - entities@2.2.0: {} entities@4.5.0: {} @@ -20293,22 +20230,14 @@ snapshots: escape-string-regexp@5.0.0: {} - escodegen@2.1.0: - dependencies: - esprima: 4.0.1 - estraverse: 5.3.0 - esutils: 2.0.3 - optionalDependencies: - source-map: 0.6.1 - eslint-config-expo@56.0.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3): dependencies: '@typescript-eslint/eslint-plugin': 8.59.2(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3) '@typescript-eslint/parser': 8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3) eslint: 9.39.4(jiti@1.21.7) - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7)) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.4(jiti@1.21.7)) eslint-plugin-expo: 1.0.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7)) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@1.21.7)) eslint-plugin-react: 7.37.5(eslint@9.39.4(jiti@1.21.7)) eslint-plugin-react-hooks: 5.2.0(eslint@9.39.4(jiti@1.21.7)) globals: 16.5.0 @@ -20334,7 +20263,7 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7)): + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.4(jiti@1.21.7)): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.4.3 @@ -20345,18 +20274,18 @@ snapshots: tinyglobby: 0.2.16 unrs-resolver: 1.11.1 optionalDependencies: - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7)) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@1.21.7)) transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.1(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7)): + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@1.21.7)): dependencies: debug: 3.2.7 optionalDependencies: '@typescript-eslint/parser': 8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3) eslint: 9.39.4(jiti@1.21.7) eslint-import-resolver-node: 0.3.10 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7)) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.4(jiti@1.21.7)) transitivePeerDependencies: - supports-color @@ -20382,7 +20311,7 @@ snapshots: lodash: 4.18.1 string-natural-compare: 3.0.1 - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7)): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@1.21.7)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -20393,7 +20322,7 @@ snapshots: doctrine: 2.1.0 eslint: 9.39.4(jiti@1.21.7) eslint-import-resolver-node: 0.3.10 - eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7)) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@1.21.7)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -21017,7 +20946,7 @@ snapshots: '@fastify/merge-json-schemas': 0.2.1 ajv: 8.18.0 ajv-formats: 3.0.1(ajv@8.18.0) - fast-uri: 3.1.0 + fast-uri: 3.1.2 json-schema-ref-resolver: 3.0.0 rfdc: 1.4.1 @@ -21027,20 +20956,17 @@ snapshots: dependencies: fast-decode-uri-component: 1.0.1 - fast-uri@3.1.0: {} + fast-uri@3.1.2: {} - fast-xml-builder@1.1.5: + fast-xml-builder@1.2.0: dependencies: path-expression-matcher: 1.5.0 - - fast-xml-parser@4.5.6: - dependencies: - strnum: 1.1.2 + xml-naming: 0.1.0 fast-xml-parser@5.7.2: dependencies: '@nodable/entities': 2.1.0 - fast-xml-builder: 1.1.5 + fast-xml-builder: 1.2.0 path-expression-matcher: 1.5.0 strnum: 2.2.3 @@ -21210,7 +21136,7 @@ snapshots: pirates: 3.0.2 vlq: 0.2.3 - follow-redirects@1.15.11(debug@4.4.3): + follow-redirects@1.16.0(debug@4.4.3): optionalDependencies: debug: 4.4.3 @@ -21222,14 +21148,6 @@ snapshots: form-data-encoder@2.1.4: {} - form-data@4.0.5: - dependencies: - asynckit: 0.4.0 - combined-stream: 1.0.8 - es-set-tostringtag: 2.1.0 - hasown: 2.0.2 - mime-types: 2.1.35 - format@0.2.2: {} forwarded@0.2.0: {} @@ -21615,9 +21533,9 @@ snapshots: readable-stream: 2.3.8 wbuf: 1.7.3 - html-encoding-sniffer@3.0.0: + html-encoding-sniffer@4.0.0: dependencies: - whatwg-encoding: 2.0.0 + whatwg-encoding: 3.1.1 html-entities@2.6.0: {} @@ -21694,10 +21612,9 @@ snapshots: http-parser-js@0.5.10: {} - http-proxy-agent@5.0.0: + http-proxy-agent@7.0.2: dependencies: - '@tootallnate/once': 2.0.1 - agent-base: 6.0.2 + agent-base: 7.1.4 debug: 4.4.3 transitivePeerDependencies: - supports-color @@ -21728,7 +21645,7 @@ snapshots: http-proxy@1.18.1(debug@4.4.3): dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.11(debug@4.4.3) + follow-redirects: 1.16.0(debug@4.4.3) requires-port: 1.0.0 transitivePeerDependencies: - debug @@ -21738,13 +21655,6 @@ snapshots: quick-lru: 5.1.1 resolve-alpn: 1.2.1 - https-proxy-agent@5.0.1: - dependencies: - agent-base: 6.0.2 - debug: 4.4.3 - transitivePeerDependencies: - - supports-color - https-proxy-agent@7.0.6: dependencies: agent-base: 7.1.4 @@ -21772,9 +21682,9 @@ snapshots: dependencies: safer-buffer: 2.1.2 - icss-utils@5.1.0(postcss@8.5.9): + icss-utils@5.1.0(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 ieee754@1.2.1: {} @@ -22225,7 +22135,7 @@ snapshots: '@types/node': 25.6.0 jest-mock: 29.7.0 jest-util: 29.7.0 - jsdom: 20.0.3 + jsdom: 26.1.0 transitivePeerDependencies: - bufferutil - supports-color @@ -22525,34 +22435,28 @@ snapshots: jsc-safe-url@0.2.4: {} - jsdom@20.0.3: + jsdom@26.1.0: dependencies: - abab: 2.0.6 - acorn: 8.16.0 - acorn-globals: 7.0.1 - cssom: 0.5.0 - cssstyle: 2.3.0 - data-urls: 3.0.2 + cssstyle: 4.6.0 + data-urls: 5.0.0 decimal.js: 10.6.0 - domexception: 4.0.0 - escodegen: 2.1.0 - form-data: 4.0.5 - html-encoding-sniffer: 3.0.0 - http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1 + html-encoding-sniffer: 4.0.0 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.6 is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.23 parse5: 7.3.0 + rrweb-cssom: 0.8.0 saxes: 6.0.0 symbol-tree: 3.2.4 - tough-cookie: 4.1.4 - w3c-xmlserializer: 4.0.0 + tough-cookie: 5.1.2 + w3c-xmlserializer: 5.0.0 webidl-conversions: 7.0.0 - whatwg-encoding: 2.0.0 - whatwg-mimetype: 3.0.0 - whatwg-url: 11.0.0 + whatwg-encoding: 3.1.1 + whatwg-mimetype: 4.0.0 + whatwg-url: 14.2.0 ws: 8.20.0 - xml-name-validator: 4.0.0 + xml-name-validator: 5.0.0 transitivePeerDependencies: - bufferutil - supports-color @@ -22715,9 +22619,9 @@ snapshots: lines-and-columns@1.2.4: {} - linkify-it@2.2.0: + linkify-it@5.0.0: dependencies: - uc.micro: 1.0.6 + uc.micro: 2.1.0 loader-runner@4.3.1: {} @@ -22822,13 +22726,14 @@ snapshots: markdown-extensions@2.0.0: {} - markdown-it@10.0.0: + markdown-it@14.1.1: dependencies: - argparse: 1.0.10 - entities: 2.0.3 - linkify-it: 2.2.0 - mdurl: 1.0.1 - uc.micro: 1.0.6 + argparse: 2.0.1 + entities: 4.5.0 + linkify-it: 5.0.0 + mdurl: 2.0.0 + punycode.js: 2.3.1 + uc.micro: 2.1.0 markdown-table@2.0.0: dependencies: @@ -23034,7 +22939,7 @@ snapshots: mdn-data@2.0.30: {} - mdurl@1.0.1: {} + mdurl@2.0.0: {} media-typer@0.3.0: {} @@ -24435,7 +24340,7 @@ snapshots: plist@3.1.0: dependencies: - '@xmldom/xmldom': 0.8.12 + '@xmldom/xmldom': 0.8.13 base64-js: 1.5.1 xmlbuilder: 15.1.1 @@ -24447,407 +24352,407 @@ snapshots: possible-typed-array-names@1.1.0: {} - postcss-attribute-case-insensitive@7.0.1(postcss@8.5.9): + postcss-attribute-case-insensitive@7.0.1(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 7.1.1 - postcss-calc@9.0.1(postcss@8.5.9): + postcss-calc@9.0.1(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 - postcss-clamp@4.1.0(postcss@8.5.9): + postcss-clamp@4.1.0(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-color-functional-notation@7.0.12(postcss@8.5.9): + postcss-color-functional-notation@7.0.12(postcss@8.5.14): dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 - postcss-color-hex-alpha@10.0.0(postcss@8.5.9): + postcss-color-hex-alpha@10.0.0(postcss@8.5.14): dependencies: - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-color-rebeccapurple@10.0.0(postcss@8.5.9): + postcss-color-rebeccapurple@10.0.0(postcss@8.5.14): dependencies: - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-colormin@6.1.0(postcss@8.5.9): + postcss-colormin@6.1.0(postcss@8.5.14): dependencies: browserslist: 4.28.2 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-convert-values@6.1.0(postcss@8.5.9): + postcss-convert-values@6.1.0(postcss@8.5.14): dependencies: browserslist: 4.28.2 - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-custom-media@11.0.6(postcss@8.5.9): + postcss-custom-media@11.0.6(postcss@8.5.14): dependencies: '@csstools/cascade-layer-name-parser': 2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) - postcss: 8.5.9 + postcss: 8.5.14 - postcss-custom-properties@14.0.6(postcss@8.5.9): + postcss-custom-properties@14.0.6(postcss@8.5.14): dependencies: '@csstools/cascade-layer-name-parser': 2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-custom-selectors@8.0.5(postcss@8.5.9): + postcss-custom-selectors@8.0.5(postcss@8.5.14): dependencies: '@csstools/cascade-layer-name-parser': 2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 7.1.1 - postcss-dir-pseudo-class@9.0.1(postcss@8.5.9): + postcss-dir-pseudo-class@9.0.1(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 7.1.1 - postcss-discard-comments@6.0.2(postcss@8.5.9): + postcss-discard-comments@6.0.2(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - postcss-discard-duplicates@6.0.3(postcss@8.5.9): + postcss-discard-duplicates@6.0.3(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - postcss-discard-empty@6.0.3(postcss@8.5.9): + postcss-discard-empty@6.0.3(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - postcss-discard-overridden@6.0.2(postcss@8.5.9): + postcss-discard-overridden@6.0.2(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - postcss-discard-unused@6.0.5(postcss@8.5.9): + postcss-discard-unused@6.0.5(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 6.1.2 - postcss-double-position-gradients@6.0.4(postcss@8.5.9): + postcss-double-position-gradients@6.0.4(postcss@8.5.14): dependencies: - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-focus-visible@10.0.1(postcss@8.5.9): + postcss-focus-visible@10.0.1(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 7.1.1 - postcss-focus-within@9.0.1(postcss@8.5.9): + postcss-focus-within@9.0.1(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 7.1.1 - postcss-font-variant@5.0.0(postcss@8.5.9): + postcss-font-variant@5.0.0(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - postcss-gap-properties@6.0.0(postcss@8.5.9): + postcss-gap-properties@6.0.0(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - postcss-image-set-function@7.0.0(postcss@8.5.9): + postcss-image-set-function@7.0.0(postcss@8.5.14): dependencies: - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-lab-function@7.0.12(postcss@8.5.9): + postcss-lab-function@7.0.12(postcss@8.5.14): dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/utilities': 2.0.0(postcss@8.5.9) - postcss: 8.5.9 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/utilities': 2.0.0(postcss@8.5.14) + postcss: 8.5.14 - postcss-loader@7.3.4(postcss@8.5.9)(typescript@6.0.3)(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))): + postcss-loader@7.3.4(postcss@8.5.14)(typescript@6.0.3)(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))): dependencies: cosmiconfig: 8.3.6(typescript@6.0.3) jiti: 1.21.7 - postcss: 8.5.9 + postcss: 8.5.14 semver: 7.7.4 webpack: 5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21)) transitivePeerDependencies: - typescript - postcss-logical@8.1.0(postcss@8.5.9): + postcss-logical@8.1.0(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-merge-idents@6.0.3(postcss@8.5.9): + postcss-merge-idents@6.0.3(postcss@8.5.14): dependencies: - cssnano-utils: 4.0.2(postcss@8.5.9) - postcss: 8.5.9 + cssnano-utils: 4.0.2(postcss@8.5.14) + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-merge-longhand@6.0.5(postcss@8.5.9): + postcss-merge-longhand@6.0.5(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - stylehacks: 6.1.1(postcss@8.5.9) + stylehacks: 6.1.1(postcss@8.5.14) - postcss-merge-rules@6.1.1(postcss@8.5.9): + postcss-merge-rules@6.1.1(postcss@8.5.14): dependencies: browserslist: 4.28.2 caniuse-api: 3.0.0 - cssnano-utils: 4.0.2(postcss@8.5.9) - postcss: 8.5.9 + cssnano-utils: 4.0.2(postcss@8.5.14) + postcss: 8.5.14 postcss-selector-parser: 6.1.2 - postcss-minify-font-values@6.1.0(postcss@8.5.9): + postcss-minify-font-values@6.1.0(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-minify-gradients@6.0.3(postcss@8.5.9): + postcss-minify-gradients@6.0.3(postcss@8.5.14): dependencies: colord: 2.9.3 - cssnano-utils: 4.0.2(postcss@8.5.9) - postcss: 8.5.9 + cssnano-utils: 4.0.2(postcss@8.5.14) + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-minify-params@6.1.0(postcss@8.5.9): + postcss-minify-params@6.1.0(postcss@8.5.14): dependencies: browserslist: 4.28.2 - cssnano-utils: 4.0.2(postcss@8.5.9) - postcss: 8.5.9 + cssnano-utils: 4.0.2(postcss@8.5.14) + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-minify-selectors@6.0.4(postcss@8.5.9): + postcss-minify-selectors@6.0.4(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 6.1.2 - postcss-modules-extract-imports@3.1.0(postcss@8.5.9): + postcss-modules-extract-imports@3.1.0(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - postcss-modules-local-by-default@4.2.0(postcss@8.5.9): + postcss-modules-local-by-default@4.2.0(postcss@8.5.14): dependencies: - icss-utils: 5.1.0(postcss@8.5.9) - postcss: 8.5.9 + icss-utils: 5.1.0(postcss@8.5.14) + postcss: 8.5.14 postcss-selector-parser: 7.1.1 postcss-value-parser: 4.2.0 - postcss-modules-scope@3.2.1(postcss@8.5.9): + postcss-modules-scope@3.2.1(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 7.1.1 - postcss-modules-values@4.0.0(postcss@8.5.9): + postcss-modules-values@4.0.0(postcss@8.5.14): dependencies: - icss-utils: 5.1.0(postcss@8.5.9) - postcss: 8.5.9 + icss-utils: 5.1.0(postcss@8.5.14) + postcss: 8.5.14 - postcss-nesting@13.0.2(postcss@8.5.9): + postcss-nesting@13.0.2(postcss@8.5.14): dependencies: '@csstools/selector-resolve-nested': 3.1.0(postcss-selector-parser@7.1.1) '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1) - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 7.1.1 - postcss-normalize-charset@6.0.2(postcss@8.5.9): + postcss-normalize-charset@6.0.2(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - postcss-normalize-display-values@6.0.2(postcss@8.5.9): + postcss-normalize-display-values@6.0.2(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-normalize-positions@6.0.2(postcss@8.5.9): + postcss-normalize-positions@6.0.2(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@6.0.2(postcss@8.5.9): + postcss-normalize-repeat-style@6.0.2(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-normalize-string@6.0.2(postcss@8.5.9): + postcss-normalize-string@6.0.2(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@6.0.2(postcss@8.5.9): + postcss-normalize-timing-functions@6.0.2(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@6.1.0(postcss@8.5.9): + postcss-normalize-unicode@6.1.0(postcss@8.5.14): dependencies: browserslist: 4.28.2 - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-normalize-url@6.0.2(postcss@8.5.9): + postcss-normalize-url@6.0.2(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@6.0.2(postcss@8.5.9): + postcss-normalize-whitespace@6.0.2(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-opacity-percentage@3.0.0(postcss@8.5.9): + postcss-opacity-percentage@3.0.0(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - postcss-ordered-values@6.0.2(postcss@8.5.9): + postcss-ordered-values@6.0.2(postcss@8.5.14): dependencies: - cssnano-utils: 4.0.2(postcss@8.5.9) - postcss: 8.5.9 + cssnano-utils: 4.0.2(postcss@8.5.14) + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-overflow-shorthand@6.0.0(postcss@8.5.9): + postcss-overflow-shorthand@6.0.0(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-page-break@3.0.4(postcss@8.5.9): + postcss-page-break@3.0.4(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - postcss-place@10.0.0(postcss@8.5.9): + postcss-place@10.0.0(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-preset-env@10.6.1(postcss@8.5.9): - dependencies: - '@csstools/postcss-alpha-function': 1.0.1(postcss@8.5.9) - '@csstools/postcss-cascade-layers': 5.0.2(postcss@8.5.9) - '@csstools/postcss-color-function': 4.0.12(postcss@8.5.9) - '@csstools/postcss-color-function-display-p3-linear': 1.0.1(postcss@8.5.9) - '@csstools/postcss-color-mix-function': 3.0.12(postcss@8.5.9) - '@csstools/postcss-color-mix-variadic-function-arguments': 1.0.2(postcss@8.5.9) - '@csstools/postcss-content-alt-text': 2.0.8(postcss@8.5.9) - '@csstools/postcss-contrast-color-function': 2.0.12(postcss@8.5.9) - '@csstools/postcss-exponential-functions': 2.0.9(postcss@8.5.9) - '@csstools/postcss-font-format-keywords': 4.0.0(postcss@8.5.9) - '@csstools/postcss-gamut-mapping': 2.0.11(postcss@8.5.9) - '@csstools/postcss-gradients-interpolation-method': 5.0.12(postcss@8.5.9) - '@csstools/postcss-hwb-function': 4.0.12(postcss@8.5.9) - '@csstools/postcss-ic-unit': 4.0.4(postcss@8.5.9) - '@csstools/postcss-initial': 2.0.1(postcss@8.5.9) - '@csstools/postcss-is-pseudo-class': 5.0.3(postcss@8.5.9) - '@csstools/postcss-light-dark-function': 2.0.11(postcss@8.5.9) - '@csstools/postcss-logical-float-and-clear': 3.0.0(postcss@8.5.9) - '@csstools/postcss-logical-overflow': 2.0.0(postcss@8.5.9) - '@csstools/postcss-logical-overscroll-behavior': 2.0.0(postcss@8.5.9) - '@csstools/postcss-logical-resize': 3.0.0(postcss@8.5.9) - '@csstools/postcss-logical-viewport-units': 3.0.4(postcss@8.5.9) - '@csstools/postcss-media-minmax': 2.0.9(postcss@8.5.9) - '@csstools/postcss-media-queries-aspect-ratio-number-values': 3.0.5(postcss@8.5.9) - '@csstools/postcss-nested-calc': 4.0.0(postcss@8.5.9) - '@csstools/postcss-normalize-display-values': 4.0.1(postcss@8.5.9) - '@csstools/postcss-oklab-function': 4.0.12(postcss@8.5.9) - '@csstools/postcss-position-area-property': 1.0.0(postcss@8.5.9) - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.9) - '@csstools/postcss-property-rule-prelude-list': 1.0.0(postcss@8.5.9) - '@csstools/postcss-random-function': 2.0.1(postcss@8.5.9) - '@csstools/postcss-relative-color-syntax': 3.0.12(postcss@8.5.9) - '@csstools/postcss-scope-pseudo-class': 4.0.1(postcss@8.5.9) - '@csstools/postcss-sign-functions': 1.1.4(postcss@8.5.9) - '@csstools/postcss-stepped-value-functions': 4.0.9(postcss@8.5.9) - '@csstools/postcss-syntax-descriptor-syntax-production': 1.0.1(postcss@8.5.9) - '@csstools/postcss-system-ui-font-family': 1.0.0(postcss@8.5.9) - '@csstools/postcss-text-decoration-shorthand': 4.0.3(postcss@8.5.9) - '@csstools/postcss-trigonometric-functions': 4.0.9(postcss@8.5.9) - '@csstools/postcss-unset-value': 4.0.0(postcss@8.5.9) - autoprefixer: 10.4.27(postcss@8.5.9) + postcss-preset-env@10.6.1(postcss@8.5.14): + dependencies: + '@csstools/postcss-alpha-function': 1.0.1(postcss@8.5.14) + '@csstools/postcss-cascade-layers': 5.0.2(postcss@8.5.14) + '@csstools/postcss-color-function': 4.0.12(postcss@8.5.14) + '@csstools/postcss-color-function-display-p3-linear': 1.0.1(postcss@8.5.14) + '@csstools/postcss-color-mix-function': 3.0.12(postcss@8.5.14) + '@csstools/postcss-color-mix-variadic-function-arguments': 1.0.2(postcss@8.5.14) + '@csstools/postcss-content-alt-text': 2.0.8(postcss@8.5.14) + '@csstools/postcss-contrast-color-function': 2.0.12(postcss@8.5.14) + '@csstools/postcss-exponential-functions': 2.0.9(postcss@8.5.14) + '@csstools/postcss-font-format-keywords': 4.0.0(postcss@8.5.14) + '@csstools/postcss-gamut-mapping': 2.0.11(postcss@8.5.14) + '@csstools/postcss-gradients-interpolation-method': 5.0.12(postcss@8.5.14) + '@csstools/postcss-hwb-function': 4.0.12(postcss@8.5.14) + '@csstools/postcss-ic-unit': 4.0.4(postcss@8.5.14) + '@csstools/postcss-initial': 2.0.1(postcss@8.5.14) + '@csstools/postcss-is-pseudo-class': 5.0.3(postcss@8.5.14) + '@csstools/postcss-light-dark-function': 2.0.11(postcss@8.5.14) + '@csstools/postcss-logical-float-and-clear': 3.0.0(postcss@8.5.14) + '@csstools/postcss-logical-overflow': 2.0.0(postcss@8.5.14) + '@csstools/postcss-logical-overscroll-behavior': 2.0.0(postcss@8.5.14) + '@csstools/postcss-logical-resize': 3.0.0(postcss@8.5.14) + '@csstools/postcss-logical-viewport-units': 3.0.4(postcss@8.5.14) + '@csstools/postcss-media-minmax': 2.0.9(postcss@8.5.14) + '@csstools/postcss-media-queries-aspect-ratio-number-values': 3.0.5(postcss@8.5.14) + '@csstools/postcss-nested-calc': 4.0.0(postcss@8.5.14) + '@csstools/postcss-normalize-display-values': 4.0.1(postcss@8.5.14) + '@csstools/postcss-oklab-function': 4.0.12(postcss@8.5.14) + '@csstools/postcss-position-area-property': 1.0.0(postcss@8.5.14) + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.14) + '@csstools/postcss-property-rule-prelude-list': 1.0.0(postcss@8.5.14) + '@csstools/postcss-random-function': 2.0.1(postcss@8.5.14) + '@csstools/postcss-relative-color-syntax': 3.0.12(postcss@8.5.14) + '@csstools/postcss-scope-pseudo-class': 4.0.1(postcss@8.5.14) + '@csstools/postcss-sign-functions': 1.1.4(postcss@8.5.14) + '@csstools/postcss-stepped-value-functions': 4.0.9(postcss@8.5.14) + '@csstools/postcss-syntax-descriptor-syntax-production': 1.0.1(postcss@8.5.14) + '@csstools/postcss-system-ui-font-family': 1.0.0(postcss@8.5.14) + '@csstools/postcss-text-decoration-shorthand': 4.0.3(postcss@8.5.14) + '@csstools/postcss-trigonometric-functions': 4.0.9(postcss@8.5.14) + '@csstools/postcss-unset-value': 4.0.0(postcss@8.5.14) + autoprefixer: 10.4.27(postcss@8.5.14) browserslist: 4.28.2 - css-blank-pseudo: 7.0.1(postcss@8.5.9) - css-has-pseudo: 7.0.3(postcss@8.5.9) - css-prefers-color-scheme: 10.0.0(postcss@8.5.9) + css-blank-pseudo: 7.0.1(postcss@8.5.14) + css-has-pseudo: 7.0.3(postcss@8.5.14) + css-prefers-color-scheme: 10.0.0(postcss@8.5.14) cssdb: 8.8.0 - postcss: 8.5.9 - postcss-attribute-case-insensitive: 7.0.1(postcss@8.5.9) - postcss-clamp: 4.1.0(postcss@8.5.9) - postcss-color-functional-notation: 7.0.12(postcss@8.5.9) - postcss-color-hex-alpha: 10.0.0(postcss@8.5.9) - postcss-color-rebeccapurple: 10.0.0(postcss@8.5.9) - postcss-custom-media: 11.0.6(postcss@8.5.9) - postcss-custom-properties: 14.0.6(postcss@8.5.9) - postcss-custom-selectors: 8.0.5(postcss@8.5.9) - postcss-dir-pseudo-class: 9.0.1(postcss@8.5.9) - postcss-double-position-gradients: 6.0.4(postcss@8.5.9) - postcss-focus-visible: 10.0.1(postcss@8.5.9) - postcss-focus-within: 9.0.1(postcss@8.5.9) - postcss-font-variant: 5.0.0(postcss@8.5.9) - postcss-gap-properties: 6.0.0(postcss@8.5.9) - postcss-image-set-function: 7.0.0(postcss@8.5.9) - postcss-lab-function: 7.0.12(postcss@8.5.9) - postcss-logical: 8.1.0(postcss@8.5.9) - postcss-nesting: 13.0.2(postcss@8.5.9) - postcss-opacity-percentage: 3.0.0(postcss@8.5.9) - postcss-overflow-shorthand: 6.0.0(postcss@8.5.9) - postcss-page-break: 3.0.4(postcss@8.5.9) - postcss-place: 10.0.0(postcss@8.5.9) - postcss-pseudo-class-any-link: 10.0.1(postcss@8.5.9) - postcss-replace-overflow-wrap: 4.0.0(postcss@8.5.9) - postcss-selector-not: 8.0.1(postcss@8.5.9) - - postcss-pseudo-class-any-link@10.0.1(postcss@8.5.9): - dependencies: - postcss: 8.5.9 + postcss: 8.5.14 + postcss-attribute-case-insensitive: 7.0.1(postcss@8.5.14) + postcss-clamp: 4.1.0(postcss@8.5.14) + postcss-color-functional-notation: 7.0.12(postcss@8.5.14) + postcss-color-hex-alpha: 10.0.0(postcss@8.5.14) + postcss-color-rebeccapurple: 10.0.0(postcss@8.5.14) + postcss-custom-media: 11.0.6(postcss@8.5.14) + postcss-custom-properties: 14.0.6(postcss@8.5.14) + postcss-custom-selectors: 8.0.5(postcss@8.5.14) + postcss-dir-pseudo-class: 9.0.1(postcss@8.5.14) + postcss-double-position-gradients: 6.0.4(postcss@8.5.14) + postcss-focus-visible: 10.0.1(postcss@8.5.14) + postcss-focus-within: 9.0.1(postcss@8.5.14) + postcss-font-variant: 5.0.0(postcss@8.5.14) + postcss-gap-properties: 6.0.0(postcss@8.5.14) + postcss-image-set-function: 7.0.0(postcss@8.5.14) + postcss-lab-function: 7.0.12(postcss@8.5.14) + postcss-logical: 8.1.0(postcss@8.5.14) + postcss-nesting: 13.0.2(postcss@8.5.14) + postcss-opacity-percentage: 3.0.0(postcss@8.5.14) + postcss-overflow-shorthand: 6.0.0(postcss@8.5.14) + postcss-page-break: 3.0.4(postcss@8.5.14) + postcss-place: 10.0.0(postcss@8.5.14) + postcss-pseudo-class-any-link: 10.0.1(postcss@8.5.14) + postcss-replace-overflow-wrap: 4.0.0(postcss@8.5.14) + postcss-selector-not: 8.0.1(postcss@8.5.14) + + postcss-pseudo-class-any-link@10.0.1(postcss@8.5.14): + dependencies: + postcss: 8.5.14 postcss-selector-parser: 7.1.1 - postcss-reduce-idents@6.0.3(postcss@8.5.9): + postcss-reduce-idents@6.0.3(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-reduce-initial@6.1.0(postcss@8.5.9): + postcss-reduce-initial@6.1.0(postcss@8.5.14): dependencies: browserslist: 4.28.2 caniuse-api: 3.0.0 - postcss: 8.5.9 + postcss: 8.5.14 - postcss-reduce-transforms@6.0.2(postcss@8.5.9): + postcss-reduce-transforms@6.0.2(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 - postcss-replace-overflow-wrap@4.0.0(postcss@8.5.9): + postcss-replace-overflow-wrap@4.0.0(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 - postcss-selector-not@8.0.1(postcss@8.5.9): + postcss-selector-not@8.0.1(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 7.1.1 postcss-selector-parser@6.1.2: @@ -24860,35 +24765,29 @@ snapshots: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-sort-media-queries@5.2.0(postcss@8.5.9): + postcss-sort-media-queries@5.2.0(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 sort-css-media-queries: 2.2.0 - postcss-svgo@6.0.3(postcss@8.5.9): + postcss-svgo@6.0.3(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-value-parser: 4.2.0 svgo: 3.3.3 - postcss-unique-selectors@6.0.4(postcss@8.5.9): + postcss-unique-selectors@6.0.4(postcss@8.5.14): dependencies: - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 6.1.2 postcss-value-parser@4.2.0: {} - postcss-zindex@6.0.2(postcss@8.5.9): - dependencies: - postcss: 8.5.9 - - postcss@8.4.49: + postcss-zindex@6.0.2(postcss@8.5.14): dependencies: - nanoid: 3.3.11 - picocolors: 1.1.1 - source-map-js: 1.2.1 + postcss: 8.5.14 - postcss@8.5.9: + postcss@8.5.14: dependencies: nanoid: 3.3.11 picocolors: 1.1.1 @@ -24985,9 +24884,7 @@ snapshots: forwarded: 0.2.0 ipaddr.js: 1.9.1 - psl@1.15.0: - dependencies: - punycode: 2.3.1 + punycode.js@2.3.1: {} punycode@2.3.1: {} @@ -25022,8 +24919,6 @@ snapshots: split-on-first: 1.1.0 strict-uri-encode: 2.0.0 - querystringify@2.2.0: {} - queue-microtask@1.2.3: {} queue@6.0.2: @@ -25034,10 +24929,6 @@ snapshots: quick-lru@5.1.1: {} - randombytes@2.1.0: - dependencies: - safe-buffer: 5.2.1 - range-parser@1.2.0: {} range-parser@1.2.1: {} @@ -25075,10 +24966,6 @@ snapshots: - bufferutil - utf-8-validate - react-docgen-typescript@1.22.0(typescript@6.0.3): - dependencies: - typescript: 6.0.3 - react-docgen-typescript@2.2.2(typescript@6.0.3): dependencies: typescript: 6.0.3 @@ -25184,7 +25071,7 @@ snapshots: react-native-markdown-display@7.0.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.3))(@react-native/metro-config@0.85.3(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0): dependencies: css-to-react-native: 3.2.0 - markdown-it: 10.0.0 + markdown-it: 14.1.1 prop-types: 15.8.1 react: 19.2.0 react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.3))(@react-native/metro-config@0.85.3(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0) @@ -25908,11 +25795,13 @@ snapshots: transitivePeerDependencies: - supports-color + rrweb-cssom@0.8.0: {} + rtlcss@4.3.0: dependencies: escalade: 3.2.0 picocolors: 1.1.1 - postcss: 8.5.9 + postcss: 8.5.14 strip-json-comments: 3.1.1 run-applescript@7.1.0: {} @@ -26037,9 +25926,7 @@ snapshots: serialize-error@2.1.0: {} - serialize-javascript@6.0.2: - dependencies: - randombytes: 2.1.0 + serialize-javascript@7.0.5: {} serve-handler@6.1.7: dependencies: @@ -26529,8 +26416,6 @@ snapshots: strip-json-comments@3.1.1: {} - strnum@1.1.2: {} - strnum@2.2.3: {} structured-headers@0.4.1: {} @@ -26543,10 +26428,10 @@ snapshots: dependencies: inline-style-parser: 0.2.7 - stylehacks@6.1.1(postcss@8.5.9): + stylehacks@6.1.1(postcss@8.5.14): dependencies: browserslist: 4.28.2 - postcss: 8.5.9 + postcss: 8.5.14 postcss-selector-parser: 6.1.2 styleq@0.1.3: {} @@ -26707,6 +26592,12 @@ snapshots: tinyspy@4.0.4: {} + tldts-core@6.1.86: {} + + tldts@6.1.86: + dependencies: + tldts-core: 6.1.86 + tmcp@1.19.3(typescript@6.0.3): dependencies: '@standard-schema/spec': 1.1.0 @@ -26731,16 +26622,13 @@ snapshots: totalist@3.0.1: {} - tough-cookie@4.1.4: + tough-cookie@5.1.2: dependencies: - psl: 1.15.0 - punycode: 2.3.1 - universalify: 0.2.0 - url-parse: 1.5.10 + tldts: 6.1.86 tr46@0.0.3: {} - tr46@3.0.0: + tr46@5.1.1: dependencies: punycode: 2.3.1 @@ -26883,7 +26771,7 @@ snapshots: ua-parser-js@1.0.41: {} - uc.micro@1.0.6: {} + uc.micro@2.1.0: {} unbox-primitive@1.1.0: dependencies: @@ -26957,8 +26845,6 @@ snapshots: universalify@0.1.2: {} - universalify@0.2.0: {} - universalify@2.0.1: {} unpipe@1.0.0: {} @@ -27032,11 +26918,6 @@ snapshots: optionalDependencies: file-loader: 6.2.0(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))) - url-parse@1.5.10: - dependencies: - querystringify: 2.2.0 - requires-port: 1.0.0 - use-callback-ref@1.3.3(@types/react@19.2.14)(react@19.2.3): dependencies: react: 19.2.3 @@ -27160,7 +27041,7 @@ snapshots: dependencies: lightningcss: 1.32.0 picomatch: 4.0.4 - postcss: 8.5.9 + postcss: 8.5.14 rolldown: 1.0.0-rc.15 tinyglobby: 0.2.16 optionalDependencies: @@ -27175,9 +27056,9 @@ snapshots: vlq@1.0.1: {} - w3c-xmlserializer@4.0.0: + w3c-xmlserializer@5.0.0: dependencies: - xml-name-validator: 4.0.0 + xml-name-validator: 5.0.0 walker@1.0.8: dependencies: @@ -27409,13 +27290,13 @@ snapshots: websocket-extensions@0.1.4: {} - whatwg-encoding@2.0.0: + whatwg-encoding@3.1.1: dependencies: iconv-lite: 0.6.3 whatwg-fetch@3.6.20: {} - whatwg-mimetype@3.0.0: {} + whatwg-mimetype@4.0.0: {} whatwg-url-minimum@0.1.2: {} @@ -27425,9 +27306,9 @@ snapshots: punycode: 2.3.1 webidl-conversions: 5.0.0 - whatwg-url@11.0.0: + whatwg-url@14.2.0: dependencies: - tr46: 3.0.0 + tr46: 5.1.1 webidl-conversions: 7.0.0 whatwg-url@5.0.0: @@ -27545,7 +27426,9 @@ snapshots: dependencies: sax: 1.6.0 - xml-name-validator@4.0.0: {} + xml-name-validator@5.0.0: {} + + xml-naming@0.1.0: {} xml2js@0.6.0: dependencies: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index e4bfb40622..c2cb733d0f 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -7,3 +7,22 @@ linkWorkspacePackages: true ignoreScripts: true nodeLinker: hoisted shamefullyHoist: true +overrides: + '@types/markdown-it': ^14.0.1 + '@babel/plugin-transform-modules-systemjs': 7.29.4 + '@tootallnate/once': 3.0.1 + '@xmldom/xmldom': 0.8.13 + fast-uri: 3.1.2 + fast-xml-builder: 1.2.0 + fast-xml-parser: 5.7.2 + follow-redirects: 1.16.0 + jest-environment-jsdom>jsdom: 26.1.0 + lodash: ^4.18.1 + markdown-it: ^14.0.0 + minimatch@3: ~3.1.3 + postcss: 8.5.14 + react-docgen-typescript: 2.2.2 + serialize-javascript: 7.0.5 + svgo: 3.3.3 + webpack-dev-server: ^5.2.2 + zod-validation-error: ^4.0.0 From c1698b0456bb8d2aa9efee529d7068697f67200f Mon Sep 17 00:00:00 2001 From: Daniel Williams Date: Sun, 10 May 2026 17:39:58 +0100 Subject: [PATCH 2/2] changeset --- .changeset/hot-wings-brake.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .changeset/hot-wings-brake.md diff --git a/.changeset/hot-wings-brake.md b/.changeset/hot-wings-brake.md new file mode 100644 index 0000000000..144e1ec3e7 --- /dev/null +++ b/.changeset/hot-wings-brake.md @@ -0,0 +1,13 @@ +--- +'@storybook/addon-ondevice-actions': patch +'@storybook/addon-ondevice-backgrounds': patch +'@storybook/addon-ondevice-controls': patch +'@storybook/addon-ondevice-notes': patch +'@storybook/react-native': patch +'@storybook/react-native-theming': patch +'@storybook/react-native-ui': patch +'@storybook/react-native-ui-common': patch +'@storybook/react-native-ui-lite': patch +--- + +apply npm audit fixes