diff --git a/.changeset/little-points-ask.md b/.changeset/little-points-ask.md
new file mode 100644
index 0000000000..f782552302
--- /dev/null
+++ b/.changeset/little-points-ask.md
@@ -0,0 +1,13 @@
+---
+'@storybook/react-native-ui-common': patch
+'@storybook/addon-ondevice-backgrounds': patch
+'@storybook/react-native-theming': patch
+'@storybook/react-native-ui-lite': patch
+'@storybook/addon-ondevice-controls': patch
+'@storybook/addon-ondevice-actions': patch
+'@storybook/react-native-ui': patch
+'@storybook/addon-ondevice-notes': patch
+'@storybook/react-native': patch
+---
+
+liteui animation changes and select control adjustments
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index 02661601f3..aa0ddd0f46 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -25,7 +25,7 @@ jobs:
- name: Set node version
uses: actions/setup-node@v4
with:
- node-version: 24
+ node-version: 26
cache: 'pnpm'
- name: Install
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 3bf503385d..defe3f2d07 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -31,7 +31,7 @@ jobs:
- uses: actions/setup-node@v4
with:
- node-version: 24
+ node-version: 26
cache: 'pnpm'
registry-url: 'https://registry.npmjs.org'
@@ -50,6 +50,10 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ - name: Update lockfile (canary)
+ if: inputs.release_type == 'canary'
+ run: pnpm install --no-frozen-lockfile
+
- name: Publish (canary)
if: inputs.release_type == 'canary'
run: pnpm changeset publish --tag canary
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index ad8b3dc54f..3687fc1776 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -18,7 +18,7 @@ jobs:
- name: Set node version
uses: actions/setup-node@v4
with:
- node-version: 24
+ node-version: 26
cache: 'pnpm'
- name: install and compile
run: pnpm install --frozen-lockfile
diff --git a/.gitignore b/.gitignore
index 32f7564f36..3cdcb860a7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -36,3 +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
diff --git a/.nvmrc b/.nvmrc
index f677377056..6f4247a625 100644
--- a/.nvmrc
+++ b/.nvmrc
@@ -1 +1 @@
-24.11.1
\ No newline at end of file
+26
diff --git a/.prettierignore b/.prettierignore
index 71e29b148d..7b19f79400 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -9,5 +9,6 @@ examples/repack-example/.rnstorybook/storybook.requires.ts
docs/.docusaurus
docs/build
.claude/
+.zed/
.changeset/
examples/expo-example/assets
diff --git a/.zed/settings.json b/.zed/settings.json
new file mode 100644
index 0000000000..4ae6354a61
--- /dev/null
+++ b/.zed/settings.json
@@ -0,0 +1,13 @@
+// Folder-specific settings
+//
+// For a full list of overridable settings, and general information on folder-specific settings,
+// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
+{
+ "code_actions_on_format": {
+ "source.fixAll.eslint": true,
+ },
+ "format_on_save": "on",
+ "formatter": "prettier",
+
+ "language_servers": ["!biome", "eslint", "vtsls"],
+}
diff --git a/docs/package.json b/docs/package.json
index 554ee02c7b..ec1f190e3f 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -34,16 +34,16 @@
"@mdx-js/react": "^3.1.1",
"clsx": "^2.1.1",
"prism-react-renderer": "^2.4.1",
- "react": "19.2.0",
- "react-dom": "19.2.0"
+ "react": "19.2.3",
+ "react-dom": "19.2.3"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.10.0",
"@docusaurus/tsconfig": "^3.10.0",
"@docusaurus/types": "^3.10.0",
- "typescript": "~5.9.3"
+ "typescript": "~6.0.3"
},
"engines": {
- "node": ">=22.18.0"
+ "node": ">=26.0.0"
}
}
diff --git a/docs/tsconfig.json b/docs/tsconfig.json
index 920d7a6523..fe30ca2a2c 100644
--- a/docs/tsconfig.json
+++ b/docs/tsconfig.json
@@ -1,8 +1,5 @@
{
// This file is not used in compilation. It is here just for a nice editor experience.
"extends": "@docusaurus/tsconfig",
- "compilerOptions": {
- "baseUrl": "."
- },
"exclude": [".docusaurus", "build"]
}
diff --git a/examples/expo-example/.rnstorybook/index.tsx b/examples/expo-example/.rnstorybook/index.tsx
index 9167ca0436..ec054e0000 100644
--- a/examples/expo-example/.rnstorybook/index.tsx
+++ b/examples/expo-example/.rnstorybook/index.tsx
@@ -1,7 +1,7 @@
import AsyncStorage from '@react-native-async-storage/async-storage';
import { LiteUI } from '@storybook/react-native-ui-lite';
import { StatusBar, View } from 'react-native';
-import { SafeAreaView, SafeAreaProvider } from 'react-native-safe-area-context';
+import { SafeAreaProvider, SafeAreaView } from 'react-native-safe-area-context';
import { view } from './storybook.requires';
const isScreenshotTesting = process.env.EXPO_PUBLIC_SCREENSHOT_TESTING === 'true';
diff --git a/examples/expo-example/.rnstorybook/storybook.requires.ts b/examples/expo-example/.rnstorybook/storybook.requires.ts
index 3af3167251..6e5a4cada9 100644
--- a/examples/expo-example/.rnstorybook/storybook.requires.ts
+++ b/examples/expo-example/.rnstorybook/storybook.requires.ts
@@ -65,7 +65,7 @@ const annotations = [
globalThis.STORIES = normalizedStories;
globalThis.STORYBOOK_WEBSOCKET = {
- host: '192.168.86.21',
+ host: '192.168.1.171',
port: 7007,
secured: false,
};
diff --git a/examples/expo-example/app.json b/examples/expo-example/app.json
index 8f6f1f6595..06db8b5ce5 100644
--- a/examples/expo-example/app.json
+++ b/examples/expo-example/app.json
@@ -39,5 +39,5 @@
"updates": {
"url": "https://u.expo.dev/ebfab020-5dff-44a5-a29e-a0a6e6c175b9"
},
- "plugins": ["@react-native-community/datetimepicker"]
+ "plugins": ["@react-native-community/datetimepicker", "expo-sqlite"]
}
diff --git a/examples/expo-example/babel.config.js b/examples/expo-example/babel.config.js
index 372219dca6..5b75777918 100644
--- a/examples/expo-example/babel.config.js
+++ b/examples/expo-example/babel.config.js
@@ -5,7 +5,13 @@ module.exports = function (api) {
return {
presets: [['babel-preset-expo']],
plugins: [
- ['babel-plugin-react-docgen-typescript', { exclude: 'node_modules' }],
+ [
+ 'babel-plugin-react-docgen-typescript',
+ {
+ include: 'examples/expo-example/.*\\.tsx$',
+ exclude: 'node_modules',
+ },
+ ],
'react-native-worklets/plugin',
],
};
diff --git a/examples/expo-example/components/ControlExamples/Radio/Radio.stories.tsx b/examples/expo-example/components/ControlExamples/Radio/Radio.stories.tsx
index cd2abb2d9d..c1b1636f03 100644
--- a/examples/expo-example/components/ControlExamples/Radio/Radio.stories.tsx
+++ b/examples/expo-example/components/ControlExamples/Radio/Radio.stories.tsx
@@ -23,3 +23,15 @@ export const Basic: Story = {
selection: radio_stations[0],
},
};
+
+export const Inline: Story = {
+ argTypes: {
+ selection: {
+ options: radio_stations,
+ control: { type: 'inline-radio' },
+ },
+ },
+ args: {
+ selection: radio_stations[1],
+ },
+};
diff --git a/examples/expo-example/components/ControlExamples/Radio/Radio.test.tsx b/examples/expo-example/components/ControlExamples/Radio/Radio.test.tsx
index 950287581e..19e8d53dec 100644
--- a/examples/expo-example/components/ControlExamples/Radio/Radio.test.tsx
+++ b/examples/expo-example/components/ControlExamples/Radio/Radio.test.tsx
@@ -2,10 +2,16 @@ import { render, screen } from '@testing-library/react-native';
import { composeStories } from '@storybook/react';
import * as RadioStories from './Radio.stories';
-const { Basic } = composeStories(RadioStories);
+const { Basic, Inline } = composeStories(RadioStories);
test('radio story renders', async () => {
await render();
screen.getByText('104.8MHz');
});
+
+test('inline radio story renders', async () => {
+ await render();
+
+ screen.getByText('909 kHz');
+});
diff --git a/examples/expo-example/components/ControlExamples/Select/Select.stories.tsx b/examples/expo-example/components/ControlExamples/Select/Select.stories.tsx
index 84a6058553..7e6e12af25 100644
--- a/examples/expo-example/components/ControlExamples/Select/Select.stories.tsx
+++ b/examples/expo-example/components/ControlExamples/Select/Select.stories.tsx
@@ -3,6 +3,8 @@ import { SelectExample } from './Select';
const arrows = { ArrowUp: '⬆', ArrowDown: '⬇', ArrowLeft: '⬅️', ArrowRight: '➡️' };
+const manyArrows = Array.from({ length: 40 }, (_, index) => `Option ${index + 1}`);
+
const meta = {
component: SelectExample,
argTypes: {
@@ -70,3 +72,33 @@ export const WithMapping: Story = {
},
},
};
+
+export const ManyOptions: Story = {
+ args: {
+ arrow: manyArrows[0],
+ },
+
+ argTypes: {
+ arrow: {
+ options: manyArrows,
+ control: {
+ type: 'select',
+ },
+ },
+ },
+};
+
+export const MultiSelect: Story = {
+ args: {
+ arrow: [manyArrows[0], manyArrows[1], manyArrows[2]],
+ },
+
+ argTypes: {
+ arrow: {
+ options: manyArrows,
+ control: {
+ type: 'multi-select',
+ },
+ },
+ },
+};
diff --git a/examples/expo-example/components/ControlExamples/Select/Select.tsx b/examples/expo-example/components/ControlExamples/Select/Select.tsx
index 0473320006..7bcdcd1489 100644
--- a/examples/expo-example/components/ControlExamples/Select/Select.tsx
+++ b/examples/expo-example/components/ControlExamples/Select/Select.tsx
@@ -1,7 +1,9 @@
import { Text } from 'react-native';
export interface Props {
- arrow: string;
+ arrow: string | string[];
}
-export const SelectExample = ({ arrow }: Props) => Selected: {arrow};
+export const SelectExample = ({ arrow }: Props) => (
+ Selected: {Array.isArray(arrow) ? arrow.join(', ') : arrow}
+);
diff --git a/examples/expo-example/package.json b/examples/expo-example/package.json
index 2fb9383f07..2f63c111d0 100644
--- a/examples/expo-example/package.json
+++ b/examples/expo-example/package.json
@@ -4,20 +4,21 @@
"private": true,
"main": "index.js",
"scripts": {
- "android": "EXPO_PUBLIC_STORYBOOK_ENABLED=true expo start --android",
+ "prebuild": "expo prebuild",
+ "android": "EXPO_PUBLIC_STORYBOOK_ENABLED=true expo run:android",
"build-web-storybook": "storybook build",
"check": "tsc --noEmit",
- "disabled-example": "expo start",
+ "disabled-example": "expo start --dev-client",
"e2e": "maestro test .maestro/storybook-screenshots.yaml --test-output-dir .maestro/output",
"e2e:baseline": "maestro test .maestro/storybook-screenshots.capture.yaml --test-output-dir .maestro/output",
"eas-build-post-install": "cd ../.. && pnpm build",
"format": "prettier --write .",
"gen-maestro": "npx rn-storybook-test@alpha gen-maestro",
- "ios": "EXPO_PUBLIC_STORYBOOK_ENABLED=true expo start --ios",
+ "ios": "EXPO_PUBLIC_STORYBOOK_ENABLED=true expo run:ios",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
- "storybook": "EXPO_PUBLIC_STORYBOOK_ENABLED=true expo start",
- "storybook:lite": "EXPO_PUBLIC_STORYBOOK_ENABLED=true EXPO_PUBLIC_LITE_UI=true expo start",
- "storybook:secure": "pnpm storybook:secure:cert && EXPO_PUBLIC_STORYBOOK_ENABLED=true EXPO_PUBLIC_STORYBOOK_WS_SECURED=true expo start",
+ "storybook": "EXPO_PUBLIC_STORYBOOK_ENABLED=true expo start --dev-client",
+ "storybook:lite": "EXPO_PUBLIC_STORYBOOK_ENABLED=true EXPO_PUBLIC_LITE_UI=true expo start --dev-client",
+ "storybook:secure": "pnpm storybook:secure:cert && EXPO_PUBLIC_STORYBOOK_ENABLED=true EXPO_PUBLIC_STORYBOOK_WS_SECURED=true expo start --dev-client",
"storybook:secure:cert": "./scripts/generate-dev-cert.sh",
"storybook:test": "EXPO_PUBLIC_SCREENSHOT_TESTING=true EXPO_PUBLIC_STORYBOOK_ENABLED=true expo start",
"storybook:web": "storybook dev -p 6006",
@@ -30,11 +31,12 @@
"web": "EXPO_PUBLIC_STORYBOOK_ENABLED=true expo start --web"
},
"dependencies": {
- "@expo/metro-runtime": "~55.0.7",
+ "@expo/dom-webview": "^56.0.4",
+ "@expo/metro-runtime": "~56.0.5",
"@gorhom/bottom-sheet": "^5.2.8",
"@react-native-async-storage/async-storage": "2.2.0",
- "@react-native-community/datetimepicker": "8.6.0",
- "@react-native-community/slider": "5.1.2",
+ "@react-native-community/datetimepicker": "9.1.0",
+ "@react-native-community/slider": "5.2.0",
"@storybook/addon-ondevice-actions": "^10.4.0",
"@storybook/addon-ondevice-backgrounds": "^10.4.0",
"@storybook/addon-ondevice-controls": "^10.4.0",
@@ -45,18 +47,19 @@
"@storybook/react-native-ui-lite": "^10.4.0",
"@storybook/react-native-web-vite": "^10.3.2",
"babel-plugin-react-compiler": "^1.0.0",
- "expo": "^55.0.14",
- "expo-updates": "~55.0.16",
- "react": "19.2.0",
+ "expo": "56.0.0-preview.7",
+ "expo-sqlite": "~56.0.3",
+ "expo-updates": "~56.0.6",
+ "react": "19.2.3",
"react-compiler-runtime": "^1.0.0",
- "react-dom": "19.2.0",
- "react-native": "0.83.4",
- "react-native-gesture-handler": "~2.30.0",
- "react-native-reanimated": "~4.2.1",
- "react-native-safe-area-context": "^5",
- "react-native-svg": "15.15.3",
+ "react-dom": "19.2.3",
+ "react-native": "0.85.3",
+ "react-native-gesture-handler": "~2.31.2",
+ "react-native-reanimated": "~4.3.0",
+ "react-native-safe-area-context": "^5.7.0",
+ "react-native-svg": "15.15.4",
"react-native-web": "^0.21.2",
- "react-native-worklets": "0.7.2",
+ "react-native-worklets": "0.8.3",
"storybook": "^10.3.2",
"storybook-addon-deep-controls": "^0.10.0",
"ws": "^8.20.0"
@@ -66,14 +69,15 @@
"@dannyhw/rozenite-storybook": "0.0.2",
"@rozenite/metro": "^1.6.0",
"@testing-library/react-native": "14.0.0-beta.0",
+ "@types/jest": "^29.5.13",
"@types/react": "~19.2.14",
"@types/ws": "^8.18.1",
"babel-plugin-react-docgen-typescript": "^1.5.1",
"expo-atlas": "^0.4.3",
"jest": "^29.7.0",
- "jest-expo": "~55.0.11",
+ "jest-expo": "~56.0.0",
"test-renderer": "^0.15.0",
- "typescript": "~5.9.3",
+ "typescript": "~6.0.3",
"vite": "^8.0.5"
}
}
diff --git a/examples/expo-example/tsconfig.json b/examples/expo-example/tsconfig.json
index e934dea30a..ff6e5c7112 100644
--- a/examples/expo-example/tsconfig.json
+++ b/examples/expo-example/tsconfig.json
@@ -1,9 +1,9 @@
{
"compilerOptions": {
"skipLibCheck": true,
- "baseUrl": "./",
"strict": true,
- "esModuleInterop": true
+ "esModuleInterop": true,
+ "types": ["jest"]
},
"extends": "expo/tsconfig.base",
"include": [".rnstorybook/**/*", ".storybook/**/*", "./*"]
diff --git a/examples/expo-new-wrapper-example/app.json b/examples/expo-new-wrapper-example/app.json
index e16ad4de62..0d28a4de81 100644
--- a/examples/expo-new-wrapper-example/app.json
+++ b/examples/expo-new-wrapper-example/app.json
@@ -15,5 +15,6 @@
},
"experiments": {
"tsconfigPaths": true
- }
+ },
+ "plugins": ["@react-native-community/datetimepicker"]
}
diff --git a/examples/expo-new-wrapper-example/package.json b/examples/expo-new-wrapper-example/package.json
index d25b9e4ee5..533478decb 100644
--- a/examples/expo-new-wrapper-example/package.json
+++ b/examples/expo-new-wrapper-example/package.json
@@ -13,11 +13,11 @@
"check:types": "tsc --noEmit"
},
"dependencies": {
- "@expo/metro-runtime": "~55.0.7",
+ "@expo/metro-runtime": "~56.0.5",
"@gorhom/bottom-sheet": "^5.2.8",
"@react-native-async-storage/async-storage": "2.2.0",
- "@react-native-community/datetimepicker": "8.6.0",
- "@react-native-community/slider": "5.1.2",
+ "@react-native-community/datetimepicker": "9.1.0",
+ "@react-native-community/slider": "5.2.0",
"@storybook/addon-ondevice-actions": "^10.4.0",
"@storybook/addon-ondevice-backgrounds": "^10.4.0",
"@storybook/addon-ondevice-controls": "^10.4.0",
@@ -28,18 +28,18 @@
"@storybook/react-native-ui-lite": "^10.4.0",
"@storybook/react-native-web-vite": "^10.3.2",
"babel-plugin-react-compiler": "^1.0.0",
- "expo": "^55.0.14",
- "expo-updates": "~55.0.16",
- "react": "19.2.0",
+ "expo": "56.0.0-preview.7",
+ "expo-updates": "~56.0.6",
+ "react": "19.2.3",
"react-compiler-runtime": "^1.0.0",
- "react-dom": "19.2.0",
- "react-native": "0.83.4",
- "react-native-gesture-handler": "~2.30.0",
- "react-native-reanimated": "~4.2.1",
- "react-native-safe-area-context": "^5",
- "react-native-svg": "15.15.3",
+ "react-dom": "19.2.3",
+ "react-native": "0.85.3",
+ "react-native-gesture-handler": "~2.31.2",
+ "react-native-reanimated": "~4.3.0",
+ "react-native-safe-area-context": "^5.7.0",
+ "react-native-svg": "15.15.4",
"react-native-web": "^0.21.2",
- "react-native-worklets": "0.7.2",
+ "react-native-worklets": "0.8.3",
"storybook": "^10.3.2",
"storybook-addon-deep-controls": "^0.10.0",
"ws": "^8.20.0"
@@ -54,9 +54,9 @@
"babel-plugin-react-docgen-typescript": "^1.5.1",
"expo-atlas": "^0.4.3",
"jest": "^29.7.0",
- "jest-expo": "~55.0.11",
+ "jest-expo": "~56.0.0",
"test-renderer": "^0.15.0",
- "typescript": "~5.9.3",
+ "typescript": "~6.0.3",
"vite": "^8.0.5"
}
}
diff --git a/examples/expo-new-wrapper-example/tsconfig.json b/examples/expo-new-wrapper-example/tsconfig.json
index f500ad9fc5..633e757d64 100644
--- a/examples/expo-new-wrapper-example/tsconfig.json
+++ b/examples/expo-new-wrapper-example/tsconfig.json
@@ -1,7 +1,6 @@
{
"compilerOptions": {
"skipLibCheck": true,
- "baseUrl": "./",
"strict": true,
"esModuleInterop": true
},
diff --git a/examples/expo-router-example/app.json b/examples/expo-router-example/app.json
index 84bc7a9704..1f717d90b0 100644
--- a/examples/expo-router-example/app.json
+++ b/examples/expo-router-example/app.json
@@ -40,7 +40,8 @@
}
],
"expo-image",
- "expo-web-browser"
+ "expo-web-browser",
+ "expo-font"
],
"experiments": {
"typedRoutes": true,
diff --git a/examples/expo-router-example/package.json b/examples/expo-router-example/package.json
index 6ed486eaa1..510f40f012 100644
--- a/examples/expo-router-example/package.json
+++ b/examples/expo-router-example/package.json
@@ -25,35 +25,35 @@
"@storybook/react-native": "^10.4.0",
"@storybook/react-native-ui-lite": "^10.4.0",
"@storybook/react-native-web-vite": "^10.3.2",
- "expo": "^55.0.14",
- "expo-constants": "~55.0.15",
- "expo-font": "~55.0.6",
- "expo-haptics": "~55.0.14",
- "expo-image": "~55.0.9",
- "expo-linking": "~55.0.14",
- "expo-router": "~55.0.13",
- "expo-splash-screen": "~55.0.19",
- "expo-status-bar": "~55.0.5",
- "expo-symbols": "~55.0.7",
- "expo-system-ui": "~55.0.16",
- "expo-web-browser": "~55.0.14",
- "react": "19.2.0",
- "react-dom": "19.2.0",
- "react-native": "0.83.4",
- "react-native-gesture-handler": "~2.30.0",
- "react-native-reanimated": "~4.2.1",
- "react-native-safe-area-context": "^5",
- "react-native-screens": "~4.23.0",
+ "expo": "56.0.0-preview.7",
+ "expo-constants": "~56.0.6",
+ "expo-font": "~56.0.3",
+ "expo-haptics": "~56.0.3",
+ "expo-image": "~56.0.4",
+ "expo-linking": "~56.0.4",
+ "expo-router": "~56.1.1",
+ "expo-splash-screen": "~56.0.4",
+ "expo-status-bar": "~56.0.4",
+ "expo-symbols": "~56.0.5",
+ "expo-system-ui": "~56.0.4",
+ "expo-web-browser": "~56.0.4",
+ "react": "19.2.3",
+ "react-dom": "19.2.3",
+ "react-native": "0.85.3",
+ "react-native-gesture-handler": "~2.31.2",
+ "react-native-reanimated": "~4.3.0",
+ "react-native-safe-area-context": "^5.7.0",
+ "react-native-screens": "4.25.0-beta.3",
"react-native-web": "^0.21.2",
- "react-native-worklets": "0.7.2",
+ "react-native-worklets": "0.8.3",
"storybook": "^10.3.2",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/react": "~19.2.14",
"eslint": "^9.39.4",
- "eslint-config-expo": "^55.0.0",
- "typescript": "~5.9.3"
+ "eslint-config-expo": "^56.0.2",
+ "typescript": "~6.0.3"
},
"private": true
}
diff --git a/examples/repack-example/package.json b/examples/repack-example/package.json
index 03e85d6833..abf35bbdc5 100644
--- a/examples/repack-example/package.json
+++ b/examples/repack-example/package.json
@@ -14,10 +14,10 @@
"pods:update": "(cd ios && bundle install && bundle exec pod update)"
},
"dependencies": {
+ "@react-native-async-storage/async-storage": "2.2.0",
+ "@react-native-community/datetimepicker": "9.1.0",
+ "@react-native-community/slider": "5.2.0",
"@react-native/new-app-screen": "0.83.4",
- "react": "19.2.0",
- "react-native": "0.83.4",
- "react-native-safe-area-context": "^5",
"@storybook/addon-ondevice-actions": "^10.4.0",
"@storybook/addon-ondevice-backgrounds": "^10.4.0",
"@storybook/addon-ondevice-controls": "^10.4.0",
@@ -25,10 +25,10 @@
"@storybook/react": "^10.3.2",
"@storybook/react-native": "^10.4.0",
"@storybook/react-native-ui-lite": "^10.4.0",
- "storybook": "^10.3.2",
- "@react-native-async-storage/async-storage": "2.2.0",
- "@react-native-community/datetimepicker": "8.6.0",
- "@react-native-community/slider": "5.1.2"
+ "react": "19.2.3",
+ "react-native": "0.85.3",
+ "react-native-safe-area-context": "^5.7.0",
+ "storybook": "^10.3.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
@@ -53,7 +53,7 @@
"prettier": "^3.8.1",
"react-native-test-app": "^5.1.4",
"react-test-renderer": "19.2.0",
- "typescript": "~5.9.3"
+ "typescript": "~6.0.3"
},
"engines": {
"node": ">=20"
diff --git a/package.json b/package.json
index e5a24d9ca2..0cd360b7b2 100644
--- a/package.json
+++ b/package.json
@@ -49,16 +49,16 @@
"@prettier/plugin-oxc": "^0.1.3",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
- "eslint-config-expo": "^55.0.0",
+ "eslint-config-expo": "^56.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "7.0.1",
"prettier": "^3.8.1",
"sherif": "^1.11.0",
- "typescript": "~5.9.3"
+ "typescript": "~6.0.3"
},
- "packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017",
+ "packageManager": "pnpm@11.0.9+sha512.34ce82e6780233cf9cad8685029a8f81d2e06196c5a9bad98879f7424940c6817c4e4524fb7d38b8553ceed48b9758b8ebaf1abd3600c232c4c8cf7366086f38",
"engines": {
- "node": ">=22.18.0"
+ "node": ">=26.0.0"
},
"pnpm": {
"overrides": {
diff --git a/packages/ondevice-actions/package.json b/packages/ondevice-actions/package.json
index 9410d6e38d..2f0993193d 100644
--- a/packages/ondevice-actions/package.json
+++ b/packages/ondevice-actions/package.json
@@ -33,7 +33,7 @@
},
"devDependencies": {
"storybook": "^10.3.2",
- "typescript": "~5.9.3"
+ "typescript": "~6.0.3"
},
"peerDependencies": {
"react": "*",
diff --git a/packages/ondevice-actions/src/containers/ActionLogger/index.tsx b/packages/ondevice-actions/src/containers/ActionLogger/index.tsx
index 2f953e68ba..491710aa56 100644
--- a/packages/ondevice-actions/src/containers/ActionLogger/index.tsx
+++ b/packages/ondevice-actions/src/containers/ActionLogger/index.tsx
@@ -6,7 +6,7 @@ import { ActionDisplay, EVENT_ID } from 'storybook/actions';
import { ActionLogger as ActionLoggerComponent } from '../../components/ActionLogger';
interface ActionLoggerProps {
- active: boolean;
+ active?: boolean;
}
const safeDeepEqual = (a: any, b: any): boolean => {
diff --git a/packages/ondevice-backgrounds/package.json b/packages/ondevice-backgrounds/package.json
index 9339f30fae..f4fb0cb723 100644
--- a/packages/ondevice-backgrounds/package.json
+++ b/packages/ondevice-backgrounds/package.json
@@ -37,7 +37,7 @@
},
"devDependencies": {
"storybook": "^10.3.2",
- "typescript": "~5.9.3"
+ "typescript": "~6.0.3"
},
"peerDependencies": {
"react": "*",
diff --git a/packages/ondevice-backgrounds/src/BackgroundPanel.tsx b/packages/ondevice-backgrounds/src/BackgroundPanel.tsx
index 72cd31e4e1..bcbc3acb35 100644
--- a/packages/ondevice-backgrounds/src/BackgroundPanel.tsx
+++ b/packages/ondevice-backgrounds/src/BackgroundPanel.tsx
@@ -62,7 +62,7 @@ export type Channel = ReturnType;
interface BackgroundPanelProps {
channel: Channel;
api: API;
- active: boolean;
+ active?: boolean;
}
const BackgroundPanel = ({ active, api, channel }: BackgroundPanelProps) => {
diff --git a/packages/ondevice-backgrounds/tsconfig.json b/packages/ondevice-backgrounds/tsconfig.json
index f628b09b74..312fa793bd 100644
--- a/packages/ondevice-backgrounds/tsconfig.json
+++ b/packages/ondevice-backgrounds/tsconfig.json
@@ -1,6 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
+ "rootDir": "./src",
"outDir": "dist/"
},
"include": ["src/**/*"],
diff --git a/packages/ondevice-controls/package.json b/packages/ondevice-controls/package.json
index ce4f116eb3..dd085fa90e 100644
--- a/packages/ondevice-controls/package.json
+++ b/packages/ondevice-controls/package.json
@@ -42,7 +42,7 @@
"@gorhom/bottom-sheet": "*",
"cross-env": "^10.1.0",
"storybook": "^10.3.2",
- "typescript": "~5.9.3"
+ "typescript": "~6.0.3"
},
"peerDependencies": {
"@gorhom/bottom-sheet": ">=4",
diff --git a/packages/ondevice-controls/src/Panel.tsx b/packages/ondevice-controls/src/Panel.tsx
index f3934bba05..c85e55d487 100644
--- a/packages/ondevice-controls/src/Panel.tsx
+++ b/packages/ondevice-controls/src/Panel.tsx
@@ -1,6 +1,11 @@
-import React from 'react';
+import { ReactNode } from 'react';
-export const AddonPanel = ({ active, children }) => {
+interface AddonPanelProps {
+ active?: boolean;
+ children: ReactNode;
+}
+
+export const AddonPanel = ({ children }: AddonPanelProps) => {
return <>{children}>;
};
diff --git a/packages/ondevice-controls/src/components/RadioSelect.tsx b/packages/ondevice-controls/src/components/RadioSelect.tsx
index 6118e7348b..2aeb628928 100644
--- a/packages/ondevice-controls/src/components/RadioSelect.tsx
+++ b/packages/ondevice-controls/src/components/RadioSelect.tsx
@@ -7,39 +7,44 @@ interface RadioProps {
isInline: boolean;
}
+const radioHitSlop = { top: 8, right: 12, bottom: 8, left: 12 };
+
const RadioContainer = styled.View<{ isInline: boolean }>(({ isInline }) => ({
flexDirection: isInline ? 'row' : 'column',
alignItems: isInline ? 'center' : 'flex-start',
flexWrap: 'wrap',
- gap: 10,
+ gap: isInline ? 8 : 2,
}));
-const RadioTouchable = styled.TouchableOpacity(() => ({
+const RadioTouchable = styled.TouchableOpacity<{ isInline: boolean }>(({ isInline }) => ({
alignItems: 'center',
flexDirection: 'row',
+ minHeight: isInline ? 36 : 32,
+ paddingVertical: isInline ? 4 : 2,
+ paddingRight: 6,
}));
const RadioCircle = styled.View(({ theme }) => ({
- width: 16,
- height: 16,
- borderWidth: 1,
+ width: 20,
+ height: 20,
+ borderWidth: 2,
borderColor: theme.appBorderColor,
- borderRadius: 8,
+ borderRadius: 10,
backgroundColor: theme.background.content,
alignItems: 'center',
justifyContent: 'center',
}));
const RadioInnerCircle = styled.View<{ selected: boolean }>(({ theme, selected }) => ({
- width: 8,
- height: 8,
- borderRadius: 4,
+ width: 10,
+ height: 10,
+ borderRadius: 5,
backgroundColor: selected ? theme.color.positive : theme.background.content,
}));
const RadioLabel = styled.Text(({ theme }) => ({
- fontSize: theme.typography.size.s1,
- paddingStart: 10,
+ fontSize: theme.typography.size.s1 + 1,
+ paddingStart: 12,
color: theme.color.defaultText,
}));
@@ -49,7 +54,11 @@ const RadioSelect = ({ data = [], value = '', onChange, isInline }: RadioProps)
{data.map((item) => (
{
onChange(item);
}}
diff --git a/packages/ondevice-controls/src/components/SelectModal.tsx b/packages/ondevice-controls/src/components/SelectModal.tsx
index 7b77793d6e..fd0bd24ceb 100644
--- a/packages/ondevice-controls/src/components/SelectModal.tsx
+++ b/packages/ondevice-controls/src/components/SelectModal.tsx
@@ -1,614 +1,266 @@
-// NOTE This is adapted from react-native-modal-selector https://github.com/peacechen/react-native-modal-selector/blob/master/index.js
-
-import { ComponentType, ReactNode, useCallback, useMemo, useState } from 'react';
-
+import { styled } from '@storybook/react-native-theming';
+import { ReactNode, useCallback, useEffect, useMemo, useState } from 'react';
import {
- FlatList,
ScrollView,
- StyleProp,
StyleSheet,
- Text,
- TextStyle,
TouchableOpacity,
TouchableWithoutFeedback,
+ useWindowDimensions,
View,
- ViewProps,
- ViewStyle,
} from 'react-native';
import { ModalPortal } from './ModalPortal';
-const PADDING = 8;
-const BORDER_RADIUS = 5;
-const FONT_SIZE = 16;
-const HIGHLIGHT_COLOR = 'rgba(0,118,255,0.9)';
-
-type SupportedOrientation =
- | 'portrait'
- | 'portrait-upside-down'
- | 'landscape'
- | 'landscape-left'
- | 'landscape-right';
+export interface SelectOptionItem {
+ key: any;
+ label: string;
+}
interface SelectModalProps {
- data: any[];
- onChange?: (item: any | any[]) => void;
- onModalOpen?: () => void;
- onModalClose?: () => void;
- keyExtractor?: (item: any) => string;
- labelExtractor?: (item: any) => string;
- visible?: boolean;
- closeOnChange?: boolean;
- initValue?: string | string[];
- listType?: 'SCROLLVIEW' | 'FLATLIST';
- animationType?: 'none' | 'slide' | 'fade';
- style?: StyleProp;
- selectStyle?: StyleProp;
- selectTextStyle?: StyleProp;
- optionStyle?: StyleProp;
- optionTextStyle?: StyleProp;
- optionContainerStyle?: StyleProp;
- sectionStyle?: StyleProp;
- childrenContainerStyle?: StyleProp;
- touchableStyle?: StyleProp;
- touchableActiveOpacity?: number;
- sectionTextStyle?: StyleProp;
- selectedItemTextStyle?: StyleProp;
- cancelContainerStyle?: StyleProp;
- cancelStyle?: StyleProp;
- cancelTextStyle?: StyleProp;
- overlayStyle?: StyleProp;
- initValueTextStyle?: StyleProp;
- cancelText?: string;
- disabled?: boolean;
- supportedOrientations?: SupportedOrientation[];
- keyboardShouldPersistTaps?: boolean | 'always' | 'never' | 'handled';
- backdropPressToClose?: boolean;
- openButtonContainerAccessible?: boolean;
- listItemAccessible?: boolean;
- cancelButtonAccessible?: boolean;
- scrollViewAccessible?: boolean;
- scrollViewAccessibilityLabel?: string;
- cancelButtonAccessibilityLabel?: string;
- passThruProps?: any;
- selectTextPassThruProps?: any;
- optionTextPassThruProps?: any;
- cancelTextPassThruProps?: any;
- scrollViewPassThruProps?: any;
- modalOpenerHitSlop?: any;
- customSelector?: ReactNode;
- selectedKey?: any;
- children?: ReactNode;
- header?: ReactNode;
- optionsTestIDPrefix?: string;
- onEndReached?: () => void;
- multiselect?: boolean;
- selectedSeparator?: string;
- maxSelectedItems?: number;
- selectedItemIndicatorStyle?: StyleProp;
- selectedItemIndicatorColor?: string;
- doneText?: string;
- onDone?: (selectedItems: any[]) => void;
+ options: SelectOptionItem[];
+ value: any;
+ multiple?: boolean;
+ onChange: (value: any) => void;
+ children: ReactNode;
}
const styles = StyleSheet.create({
- overlayStyle: {
+ overlay: {
flex: 1,
padding: '5%',
justifyContent: 'center',
backgroundColor: 'rgba(0,0,0,0.7)',
},
-
- optionContainer: {
- borderRadius: BORDER_RADIUS,
- flexShrink: 1,
- marginBottom: 8,
- padding: PADDING,
- backgroundColor: 'rgba(255,255,255,0.8)',
- },
-
- cancelContainer: {
- alignSelf: 'stretch',
- marginTop: 8,
- },
-
- selectStyle: {
- borderColor: '#ccc',
- borderWidth: 1,
- padding: PADDING,
- borderRadius: BORDER_RADIUS,
- },
-
- selectTextStyle: {
- textAlign: 'center',
- color: '#333',
- fontSize: FONT_SIZE,
- },
-
- cancelStyle: {
- borderRadius: BORDER_RADIUS,
- backgroundColor: 'rgba(255,255,255,0.8)',
- padding: PADDING,
- },
-
- cancelTextStyle: {
- textAlign: 'center',
- color: '#333',
- fontSize: FONT_SIZE,
+ scrollContent: {
+ padding: 8,
+ paddingHorizontal: 10,
},
-
- optionStyle: {
- paddingVertical: PADDING,
+ option: {
+ minHeight: 34,
+ paddingVertical: 8,
paddingHorizontal: 16,
borderBottomWidth: 1,
- borderBottomColor: '#ccc',
},
-
- optionTextStyle: {
- fontSize: FONT_SIZE,
- color: '#333',
- flex: 1,
- textAlign: 'left',
+ lastOption: {
+ borderBottomWidth: 0,
},
-
- sectionStyle: {
- padding: PADDING * 2,
- borderBottomWidth: 1,
- borderBottomColor: '#ccc',
- },
-
- sectionTextStyle: {
- textAlign: 'center',
- fontSize: FONT_SIZE,
+ optionContent: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ justifyContent: 'space-between',
},
-
- initValueTextStyle: {
- textAlign: 'center',
- fontSize: FONT_SIZE,
- color: '#d3d3d3',
+ optionText: {
+ flex: 1,
+ textAlign: 'left',
},
-
- selectedItemIndicator: {
+ indicator: {
width: 24,
height: 24,
alignItems: 'center',
justifyContent: 'center',
marginLeft: 8,
},
-
checkmark: {
- fontSize: FONT_SIZE,
- color: HIGHLIGHT_COLOR,
+ fontSize: 16,
},
-
- optionRow: {
- flexDirection: 'row',
- alignItems: 'center',
- justifyContent: 'space-between',
+ footer: {
+ padding: 8,
},
-
- doneContainer: {
- alignSelf: 'stretch',
- marginTop: 8,
+ doneFooter: {
+ paddingBottom: 4,
},
-
- doneButton: {
- borderRadius: BORDER_RADIUS,
- backgroundColor: 'rgba(255,255,255,0.8)',
- padding: PADDING,
+ cancelFooter: {
+ paddingTop: 4,
},
-
- doneButtonText: {
+ buttonText: {
textAlign: 'center',
- fontSize: FONT_SIZE,
- color: HIGHLIGHT_COLOR,
},
});
-let componentIndex = 0;
+const Dialog = styled.View<{ maxHeight: number }>(({ theme, maxHeight }) => ({
+ maxHeight,
+ marginHorizontal: 24,
+ backgroundColor: theme.background.content,
+ borderColor: theme.appBorderColor,
+ borderWidth: 1,
+ borderRadius: 8,
+ overflow: 'hidden',
+ boxShadow: `0px 8px 24px 0px ${theme.color.border}`,
+ elevation: 10,
+}));
+
+const OptionButton = styled.View<{ selected: boolean }>(({ theme, selected }) => ({
+ borderBottomColor: theme.appBorderColor,
+ backgroundColor: selected ? theme.color.secondary : undefined,
+}));
+
+const OptionLabel = styled.Text<{ selected: boolean }>(({ theme, selected }) => ({
+ color: selected ? theme.color.lightest : theme.color.defaultText,
+ fontSize: theme.typography.size.s2,
+ fontWeight: selected ? theme.typography.weight.bold : 'normal',
+}));
+
+const Checkmark = styled.Text(({ theme }) => ({
+ color: theme.color.lightest,
+}));
+
+const Footer = styled.View(({ theme }) => ({
+ backgroundColor: theme.barBg,
+}));
+
+const FooterButton = styled.View<{ primary?: boolean }>(({ theme, primary }) => ({
+ minHeight: 32,
+ borderRadius: theme.input.borderRadius,
+ backgroundColor: primary ? theme.color.secondary : theme.button.background,
+ borderColor: primary ? theme.color.secondary : theme.button.border,
+ borderWidth: 1,
+ alignItems: 'center',
+ justifyContent: 'center',
+ paddingHorizontal: 12,
+}));
+
+const FooterButtonText = styled.Text<{ primary?: boolean }>(({ theme, primary }) => ({
+ color: primary ? theme.color.lightest : theme.input.color,
+ fontSize: theme.typography.size.s1,
+ fontWeight: theme.typography.weight.bold,
+}));
+
+const optionKey = (option: SelectOptionItem) => String(option.key);
+
+const valueKeys = (value: any, multiple: boolean) => {
+ if (multiple) {
+ return Array.isArray(value) ? value.map(String) : [];
+ }
+
+ return value === undefined || value === null ? [] : [String(value)];
+};
export const SelectModal = ({
- data = [],
+ options,
+ value,
+ multiple = false,
onChange,
- onModalOpen,
- onModalClose,
- keyExtractor = (item: any) => String(item.key || item.id || item),
- labelExtractor = (item: any) => String(item.label || item.name || item),
- closeOnChange = true,
- initValue = '',
- listType = 'SCROLLVIEW',
- animationType = 'slide',
- style,
- selectStyle: selectStyleProp,
- selectTextStyle: selectTextStyleProp,
- optionStyle: optionStyleProp,
- optionTextStyle: optionTextStyleProp,
- optionContainerStyle,
- sectionStyle: sectionStyleProp,
- childrenContainerStyle,
- touchableStyle,
- touchableActiveOpacity = 0.2,
- sectionTextStyle: sectionTextStyleProp,
- cancelContainerStyle,
- cancelStyle: cancelStyleProp,
- cancelTextStyle: cancelTextStyleProp,
- overlayStyle: overlayStyleProp,
- initValueTextStyle: initValueTextStyleProp,
- cancelText = 'Cancel',
- disabled = false,
- supportedOrientations = ['portrait'],
- keyboardShouldPersistTaps = 'always',
- backdropPressToClose = true,
- openButtonContainerAccessible = true,
- listItemAccessible = true,
- cancelButtonAccessible = true,
- scrollViewAccessible = true,
- scrollViewAccessibilityLabel,
- cancelButtonAccessibilityLabel,
- passThruProps,
- selectTextPassThruProps,
- optionTextPassThruProps,
- cancelTextPassThruProps,
- scrollViewPassThruProps,
- modalOpenerHitSlop,
- customSelector,
children,
- header,
- optionsTestIDPrefix = 'select-modal',
- onEndReached,
- multiselect = false,
- selectedSeparator = ', ',
- maxSelectedItems,
- selectedItemIndicatorStyle,
- selectedItemIndicatorColor = HIGHLIGHT_COLOR,
- doneText = 'Done',
- onDone,
}: SelectModalProps) => {
- const [modalVisible, setModalVisible] = useState(false);
- const [selected, setSelected] = useState(
- multiselect ? (Array.isArray(initValue) ? initValue : []) : initValue || ''
- );
- const [selectedItems, setSelectedItems] = useState(() => {
- if (multiselect) {
- if (Array.isArray(initValue)) {
- return data.filter((item) => initValue.includes(String(keyExtractor(item))));
- }
- return [];
- }
- // For single select, initialize with the item matching initValue
- const initialItem = data.find((item) => String(keyExtractor(item)) === String(initValue));
- return initialItem ? [initialItem] : [];
- });
-
- const selectedItemsMap = useMemo(() => {
- if (multiselect) {
- return (selectedItems || []).reduce((acc: Record, item) => {
- acc[keyExtractor(item)] = true;
- return acc;
- }, {});
- } else {
- // For single select, find the currently selected item
- const selectedItem = data.find((item) => labelExtractor(item) === selected);
- return selectedItem ? { [keyExtractor(selectedItem)]: true } : {};
- }
- }, [selectedItems, keyExtractor, multiselect, selected, data, labelExtractor]);
+ const { height } = useWindowDimensions();
+ const [visible, setVisible] = useState(false);
+ const [selectedKeys, setSelectedKeys] = useState(() => valueKeys(value, multiple));
- const open = useCallback(() => {
- if (!disabled) {
- setModalVisible(true);
- onModalOpen?.();
- }
- }, [disabled, onModalOpen]);
+ useEffect(() => {
+ setSelectedKeys(valueKeys(value, multiple));
+ }, [multiple, value]);
- const handleLongPress = useCallback(() => {
- open();
- }, [open]);
+ const selectedKeySet = useMemo(() => new Set(selectedKeys), [selectedKeys]);
const close = useCallback(() => {
- setModalVisible(false);
- onModalClose?.();
- }, [onModalClose]);
-
- const handleDone = useCallback(() => {
- if (multiselect) {
- onChange?.(selectedItems);
- onDone?.(selectedItems);
- }
- close();
- }, [multiselect, selectedItems, onChange, onDone, close]);
+ setVisible(false);
+ }, []);
- const handleChange = useCallback(
- (item: any) => {
- if (multiselect) {
- const itemKey = keyExtractor(item);
- const isSelected = selectedItemsMap[itemKey];
-
- let newSelectedItems;
- if (isSelected) {
- newSelectedItems = selectedItems.filter((i) => keyExtractor(i) !== itemKey);
- } else {
- if (maxSelectedItems && selectedItems.length >= maxSelectedItems) {
- return;
- }
- newSelectedItems = [...selectedItems, item];
- }
-
- setSelectedItems(newSelectedItems);
- setSelected(newSelectedItems.map(labelExtractor).join(selectedSeparator));
-
- if (!closeOnChange) {
- onChange?.(newSelectedItems);
- }
- } else {
- setSelected(labelExtractor(item));
- if (closeOnChange) {
- close();
- }
- onChange?.(item);
+ const open = useCallback(() => {
+ setSelectedKeys(valueKeys(value, multiple));
+ setVisible(true);
+ }, [multiple, value]);
+
+ const selectOption = useCallback(
+ (option: SelectOptionItem) => {
+ const key = optionKey(option);
+
+ if (!multiple) {
+ onChange(option.key);
+ close();
+ return;
}
- },
- [
- multiselect,
- selectedItems,
- selectedItemsMap,
- keyExtractor,
- labelExtractor,
- maxSelectedItems,
- closeOnChange,
- onChange,
- close,
- selectedSeparator,
- ]
- );
-
- const renderOption = useCallback(
- (option: any, isLastItem: boolean, isFirstItem: boolean) => {
- const optionLabel = labelExtractor(option);
- const optionKey = keyExtractor(option);
- const isSelected = selectedItemsMap[optionKey];
-
- const content = (
- <>
-
- {optionLabel}
-
-
- {isSelected && (
- ✓
- )}
-
- >
- );
-
- return (
- handleChange(option)}
- activeOpacity={touchableActiveOpacity}
- accessible={listItemAccessible}
- accessibilityLabel={option.accessibilityLabel}
- importantForAccessibility={isFirstItem ? 'yes' : 'no'}
- {...passThruProps}
- >
-
- {content}
-
-
- );
- },
- [
- keyExtractor,
- labelExtractor,
- handleChange,
- touchableActiveOpacity,
- listItemAccessible,
- passThruProps,
- optionStyleProp,
- optionTextStyleProp,
- optionTextPassThruProps,
- optionsTestIDPrefix,
- selectedItemsMap,
- selectedItemIndicatorStyle,
- selectedItemIndicatorColor,
- ]
- );
-
- const renderSection = useCallback(
- (section: any) => {
- const sectionLabel = labelExtractor(section);
- return (
-
- {sectionLabel}
-
+ setSelectedKeys((current) =>
+ current.includes(key) ? current.filter((item) => item !== key) : [...current, key]
);
},
- [keyExtractor, labelExtractor, sectionStyleProp, sectionTextStyleProp]
+ [close, multiple, onChange]
);
- const renderFlatlistOption = useCallback(
- ({ item, index }: { item: any; index: number }) => {
- if (item.section) {
- return renderSection(item);
- }
-
- return renderOption(item, index === data.length - 1, index === 0);
- },
- [renderSection, renderOption, data.length]
- );
-
- const renderOptionList = useCallback(() => {
- const OverlayComponent: ComponentType = backdropPressToClose
- ? TouchableWithoutFeedback
- : View;
-
- const key = backdropPressToClose ? `modalSelector${componentIndex++}` : undefined;
- const overlayProps = backdropPressToClose
- ? {
- accessible: false,
- onPress: close,
- }
- : {
- style: { flex: 1 },
- };
-
- const optionsContainerStyle = {
- paddingHorizontal: 10,
- ...(scrollViewPassThruProps?.horizontal && { flexDirection: 'row' as const }),
- };
-
- return (
-
-
-
- {header}
- {listType === 'FLATLIST' ? (
-
- ) : (
-
-
- {data.map((item, index) =>
- item.section
- ? renderSection(item)
- : renderOption(item, index === data.length - 1, index === 0)
- )}
-
-
- )}
-
-
- {multiselect && (
-
-
- {doneText}
-
-
- )}
-
-
-
-
-
- {cancelText}
-
-
-
-
-
-
- );
- }, [
- data,
- backdropPressToClose,
- close,
- scrollViewPassThruProps,
- overlayStyleProp,
- optionContainerStyle,
- header,
- listType,
- keyboardShouldPersistTaps,
- scrollViewAccessible,
- scrollViewAccessibilityLabel,
- keyExtractor,
- renderFlatlistOption,
- onEndReached,
- renderSection,
- renderOption,
- cancelContainerStyle,
- touchableActiveOpacity,
- cancelButtonAccessible,
- cancelButtonAccessibilityLabel,
- cancelStyleProp,
- cancelTextStyleProp,
- cancelTextPassThruProps,
- cancelText,
- multiselect,
- handleDone,
- doneText,
- ]);
-
- const renderChildren = useCallback(() => {
- if (children) {
- return children;
- }
-
- const initSelectStyle =
- selected === initValue
- ? [styles.initValueTextStyle, initValueTextStyleProp]
- : [styles.selectTextStyle, selectTextStyleProp];
-
- return (
-
-
- {selected}
-
-
+ const commitMultiSelect = useCallback(() => {
+ onChange(
+ options
+ .filter((option) => selectedKeys.includes(optionKey(option)))
+ .map((option) => option.key)
);
- }, [
- children,
- selected,
- initValue,
- initValueTextStyleProp,
- selectTextStyleProp,
- selectStyleProp,
- selectTextPassThruProps,
- ]);
+ close();
+ }, [close, onChange, options, selectedKeys]);
return (
-
+
selectedItems.length > 0 && onChange?.(selectedItems)}
+ animationType="none"
>
- {renderOptionList()}
+
+
+
+
+
+
+
- {customSelector || (
-
-
- {renderChildren()}
-
-
- )}
+
+ {children}
+
);
};
diff --git a/packages/ondevice-controls/src/components/color-picker/HoloColorPicker.tsx b/packages/ondevice-controls/src/components/color-picker/HoloColorPicker.tsx
index 5c1db813d1..29421c38dd 100644
--- a/packages/ondevice-controls/src/components/color-picker/HoloColorPicker.tsx
+++ b/packages/ondevice-controls/src/components/color-picker/HoloColorPicker.tsx
@@ -1,221 +1,131 @@
-import { PureComponent, createRef } from 'react';
+import { useCallback, useEffect, useMemo, useState } from 'react';
import {
I18nManager,
Image,
- InteractionManager,
LayoutChangeEvent,
StyleSheet,
Text,
- TouchableOpacity,
View,
ViewStyle,
} from 'react-native';
import tinycolor, { ColorFormats } from 'tinycolor2';
-import { createPanResponder } from './utils';
import SliderWrapper from '../SliderWrapper';
+import { createPanResponder } from './utils';
interface HoloColorPickerProps {
- color?: string | ColorFormats.HSV;
- defaultColor?: string;
+ defaultColor: string;
oldColor?: string;
- onColorChange?: (color: ColorFormats.HSV) => void;
- onColorSelected?: (color: string) => void;
- onOldColorSelected?: (color: string) => void;
- hideSliders?: boolean;
+ onColorChange: (color: ColorFormats.HSV) => void;
style?: ViewStyle;
}
-interface HoloColorPickerState {
- color: ColorFormats.HSV;
- pickerSize: number | null;
-}
-
-export class HoloColorPicker extends PureComponent {
- private _layout: { width: number; height: number; x: number; y: number };
- private _pageX: number;
- private _pageY: number;
- private _isRTL: boolean;
- private _pickerResponder: any;
- private pickerContainer = createRef();
-
- constructor(props: HoloColorPickerProps) {
- super(props);
- const state: HoloColorPickerState = {
- color: { h: 0, s: 1, v: 1 },
- pickerSize: null,
- };
- if (props.oldColor) {
- state.color = tinycolor(props.oldColor).toHsv();
- }
- if (props.defaultColor) {
- state.color = tinycolor(props.defaultColor).toHsv();
- }
- this.state = state;
- this._layout = { width: 0, height: 0, x: 0, y: 0 };
- this._pageX = 0;
- this._pageY = 0;
- this._isRTL = I18nManager.isRTL;
- this._pickerResponder = createPanResponder({
- onStart: this._handleColorChange,
- onMove: this._handleColorChange,
- });
- }
-
- getColor() {
- return tinycolor(this._getColor()).toHexString();
- }
-
- _handleColorChange = ({ x, y }: { x: number; y: number }) => {
- const { s, v } = this._getColor();
- const marginLeft = (this._layout.width - (this.state.pickerSize ?? 0)) / 2;
- const marginTop = (this._layout.height - (this.state.pickerSize ?? 0)) / 2;
- const relativeX = x - this._pageX - marginLeft;
- const relativeY = y - this._pageY - marginTop;
- const h = this._computeHValue(relativeX, relativeY);
- this._onColorChange({ h, s, v });
- };
-
- _onSValueChange = (s: number) => {
- const { h, v } = this._getColor();
- this._onColorChange({ h, s, v });
- };
-
- _onVValueChange = (v: number) => {
- const { h, s } = this._getColor();
- this._onColorChange({ h, s, v });
- };
+const getHsv = (color: string): ColorFormats.HSV => tinycolor(color).toHsv();
- _onColorChange = (color: ColorFormats.HSV) => {
- this.setState({ color });
- if (this.props.onColorChange) {
- this.props.onColorChange(color);
- }
- };
+export function HoloColorPicker({
+ defaultColor,
+ oldColor,
+ onColorChange,
+ style,
+}: HoloColorPickerProps) {
+ const [color, setColor] = useState(() => getHsv(defaultColor));
+ const [pickerSize, setPickerSize] = useState(0);
+
+ useEffect(() => {
+ setColor(getHsv(defaultColor));
+ }, [defaultColor]);
+
+ const updateColor = useCallback(
+ (nextColor: ColorFormats.HSV) => {
+ setColor(nextColor);
+ onColorChange(nextColor);
+ },
+ [onColorChange]
+ );
- _onLayout = (l: LayoutChangeEvent) => {
- this._layout = l.nativeEvent.layout;
- const { width, height } = this._layout;
- const pickerSize = Math.min(width, height);
- if (this.state.pickerSize !== pickerSize) {
- this.setState({ pickerSize });
- }
- InteractionManager.runAfterInteractions(() => {
- if (this.pickerContainer.current) {
- this.pickerContainer.current.measure((_x, _y, _width, _height, pageX, pageY) => {
- this._pageX = pageX;
- this._pageY = pageY;
- });
+ const handleHueChange = useCallback(
+ ({ x, y }: { x: number; y: number }) => {
+ if (!pickerSize) {
+ return;
}
- });
- };
- _getColor() {
- const passedColor =
- typeof this.props.color === 'string' ? tinycolor(this.props.color).toHsv() : this.props.color;
- return passedColor || this.state.color;
- }
-
- _onColorSelected = () => {
- const { onColorSelected } = this.props;
- const color = tinycolor(this._getColor()).toHexString();
- if (onColorSelected) {
- onColorSelected(color);
- }
- };
-
- _onOldColorSelected = () => {
- const { oldColor, onOldColorSelected } = this.props;
- const color = tinycolor(oldColor!);
- this.setState({ color: color.toHsv() });
- if (onOldColorSelected) {
- onOldColorSelected(color.toHexString());
- }
+ const h = computeHue(x, y, pickerSize);
+ updateColor({ ...color, h });
+ },
+ [color, pickerSize, updateColor]
+ );
+
+ const pickerResponder = useMemo(
+ () =>
+ createPanResponder({
+ onStart: handleHueChange,
+ onMove: handleHueChange,
+ }),
+ [handleHueChange]
+ );
+
+ const onLayout = (event: LayoutChangeEvent) => {
+ const { width, height } = event.nativeEvent.layout;
+ setPickerSize(Math.min(width, height));
};
- _computeHValue(x: number, y: number) {
- const mx = (this.state.pickerSize ?? 0) / 2;
- const my = (this.state.pickerSize ?? 0) / 2;
- const dx = x - mx;
- const dy = y - my;
- const rad = Math.atan2(dx, dy) + Math.PI + Math.PI / 2;
- return ((rad * 180) / Math.PI) % 360;
- }
-
- _hValueToRad(deg: number) {
- const rad = (deg * Math.PI) / 180;
- return rad - Math.PI - Math.PI / 2;
- }
-
- render() {
- const { pickerSize } = this.state;
- const { oldColor, style } = this.props;
- const color = this._getColor();
- const { h, s, v } = color;
- const angle = this._hValueToRad(h);
- const selectedColor = tinycolor(color).toHexString();
- const indicatorColor = tinycolor({ h, s: 1, v: 1 }).toHexString();
- const computed = makeComputedStyles({
- pickerSize: pickerSize ?? 0,
- selectedColor,
- indicatorColor,
- oldColor,
- angle,
- isRTL: this._isRTL,
- });
- return (
-
-
- {!pickerSize ? null : (
-
-
-
-
-
- {oldColor && (
-
- )}
- {oldColor && (
-
- )}
- {!oldColor && (
-
- )}
-
- )}
-
- {this.props.hideSliders ? null : (
+ const selectedColor = tinycolor(color).toHexString();
+ const indicatorColor = tinycolor({ h: color.h, s: 1, v: 1 }).toHexString();
+ const computed = makeComputedStyles({
+ pickerSize,
+ selectedColor,
+ indicatorColor,
+ oldColor,
+ angle: hueToRad(color.h),
+ isRTL: I18nManager.isRTL,
+ });
+
+ return (
+
+
+ {!pickerSize ? null : (
- Saturation
-
- Lightness
-
+
+
+
+
+ {oldColor ? (
+ <>
+
+
+ >
+ ) : (
+
+ )}
)}
- );
- }
+
+ Saturation
+ updateColor({ ...color, s })} />
+ Lightness
+ updateColor({ ...color, v })} />
+
+
+ );
}
+const computeHue = (x: number, y: number, pickerSize: number) => {
+ const center = pickerSize / 2;
+ const dx = x - center;
+ const dy = y - center;
+ const rad = Math.atan2(dx, dy) + Math.PI + Math.PI / 2;
+ return ((rad * 180) / Math.PI) % 360;
+};
+
+const hueToRad = (deg: number) => {
+ const rad = (deg * Math.PI) / 180;
+ return rad - Math.PI - Math.PI / 2;
+};
+
const makeComputedStyles = ({
indicatorColor,
selectedColor,
@@ -232,14 +142,13 @@ const makeComputedStyles = ({
isRTL: boolean;
}) => {
const summarySize = 0.5 * pickerSize;
- const indicatorPickerRatio = 42 / 510;
- const indicatorSize = indicatorPickerRatio * pickerSize;
+ const indicatorSize = (42 / 510) * pickerSize;
const pickerPadding = indicatorSize / 3;
const indicatorRadius = pickerSize / 2 - indicatorSize / 2 - pickerPadding;
- const mx = pickerSize / 2;
- const my = pickerSize / 2;
+ const center = pickerSize / 2;
const dx = Math.cos(angle) * indicatorRadius;
const dy = Math.sin(angle) * indicatorRadius;
+
return {
picker: {
padding: pickerPadding,
@@ -247,8 +156,8 @@ const makeComputedStyles = ({
height: pickerSize,
},
pickerIndicator: {
- top: mx + dx - indicatorSize / 2,
- [isRTL ? 'right' : 'left']: my + dy - indicatorSize / 2,
+ top: center + dx - indicatorSize / 2,
+ [isRTL ? 'right' : 'left']: center + dy - indicatorSize / 2,
width: indicatorSize,
height: indicatorSize,
borderRadius: indicatorSize / 2,
@@ -310,7 +219,9 @@ const styles = StyleSheet.create({
selectedFullPreview: {
position: 'absolute',
},
- pickerAlignment: {
- alignItems: 'center',
+ sliderLabel: {
+ paddingStart: 4,
+ color: '#859499',
+ fontSize: 12,
},
});
diff --git a/packages/ondevice-controls/src/components/color-picker/TriangleColorPicker.tsx b/packages/ondevice-controls/src/components/color-picker/TriangleColorPicker.tsx
deleted file mode 100644
index e607a8d8cb..0000000000
--- a/packages/ondevice-controls/src/components/color-picker/TriangleColorPicker.tsx
+++ /dev/null
@@ -1,479 +0,0 @@
-import { PureComponent, createRef } from 'react';
-import {
- I18nManager,
- Image,
- InteractionManager,
- LayoutChangeEvent,
- StyleSheet,
- TouchableOpacity,
- View,
-} from 'react-native';
-import tinycolor, { ColorFormats } from 'tinycolor2';
-import { createPanResponder, rotatePoint } from './utils';
-
-interface TriangleColorPickerProps {
- color?: string | ColorFormats.HSV;
- defaultColor?: string;
- oldColor?: string;
- onColorChange?: (color: ColorFormats.HSV) => void;
- onColorSelected?: (color: string) => void;
- onOldColorSelected?: (color: string) => void;
- rotationHackFactor?: number;
- style?: object;
-}
-
-interface TriangleColorPickerState {
- color: ColorFormats.HSV;
- pickerSize: number | null;
-}
-
-function makeRotationKey(props: TriangleColorPickerProps, angle: number) {
- const { rotationHackFactor = 100 } = props;
- if (rotationHackFactor < 1) {
- return undefined;
- }
- const key = Math.floor(angle * rotationHackFactor);
- return `r${key}`;
-}
-
-export class TriangleColorPicker extends PureComponent<
- TriangleColorPickerProps,
- TriangleColorPickerState
-> {
- private _layout: { width: number; height: number; x: number; y: number };
- private _pageX: number;
- private _pageY: number;
- private _changingHColor: boolean;
- private _isRTL: boolean;
- private _pickerResponder: any;
- private pickerContainer = createRef();
-
- constructor(props: TriangleColorPickerProps) {
- super(props);
- const state: TriangleColorPickerState = {
- color: { h: 0, s: 1, v: 1 },
- pickerSize: null,
- };
- if (props.oldColor) {
- state.color = tinycolor(props.oldColor).toHsv();
- }
- if (props.defaultColor) {
- state.color = tinycolor(props.defaultColor).toHsv();
- }
- this.state = state;
- this._layout = { width: 0, height: 0, x: 0, y: 0 };
- this._pageX = 0;
- this._pageY = 0;
- this._isRTL = I18nManager.isRTL;
-
- this._pickerResponder = createPanResponder({
- onStart: ({ x, y }) => {
- const { s, v } = this._computeColorFromTriangle({ x, y });
- this._changingHColor = s > 1 || s < 0 || v > 1 || v < 0;
- this._handleColorChange({ x, y });
- },
- onMove: this._handleColorChange,
- });
- }
-
- getColor() {
- return tinycolor(this._getColor()).toHexString();
- }
-
- _handleColorChange = ({ x, y }: { x: number; y: number }) => {
- if (this._changingHColor) {
- this._handleHColorChange({ x, y });
- } else {
- this._handleSVColorChange({ x, y });
- }
- };
-
- _getColor() {
- const passedColor =
- typeof this.props.color === 'string' ? tinycolor(this.props.color).toHsv() : this.props.color;
- return passedColor || this.state.color;
- }
-
- _onColorSelected = () => {
- const { onColorSelected } = this.props;
- const color = tinycolor(this._getColor()).toHexString();
- if (onColorSelected) {
- onColorSelected(color);
- }
- };
-
- _onOldColorSelected = () => {
- const { oldColor, onOldColorSelected } = this.props;
- const color = tinycolor(oldColor!);
- this.setState({ color: color.toHsv() });
- if (onOldColorSelected) {
- onOldColorSelected(color.toHexString());
- }
- };
-
- _onSValueChange = (s: number) => {
- const { h, v } = this._getColor();
- this._onColorChange({ h, s, v });
- };
-
- _onVValueChange = (v: number) => {
- const { h, s } = this._getColor();
- this._onColorChange({ h, s, v });
- };
-
- _onColorChange = (color: ColorFormats.HSV) => {
- this.setState({ color });
- if (this.props.onColorChange) {
- this.props.onColorChange(color);
- }
- };
-
- _onLayout = (l: LayoutChangeEvent) => {
- this._layout = l.nativeEvent.layout;
- const { width, height } = this._layout;
- const pickerSize = Math.min(width, height);
- if (this.state.pickerSize !== pickerSize) {
- this.setState({ pickerSize });
- }
- InteractionManager.runAfterInteractions(() => {
- if (this.pickerContainer.current) {
- this.pickerContainer.current.measure((_x, _y, _width, _height, pageX, pageY) => {
- this._pageX = pageX;
- this._pageY = pageY;
- });
- }
- });
- };
-
- _computeHValue(x: number, y: number) {
- const mx = this.state.pickerSize! / 2;
- const my = this.state.pickerSize! / 2;
- const dx = x - mx;
- const dy = y - my;
- const rad = Math.atan2(dx, dy) + Math.PI + Math.PI / 2;
- return ((rad * 180) / Math.PI) % 360;
- }
-
- _hValueToRad(deg: number) {
- const rad = (deg * Math.PI) / 180;
- return rad - Math.PI - Math.PI / 2;
- }
-
- _handleHColorChange = ({ x, y }: { x: number; y: number }) => {
- const { s, v } = this._getColor();
- const marginLeft = (this._layout.width - this.state.pickerSize!) / 2;
- const marginTop = (this._layout.height - this.state.pickerSize!) / 2;
- const relativeX = x - this._pageX - marginLeft;
- const relativeY = y - this._pageY - marginTop;
- const h = this._computeHValue(relativeX, relativeY);
- this._onColorChange({ h, s, v });
- };
-
- _handleSVColorChange = ({ x, y }: { x: number; y: number }) => {
- const { h, s: rawS, v: rawV } = this._computeColorFromTriangle({ x, y });
- const s = Math.min(Math.max(0, rawS), 1);
- const v = Math.min(Math.max(0, rawV), 1);
- this._onColorChange({ h, s, v });
- };
-
- _normalizeTriangleTouch(s: number, v: number, sRatio: number) {
- const CORNER_ZONE_SIZE = 0.12;
- const NORMAL_MARGIN = 0.1;
- const CORNER_MARGIN = 0.05;
- let margin = NORMAL_MARGIN;
-
- const posNS = v > 0 ? 1 - (1 - s) * sRatio : 1 - s * sRatio;
- const negNS = v > 0 ? s * sRatio : (1 - s) * sRatio;
- const ns = s > 1 ? posNS : negNS;
-
- const rightCorner = s > 1 - CORNER_ZONE_SIZE && v > 1 - CORNER_ZONE_SIZE;
- const leftCorner = ns < 0 + CORNER_ZONE_SIZE && v > 1 - CORNER_ZONE_SIZE;
- const topCorner = ns < 0 + CORNER_ZONE_SIZE && v < 0 + CORNER_ZONE_SIZE;
- if (rightCorner) {
- return { s, v };
- }
- if (leftCorner || topCorner) {
- margin = CORNER_MARGIN;
- }
- let s1 = s;
- let v1 = v;
- s1 = s1 < 0 && ns > 0 - margin ? 0 : s1;
- s1 = s1 > 1 && ns < 1 + margin ? 1 : s1;
- v1 = v1 < 0 && v1 > 0 - margin ? 0 : v1;
- v1 = v1 > 1 && v1 < 1 + margin ? 1 : v1;
- return { s: s1, v: v1 };
- }
-
- _computeColorFromTriangle({ x, y }: { x: number; y: number }) {
- const { pickerSize } = this.state;
- const { triangleHeight, triangleWidth } = getPickerProperties(pickerSize!);
-
- const left = pickerSize! / 2 - triangleWidth / 2;
- const top = pickerSize! / 2 - (2 * triangleHeight) / 3;
-
- const marginLeft = (this._layout.width - this.state.pickerSize!) / 2;
- const marginTop = (this._layout.height - this.state.pickerSize!) / 2;
- const relativeX = x - this._pageX - marginLeft - left;
- const relativeY = y - this._pageY - marginTop - top;
-
- const { h } = this._getColor();
- const deg = (h - 330 + 360) % 360;
- const rad = (deg * Math.PI) / 180;
- const center = {
- x: triangleWidth / 2,
- y: (2 * triangleHeight) / 3,
- };
- const rotated = rotatePoint({ x: relativeX, y: relativeY }, rad, center);
-
- const line = (triangleWidth * rotated.y) / triangleHeight;
- const margin = triangleWidth / 2 - ((triangleWidth / 2) * rotated.y) / triangleHeight;
- const s = (rotated.x - margin) / line;
- const v = rotated.y / triangleHeight;
-
- const normalized = this._normalizeTriangleTouch(s, v, line / triangleHeight);
-
- return { h, s: normalized.s, v: normalized.v };
- }
-
- render() {
- const { pickerSize } = this.state;
- const { oldColor, style } = this.props;
- const color = this._getColor();
- const { h } = color;
- const angle = this._hValueToRad(h);
- const selectedColor = tinycolor(color).toHexString();
- const indicatorColor = tinycolor({ h, s: 1, v: 1 }).toHexString();
- const computed = makeComputedStyles({
- pickerSize: pickerSize!,
- // selectedColor,
- selectedColorHsv: color,
- indicatorColor,
- // oldColor,
- angle,
- isRTL: this._isRTL,
- });
- const rotationHack = makeRotationKey(this.props, angle);
- return (
-
-
- {!pickerSize ? null : (
-
-
-
-
-
-
-
-
-
-
-
-
-
- )}
-
-
- {oldColor && (
-
- )}
-
-
-
- );
- }
-}
-
-function getPickerProperties(pickerSize: number) {
- const indicatorPickerRatio = 42 / 510; // computed from picker image
- const originalIndicatorSize = indicatorPickerRatio * pickerSize;
- const indicatorSize = originalIndicatorSize;
- const pickerPadding = originalIndicatorSize / 3;
-
- const triangleSize = pickerSize - 6 * pickerPadding;
- const triangleRadius = triangleSize / 2;
- const triangleHeight = (triangleRadius * 3) / 2;
- const triangleWidth = 2 * triangleRadius * Math.sqrt(3 / 4);
-
- return {
- triangleSize,
- triangleRadius,
- triangleHeight,
- triangleWidth,
- indicatorPickerRatio,
- indicatorSize,
- pickerPadding,
- };
-}
-
-const makeComputedStyles = ({
- indicatorColor,
- angle,
- pickerSize,
- selectedColorHsv,
- isRTL,
-}: {
- indicatorColor: string;
- angle: number;
- pickerSize: number;
- selectedColorHsv: ColorFormats.HSV;
- isRTL: boolean;
-}) => {
- const { triangleSize, triangleHeight, triangleWidth, indicatorSize, pickerPadding } =
- getPickerProperties(pickerSize);
-
- const indicatorRadius = pickerSize / 2 - indicatorSize / 2 - pickerPadding;
- const mx = pickerSize / 2;
- const my = pickerSize / 2;
- const dx = Math.cos(angle) * indicatorRadius;
- const dy = Math.sin(angle) * indicatorRadius;
-
- const triangleTop = pickerPadding * 3;
- const triangleLeft = pickerPadding * 3;
- const triangleAngle = -angle + Math.PI / 3;
-
- const markerColor = 'rgba(0,0,0,0.8)';
- const { s, v, h } = selectedColorHsv;
- const svIndicatorSize = 18;
- const svY = v * triangleHeight;
- const margin = triangleWidth / 2 - v * (triangleWidth / 2);
- const svX = s * (triangleWidth - 2 * margin) + margin;
- const svIndicatorMarginLeft = (pickerSize - triangleWidth) / 2;
- const svIndicatorMarginTop = (pickerSize - (4 * triangleHeight) / 3) / 2;
-
- const deg = (h - 330 + 360) % 360; // starting angle is 330 due to comfortable calculation
- const rad = (deg * Math.PI) / 180;
- const center = { x: pickerSize / 2, y: pickerSize / 2 };
- const notRotatedPoint = {
- x: svIndicatorMarginTop + svY,
- y: svIndicatorMarginLeft + svX,
- };
- const svIndicatorPoint = rotatePoint(notRotatedPoint, rad, center);
-
- return {
- picker: {
- padding: pickerPadding,
- width: pickerSize,
- height: pickerSize,
- },
- pickerIndicator: {
- top: mx + dx - indicatorSize / 2,
- [isRTL ? 'right' : 'left']: my + dy - indicatorSize / 2,
- width: indicatorSize,
- height: indicatorSize,
- transform: [
- {
- rotate: `${-angle}rad`,
- },
- ],
- },
- pickerIndicatorTick: {
- height: indicatorSize / 2,
- backgroundColor: markerColor,
- },
- svIndicator: {
- top: svIndicatorPoint.x - svIndicatorSize / 2,
- [isRTL ? 'right' : 'left']: svIndicatorPoint.y - svIndicatorSize / 2,
- width: svIndicatorSize,
- height: svIndicatorSize,
- borderRadius: svIndicatorSize / 2,
- borderColor: markerColor,
- },
- triangleContainer: {
- width: triangleSize,
- height: triangleSize,
- transform: [
- {
- rotate: `${triangleAngle}rad`,
- },
- ],
- top: triangleTop,
- left: triangleLeft,
- },
- triangleImage: {
- width: triangleWidth,
- height: triangleHeight,
- },
- triangleUnderlayingColor: {
- left: (triangleSize - triangleWidth) / 2,
- borderLeftWidth: triangleWidth / 2,
- borderRightWidth: triangleWidth / 2,
- borderBottomWidth: triangleHeight,
- borderBottomColor: indicatorColor,
- },
- colorPreviews: {
- height: pickerSize * 0.1,
- },
- };
-};
-
-const styles = StyleSheet.create({
- pickerContainer: {
- flex: 1,
- alignItems: 'center',
- justifyContent: 'center',
- },
- pickerImage: {
- flex: 1,
- width: null,
- height: null,
- },
- pickerIndicator: {
- position: 'absolute',
- alignItems: 'center',
- justifyContent: 'center',
- },
- triangleContainer: {
- position: 'absolute',
- alignItems: 'center',
- },
- triangleUnderlayingColor: {
- position: 'absolute',
- top: 0,
- width: 0,
- height: 0,
- backgroundColor: 'transparent',
- borderStyle: 'solid',
- borderLeftColor: 'transparent',
- borderRightColor: 'transparent',
- },
- pickerAlignment: {
- alignItems: 'center',
- },
- svIndicator: {
- position: 'absolute',
- borderWidth: 4,
- },
- pickerIndicatorTick: {
- width: 5,
- },
- colorPreviews: {
- flexDirection: 'row',
- },
- colorPreview: {
- flex: 1,
- },
-});
diff --git a/packages/ondevice-controls/src/components/color-picker/index.ts b/packages/ondevice-controls/src/components/color-picker/index.ts
index b81460e295..ad5417519b 100644
--- a/packages/ondevice-controls/src/components/color-picker/index.ts
+++ b/packages/ondevice-controls/src/components/color-picker/index.ts
@@ -1,24 +1,3 @@
-// credit to https://github.com/instea/react-native-color-picker
export { fromHsv, toHsv } from './utils';
export { HoloColorPicker as ColorPicker } from './HoloColorPicker';
-export { TriangleColorPicker } from './TriangleColorPicker';
export type HsvColor = { h: number; s: number; v: number };
-
-export interface IPicker {
- color?: string | HsvColor;
- defaultColor?: string | HsvColor;
- oldColor?: string;
- style?: object;
- onColorSelected?: (selectedColor: string) => void;
- onColorChange?: (selectedColor: HsvColor) => void;
- onOldColorSelected?: (oldColor: string) => void;
- hideSliders?: boolean;
-}
-
-export interface SliderProps {
- onValueChange?: (value: number) => void;
- value?: number;
-}
-export interface IHoloPicker extends IPicker {
- sliderComponent?: React.Component;
-}
diff --git a/packages/ondevice-controls/src/components/color-picker/resources/color-circle.xcf b/packages/ondevice-controls/src/components/color-picker/resources/color-circle.xcf
deleted file mode 100644
index f1c0e5124d..0000000000
Binary files a/packages/ondevice-controls/src/components/color-picker/resources/color-circle.xcf and /dev/null differ
diff --git a/packages/ondevice-controls/src/components/color-picker/resources/hsv_triangle_mask.png b/packages/ondevice-controls/src/components/color-picker/resources/hsv_triangle_mask.png
deleted file mode 100644
index 79dce670cf..0000000000
Binary files a/packages/ondevice-controls/src/components/color-picker/resources/hsv_triangle_mask.png and /dev/null differ
diff --git a/packages/ondevice-controls/src/components/color-picker/utils.ts b/packages/ondevice-controls/src/components/color-picker/utils.ts
index 44a003dc3f..ea5f2c82b2 100644
--- a/packages/ondevice-controls/src/components/color-picker/utils.ts
+++ b/packages/ondevice-controls/src/components/color-picker/utils.ts
@@ -56,39 +56,13 @@ export function createPanResponder({
onMoveShouldSetPanResponderCapture: fn,
onPanResponderTerminationRequest: fn,
onPanResponderGrant: (evt: GestureResponderEvent, state: PanResponderGestureState) => {
- return onStart({ x: evt.nativeEvent.pageX, y: evt.nativeEvent.pageY }, evt, state);
+ return onStart({ x: evt.nativeEvent.locationX, y: evt.nativeEvent.locationY }, evt, state);
},
onPanResponderMove: (evt: GestureResponderEvent, state: PanResponderGestureState) => {
- return onMove({ x: evt.nativeEvent.pageX, y: evt.nativeEvent.pageY }, evt, state);
+ return onMove({ x: evt.nativeEvent.locationX, y: evt.nativeEvent.locationY }, evt, state);
},
onPanResponderRelease: (evt: GestureResponderEvent, state: PanResponderGestureState) => {
- return onEnd({ x: evt.nativeEvent.pageX, y: evt.nativeEvent.pageY }, evt, state);
+ return onEnd({ x: evt.nativeEvent.locationX, y: evt.nativeEvent.locationY }, evt, state);
},
});
}
-
-/**
- * Rotates point around given center in 2d.
- * Point is object literal { x: number, y: number }
- * @param {point} point to be rotated
- * @param {number} angle in radians
- * @param {point} center to be rotated around
- * @return {point} rotated point
- */
-export function rotatePoint(point: Point, angle: number, center: Point = { x: 0, y: 0 }): Point {
- // translation to origin
- const transOriginX = point.x - center.x;
- const transOriginY = point.y - center.y;
-
- // rotation around origin
- const rotatedX = transOriginX * Math.cos(angle) - transOriginY * Math.sin(angle);
- const rotatedY = transOriginY * Math.cos(angle) + transOriginX * Math.sin(angle);
-
- // translate back from origin
- const normalizedX = rotatedX + center.x;
- const normalizedY = rotatedY + center.y;
- return {
- x: normalizedX,
- y: normalizedY,
- };
-}
diff --git a/packages/ondevice-controls/src/types/Color.tsx b/packages/ondevice-controls/src/types/Color.tsx
index b812e972e8..88d98c0090 100644
--- a/packages/ondevice-controls/src/types/Color.tsx
+++ b/packages/ondevice-controls/src/types/Color.tsx
@@ -1,7 +1,7 @@
import { useState } from 'react';
import { View, TouchableWithoutFeedback, StyleSheet, Platform, Dimensions } from 'react-native';
import { styled, useTheme } from '@storybook/react-native-theming';
-import { ColorPicker, fromHsv, HsvColor } from '../components/color-picker';
+import { ColorPicker, fromHsv, HsvColor, toHsv } from '../components/color-picker';
import { ModalPortal } from '../components/ModalPortal';
export interface ColorProps {
@@ -12,19 +12,21 @@ export interface ColorProps {
onChange: (value: string) => void;
}
-const TouchableContainer = styled.View(({ theme }) => ({
- width: 40,
- height: 40,
+const TouchableContainer = styled.TouchableOpacity(({ theme }) => ({
+ width: 44,
+ height: 44,
borderWidth: 1,
borderColor: theme.appBorderColor,
borderRadius: 6,
padding: 3,
backgroundColor: theme.background.content,
+ justifyContent: 'center',
+ alignItems: 'center',
}));
-const Touchable = styled.TouchableOpacity<{ color: string }>(({ color }) => ({
- width: '100%',
- height: '100%',
+const Touchable = styled.View<{ color: string }>(({ color }) => ({
+ width: 38,
+ height: 38,
borderRadius: 4,
backgroundColor: color,
}));
@@ -35,8 +37,9 @@ const ButtonTouchable = styled.TouchableOpacity<{ primary?: boolean }>(({ theme,
borderRadius: 6,
borderWidth: 1,
borderColor: primary ? theme.color.secondary : theme.button.border,
- paddingVertical: 6,
- paddingHorizontal: 20,
+ minHeight: 40,
+ paddingVertical: 10,
+ paddingHorizontal: 28,
justifyContent: 'center',
alignItems: 'center',
};
@@ -44,18 +47,22 @@ const ButtonTouchable = styled.TouchableOpacity<{ primary?: boolean }>(({ theme,
const ButtonText = styled.Text<{ primary?: boolean }>(({ theme, primary }) => {
return {
- color: primary ? theme.color.inverseText : theme.color.defaultText,
+ color: primary ? theme.color.lightest : theme.input.color,
fontSize: theme.typography.size.s2,
fontWeight: theme.typography.weight.bold,
};
});
+const controlHitSlop = { top: 16, right: 16, bottom: 16, left: 16 };
+const buttonHitSlop = { top: 10, right: 10, bottom: 10, left: 10 };
+
const ColorType = ({ arg, onChange = (value) => value }: ColorProps) => {
const [displayColorPicker, setDisplayColorPicker] = useState(false);
- const [currentColor, setCurrentColor] = useState(null);
+ const [currentColor, setCurrentColor] = useState(() => toHsv(arg.value));
const theme = useTheme();
const openColorPicker = () => {
+ setCurrentColor(toHsv(arg.value));
setDisplayColorPicker(true);
};
@@ -63,7 +70,7 @@ const ColorType = ({ arg, onChange = (value) => value }: ColorProps) => {
setDisplayColorPicker(false);
};
- const onChangeColor = (color) => {
+ const onChangeColor = (color: HsvColor) => {
onChange(fromHsv(color));
};
@@ -72,7 +79,10 @@ const ColorType = ({ arg, onChange = (value) => value }: ColorProps) => {
onChange(event.target.value)}
+ onChange={(event) => {
+ const target = event.currentTarget as EventTarget & { value: string };
+ onChange(target.value);
+ }}
style={{
width: 40,
height: 40,
@@ -88,14 +98,15 @@ const ColorType = ({ arg, onChange = (value) => value }: ColorProps) => {
return (
-
-
+
+
@@ -103,19 +114,19 @@ const ColorType = ({ arg, onChange = (value) => value }: ColorProps) => {
setCurrentColor(color)}
defaultColor={arg.value}
oldColor={arg.value}
style={styles.picker}
/>
-
+
Cancel
{
onChangeColor(currentColor);
closeColorPicker();
diff --git a/packages/ondevice-controls/src/types/Date.tsx b/packages/ondevice-controls/src/types/Date.tsx
index 5a821319cd..c58346647c 100644
--- a/packages/ondevice-controls/src/types/Date.tsx
+++ b/packages/ondevice-controls/src/types/Date.tsx
@@ -75,7 +75,8 @@ const DateType = ({ onChange, arg: { name, value } }: DateProps) => {
type="datetime-local"
defaultValue={webDateString}
onChange={(e) => {
- const newDate = new Date(e.target.value);
+ const target = e.currentTarget as EventTarget & { value: string };
+ const newDate = new Date(target.value);
onChange(newDate);
}}
// @ts-ignore
diff --git a/packages/ondevice-controls/src/types/Select.tsx b/packages/ondevice-controls/src/types/Select.tsx
index 69ea5dd5f0..68eec02800 100644
--- a/packages/ondevice-controls/src/types/Select.tsx
+++ b/packages/ondevice-controls/src/types/Select.tsx
@@ -1,4 +1,5 @@
import { useTheme } from '@storybook/react-native-theming';
+import { useMemo } from 'react';
import { Platform, View } from 'react-native';
import { SelectModal } from '../components/SelectModal';
import { Input, inputStyle } from './common';
@@ -17,37 +18,42 @@ export interface SelectProps {
onChange: (value: any) => void;
}
-const getOptions = ({ options, control: { labels } }: SelectProps['arg']) => {
+const getOptions = (options: SelectProps['arg']['options'], labels?: Record) => {
if (Array.isArray(options)) {
- if (labels) {
- return options.map((val) => ({ key: val, label: labels[val] || val }));
- }
- return options.map((val) => ({ key: val, label: val }));
+ return options.map((val) => ({ key: val, label: String(labels?.[val] || val) }));
}
return Object.keys(options).map((key) => ({
- label: key,
+ label: String(key),
key: options[key],
}));
};
const SelectType = ({ arg, onChange }: SelectProps) => {
const { value } = arg;
- const options = getOptions(arg);
+ const options = useMemo(
+ () => getOptions(arg.options, arg.control.labels),
+ [arg.control.labels, arg.options]
+ );
const theme = useTheme();
const active = options.find(({ key }) => value === key);
- const selected = active && active.label;
+ const selected = active?.label ?? '';
if (Platform.OS === 'web') {
const handleChange = (event: React.ChangeEvent) => {
+ const target = event.currentTarget as EventTarget & {
+ selectedOptions: ArrayLike<{ value: string }>;
+ value: string;
+ };
+
if (arg.type === 'multi-select') {
- const selectedOptions = Array.from(event.target.selectedOptions);
+ const selectedOptions = Array.from(target.selectedOptions);
const selectedValues = selectedOptions.map((option) => option.value);
onChange(selectedValues);
} else {
- onChange(event.target.value);
+ onChange(target.value);
}
};
@@ -71,20 +77,7 @@ const SelectType = ({ arg, onChange }: SelectProps) => {
return (
{arg.type === 'multi-select' ? (
- String(v)) : [String(value)]}
- onChange={(selectedOptions) => {
- if (Array.isArray(selectedOptions)) {
- onChange(selectedOptions.map((option) => option.key));
- }
- }}
- animationType="none"
- keyExtractor={({ key, label }) => `${label}-${key}`}
- selectedSeparator=", "
- closeOnChange={false}
- >
+
{
/>
) : (
- onChange(option.key)}
- animationType="none"
- keyExtractor={({ key, label }) => `${label}-${key}`}
- >
+
diff --git a/packages/ondevice-notes/package.json b/packages/ondevice-notes/package.json
index 1637130cbb..8fcdc535b3 100644
--- a/packages/ondevice-notes/package.json
+++ b/packages/ondevice-notes/package.json
@@ -25,9 +25,9 @@
],
"scripts": {
"check:types": "tsc --noEmit",
- "dev": "tsup --watch",
+ "dev": "tsdown --watch",
"preprepare": "rm -rf dist/",
- "prepare": "tsup"
+ "prepare": "tsdown"
},
"dependencies": {
"@storybook/react-native-theming": "^10.4.0"
@@ -35,8 +35,8 @@
"devDependencies": {
"react-native-markdown-display": "^7.0.2",
"storybook": "^10.3.2",
- "tsup": "^8.5.0",
- "typescript": "~5.9.3"
+ "tsdown": "^0.22.0",
+ "typescript": "~6.0.3"
},
"peerDependencies": {
"@storybook/react": "^10",
diff --git a/packages/ondevice-notes/src/ErrorBoundary.tsx b/packages/ondevice-notes/src/ErrorBoundary.tsx
index a53e9338c4..5c5a85d894 100644
--- a/packages/ondevice-notes/src/ErrorBoundary.tsx
+++ b/packages/ondevice-notes/src/ErrorBoundary.tsx
@@ -1,21 +1,21 @@
-import React, { ReactNode } from 'react';
+import React, { ErrorInfo, ReactNode } from 'react';
import { Text } from 'react-native';
export class ErrorBoundary extends React.Component<
{ children: ReactNode | ReactNode[] },
{ hasError: boolean }
> {
- constructor(props) {
+ constructor(props: { children: ReactNode | ReactNode[] }) {
super(props);
this.state = { hasError: false };
}
- static getDerivedStateFromError(_error) {
+ static getDerivedStateFromError(_error: Error) {
// Update state so the next render will show the fallback UI.
return { hasError: true };
}
- componentDidCatch(error, errorInfo) {
+ componentDidCatch(error: Error, errorInfo: ErrorInfo) {
// You can also log the error to an error reporting service
console.warn(error, errorInfo);
}
diff --git a/packages/ondevice-notes/src/components/Notes.tsx b/packages/ondevice-notes/src/components/Notes.tsx
index f88485da15..074d5d8c04 100644
--- a/packages/ondevice-notes/src/components/Notes.tsx
+++ b/packages/ondevice-notes/src/components/Notes.tsx
@@ -11,7 +11,7 @@ import { useTheme } from '@storybook/react-native-theming';
export const PARAM_KEY = 'notes';
interface NotesProps {
- active: boolean;
+ active?: boolean;
api: RNAddonApi;
}
@@ -22,7 +22,7 @@ export const Notes = ({ active, api }: NotesProps) => {
useEffect(() => {
const selection = api.store().getSelection();
- const handleSetCurrentStory = ({ storyId }) => {
+ const handleSetCurrentStory = ({ storyId }: { storyId: string }) => {
setStory(api.store().fromId(storyId));
};
diff --git a/packages/ondevice-notes/src/register.tsx b/packages/ondevice-notes/src/register.tsx
index 54ff1297e5..b20b002109 100644
--- a/packages/ondevice-notes/src/register.tsx
+++ b/packages/ondevice-notes/src/register.tsx
@@ -22,11 +22,13 @@ type ApiStore = {
export type RNAddonApi = API & { store: () => ApiStore };
-addons.register('storybook/notes', (api: RNAddonApi) => {
+addons.register('storybook/notes', (api) => {
+ const rnApi = api as RNAddonApi;
+
addons.add('storybook/notes/panel', {
type: types.PANEL,
title: 'Notes',
- render: ({ active }) => ,
+ render: ({ active }) => ,
paramKey: PARAM_KEY,
});
});
diff --git a/packages/ondevice-notes/tsup.config.ts b/packages/ondevice-notes/tsdown.config.mts
similarity index 73%
rename from packages/ondevice-notes/tsup.config.ts
rename to packages/ondevice-notes/tsdown.config.mts
index d027310116..666d805a70 100644
--- a/packages/ondevice-notes/tsup.config.ts
+++ b/packages/ondevice-notes/tsdown.config.mts
@@ -1,8 +1,13 @@
-import { defineConfig } from 'tsup';
+import { defineConfig } from 'tsdown';
export default defineConfig((options) => {
return {
entry: ['src/index.ts', 'src/register.tsx'],
+ format: ['cjs'],
+ fixedExtension: false,
+ deps: {
+ onlyBundle: false,
+ },
clean: !options.watch,
dts: !options.watch
? {
diff --git a/packages/react-native-theming/package.json b/packages/react-native-theming/package.json
index 6a0436df78..e967cce6be 100644
--- a/packages/react-native-theming/package.json
+++ b/packages/react-native-theming/package.json
@@ -26,8 +26,8 @@
],
"scripts": {
"check:types": "tsc --noEmit",
- "dev": "npx --yes tsx ./scripts/gendtsdev.ts && tsup --watch",
- "prepare": "tsup && npx --yes tsx ./scripts/patchdts.ts"
+ "dev": "node ./scripts/gendtsdev.ts && tsdown --watch",
+ "prepare": "tsdown && node ./scripts/patchdts.ts"
},
"dependencies": {
"polished": "^4.3.1"
@@ -35,7 +35,7 @@
"devDependencies": {
"@emotion/native": "^11.11.0",
"@emotion/react": "^11.14.0",
- "tsup": "^8.5.0"
+ "tsdown": "^0.22.0"
},
"peerDependencies": {
"react": "*",
diff --git a/packages/react-native-theming/src/index.ts b/packages/react-native-theming/src/index.ts
index 663fad429d..434d17702e 100644
--- a/packages/react-native-theming/src/index.ts
+++ b/packages/react-native-theming/src/index.ts
@@ -2,6 +2,6 @@
import styled, { type StyledComponent } from '@emotion/native';
import { useTheme, withTheme, ThemeProvider } from '@emotion/react';
-export { theme, darkTheme, StorybookTheme } from './theme';
+export { theme, darkTheme, type StorybookTheme } from './theme';
-export { styled, useTheme, withTheme, ThemeProvider, StyledComponent };
+export { styled, useTheme, withTheme, ThemeProvider, type StyledComponent };
diff --git a/packages/react-native-theming/tsconfig.json b/packages/react-native-theming/tsconfig.json
index de5f0b4a6a..6865558c1f 100644
--- a/packages/react-native-theming/tsconfig.json
+++ b/packages/react-native-theming/tsconfig.json
@@ -1,7 +1,6 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
- "baseUrl": ".",
"rootDir": "./src",
"outDir": "dist/"
},
diff --git a/packages/react-native-theming/tsup.config.ts b/packages/react-native-theming/tsdown.config.mts
similarity index 67%
rename from packages/react-native-theming/tsup.config.ts
rename to packages/react-native-theming/tsdown.config.mts
index 508a6f04ef..ba427b9a04 100644
--- a/packages/react-native-theming/tsup.config.ts
+++ b/packages/react-native-theming/tsdown.config.mts
@@ -1,8 +1,13 @@
-import { defineConfig } from 'tsup';
+import { defineConfig } from 'tsdown';
export default defineConfig((options) => {
return {
entry: ['src/index.ts'],
+ format: ['cjs'],
+ fixedExtension: false,
+ deps: {
+ onlyBundle: false,
+ },
// minify: !options.watch,
clean: !options.watch,
dts: !options.watch
diff --git a/packages/react-native-ui-common/package.json b/packages/react-native-ui-common/package.json
index 210770074f..a9295080f5 100644
--- a/packages/react-native-ui-common/package.json
+++ b/packages/react-native-ui-common/package.json
@@ -29,8 +29,8 @@
],
"scripts": {
"check:types": "tsc --noEmit",
- "dev": "tsup --watch",
- "prepare": "tsup"
+ "dev": "tsdown --watch",
+ "prepare": "tsdown"
},
"dependencies": {
"@nozbe/microfuzz": "^1.0.0",
@@ -43,8 +43,8 @@
"devDependencies": {
"@types/react": "~19.2.14",
"storybook": "^10.3.2",
- "tsup": "^8.5.0",
- "typescript": "~5.9.3"
+ "tsdown": "^0.22.0",
+ "typescript": "~6.0.3"
},
"peerDependencies": {
"react": "*",
diff --git a/packages/react-native-ui-common/src/Button.tsx b/packages/react-native-ui-common/src/Button.tsx
index 22d7f66392..abc0524953 100644
--- a/packages/react-native-ui-common/src/Button.tsx
+++ b/packages/react-native-ui-common/src/Button.tsx
@@ -40,7 +40,7 @@ export const Button = forwardRef(
const [isAnimating, setIsAnimating] = useState(false);
- const handleClick = (event) => {
+ const handleClick: NonNullable = (event) => {
if (onPress) onPress(event);
if (animation === 'none') return;
setIsAnimating(true);
diff --git a/packages/react-native-ui-common/src/StorageProvider.tsx b/packages/react-native-ui-common/src/StorageProvider.tsx
index 2c26cf0cff..0cafbcceba 100644
--- a/packages/react-native-ui-common/src/StorageProvider.tsx
+++ b/packages/react-native-ui-common/src/StorageProvider.tsx
@@ -2,8 +2,8 @@ import type { FC, PropsWithChildren } from 'react';
import { createContext, useContext } from 'react';
export interface Storage {
- getItem: (key: string) => Promise;
- setItem: (key: string, value: string) => Promise;
+ getItem: (key: string) => Promise | string | null;
+ setItem: (key: string, value: string) => Promise | void;
}
const StorageContext = createContext({
diff --git a/packages/react-native-ui-common/src/hooks/useExpanded.ts b/packages/react-native-ui-common/src/hooks/useExpanded.ts
index cfb11506e6..f447072847 100644
--- a/packages/react-native-ui-common/src/hooks/useExpanded.ts
+++ b/packages/react-native-ui-common/src/hooks/useExpanded.ts
@@ -28,9 +28,11 @@ const initializeExpanded = ({
initialExpanded?: ExpandedState;
rootIds: string[];
}) => {
- const highlightedAncestors = [];
+ const highlightedAncestors: string[] = [];
+ const expandedState = initialExpanded as ExpandedState;
+
return [...rootIds, ...highlightedAncestors].reduce(
- (acc, id) => Object.assign(acc, { [id]: id in initialExpanded ? initialExpanded[id] : true }),
+ (acc, id) => Object.assign(acc, { [id]: id in expandedState ? expandedState[id] : true }),
{}
);
};
diff --git a/packages/react-native-ui-common/src/hooks/useLastViewed.ts b/packages/react-native-ui-common/src/hooks/useLastViewed.ts
index d4ca9b8c56..bcae1a26c0 100644
--- a/packages/react-native-ui-common/src/hooks/useLastViewed.ts
+++ b/packages/react-native-ui-common/src/hooks/useLastViewed.ts
@@ -3,7 +3,7 @@ import { useCallback, useEffect, useRef } from 'react';
import type { Selection, StoryRef } from '../types';
export const useLastViewed = (selection: Selection) => {
- const lastViewedRef = useRef([]);
+ const lastViewedRef = useRef([]);
const updateLastViewed = useCallback(
(story: StoryRef) => {
diff --git a/packages/react-native-ui-common/src/hooks/useStoreState.ts b/packages/react-native-ui-common/src/hooks/useStoreState.ts
index 86465d79af..90c7ab13e4 100644
--- a/packages/react-native-ui-common/src/hooks/useStoreState.ts
+++ b/packages/react-native-ui-common/src/hooks/useStoreState.ts
@@ -1,16 +1,16 @@
-import { useCallback, useEffect, useState } from 'react';
+import { Dispatch, SetStateAction, useCallback, useEffect, useState } from 'react';
import { useStorage } from '../StorageProvider';
export const useStoreBooleanState = (
key: string,
defaultValue: boolean
-): ReturnType> => {
+): [boolean, Dispatch>] => {
const storage = useStorage();
const [val, setVal] = useState(defaultValue);
useEffect(() => {
- storage.getItem(key).then((newVal) => {
+ Promise.resolve(storage.getItem(key)).then((newVal) => {
if (newVal === null || newVal === undefined) {
setVal(defaultValue);
} else {
@@ -35,7 +35,7 @@ export const useStoreNumberState = (
const [val, setVal] = useState(defaultValue);
useEffect(() => {
- storage.getItem(key).then((newVal) => {
+ Promise.resolve(storage.getItem(key)).then((newVal) => {
if (newVal === null || newVal === undefined) {
setVal(defaultValue);
} else {
diff --git a/packages/react-native-ui-common/src/util/tree.ts b/packages/react-native-ui-common/src/util/tree.ts
index b4de7bad70..661b0a3503 100644
--- a/packages/react-native-ui-common/src/util/tree.ts
+++ b/packages/react-native-ui-common/src/util/tree.ts
@@ -17,7 +17,7 @@ export const get = memoize(1000)((id: string, dataset: Dataset) => dataset[id]);
export const getParent = memoize(1000)((id: string, dataset: Dataset) => {
const item = get(id, dataset);
- return item && item.type !== 'root' ? get(item.parent, dataset) : undefined;
+ return item && item.type !== 'root' ? get(item.parent as string, dataset) : undefined;
});
export const getParents = memoize(1000)((id: string, dataset: Dataset): Item[] => {
@@ -25,8 +25,8 @@ export const getParents = memoize(1000)((id: string, dataset: Dataset): Item[] =
return parent ? [parent, ...getParents(parent.id, dataset)] : [];
});
-export const getAncestorIds = memoize(1000)((data: IndexHash, id: string): string[] =>
- getParents(id, data).map((item) => item.id)
+export const getAncestorIds = memoize(1000)((data: IndexHash, id: string | null): string[] =>
+ getParents(id as string, data).map((item) => item.id)
);
export const getDescendantIds = memoize(1000)((
@@ -34,9 +34,9 @@ export const getDescendantIds = memoize(1000)((
id: string,
skipLeafs: boolean
): string[] => {
- const entry = data[id];
+ const entry = data[id]!;
const children = entry.type === 'story' || entry.type === 'docs' ? [] : entry.children;
- return children.reduce((acc, childId) => {
+ return children.reduce((acc, childId) => {
const child = data[childId];
if (!child || (skipLeafs && (child.type === 'story' || child.type === 'docs'))) return acc;
acc.push(childId, ...getDescendantIds(data, childId, skipLeafs));
@@ -45,7 +45,7 @@ export const getDescendantIds = memoize(1000)((
});
export function getPath(item: Item, ref: RefType): string[] {
- const parent = item.type !== 'root' && item.parent ? ref.index[item.parent] : null;
+ const parent = item.type !== 'root' && item.parent ? ref.index![item.parent] : null;
if (parent) return [...getPath(parent, ref), parent.name];
return ref.id === DEFAULT_REF_ID ? [] : [ref.title || ref.id];
}
@@ -81,7 +81,12 @@ export const getStateType = (
}
};
-export const isAncestor = (element?: Element, maybeAncestor?: Element): boolean => {
+type ElementLike = { parentElement?: ElementLike | null };
+
+export const isAncestor = (
+ element?: ElementLike | null,
+ maybeAncestor?: ElementLike | null
+): boolean => {
if (!element || !maybeAncestor) return false;
if (element === maybeAncestor) return true;
return isAncestor(element.parentElement, maybeAncestor);
diff --git a/packages/react-native-ui-common/src/util/useStyle.ts b/packages/react-native-ui-common/src/util/useStyle.ts
index 759670971c..c0b5b61b55 100644
--- a/packages/react-native-ui-common/src/util/useStyle.ts
+++ b/packages/react-native-ui-common/src/util/useStyle.ts
@@ -25,4 +25,4 @@ export const useStyle = <
deps?: DependencyList
): TOutput =>
// eslint-disable-next-line react-hooks/exhaustive-deps
- useMemo(styleFactory, deps);
+ useMemo(styleFactory, deps as DependencyList);
diff --git a/packages/react-native-ui-common/tsconfig.json b/packages/react-native-ui-common/tsconfig.json
index 453f7395d5..4f7685bd07 100644
--- a/packages/react-native-ui-common/tsconfig.json
+++ b/packages/react-native-ui-common/tsconfig.json
@@ -1,7 +1,6 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
- "baseUrl": ".",
"rootDir": "./src",
"outDir": "dist/"
},
diff --git a/packages/react-native-ui-common/tsup.config.ts b/packages/react-native-ui-common/tsdown.config.mts
similarity index 64%
rename from packages/react-native-ui-common/tsup.config.ts
rename to packages/react-native-ui-common/tsdown.config.mts
index 15a1247566..79b5015078 100644
--- a/packages/react-native-ui-common/tsup.config.ts
+++ b/packages/react-native-ui-common/tsdown.config.mts
@@ -1,8 +1,13 @@
-import { defineConfig } from 'tsup';
+import { defineConfig } from 'tsdown';
export default defineConfig((options) => {
return {
entry: ['src/index.tsx'],
+ format: ['cjs'],
+ fixedExtension: false,
+ deps: {
+ onlyBundle: false,
+ },
clean: !options.watch,
dts: !options.watch
? {
diff --git a/packages/react-native-ui-lite/package.json b/packages/react-native-ui-lite/package.json
index db967a45b1..3d05cdd9f2 100644
--- a/packages/react-native-ui-lite/package.json
+++ b/packages/react-native-ui-lite/package.json
@@ -29,8 +29,8 @@
],
"scripts": {
"check:types": "tsc --noEmit",
- "dev": "tsup --watch",
- "prepare": "tsup"
+ "dev": "tsdown --watch",
+ "prepare": "tsdown"
},
"dependencies": {
"@gorhom/portal": "^1.0.14",
@@ -39,20 +39,20 @@
"@storybook/react": "^10.3.2",
"@storybook/react-native-theming": "^10.4.0",
"@storybook/react-native-ui-common": "^10.4.0",
- "polished": "^4.3.1",
- "react-native-safe-area-context": "^5"
+ "polished": "^4.3.1"
},
"devDependencies": {
"@types/react": "~19.2.14",
"storybook": "^10.3.2",
"ts-dedent": "^2.2.0",
- "tsup": "^8.5.0",
- "typescript": "~5.9.3"
+ "tsdown": "^0.22.0",
+ "typescript": "~6.0.3"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.57.0",
- "storybook": ">=10 || ^10"
+ "storybook": ">=10 || ^10",
+ "react-native-safe-area-context": "*"
},
"engines": {
"node": ">=20.0.0"
diff --git a/packages/react-native-ui-lite/src/Layout.tsx b/packages/react-native-ui-lite/src/Layout.tsx
index d92773e6c1..4580f83b2d 100644
--- a/packages/react-native-ui-lite/src/Layout.tsx
+++ b/packages/react-native-ui-lite/src/Layout.tsx
@@ -119,6 +119,7 @@ export const Layout = ({
'desktopPanelState',
true
);
+ const [isMobileSearchActive, setIsMobileSearchActive] = useState(false);
const [sidebarWidth, setSidebarWidth] = useStoreNumberState('desktopSidebarWidth', 240);
const [addonsPanelHeight, setAddonsPanelHeight] = useStoreNumberState(
@@ -371,7 +372,11 @@ export const Layout = ({
) : null}
{isDesktop ? null : (
-
+
@@ -385,6 +390,7 @@ export const Layout = ({
index={storyHash}
storyId={story?.id}
refId={DEFAULT_REF_ID}
+ onSearchActiveChange={setIsMobileSearchActive}
/>
)}
diff --git a/packages/react-native-ui-lite/src/MobileAddonsPanel.tsx b/packages/react-native-ui-lite/src/MobileAddonsPanel.tsx
index f1fa12215d..abc7934553 100644
--- a/packages/react-native-ui-lite/src/MobileAddonsPanel.tsx
+++ b/packages/react-native-ui-lite/src/MobileAddonsPanel.tsx
@@ -5,6 +5,7 @@ import {
Animated,
Easing,
Keyboard,
+ KeyboardEvent,
Platform,
ScrollView,
StyleProp,
@@ -31,106 +32,72 @@ export const MobileAddonsPanel = forwardRef {
const theme = useTheme();
const { height } = useWindowDimensions();
- const panelHeight = useAnimatedValue(0);
+ const defaultPanelHeight = height / 2;
const positionBottomAnimation = useAnimatedValue(height / 2);
+ const [panelHeight, setPanelHeight] = useState(defaultPanelHeight);
const [isOpen, setIsOpen] = useState(false);
+ useEffect(() => {
+ setPanelHeight(defaultPanelHeight);
+ }, [defaultPanelHeight]);
+
const setMobileMenuOpen = useCallback(
(open: boolean) => {
setIsOpen(open);
if (open) {
- Animated.parallel([
- Animated.timing(positionBottomAnimation, {
- toValue: 0, // Negative to move up
- duration: 350,
- useNativeDriver: false,
- easing: Easing.inOut(Easing.cubic),
- }),
-
- Animated.timing(panelHeight, {
- toValue: height / 2,
- duration: 350,
- useNativeDriver: false,
- easing: Easing.inOut(Easing.cubic),
- }),
- ]).start();
+ setPanelHeight(defaultPanelHeight);
+ positionBottomAnimation.setValue(defaultPanelHeight);
+ Animated.timing(positionBottomAnimation, {
+ toValue: 0,
+ duration: 350,
+ useNativeDriver: true,
+ easing: Easing.inOut(Easing.cubic),
+ }).start();
} else {
- Animated.parallel([
- Animated.timing(positionBottomAnimation, {
- toValue: height / 2,
- duration: 350,
- useNativeDriver: false,
- easing: Easing.inOut(Easing.cubic),
- }),
- Animated.timing(panelHeight, {
- toValue: 0,
- duration: 350,
- useNativeDriver: false,
- easing: Easing.inOut(Easing.cubic),
- }),
- ]).start();
+ Animated.timing(positionBottomAnimation, {
+ toValue: defaultPanelHeight,
+ duration: 350,
+ useNativeDriver: true,
+ easing: Easing.inOut(Easing.cubic),
+ }).start(() => {
+ setPanelHeight(defaultPanelHeight);
+ });
}
},
- [height, positionBottomAnimation, panelHeight]
+ [defaultPanelHeight, positionBottomAnimation]
);
useEffect(() => {
- // Define keyboard show handler
- const handleKeyboardShow = ({ endCoordinates, duration, easing }) => {
+ const handleKeyboardShow = ({ endCoordinates }: KeyboardEvent) => {
if (isOpen) {
- Animated.parallel([
- Animated.timing(panelHeight, {
- toValue: (height - endCoordinates.height) / 2,
- duration,
- useNativeDriver: false,
- easing: Easing[easing] || Easing.out(Easing.ease),
- }),
- Animated.timing(positionBottomAnimation, {
- toValue: -endCoordinates.height, // Negative to move up
- duration,
- useNativeDriver: false,
- easing: Easing[easing] || Easing.out(Easing.ease),
- }),
- ]).start();
+ setPanelHeight((height - endCoordinates.height) / 2);
+ positionBottomAnimation.setValue(-endCoordinates.height);
}
};
- // Define keyboard hide handler
- const handleKeyboardHide = ({ duration, easing }) => {
+ const handleKeyboardHide = () => {
if (isOpen) {
- Animated.parallel([
- Animated.timing(positionBottomAnimation, {
- toValue: 0, // Back to original position
- duration,
- useNativeDriver: false,
- easing: Easing[easing] || Easing.out(Easing.ease),
- }),
-
- Animated.timing(panelHeight, {
- toValue: height / 2,
- duration,
- useNativeDriver: false,
- easing: Easing[easing] || Easing.out(Easing.ease),
- }),
- ]).start();
+ setPanelHeight(defaultPanelHeight);
+ positionBottomAnimation.setValue(0);
}
};
- // Add keyboard event listeners
- const showSubscription = Keyboard.addListener('keyboardDidShow', handleKeyboardShow);
- const willShowSubscription = Keyboard.addListener('keyboardWillShow', handleKeyboardShow);
- const hideSubscription = Keyboard.addListener('keyboardWillHide', handleKeyboardHide);
- const didHideSubscription = Keyboard.addListener('keyboardDidHide', handleKeyboardHide);
+ const showSubscription = Keyboard.addListener(
+ Platform.OS === 'ios' ? 'keyboardWillShow' : 'keyboardDidShow',
+ handleKeyboardShow
+ );
+ const hideSubscription = Keyboard.addListener(
+ Platform.OS === 'ios' ? 'keyboardWillHide' : 'keyboardDidHide',
+ handleKeyboardHide
+ );
// Clean up subscriptions on unmount
return () => {
showSubscription.remove();
- willShowSubscription.remove();
hideSubscription.remove();
- didHideSubscription.remove();
};
- }, [height, panelHeight, positionBottomAnimation, isOpen]);
+ }, [defaultPanelHeight, height, positionBottomAnimation, isOpen]);
useImperativeHandle(ref, () => ({
setAddonsPanelOpen: (open: boolean) => {
diff --git a/packages/react-native-ui-lite/src/MobileMenuDrawer.tsx b/packages/react-native-ui-lite/src/MobileMenuDrawer.tsx
index 00c83aaa88..3d756a6456 100644
--- a/packages/react-native-ui-lite/src/MobileMenuDrawer.tsx
+++ b/packages/react-native-ui-lite/src/MobileMenuDrawer.tsx
@@ -1,4 +1,5 @@
import { Portal } from '@gorhom/portal';
+import { Button } from '@storybook/react-native-ui-common';
import { useTheme } from '@storybook/react-native-theming';
import {
forwardRef,
@@ -41,6 +42,7 @@ const portalContainerStyle: ViewStyle = {
interface MobileMenuDrawerProps {
children: ReactNode | ReactNode[];
onVisibilityChange?: (visible: boolean) => void;
+ showScrollToSelected?: boolean;
}
export interface MobileMenuDrawerRef {
@@ -49,43 +51,49 @@ export interface MobileMenuDrawerRef {
export const useAnimatedModalHeight = () => {
const { height } = useWindowDimensions();
- const animatedHeight = useAnimatedValue(0.65 * height);
+ const modalHeight = 0.65 * height;
+ const maxModalHeight = 0.85 * height;
+ const [sheetHeight, setSheetHeight] = useState(modalHeight);
+ const [keyboardInset, setKeyboardInset] = useState(0);
+ const [isKeyboardVisible, setIsKeyboardVisible] = useState(false);
useEffect(() => {
- const modalHeight = 0.65 * height;
- const maxModalHeight = 0.85 * height;
-
- const expand = (duration: number = 250) =>
- Animated.timing(animatedHeight, {
- toValue: maxModalHeight,
- duration,
- easing: Easing.out(Easing.quad),
- useNativeDriver: false,
- }).start();
-
- const collapse = (duration: number = 250) =>
- Animated.timing(animatedHeight, {
- toValue: modalHeight,
- duration,
- easing: Easing.out(Easing.quad),
- useNativeDriver: false,
- }).start();
+ setSheetHeight(modalHeight);
+ setKeyboardInset(0);
+ setIsKeyboardVisible(false);
+ }, [modalHeight]);
+
+ useEffect(() => {
+ const expand = (keyboardHeight: number = 0) => {
+ const maxKeyboardOffset = maxModalHeight - modalHeight;
+ const keyboardAvoidanceOffset = Math.min(keyboardHeight, maxKeyboardOffset);
+
+ setIsKeyboardVisible(true);
+ setSheetHeight(modalHeight + keyboardAvoidanceOffset);
+ setKeyboardInset(Math.max(keyboardHeight - keyboardAvoidanceOffset, 0));
+ };
+
+ const collapse = () => {
+ setSheetHeight(modalHeight);
+ setKeyboardInset(0);
+ setIsKeyboardVisible(false);
+ };
const handleKeyboardWillShow: KeyboardEventListener = (e) => {
if (Platform.OS === 'ios') {
- expand(e.duration);
+ expand(e.endCoordinates.height);
}
};
const handleKeyboardDidShow: KeyboardEventListener = (e) => {
if (Platform.OS === 'android') {
- expand();
+ expand(e.endCoordinates.height);
}
};
const handleKeyboardWillHide: KeyboardEventListener = (e) => {
if (Platform.OS === 'ios') {
- collapse(e.duration);
+ collapse();
}
};
@@ -105,19 +113,23 @@ export const useAnimatedModalHeight = () => {
return () => {
subscriptions.forEach((subscription) => subscription.remove());
};
- }, [animatedHeight, height]);
+ }, [maxModalHeight, modalHeight]);
- return animatedHeight;
+ return {
+ height: sheetHeight,
+ keyboardInset,
+ isKeyboardVisible,
+ };
};
export const MobileMenuDrawer = memo(
forwardRef(
- ({ children, onVisibilityChange }, ref) => {
+ ({ children, onVisibilityChange, showScrollToSelected = true }, ref) => {
const [isVisible, setIsVisible] = useState(false);
const { scrollCallback } = useSelectedNode();
const theme = useTheme();
const { height } = useWindowDimensions();
- const animatedHeight = useAnimatedModalHeight();
+ const { height: sheetHeight, keyboardInset, isKeyboardVisible } = useAnimatedModalHeight();
// Slide animation for drawer entrance/exit
const slideAnim = useAnimatedValue(height);
@@ -136,13 +148,12 @@ export const MobileMenuDrawer = memo(
duration: 300,
easing: Easing.out(Easing.quad),
useNativeDriver: true,
- }).start(({ finished }) => {
- if (finished) {
- // go to the selected story and don't animate
- scrollCallback({ animated: false, id: undefined });
- }
- });
- }, [dragY, height, onVisibilityChange, scrollCallback, slideAnim]);
+ }).start();
+ }, [dragY, height, onVisibilityChange, slideAnim]);
+
+ const scrollToSelectedStory = useCallback(() => {
+ scrollCallback({ animated: true, id: undefined });
+ }, [scrollCallback]);
const closeDrawer = useCallback(() => {
Keyboard.dismiss();
@@ -176,6 +187,21 @@ export const MobileMenuDrawer = memo(
}
},
onPanResponderRelease: (_, gestureState) => {
+ if (isKeyboardVisible) {
+ if (gestureState.dy > 20) {
+ Keyboard.dismiss();
+ }
+
+ Animated.timing(dragY, {
+ toValue: 0,
+ duration: 250,
+ easing: Easing.out(Easing.quad),
+ useNativeDriver: true,
+ }).start();
+
+ return;
+ }
+
if (gestureState.dy > 50) {
closeDrawer();
} else {
@@ -189,9 +215,11 @@ export const MobileMenuDrawer = memo(
}
},
}),
- [closeDrawer, dragY]
+ [closeDrawer, dragY, isKeyboardVisible]
);
+ const sheetTranslateY = useMemo(() => Animated.add(slideAnim, dragY), [dragY, slideAnim]);
+
useImperativeHandle(ref, () => ({
setMobileMenuOpen: (open: boolean) => {
if (open) {
@@ -243,14 +271,29 @@ export const MobileMenuDrawer = memo(
() => ({
flex: 1,
backgroundColor: theme.background.content,
+ paddingBottom: keyboardInset,
}),
- [theme.background.content]
+ [keyboardInset, theme.background.content]
+ );
+
+ const scrollToSelectedButtonWrapperStyle = useMemo(
+ () =>
+ ({
+ position: 'absolute',
+ right: 16,
+ bottom: keyboardInset + 16,
+ zIndex: 1,
+ borderRadius: theme.input.borderRadius,
+ boxShadow: `0 2px 5px 0 ${theme.color.border}`,
+ elevation: 1,
+ }) satisfies ViewStyle,
+ [keyboardInset, theme.color.border, theme.input.borderRadius]
);
return (
-
+
{/* Drag handle */}
{children}
+ {showScrollToSelected ? (
+
+
+
+ ) : null}
diff --git a/packages/react-native-ui-lite/src/Search.tsx b/packages/react-native-ui-lite/src/Search.tsx
index 957e843ca3..5ed0832478 100644
--- a/packages/react-native-ui-lite/src/Search.tsx
+++ b/packages/react-native-ui-lite/src/Search.tsx
@@ -1,6 +1,6 @@
import { styled, useTheme } from '@storybook/react-native-theming';
import { useFuzzySearchList } from '@nozbe/microfuzz/react';
-import React, { useCallback, useDeferredValue, useMemo, useRef, useState } from 'react';
+import React, { useCallback, useDeferredValue, useEffect, useMemo, useRef, useState } from 'react';
import { Platform, TextInput, View, ViewStyle } from 'react-native';
import { useSelectedNode } from './SelectedNodeProvider';
import {
@@ -87,7 +87,15 @@ export const Search = React.memo<{
setSelection: (selection: Selection) => void;
getLastViewed: () => Selection[];
initialQuery?: string;
-}>(function Search({ children, dataset, setSelection, getLastViewed, initialQuery = '' }) {
+ onSearchActiveChange?: (active: boolean) => void;
+}>(function Search({
+ children,
+ dataset,
+ setSelection,
+ getLastViewed,
+ initialQuery = '',
+ onSearchActiveChange,
+}) {
const theme = useTheme();
const inputRef = useRef(null);
const [inputValue, setInputValue] = useState(initialQuery);
@@ -153,6 +161,11 @@ export const Search = React.memo<{
// Defer query input to prevent blocking typing
const deferredQuery = useDeferredValue(inputValue);
const queryText = useMemo(() => (deferredQuery ? deferredQuery.trim() : ''), [deferredQuery]);
+ const isBrowsing = !isOpen || !inputValue.length;
+
+ useEffect(() => {
+ onSearchActiveChange?.(!isBrowsing);
+ }, [isBrowsing, onSearchActiveChange]);
// getText function for microfuzz - memoized for performance
// Returns [name, path] - matches[0] will be name highlights, matches[1] will be path highlights
@@ -265,7 +278,7 @@ export const Search = React.memo<{
{children({
query: queryText,
results,
- isBrowsing: !isOpen || !inputValue.length,
+ isBrowsing,
closeMenu: () => {},
getItemProps,
highlightedIndex: null,
diff --git a/packages/react-native-ui-lite/src/Sidebar.tsx b/packages/react-native-ui-lite/src/Sidebar.tsx
index fa132d9e90..157eda748a 100644
--- a/packages/react-native-ui-lite/src/Sidebar.tsx
+++ b/packages/react-native-ui-lite/src/Sidebar.tsx
@@ -95,6 +95,7 @@ export interface SidebarProps extends API_LoadedRefData {
refId?: string;
menuHighlighted?: boolean;
setSelection: (selection: Selection) => void;
+ onSearchActiveChange?: (active: boolean) => void;
}
export const Sidebar = React.memo(function Sidebar({
@@ -106,6 +107,7 @@ export const Sidebar = React.memo(function Sidebar({
previewInitialized,
refs = {},
setSelection,
+ onSearchActiveChange,
}: SidebarProps) {
const selected: Selection = useMemo(() => storyId && { storyId, refId }, [storyId, refId]);
const dataset = useCombination(index, indexError, previewInitialized, status, refs);
@@ -123,7 +125,12 @@ export const Sidebar = React.memo(function Sidebar({
isLoading={isLoading}
onMenuClick={onMenuClick}
/> */}
-
+
{({ query, results, isBrowsing, closeMenu, getItemProps, highlightedIndex }) => (
void;
}>(function Tree({ isMain, refId, data, status, docsMode, selectedStoryId, onSelectStoryId }) {
const { registerCallback } = useSelectedNode();
- const [idToScrolllOnMount, setIdToScrolllOnMount] = useState(null);
+ const [pendingScrollTarget, setPendingScrollTarget] = useState(null);
const insets = useSafeAreaInsets();
const listRef = useRef(null);
@@ -444,29 +449,29 @@ export const Tree = React.memo<{
setExpanded({ ids: [...ancestorIds, targetId], value: true });
- setIdToScrolllOnMount(targetId);
+ setPendingScrollTarget({ id: targetId, animated: animated ?? false });
});
}, [collapsedData, registerCallback, selectedStoryId, setExpanded]);
// a workaround for the fact that we need to expand and scroll to an item that is not in the tree yet
useEffect(() => {
- if (idToScrolllOnMount) {
+ if (pendingScrollTarget) {
const index = treeData.findIndex((item) => {
- return item.itemId === idToScrolllOnMount;
+ return item.itemId === pendingScrollTarget.id;
});
if (index >= 0) {
listRef.current?.scrollToIndex({
index,
- animated: false,
+ animated: pendingScrollTarget.animated,
viewPosition: 0.5,
viewOffset: 100,
});
- setIdToScrolllOnMount(null);
+ setPendingScrollTarget(null);
}
}
- }, [idToScrolllOnMount, treeData]);
+ }, [pendingScrollTarget, treeData]);
return (
diff --git a/packages/react-native-ui-lite/tsconfig.json b/packages/react-native-ui-lite/tsconfig.json
index 74eb3efd43..cc7ceccfb1 100644
--- a/packages/react-native-ui-lite/tsconfig.json
+++ b/packages/react-native-ui-lite/tsconfig.json
@@ -1,7 +1,6 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
- "baseUrl": ".",
"rootDir": "./src",
"outDir": "dist/"
},
diff --git a/packages/react-native-ui-lite/tsup.config.ts b/packages/react-native-ui-lite/tsdown.config.mts
similarity index 64%
rename from packages/react-native-ui-lite/tsup.config.ts
rename to packages/react-native-ui-lite/tsdown.config.mts
index 15a1247566..79b5015078 100644
--- a/packages/react-native-ui-lite/tsup.config.ts
+++ b/packages/react-native-ui-lite/tsdown.config.mts
@@ -1,8 +1,13 @@
-import { defineConfig } from 'tsup';
+import { defineConfig } from 'tsdown';
export default defineConfig((options) => {
return {
entry: ['src/index.tsx'],
+ format: ['cjs'],
+ fixedExtension: false,
+ deps: {
+ onlyBundle: false,
+ },
clean: !options.watch,
dts: !options.watch
? {
diff --git a/packages/react-native-ui/package.json b/packages/react-native-ui/package.json
index 15252f3d97..4d7dadd3de 100644
--- a/packages/react-native-ui/package.json
+++ b/packages/react-native-ui/package.json
@@ -29,8 +29,8 @@
],
"scripts": {
"check:types": "tsc --noEmit",
- "dev": "tsup --watch",
- "prepare": "tsup"
+ "dev": "tsdown --watch",
+ "prepare": "tsdown"
},
"dependencies": {
"@gorhom/portal": "^1.0.14",
@@ -43,8 +43,8 @@
"devDependencies": {
"@types/react": "~19.2.14",
"storybook": "^10.3.2",
- "tsup": "^8.5.0",
- "typescript": "~5.9.3"
+ "tsdown": "^0.22.0",
+ "typescript": "~6.0.3"
},
"peerDependencies": {
"@gorhom/bottom-sheet": ">=4",
diff --git a/packages/react-native-ui/tsconfig.json b/packages/react-native-ui/tsconfig.json
index 453f7395d5..4f7685bd07 100644
--- a/packages/react-native-ui/tsconfig.json
+++ b/packages/react-native-ui/tsconfig.json
@@ -1,7 +1,6 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
- "baseUrl": ".",
"rootDir": "./src",
"outDir": "dist/"
},
diff --git a/packages/react-native-ui/tsup.config.ts b/packages/react-native-ui/tsdown.config.mts
similarity index 64%
rename from packages/react-native-ui/tsup.config.ts
rename to packages/react-native-ui/tsdown.config.mts
index 15a1247566..79b5015078 100644
--- a/packages/react-native-ui/tsup.config.ts
+++ b/packages/react-native-ui/tsdown.config.mts
@@ -1,8 +1,13 @@
-import { defineConfig } from 'tsup';
+import { defineConfig } from 'tsdown';
export default defineConfig((options) => {
return {
entry: ['src/index.tsx'],
+ format: ['cjs'],
+ fixedExtension: false,
+ deps: {
+ onlyBundle: false,
+ },
clean: !options.watch,
dts: !options.watch
? {
diff --git a/packages/react-native/jest.config.js b/packages/react-native/jest.config.js
index 8aaa648906..3c55eedb38 100644
--- a/packages/react-native/jest.config.js
+++ b/packages/react-native/jest.config.js
@@ -1,6 +1,6 @@
/** @type {import('jest').Config} */
const config = {
- preset: 'jest-expo',
+ preset: '@react-native/jest-preset',
setupFiles: ['/setup.js'],
...(process.env.JEST_CACHE_DIRECTORY && { cacheDirectory: process.env.JEST_CACHE_DIRECTORY }),
diff --git a/packages/react-native/package.json b/packages/react-native/package.json
index eb64854453..03d563c5f0 100644
--- a/packages/react-native/package.json
+++ b/packages/react-native/package.json
@@ -45,14 +45,13 @@
],
"scripts": {
"check:types": "tsc --noEmit",
- "dev": "npx --yes tsx buildscripts/gendtsdev.ts && tsup --watch",
- "prepare": "rm -rf dist/ && tsup",
+ "dev": "node buildscripts/gendtsdev.ts && tsdown --watch",
+ "prepare": "tsdown",
"test": "jest",
"test:ci": "jest"
},
"dependencies": {
"@storybook/mcp": "^0.6.1",
- "react-native-safe-area-context": "^5",
"@storybook/react": "^10.3.2",
"@storybook/react-native-theming": "^10.4.0",
"@storybook/react-native-ui": "^10.4.0",
@@ -71,19 +70,21 @@
"ws": "^8.20.0"
},
"devDependencies": {
+ "@react-native/jest-preset": "0.85.3",
"@types/jest": "^29.5.13",
"@types/react": "~19.2.14",
"babel-jest": "^29.7.0",
"babel-preset-expo": "^55.0.13",
"jest": "^29.7.0",
- "jest-expo": "~55.0.11",
+ "jest-expo": "~56.0.0",
"jotai": "^2.19.0",
- "react": "19.2.0",
- "react-native": "0.83.4",
+ "react": "19.2.3",
+ "react-native": "0.85.3",
"storybook": "^10.3.2",
+ "sucrase": "^3.35.1",
"test-renderer": "^0.15.0",
- "tsup": "^8.5.0",
- "typescript": "~5.9.3"
+ "tsdown": "^0.22.0",
+ "typescript": "~6.0.3"
},
"peerDependencies": {
"@gorhom/bottom-sheet": ">=4",
@@ -91,6 +92,7 @@
"react-native": ">=0.72.0",
"react-native-gesture-handler": ">=2",
"react-native-reanimated": ">=2",
+ "react-native-safe-area-context": "*",
"storybook": ">=10 || ^10"
},
"peerDependenciesMeta": {
@@ -102,9 +104,6 @@
},
"react-native-reanimated": {
"optional": true
- },
- "react-native-safe-area-context": {
- "optional": true
}
},
"engines": {
diff --git a/packages/react-native/src/Start.tsx b/packages/react-native/src/Start.tsx
index 47e0f255e8..851af9643f 100644
--- a/packages/react-native/src/Start.tsx
+++ b/packages/react-native/src/Start.tsx
@@ -1,67 +1,90 @@
-import './polyfill';
import { Platform } from 'react-native';
-import { addons as managerAddons } from 'storybook/manager-api';
import {
composeConfigs,
addons as previewAddons,
- PreviewWithSelection,
View as PreviewView,
+ PreviewWithSelection,
SelectionStore,
} from 'storybook/internal/preview-api';
-// NOTE this really should be exported from preview-api, but it's not
-import { Channel } from 'storybook/internal/channels';
-import type { NormalizedStoriesSpecifier } from 'storybook/internal/types';
+import { addons as managerAddons } from 'storybook/manager-api';
+import './polyfill';
+
import type { ReactRenderer } from '@storybook/react';
+import { Channel } from 'storybook/internal/channels';
+import type {
+ ModuleExports,
+ NormalizedProjectAnnotations,
+ NormalizedStoriesSpecifier,
+ ProjectAnnotations,
+} from 'storybook/internal/types';
import { View } from './View';
import { prepareStories, type ReactNativeOptions } from './prepareStories';
export { prepareStories, type ReactNativeOptions } from './prepareStories';
+type StoryEntry = NormalizedStoriesSpecifier & {
+ req: {
+ keys(): string[];
+ (id: string): unknown;
+ };
+};
+
+const createPreviewRoot = (): ReactRenderer['canvasElement'] =>
+ ({
+ component: () => <>>,
+ canvasElement: null,
+ mount: () => Promise.resolve({}),
+ storyResult: null,
+ T: null,
+ }) as unknown as ReactRenderer['canvasElement'];
+
+const getReactNativeProjectAnnotations = (getView: () => View | undefined) =>
+ ({
+ renderToCanvas: (context) => {
+ getView()?._setStory(context.storyContext);
+ },
+ render: (args, context) => {
+ const { id, component: Component } = context;
+
+ if (!Component) {
+ throw new Error(
+ `Unable to render story ${id} as the component annotation is missing from the default export`
+ );
+ }
+
+ return ;
+ },
+ }) satisfies ProjectAnnotations;
+
/**
* Since we aren't supporting these web addons yet in react native (or reimplement them) then we should disable them
* to avoid running code for addons that are not supported.
*/
-globalThis.FEATURES = {
+globalThis.FEATURES = Object.assign(globalThis.FEATURES ?? {}, {
measure: false,
outline: false,
interactions: false,
viewport: false,
highlight: false,
backgrounds: false,
-};
+});
// Note this is a workaround for setImmediate not being defined
if (Platform.OS === 'web' && typeof globalThis.setImmediate === 'undefined') {
require('setimmediate');
}
-export const getProjectAnnotations = (view: View, annotations: any[]) => async () =>
- composeConfigs([
- {
- renderToCanvas: (context) => {
- view._setStory(context.storyContext);
- },
- render: (args, context) => {
- const { id, component: Component } = context;
-
- if (!Component) {
- throw new Error(
- `Unable to render story ${id} as the component annotation is missing from the default export`
- );
- }
-
- return ;
- },
- },
- ...annotations,
- ]);
+export const getProjectAnnotations =
+ (view: View, annotations: ModuleExports[]) =>
+ async (): Promise> =>
+ composeConfigs([getReactNativeProjectAnnotations(() => view), ...annotations]);
export function start({
annotations,
storyEntries,
options,
}: {
- storyEntries: (NormalizedStoriesSpecifier & { req: any })[];
- annotations: any[];
+ storyEntries: StoryEntry[];
+ annotations: ModuleExports[];
options?: ReactNativeOptions;
}) {
const composedAnnotations = composeConfigs(annotations);
@@ -85,16 +108,12 @@ export function start({
const previewView = {
prepareForStory: () => {
- return {
- component: () => <>>,
- canvasElement: null,
- mount: () => Promise.resolve({}),
- storyResult: null,
- T: null,
- } as any;
+ return createPreviewRoot();
+ },
+ prepareForDocs: () => {
+ return createPreviewRoot();
},
- prepareForDocs: (): any => {},
- showErrorDisplay: (e) => {
+ showErrorDisplay: (e: { message?: string; stack?: string }) => {
console.log(e);
},
showDocs: () => {},
@@ -104,50 +123,41 @@ export function start({
showPreparingStory: () => {},
showStory: () => {},
showStoryDuringRender: () => {},
- } satisfies PreviewView;
+ } satisfies PreviewView;
const selectionStore = {
- selection: null,
+ selection: null as unknown as SelectionStore['selection'],
selectionSpecifier: null,
setQueryParams: () => {},
- setSelection: (selection) => {
+ setSelection: (selection: NonNullable) => {
preview.selectionStore.selection = selection;
},
} satisfies SelectionStore;
- const getProjectAnnotationsInitial = async () =>
- composeConfigs([
- {
- renderToCanvas: (context) => {
- view._setStory(context.storyContext);
- },
- render: (args, context) => {
- const { id, component: Component } = context;
-
- if (!Component) {
- throw new Error(
- `Unable to render story ${id} as the component annotation is missing from the default export`
- );
- }
-
- return ;
- },
- },
- ...annotations,
- ]);
-
- const preview = new PreviewWithSelection(
+ let view: View;
+
+ const getProjectAnnotationsInitial = async (): Promise<
+ NormalizedProjectAnnotations
+ > =>
+ composeConfigs([getReactNativeProjectAnnotations(() => view), ...annotations]);
+
+ const preview: PreviewWithSelection = new PreviewWithSelection(
async (importPath: string) => importMap[importPath],
getProjectAnnotationsInitial,
selectionStore,
- previewView as any
+ previewView
);
- const view = new View(preview, channel, options);
+ view = new View(preview, channel, options);
if (global) {
- global.__STORYBOOK_ADDONS_CHANNEL__ = channel;
- global.__STORYBOOK_PREVIEW__ = preview;
+ const storybookGlobal = global as typeof globalThis & {
+ __STORYBOOK_ADDONS_CHANNEL__?: Channel;
+ __STORYBOOK_PREVIEW__?: PreviewWithSelection;
+ };
+
+ storybookGlobal.__STORYBOOK_ADDONS_CHANNEL__ = channel;
+ storybookGlobal.__STORYBOOK_PREVIEW__ = preview;
}
view._storyIndex = index;
@@ -159,8 +169,8 @@ export function start({
export function updateView(
viewInstance: View,
- annotations: any[],
- normalizedStories: (NormalizedStoriesSpecifier & { req: any })[],
+ annotations: ModuleExports[],
+ normalizedStories: StoryEntry[],
options?: ReactNativeOptions
) {
const composedAnnotations = composeConfigs(annotations);
diff --git a/packages/react-native/src/View.test.ts b/packages/react-native/src/View.test.ts
new file mode 100644
index 0000000000..4118e4fd1a
--- /dev/null
+++ b/packages/react-native/src/View.test.ts
@@ -0,0 +1,68 @@
+import type { SelectionStore } from 'storybook/internal/preview-api';
+import { View } from './View';
+
+jest.mock('storybook/manager-api', () => ({
+ addons: {
+ loadAddons: jest.fn(),
+ setChannel: jest.fn(),
+ },
+}));
+
+describe('View story selection persistence', () => {
+ const createView = () => {
+ const selectionStore = {
+ selectionSpecifier: null,
+ setQueryParams: jest.fn(),
+ } as unknown as SelectionStore;
+
+ selectionStore.setSelection = jest.fn((selection) => {
+ selectionStore.selection = selection;
+ });
+
+ const preview = {
+ selectionStore,
+ selectSpecifiedStory: jest.fn(async () => {
+ if (selectionStore.selection) return;
+
+ const storySpecifier = selectionStore.selectionSpecifier?.storySpecifier;
+ const storyId = storySpecifier === '*' ? 'first--story' : String(storySpecifier);
+
+ selectionStore.setSelection({ storyId, viewMode: 'story' });
+ }),
+ };
+
+ const view = new View(preview as any, {} as any, {});
+ view._storyIndex = {
+ entries: {
+ 'first--story': { id: 'first--story', type: 'story' },
+ 'second--story': { id: 'second--story', type: 'story' },
+ },
+ } as any;
+
+ return { preview, selectionStore, view };
+ };
+
+ it('applies the initial story even when the preview already has a selection', async () => {
+ const { preview, selectionStore, view } = createView();
+
+ selectionStore.selection = { storyId: 'first--story', viewMode: 'story' };
+
+ await view._selectInitialStory({
+ selectionSpecifier: { storySpecifier: 'second--story', viewMode: 'story' },
+ });
+
+ expect(preview.selectSpecifiedStory).toHaveBeenCalledTimes(1);
+ expect(selectionStore.selection).toEqual({ storyId: 'second--story', viewMode: 'story' });
+ });
+
+ it('prefers an initial URL story over the persisted selection', async () => {
+ const { selectionStore, view } = createView();
+
+ await view._selectInitialStory({
+ selectionSpecifier: { storySpecifier: 'second--story', viewMode: 'story' },
+ storyIdFromUrl: 'first--story',
+ });
+
+ expect(selectionStore.selection).toEqual({ storyId: 'first--story', viewMode: 'story' });
+ });
+});
diff --git a/packages/react-native/src/View.tsx b/packages/react-native/src/View.tsx
index c271a822a5..b3e7aaef59 100644
--- a/packages/react-native/src/View.tsx
+++ b/packages/react-native/src/View.tsx
@@ -1,34 +1,37 @@
-import { StoryContext, toId } from 'storybook/internal/csf';
import type { ReactRenderer } from '@storybook/react';
import { Theme, darkTheme, theme } from '@storybook/react-native-theming';
import { type SBUI, transformStoryIndexToStoriesHash } from '@storybook/react-native-ui-common';
-import { Channel, WebsocketTransport } from 'storybook/internal/channels';
-import { CHANNEL_CREATED, SET_CURRENT_STORY } from 'storybook/internal/core-events';
-import { addons as managerAddons } from 'storybook/manager-api';
-import { PreviewWithSelection, addons as previewAddons } from 'storybook/internal/preview-api';
-import type { API_IndexHash, PreparedStory, StoryId, StoryIndex } from 'storybook/internal/types';
import dedent from 'dedent';
-import { patchChannelForRN } from './patchChannelForRN';
import deepmerge from 'deepmerge';
import { useEffect, useMemo, useReducer, useState } from 'react';
import { SafeAreaProvider, useSafeAreaInsets } from 'react-native-safe-area-context';
+import { Channel, WebsocketTransport } from 'storybook/internal/channels';
+import { CHANNEL_CREATED, SET_CURRENT_STORY } from 'storybook/internal/core-events';
+import { StoryContext, toId } from 'storybook/internal/csf';
+import {
+ PreviewWithSelection,
+ type SelectionStore,
+ addons as previewAddons,
+} from 'storybook/internal/preview-api';
+import type { API_IndexHash, PreparedStory, StoryId, StoryIndex } from 'storybook/internal/types';
+import { addons as managerAddons } from 'storybook/manager-api';
+import { patchChannelForRN } from './patchChannelForRN';
import {
- StatusBar,
ActivityIndicator,
Linking,
Platform,
View as RNView,
- StyleSheet,
+ StatusBar,
useColorScheme,
} from 'react-native';
import StoryView from './components/StoryView';
-import { useSetStoryContext, useStoryContext } from './hooks';
import {
RN_STORYBOOK_EVENTS,
RN_STORYBOOK_STORAGE_KEY,
STORYBOOK_STORY_ID_PARAM,
} from './constants';
+import { useSetStoryContext, useStoryContext } from './hooks';
function resolveStoryBackgroundColor(
story?: StoryContext | null
@@ -51,8 +54,8 @@ function resolveStoryBackgroundColor(
}
export interface Storage {
- getItem: (key: string) => Promise;
- setItem: (key: string, value: string) => Promise;
+ getItem: (key: string) => Promise | string | null;
+ setItem: (key: string, value: string) => Promise | void;
}
type StoryKind = string;
@@ -112,14 +115,14 @@ export type Params = {
};
export class View {
- _storyIndex: StoryIndex;
+ _storyIndex!: StoryIndex;
_setStory: (story: StoryContext) => void = () => {};
_forceRerender: () => void = () => {};
_ready: boolean = false;
_preview: PreviewWithSelection;
- _asyncStorageStoryId: string;
- _webUrl: string;
- _storage: Storage;
+ _asyncStorageStoryId: string | null = null;
+ _webUrl?: string;
+ _storage!: Storage;
_channel: Channel;
_options: any;
_idToPrepared: Record> = {};
@@ -134,10 +137,29 @@ export class View {
return Object.keys(this._storyIndex.entries).includes(storyId);
};
+ _selectInitialStory = async ({
+ selectionSpecifier,
+ storyIdFromUrl,
+ }: {
+ selectionSpecifier: NonNullable;
+ storyIdFromUrl?: string | null;
+ }) => {
+ this._preview.selectionStore.selectionSpecifier = storyIdFromUrl
+ ? { storySpecifier: storyIdFromUrl, viewMode: 'story' }
+ : selectionSpecifier;
+
+ // The preview can survive Metro refreshes through globalThis.view. Storybook's
+ // selectSpecifiedStory returns early when a selection already exists, so clear
+ // the stale selection before applying the specifier from storage or a deep link.
+ this._preview.selectionStore.selection = undefined;
+
+ await this._preview.selectSpecifiedStory();
+ };
+
_getInitialStory = async ({
initialSelection,
shouldPersistSelection = true,
- }: Partial = {}) => {
+ }: Partial = {}): Promise> => {
if (initialSelection) {
if (typeof initialSelection === 'string') {
return { storySpecifier: initialSelection, viewMode: 'story' };
@@ -156,14 +178,19 @@ export class View {
if (!value && this._storage != null) {
value = await this._storage.getItem(RN_STORYBOOK_STORAGE_KEY);
+ if (!value) {
+ // Native storage can report null during process startup before its
+ // persisted state is fully available.
+ await new Promise((resolve) => setTimeout(resolve, 100));
+ value = await this._storage.getItem(RN_STORYBOOK_STORAGE_KEY);
+ }
+
this._asyncStorageStoryId = value;
}
- const exists = value && this._storyIdExists(value);
-
- if (!exists) console.log('Storybook: could not find persisted story');
+ const persistedStoryId = value && this._storyIdExists(value) ? value : undefined;
- return { storySpecifier: exists ? value : '*', viewMode: 'story' };
+ return { storySpecifier: persistedStoryId ?? '*', viewMode: 'story' };
} catch (e) {
console.warn('storybook-log: error reading from async storage', e);
}
@@ -242,10 +269,12 @@ export class View {
hasStoryWrapper: storyViewWrapper = true,
} = params;
- const storage = params.storage ?? {
- getItem: async (key) => null,
- setItem: async (key, value) => {},
- };
+ const storage =
+ params.storage ??
+ ({
+ getItem: async (key) => null,
+ setItem: async (key, value) => {},
+ } as Storage);
const onDeviceUI = this._options?.disableUI ? false : (params.onDeviceUI ?? true);
const shouldPersistSelection = this._options.disableUI
@@ -273,8 +302,6 @@ export class View {
setItem: async (key, value) => {},
};
- const initialStory = this._getInitialStory(params);
-
if (enableWebsockets) {
const channel = this._getServerChannel(params);
managerAddons.setChannel(channel);
@@ -294,7 +321,7 @@ export class View {
managerAddons.loadAddons({
store: () => ({
- fromId: (id) => {
+ fromId: (id: string) => {
if (!this._ready) {
throw new Error('Storybook is not ready yet');
}
@@ -353,49 +380,57 @@ export class View {
useEffect(() => {
self
.createPreparedStoryMapping()
+ .then(() =>
+ Linking.getInitialURL().then((url) => {
+ if (url && typeof url === 'string') {
+ const urlObj = new URL(url);
+ const storyId = urlObj.searchParams.get(STORYBOOK_STORY_ID_PARAM);
+
+ const hasStoryId = typeof storyId === 'string';
+ const storyExists = hasStoryId && self._storyIdExists(storyId);
+
+ if (hasStoryId && !storyExists) {
+ console.log(
+ `STORYBOOK: Initial Linking event received, but story does not exist: ${storyId}`
+ );
+ }
+
+ if (storyExists) {
+ return storyId;
+ }
+ }
+
+ return null;
+ })
+ )
+ .then((initialStoryIdFromUrl) =>
+ self._getInitialStory(params).then((st) => {
+ if (initialStoryIdFromUrl) {
+ console.log(
+ `STORYBOOK: Setting initial story from Linking event, storyId: ${initialStoryIdFromUrl}`
+ );
+ }
+
+ return self._selectInitialStory({
+ selectionSpecifier: st,
+ storyIdFromUrl: initialStoryIdFromUrl,
+ });
+ })
+ )
.then(() => {
+ const currentStoryId = self._preview.currentSelection?.storyId;
+ const preparedStory = currentStoryId ? self._idToPrepared[currentStoryId] : undefined;
+
+ if (preparedStory) {
+ setContext(
+ self._preview.getStoryContext(
+ preparedStory
+ ) as unknown as StoryContext
+ );
+ }
+
self._ready = true;
setReady(true);
- return Linking.getInitialURL()
- .then((url) => {
- if (url && typeof url === 'string') {
- const urlObj = new URL(url);
- const storyId = urlObj.searchParams.get(STORYBOOK_STORY_ID_PARAM);
-
- const hasStoryId = storyId && typeof storyId === 'string';
- const storyExists = hasStoryId && self._storyIdExists(storyId);
-
- if (hasStoryId && !storyExists) {
- console.log(
- `STORYBOOK: Initial Linking event received, but story does not exist: ${storyId}`
- );
- }
-
- if (storyExists) {
- return storyId;
- } else {
- return null;
- }
- }
- })
- .then((initialStoryIdFromUrl) => {
- return initialStory.then((st) => {
- self._preview.selectionStore.selectionSpecifier = st;
-
- if (initialStoryIdFromUrl) {
- console.log(
- `STORYBOOK: Setting initial story from Linking event, storyId: ${initialStoryIdFromUrl}`
- );
-
- self._preview.selectionStore.selectionSpecifier = {
- storySpecifier: initialStoryIdFromUrl,
- viewMode: 'story',
- };
- }
-
- self._preview.selectSpecifiedStory();
- });
- });
})
.catch((e) => console.error(e));
@@ -413,10 +448,18 @@ export class View {
`);
}
- if (shouldPersistSelection && !!self._storage) {
- self._storage.setItem(RN_STORYBOOK_STORAGE_KEY, newStory.id).catch((e) => {
+ if (shouldPersistSelection && !!self._storage && self._ready) {
+ try {
+ self._asyncStorageStoryId = newStory.id;
+ const ret = self._storage.setItem(RN_STORYBOOK_STORAGE_KEY, newStory.id);
+ if (ret && typeof (ret as Promise).then === 'function') {
+ (ret as Promise).catch((e) => {
+ console.warn('storybook-log: error writing to async storage', e);
+ });
+ }
+ } catch (e) {
console.warn('storybook-log: error writing to async storage', e);
- });
+ }
}
};
@@ -447,7 +490,11 @@ export class View {
return (
[0]['story']}
storyHash={storyHash}
setStory={(newStoryId) =>
self._channel.emit(SET_CURRENT_STORY, { storyId: newStoryId })
@@ -487,7 +534,7 @@ export class View {
storage={storage}
theme={appliedTheme as Theme}
storyHash={storyHash}
- story={story}
+ story={story as Parameters[0]['story']}
setStory={(newStoryId) =>
self._channel.emit(SET_CURRENT_STORY, { storyId: newStoryId })
}
diff --git a/packages/react-native/src/backgrounds/BackgroundPanel.tsx b/packages/react-native/src/backgrounds/BackgroundPanel.tsx
index ee12f7c36b..daabe0d74d 100644
--- a/packages/react-native/src/backgrounds/BackgroundPanel.tsx
+++ b/packages/react-native/src/backgrounds/BackgroundPanel.tsx
@@ -70,7 +70,7 @@ export type Channel = ReturnType;
interface BackgroundPanelProps {
channel: Channel;
api: API;
- active: boolean;
+ active?: boolean;
}
interface BackgroundOptions {
diff --git a/packages/react-native/src/components/StoryView/ErrorBoundary.tsx b/packages/react-native/src/components/StoryView/ErrorBoundary.tsx
index 6f172ca422..42ea9d78bd 100644
--- a/packages/react-native/src/components/StoryView/ErrorBoundary.tsx
+++ b/packages/react-native/src/components/StoryView/ErrorBoundary.tsx
@@ -1,22 +1,25 @@
-import React, { ReactNode } from 'react';
+import React, { ErrorInfo, ReactNode } from 'react';
import { View, Text } from 'react-native';
export class ErrorBoundary extends React.Component<
{ children: ReactNode | ReactNode[]; onError: (error: Error, stack: string) => void },
{ hasError: boolean }
> {
- constructor(props) {
+ constructor(props: {
+ children: ReactNode | ReactNode[];
+ onError: (error: Error, stack: string) => void;
+ }) {
super(props);
this.state = { hasError: false };
}
- static getDerivedStateFromError(_error) {
+ static getDerivedStateFromError(_error: Error) {
// Update state so the next render will show the fallback UI.
return { hasError: true };
}
- componentDidCatch(error, info) {
- this.props.onError(error, info.componentStack);
+ componentDidCatch(error: Error, info: ErrorInfo) {
+ this.props.onError(error, info.componentStack as string);
}
render() {
diff --git a/packages/react-native/src/components/StoryView/StoryView.tsx b/packages/react-native/src/components/StoryView/StoryView.tsx
index 70f9ff1114..de551ac048 100644
--- a/packages/react-native/src/components/StoryView/StoryView.tsx
+++ b/packages/react-native/src/components/StoryView/StoryView.tsx
@@ -53,7 +53,10 @@ const StoryView = ({
const containerStyle = useMemo(() => {
const layout = context?.parameters?.layout;
- const layoutStyle = layout ? layoutStyles[layout] : {};
+ const layoutStyle =
+ typeof layout === 'string' && layout in layoutStyles
+ ? layoutStyles[layout as keyof typeof layoutStyles]
+ : {};
return {
flex: 1,
diff --git a/packages/react-native/src/globals.d.ts b/packages/react-native/src/globals.d.ts
new file mode 100644
index 0000000000..0ec60578b8
--- /dev/null
+++ b/packages/react-native/src/globals.d.ts
@@ -0,0 +1,28 @@
+import type { Channel } from 'storybook/internal/channels';
+import type { PreviewWithSelection } from 'storybook/internal/preview-api';
+import type { ReactRenderer } from '@storybook/react';
+import type { Features } from './index';
+
+type sbCoreGlobalFeatures = {
+ measure?: boolean;
+ outline?: boolean;
+ interactions?: boolean;
+ viewport?: boolean;
+ highlight?: boolean;
+ backgrounds?: boolean;
+};
+
+declare global {
+ var global: typeof globalThis | undefined;
+ var CHANNEL_OPTIONS: { maxDepth: number } | undefined;
+ var FEATURES: (Features & sbCoreGlobalFeatures) | undefined;
+ var STORYBOOK_WEBSOCKET:
+ | {
+ host?: string;
+ port?: number;
+ secured?: boolean;
+ }
+ | undefined;
+ var __STORYBOOK_ADDONS_CHANNEL__: Channel | undefined;
+ var __STORYBOOK_PREVIEW__: PreviewWithSelection | undefined;
+}
diff --git a/packages/react-native/src/index.ts b/packages/react-native/src/index.ts
index 6101fe1ab4..b6b6836e56 100644
--- a/packages/react-native/src/index.ts
+++ b/packages/react-native/src/index.ts
@@ -10,10 +10,10 @@ export {
STORYBOOK_STORY_ID_PARAM,
} from './constants';
-export interface Features {
+export type Features = {
/** Enable the built-in on-device backgrounds addon panel. */
ondeviceBackgrounds?: boolean;
-}
+};
type Addon = string | { name: string; options?: Record };
diff --git a/packages/react-native/src/metro/channelServer.ts b/packages/react-native/src/metro/channelServer.ts
index 2f65e0106d..27cd0bee1d 100644
--- a/packages/react-native/src/metro/channelServer.ts
+++ b/packages/react-native/src/metro/channelServer.ts
@@ -53,6 +53,13 @@ interface ChannelServerOptions {
* TLS credentials used when `secured` is true.
*/
ssl?: ChannelServerSecureOptions;
+
+ /**
+ * Whether the channel server should keep the Node.js process alive.
+ * When false, the server is unref'd.
+ * Defaults to false.
+ */
+ keepNodeProcessAlive?: boolean;
}
/**
@@ -72,6 +79,7 @@ interface ChannelServerOptions {
* @param options.websockets - Whether to enable WebSocket server support.
* @param options.secured - Whether to use HTTPS/WSS for the channel server.
* @param options.ssl - TLS credentials used when `secured` is true.
+ * @param options.keepAlive - Whether the channel server should keep the Node.js process alive.
* @returns The created WebSocketServer instance, or null when websockets are disabled.
*/
export function createChannelServer({
@@ -82,6 +90,7 @@ export function createChannelServer({
websockets = true,
secured = false,
ssl,
+ keepNodeProcessAlive = false,
}: ChannelServerOptions): WebSocketServer | null {
if (secured && (!ssl?.key || !ssl?.cert)) {
throw new Error('[Storybook] Secure channel server requires both `ssl.key` and `ssl.cert`.');
@@ -186,7 +195,8 @@ export function createChannelServer({
client.send(JSON.stringify({ type: 'ping', args: [] }));
}
});
- }, 10000);
+ }, 10000) as { unref?: () => void };
+ // node timeers have unref
pingInterval.unref?.();
wss.on('connection', function connection(ws: WebSocket) {
@@ -233,6 +243,13 @@ export function createChannelServer({
console.log(`${protocol} server listening on ${host ?? 'localhost'}:${port}`);
});
+ // by default keepNodeProcessAlive is false to make sure we don't cause bundling to hang
+ if (!keepNodeProcessAlive) {
+ httpServer.unref();
+ }
+
+ process.once('beforeExit', () => httpServer.close());
+
// Pre-initialize MCP if enabled (non-blocking)
mcpServer?.preInit();
diff --git a/packages/react-native/src/metro/mcpServer.ts b/packages/react-native/src/metro/mcpServer.ts
index 6859ffcaac..efe69b9ef1 100644
--- a/packages/react-native/src/metro/mcpServer.ts
+++ b/packages/react-native/src/metro/mcpServer.ts
@@ -30,7 +30,7 @@ async function incomingMessageToWebRequest(req: IncomingMessage): Promise 0 ? new Uint8Array(bodyBuffer) : undefined,
diff --git a/packages/react-native/src/patchChannelForRN.ts b/packages/react-native/src/patchChannelForRN.ts
index c3ff7e5017..932a6c411f 100644
--- a/packages/react-native/src/patchChannelForRN.ts
+++ b/packages/react-native/src/patchChannelForRN.ts
@@ -63,7 +63,7 @@ export function patchChannelForRN(channel: Channel): void {
* when action args contain React fiber nodes or other deep object graphs.
* The default maxDepth of 15 is too deep and causes blocking + crashes.
*/
- globalThis.CHANNEL_OPTIONS = {
+ (globalThis as typeof globalThis & { CHANNEL_OPTIONS?: { maxDepth: number } }).CHANNEL_OPTIONS = {
maxDepth: 5,
};
diff --git a/packages/react-native/src/prepareStories.ts b/packages/react-native/src/prepareStories.ts
index e7c5bf6b8c..1537e924e7 100644
--- a/packages/react-native/src/prepareStories.ts
+++ b/packages/react-native/src/prepareStories.ts
@@ -94,22 +94,21 @@ export function prepareStories({
subtype: 'story',
};
- const importedStories = req(filename);
- const stories = Object.entries(importedStories).reduce(
- (carry, [storyKey, story]: [string, Readonly>]) => {
- if (!isExportStory(storyKey, fileExports.default)) return carry;
-
- if (story.play && !options?.playFn) {
- // play functions are not yet fully supported on native.
- // There is a new option in main.js to turn them on for future use.
- carry[storyKey] = { ...story, play: undefined };
- } else {
- carry[storyKey] = story;
- }
- return carry;
- },
- {}
- );
+ const importedStories = req(filename) as Record>>;
+ const stories = Object.entries(importedStories).reduce<
+ Record>>
+ >((carry, [storyKey, story]) => {
+ if (!isExportStory(storyKey, fileExports.default)) return carry;
+
+ if (story.play && !options?.playFn) {
+ // play functions are not yet fully supported on native.
+ // There is a new option in main.js to turn them on for future use.
+ carry[storyKey] = { ...story, play: undefined };
+ } else {
+ carry[storyKey] = story;
+ }
+ return carry;
+ }, {});
importMap[`${root}/${filename.substring(2)}`] = stories;
} else {
@@ -117,8 +116,11 @@ export function prepareStories({
}
});
} catch (error) {
+ const typedError = error as Error;
const errorString =
- error.message && error.stack ? `${error.message}\n ${error.stack}` : error.toString();
+ typedError.message && typedError.stack
+ ? `${typedError.message}\n ${typedError.stack}`
+ : typedError.toString();
console.error(`Unexpected error while loading ${filename}: ${errorString}`);
}
});
@@ -128,7 +130,7 @@ export function prepareStories({
sortStoriesV7(
sortableStories,
- storySort,
+ storySort as Addon_StorySortParameterV7,
Object.values(index.entries).map((entry) => entry.importPath)
);
diff --git a/packages/react-native/tsconfig.json b/packages/react-native/tsconfig.json
index 4c667460d7..11c120a612 100644
--- a/packages/react-native/tsconfig.json
+++ b/packages/react-native/tsconfig.json
@@ -1,10 +1,9 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
- "baseUrl": ".",
"rootDirs": ["./src", "./scripts"],
"outDir": "dist/"
},
- "exclude": ["src/__tests__/**/*"],
+ "exclude": ["src/__tests__/**/*", "src/**/*.test.ts", "src/**/*.test.tsx"],
"include": ["src/**/*"]
}
diff --git a/packages/react-native/tsup.config.ts b/packages/react-native/tsdown.config.mts
similarity index 78%
rename from packages/react-native/tsup.config.ts
rename to packages/react-native/tsdown.config.mts
index f8d2458919..144285e039 100644
--- a/packages/react-native/tsup.config.ts
+++ b/packages/react-native/tsdown.config.mts
@@ -1,4 +1,4 @@
-import { defineConfig } from 'tsup';
+import { defineConfig } from 'tsdown';
export default defineConfig((options) => {
return {
@@ -11,6 +11,14 @@ export default defineConfig((options) => {
'src/stub.tsx',
'src/node.ts',
],
+ format: ['cjs'],
+ fixedExtension: false,
+ deps: {
+ onlyBundle: false,
+ },
+ define: {
+ 'import.meta': '{}',
+ },
// minify: !options.watch,
clean: !options.watch,
dts: !options.watch
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 10b55f2b37..82a5082a67 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -4,18 +4,6 @@ settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
-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
-
importers:
.:
@@ -28,7 +16,7 @@ importers:
version: 2.30.0(@types/node@25.6.0)
'@docusaurus/eslint-plugin':
specifier: ^3.10.0
- version: 3.10.0(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ version: 3.10.0(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
'@prettier/plugin-oxc':
specifier: ^0.1.3
version: 0.1.3(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
@@ -39,8 +27,8 @@ importers:
specifier: ^9.39.4
version: 9.39.4(jiti@1.21.7)
eslint-config-expo:
- specifier: ^55.0.0
- version: 55.0.0(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ specifier: ^56.0.2
+ version: 56.0.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
eslint-config-prettier:
specifier: ^10.1.8
version: 10.1.8(eslint@9.39.4(jiti@1.21.7))
@@ -54,66 +42,69 @@ importers:
specifier: ^1.11.0
version: 1.11.1
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: ~6.0.3
+ version: 6.0.3
docs:
dependencies:
'@docusaurus/core':
specifier: ^3.10.0
- version: 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ version: 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
'@docusaurus/faster':
specifier: ^3.10.0
- version: 3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21)
+ version: 3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21)
'@docusaurus/preset-classic':
specifier: ^3.10.0
- version: 3.10.0(@algolia/client-search@5.50.1)(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(search-insights@2.17.3)(typescript@5.9.3)
+ version: 3.10.0(@algolia/client-search@5.50.1)(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(search-insights@2.17.3)(typescript@6.0.3)
'@mdx-js/react':
specifier: ^3.1.1
- version: 3.1.1(@types/react@19.2.14)(react@19.2.0)
+ version: 3.1.1(@types/react@19.2.14)(react@19.2.3)
clsx:
specifier: ^2.1.1
version: 2.1.1
prism-react-renderer:
specifier: ^2.4.1
- version: 2.4.1(react@19.2.0)
+ version: 2.4.1(react@19.2.3)
react:
- specifier: 19.2.0
- version: 19.2.0
+ specifier: 19.2.3
+ version: 19.2.3
react-dom:
- specifier: 19.2.0
- version: 19.2.0(react@19.2.0)
+ specifier: 19.2.3
+ version: 19.2.3(react@19.2.3)
devDependencies:
'@docusaurus/module-type-aliases':
specifier: ^3.10.0
- version: 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
'@docusaurus/tsconfig':
specifier: ^3.10.0
version: 3.10.0
'@docusaurus/types':
specifier: ^3.10.0
- version: 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: ~6.0.3
+ version: 6.0.3
examples/expo-example:
dependencies:
+ '@expo/dom-webview':
+ 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)
'@expo/metro-runtime':
- specifier: ~55.0.7
- version: 55.0.9(@expo/dom-webview@55.0.5)(expo@55.0.14)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: ~56.0.5
+ version: 56.0.5(@expo/log-box@56.0.6)(expo@56.0.0-preview.7)(react-dom@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)
'@gorhom/bottom-sheet':
specifier: ^5.2.8
- version: 5.2.9(@types/react@19.2.14)(react-native-gesture-handler@2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-reanimated@4.2.1(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 5.2.9(3fc08df43517739b4d69cc02d7705d5b)
'@react-native-async-storage/async-storage':
specifier: 2.2.0
- version: 2.2.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
+ version: 2.2.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-native-community/datetimepicker':
- specifier: 8.6.0
- version: 8.6.0(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: 9.1.0
+ version: 9.1.0(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)
'@react-native-community/slider':
- specifier: 5.1.2
- version: 5.1.2
+ specifier: 5.2.0
+ version: 5.2.0
'@storybook/addon-ondevice-actions':
specifier: ^10.4.0
version: link:../../packages/ondevice-actions
@@ -131,7 +122,7 @@ importers:
version: 1.0.1
'@storybook/react':
specifier: ^10.3.2
- version: 10.3.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
+ version: 10.3.5(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)
'@storybook/react-native':
specifier: ^10.4.0
version: link:../../packages/react-native
@@ -140,52 +131,55 @@ importers:
version: link:../../packages/react-native-ui-lite
'@storybook/react-native-web-vite':
specifier: ^10.3.2
- version: 10.3.2(esbuild@0.27.7)(react-dom@19.2.0(react@19.2.0))(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(rollup@4.60.1)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))
+ version: 10.3.2(esbuild@0.27.7)(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@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)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))
babel-plugin-react-compiler:
specifier: ^1.0.0
version: 1.0.0
expo:
- specifier: ^55.0.14
- version: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ specifier: 56.0.0-preview.7
+ version: 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)
+ 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-updates:
- specifier: ~55.0.16
- version: 55.0.20(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ specifier: ~56.0.6
+ version: 56.0.6(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)
react:
- specifier: 19.2.0
- version: 19.2.0
+ specifier: 19.2.3
+ version: 19.2.3
react-compiler-runtime:
specifier: ^1.0.0
- version: 1.0.0(react@19.2.0)
+ version: 1.0.0(react@19.2.3)
react-dom:
- specifier: 19.2.0
- version: 19.2.0(react@19.2.0)
+ specifier: 19.2.3
+ version: 19.2.3(react@19.2.3)
react-native:
- specifier: 0.83.4
- version: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ specifier: 0.85.3
+ version: 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-native-gesture-handler:
- specifier: ~2.30.0
- version: 2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: ~2.31.2
+ version: 2.31.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)
react-native-reanimated:
- specifier: ~4.2.1
- version: 4.2.1(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: ~4.3.0
+ version: 4.3.0(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)
react-native-safe-area-context:
- specifier: ^5
- version: 5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: ^5.7.0
+ version: 5.7.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-svg:
- specifier: 15.15.3
- version: 15.15.3(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ 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.0(react@19.2.0))(react@19.2.0)
+ version: 0.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
react-native-worklets:
- specifier: 0.7.2
- version: 0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: 0.8.3
+ version: 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)
storybook:
specifier: ^10.3.2
- version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
storybook-addon-deep-controls:
specifier: ^0.10.0
- version: 0.10.0(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))
+ version: 0.10.0(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))
ws:
specifier: ^8.20.0
version: 8.20.0
@@ -195,13 +189,16 @@ importers:
version: 7.29.0
'@dannyhw/rozenite-storybook':
specifier: 0.0.2
- version: 0.0.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 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)
'@rozenite/metro':
specifier: ^1.6.0
version: 1.7.0
'@testing-library/react-native':
specifier: 14.0.0-beta.0
- version: 14.0.0-beta.0(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(test-renderer@0.15.0(@types/react@19.2.14)(react@19.2.0))
+ version: 14.0.0-beta.0(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.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)(test-renderer@0.15.0(@types/react@19.2.14)(react@19.2.3))
+ '@types/jest':
+ specifier: ^29.5.13
+ version: 29.5.14
'@types/react':
specifier: ~19.2.14
version: 19.2.14
@@ -210,22 +207,22 @@ importers:
version: 8.18.1
babel-plugin-react-docgen-typescript:
specifier: ^1.5.1
- version: 1.5.1(@babel/core@7.29.0)(typescript@5.9.3)
+ version: 1.5.1(@babel/core@7.29.0)(typescript@6.0.3)
expo-atlas:
specifier: ^0.4.3
- version: 0.4.3(expo@55.0.14)
+ version: 0.4.3(expo@56.0.0-preview.7)
jest:
specifier: ^29.7.0
version: 29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0)
jest-expo:
- specifier: ~55.0.11
- version: 55.0.15(@babel/core@7.29.0)(expo@55.0.14)(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ specifier: ~56.0.0
+ version: 56.0.0(@babel/core@7.29.0)(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.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)
test-renderer:
specifier: ^0.15.0
- version: 0.15.0(@types/react@19.2.14)(react@19.2.0)
+ version: 0.15.0(@types/react@19.2.14)(react@19.2.3)
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: ~6.0.3
+ version: 6.0.3
vite:
specifier: ^8.0.5
version: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3)
@@ -233,20 +230,20 @@ importers:
examples/expo-new-wrapper-example:
dependencies:
'@expo/metro-runtime':
- specifier: ~55.0.7
- version: 55.0.9(@expo/dom-webview@55.0.5)(expo@55.0.14)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: ~56.0.5
+ version: 56.0.5(@expo/log-box@56.0.6)(expo@56.0.0-preview.7)(react-dom@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)
'@gorhom/bottom-sheet':
specifier: ^5.2.8
- version: 5.2.9(@types/react@19.2.14)(react-native-gesture-handler@2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-reanimated@4.2.3(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 5.2.9(3fc08df43517739b4d69cc02d7705d5b)
'@react-native-async-storage/async-storage':
specifier: 2.2.0
- version: 2.2.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
+ version: 2.2.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-native-community/datetimepicker':
- specifier: 8.6.0
- version: 8.6.0(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: 9.1.0
+ version: 9.1.0(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)
'@react-native-community/slider':
- specifier: 5.1.2
- version: 5.1.2
+ specifier: 5.2.0
+ version: 5.2.0
'@storybook/addon-ondevice-actions':
specifier: ^10.4.0
version: link:../../packages/ondevice-actions
@@ -264,7 +261,7 @@ importers:
version: 1.0.1
'@storybook/react':
specifier: ^10.3.2
- version: 10.3.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
+ version: 10.3.5(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)
'@storybook/react-native':
specifier: ^10.4.0
version: link:../../packages/react-native
@@ -273,52 +270,52 @@ importers:
version: link:../../packages/react-native-ui-lite
'@storybook/react-native-web-vite':
specifier: ^10.3.2
- version: 10.3.2(esbuild@0.27.7)(react-dom@19.2.0(react@19.2.0))(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(rollup@4.60.1)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))
+ version: 10.3.2(esbuild@0.27.7)(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@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)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))
babel-plugin-react-compiler:
specifier: ^1.0.0
version: 1.0.0
expo:
- specifier: ^55.0.14
- version: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ specifier: 56.0.0-preview.7
+ version: 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)
expo-updates:
- specifier: ~55.0.16
- version: 55.0.20(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ specifier: ~56.0.6
+ version: 56.0.6(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)
react:
- specifier: 19.2.0
- version: 19.2.0
+ specifier: 19.2.3
+ version: 19.2.3
react-compiler-runtime:
specifier: ^1.0.0
- version: 1.0.0(react@19.2.0)
+ version: 1.0.0(react@19.2.3)
react-dom:
- specifier: 19.2.0
- version: 19.2.0(react@19.2.0)
+ specifier: 19.2.3
+ version: 19.2.3(react@19.2.3)
react-native:
- specifier: 0.83.4
- version: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ specifier: 0.85.3
+ version: 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-native-gesture-handler:
- specifier: ~2.30.0
- version: 2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: ~2.31.2
+ version: 2.31.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)
react-native-reanimated:
- specifier: ~4.2.1
- version: 4.2.3(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: ~4.3.0
+ version: 4.3.0(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)
react-native-safe-area-context:
- specifier: ^5
- version: 5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: ^5.7.0
+ version: 5.7.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-svg:
- specifier: 15.15.3
- version: 15.15.3(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ 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.0(react@19.2.0))(react@19.2.0)
+ version: 0.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
react-native-worklets:
- specifier: 0.7.2
- version: 0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: 0.8.3
+ version: 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)
storybook:
specifier: ^10.3.2
- version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
storybook-addon-deep-controls:
specifier: ^0.10.0
- version: 0.10.0(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))
+ version: 0.10.0(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))
ws:
specifier: ^8.20.0
version: 8.20.0
@@ -328,13 +325,13 @@ importers:
version: 7.29.0
'@dannyhw/rozenite-storybook':
specifier: 0.0.2
- version: 0.0.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 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)
'@rozenite/metro':
specifier: ^1.6.0
version: 1.7.0
'@testing-library/react-native':
specifier: 14.0.0-beta.0
- version: 14.0.0-beta.0(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(test-renderer@0.15.0(@types/react@19.2.14)(react@19.2.0))
+ version: 14.0.0-beta.0(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.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)(test-renderer@0.15.0(@types/react@19.2.14)(react@19.2.3))
'@types/react':
specifier: ~19.2.14
version: 19.2.14
@@ -343,22 +340,22 @@ importers:
version: 8.18.1
babel-plugin-react-docgen-typescript:
specifier: ^1.5.1
- version: 1.5.1(@babel/core@7.29.0)(typescript@5.9.3)
+ version: 1.5.1(@babel/core@7.29.0)(typescript@6.0.3)
expo-atlas:
specifier: ^0.4.3
- version: 0.4.3(expo@55.0.14)
+ version: 0.4.3(expo@56.0.0-preview.7)
jest:
specifier: ^29.7.0
version: 29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0)
jest-expo:
- specifier: ~55.0.11
- version: 55.0.15(@babel/core@7.29.0)(expo@55.0.14)(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ specifier: ~56.0.0
+ version: 56.0.0(@babel/core@7.29.0)(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.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)
test-renderer:
specifier: ^0.15.0
- version: 0.15.0(@types/react@19.2.14)(react@19.2.0)
+ version: 0.15.0(@types/react@19.2.14)(react@19.2.3)
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: ~6.0.3
+ version: 6.0.3
vite:
specifier: ^8.0.5
version: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3)
@@ -367,16 +364,16 @@ importers:
dependencies:
'@expo/vector-icons':
specifier: ^15.0.3
- version: 15.1.1(expo-font@55.0.6)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 15.1.1(expo-font@56.0.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-navigation/bottom-tabs':
specifier: ^7.4.0
- version: 7.15.11(@react-navigation/native@7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-screens@4.23.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 7.15.11(d3113f5aedba4bc22c7f261c71692f23)
'@react-navigation/elements':
specifier: ^2.6.3
- version: 2.9.15(@react-navigation/native@7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 2.9.15(a57a634aadd90d6726be819abb0238ae)
'@react-navigation/native':
specifier: ^7.1.8
- version: 7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 7.2.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)
'@storybook/addon-ondevice-actions':
specifier: ^10.4.0
version: link:../../packages/ondevice-actions
@@ -394,7 +391,7 @@ importers:
version: 1.0.1
'@storybook/react':
specifier: ^10.3.2
- version: 10.3.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
+ version: 10.3.5(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)
'@storybook/react-native':
specifier: ^10.4.0
version: link:../../packages/react-native
@@ -403,73 +400,73 @@ importers:
version: link:../../packages/react-native-ui-lite
'@storybook/react-native-web-vite':
specifier: ^10.3.2
- version: 10.3.2(esbuild@0.27.7)(react-dom@19.2.0(react@19.2.0))(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(rollup@4.60.1)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))
+ version: 10.3.2(esbuild@0.27.7)(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@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)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))
expo:
- specifier: ^55.0.14
- version: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ specifier: 56.0.0-preview.7
+ version: 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)
expo-constants:
- specifier: ~55.0.15
- version: 55.0.15(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
+ specifier: ~56.0.6
+ version: 56.0.6(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))
expo-font:
- specifier: ~55.0.6
- version: 55.0.6(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ 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-haptics:
- specifier: ~55.0.14
- version: 55.0.14(expo@55.0.19)
+ specifier: ~56.0.3
+ version: 56.0.3(expo@56.0.0-preview.7)
expo-image:
- specifier: ~55.0.9
- version: 55.0.9(expo@55.0.19)(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: ~56.0.4
+ version: 56.0.4(expo@56.0.0-preview.7)(react-native-web@0.21.2(react-dom@19.2.3(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)
expo-linking:
- specifier: ~55.0.14
- version: 55.0.14(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ 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)
expo-router:
- specifier: ~55.0.13
- version: 55.0.13(45d51f50f8a415571faffbf3107b4078)
+ specifier: ~56.1.1
+ version: 56.1.1(f97a815c8b3e5c15c283c5191555858a)
expo-splash-screen:
- specifier: ~55.0.19
- version: 55.0.19(expo@55.0.19)(typescript@5.9.3)
+ specifier: ~56.0.4
+ version: 56.0.4(expo@56.0.0-preview.7)(typescript@6.0.3)
expo-status-bar:
- specifier: ~55.0.5
- version: 55.0.5(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ 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)
expo-symbols:
- specifier: ~55.0.7
- version: 55.0.7(expo-font@55.0.6)(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: ~56.0.5
+ version: 56.0.5(expo-font@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-system-ui:
- specifier: ~55.0.16
- version: 55.0.16(expo@55.0.19)(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
+ specifier: ~56.0.4
+ version: 56.0.4(expo@56.0.0-preview.7)(react-native-web@0.21.2(react-dom@19.2.3(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))
expo-web-browser:
- specifier: ~55.0.14
- version: 55.0.14(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
+ 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:
- specifier: 19.2.0
- version: 19.2.0
+ specifier: 19.2.3
+ version: 19.2.3
react-dom:
- specifier: 19.2.0
- version: 19.2.0(react@19.2.0)
+ specifier: 19.2.3
+ version: 19.2.3(react@19.2.3)
react-native:
- specifier: 0.83.4
- version: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ specifier: 0.85.3
+ version: 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-native-gesture-handler:
- specifier: ~2.30.0
- version: 2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: ~2.31.2
+ version: 2.31.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)
react-native-reanimated:
- specifier: ~4.2.1
- version: 4.2.3(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: ~4.3.0
+ version: 4.3.0(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)
react-native-safe-area-context:
- specifier: ^5
- version: 5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: ^5.7.0
+ version: 5.7.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-screens:
- specifier: ~4.23.0
- version: 4.23.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ 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-web:
specifier: ^0.21.2
- version: 0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 0.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
react-native-worklets:
- specifier: 0.7.2
- version: 0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: 0.8.3
+ version: 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)
storybook:
specifier: ^10.3.2
- version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
ws:
specifier: ^8.20.0
version: 8.20.0
@@ -481,26 +478,26 @@ importers:
specifier: ^9.39.4
version: 9.39.4(jiti@1.21.7)
eslint-config-expo:
- specifier: ^55.0.0
- version: 55.0.0(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ specifier: ^56.0.2
+ version: 56.0.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: ~6.0.3
+ version: 6.0.3
examples/repack-example:
dependencies:
'@react-native-async-storage/async-storage':
specifier: 2.2.0
- version: 2.2.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
+ version: 2.2.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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))
'@react-native-community/datetimepicker':
- specifier: 8.6.0
- version: 8.6.0(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: 9.1.0
+ version: 9.1.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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3)
'@react-native-community/slider':
- specifier: 5.1.2
- version: 5.1.2
+ specifier: 5.2.0
+ version: 5.2.0
'@react-native/new-app-screen':
specifier: 0.83.4
- version: 0.83.4(@types/react@19.2.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 0.83.4(@types/react@19.2.14)(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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3)
'@storybook/addon-ondevice-actions':
specifier: ^10.4.0
version: link:../../packages/ondevice-actions
@@ -515,7 +512,7 @@ importers:
version: link:../../packages/ondevice-notes
'@storybook/react':
specifier: ^10.3.2
- version: 10.3.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
+ version: 10.3.5(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)
'@storybook/react-native':
specifier: ^10.4.0
version: link:../../packages/react-native
@@ -523,17 +520,17 @@ importers:
specifier: ^10.4.0
version: link:../../packages/react-native-ui-lite
react:
- specifier: 19.2.0
- version: 19.2.0
+ specifier: 19.2.3
+ version: 19.2.3
react-native:
- specifier: 0.83.4
- version: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ specifier: 0.85.3
+ version: 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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3)
react-native-safe-area-context:
- specifier: ^5
- version: 5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: ^5.7.0
+ version: 5.7.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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3)
storybook:
specifier: ^10.3.2
- version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
devDependencies:
'@babel/core':
specifier: ^7.26.0
@@ -546,10 +543,10 @@ importers:
version: 7.29.2
'@callstack/repack':
specifier: ^5.2.5
- version: 5.2.5(@babel/core@7.29.0)(@rspack/core@2.0.1(@swc/helpers@0.5.21))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(tslib@2.8.1)(webpack@5.106.1)
+ version: 5.2.5(@babel/core@7.29.0)(@rspack/core@2.0.1(@swc/helpers@0.5.21))(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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(tslib@2.8.1)(webpack@5.106.1)
'@react-native-community/cli':
specifier: 20.0.0
- version: 20.0.0(typescript@5.9.3)
+ version: 20.0.0(typescript@6.0.3)
'@react-native-community/cli-platform-android':
specifier: 20.0.0
version: 20.0.0
@@ -561,7 +558,7 @@ importers:
version: 0.83.4(@babel/core@7.29.0)
'@react-native/eslint-config':
specifier: 0.83.4
- version: 0.83.4(eslint@9.39.4(jiti@1.21.7))(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(prettier@3.8.2)(typescript@5.9.3)
+ version: 0.83.4(eslint@9.39.4(jiti@1.21.7))(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(prettier@3.8.2)(typescript@6.0.3)
'@react-native/metro-config':
specifier: 0.83.4
version: 0.83.4(@babel/core@7.29.0)
@@ -570,7 +567,7 @@ importers:
version: 0.83.4
'@rnx-kit/metro-config':
specifier: ^2.2.3
- version: 2.2.4(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(memfs@4.57.1(tslib@2.8.1))(metro@0.83.7)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 2.2.4(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(memfs@4.57.1(tslib@2.8.1))(metro@0.84.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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3)
'@rspack/core':
specifier: ^2.0.1
version: 2.0.1(@swc/helpers@0.5.21)
@@ -597,13 +594,13 @@ importers:
version: 3.8.2
react-native-test-app:
specifier: ^5.1.4
- version: 5.1.4(@expo/config-plugins@55.0.8)(memfs@4.57.1(tslib@2.8.1))(metro@0.83.7)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 5.1.4(@expo/config-plugins@56.0.3)(memfs@4.57.1(tslib@2.8.1))(metro@0.84.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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3)
react-test-renderer:
specifier: 19.2.0
- version: 19.2.0(react@19.2.0)
+ version: 19.2.0(react@19.2.3)
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: ~6.0.3
+ version: 6.0.3
packages/ondevice-actions:
dependencies:
@@ -618,14 +615,14 @@ importers:
version: 19.2.0
react-native:
specifier: '*'
- version: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ version: 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)
devDependencies:
storybook:
specifier: ^10.3.2
- version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0)
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: ~6.0.3
+ version: 6.0.3
packages/ondevice-backgrounds:
dependencies:
@@ -637,23 +634,23 @@ importers:
version: 19.2.0
react-native:
specifier: '*'
- version: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ version: 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)
devDependencies:
storybook:
specifier: ^10.3.2
- version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0)
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: ~6.0.3
+ version: 6.0.3
packages/ondevice-controls:
dependencies:
'@gorhom/portal':
specifier: ^1.0.14
- version: 1.0.14(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 1.0.14(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)
'@react-native-community/datetimepicker':
specifier: '*'
- version: 8.6.0(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 8.6.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))(react@19.2.0)
'@react-native-community/slider':
specifier: '*'
version: 5.1.2
@@ -671,32 +668,32 @@ importers:
version: 19.2.0
react-native:
specifier: '*'
- version: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ version: 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-native-modal-datetime-picker:
specifier: ^18.0.0
- version: 18.0.0(@react-native-community/datetimepicker@8.6.0(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
+ version: 18.0.0(@react-native-community/datetimepicker@8.6.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))(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))
tinycolor2:
specifier: ^1.6.0
version: 1.6.0
devDependencies:
'@gorhom/bottom-sheet':
specifier: '*'
- version: 5.2.9(@types/react@19.2.14)(react-native-gesture-handler@2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-reanimated@4.2.3(react-native-worklets@0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 5.2.9(@types/react@19.2.14)(react-native-gesture-handler@2.31.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))(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)
cross-env:
specifier: ^10.1.0
version: 10.1.0
storybook:
specifier: ^10.3.2
- version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0)
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: ~6.0.3
+ version: 6.0.3
packages/ondevice-notes:
dependencies:
'@storybook/react':
specifier: ^10
- version: 10.3.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
+ version: 10.3.5(react-dom@19.2.3(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0))(typescript@6.0.3)
'@storybook/react-native-theming':
specifier: ^10.4.0
version: link:../react-native-theming
@@ -705,32 +702,32 @@ importers:
version: 19.2.0
react-native:
specifier: '*'
- version: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ version: 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)
devDependencies:
react-native-markdown-display:
specifier: ^7.0.2
- version: 7.0.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 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)
storybook:
specifier: ^10.3.2
- version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- tsup:
- specifier: ^8.5.0
- version: 8.5.1(@swc/core@1.15.24(@swc/helpers@0.5.21))(jiti@1.21.7)(postcss@8.5.9)(typescript@5.9.3)(yaml@2.8.3)
+ version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0)
+ tsdown:
+ specifier: ^0.22.0
+ version: 0.22.0(typescript@6.0.3)
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: ~6.0.3
+ version: 6.0.3
packages/react-native:
dependencies:
'@gorhom/bottom-sheet':
specifier: '>=4'
- version: 5.2.9(@types/react@19.2.14)(react-native-gesture-handler@2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-reanimated@4.2.3(react-native-worklets@0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 5.2.9(3fc08df43517739b4d69cc02d7705d5b)
'@storybook/mcp':
specifier: ^0.6.1
- version: 0.6.2(typescript@5.9.3)
+ version: 0.6.2(typescript@6.0.3)
'@storybook/react':
specifier: ^10.3.2
- version: 10.3.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
+ version: 10.3.5(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)
'@storybook/react-native-theming':
specifier: ^10.4.0
version: link:../react-native-theming
@@ -742,10 +739,10 @@ importers:
version: link:../react-native-ui-common
'@tmcp/adapter-valibot':
specifier: ^0.1.4
- version: 0.1.5(tmcp@1.19.3(typescript@5.9.3))(valibot@1.3.1(typescript@5.9.3))
+ version: 0.1.5(tmcp@1.19.3(typescript@6.0.3))(valibot@1.3.1(typescript@6.0.3))
'@tmcp/transport-http':
specifier: ^0.8.5
- version: 0.8.5(tmcp@1.19.3(typescript@5.9.3))
+ version: 0.8.5(tmcp@1.19.3(typescript@6.0.3))
commander:
specifier: ^14.0.2
version: 14.0.3
@@ -763,29 +760,32 @@ importers:
version: 13.0.6
react-native-gesture-handler:
specifier: '>=2'
- version: 2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 2.31.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)
react-native-reanimated:
specifier: '>=2'
- version: 4.2.3(react-native-worklets@0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 4.3.0(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)
react-native-safe-area-context:
- specifier: ^5
- version: 5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: '*'
+ version: 5.7.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-url-polyfill:
specifier: ^3.0.0
- version: 3.0.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
+ version: 3.0.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))
setimmediate:
specifier: ^1.0.5
version: 1.0.5
tmcp:
specifier: ^1.19.3
- version: 1.19.3(typescript@5.9.3)
+ version: 1.19.3(typescript@6.0.3)
valibot:
specifier: ^1.3.1
- version: 1.3.1(typescript@5.9.3)
+ version: 1.3.1(typescript@6.0.3)
ws:
specifier: ^8.20.0
version: 8.20.0
devDependencies:
+ '@react-native/jest-preset':
+ specifier: 0.85.3
+ version: 0.85.3(@babel/core@7.29.0)(react@19.2.3)
'@types/jest':
specifier: ^29.5.13
version: 29.5.14
@@ -797,34 +797,37 @@ importers:
version: 29.7.0(@babel/core@7.29.0)
babel-preset-expo:
specifier: ^55.0.13
- version: 55.0.17(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@55.0.19)(react-refresh@0.18.0)
+ version: 55.0.17(@babel/core@7.29.0)(@babel/runtime@7.29.2)(react-refresh@0.18.0)
jest:
specifier: ^29.7.0
version: 29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0)
jest-expo:
- specifier: ~55.0.11
- version: 55.0.15(@babel/core@7.29.0)(expo@55.0.19)(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ specifier: ~56.0.0
+ version: 56.0.0(@babel/core@7.29.0)(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.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)
jotai:
specifier: ^2.19.0
- version: 2.19.1(@babel/core@7.29.0)(@babel/template@7.28.6)(@types/react@19.2.14)(react@19.2.0)
+ version: 2.19.1(@babel/core@7.29.0)(@babel/template@7.28.6)(@types/react@19.2.14)(react@19.2.3)
react:
- specifier: 19.2.0
- version: 19.2.0
+ specifier: 19.2.3
+ version: 19.2.3
react-native:
- specifier: 0.83.4
- version: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ specifier: 0.85.3
+ version: 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)
storybook:
specifier: ^10.3.2
- version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ sucrase:
+ specifier: ^3.35.1
+ version: 3.35.1
test-renderer:
specifier: ^0.15.0
- version: 0.15.0(@types/react@19.2.14)(react@19.2.0)
- tsup:
- specifier: ^8.5.0
- version: 8.5.1(@swc/core@1.15.24(@swc/helpers@0.5.21))(jiti@1.21.7)(postcss@8.5.9)(typescript@5.9.3)(yaml@2.8.3)
+ version: 0.15.0(@types/react@19.2.14)(react@19.2.3)
+ tsdown:
+ specifier: ^0.22.0
+ version: 0.22.0(typescript@6.0.3)
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: ~6.0.3
+ version: 6.0.3
packages/react-native-theming:
dependencies:
@@ -836,32 +839,32 @@ importers:
version: 19.2.0
react-native:
specifier: '>=0.57.0'
- version: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.2))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ version: 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)
devDependencies:
'@emotion/native':
specifier: ^11.11.0
- version: 11.11.0(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.2))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 11.11.0(@emotion/react@11.14.0(@types/react@19.2.14)(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))(react@19.2.0)
'@emotion/react':
specifier: ^11.14.0
version: 11.14.0(@types/react@19.2.14)(react@19.2.0)
- tsup:
- specifier: ^8.5.0
- version: 8.5.1(@swc/core@1.15.24(@swc/helpers@0.5.21))(jiti@1.21.7)(postcss@8.5.9)(typescript@6.0.2)(yaml@2.8.3)
+ tsdown:
+ specifier: ^0.22.0
+ version: 0.22.0(typescript@6.0.3)
packages/react-native-ui:
dependencies:
'@gorhom/bottom-sheet':
specifier: '>=4'
- version: 5.2.9(@types/react@19.2.14)(react-native-gesture-handler@2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-reanimated@4.2.3(react-native-worklets@0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 5.2.9(@types/react@19.2.14)(react-native-gesture-handler@2.30.1(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))(react-native-reanimated@4.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.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))(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))(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)
'@gorhom/portal':
specifier: ^1.0.14
- version: 1.0.14(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 1.0.14(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)
'@nozbe/microfuzz':
specifier: ^1.0.0
version: 1.0.0
'@storybook/react':
specifier: ^10.3.2
- version: 10.3.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
+ version: 10.3.5(react-dom@19.2.3(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0))(typescript@6.0.3)
'@storybook/react-native-theming':
specifier: ^10.4.0
version: link:../react-native-theming
@@ -876,32 +879,32 @@ importers:
version: 19.2.0
react-native:
specifier: '>=0.57.0'
- version: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ version: 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-native-gesture-handler:
specifier: '>=2'
- version: 2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 2.30.1(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)
react-native-reanimated:
specifier: '>=3'
- version: 4.2.3(react-native-worklets@0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 4.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.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))(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)
react-native-safe-area-context:
specifier: '*'
- version: 5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 5.7.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))(react@19.2.0)
react-native-svg:
specifier: '>=14'
- version: 15.15.3(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 15.15.3(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)
devDependencies:
'@types/react':
specifier: ~19.2.14
version: 19.2.14
storybook:
specifier: ^10.3.2
- version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- tsup:
- specifier: ^8.5.0
- version: 8.5.1(@swc/core@1.15.24(@swc/helpers@0.5.21))(jiti@1.21.7)(postcss@8.5.9)(typescript@5.9.3)(yaml@2.8.3)
+ version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0)
+ tsdown:
+ specifier: ^0.22.0
+ version: 0.22.0(typescript@6.0.3)
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: ~6.0.3
+ version: 6.0.3
packages/react-native-ui-common:
dependencies:
@@ -910,7 +913,7 @@ importers:
version: 1.0.0
'@storybook/react':
specifier: ^10.3.2
- version: 10.3.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
+ version: 10.3.5(react-dom@19.2.3(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0))(typescript@6.0.3)
'@storybook/react-native-theming':
specifier: ^10.4.0
version: link:../react-native-theming
@@ -925,7 +928,7 @@ importers:
version: 19.2.0
react-native:
specifier: '>=0.57.0'
- version: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ version: 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)
ts-dedent:
specifier: ^2.2.0
version: 2.2.0
@@ -935,28 +938,28 @@ importers:
version: 19.2.14
storybook:
specifier: ^10.3.2
- version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- tsup:
- specifier: ^8.5.0
- version: 8.5.1(@swc/core@1.15.24(@swc/helpers@0.5.21))(jiti@1.21.7)(postcss@8.5.9)(typescript@5.9.3)(yaml@2.8.3)
+ version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0)
+ tsdown:
+ specifier: ^0.22.0
+ version: 0.22.0(typescript@6.0.3)
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: ~6.0.3
+ version: 6.0.3
packages/react-native-ui-lite:
dependencies:
'@gorhom/portal':
specifier: ^1.0.14
- version: 1.0.14(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 1.0.14(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)
'@legendapp/list':
specifier: 3.0.0-beta.38
- version: 3.0.0-beta.38(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ version: 3.0.0-beta.38(react-dom@19.2.3(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))(react@19.2.0)
'@nozbe/microfuzz':
specifier: ^1.0.0
version: 1.0.0
'@storybook/react':
specifier: ^10.3.2
- version: 10.3.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
+ version: 10.3.5(react-dom@19.2.3(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0))(typescript@6.0.3)
'@storybook/react-native-theming':
specifier: ^10.4.0
version: link:../react-native-theming
@@ -971,26 +974,26 @@ importers:
version: 19.2.0
react-native:
specifier: '>=0.57.0'
- version: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ version: 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-native-safe-area-context:
- specifier: ^5
- version: 5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ specifier: '*'
+ version: 5.7.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))(react@19.2.0)
devDependencies:
'@types/react':
specifier: ~19.2.14
version: 19.2.14
storybook:
specifier: ^10.3.2
- version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0)
ts-dedent:
specifier: ^2.2.0
version: 2.2.0
- tsup:
- specifier: ^8.5.0
- version: 8.5.1(@swc/core@1.15.24(@swc/helpers@0.5.21))(jiti@1.21.7)(postcss@8.5.9)(typescript@5.9.3)(yaml@2.8.3)
+ tsdown:
+ specifier: ^0.22.0
+ version: 0.22.0(typescript@6.0.3)
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: ~6.0.3
+ version: 6.0.3
tests:
dependencies:
@@ -1102,9 +1105,6 @@ 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'}
@@ -1128,6 +1128,10 @@ packages:
resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@8.0.0-rc.4':
+ resolution: {integrity: sha512-YZ+FuIgkj7KrIb2a2X1XiY0QYgDxAbVbYP64SjwJzOK3euCsUerzenh2oqdsmKuPSlhzmFOOklnxzHAzXagvpw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+
'@babel/helper-annotate-as-pure@7.27.3':
resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
engines: {node: '>=6.9.0'}
@@ -1199,10 +1203,18 @@ packages:
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-string-parser@8.0.0-rc.4':
+ resolution: {integrity: sha512-dluR3v287dp6YPF57kyKKrHPKffUeuxH1zQcF1WD30TeFzWXhDiVi1U6PkqaDB0++H1PeCwRhmYl4DvoerlPIw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+
'@babel/helper-validator-identifier@7.28.5':
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-identifier@8.0.0-rc.4':
+ resolution: {integrity: sha512-HTD3bskipk5MSm08twTW6832jzIXUhxMddy4NPPzIMuyMEsrs0ZgwAaMj5ubB5+6hMlUjDu17vNconEmwsmpYg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
@@ -1220,6 +1232,11 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
+ '@babel/parser@8.0.0-rc.4':
+ resolution: {integrity: sha512-0S/1yefMa15N4i2v3t8Fw9pgMHhf2gF6Lc1UEXI96Ls6FNAjqvHHZouZ2ZS/deqLhbMFtmfVeFac6iTsvFbLwA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5':
resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==}
engines: {node: '>=6.9.0'}
@@ -1424,12 +1441,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.27.1':
- resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-class-properties@7.28.6':
resolution: {integrity: sha512-dY2wS3I2G7D697VHndN91TJr8/AAfXQNt5ynCTI/MpxMsSzHp+52uNivYT5wCPax3whc47DR8Ba7cmlQMg24bw==}
engines: {node: '>=6.9.0'}
@@ -1442,12 +1453,6 @@ packages:
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.28.4':
- resolution: {integrity: sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-classes@7.28.6':
resolution: {integrity: sha512-EF5KONAqC5zAqT783iMGuM2ZtmEBy+mJMOKl2BCvPZ2lVrwvXnB6o+OBWCS+CoeCCpVRF2sA2RBKUxvT8tQT5Q==}
engines: {node: '>=6.9.0'}
@@ -1586,12 +1591,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-nullish-coalescing-operator@7.27.1':
- resolution: {integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-nullish-coalescing-operator@7.28.6':
resolution: {integrity: sha512-3wKbRgmzYbw24mDJXT7N+ADXw8BC/imU9yo9c9X9NKaLF1fW+e5H1U5QjMUBe4Qo4Ox/o++IyUkl1sVCLgevKg==}
engines: {node: '>=6.9.0'}
@@ -1622,12 +1621,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.27.1':
- resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-optional-chaining@7.28.6':
resolution: {integrity: sha512-A4zobikRGJTsX9uqVFdafzGkqD30t26ck2LmOzAuLL8b2x6k3TIqRiT2xVvA9fNmFeTX484VpsdgmKNA0bS23w==}
engines: {node: '>=6.9.0'}
@@ -1801,12 +1794,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-typescript@7.27.1':
- resolution: {integrity: sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/preset-typescript@7.28.5':
resolution: {integrity: sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g==}
engines: {node: '>=6.9.0'}
@@ -1829,6 +1816,10 @@ packages:
resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
engines: {node: '>=6.9.0'}
+ '@babel/types@8.0.0-rc.4':
+ resolution: {integrity: sha512-bw30DV880P/VYtsjWWdoWmJpb9S2Vn1/PqayyccTELzRQ/HslIO7+BD9rNoZ4AAFOAjC1vrNeBCkAsyh6Ibfww==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
@@ -2718,21 +2709,8 @@ packages:
'@expo-google-fonts/material-symbols@0.4.34':
resolution: {integrity: sha512-PdwETUhvu1gHF1e8eIyEHnBJLq/dRNoTrT5yhsGUfGyRxH5pbm54dF3+QPknxwMKj0M1trN7PSelYz+yzlt3lA==}
- '@expo/cli@55.0.23':
- resolution: {integrity: sha512-OTGFvb70OGOTa3KZm8f23cPw4X16qavPBNotsumWwdUvLPfKHEQIvbCNWCMs1eAVW/Act/8psnO7cscXnf6Iug==}
- hasBin: true
- peerDependencies:
- expo: '*'
- expo-router: '*'
- react-native: '*'
- peerDependenciesMeta:
- expo-router:
- optional: true
- react-native:
- optional: true
-
- '@expo/cli@55.0.27':
- resolution: {integrity: sha512-FF/qWyHikqvVd5GBDiLII2PRgToNGz5MjxHw76a7aufbe5kCRpAqAy7HRoio1PlF5g9UIYnFjs333a3fWTlgMw==}
+ '@expo/cli@56.1.0':
+ resolution: {integrity: sha512-ToXUp/K6VMWf7ObXrpCU9GYjqhhySp5NU/mW1FY5CN7p+zURp1CI3rhWVb4ZRfOWKIQepfG87glvZrd/T2WfeQ==}
hasBin: true
peerDependencies:
expo: '*'
@@ -2747,23 +2725,20 @@ packages:
'@expo/code-signing-certificates@0.0.6':
resolution: {integrity: sha512-iNe0puxwBNEcuua9gmTGzq+SuMDa0iATai1FlFTMHJ/vUmKvN/V//drXoLJkVb5i5H3iE/n/qIJxyoBnXouD0w==}
- '@expo/config-plugins@55.0.8':
- resolution: {integrity: sha512-8WfWTRntTCcowfOS+tHdB0z98gKetTwktg4G5TWkCkXVa8Jt1NUnvzaaU4UHk2vbR2U4N84RyZJFizSwfF6C9g==}
+ '@expo/config-plugins@56.0.3':
+ resolution: {integrity: sha512-GRdxCYxUwKf+GeV1svRA0y1sz4WUoUeZ6nxeuTsjURnL5wfmb1huxlVvW/NqDCtnKlfTn8AuerXXLWGI5oY5vg==}
- '@expo/config-types@55.0.5':
- resolution: {integrity: sha512-sCmSUZG4mZ/ySXvfyyBdhjivz8Q539X1NondwDdYG7s3SBsk+wsgPJzYsqgAG/P9+l0xWjUD2F+kQ1cAJ6NNLg==}
+ '@expo/config-types@56.0.2':
+ resolution: {integrity: sha512-069aKx6fe36gI0pHYaZr8iqsKp/mQOoWomwjJn3tJs06vX3Wslwtlc52MTOXuAyKFVTyyHnAA86iHeStqKzAhQ==}
- '@expo/config@55.0.14':
- resolution: {integrity: sha512-CCIe6Suuy0DjC58PI6jBpK8Y3pW0BimXGP8tZrVKPqS5ECqVTei0Xp78nbC/fbO+79r6ak5Su6Os71U459j4dw==}
-
- '@expo/config@55.0.15':
- resolution: {integrity: sha512-lHc0ELIQ8126jYOMZpLv3WIuvordW98jFg5aT/J1/12n2ycuXu01XLZkJsdw0avO34cusUYb1It+MvY8JiMduA==}
+ '@expo/config@56.0.3':
+ resolution: {integrity: sha512-G3FPWxaVbVDU5d/OsVX69XRgrNQtpovWuDyTQih2kJ1ppjnan80eBufa3LC5GhaX1IsOIPOfk1oI86p1YREeig==}
'@expo/devcert@1.2.1':
resolution: {integrity: sha512-qC4eaxmKMTmJC2ahwyui6ud8f3W60Ss7pMkpBq40Hu3zyiAaugPXnZ24145U7K36qO9UHdZUVxsCvIpz2RYYCA==}
- '@expo/devtools@55.0.2':
- resolution: {integrity: sha512-4VsFn9MUriocyuhyA+ycJP3TJhUsOFHDc270l9h3LhNpXMf6wvIdGcA0QzXkZtORXmlDybWXRP2KT1k36HcQkA==}
+ '@expo/devtools@56.0.2':
+ resolution: {integrity: sha512-ANl4kPdbe0/HQYWkDEN79S6bQhI+i/ZCnPxuC853pPsB4svhINC7Ku9lmGOKPsUUWWnrHg1spkDGQBZ4sD6JxQ==}
peerDependencies:
react: '*'
react-native: '*'
@@ -2773,68 +2748,59 @@ packages:
react-native:
optional: true
- '@expo/dom-webview@55.0.5':
- resolution: {integrity: sha512-lt3uxYOCk3wmWvtOOvsC35CKGbDAOx5C2EaY8SH1JVSfBzqmF8Cs0Xp1MPxncDPMyxpMiWx5SvvV/iLF1rJU4A==}
+ '@expo/dom-webview@56.0.4':
+ resolution: {integrity: sha512-yDXaFFUu1vvY5q18STJTGxAySWQTyO9cSm/ViFRm2uYxA24ET0GQnkgp42zhNuuF9RrZM7Y0x0HsRPOtDfnsUw==}
peerDependencies:
expo: '*'
react: '*'
react-native: '*'
- '@expo/env@2.1.1':
- resolution: {integrity: sha512-rVvHC4I6xlPcg+mAO09ydUi2Wjv1ZytpLmHOSzvXzBAz9mMrJggqCe4s4dubjJvi/Ino/xQCLhbaLCnTtLpikg==}
+ '@expo/env@2.2.1':
+ resolution: {integrity: sha512-WzO6VeJQc6c3STSRAsktIEzkiW2FOPnZItv8e2KOXcK/5YLbwqRJsPHNyDpysbah9mPN5fFz7AgMmCdhKsvzRg==}
engines: {node: '>=20.12.0'}
- '@expo/fingerprint@0.16.6':
- resolution: {integrity: sha512-nRITNbnu3RKSHPvKVehrSU4KG2VY9V8nvULOHBw98ukHCAU4bGrU5APvcblOkX3JAap+xEHsg/mZvqlvkLInmQ==}
- hasBin: true
+ '@expo/expo-modules-macros-plugin@0.0.8':
+ resolution: {integrity: sha512-ZHH+Hgle/ZyVfTSd9L+ON/0a7BouMEQ3wJKGmOilPLYMTjx5NOcbNZVaJ3iAHKCplvDIHHjPdmqVPorWMHm19A==}
- '@expo/image-utils@0.8.13':
- resolution: {integrity: sha512-1I//yBQeTY6p0u1ihqGNDAr35EbSG8uFEupFrIF0jd++h9EWH33521yZJU1yE+mwGlzCb61g3ehu78siMhXBlA==}
+ '@expo/fingerprint@0.17.4':
+ resolution: {integrity: sha512-ExhWSl4oxAwr9QUpIWRV8ON2dgAHl0dIbFrzqt8jiBY/I1NTM8tGRsULEw9DfiKeQNh4WWbUgcS60DTzU/cIKw==}
+ hasBin: true
- '@expo/json-file@10.0.13':
- resolution: {integrity: sha512-pX/XjQn7tgNw6zuuV2ikmegmwe/S7uiwhrs2wXrANMkq7ozrA+JcZwgW9Q/8WZgciBzfAhNp5hnackHcrmapQA==}
+ '@expo/image-utils@0.9.2':
+ resolution: {integrity: sha512-8zcCiOTS9vfnFQiIhiEhfIdcTqoUyGdOimeFvA4jm6cWih0jqK6o3mm3Zh0xnh+qAiR0hdFiSFh8sj6lMfKi6Q==}
- '@expo/local-build-cache-provider@55.0.10':
- resolution: {integrity: sha512-T7ekqxsjY6EL65Sldbo+RVehPQBC59R4J57OdgxHfQTpqe8DspfsmL2CEmJO0SaxItp/Kts9ga7R5ujUWE5EQw==}
+ '@expo/inline-modules@0.0.4':
+ resolution: {integrity: sha512-QNrirxiVLjojju+hLwTFl/5QW/Ay4ywbMN1E3Z78x4zJOsXDBOdaeL7IDKlsV1BKkBTgkzKDc4eFYeSeuJA84w==}
- '@expo/local-build-cache-provider@55.0.11':
- resolution: {integrity: sha512-rJ4RTCrkeKaXaido/bVyhl90ZRtVTOEbj59F1PWVjIEIVgjdlfc1J3VD9v7hEsbf/+8Tbr/PgvWhT6Visi5sLQ==}
+ '@expo/json-file@10.1.1':
+ resolution: {integrity: sha512-rmkjHrYLdfhGGW1TINHwJ/TIcKgtd+1iV+uTycEB74RWSax6U2klRiXXGgudKH6j2OrDSCm3edYTPukSVZtsIQ==}
- '@expo/log-box@55.0.10':
- resolution: {integrity: sha512-7jdikExgIrCIF5e3P1qMwcUZ2tcxrNdVqE9Y8kNMUHqZ+ipMlin+SiZwJKHM1+am4CYGjhdyrzbnIpvEcLDYcg==}
- peerDependencies:
- '@expo/dom-webview': ^55.0.5
- expo: '*'
- react: '*'
- react-native: '*'
+ '@expo/local-build-cache-provider@56.0.2':
+ resolution: {integrity: sha512-wi56Hby+K10Mt7MxcmOcM4QZzOev5IiP3gyIv4c+2Y0bQULyddQ6voaYaS6yyh87/A8NS5hDXuqJwUTx2xE1og==}
- '@expo/log-box@55.0.11':
- resolution: {integrity: sha512-JQHFLWkskIbJi6cxYMjErx8lQqfFJilDQLKmdTO3m3YkdmN9GE/CrzjOfVlCG0DGEGZJ90br0pGKvGPdXNsHKw==}
+ '@expo/log-box@56.0.6':
+ resolution: {integrity: sha512-Qv5xxxKpVFaL6Sclr/oTXNK2uT/rMO2zEDDsdlg9tFh4K/ZBKK3+8h+FCln3ctYuDmKItJeSavGlllY8ufGWhw==}
peerDependencies:
- '@expo/dom-webview': ^55.0.5
+ '@expo/dom-webview': ^56.0.4
expo: '*'
react: '*'
react-native: '*'
- '@expo/metro-config@55.0.15':
- resolution: {integrity: sha512-MO0skYiGFOtmN4p+cds+tqWsuhGtApUpdBLVXdAw1U3cPW5qQ1IbHqgN+muEvSG+3gtC9CcoEEcSDd1mRCpXNQ==}
+ '@expo/metro-config@56.0.5':
+ resolution: {integrity: sha512-anX3QmfoxI9EuE3XfgGXIHLTbxol2p1oaFvyeIbEz+UK1/e7rPkbRBfx2Yu3OGH8iYFu6y/eUiVOUWpF+isNWw==}
peerDependencies:
expo: '*'
peerDependenciesMeta:
expo:
optional: true
- '@expo/metro-config@55.0.18':
- resolution: {integrity: sha512-XT7YHdQsUjdun0n4cyE5iXIyncDERIG4WesMBRUClr1RAurPwyg95BrbOBpq3E3uvwSBrAGfhu1w8VADqP4ZTQ==}
- peerDependencies:
- expo: '*'
- peerDependenciesMeta:
- expo:
- optional: true
+ '@expo/metro-file-map@56.0.0':
+ resolution: {integrity: sha512-TfBYkr7b/hPjKkmEf2RZCz6CcbTE1Q1VinVQJRa+Dr3dluk4q56dPIodU3HonfkXXHo8ZIbUOEIMG52gHWh7Wg==}
- '@expo/metro-runtime@55.0.9':
- resolution: {integrity: sha512-H37b2Mc/8GiQbwtUFzUTxA3KsAMZu00SRg/RhbHa9xVE7J0n5ZX4NHy0LJEFAbkzTb1TUy1hLpo3oEKnG+rLyg==}
+ '@expo/metro-runtime@56.0.5':
+ resolution: {integrity: sha512-lVlHlnkCiBtORiKh/CsGT698q5QDfdXlfjsBtWvW2/hqVqsqlmpAUel9W4zUjEJawc+Q/57RfrA5omtNxFPYUA==}
peerDependencies:
+ '@expo/log-box': ^56.0.6
expo: '*'
react: '*'
react-dom: '*'
@@ -2843,71 +2809,39 @@ packages:
react-dom:
optional: true
- '@expo/metro@55.0.0':
- resolution: {integrity: sha512-wohGl+4y17rGHU+lq8UqC5neOXL/HOThorDYXTMbOcBL1jYwcK11MBc151gDMpjpgdVUzgHne0H5RfCIhIN4hA==}
+ '@expo/metro@56.0.0':
+ resolution: {integrity: sha512-5gIgQHtEpjjvsjKfVtIv23a98LLRV0/y07PDShEwYSytAMlE3FSF8RHXqtHc1sUJL6dn7hnuIBpIbrLXXuVi0A==}
- '@expo/metro@55.1.1':
- resolution: {integrity: sha512-/wfXo5hTuAVpVLG/4hzlmD9NBGJkzkmBEMm/4VICajYRbj7y8OmqqPWbbymzHiBiHB6tI9BnsyXpQM6zVZEECg==}
-
- '@expo/osascript@2.4.2':
- resolution: {integrity: sha512-/XP7PSYF2hzOZzqfjgkoWtllyeTN8dW3aM4P6YgKcmmPikKL5FdoyQhti4eh6RK5a5VrUXJTOlTNIpIHsfB5Iw==}
+ '@expo/osascript@2.5.1':
+ resolution: {integrity: sha512-NfXw0NalR6mWnLBS1/uP2v4yDPX17zg5D5SD1XCNtUMT/B4c91Lv/omhSUbwZA6BybwOr2PILrRo06q9nKHj2w==}
engines: {node: '>=12'}
- '@expo/package-manager@1.10.4':
- resolution: {integrity: sha512-y9Mr4Kmpk4abAVZrNNPCdzOZr8nLLyi18p1SXr0RCVA8IfzqZX/eY4H+50a0HTmXqIsPZrQdcdb4I3ekMS9GvQ==}
-
- '@expo/plist@0.5.2':
- resolution: {integrity: sha512-o4xdVdBpe4aTl3sPMZ2u3fJH4iG1I768EIRk1xRZP+GaFI93MaR3JvoFibYqxeTmLQ1p1kNEVqylfUjezxx45g==}
+ '@expo/package-manager@1.11.1':
+ resolution: {integrity: sha512-Szx0R4qUqyNGQDUSoItxkxjhdrpMtAcDjh7Yxg0Pgyn8D3HNgC1QB+QDDdLnXd8bc103fRbTeGcVwJVJBli3Gg==}
- '@expo/prebuild-config@55.0.14':
- resolution: {integrity: sha512-88Ou8HF8sWcXD9wduQZ2XBwNMzD8t2x3FtlM0F++rhl9a+aNk2SAj8yhwuGsoEJpbxWG7qq35Yof1r7uU4Z16w==}
- peerDependencies:
- expo: '*'
+ '@expo/plist@0.6.1':
+ resolution: {integrity: sha512-uzreEr7EtgkAm1Mr6R3j0W1u9mFE/0TYFSKF8in16FXDRvmjpFcZ6pYJ4yBYG/fFiE3/uBqkq7GVq4s2Dte60g==}
- '@expo/prebuild-config@55.0.16':
- resolution: {integrity: sha512-o4EAVgDGk1lISirtMD8hciO2vyMp7cWlPdfTtjjd5AXSfODVYDIDhygXrfvVQHmJXAztVqPUTKJT+BYOsVkYGQ==}
- peerDependencies:
- expo: '*'
+ '@expo/prebuild-config@56.0.4':
+ resolution: {integrity: sha512-szCi60BlKIM/yavIAFYtklMhPSx+voEvvxtdutNoQ8x+cIdTwf9iug6o0rV3dKGUwwkCz75rz7uVha7PiRElYQ==}
- '@expo/require-utils@55.0.4':
- resolution: {integrity: sha512-JAANvXqV7MOysWeVWgaiDzikoyDjJWOV/ulOW60Zb3kXJfrx2oZOtGtDXDFKD1mXuahQgoM5QOjuZhF7gFRNjA==}
+ '@expo/require-utils@56.1.0':
+ resolution: {integrity: sha512-yjV01snAK6LyQWGbBuMWH8wQAy8XbPkCUo2u7OcHW0FRON8vwGDqINFxJOmmfTytXn2HTtPjilDRBCxGDZFC7g==}
peerDependencies:
- typescript: ^5.0.0 || ^5.0.0-0
+ typescript: ^5.0.0 || ^5.0.0-0 || ^6.0.0
peerDependenciesMeta:
typescript:
optional: true
- '@expo/router-server@55.0.14':
- resolution: {integrity: sha512-YJjbeLMLp+ZjCnajHI+jEppNzXY372K0u4I4fLKGnA/loFX14aouDsg4tqZVGlZx6NUpnN8Bb3Tmw2BLTXT5Qw==}
- peerDependencies:
- '@expo/metro-runtime': ^55.0.9
- expo: '*'
- expo-constants: ^55.0.13
- expo-font: ^55.0.6
- expo-router: '*'
- expo-server: ^55.0.7
- react: '*'
- react-dom: '*'
- react-server-dom-webpack: ~19.0.1 || ~19.1.2 || ~19.2.1
- peerDependenciesMeta:
- '@expo/metro-runtime':
- optional: true
- expo-router:
- optional: true
- react-dom:
- optional: true
- react-server-dom-webpack:
- optional: true
-
- '@expo/router-server@55.0.15':
- resolution: {integrity: sha512-6LksYO4Pg13qroL138KfUebt/x/EO07zVhdyT/nTgcxnpn6CS4ecTl3DciSKhxbaH+0BVLdANkxYeGdp43TMwQ==}
+ '@expo/router-server@56.0.5':
+ resolution: {integrity: sha512-E625IYwtQXv0DhhhAENWwFIcDkikVreS7tHZPrDK12eExp7NYiycEgNspQ8d//+HdBj9ipVJ6JFVr9ix3s7GSQ==}
peerDependencies:
- '@expo/metro-runtime': ^55.0.10
+ '@expo/metro-runtime': ^56.0.5
expo: '*'
- expo-constants: ^55.0.15
- expo-font: ^55.0.6
+ expo-constants: ^56.0.6
+ expo-font: ^56.0.3
expo-router: '*'
- expo-server: ^55.0.8
+ expo-server: ^56.0.0
react: '*'
react-dom: '*'
react-server-dom-webpack: ~19.0.1 || ~19.1.2 || ~19.2.1
@@ -2921,8 +2855,8 @@ packages:
react-server-dom-webpack:
optional: true
- '@expo/schema-utils@55.0.3':
- resolution: {integrity: sha512-l9KHVjTo6MvoeyvwNr6AjckGJm8NIcqZ3QSAh51cWozXW9v2AUjyCyqYtFtyntLWRZ0x/ByYJishpQo4ZQq45Q==}
+ '@expo/schema-utils@56.0.1':
+ resolution: {integrity: sha512-CZ/+mYbQmWeOnkCGlWy9K+lFxbJSMFY7+TqBZcKzBSTU5Q7IGRvn/sOG3TdNjIdLPmbA8xe7R/c3UUQ28R9i9w==}
'@expo/sdk-runtime-versions@1.0.0':
resolution: {integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==}
@@ -2937,6 +2871,26 @@ packages:
'@expo/sudo-prompt@9.3.2':
resolution: {integrity: sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==}
+ '@expo/ui@56.0.4':
+ resolution: {integrity: sha512-iPxYHqxdFrFb4lqCakyDMgnfJUrRNSygkgcG/If3p42C65RD8dNVOxmaup3sYAy/3HJt8ZtrbVaUxt539H7gOg==}
+ peerDependencies:
+ '@babel/core': '*'
+ expo: '*'
+ react: '*'
+ react-dom: '*'
+ react-native: '*'
+ react-native-reanimated: '*'
+ react-native-worklets: '*'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ react-dom:
+ optional: true
+ react-native-reanimated:
+ optional: true
+ react-native-worklets:
+ optional: true
+
'@expo/vector-icons@15.1.1':
resolution: {integrity: sha512-Iu2VkcoI5vygbtYngm7jb4ifxElNVXQYdDrYkT7UCEIiKLeWnQY0wf2ZhHZ+Wro6Sc5TaumpKUOqDRpLi5rkvw==}
peerDependencies:
@@ -2947,8 +2901,8 @@ packages:
'@expo/ws-tunnel@1.0.6':
resolution: {integrity: sha512-nDRbLmSrJar7abvUjp3smDwH8HcbZcoOEa5jVPUv9/9CajgmWw20JNRwTuBRzWIWIkEJDkz20GoNA+tSwUqk0Q==}
- '@expo/xcpretty@4.4.3':
- resolution: {integrity: sha512-wC562eD3gS6vO2tWHToFhlFnmHKfKHgF1oyvojeSkLK/ZYop1bMU+7cOMiF9Sq70CzcsLy/EMRy/uRc76QmNRw==}
+ '@expo/xcpretty@4.4.4':
+ resolution: {integrity: sha512-4aQzz9vgxcNXFfo/iyNgDDYfsU5XGKKxWxZopw0cVotHiW+U8IJbIxMaxsINs6bHhtkG3StKNPcOrn3eBuxKPw==}
hasBin: true
'@fastify/ajv-compiler@4.0.5':
@@ -3478,6 +3432,9 @@ packages:
'@oxc-project/types@0.124.0':
resolution: {integrity: sha512-VBFWMTBvHxS11Z5Lvlr3IWgrwhMTXV+Md+EQF0Xf60+wAdsGFTBx7X7K/hP4pi8N7dcm1RvcHwDxZ16Qx8keUg==}
+ '@oxc-project/types@0.129.0':
+ resolution: {integrity: sha512-3oz8m3FGdr2nDXVqmFUw7jolKliC4MoyXYIG2c7gpjBnzUWQpUGIYcXYKxTdTi+N2jusvt610ckTMkxdwHkYEg==}
+
'@oxc-project/types@0.99.0':
resolution: {integrity: sha512-LLDEhXB7g1m5J+woRSgfKsFPS3LhR9xRhTeIoEBm5WrkwMxn6eZ0Ld0c0K5eHB57ChZX6I3uSmmLjZ8pcjlRcw==}
@@ -3537,6 +3494,9 @@ packages:
resolution: {integrity: sha512-aABz3zIRilpWMekbt1FL1JVBQrQLR8L4Td2SRctECrWSsXGTNn/G1BqNSKCdbvQS1LWstAXfqcXzDki7GAAJyg==}
engines: {node: '>=14'}
+ '@quansync/fs@1.0.0':
+ resolution: {integrity: sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==}
+
'@radix-ui/primitive@1.1.3':
resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
@@ -3812,20 +3772,46 @@ packages:
react-native-windows:
optional: true
+ '@react-native-community/datetimepicker@9.1.0':
+ resolution: {integrity: sha512-eadbnk+I2vxvW30iTAsm/qlCnMMAadkifIMYNEB2lzhxN/SvlKc7S2V4k5DyrwjdCbqdcMk3t9K6fnUMcAV34w==}
+ peerDependencies:
+ expo: '>=52.0.0'
+ react: '*'
+ react-native: '*'
+ react-native-windows: '*'
+ peerDependenciesMeta:
+ expo:
+ optional: true
+ react-native-windows:
+ optional: true
+
'@react-native-community/slider@5.1.2':
resolution: {integrity: sha512-UV/MjCyCtSjS5BQDrrGIMmCXm309xEG6XbR0Dj65kzTraJSVDxSjQS2uBUXgX+5SZUOCzCxzv3OufOZBdtQY4w==}
+ '@react-native-community/slider@5.2.0':
+ resolution: {integrity: sha512-484sH8aWEaSjxaZ7HT3YZ8CKDcNes2synko1vdEz5DFEdvKAduxKJTj22L/qBMD7rtIkfbX69DMzWDAGbOAV6w==}
+
+ '@react-native-masked-view/masked-view@0.3.2':
+ resolution: {integrity: sha512-XwuQoW7/GEgWRMovOQtX3A4PrXhyaZm0lVUiY8qJDvdngjLms9Cpdck6SmGAUNqQwcj2EadHC1HwL0bEyoa/SQ==}
+ peerDependencies:
+ react: '>=16'
+ react-native: '>=0.57'
+
'@react-native/assets-registry@0.83.4':
resolution: {integrity: sha512-aqKtpbJDSQeSX/Dwv0yMe1/Rd2QfXi12lnyZDXNn/OEKz59u6+LuPBVgO/9CRyclHmdlvwg8c7PJ9eX2ZMnjWg==}
engines: {node: '>= 20.19.4'}
+ '@react-native/assets-registry@0.85.3':
+ resolution: {integrity: sha512-u9ZiYP23vA2IFtdFQFmetzSmk6SM0xgKIoiOsr1hXNHjHaLhOm+/Ph1ud57wX6+Dbwdzx8coJgnzSKL3W21PCg==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
'@react-native/babel-plugin-codegen@0.83.4':
resolution: {integrity: sha512-UFsK+c1rvT84XZfzpmwKePsc5nTr5LK7hh18TI0DooNlVcztDbMDsQZpDnhO/gmk7aTbWEqO5AB3HJ7tvGp+Jg==}
engines: {node: '>= 20.19.4'}
- '@react-native/babel-plugin-codegen@0.83.6':
- resolution: {integrity: sha512-qfRXsHGeucT5c6mK+8Q7v4Ly3zmygfVmFlEtkiq7q07W1OTreld6nib4rJ/DBEeNiKBoBTuHjWliYGNuDjLFQA==}
- engines: {node: '>= 20.19.4'}
+ '@react-native/babel-plugin-codegen@0.85.3':
+ resolution: {integrity: sha512-Wc94zGfeFG8Njf9SHMPfYZP04kjigkOps6F1TYTvd7ZVXuGxqseCDgxc50LWcOhOCLypI9n3oVVqz81C3p44ZA==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
'@react-native/babel-preset@0.83.4':
resolution: {integrity: sha512-SXPFn3Jp4gOzlBDnDOKPzMfxQPKJMYJs05EmEeFB/6km46xZ9l+2YKXwAwxfNhHnmwNf98U/bnVndU95I0TMCw==}
@@ -3833,9 +3819,9 @@ packages:
peerDependencies:
'@babel/core': '*'
- '@react-native/babel-preset@0.83.6':
- resolution: {integrity: sha512-4/fXFDUvGOObETZq4+SUFkafld6OGgQWut5cQiqVghlhCB5z/p2lVhPgEUr/aTxTzeS3AmN+ztC+GpYPQ7tsTw==}
- engines: {node: '>= 20.19.4'}
+ '@react-native/babel-preset@0.85.3':
+ resolution: {integrity: sha512-fD7fxEhkJB/aF57tWoXjaAWpklfrExYZS3k6aXPP3BQ77DZY7gvf/b7dbirwjID6NVnP1JDRJyTuPBGr0K/vlw==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
peerDependencies:
'@babel/core': '*'
@@ -3845,9 +3831,9 @@ packages:
peerDependencies:
'@babel/core': '*'
- '@react-native/codegen@0.83.6':
- resolution: {integrity: sha512-doB/Pq6Cf6IjF3wlQXTIiZOnsX9X8mEEk+CdGfyuCwZjWrf7IB8KaZEXXckJmfUcIwvJ9u/a72ZoTTCIoxAc9A==}
- engines: {node: '>= 20.19.4'}
+ '@react-native/codegen@0.85.3':
+ resolution: {integrity: sha512-/JkS1lGLyzBWP1FbgDwaqEf7qShIC6pUC1M0a/YMAd/v4iqR24MRkQWe7jkYvcBQ2LpEhs5NGE9InhxSv21zCA==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
peerDependencies:
'@babel/core': '*'
@@ -3863,29 +3849,41 @@ packages:
'@react-native/metro-config':
optional: true
+ '@react-native/community-cli-plugin@0.85.3':
+ resolution: {integrity: sha512-fs85dmbIqNmtzEixDb0g+q6R3Vt4H9eAt8/inIZdDKfjN76+sUJA2r1nxODQ76bU23MrIbz8sI7KFBPaWk/zQw==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+ peerDependencies:
+ '@react-native-community/cli': '*'
+ '@react-native/metro-config': 0.85.3
+ peerDependenciesMeta:
+ '@react-native-community/cli':
+ optional: true
+ '@react-native/metro-config':
+ optional: true
+
'@react-native/debugger-frontend@0.83.4':
resolution: {integrity: sha512-mCE2s/S7SEjax3gZb6LFAraAI3x13gRVWJWqT0HIm71e4ITObENNTDuMw4mvZ/wr4Gz2wv4FcBH5/Nla9LXOcg==}
engines: {node: '>= 20.19.4'}
- '@react-native/debugger-frontend@0.83.6':
- resolution: {integrity: sha512-TyWXEpAjVundrc87fPWg91piOUg75+X9iutcfDe7cO3NrAEYCsl7Z09rKHuiAGkxfG9/rFD13dPsYIixUFkSFA==}
- engines: {node: '>= 20.19.4'}
+ '@react-native/debugger-frontend@0.85.3':
+ resolution: {integrity: sha512-uAu7rM5o/Np1zgp6fi5zM1sP1aB8DcS7DdOLcj/TkSutOAjkMqqd2lWt1/+3S7qXexRHVK5XcP+o3VXo4L/V0A==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
'@react-native/debugger-shell@0.83.4':
resolution: {integrity: sha512-FtAnrvXqy1xeZ+onwilvxEeeBsvBlhtfrHVIC2R/BOJAK9TbKEtFfjio0wsn3DQIm+UZq48DSa+p9jJZ2aJUww==}
engines: {node: '>= 20.19.4'}
- '@react-native/debugger-shell@0.83.6':
- resolution: {integrity: sha512-684TJMBCU0l0ZjJWzrnK0HH+ERaM9KLyxyArE1k7BrP+gVl4X9GO0Pi94RoInOxvW/nyV65sOU6Ip1F3ygS0cg==}
- engines: {node: '>= 20.19.4'}
+ '@react-native/debugger-shell@0.85.3':
+ resolution: {integrity: sha512-/jRAaT9boiCttIcEwS02WPwYkUihqsjSaK/TMtHz05vT6uMgac9PaQt5kzBQLIABv5aEIa5gtrMmKVz49MjkjQ==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
'@react-native/dev-middleware@0.83.4':
resolution: {integrity: sha512-3s9nXZc/kj986nI2RPqxiIJeTS3o7pvZDxbHu7GE9WVIGX9YucA1l/tEiXd7BAm3TBFOfefDOT08xD46wH+R3Q==}
engines: {node: '>= 20.19.4'}
- '@react-native/dev-middleware@0.83.6':
- resolution: {integrity: sha512-22xoddLTelpcVnF385SNH2hdP7X2av5pu7yRl/WnM5jBznbcl0+M9Ce94cj+WVeomsoUF/vlfuB0Ooy+RMlRiA==}
- engines: {node: '>= 20.19.4'}
+ '@react-native/dev-middleware@0.85.3':
+ resolution: {integrity: sha512-JYzBiT4A8w+KQt+dOD5v+ti+tDrGoPnsSTuApq3Ls4RB5sfWbDlYMyz3dbc8qBIHz9tv0sQ5+eOu6Xwqzr5AQA==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
'@react-native/eslint-config@0.83.4':
resolution: {integrity: sha512-IhHBeXZqa2QBJc+dAhCVEtbwCCT6U0S6lDYbbZNW2jxsivZGt9I+gh270kaDtg7pHWVrYj+7b7DQY3hxHC/yhg==}
@@ -3902,20 +3900,44 @@ packages:
resolution: {integrity: sha512-AhaSWw2k3eMKqZ21IUdM7rpyTYOpAfsBbIIiom1QQii3QccX0uW2AWTcRhfuWRxqr2faGFaOBYedWl2fzp5hgw==}
engines: {node: '>= 20.19.4'}
+ '@react-native/gradle-plugin@0.85.3':
+ resolution: {integrity: sha512-39dY2j50Q1pntejzwt3XL7vwXtrj8jcIfHq6E+gyu3jzYxZJVvMkMutQ39vSg6zinIQOX36oQDhidXUbCXzgoA==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
+ '@react-native/jest-preset@0.85.3':
+ resolution: {integrity: sha512-ALPSrM0q2fU+5AXcOXzDKx7rxVKPMvygAZfsTWLdrGRVWIqf/HEfM0R8euQqIKUqmEuQ1TxMWN+px3h6gc4vow==}
+ engines: {node: '>= 20.19.4'}
+ peerDependencies:
+ react: ^19.2.3
+
'@react-native/js-polyfills@0.83.4':
resolution: {integrity: sha512-wYUdv0rt4MjhKhQloO1AnGDXhZQOFZHDxm86dEtEA0WcsCdVrFdRULFM+rKUC/QQtJW2rS6WBqtBusgtrsDADg==}
engines: {node: '>= 20.19.4'}
+ '@react-native/js-polyfills@0.85.3':
+ resolution: {integrity: sha512-U2+aMshIXf1uFn77tpBb/xhHWB9vkVrMpt7kkucAugF8hJKYTDGB587X7WwelHduK2KBfhl4giSv0rzZGoef9A==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
'@react-native/metro-babel-transformer@0.83.4':
resolution: {integrity: sha512-gbqn9OmTou3TykLIbZHC2lw/tjdIPr/6KH8Uz4TAPf5f0yZuWoYtQrJ/UBJ+KVbJC5/A2vN8BXkwWXVz90hJIw==}
engines: {node: '>= 20.19.4'}
peerDependencies:
'@babel/core': '*'
+ '@react-native/metro-babel-transformer@0.85.3':
+ resolution: {integrity: sha512-omuKq+r7jM4XvCMIlNMPP7Up3SyB8o5EAdZtF7YXniKyq7UOMBqhYHFqgsdOXr0lT+3ADf7VCJG3sb82jlBrrQ==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+ peerDependencies:
+ '@babel/core': '*'
+
'@react-native/metro-config@0.83.4':
resolution: {integrity: sha512-uYAJLDj1xWm05grHhv3swEHPsygzrl+xIbQ2b84sh9jU0LFSTgxSGv5CGgwee+F3j637GQBEoRP0ymyLqjXUIA==}
engines: {node: '>= 20.19.4'}
+ '@react-native/metro-config@0.85.3':
+ resolution: {integrity: sha512-sVo6HepUmCcpdfozEf91lA0FjpLNNZYu/Zi9FiYiAQTK8pzATXDVTqhvdxpFrQn435p5eUTSbllvbH/KN+bnyA==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
'@react-native/new-app-screen@0.83.4':
resolution: {integrity: sha512-MMurPtpVmWv3gtsdx3/C9wTqGhwyks0dDvxYOjFpK71241cBNQVVVLZCwYyea4hW6ytFMLYtnbP9+U+yVXvCSQ==}
engines: {node: '>= 20.19.4'}
@@ -3933,8 +3955,8 @@ packages:
'@react-native/normalize-colors@0.83.4':
resolution: {integrity: sha512-9ezxaHjxqTkTOLg62SGg7YhFaE+fxa/jlrWP0nwf7eGFHlGOiTAaRR2KUfiN3K05e+EMbEhgcH/c7bgaXeGyJw==}
- '@react-native/normalize-colors@0.83.6':
- resolution: {integrity: sha512-bTM24b5v4qN3h52oflnv+OujFORn/kVi06WaWhnQQw14/ycilPqIsqsa+DpIBqdBrXxvLa9fXtCRrQtGATZCEw==}
+ '@react-native/normalize-colors@0.85.3':
+ resolution: {integrity: sha512-hj0PScZEhIbcOvQV5yMKX3ha4XEIOy/SVE1Rrpp0beW0dpNLOgSC7KDxGewmDnIHK9YdQUXGY9eMEfShUMIaZw==}
'@react-native/typescript-config@0.83.4':
resolution: {integrity: sha512-no0qYsvmdquZtgfaJNUKCBLEczgMcipg1fLjV64sxWSPle/8xm1WdW1geywhg5ZPxiiLCjbrFf4/1GG9DHnkQA==}
@@ -3950,6 +3972,17 @@ packages:
'@types/react':
optional: true
+ '@react-native/virtualized-lists@0.85.3':
+ resolution: {integrity: sha512-dsCjI//OIPEUJMyNHp4l7zNLVjCx7bcaRUceOCkU+IB17hkbtbGWvi7HjGFSzy7FJGmS/MOlcfpb72xXiy1Oig==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+ peerDependencies:
+ '@types/react': ^19.2.0
+ react: '*'
+ react-native: 0.85.3
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@react-navigation/bottom-tabs@7.15.11':
resolution: {integrity: sha512-+WtNbd6fJgbViDNjmBUUP7eTgGH+zBtrl3jHuNnfUfXTs9YGuI5q3SiHIc9a5gY3voBOxbOXEiHJyW4xea7nAw==}
peerDependencies:
@@ -3976,15 +4009,6 @@ packages:
'@react-native-masked-view/masked-view':
optional: true
- '@react-navigation/native-stack@7.14.12':
- resolution: {integrity: sha512-dUfpkrVeVKKV8iqXsmoUp3Rv0iH3YaB3eZwScru/FlcqAp/r3/qA6zEXkGX9hZK+/ziWAPFrf1frBSNbgOYSFQ==}
- peerDependencies:
- '@react-navigation/native': ^7.2.2
- react: '>= 18.2.0'
- react-native: '*'
- react-native-safe-area-context: '>= 4.0.0'
- react-native-screens: '>= 4.0.0'
-
'@react-navigation/native@7.2.2':
resolution: {integrity: sha512-kem1Ko2BcbAjmbQIv66dNmr6EtfDut3QU0qjsVhMnLLhktwyXb6FzZYp8gTrUb6AvkAbaJoi+BF5Pl55pAUa5w==}
peerDependencies:
@@ -4065,36 +4089,73 @@ packages:
resolution: {integrity: sha512-5zFk5wPiAEinfT5XH+t7Ka5I/CUnRf/fqnCS7LDj21ReOgGfdrUQ1wXVsV7EoClCNCgUHvWFDdWkbNOFeFa60A==}
engines: {node: '>=18.12'}
+ '@rolldown/binding-android-arm64@1.0.0':
+ resolution: {integrity: sha512-TWMZnRLMe63C2Lhyicviu7ZHaU4kxa6PS3rofvc9GmcvptzNN11BcfQ4Sl7MwTOsisQoa2keB/EBdNCAnUo8vA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
'@rolldown/binding-android-arm64@1.0.0-rc.15':
resolution: {integrity: sha512-YYe6aWruPZDtHNpwu7+qAHEMbQ/yRl6atqb/AhznLTnD3UY99Q1jE7ihLSahNWkF4EqRPVC4SiR4O0UkLK02tA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
+ '@rolldown/binding-darwin-arm64@1.0.0':
+ resolution: {integrity: sha512-6XcD+8k0gPVItNagEw78/qqcBDwKcwDYS8V2hRmVsfUSIrd8cWe/CBvRDI5toqFyPfj+FJr6t8U6Xj2P2prEew==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
'@rolldown/binding-darwin-arm64@1.0.0-rc.15':
resolution: {integrity: sha512-oArR/ig8wNTPYsXL+Mzhs0oxhxfuHRfG7Ikw7jXsw8mYOtk71W0OkF2VEVh699pdmzjPQsTjlD1JIOoHkLP1Fg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
+ '@rolldown/binding-darwin-x64@1.0.0':
+ resolution: {integrity: sha512-iN/tWVXRQDWvmZlKdceP1Dwug9GDpEymhb9p4xnEe6zvCg5lFmzVljl+1qR1NVx3yfGpr2Na+CuLmv5IU8uzfQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
'@rolldown/binding-darwin-x64@1.0.0-rc.15':
resolution: {integrity: sha512-YzeVqOqjPYvUbJSWJ4EDL8ahbmsIXQpgL3JVipmN+MX0XnXMeWomLN3Fb+nwCmP/jfyqte5I3XRSm7OfQrbyxw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
+ '@rolldown/binding-freebsd-x64@1.0.0':
+ resolution: {integrity: sha512-jjQMDvvwSOuhOwMszD/klSOjyWMM3zI64hWTj9KT5x4MxRbZAf+7vLQ6qouRhtsLVFHr3f0ILaJAfgENPiQdAQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
'@rolldown/binding-freebsd-x64@1.0.0-rc.15':
resolution: {integrity: sha512-9Erhx956jeQ0nNTyif1+QWAXDRD38ZNjr//bSHrt6wDwB+QkAfl2q6Mn1k6OBPerznjRmbM10lgRb1Pli4xZPw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0':
+ resolution: {integrity: sha512-d//Dtg2x6/m3mbV64yUGNnDGNZaDGRpDLLNGerHQUVObuNaIQaaDp25yUiqGXtHEXX+NP2d0wAlmKgpYgIAJ2A==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
'@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.15':
resolution: {integrity: sha512-cVwk0w8QbZJGTnP/AHQBs5yNwmpgGYStL88t4UIaqcvYJWBfS0s3oqVLZPwsPU6M0zlW4GqjP0Zq5MnAGwFeGA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
+ '@rolldown/binding-linux-arm64-gnu@1.0.0':
+ resolution: {integrity: sha512-n7Ofp0mx+aB2cC+Sdy5YtMnXtY9lchnHbY+3Yt0uq9JsWQExf4f5Whu0tK0R8Jdc9S6RchTHjIFY7uc92puOVQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
'@rolldown/binding-linux-arm64-gnu@1.0.0-rc.15':
resolution: {integrity: sha512-eBZ/u8iAK9SoHGanqe/jrPnY0JvBN6iXbVOsbO38mbz+ZJsaobExAm1Iu+rxa4S1l2FjG0qEZn4Rc6X8n+9M+w==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -4102,6 +4163,13 @@ packages:
os: [linux]
libc: [glibc]
+ '@rolldown/binding-linux-arm64-musl@1.0.0':
+ resolution: {integrity: sha512-EIVjy2cgd7uuMMo94FVkBp7F6DhcZAUwNURkSG3RwUmvAXR6s0ISxM81U+IydcZByPG0pZIHsf1b6kTxoFDgJA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
'@rolldown/binding-linux-arm64-musl@1.0.0-rc.15':
resolution: {integrity: sha512-ZvRYMGrAklV9PEkgt4LQM6MjQX2P58HPAuecwYObY2DhS2t35R0I810bKi0wmaYORt6m/2Sm+Z+nFgb0WhXNcQ==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -4109,6 +4177,13 @@ packages:
os: [linux]
libc: [musl]
+ '@rolldown/binding-linux-ppc64-gnu@1.0.0':
+ resolution: {integrity: sha512-JEwwOPcwTLAcpDQlqSmjEmfs63xJnSiUNIGvLcDLUHCWK4XowpS/7c7tUsUH6uT/ct6bMUTdXKfI8967FYj6mg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
'@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.15':
resolution: {integrity: sha512-VDpgGBzgfg5hLg+uBpCLoFG5kVvEyafmfxGUV0UHLcL5irxAK7PKNeC2MwClgk6ZAiNhmo9FLhRYgvMmedLtnQ==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -4116,6 +4191,13 @@ packages:
os: [linux]
libc: [glibc]
+ '@rolldown/binding-linux-s390x-gnu@1.0.0':
+ resolution: {integrity: sha512-0wjCFhLrihtAubnT9iA0N++0pSV0z5Hg7tNGdNJ4RFaINceHadoF+kiFGyY1qSSNVIAZtLotG8Ju1bgDPkjnFA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
'@rolldown/binding-linux-s390x-gnu@1.0.0-rc.15':
resolution: {integrity: sha512-y1uXY3qQWCzcPgRJATPSOUP4tCemh4uBdY7e3EZbVwCJTY3gLJWnQABgeUetvED+bt1FQ01OeZwvhLS2bpNrAQ==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -4123,6 +4205,13 @@ packages:
os: [linux]
libc: [glibc]
+ '@rolldown/binding-linux-x64-gnu@1.0.0':
+ resolution: {integrity: sha512-Dfn7iak9BcMMePxcoJfpSbWqnEyrp/dRF63/8qW/eHBdOZov6x5aShLLEYGYdIeSJ6vMLK/XCVB+lGIxm41bQA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
'@rolldown/binding-linux-x64-gnu@1.0.0-rc.15':
resolution: {integrity: sha512-023bTPBod7J3Y/4fzAN6QtpkSABR0rigtrwaP+qSEabUh5zf6ELr9Nc7GujaROuPY3uwdSIXWrvhn1KxOvurWA==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -4130,6 +4219,13 @@ packages:
os: [linux]
libc: [glibc]
+ '@rolldown/binding-linux-x64-musl@1.0.0':
+ resolution: {integrity: sha512-5/utzzDmD/pD/bmuaUcbTf/sZYy0aztwIVlfpoW1fTjCZ0BaPOMVWGZL1zvgxyi7ZIVYWlxKONHmSbHuiOh8Jw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
'@rolldown/binding-linux-x64-musl@1.0.0-rc.15':
resolution: {integrity: sha512-witB2O0/hU4CgfOOKUoeFgQ4GktPi1eEbAhaLAIpgD6+ZnhcPkUtPsoKKHRzmOoWPZue46IThdSgdo4XneOLYw==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -4137,29 +4233,55 @@ packages:
os: [linux]
libc: [musl]
+ '@rolldown/binding-openharmony-arm64@1.0.0':
+ resolution: {integrity: sha512-ouJs8VcUomfLfpbUECqFMRqdV4x6aeAK3MA4m6vTrJJjKyWTV5KnxZx7Jd9G+GlDaQQxubcba00x16OyJ1meig==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
'@rolldown/binding-openharmony-arm64@1.0.0-rc.15':
resolution: {integrity: sha512-UCL68NJ0Ud5zRipXZE9dF5PmirzJE4E4BCIOOssEnM7wLDsxjc6Qb0sGDxTNRTP53I6MZpygyCpY8Aa8sPfKPg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [openharmony]
+ '@rolldown/binding-wasm32-wasi@1.0.0':
+ resolution: {integrity: sha512-E+oHKGiDA+lsKMmFtffDDw91EryDT7uJocrIuCHqhm6bCTM6xFK+3gaCkYOHfPwQr0cCNarSM2xaELoQDz9jJg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [wasm32]
+
'@rolldown/binding-wasm32-wasi@1.0.0-rc.15':
resolution: {integrity: sha512-ApLruZq/ig+nhaE7OJm4lDjayUnOHVUa77zGeqnqZ9pn0ovdVbbNPerVibLXDmWeUZXjIYIT8V3xkT58Rm9u5Q==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
+ '@rolldown/binding-win32-arm64-msvc@1.0.0':
+ resolution: {integrity: sha512-yYK02n8Rngo+gbm1y6G0+7jk1sJ/2Wt7K0me0Y7k/ErBpyf+LJ2gFpqWVTcRV1rUepBlQRmpgWkTQCiiwrK0Ow==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
'@rolldown/binding-win32-arm64-msvc@1.0.0-rc.15':
resolution: {integrity: sha512-KmoUoU7HnN+Si5YWJigfTws1jz1bKBYDQKdbLspz0UaqjjFkddHsqorgiW1mxcAj88lYUE6NC/zJNwT+SloqtA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
+ '@rolldown/binding-win32-x64-msvc@1.0.0':
+ resolution: {integrity: sha512-14bpChMahXRRXiTwahSl+zzHPW6qQTXtkMuJBFlbo+pqSAews2d4BdCSHfrJ/MBsCZtpmTafsY+1QhBzitcmdg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
+
'@rolldown/binding-win32-x64-msvc@1.0.0-rc.15':
resolution: {integrity: sha512-3P2A8L+x75qavWLe/Dll3EYBJLQmtkJN8rfh+U/eR3MqMgL/h98PhYI+JFfXuDPgPeCB7iZAKiqii5vqOvnA0g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
+ '@rolldown/pluginutils@1.0.0':
+ resolution: {integrity: sha512-aKs/3GSWyV0mrhNmt/96/Z3yczC3yvrzYATCiCXQebBsGyYzjNdUphRVLeJQ67ySKVXRfMxt2lm12pmXvbPFQQ==}
+
'@rolldown/pluginutils@1.0.0-rc.15':
resolution: {integrity: sha512-UromN0peaE53IaBRe9W7CjrZgXl90fqGpK+mIZbA3qSTeYqg3pqpROBdIPvOG3F5ereDHNwoHBI2e50n1BDr1g==}
@@ -4175,151 +4297,13 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.60.1':
- resolution: {integrity: sha512-d6FinEBLdIiK+1uACUttJKfgZREXrF0Qc2SmLII7W2AD8FfiZ9Wjd+rD/iRuf5s5dWrr1GgwXCvPqOuDquOowA==}
- cpu: [arm]
- os: [android]
+ '@rozenite/agent-shared@1.7.0':
+ resolution: {integrity: sha512-6NEBpY82aoFPe8lswaO28lWSnfcjM6r+Msmt7HEE0rBYFNH8FBZN9RgFof3Y13qEY/NerlP+6v+pz8HM5df1uQ==}
+ engines: {node: '>=20'}
- '@rollup/rollup-android-arm64@4.60.1':
- resolution: {integrity: sha512-YjG/EwIDvvYI1YvYbHvDz/BYHtkY4ygUIXHnTdLhG+hKIQFBiosfWiACWortsKPKU/+dUwQQCKQM3qrDe8c9BA==}
- cpu: [arm64]
- os: [android]
-
- '@rollup/rollup-darwin-arm64@4.60.1':
- resolution: {integrity: sha512-mjCpF7GmkRtSJwon+Rq1N8+pI+8l7w5g9Z3vWj4T7abguC4Czwi3Yu/pFaLvA3TTeMVjnu3ctigusqWUfjZzvw==}
- cpu: [arm64]
- os: [darwin]
-
- '@rollup/rollup-darwin-x64@4.60.1':
- resolution: {integrity: sha512-haZ7hJ1JT4e9hqkoT9R/19XW2QKqjfJVv+i5AGg57S+nLk9lQnJ1F/eZloRO3o9Scy9CM3wQ9l+dkXtcBgN5Ew==}
- cpu: [x64]
- os: [darwin]
-
- '@rollup/rollup-freebsd-arm64@4.60.1':
- resolution: {integrity: sha512-czw90wpQq3ZsAVBlinZjAYTKduOjTywlG7fEeWKUA7oCmpA8xdTkxZZlwNJKWqILlq0wehoZcJYfBvOyhPTQ6w==}
- cpu: [arm64]
- os: [freebsd]
-
- '@rollup/rollup-freebsd-x64@4.60.1':
- resolution: {integrity: sha512-KVB2rqsxTHuBtfOeySEyzEOB7ltlB/ux38iu2rBQzkjbwRVlkhAGIEDiiYnO2kFOkJp+Z7pUXKyrRRFuFUKt+g==}
- cpu: [x64]
- os: [freebsd]
-
- '@rollup/rollup-linux-arm-gnueabihf@4.60.1':
- resolution: {integrity: sha512-L+34Qqil+v5uC0zEubW7uByo78WOCIrBvci69E7sFASRl0X7b/MB6Cqd1lky/CtcSVTydWa2WZwFuWexjS5o6g==}
- cpu: [arm]
- os: [linux]
- libc: [glibc]
-
- '@rollup/rollup-linux-arm-musleabihf@4.60.1':
- resolution: {integrity: sha512-n83O8rt4v34hgFzlkb1ycniJh7IR5RCIqt6mz1VRJD6pmhRi0CXdmfnLu9dIUS6buzh60IvACM842Ffb3xd6Gg==}
- cpu: [arm]
- os: [linux]
- libc: [musl]
-
- '@rollup/rollup-linux-arm64-gnu@4.60.1':
- resolution: {integrity: sha512-Nql7sTeAzhTAja3QXeAI48+/+GjBJ+QmAH13snn0AJSNL50JsDqotyudHyMbO2RbJkskbMbFJfIJKWA6R1LCJQ==}
- cpu: [arm64]
- os: [linux]
- libc: [glibc]
-
- '@rollup/rollup-linux-arm64-musl@4.60.1':
- resolution: {integrity: sha512-+pUymDhd0ys9GcKZPPWlFiZ67sTWV5UU6zOJat02M1+PiuSGDziyRuI/pPue3hoUwm2uGfxdL+trT6Z9rxnlMA==}
- cpu: [arm64]
- os: [linux]
- libc: [musl]
-
- '@rollup/rollup-linux-loong64-gnu@4.60.1':
- resolution: {integrity: sha512-VSvgvQeIcsEvY4bKDHEDWcpW4Yw7BtlKG1GUT4FzBUlEKQK0rWHYBqQt6Fm2taXS+1bXvJT6kICu5ZwqKCnvlQ==}
- cpu: [loong64]
- os: [linux]
- libc: [glibc]
-
- '@rollup/rollup-linux-loong64-musl@4.60.1':
- resolution: {integrity: sha512-4LqhUomJqwe641gsPp6xLfhqWMbQV04KtPp7/dIp0nzPxAkNY1AbwL5W0MQpcalLYk07vaW9Kp1PBhdpZYYcEw==}
- cpu: [loong64]
- os: [linux]
- libc: [musl]
-
- '@rollup/rollup-linux-ppc64-gnu@4.60.1':
- resolution: {integrity: sha512-tLQQ9aPvkBxOc/EUT6j3pyeMD6Hb8QF2BTBnCQWP/uu1lhc9AIrIjKnLYMEroIz/JvtGYgI9dF3AxHZNaEH0rw==}
- cpu: [ppc64]
- os: [linux]
- libc: [glibc]
-
- '@rollup/rollup-linux-ppc64-musl@4.60.1':
- resolution: {integrity: sha512-RMxFhJwc9fSXP6PqmAz4cbv3kAyvD1etJFjTx4ONqFP9DkTkXsAMU4v3Vyc5BgzC+anz7nS/9tp4obsKfqkDHg==}
- cpu: [ppc64]
- os: [linux]
- libc: [musl]
-
- '@rollup/rollup-linux-riscv64-gnu@4.60.1':
- resolution: {integrity: sha512-QKgFl+Yc1eEk6MmOBfRHYF6lTxiiiV3/z/BRrbSiW2I7AFTXoBFvdMEyglohPj//2mZS4hDOqeB0H1ACh3sBbg==}
- cpu: [riscv64]
- os: [linux]
- libc: [glibc]
-
- '@rollup/rollup-linux-riscv64-musl@4.60.1':
- resolution: {integrity: sha512-RAjXjP/8c6ZtzatZcA1RaQr6O1TRhzC+adn8YZDnChliZHviqIjmvFwHcxi4JKPSDAt6Uhf/7vqcBzQJy0PDJg==}
- cpu: [riscv64]
- os: [linux]
- libc: [musl]
-
- '@rollup/rollup-linux-s390x-gnu@4.60.1':
- resolution: {integrity: sha512-wcuocpaOlaL1COBYiA89O6yfjlp3RwKDeTIA0hM7OpmhR1Bjo9j31G1uQVpDlTvwxGn2nQs65fBFL5UFd76FcQ==}
- cpu: [s390x]
- os: [linux]
- libc: [glibc]
-
- '@rollup/rollup-linux-x64-gnu@4.60.1':
- resolution: {integrity: sha512-77PpsFQUCOiZR9+LQEFg9GClyfkNXj1MP6wRnzYs0EeWbPcHs02AXu4xuUbM1zhwn3wqaizle3AEYg5aeoohhg==}
- cpu: [x64]
- os: [linux]
- libc: [glibc]
-
- '@rollup/rollup-linux-x64-musl@4.60.1':
- resolution: {integrity: sha512-5cIATbk5vynAjqqmyBjlciMJl1+R/CwX9oLk/EyiFXDWd95KpHdrOJT//rnUl4cUcskrd0jCCw3wpZnhIHdD9w==}
- cpu: [x64]
- os: [linux]
- libc: [musl]
-
- '@rollup/rollup-openbsd-x64@4.60.1':
- resolution: {integrity: sha512-cl0w09WsCi17mcmWqqglez9Gk8isgeWvoUZ3WiJFYSR3zjBQc2J5/ihSjpl+VLjPqjQ/1hJRcqBfLjssREQILw==}
- cpu: [x64]
- os: [openbsd]
-
- '@rollup/rollup-openharmony-arm64@4.60.1':
- resolution: {integrity: sha512-4Cv23ZrONRbNtbZa37mLSueXUCtN7MXccChtKpUnQNgF010rjrjfHx3QxkS2PI7LqGT5xXyYs1a7LbzAwT0iCA==}
- cpu: [arm64]
- os: [openharmony]
-
- '@rollup/rollup-win32-arm64-msvc@4.60.1':
- resolution: {integrity: sha512-i1okWYkA4FJICtr7KpYzFpRTHgy5jdDbZiWfvny21iIKky5YExiDXP+zbXzm3dUcFpkEeYNHgQ5fuG236JPq0g==}
- cpu: [arm64]
- os: [win32]
-
- '@rollup/rollup-win32-ia32-msvc@4.60.1':
- resolution: {integrity: sha512-u09m3CuwLzShA0EYKMNiFgcjjzwqtUMLmuCJLeZWjjOYA3IT2Di09KaxGBTP9xVztWyIWjVdsB2E9goMjZvTQg==}
- cpu: [ia32]
- os: [win32]
-
- '@rollup/rollup-win32-x64-gnu@4.60.1':
- resolution: {integrity: sha512-k+600V9Zl1CM7eZxJgMyTUzmrmhB/0XZnF4pRypKAlAgxmedUA+1v9R+XOFv56W4SlHEzfeMtzujLJD22Uz5zg==}
- cpu: [x64]
- os: [win32]
-
- '@rollup/rollup-win32-x64-msvc@4.60.1':
- resolution: {integrity: sha512-lWMnixq/QzxyhTV6NjQJ4SFo1J6PvOX8vUx5Wb4bBPsEb+8xZ89Bz6kOXpfXj9ak9AHTQVQzlgzBEc1SyM27xQ==}
- cpu: [x64]
- os: [win32]
-
- '@rozenite/agent-shared@1.7.0':
- resolution: {integrity: sha512-6NEBpY82aoFPe8lswaO28lWSnfcjM6r+Msmt7HEE0rBYFNH8FBZN9RgFof3Y13qEY/NerlP+6v+pz8HM5df1uQ==}
- engines: {node: '>=20'}
-
- '@rozenite/metro@1.7.0':
- resolution: {integrity: sha512-SCrbjH2Kel+4EBv82gEJvgpj0OPO6V50vb7pFdA06kkd/WEAWz+rJ0IFjY+AJ5R8RlayAdQUbym95GpkszIpMA==}
- engines: {node: '>=20'}
+ '@rozenite/metro@1.7.0':
+ resolution: {integrity: sha512-SCrbjH2Kel+4EBv82gEJvgpj0OPO6V50vb7pFdA06kkd/WEAWz+rJ0IFjY+AJ5R8RlayAdQUbym95GpkszIpMA==}
+ engines: {node: '>=20'}
'@rozenite/middleware@1.7.0':
resolution: {integrity: sha512-uCMX1ULLM/+Fw9Gcir/hBJxthB7eLEZkxKo4PDJ+XK9A96xmZsQL5ZyRU+PnTLQ5D2OMA71vL98kaOIEDTx7gg==}
@@ -4928,6 +4912,10 @@ 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==}
@@ -5030,6 +5018,9 @@ packages:
'@types/jsdom@20.0.1':
resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
+ '@types/jsesc@2.5.1':
+ resolution: {integrity: sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==}
+
'@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
@@ -5151,6 +5142,14 @@ packages:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.1.0'
+ '@typescript-eslint/eslint-plugin@8.59.2':
+ resolution: {integrity: sha512-j/bwmkBvHUtPNxzuWe5z6BEk3q54YRyGlBXkSsmfoih7zNrBvl5A9A98anlp/7JbyZcWIJ8KXo/3Tq/DjFLtuQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^8.59.2
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.1.0'
+
'@typescript-eslint/parser@8.58.1':
resolution: {integrity: sha512-gGkiNMPqerb2cJSVcruigx9eHBlLG14fSdPdqMoOcBfh+vvn4iCq2C8MzUB89PrxOXk0y3GZ1yIWb9aOzL93bw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -5158,12 +5157,25 @@ packages:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.1.0'
+ '@typescript-eslint/parser@8.59.2':
+ resolution: {integrity: sha512-plR3pp6D+SSUn1HM7xvSkx12/DhoHInI2YF35KAcVFNZvlC0gtrWqx7Qq1oH2Ssgi0vlFRCTbP+DZc7B9+TtsQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.1.0'
+
'@typescript-eslint/project-service@8.58.1':
resolution: {integrity: sha512-gfQ8fk6cxhtptek+/8ZIqw8YrRW5048Gug8Ts5IYcMLCw18iUgrZAEY/D7s4hkI0FxEfGakKuPK/XUMPzPxi5g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.1.0'
+ '@typescript-eslint/project-service@8.59.2':
+ resolution: {integrity: sha512-+2hqvEkeyf/0FBor67duF0Ll7Ot8jyKzDQOSrxazF/danillRq2DwR9dLptsXpoZQqxE1UisSmoZewrlPas9Vw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.1.0'
+
'@typescript-eslint/scope-manager@5.62.0':
resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -5172,12 +5184,22 @@ packages:
resolution: {integrity: sha512-TPYUEqJK6avLcEjumWsIuTpuYODTTDAtoMdt8ZZa93uWMTX13Nb8L5leSje1NluammvU+oI3QRr5lLXPgihX3w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/scope-manager@8.59.2':
+ resolution: {integrity: sha512-JzfyEpEtOU89CcFSwyNS3mu4MLvLSXqnmX05+aKBDM+TdR5jzcGOEBwxwGNxrEQ7p/z6kK2WyioCGBf2zZBnvg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/tsconfig-utils@8.58.1':
resolution: {integrity: sha512-JAr2hOIct2Q+qk3G+8YFfqkqi7sC86uNryT+2i5HzMa2MPjw4qNFvtjnw1IiA1rP7QhNKVe21mSSLaSjwA1Olw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.1.0'
+ '@typescript-eslint/tsconfig-utils@8.59.2':
+ resolution: {integrity: sha512-BKK4alN7oi4C/zv4VqHQ+uRU+lTa6JGIZ7s1juw7b3RHo9OfKB+bKX3u0iVZetdsUCBBkSbdWbarJbmN0fTeSw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.1.0'
+
'@typescript-eslint/type-utils@8.58.1':
resolution: {integrity: sha512-HUFxvTJVroT+0rXVJC7eD5zol6ID+Sn5npVPWoFuHGg9Ncq5Q4EYstqR+UOqaNRFXi5TYkpXXkLhoCHe3G0+7w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -5185,6 +5207,13 @@ packages:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.1.0'
+ '@typescript-eslint/type-utils@8.59.2':
+ resolution: {integrity: sha512-nhqaj1nmTdVVl/BP5omXNRGO38jn5iosis2vbdmupF2txCf8ylWT8lx+JlvMYYVqzGVKtjojUFoQ3JRWK+mfzQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.1.0'
+
'@typescript-eslint/types@5.62.0':
resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -5193,6 +5222,10 @@ packages:
resolution: {integrity: sha512-io/dV5Aw5ezwzfPBBWLoT+5QfVtP8O7q4Kftjn5azJ88bYyp/ZMCsyW1lpKK46EXJcaYMZ1JtYj+s/7TdzmQMw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/types@8.59.2':
+ resolution: {integrity: sha512-e82GVOE8Ps3E++Egvb6Y3Dw0S10u8NkQ9KXmtRhCWJJ8kDhOJTvtMAWnFL16kB1583goCWXsr0NieKCZMs2/0Q==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/typescript-estree@5.62.0':
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -5208,6 +5241,12 @@ packages:
peerDependencies:
typescript: '>=4.8.4 <6.1.0'
+ '@typescript-eslint/typescript-estree@8.59.2':
+ resolution: {integrity: sha512-o0XPGNwcWw+FIwStOWn+BwBuEmL6QXP0rsvAFg7ET1dey1Nr6Wb1ac8p5HEsK0ygO/6mUxlk+YWQD9xcb/nnXg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.1.0'
+
'@typescript-eslint/utils@5.62.0':
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -5221,6 +5260,13 @@ packages:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.1.0'
+ '@typescript-eslint/utils@8.59.2':
+ resolution: {integrity: sha512-Juw3EinkXqjaffxz6roowvV7GZT/kET5vSKKZT6upl5TXdWkLkYmNPXwDDL2Vkt2DPn0nODIS4egC/0AGxKo/Q==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.1.0'
+
'@typescript-eslint/visitor-keys@5.62.0':
resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -5229,8 +5275,13 @@ packages:
resolution: {integrity: sha512-y+vH7QE8ycjoa0bWciFg7OpFcipUuem1ujhrdLtq1gByKwfbC7bPeKsiny9e0urg93DqwGcHey+bGRKCnF1nZQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/visitor-keys@8.59.2':
+ resolution: {integrity: sha512-NwjLUnGy8/Zfx23fl50tRC8rYaYnM52xNRYFAXvmiil9yh1+K6aRVQMnzW6gQB/1DLgWt977lYQn7C+wtgXZiA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@ungap/structured-clone@1.3.0':
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
+ deprecated: Potential CWE-502 - Update to 1.3.1 or higher
'@unrs/resolver-binding-android-arm-eabi@1.11.1':
resolution: {integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==}
@@ -5409,6 +5460,7 @@ packages:
'@xmldom/xmldom@0.8.12':
resolution: {integrity: sha512-9k/gHF6n/pAi/9tqr3m3aqkuiNosYTurLLUtc7xQ9sxB/wm7WPygCv8GYa6mS0fLJEHhqMC1ATYhz++U/lRHqg==}
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==}
@@ -5416,6 +5468,10 @@ 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'}
@@ -5431,6 +5487,9 @@ 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'}
@@ -5455,6 +5514,10 @@ 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'}
@@ -5558,6 +5621,10 @@ packages:
resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
engines: {node: '>=12'}
+ ansis@4.2.0:
+ resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==}
+ engines: {node: '>=14'}
+
any-promise@1.3.0:
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
@@ -5641,6 +5708,10 @@ packages:
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
engines: {node: '>=12'}
+ ast-kit@3.0.0-beta.1:
+ resolution: {integrity: sha512-trmleAnZ2PxN/loHWVhhx1qeOHSRXq4TDsBBxq3GqeJitfk3+jTQ+v/C1km/KYq9M7wKqCewMh+/NAvVH7m+bw==}
+ engines: {node: '>=20.19.0'}
+
ast-types@0.16.1:
resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
engines: {node: '>=4'}
@@ -5660,6 +5731,9 @@ 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'}
@@ -5678,6 +5752,9 @@ packages:
avvio@9.2.0:
resolution: {integrity: sha512-2t/sy01ArdHHE0vRH5Hsay+RtCZt3dLPji7W7/MMOCEgze5b7SNDC4j5H6FnVgPkI1MTNFGzHdHrVXDDl7QSSQ==}
+ await-lock@2.2.2:
+ resolution: {integrity: sha512-aDczADvlvTGajTDjcjpJMqRkOF6Qdz3YbPZm/PyW6tKPkx2hlYBzxMhEywM/tU72HrVZjgl5VCdRuMlA7pZ8Gw==}
+
babel-jest@29.7.0:
resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -5743,6 +5820,9 @@ packages:
babel-plugin-syntax-hermes-parser@0.32.1:
resolution: {integrity: sha512-HgErPZTghW76Rkq9uqn5ESeiD97FbqpZ1V170T1RG2RDp+7pJVQV2pQJs7y5YzN0/gcT6GM5ci9apRnIwuyPdQ==}
+ babel-plugin-syntax-hermes-parser@0.33.3:
+ resolution: {integrity: sha512-/Z9xYdaJ1lC0pT9do6TqCqhOSLfZ5Ot8D5za1p+feEfWYupCOfGbhhEXN9r2ZgJtDNUNRw/Z+T2CvAGKBqtqWA==}
+
babel-plugin-transform-flow-enums@0.0.2:
resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==}
@@ -5766,12 +5846,12 @@ packages:
expo-widgets:
optional: true
- babel-preset-expo@55.0.19:
- resolution: {integrity: sha512-IaxT7xremfrW2HqtG7gWI7TUSJke/V+zDW1whLpmO06ZdKOfB5Qup7oICqBWqfbcBW3h57llWOMAn1cycvbsgQ==}
+ babel-preset-expo@56.0.5:
+ resolution: {integrity: sha512-6kjSn9YMFEy+fVKF3Vnao9U6+RPV2Bwg2sK1mSPbr4FehAmBbuZk8ErR9X/9bpZcHCd0bDFGSjKwsN8suPj2eA==}
peerDependencies:
'@babel/runtime': ^7.20.0
expo: '*'
- expo-widgets: ^55.0.15
+ expo-widgets: ^56.0.5
react-refresh: '>=0.14.0 <1.0.0'
peerDependenciesMeta:
'@babel/runtime':
@@ -5831,6 +5911,9 @@ packages:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
+ birpc@4.0.0:
+ resolution: {integrity: sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw==}
+
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
@@ -5899,12 +5982,6 @@ packages:
resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
engines: {node: '>=18'}
- bundle-require@5.1.0:
- resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- peerDependencies:
- esbuild: '>=0.18'
-
bytes@3.0.0:
resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
engines: {node: '>= 0.8'}
@@ -5917,9 +5994,9 @@ packages:
resolution: {integrity: sha512-U1Z/ob71V/bXfVABvNr/Kumf5VyeQRBEm6Txb0PQ6S7V5GpBM3w4Cbqz/xPDicR5tN0uvDifng8C+5qECeGwyQ==}
engines: {node: '>=6.0.0'}
- cac@6.7.14:
- resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
- engines: {node: '>=8'}
+ cac@7.0.0:
+ resolution: {integrity: sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==}
+ engines: {node: '>=20.19.0'}
cacheable-lookup@7.0.0:
resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==}
@@ -6030,10 +6107,6 @@ packages:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
- chokidar@4.0.3:
- resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
- engines: {node: '>= 14.16.0'}
-
chrome-launcher@0.15.2:
resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==}
engines: {node: '>=12.13.0'}
@@ -6046,6 +6119,9 @@ packages:
chromium-edge-launcher@0.2.0:
resolution: {integrity: sha512-JfJjUnq25y9yg4FABRRVPmBGWPZZi+AQXT4mxupb67766/0UlhG8PAZCz6xzEMXTbW3CsSoE8PcCWA49n35mKg==}
+ chromium-edge-launcher@0.3.0:
+ resolution: {integrity: sha512-p03azHlGjtyRvFEee3cyvtsRYdniSkwjkzmM/KmVnqT5d7QkkwpJBhis/zCLMYdQMVJ5tt140TBNqqrZPaWeFA==}
+
ci-info@2.0.0:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
@@ -6149,6 +6225,10 @@ 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==}
@@ -6204,9 +6284,6 @@ packages:
concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- confbox@0.1.8:
- resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
-
config-chain@1.1.13:
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
@@ -6457,16 +6534,22 @@ packages:
resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
- cssstyle@4.6.0:
- resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==}
- engines: {node: '>=18'}
+ 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'}
csstype@3.2.3:
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
- data-urls@5.0.0:
- resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
- engines: {node: '>=18'}
+ data-urls@3.0.2:
+ resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==}
+ engines: {node: '>=12'}
data-view-buffer@1.0.2:
resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
@@ -6589,6 +6672,13 @@ packages:
resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
engines: {node: '>= 0.4'}
+ 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'}
@@ -6672,6 +6762,11 @@ 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'}
@@ -6697,6 +6792,15 @@ packages:
resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==}
engines: {node: '>=10'}
+ dts-resolver@3.0.0:
+ resolution: {integrity: sha512-1T1f+z+4tl9XD+m+0HBgWoL/nm0bOIffyWaUuUSBlFg/86IWvfx+wjNaO/ybU0AJzG9/Mi5hBUgGV6zCmWEN7Q==}
+ engines: {node: ^22.18.0 || >=24.0.0}
+ peerDependencies:
+ oxc-resolver: '>=11.0.0'
+ peerDependenciesMeta:
+ oxc-resolver:
+ optional: true
+
dunder-proto@1.0.1:
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
engines: {node: '>= 0.4'}
@@ -6756,6 +6860,9 @@ 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==}
@@ -6870,8 +6977,13 @@ packages:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
- eslint-config-expo@55.0.0:
- resolution: {integrity: sha512-YvhaKrp1g7pR/qjdI12E5nw9y0DJZWgYr815vyW8wskGLsFvxATY3mtKL8zm3ZYzWj3Bvc37tRIS661TEkrv9A==}
+ 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:
eslint: '>=8.10'
@@ -6930,8 +7042,8 @@ packages:
peerDependencies:
eslint: '>=4.19.1'
- eslint-plugin-expo@1.0.0:
- resolution: {integrity: sha512-qLtunR+cNFtC+jwYCBia5c/PJurMjSLMOV78KrEOyQK02ohZapU4dCFFnS2hfrJuw0zxfsjVkjqg3QBqi933QA==}
+ eslint-plugin-expo@1.0.2:
+ resolution: {integrity: sha512-B5IbXHtvF+V7Cow7vsNnPQFTaOj2Yscf3nJW9nX1gvQmaJ2iCxU34DVFb+hDSxX+colImCsDZkMiaoyWijRGcQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
eslint: '>=8.10'
@@ -7130,8 +7242,8 @@ packages:
resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- expo-asset@55.0.16:
- resolution: {integrity: sha512-5IJyfJtYqvKGg04NKGQWiCIoK/fULDL9m15mXPPyfabD1jsToVj2hnWmo1r2SWNNmMwtQxi6jTpcGwVo2nLDxg==}
+ expo-asset@56.0.6:
+ resolution: {integrity: sha512-jM2GOqDwDuJMHYLSTcqXmbUf9jei8kE8p0NR5Y+m1kQYebCCks0yi8PLJkueqkNqgBa5HhSgIY8K6J71wdW73w==}
peerDependencies:
expo: '*'
react: '*'
@@ -7143,42 +7255,42 @@ packages:
peerDependencies:
expo: '*'
- expo-constants@55.0.15:
- resolution: {integrity: sha512-w394fcZLJjeKN+9ZnJzL/HiarE1nwZFDa+3S9frevh6Ur+MAAs9QDrcXhDrV8T3xqRzzYaqsP6Z8TFZ4efWN1A==}
+ expo-constants@56.0.6:
+ resolution: {integrity: sha512-3i1yDPKrHFyfBXNx9FzJUbIAJ5Lmmp+LGy9vtFCavidrf4geZywty1aPQWZCAw0LPFBrEEiROREV9ABHGGDbwA==}
peerDependencies:
expo: '*'
react-native: '*'
- expo-eas-client@55.0.5:
- resolution: {integrity: sha512-wRagCeSbSnSGVXgP7V+qiGfXzZ9hTVKWvKIOP7lwrX3MIEenNmNlO4D3RVC3aNU2GhmO3ZCZIIEre80KZoUUHA==}
+ expo-eas-client@56.0.1:
+ resolution: {integrity: sha512-r8h0ZIExacCrSRgY+ARfhMvFqosLHLJt1L7jyhvabfr1DN/ZDKDsYbovss2tzkpEUZGxZ3BPcB5epCwUsBBdOA==}
- expo-file-system@55.0.17:
- resolution: {integrity: sha512-d27K1cagUOt2BwxwPka9KW8Znu5kN1tnairozCzzCRZviZFtWnBxwFuJ3KU6MAbav/9UhSMkp5Ve/oZ+SR0UgQ==}
+ expo-file-system@56.0.4:
+ resolution: {integrity: sha512-tv+iwxY6mi85+rnOo5HXsVdNim8SuYAk1fpXUXoGzHgr8GTPCnAxjbVb1W1A93Pl0a5Q2qY4tp4eHLmH+TJBVQ==}
peerDependencies:
expo: '*'
react-native: '*'
- expo-font@55.0.6:
- resolution: {integrity: sha512-x9czUA3UQWjIwa0ZUEs/eWJNqB4mAue/m4ltESlNPLZhHL0nWWqIfsyHmklTLFH7mVfcHSJvew6k+pR2FE1zVw==}
+ expo-font@56.0.3:
+ resolution: {integrity: sha512-23Yyu2qMztdIPGQKK5VPGS0GR3CrMHGWebl4/YnSvZZoM3TCGF2ydmB/RjMgijIj4hlpgi21JstIM6fe95Xl3g==}
peerDependencies:
expo: '*'
react: '*'
react-native: '*'
- expo-glass-effect@55.0.10:
- resolution: {integrity: sha512-5kL/jATvgJWdrqPdxixrECJqD2l8cfQ4ALr1DK7qi9XkyI97ejXvUjB2VsfEePNy3Fg+/VwzA3n3L7Nv3tAPkw==}
+ expo-glass-effect@56.0.4:
+ resolution: {integrity: sha512-xI9rXtDwi7RW82uAlfyaXO6+k21ApWJ2tHAWYqPr/FjfmZbKsgNJ4Q0iZzGPCwboqjTGxaRZ61SZxBl8hDt5iA==}
peerDependencies:
expo: '*'
react: '*'
react-native: '*'
- expo-haptics@55.0.14:
- resolution: {integrity: sha512-KjDItBsA9mi1f5nRwf8g1wOdfEcLHwvEdt5Jl1sMCDETR/homcGOl+F3QIiPOl/PRlbGVieQsjTtF4DGtHOj6g==}
+ expo-haptics@56.0.3:
+ resolution: {integrity: sha512-ycoahZJnR9tWAVh/0mJYxbETtHRYaWjiWS8cHlP6aDGU6Q6Y8rZ5NKsuBwWw6HR2Pe30mfVFgbF2HrBR6gtYmw==}
peerDependencies:
expo: '*'
- expo-image@55.0.9:
- resolution: {integrity: sha512-+NVgWv+tr7a6EpBEaIIVVp+XfruRA2JL5xOxvd6ajvFGdH0rOhagwX1m1piAII6w7sh6uAnBr8X+fDZsav7B2w==}
+ expo-image@56.0.4:
+ resolution: {integrity: sha512-SMl8ShjHM23Ex1s6QRDIvB/B4tkOaCYY1hhVV8i0tCvUE582oeJtxcxQ4R2TcWsTXyGNot+64yKHkr5kUTuiTQ==}
peerDependencies:
expo: '*'
react: '*'
@@ -7188,42 +7300,32 @@ packages:
react-native-web:
optional: true
- expo-json-utils@55.0.2:
- resolution: {integrity: sha512-QJMOZOPOG7CTnKcrdVaiummn2va1MCO56z++eyWkDv3GBRODldM6MFMDf/jTREWthFc2Nxo6TuyWRrEV9S6n/Q==}
-
- expo-keep-awake@55.0.6:
- resolution: {integrity: sha512-acJjeHqkNxMVckEcJhGQeIksqqsarscSHJtT559bNgyiM4r14dViQ66su7bb6qDVeBt0K7z3glXI1dHVck1Zgg==}
- peerDependencies:
- expo: '*'
- react: '*'
+ expo-json-utils@56.0.0:
+ resolution: {integrity: sha512-lUqyv9aIGDbYTQ5Nux2FnH2/Dz0w5uJ8Pr080eS0StXi2jr5OmuMNErpzUnpfnYOU55xKotd4AHv68PfV/ludg==}
- expo-keep-awake@55.0.7:
- resolution: {integrity: sha512-QBWOEu8FkPBGYc0h0rsCkSTMJNBEKgzVsmLuQpO7V79V9sPR052k3Iiu/G8Kzmny2enyHYYed8RY+CUsip/SeQ==}
+ expo-keep-awake@56.0.3:
+ resolution: {integrity: sha512-CLMJXtEiMKknD3Rpm8CRwE6ZJUzu2yCEmRk1sgfHAJ1zIbuEWY3dpPDubtsnuzWm+2k6Sru+yaFbYsvPWmTiBA==}
peerDependencies:
expo: '*'
react: '*'
- expo-linking@55.0.14:
- resolution: {integrity: sha512-ZSqOvJyEquf04M5/ZpQo2diK9QRnNrzgqZo7p8gzxaPPHxP6IyUJnmcd12qT+dTxnRTVmUpxFQVHHWbvwPNIwQ==}
+ expo-linking@56.0.4:
+ resolution: {integrity: sha512-nMar+PHX2rdAietZ4iX1ZeKFk6dyBceO/pFvRxNFMdBN6TRIfzITcMbkokg4yjzW+xh48OjJQBBy7uuA1VGNXg==}
peerDependencies:
react: '*'
react-native: '*'
- expo-manifests@55.0.15:
- resolution: {integrity: sha512-p40ftXpgLTFGddFy35MYZMyjm/E6IQdn3l6fBZZ6zeraEzYLt+VLHYsplOL9ccTYvUSWKN9aOWRpoEYpyGVBVw==}
+ expo-manifests@56.0.2:
+ resolution: {integrity: sha512-ySd4j1Vr0Hmu1Nq7ynfRyMRo+x7XjQg6oTa2Pyi06wDNV9tjvQczNSolOjT1wWLc8TN4i4Rp1Ya25d0ppBbvfQ==}
peerDependencies:
expo: '*'
- expo-modules-autolinking@55.0.17:
- resolution: {integrity: sha512-VhlEVGnP+xBjfSKDKNN7GAPKN2whIfV08jsZvNj7UGyJWpZYiO6Emx1FLP5xd1+JZVpIrt/kxR641kdcPo7Ehw==}
- hasBin: true
-
- expo-modules-autolinking@55.0.19:
- resolution: {integrity: sha512-rHO1NZC/bxcKTLzkn6WYm9ErzS6qp7Kgb1NM2YxXJAYRWHwW/M7NZXyj6swWiKxyhRpcdoppRpjrz1sBuYGAjg==}
+ expo-modules-autolinking@56.0.3:
+ resolution: {integrity: sha512-yO4E2ZzEofvbdQ3ezrrOt1qQ3JljeMbKVgjSpN9Wetx8hh2THYDGkQ4cMZpWdfT8K3ExiifJGcCjOSGN8bTqjQ==}
hasBin: true
- expo-modules-core@55.0.22:
- resolution: {integrity: sha512-NC5GyvCHvnOvi5MtgLv68oUSrRP/0UORGzU/MX+7BIA8ctgBPxKSjPXPSfhwk3gMzj7eHBhYwlu0HJsIEnVd9A==}
+ expo-modules-core@56.0.5:
+ resolution: {integrity: sha512-aJ9NjK51dflLlGUXRDFFETy4jwZ4S2HxWt/xGDl8KOxGLoBMmkTBIw5kDk/y2F1pgEQD9WnoVz3llLNIz1pOvg==}
peerDependencies:
react: '*'
react-native: '*'
@@ -7232,38 +7334,30 @@ packages:
react-native-worklets:
optional: true
- expo-modules-core@55.0.24:
- resolution: {integrity: sha512-1FztZjelwf3xQZpD6+LFo6IKjnGF/PMVXYkv9aC3EybMl/ZbXji35cfhy9W5uR/bwQ7L+SVqvd5A00XOoIiO8Q==}
+ expo-modules-jsi@56.0.2:
+ resolution: {integrity: sha512-v7cT04E5oKCeQzs6dQKhqVWi9jaEYkrD1o2DkdumF39RKQ1LNFAxboBYddi2E0Imwe0tgD6Yjgibmu7UvJmO+w==}
peerDependencies:
- react: '*'
react-native: '*'
- react-native-worklets: ^0.7.4 || ^0.8.0
- peerDependenciesMeta:
- react-native-worklets:
- optional: true
- expo-router@55.0.13:
- resolution: {integrity: sha512-cIBR5RmQtbr+b535mlbMhmm7lweVZXFtjzJOgJTutoxIApRztl816kFRFNesnVyqQ0LZrEU0a6vqa3i0wdlRQw==}
+ expo-router@56.1.1:
+ resolution: {integrity: sha512-OVbsZ6sOKteIr7363nyYhvF3XQbXDdbJBvMpPi2oh0U87wlkexwIiyCBUvu6MnVbO/AJOmC1V3/1CXqKFROeKA==}
peerDependencies:
- '@expo/log-box': 55.0.11
- '@expo/metro-runtime': ^55.0.10
- '@react-navigation/drawer': ^7.9.4
+ '@expo/log-box': ^56.0.6
+ '@expo/metro-runtime': ^56.0.5
'@testing-library/react-native': '>= 13.2.0'
expo: '*'
- expo-constants: ^55.0.15
- expo-linking: ^55.0.14
+ expo-constants: ^56.0.6
+ expo-linking: ^56.0.4
react: '*'
react-dom: '*'
react-native: '*'
react-native-gesture-handler: '*'
react-native-reanimated: '*'
react-native-safe-area-context: '>= 5.4.0'
- react-native-screens: '*'
+ react-native-screens: 4.25.0-beta.3
react-native-web: '*'
react-server-dom-webpack: ~19.0.4 || ~19.1.5 || ~19.2.4
peerDependenciesMeta:
- '@react-navigation/drawer':
- optional: true
'@testing-library/react-native':
optional: true
react-dom:
@@ -7277,38 +7371,42 @@ packages:
react-server-dom-webpack:
optional: true
- expo-server@55.0.7:
- resolution: {integrity: sha512-Cc1btFyPsD9P4DT2xd1pG/uR96TLVMx0W+dPm9Gjk1uDV9xuzvMcUsY7nf9bt4U5pGyWWkCXmPJcKwWfdl51Pw==}
+ expo-server@56.0.1:
+ resolution: {integrity: sha512-0sYPXCtH4BHnVLyRflA5W7o13udB0u8iySfp18xGHFgY4XMRWWr1efdfWmggUljdtiBcPVu+KAyctugPNkvrHg==}
engines: {node: '>=20.16.0'}
- expo-server@55.0.8:
- resolution: {integrity: sha512-AoV5TKuO4biSzrhe/OVLyInfTT0pV9/OOc/g/oVq5vmCjL8SaSYTkES8PLt+67Tm7VqX+Dn0+kSx1nQcjEKaPw==}
- engines: {node: '>=20.16.0'}
+ expo-splash-screen@56.0.4:
+ resolution: {integrity: sha512-X3sUwAA3U8vaoo/L466Da0EVrZKpsVz8zLQ/njjUdb4KLjBx/gmkquqIIjNbL56SlNY+Jn1PjfNqO5REAMfX6A==}
+ peerDependencies:
+ expo: '*'
- expo-splash-screen@55.0.19:
- resolution: {integrity: sha512-l8BWI/inLJW46Ojz5NgwvaM8LftrdXeFfZBUXhAoZxg44Qo2xKY76s0S1h3WIxWXT4sRKwK8YQzGr4k+zHubxQ==}
+ expo-sqlite@56.0.3:
+ resolution: {integrity: sha512-GlKIPbY14Mz+hHylMv7IEvT08Lrvu3nYGpZPpLqjqDDNt7NcTl6NAzuYESf4QanD0vSOzkuJto2IrB/45NhpWQ==}
peerDependencies:
expo: '*'
+ react: '*'
+ react-native: '*'
- expo-status-bar@55.0.5:
- resolution: {integrity: sha512-qb0c3rJO2b7CC0gUVGi1JYp92oLenWdYGyk8l4YQs6U+uaXUTPv6aaFa3KkT2HON10re3AxxPNJci8rsz6kPxg==}
+ expo-status-bar@56.0.4:
+ resolution: {integrity: sha512-IGs/fDfkHXofy2ZQrGiXayhFK04HB85FZXorhcEhDZEcqASKgSqpak+HwUtAaR0MeTJwWyHNF7I6VmVbbp8EcA==}
peerDependencies:
+ expo: '*'
react: '*'
react-native: '*'
- expo-structured-headers@55.0.2:
- resolution: {integrity: sha512-KITovrWigTOtsII5hRQ9/3ydaNcxCux5g6O+eTPLyjnye9dpkDKl5GmCLVPVKIL/d7253OtbGtWMD4m0gha5pw==}
+ expo-structured-headers@56.0.0:
+ resolution: {integrity: sha512-Yv4x+SQxNnMQm4nu8NFfzx197YaDhdYH2N0u7tGErwWTmH9Tm1SAhqo7bLbBWLC9kf7W+kdzTshLU9rTiCXWGw==}
- expo-symbols@55.0.7:
- resolution: {integrity: sha512-y4ALLbncSGQzhFLw1PaIBbO39xzaw3ie249HmK6zK/WLJYfw4Z/9UU4iPKO3KCE4FyCKIzd+yRsvzvlri23YrQ==}
+ expo-symbols@56.0.5:
+ resolution: {integrity: sha512-RIukH0Xo80C7RU8qreipL2SPy2Py+Km8JFPbCmbPQpHkM3DW9Znlmg6VfhzbtUOlO5EuNSF0lAJ3l2VJi6qYrw==}
peerDependencies:
expo: '*'
expo-font: '*'
react: '*'
react-native: '*'
- expo-system-ui@55.0.16:
- resolution: {integrity: sha512-LwFBpFzy7L4j0ZqHZaxNU4tewQXkH37N4afXu6ZrkyKsH9q5V3jOT1way/N+Hylgyx5+jGpzvae9OcphS/+iDQ==}
+ expo-system-ui@56.0.4:
+ resolution: {integrity: sha512-DsuUB0jb8MEIxGYi9zuLkh1rlzY3CYKrWx4s5DpnLLyR6H0G37DC3mZm+SbYftUlN955hlPGQ7iSNxeq6aadIw==}
peerDependencies:
expo: '*'
react-native: '*'
@@ -7317,55 +7415,48 @@ packages:
react-native-web:
optional: true
- expo-updates-interface@55.1.5:
- resolution: {integrity: sha512-YOk9vhplWi0djoeqxMlEQgcDFeOGhnj4dWU0v1QvF5RqpqwLGdx780E0k3zL85xw6LXljVN78d6g8z51qIZu5g==}
+ expo-updates-interface@56.0.2:
+ resolution: {integrity: sha512-eWTwSZ9y8vrULG2oBn2TQSSIwBGSq/TxGJ3jY6tuVS2FWH/ASRIiKs3zkUZTRoC3ZuV2alz0mUClYV7nNrFx8g==}
peerDependencies:
expo: '*'
- expo-updates@55.0.20:
- resolution: {integrity: sha512-bRVsm+2ax3rQkErV+YX9uw+2N5DJ7C2S4ETPZPFbnLubSCJtlPuMHZ2SDQvmh3mAOl0yURKkbIMWVCvT89GmIQ==}
+ expo-updates@56.0.6:
+ resolution: {integrity: sha512-Ru0d7pMweN2X8qHCO8bEp3vHUWmPq4Il4lRnRp2rEbvW1XuXrdCshNgLN8Vaik/NgbN3XXPGR08bFp596UDCIg==}
hasBin: true
peerDependencies:
expo: '*'
+ expo-dev-client: '*'
react: '*'
react-native: '*'
+ peerDependenciesMeta:
+ expo-dev-client:
+ optional: true
- expo-web-browser@55.0.14:
- resolution: {integrity: sha512-bTDkBSQBnrlnYcM7Aak72AOvJuvdgA3M8p//Lazrm0Nfa77T9cRXzQ6KhLrB08V39n1+00d1dvuTWznJslkmdg==}
+ expo-web-browser@56.0.4:
+ resolution: {integrity: sha512-B8npNB7cHhQZdFBAB9/az/uEnGPWJnZvyWQPMCtc7qg/5y8nMOGaRdNsrJzeXthRkS+1c307zPhkTcXJqcT2ew==}
peerDependencies:
expo: '*'
react-native: '*'
- expo@55.0.14:
- resolution: {integrity: sha512-MqFdpyE3z5MZqb6Q9v6RqXzbRDbd0RMlGdVLSA/ObX6vgHhzCDIjeb+Uwao9P7R0uebsC4b126jBWxuhMmJHZQ==}
+ expo@56.0.0-preview.7:
+ resolution: {integrity: sha512-rE1AKsRA+z1B+hTtqYtyDTt+bLHCD5dIJFa77l4ZVEA24E6y0Etjr4t1osDy0TPfRoPV0WPAyBV+TWN2wDA+Iw==}
hasBin: true
peerDependencies:
'@expo/dom-webview': '*'
'@expo/metro-runtime': '*'
react: '*'
+ react-dom: '*'
react-native: '*'
+ react-native-web: '*'
react-native-webview: '*'
peerDependenciesMeta:
'@expo/dom-webview':
optional: true
'@expo/metro-runtime':
optional: true
- react-native-webview:
- optional: true
-
- expo@55.0.19:
- resolution: {integrity: sha512-8nTbChg2vy7aNsX5F7KiSb552YP7dc4eD89+UjCKlFPQg4Dw7RyjYuXgFBU7ADw2JjTHl848jFLyT6nvqNROgg==}
- hasBin: true
- peerDependencies:
- '@expo/dom-webview': '*'
- '@expo/metro-runtime': '*'
- react: '*'
- react-native: '*'
- react-native-webview: '*'
- peerDependenciesMeta:
- '@expo/dom-webview':
+ react-dom:
optional: true
- '@expo/metro-runtime':
+ react-native-web:
optional: true
react-native-webview:
optional: true
@@ -7534,9 +7625,6 @@ packages:
resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- fix-dts-default-cjs-exports@1.0.1:
- resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==}
-
flat-cache@4.0.1:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
@@ -7576,6 +7664,10 @@ 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'}
@@ -7671,6 +7763,10 @@ packages:
get-tsconfig@4.13.7:
resolution: {integrity: sha512-7tN6rFgBlMgpBML5j8typ92BKFi2sFQvIdpAqLA2beia5avZDrMs0FLZiM5etShWq5irVyGcGMEA1jcDaK7A/Q==}
+ get-tsconfig@5.0.0-beta.5:
+ resolution: {integrity: sha512-/6gFNr0N04nob252sTQxyFLi3eKFRqIg1I87YcqAMT1i6SQrSF6KujUEQrtrjMV0H/eejTCltLdDSTEMzHbnsQ==}
+ engines: {node: '>=20.20.0'}
+
getenv@2.0.0:
resolution: {integrity: sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==}
engines: {node: '>=6'}
@@ -7825,6 +7921,9 @@ packages:
hermes-compiler@0.14.1:
resolution: {integrity: sha512-+RPPQlayoZ9n6/KXKt5SFILWXCGJ/LV5d24L5smXrvTDrPS4L6dSctPczXauuvzFP3QEJbD1YO7Z3Ra4a+4IhA==}
+ hermes-compiler@250829098.0.10:
+ resolution: {integrity: sha512-TcRlZ0/TlyfJqquRFAWoyElVNnkdYRi/sEp4/Qy8/GYxjg8j2cS9D4MjuaQ+qimkmLN7AmO+44IznRf06mAr0w==}
+
hermes-estree@0.25.1:
resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==}
@@ -7867,6 +7966,9 @@ packages:
hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
+ hookable@6.1.1:
+ resolution: {integrity: sha512-U9LYDy1CwhMCnprUfeAZWZGByVbhd54hwepegYTK7Pi5NvqEj63ifz5z+xukznehT7i6NIZRu89Ay1AZmRsLEQ==}
+
hosted-git-info@7.0.2:
resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -7874,9 +7976,9 @@ packages:
hpack.js@2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
- html-encoding-sniffer@4.0.0:
- resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
- engines: {node: '>=18'}
+ html-encoding-sniffer@3.0.0:
+ resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==}
+ engines: {node: '>=12'}
html-entities@2.6.0:
resolution: {integrity: sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==}
@@ -7936,9 +8038,9 @@ packages:
http-parser-js@0.5.10:
resolution: {integrity: sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==}
- http-proxy-agent@7.0.2:
- resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
- engines: {node: '>= 14'}
+ http-proxy-agent@5.0.0:
+ resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
+ engines: {node: '>= 6'}
http-proxy-middleware@2.0.9:
resolution: {integrity: sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==}
@@ -7961,6 +8063,10 @@ 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'}
@@ -8032,6 +8138,10 @@ packages:
engines: {node: '>=8'}
hasBin: true
+ import-without-cache@0.4.0:
+ resolution: {integrity: sha512-NkJQA7oZ4YHQhd2+H3BoRFKF3d/XNsiKpHZCQEMH9pDX27hQQLsTyOocyRgaIVtf8gHX3Nt3LPkR4e5EdtPAGQ==}
+ engines: {node: ^22.18.0 || >=24.0.0}
+
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
@@ -8435,11 +8545,10 @@ packages:
resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- jest-expo@55.0.15:
- resolution: {integrity: sha512-WJHKiEftvn14a+UbiWTFYBuuvaDEYbhGYWa0ycfLlweZrLbb3gWIwa2MqmLDlroA4/8YxRaLIDMkRDMnjplPlQ==}
+ jest-expo@56.0.0:
+ resolution: {integrity: sha512-PA7XEJXIHO6BUIU7sSU5KKCxNNuTFuSmbVob32xO15skl53FwBgPFnULAAbxkQWrMGN+p4XTouJ7E7hDaBMcoQ==}
hasBin: true
peerDependencies:
- expo: '*'
react-native: '*'
react-server-dom-webpack: ~19.0.4 || ~19.1.5 || ~19.2.4
peerDependenciesMeta:
@@ -8574,10 +8683,6 @@ packages:
react:
optional: true
- joycon@3.1.1:
- resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
- engines: {node: '>=10'}
-
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -8592,11 +8697,11 @@ packages:
jsc-safe-url@0.2.4:
resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==}
- jsdom@26.1.0:
- resolution: {integrity: sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==}
- engines: {node: '>=18'}
+ jsdom@20.0.3:
+ resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==}
+ engines: {node: '>=14'}
peerDependencies:
- canvas: ^3.0.0
+ canvas: ^2.5.0
peerDependenciesMeta:
canvas:
optional: true
@@ -8773,12 +8878,8 @@ packages:
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- linkify-it@5.0.0:
- resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
-
- load-tsconfig@0.2.5:
- resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ linkify-it@2.2.0:
+ resolution: {integrity: sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==}
loader-runner@4.3.1:
resolution: {integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==}
@@ -8902,8 +9003,8 @@ packages:
resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==}
engines: {node: '>=16'}
- markdown-it@14.1.1:
- resolution: {integrity: sha512-BuU2qnTti9YKgK5N+IeMubp14ZUKUUw7yeJbkjtosvHiP0AZ5c8IAgEMk79D0eC8F23r4Ac/q8cAIFdm2FtyoA==}
+ markdown-it@10.0.0:
+ resolution: {integrity: sha512-YWOP1j7UbDNz+TumYP1kpwnP0aEa711cJjrAQrzd0UXlbJfc5aAq0F/PZHjiioqDC1NKgvIMX+o+9Bk7yuM2dg==}
hasBin: true
markdown-table@2.0.0:
@@ -8982,8 +9083,8 @@ packages:
mdn-data@2.0.30:
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
- mdurl@2.0.0:
- resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
+ mdurl@1.0.1:
+ resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
media-typer@0.3.0:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
@@ -9037,6 +9138,10 @@ packages:
resolution: {integrity: sha512-sBqBkt6kNut/88bv+Ucvm4yqdPetbvAEsHzi3MAgJEifOSYYzX5Z5Kgw3TFOrwf/mHJTOBG2ONlaMHoyfP15TA==}
engines: {node: '>=20.19.4'}
+ metro-babel-transformer@0.84.4:
+ resolution: {integrity: sha512-rvCfz8snl9h20VcvpOHxZuHP1SlAkv4HXbzw7nyyVwu6Eqo5PRerbakQ9XmUCOsRy70spJ37O+G1TK8oMzo48g==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
metro-cache-key@0.83.5:
resolution: {integrity: sha512-Ycl8PBajB7bhbAI7Rt0xEyiF8oJ0RWX8EKkolV1KfCUlC++V/GStMSGpPLwnnBZXZWkCC5edBPzv1Hz1Yi0Euw==}
engines: {node: '>=20.19.4'}
@@ -9045,6 +9150,10 @@ packages:
resolution: {integrity: sha512-W1c2Nmx8MiJTJt+eWhMO08z9VKi3kZOaz99IYGdqeqDgY9j+yZjXl62rUav4Di0heZfh4/n2s722PqRL1OODeg==}
engines: {node: '>=20.19.4'}
+ metro-cache-key@0.84.4:
+ resolution: {integrity: sha512-wVO79aGrkYImpnaVS4+d5RrRBRPX31QtvKB3wKGBuiNSznduZTQHzsrJZRroFJSwnygrzdsGUtDQPuqqFjFdvw==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
metro-cache@0.83.5:
resolution: {integrity: sha512-oH+s4U+IfZyg8J42bne2Skc90rcuESIYf86dYittcdWQtPfcaFXWpByPyTuWk3rR1Zz3Eh5HOrcVImfEhhJLng==}
engines: {node: '>=20.19.4'}
@@ -9053,6 +9162,10 @@ packages:
resolution: {integrity: sha512-E9SRePXQ1Zvlj79VcOk57q7VC7rMHMFQ+jhmPHBiq+dJ0bJB5BL87lWZF6oh5X76Cci5tpDuQNaDwwuSCToEeg==}
engines: {node: '>=20.19.4'}
+ metro-cache@0.84.4:
+ resolution: {integrity: sha512-gpcFQdSLUwUCk71saKoE64jLFbx2nwTfVCcPSULMNT8QYq0p1eZZE29Jvd0HtT/UlhC3ZOutLxJME5xqD2JUZg==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
metro-config@0.83.5:
resolution: {integrity: sha512-JQ/PAASXH7yczgV6OCUSRhZYME+NU8NYjI2RcaG5ga4QfQ3T/XdiLzpSb3awWZYlDCcQb36l4Vl7i0Zw7/Tf9w==}
engines: {node: '>=20.19.4'}
@@ -9061,6 +9174,10 @@ packages:
resolution: {integrity: sha512-83mjWFbFOt2GeJ6pFIum5mSnc1uTsZJAtD8o4ej0s4NVsYsA7fB+pHvTfHhFrpeMONaobu2riKavkPei05Er/Q==}
engines: {node: '>=20.19.4'}
+ metro-config@0.84.4:
+ resolution: {integrity: sha512-PMotGDjXcXLWo2TMRH+VR99phFNgYTwqh4OoieIKK3yTJa1Jmkl+fZJxDO0jfBvNF+WESHciHvpNuBtXaF3B0Q==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
metro-core@0.83.5:
resolution: {integrity: sha512-YcVcLCrf0ed4mdLa82Qob0VxYqfhmlRxUS8+TO4gosZo/gLwSvtdeOjc/Vt0pe/lvMNrBap9LlmvZM8FIsMgJQ==}
engines: {node: '>=20.19.4'}
@@ -9069,6 +9186,10 @@ packages:
resolution: {integrity: sha512-6yn3w1wnltT6RQl7p7YES2l95ArC+mWrOssEiH8p5/DDrJS65/szf9LsC9JrBv8c5DdvSY3V3f0GRYg0Ox7hCg==}
engines: {node: '>=20.19.4'}
+ metro-core@0.84.4:
+ resolution: {integrity: sha512-HONpWC5LGXZn3ffkd4Hu6AIrfE7j4Z0g0wMo/goV24WOB3lhuFZ40KgvaDiSw8iyQHloMYay5N/wPX+z8oN/PQ==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
metro-file-map@0.83.5:
resolution: {integrity: sha512-ZEt8s3a1cnYbn40nyCD+CsZdYSlwtFh2kFym4lo+uvfM+UMMH+r/BsrC6rbNClSrt+B7rU9T+Te/sh/NL8ZZKQ==}
engines: {node: '>=20.19.4'}
@@ -9077,6 +9198,10 @@ packages:
resolution: {integrity: sha512-+j0F1m+FQYVAQ6syf+mwhIPV5GoFQrkInX8bppuc50IzNsZbMrp8R5H/Sx/K2daQ3YEa9F/XwkeZT8gzJfgeCw==}
engines: {node: '>=20.19.4'}
+ metro-file-map@0.84.4:
+ resolution: {integrity: sha512-KSVDi/u60hKPx++NLu3MTIvyjzNoJnFAF8PQFxaj1jiSka/wjw+Ua6sNuJ0TDHQv+7AAoFQxeMgaRAe8Yic5wQ==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
metro-minify-terser@0.83.5:
resolution: {integrity: sha512-Toe4Md1wS1PBqbvB0cFxBzKEVyyuYTUb0sgifAZh/mSvLH84qA1NAWik9sISWatzvfWf3rOGoUoO5E3f193a3Q==}
engines: {node: '>=20.19.4'}
@@ -9085,6 +9210,10 @@ packages:
resolution: {integrity: sha512-MfJar2IS4tBRuLb9svwb0Gu5l9BsH+pcRm8eGcEi/wy8MzZinfinh5dFLt2nWkocnulIgtGB5NkFDdbXqMXKhQ==}
engines: {node: '>=20.19.4'}
+ metro-minify-terser@0.84.4:
+ resolution: {integrity: sha512-5qpbaVOMC7CPitIpuewzVeGw7E+C3ykbv2mqTjQLl85Z3annSVGlSCTcsZjqXZzjupfK4Ztj3dDc4kc44NZwtQ==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
metro-resolver@0.83.5:
resolution: {integrity: sha512-7p3GtzVUpbAweJeCcUJihJeOQl1bDuimO5ueo1K0BUpUtR41q5EilbQ3klt16UTPPMpA+tISWBtsrqU556mY1A==}
engines: {node: '>=20.19.4'}
@@ -9093,6 +9222,10 @@ packages:
resolution: {integrity: sha512-WSJIENlMcoSsuz66IfBHOkgfp3KJt2UW2TnEHPf1b8pIG2eEXNOVmo2+03A0H17WY2XGXWgxL0CG7FAopqgB1A==}
engines: {node: '>=20.19.4'}
+ metro-resolver@0.84.4:
+ resolution: {integrity: sha512-1qLgbxQ5ZGhhutuPot1Yp348ofDsATL2WkrHF65TobqTT9K3P9qJXw38bomk7ncp5B7OYMfWwtyBZo1lCV792A==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
metro-runtime@0.83.5:
resolution: {integrity: sha512-f+b3ue9AWTVlZe2Xrki6TAoFtKIqw30jwfk7GQ1rDUBQaE0ZQ+NkiMEtb9uwH7uAjJ87U7Tdx1Jg1OJqUfEVlA==}
engines: {node: '>=20.19.4'}
@@ -9101,6 +9234,10 @@ packages:
resolution: {integrity: sha512-9GKkJURaB2iyYoEExKnedzAHzxmKtSi+k0tsZUvMoU27tBZJElchYt7JH/Ai/XzYAI9lCAaV7u5HZSI8J5Z+wQ==}
engines: {node: '>=20.19.4'}
+ metro-runtime@0.84.4:
+ resolution: {integrity: sha512-Jibypds4g7AhzdRKY+kDoj51s5EXMwgyp5ddtlreDAsWefMdOx+agWqgm0H2XSZ/ueanHHVM89fnf5OJnlxa8Q==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
metro-source-map@0.83.5:
resolution: {integrity: sha512-VT9bb2KO2/4tWY9Z2yeZqTUao7CicKAOps9LUg2aQzsz+04QyuXL3qgf1cLUVRjA/D6G5u1RJAlN1w9VNHtODQ==}
engines: {node: '>=20.19.4'}
@@ -9109,6 +9246,10 @@ packages:
resolution: {integrity: sha512-JgA1h7oc1a1jydBe1GhVFsUoMYo3wLPk7oRA32rjlDsq+sP2JLt9x2p2lWbNSxTm/u8NV4VRid3hvEJgcX8tKw==}
engines: {node: '>=20.19.4'}
+ metro-source-map@0.84.4:
+ resolution: {integrity: sha512-jbWkPxIesVuo1IWkvezmMJld6iu8nD62GsrZiV6jP37AOdbo4OBq1FJ+qkOg8sV05wAHB//jAbziuW0SlJfW4g==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
metro-symbolicate@0.83.5:
resolution: {integrity: sha512-EMIkrjNRz/hF+p0RDdxoE60+dkaTLPN3vaaGkFmX5lvFdO6HPfHA/Ywznzkev+za0VhPQ5KSdz49/MALBRteHA==}
engines: {node: '>=20.19.4'}
@@ -9119,6 +9260,11 @@ packages:
engines: {node: '>=20.19.4'}
hasBin: true
+ metro-symbolicate@0.84.4:
+ resolution: {integrity: sha512-OnfpacxUqGPZQ27t8qK9mFa7uqHIlVWeqRqkCbvMvreEBiamEeOn8krKtcwgP5M4cYDPwuSmCTopHMVthqG4zA==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+ hasBin: true
+
metro-transform-plugins@0.83.5:
resolution: {integrity: sha512-KxYKzZL+lt3Os5H2nx7YkbkWVduLZL5kPrE/Yq+Prm/DE1VLhpfnO6HtPs8vimYFKOa58ncl60GpoX0h7Wm0Vw==}
engines: {node: '>=20.19.4'}
@@ -9127,6 +9273,10 @@ packages:
resolution: {integrity: sha512-Ss0FpBiZDjX2kwhukMDl5sNdYK8T/06IPqxNE4H6PTlRlfs9q11cef13c/xESY/Pm4VCkp1yJUZO3kXzvMxQFA==}
engines: {node: '>=20.19.4'}
+ metro-transform-plugins@0.84.4:
+ resolution: {integrity: sha512-kehr6HbAecqD0/a3xLXobELdPaAmRAl8bel0qagPF4vhZtux93nS8S4eq2kgKt6J2GnQpVjSoW1PXdst04mwow==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
metro-transform-worker@0.83.5:
resolution: {integrity: sha512-8N4pjkNXc6ytlP9oAM6MwqkvUepNSW39LKYl9NjUMpRDazBQ7oBpQDc8Sz4aI8jnH6AGhF7s1m/ayxkN1t04yA==}
engines: {node: '>=20.19.4'}
@@ -9135,6 +9285,10 @@ packages:
resolution: {integrity: sha512-UegCo7ygB2fT64mRK2nbAjQVJ1zSwIIHy8d96jJv2nKZFDaViYBiughEdu5HM/Ceq0WN3LZrZk3zhl9aoiLYFw==}
engines: {node: '>=20.19.4'}
+ metro-transform-worker@0.84.4:
+ resolution: {integrity: sha512-W1IYMvvXTu4MxYr7d9h7CeG2vpIr3bmLLIavkPY4O1ilzDrvS8z/NEe6y+pC44Ff7raMXQgYSfdqDUwN/i39gg==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
metro@0.83.5:
resolution: {integrity: sha512-BgsXevY1MBac/3ZYv/RfNFf/4iuW9X7f4H8ZNkiH+r667HD9sVujxcmu4jvEzGCAm4/WyKdZCuyhAcyhTHOucQ==}
engines: {node: '>=20.19.4'}
@@ -9145,6 +9299,11 @@ packages:
engines: {node: '>=20.19.4'}
hasBin: true
+ metro@0.84.4:
+ resolution: {integrity: sha512-8ETTubqfD6ornDy2zYDvRcKnVDOXdFJsjetYDBsY4oAsb6NJkiwFR+FaMESyGppFmQUyBQA4H4sFGxzcQSGtFA==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+ hasBin: true
+
micromark-core-commonmark@2.0.3:
resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==}
@@ -9354,9 +9513,6 @@ packages:
engines: {node: '>=10'}
hasBin: true
- mlly@1.8.2:
- resolution: {integrity: sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==}
-
morgan@1.10.1:
resolution: {integrity: sha512-223dMRJtI/l25dJKWpgij2cMtywuG/WiUKXdvwfbhGKBhy1puASqXwFzmWZ7+K73vUPoR7SS2Qz2cI/g9MKw0A==}
engines: {node: '>= 0.8.0'}
@@ -9379,9 +9535,6 @@ packages:
resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
hasBin: true
- multitars@0.2.5:
- resolution: {integrity: sha512-T/i4uZOzd4j2VnS28eAOJS0MgeAbcsFIijRPeLRhVv54hP9OqsC/FjYK0JmMTWxGhF2fv34oH1mtR6XLBKkNlw==}
-
multitars@1.0.0:
resolution: {integrity: sha512-H/J4fMLedtudftaYMOg7ajzLYgT3/rwbWVJbqr/iUgB8DQztn38ys5HOqI1CzSxx8QhXXwOOnnBvd4v3jG5+Mg==}
@@ -9500,6 +9653,10 @@ packages:
resolution: {integrity: sha512-9M5kpuOLyTPogMtZiQUIxdAZxl7Dxs6tVBbJErSumsqGMuhVSoUbkfeZ3XNPpLpwBBtqY5QDUzGwggLHX3slQg==}
engines: {node: '>=20.19.4'}
+ ob1@0.84.4:
+ resolution: {integrity: sha512-eJXMpz4aQHXF/YBB9ddqZDIS+ooO91hObo9FoW/xBkr54/zCwYYCDqT/O54vNo8kOkWs5Ou/y28NgdrV0edQNA==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+
object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
@@ -9535,6 +9692,9 @@ packages:
obuf@1.1.2:
resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
+ obug@2.1.1:
+ resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
+
on-exit-leak-free@2.1.2:
resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==}
engines: {node: '>=14.0.0'}
@@ -9800,9 +9960,6 @@ packages:
resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==}
engines: {node: '>=14.16'}
- pkg-types@1.3.1:
- resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
-
pkijs@3.4.0:
resolution: {integrity: sha512-emEcLuomt2j03vxD54giVB4SxTjnsqkU692xZOZXHDVoYyypEm+b3jpiTcc+Cf+myooc+/Ly0z01jqeNHVgJGw==}
engines: {node: '>=16.0.0'}
@@ -9966,27 +10123,9 @@ packages:
peerDependencies:
postcss: ^8.4
- postcss-load-config@6.0.1:
- resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
- engines: {node: '>= 18'}
- peerDependencies:
- jiti: '>=1.21.0'
- postcss: '>=8.0.9'
- tsx: ^4.8.1
- yaml: ^2.4.2
- peerDependenciesMeta:
- jiti:
- optional: true
- postcss:
- optional: true
- tsx:
- optional: true
- yaml:
- optional: true
-
- postcss-loader@7.3.4:
- resolution: {integrity: sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==}
- engines: {node: '>= 14.15.0'}
+ postcss-loader@7.3.4:
+ resolution: {integrity: sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==}
+ engines: {node: '>= 14.15.0'}
peerDependencies:
postcss: ^7.0.0 || ^8.0.1
webpack: ^5.0.0
@@ -10326,9 +10465,8 @@ packages:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
- punycode.js@2.3.1:
- resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
- engines: {node: '>=6'}
+ psl@1.15.0:
+ resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==}
punycode@2.3.1:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
@@ -10359,10 +10497,16 @@ packages:
quansync@0.2.11:
resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==}
+ quansync@1.0.0:
+ resolution: {integrity: sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==}
+
query-string@7.1.3:
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==}
@@ -10376,6 +10520,9 @@ 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'}
@@ -10404,6 +10551,11 @@ 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:
@@ -10413,10 +10565,10 @@ packages:
resolution: {integrity: sha512-aEZ9qP+/M+58x2qgfSFEWH1BxLyHe5+qkLNJOZQb5iGS017jpbRnoKhNRrXPeA6RfBrZO5wZrT9DMC1UqE1f1w==}
engines: {node: ^20.9.0 || >=22}
- react-dom@19.2.0:
- resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==}
+ react-dom@19.2.3:
+ resolution: {integrity: sha512-yELu4WmLPw5Mr/lmeEpox5rw3RETacE++JgHqQzd2dg+YbJuat3jH4ingc+WPZhxaoFzdv9y33G+F7Nl5O0GBg==}
peerDependencies:
- react: ^19.2.0
+ react: ^19.2.3
react-fast-compare@3.2.2:
resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
@@ -10452,6 +10604,14 @@ packages:
react-loadable: '*'
webpack: '>=4.41.1 || 5.x'
+ react-native-drawer-layout@4.2.3:
+ resolution: {integrity: sha512-mj/riptO4O8D9loG9N76M4VqLR9EQXLQkx/nN4GVgT/y46wpVlrqqLlDAqFVylTDEW/u3WvZhZph+8Iu64MsZw==}
+ peerDependencies:
+ react: '>= 18.2.0'
+ react-native: '*'
+ react-native-gesture-handler: '>= 2.0.0'
+ react-native-reanimated: '>= 2.0.0'
+
react-native-fit-image@1.5.5:
resolution: {integrity: sha512-Wl3Vq2DQzxgsWKuW4USfck9zS7YzhvLNPpkwUUCF90bL32e1a0zOVQ3WsJILJOwzmPdHfzZmWasiiAUNBkhNkg==}
@@ -10461,8 +10621,8 @@ packages:
react: '*'
react-native: '*'
- react-native-is-edge-to-edge@1.2.1:
- resolution: {integrity: sha512-FLbPWl/MyYQWz+KwqOZsSyj2JmLKglHatd3xLZWskXOpRaio4LfEDEz8E/A6uD8QoTHW6Aobw1jbEwK7KMgR7Q==}
+ react-native-gesture-handler@2.31.2:
+ resolution: {integrity: sha512-rw5q74i2AfS7YGYdbxQDhOU7xqgY6WRM1132/CCm3erqjblhECZDZFHIm0tteHoC9ih24wogVBVVzcTBQtZ+5A==}
peerDependencies:
react: '*'
react-native: '*'
@@ -10485,13 +10645,6 @@ packages:
'@react-native-community/datetimepicker': '>=6.7.0'
react-native: '>=0.65.0'
- react-native-reanimated@4.2.1:
- resolution: {integrity: sha512-/NcHnZMyOvsD/wYXug/YqSKw90P9edN0kEPL5lP4PFf1aQ4F1V7MKe/E0tvfkXKIajy3Qocp5EiEnlcrK/+BZg==}
- peerDependencies:
- react: '*'
- react-native: '*'
- react-native-worklets: '>=0.7.0'
-
react-native-reanimated@4.2.3:
resolution: {integrity: sha512-6e8fFyUSnFVGC8x5s3OR6fdE9ElXb0QTZJO1I9YJ/o13cqPuB0ICouQbEyVGE0jc4j+M9dpiHxLtprz9BJhOCw==}
peerDependencies:
@@ -10499,17 +10652,24 @@ packages:
react-native: 0.80 - 0.84
react-native-worklets: 0.7 - 0.8
+ react-native-reanimated@4.3.0:
+ resolution: {integrity: sha512-HOTTPdKtddXTOsmQxDASXEwLS3lqEHrKERD3XOgzSqWJ7L3x81Pnx7mTcKx1FKdkgomMug/XSmm1C6Z7GIowxA==}
+ peerDependencies:
+ react: '*'
+ react-native: 0.81 - 0.85
+ react-native-worklets: 0.8.x
+
react-native-safe-area-context@5.7.0:
resolution: {integrity: sha512-/9/MtQz8ODphjsLdZ+GZAIcC/RtoqW9EeShf7Uvnfgm/pzYrJ75y3PV/J1wuAV1T5Dye5ygq4EAW20RoBq0ABQ==}
peerDependencies:
react: '*'
react-native: '*'
- react-native-screens@4.23.0:
- resolution: {integrity: sha512-XhO3aK0UeLpBn4kLecd+J+EDeRRJlI/Ro9Fze06vo1q163VeYtzfU9QS09/VyDFMWR1qxDC1iazCArTPSFFiPw==}
+ react-native-screens@4.25.0-beta.3:
+ resolution: {integrity: sha512-LU5e8hlXvzQI3Ps8OGsG9pm/+FOY3XnNB2IKAsEkBgpJOyiZdVwkCogF/kM7XSzW6rG21Hib9CLMri6J4SpXCA==}
peerDependencies:
react: '*'
- react-native: '*'
+ react-native: '>=0.82.0'
react-native-svg@15.15.3:
resolution: {integrity: sha512-/k4KYwPBLGcx2f5d4FjE+vCScK7QOX14cl2lIASJ28u4slHHtIhL0SZKU7u9qmRBHxTCKPoPBtN6haT1NENJNA==}
@@ -10517,6 +10677,12 @@ packages:
react: '*'
react-native: '*'
+ react-native-svg@15.15.4:
+ resolution: {integrity: sha512-boT/vIRgj6zZKBpfTPJJiYWMbZE9duBMOwPK6kCSTgxsS947IFMOq9OgIFkpWZTB7t229H24pDRkh3W9ZK/J1A==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
+
react-native-test-app@5.1.4:
resolution: {integrity: sha512-4qqfB7KMXmjvFzqCge6mWoNn3Bksq3UJOCN4BH/yfbeR6XjPMTE+vv6DpZW2TIYuHI8KAeBsAXLdLQGe0OLngQ==}
engines: {node: '>=18.12'}
@@ -10549,19 +10715,13 @@ packages:
react: ^18.0.0 || ^19.0.0
react-dom: ^18.0.0 || ^19.0.0
- react-native-worklets@0.7.2:
- resolution: {integrity: sha512-DuLu1kMV/Uyl9pQHp3hehAlThoLw7Yk2FwRTpzASOmI+cd4845FWn3m2bk9MnjUw8FBRIyhwLqYm2AJaXDXsog==}
- peerDependencies:
- '@babel/core': '*'
- react: '*'
- react-native: '*'
-
- react-native-worklets@0.7.4:
- resolution: {integrity: sha512-NYOdM1MwBb3n+AtMqy1tFy3Mn8DliQtd8sbzAVRf9Gc+uvQ0zRfxN7dS8ZzoyX7t6cyQL5THuGhlnX+iFlQTag==}
+ react-native-worklets@0.8.3:
+ resolution: {integrity: sha512-oCBJROyLU7yG/1R8s0INMflygTH71bx+5XcYkH0CM938TlhSoVbiunE1WVW5FZa51vwYqfLie/IXMX2s1Kh3eg==}
peerDependencies:
'@babel/core': '*'
+ '@react-native/metro-config': '*'
react: '*'
- react-native: '*'
+ react-native: 0.81 - 0.85
react-native@0.83.4:
resolution: {integrity: sha512-H5Wco3UJyY6zZsjoBayY8RM9uiAEQ3FeG4G2NAt+lr9DO43QeqPlVe9xxxYEukMkEmeIhNjR70F6bhXuWArOMQ==}
@@ -10574,6 +10734,20 @@ packages:
'@types/react':
optional: true
+ react-native@0.85.3:
+ resolution: {integrity: sha512-HN/fGC+3nZVcDNcw7gfbM/DuqZAvI9Mz+/SxuhODaua4JY0BPzhfTzWXRyTR4mRgMHmShTPpH2PYMTxvZrsdZA==}
+ engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
+ hasBin: true
+ peerDependencies:
+ '@react-native/jest-preset': 0.85.3
+ '@types/react': ^19.1.1
+ react: ^19.2.3
+ peerDependenciesMeta:
+ '@react-native/jest-preset':
+ optional: true
+ '@types/react':
+ optional: true
+
react-reconciler@0.31.0:
resolution: {integrity: sha512-7Ob7Z+URmesIsIVRjnLoDGwBEG/tVitidU0nMsqX/eeJaLY89RISO/10ERe0MqmzuKUUB1rmY+h1itMbUHg9BQ==}
engines: {node: '>=0.10.0'}
@@ -10639,10 +10813,19 @@ packages:
peerDependencies:
react: ^19.2.0
+ react-test-renderer@19.2.3:
+ resolution: {integrity: sha512-TMR1LnSFiWZMJkCgNf5ATSvAheTT2NvKIwiVwdBPHxjBI7n/JbWd4gaZ16DVd9foAXdvDz+sB5yxZTwMjPRxpw==}
+ peerDependencies:
+ react: ^19.2.3
+
react@19.2.0:
resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==}
engines: {node: '>=0.10.0'}
+ react@19.2.3:
+ resolution: {integrity: sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==}
+ engines: {node: '>=0.10.0'}
+
read-yaml-file@1.1.0:
resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==}
engines: {node: '>=6'}
@@ -10662,10 +10845,6 @@ packages:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
- readdirp@4.1.2:
- resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
- engines: {node: '>= 14.18.0'}
-
real-require@0.2.0:
resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==}
engines: {node: '>= 12.13.0'}
@@ -10861,23 +11040,39 @@ packages:
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- rolldown@1.0.0-rc.15:
- resolution: {integrity: sha512-Ff31guA5zT6WjnGp0SXw76X6hzGRk/OQq2hE+1lcDe+lJdHSgnSX6nK3erbONHyCbpSj9a9E+uX/OvytZoWp2g==}
+ rolldown-plugin-dts@0.25.0:
+ resolution: {integrity: sha512-GE3uDZgUuA9l6g+1u928TRmadd5IVhaWiwpWast2kCyLv9tYJJCC6E5HHkV0HGmwC5ZL73xh12/PRZI+KZ2vdQ==}
+ engines: {node: ^22.18.0 || >=24.0.0}
+ peerDependencies:
+ '@ts-macro/tsc': ^0.3.6
+ '@typescript/native-preview': '>=7.0.0-dev.20260325.1'
+ rolldown: ^1.0.0
+ typescript: ^6.0.0
+ vue-tsc: ~3.2.0
+ peerDependenciesMeta:
+ '@ts-macro/tsc':
+ optional: true
+ '@typescript/native-preview':
+ optional: true
+ typescript:
+ optional: true
+ vue-tsc:
+ optional: true
+
+ rolldown@1.0.0:
+ resolution: {integrity: sha512-yD986aXDESFGS95spT1LAv0jssywP4npMEjmMHyN2/5+eE8qQJUype2AaKkRiLgBgyD0LFlubwAht7VmY8rGoA==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
- rollup@4.60.1:
- resolution: {integrity: sha512-VmtB2rFU/GroZ4oL8+ZqXgSA38O6GR8KSIvWmEFv63pQ0G6KaBH9s07PO8XTXP4vI+3UJUEypOfjkGfmSBBR0w==}
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ rolldown@1.0.0-rc.15:
+ resolution: {integrity: sha512-Ff31guA5zT6WjnGp0SXw76X6hzGRk/OQq2hE+1lcDe+lJdHSgnSX6nK3erbONHyCbpSj9a9E+uX/OvytZoWp2g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
router@2.2.0:
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'}
@@ -10969,16 +11164,6 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.6.3:
- resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
- engines: {node: '>=10'}
- hasBin: true
-
- semver@7.7.3:
- resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
- engines: {node: '>=10'}
- hasBin: true
-
semver@7.7.4:
resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
engines: {node: '>=10'}
@@ -10996,9 +11181,8 @@ packages:
resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==}
engines: {node: '>=0.10.0'}
- serialize-javascript@7.0.5:
- resolution: {integrity: sha512-F4LcB0UqUl1zErq+1nYEEzSHJnIwb3AF2XWB94b+afhrekOUijwooAYqFyRbjYkm2PAKBabx6oYv/xDxNi8IBw==}
- engines: {node: '>=20.0.0'}
+ serialize-javascript@6.0.2:
+ resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
serve-handler@6.1.7:
resolution: {integrity: sha512-CinAq1xWb0vR3twAv9evEU8cNWkXCb9kd5ePAHUKJBkOsUpR1wt/CvGdeca7vqumL1U5cSaeVQ6zZMxiJ3yWsg==}
@@ -11552,8 +11736,9 @@ packages:
tinycolor2@1.6.0:
resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
- tinyexec@0.3.2:
- resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
+ tinyexec@1.1.2:
+ resolution: {integrity: sha512-dAqSqE/RabpBKI8+h26GfLq6Vb3JVXs30XYQjdMjaj/c2tS8IYYMbIzP599KtRj7c57/wYApb3QjgRgXmrCukA==}
+ engines: {node: '>=18'}
tinyglobby@0.2.16:
resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==}
@@ -11574,13 +11759,6 @@ 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==}
@@ -11606,16 +11784,16 @@ packages:
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
engines: {node: '>=6'}
- tough-cookie@5.1.2:
- resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==}
- engines: {node: '>=16'}
+ tough-cookie@4.1.4:
+ resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
+ engines: {node: '>=6'}
tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- tr46@5.1.1:
- resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==}
- engines: {node: '>=18'}
+ tr46@3.0.0:
+ resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
+ engines: {node: '>=12'}
tree-dump@1.1.0:
resolution: {integrity: sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA==}
@@ -11663,30 +11841,45 @@ packages:
resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==}
engines: {node: '>=6'}
- tslib@1.14.1:
- resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
-
- tslib@2.8.1:
- resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
-
- tsup@8.5.1:
- resolution: {integrity: sha512-xtgkqwdhpKWr3tKPmCkvYmS9xnQK3m3XgxZHwSUjvfTjp7YfXe5tT3GgWi0F2N+ZSMsOeWeZFh7ZZFg5iPhing==}
- engines: {node: '>=18'}
+ tsdown@0.22.0:
+ resolution: {integrity: sha512-FgW0hHb27nGQA/+F3d5+U9wKXkfilk9DVkc5+7x/ZqF03g+Hoz/eeApT32jqxATt9eRoR+1jxk7MUMON+O4CXw==}
+ engines: {node: ^22.18.0 || >=24.0.0}
hasBin: true
peerDependencies:
- '@microsoft/api-extractor': ^7.36.0
- '@swc/core': ^1
- postcss: ^8.4.12
- typescript: '>=4.5.0'
+ '@arethetypeswrong/core': ^0.18.1
+ '@tsdown/css': 0.22.0
+ '@tsdown/exe': 0.22.0
+ '@vitejs/devtools': '*'
+ publint: ^0.3.8
+ tsx: '*'
+ typescript: ^5.0.0 || ^6.0.0
+ unplugin-unused: ^0.5.0
+ unrun: '*'
peerDependenciesMeta:
- '@microsoft/api-extractor':
+ '@arethetypeswrong/core':
optional: true
- '@swc/core':
+ '@tsdown/css':
+ optional: true
+ '@tsdown/exe':
+ optional: true
+ '@vitejs/devtools':
optional: true
- postcss:
+ publint:
+ optional: true
+ tsx:
optional: true
typescript:
optional: true
+ unplugin-unused:
+ optional: true
+ unrun:
+ optional: true
+
+ tslib@1.14.1:
+ resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
+
+ tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
tsutils@3.21.0:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
@@ -11749,13 +11942,8 @@ packages:
typedarray-to-buffer@3.1.5:
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
- typescript@5.9.3:
- resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
- engines: {node: '>=14.17'}
- hasBin: true
-
- typescript@6.0.2:
- resolution: {integrity: sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==}
+ typescript@6.0.3:
+ resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
engines: {node: '>=14.17'}
hasBin: true
@@ -11763,16 +11951,16 @@ packages:
resolution: {integrity: sha512-LbBDqdIC5s8iROCUjMbW1f5dJQTEFB1+KO9ogbvlb3nm9n4YHa5p4KTvFPWvh2Hs8gZMBuiB1/8+pdfe/tDPug==}
hasBin: true
- uc.micro@2.1.0:
- resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
-
- ufo@1.6.3:
- resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
+ uc.micro@1.0.6:
+ resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
unbox-primitive@1.1.0:
resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
engines: {node: '>= 0.4'}
+ unconfig-core@7.5.0:
+ resolution: {integrity: sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w==}
+
undici-types@7.19.2:
resolution: {integrity: sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==}
@@ -11829,6 +12017,10 @@ 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'}
@@ -11870,6 +12062,9 @@ 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'}
@@ -11920,6 +12115,7 @@ packages:
uuid@8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
+ deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028).
hasBin: true
v8-to-istanbul@9.3.0:
@@ -12036,9 +12232,9 @@ packages:
vlq@1.0.1:
resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==}
- w3c-xmlserializer@5.0.0:
- resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
- engines: {node: '>=18'}
+ w3c-xmlserializer@4.0.0:
+ resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==}
+ engines: {node: '>=14'}
walker@1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
@@ -12136,28 +12332,28 @@ packages:
resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
engines: {node: '>=0.8.0'}
- whatwg-encoding@3.1.1:
- resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
- engines: {node: '>=18'}
+ whatwg-encoding@2.0.0:
+ resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
+ engines: {node: '>=12'}
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@4.0.0:
- resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
- engines: {node: '>=18'}
+ whatwg-mimetype@3.0.0:
+ resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==}
+ engines: {node: '>=12'}
- whatwg-url-minimum@0.1.1:
- resolution: {integrity: sha512-u2FNVjFVFZhdjb502KzXy1gKn1mEisQRJssmSJT8CPhZdZa0AP6VCbWlXERKyGu0l09t0k50FiDiralpGhBxgA==}
+ whatwg-url-minimum@0.1.2:
+ resolution: {integrity: sha512-XPEm0XFQWNVG292lII1PrRRJl3sItrs7CettZ4ncYxuDVpLyy+NwlGyut2hXI0JswcJUxeCH+CyOJK0ZzAXD6A==}
whatwg-url-without-unicode@8.0.0-3:
resolution: {integrity: sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==}
engines: {node: '>=10'}
- whatwg-url@14.2.0:
- resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==}
- engines: {node: '>=18'}
+ whatwg-url@11.0.0:
+ resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
+ engines: {node: '>=12'}
whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
@@ -12270,9 +12466,9 @@ packages:
resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==}
hasBin: true
- xml-name-validator@5.0.0:
- resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
- engines: {node: '>=18'}
+ xml-name-validator@4.0.0:
+ resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
+ engines: {node: '>=12'}
xml2js@0.6.0:
resolution: {integrity: sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==}
@@ -12481,14 +12677,6 @@ 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
@@ -12533,6 +12721,15 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
+ '@babel/generator@8.0.0-rc.4':
+ dependencies:
+ '@babel/parser': 8.0.0-rc.4
+ '@babel/types': 8.0.0-rc.4
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
+ '@types/jsesc': 2.5.1
+ jsesc: 3.1.0
+
'@babel/helper-annotate-as-pure@7.27.3':
dependencies:
'@babel/types': 7.29.0
@@ -12634,8 +12831,12 @@ snapshots:
'@babel/helper-string-parser@7.27.1': {}
+ '@babel/helper-string-parser@8.0.0-rc.4': {}
+
'@babel/helper-validator-identifier@7.28.5': {}
+ '@babel/helper-validator-identifier@8.0.0-rc.4': {}
+
'@babel/helper-validator-option@7.27.1': {}
'@babel/helper-wrap-function@7.28.6':
@@ -12655,6 +12856,10 @@ snapshots:
dependencies:
'@babel/types': 7.29.0
+ '@babel/parser@8.0.0-rc.4':
+ dependencies:
+ '@babel/types': 8.0.0-rc.4
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
@@ -12857,14 +13062,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.29.0)':
- dependencies:
- '@babel/core': 7.29.0
- '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.0)
- '@babel/helper-plugin-utils': 7.28.6
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-class-properties@7.28.6(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
@@ -12881,18 +13078,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.28.4(@babel/core@7.29.0)':
- dependencies:
- '@babel/core': 7.29.0
- '@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-compilation-targets': 7.28.6
- '@babel/helper-globals': 7.28.0
- '@babel/helper-plugin-utils': 7.28.6
- '@babel/helper-replace-supers': 7.28.6(@babel/core@7.29.0)
- '@babel/traverse': 7.29.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-classes@7.28.6(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
@@ -13047,11 +13232,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.29.0)':
- dependencies:
- '@babel/core': 7.29.0
- '@babel/helper-plugin-utils': 7.28.6
-
'@babel/plugin-transform-nullish-coalescing-operator@7.28.6(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
@@ -13086,14 +13266,6 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.29.0)':
- dependencies:
- '@babel/core': 7.29.0
- '@babel/helper-plugin-utils': 7.28.6
- '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-optional-chaining@7.28.6(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
@@ -13358,17 +13530,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.27.1(@babel/core@7.29.0)':
- dependencies:
- '@babel/core': 7.29.0
- '@babel/helper-plugin-utils': 7.28.6
- '@babel/helper-validator-option': 7.27.1
- '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-modules-commonjs': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0)
- transitivePeerDependencies:
- - supports-color
-
'@babel/preset-typescript@7.28.5(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
@@ -13405,6 +13566,11 @@ snapshots:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.28.5
+ '@babel/types@8.0.0-rc.4':
+ dependencies:
+ '@babel/helper-string-parser': 8.0.0-rc.4
+ '@babel/helper-validator-identifier': 8.0.0-rc.4
+
'@bcoe/v8-coverage@0.2.3': {}
'@callstack/repack-dev-server@5.2.5':
@@ -13426,7 +13592,7 @@ snapshots:
- supports-color
- utf-8-validate
- '@callstack/repack@5.2.5(@babel/core@7.29.0)(@rspack/core@2.0.1(@swc/helpers@0.5.21))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(tslib@2.8.1)(webpack@5.106.1)':
+ '@callstack/repack@5.2.5(@babel/core@7.29.0)(@rspack/core@2.0.1(@swc/helpers@0.5.21))(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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(tslib@2.8.1)(webpack@5.106.1)':
dependencies:
'@callstack/repack-dev-server': 5.2.5
'@discoveryjs/json-ext': 0.5.7
@@ -13445,7 +13611,7 @@ snapshots:
memfs: 4.57.1(tslib@2.8.1)
mime-types: 2.1.35
pretty-format: 26.6.2
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3)
react-refresh: 0.14.2
schema-utils: 4.3.3
semver: 7.7.4
@@ -13937,37 +14103,37 @@ snapshots:
dependencies:
postcss: 8.5.9
- '@dannyhw/rozenite-storybook@0.0.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@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:
- '@rozenite/plugin-bridge': 1.7.0(react@19.2.0)
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ '@rozenite/plugin-bridge': 1.7.0(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)
'@discoveryjs/json-ext@0.5.7': {}
- '@docsearch/core@4.6.2(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@docsearch/core@4.6.2(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
optionalDependencies:
'@types/react': 19.2.14
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
'@docsearch/css@4.6.2': {}
- '@docsearch/react@4.6.2(@algolia/client-search@5.50.1)(@types/react@19.2.14)(algoliasearch@5.50.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(search-insights@2.17.3)':
+ '@docsearch/react@4.6.2(@algolia/client-search@5.50.1)(@types/react@19.2.14)(algoliasearch@5.50.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(search-insights@2.17.3)':
dependencies:
'@algolia/autocomplete-core': 1.19.2(@algolia/client-search@5.50.1)(algoliasearch@5.50.1)(search-insights@2.17.3)
- '@docsearch/core': 4.6.2(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docsearch/core': 4.6.2(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
'@docsearch/css': 4.6.2
optionalDependencies:
'@types/react': 19.2.14
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@docusaurus/babel@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@docusaurus/babel@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
'@babel/core': 7.29.0
'@babel/generator': 7.29.1
@@ -13979,7 +14145,7 @@ snapshots:
'@babel/runtime': 7.29.2
'@babel/traverse': 7.29.0
'@docusaurus/logger': 3.10.0
- '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
babel-plugin-dynamic-import-node: 2.3.3
fs-extra: 11.3.4
tslib: 2.8.1
@@ -13992,14 +14158,14 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/bundler@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ '@docusaurus/bundler@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)':
dependencies:
'@babel/core': 7.29.0
- '@docusaurus/babel': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/babel': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
'@docusaurus/cssnano-preset': 3.10.0
'@docusaurus/logger': 3.10.0
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
babel-loader: 9.2.1(@babel/core@7.29.0)(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21)))
clean-css: 5.3.3
copy-webpack-plugin: 11.0.0(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21)))
@@ -14011,7 +14177,7 @@ snapshots:
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@5.9.3)(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21)))
+ 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)
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
@@ -14019,7 +14185,7 @@ snapshots:
webpack: 5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))
webpackbar: 6.0.1(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21)))
optionalDependencies:
- '@docusaurus/faster': 3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21)
+ '@docusaurus/faster': 3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21)
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -14035,16 +14201,16 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/core@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ '@docusaurus/core@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)':
dependencies:
- '@docusaurus/babel': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/bundler': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ '@docusaurus/babel': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/bundler': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
'@docusaurus/logger': 3.10.0
- '@docusaurus/mdx-loader': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@mdx-js/react': 3.1.1(@types/react@19.2.14)(react@19.2.0)
+ '@docusaurus/mdx-loader': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@mdx-js/react': 3.1.1(@types/react@19.2.14)(react@19.2.3)
boxen: 6.2.1
chalk: 4.1.2
chokidar: 3.6.0
@@ -14065,14 +14231,14 @@ snapshots:
open: 8.4.2
p-map: 4.0.0
prompts: 2.4.2
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- react-helmet-async: '@slorber/react-helmet-async@1.3.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)'
- react-loadable: '@docusaurus/react-loadable@6.0.0(react@19.2.0)'
- react-loadable-ssr-addon-v5-slorber: 1.0.3(@docusaurus/react-loadable@6.0.0(react@19.2.0))(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21)))
- react-router: 5.3.4(react@19.2.0)
- react-router-config: 5.1.1(react-router@5.3.4(react@19.2.0))(react@19.2.0)
- react-router-dom: 5.3.4(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
+ react-helmet-async: '@slorber/react-helmet-async@1.3.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3)'
+ react-loadable: '@docusaurus/react-loadable@6.0.0(react@19.2.3)'
+ react-loadable-ssr-addon-v5-slorber: 1.0.3(@docusaurus/react-loadable@6.0.0(react@19.2.3))(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21)))
+ react-router: 5.3.4(react@19.2.3)
+ react-router-config: 5.1.1(react-router@5.3.4(react@19.2.3))(react@19.2.3)
+ react-router-dom: 5.3.4(react@19.2.3)
semver: 7.7.4
serve-handler: 6.1.7
tinypool: 1.1.1
@@ -14083,7 +14249,7 @@ snapshots:
webpack-dev-server: 5.2.3(tslib@2.8.1)(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21)))
webpack-merge: 6.0.1
optionalDependencies:
- '@docusaurus/faster': 3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21)
+ '@docusaurus/faster': 3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21)
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -14107,18 +14273,18 @@ snapshots:
postcss-sort-media-queries: 5.2.0(postcss@8.5.9)
tslib: 2.8.1
- '@docusaurus/eslint-plugin@3.10.0(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)':
+ '@docusaurus/eslint-plugin@3.10.0(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)':
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
eslint: 9.39.4(jiti@1.21.7)
tslib: 2.8.1
transitivePeerDependencies:
- supports-color
- typescript
- '@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21)':
+ '@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21)':
dependencies:
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
'@rspack/core': 1.7.11(@swc/helpers@0.5.21)
'@swc/core': 1.15.24(@swc/helpers@0.5.21)
'@swc/html': 1.15.24
@@ -14139,11 +14305,11 @@ snapshots:
chalk: 4.1.2
tslib: 2.8.1
- '@docusaurus/mdx-loader@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@docusaurus/mdx-loader@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
'@docusaurus/logger': 3.10.0
- '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
'@mdx-js/mdx': 3.1.1
'@slorber/remark-comment': 1.0.0
escape-html: 1.0.3
@@ -14153,8 +14319,8 @@ snapshots:
image-size: 2.0.2
mdast-util-mdx: 3.0.0
mdast-util-to-string: 4.0.0
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
rehype-raw: 7.0.0
remark-directive: 3.0.1
remark-emoji: 4.0.1
@@ -14174,17 +14340,17 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/module-type-aliases@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@docusaurus/module-type-aliases@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
'@types/history': 4.7.11
'@types/react': 19.2.14
'@types/react-router-config': 5.0.11
'@types/react-router-dom': 5.3.3
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- react-helmet-async: '@slorber/react-helmet-async@1.3.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)'
- react-loadable: '@docusaurus/react-loadable@6.0.0(react@19.2.0)'
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
+ react-helmet-async: '@slorber/react-helmet-async@1.3.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3)'
+ react-loadable: '@docusaurus/react-loadable@6.0.0(react@19.2.3)'
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -14192,24 +14358,24 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/plugin-content-blog@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ '@docusaurus/plugin-content-blog@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)':
dependencies:
- '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
'@docusaurus/logger': 3.10.0
- '@docusaurus/mdx-loader': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/plugin-content-docs': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/theme-common': 3.10.0(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/mdx-loader': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/plugin-content-docs': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/theme-common': 3.10.0(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
cheerio: 1.0.0-rc.12
combine-promises: 1.2.0
feed: 4.2.2
fs-extra: 11.3.4
lodash: 4.18.1
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
schema-dts: 1.1.5
srcset: 4.0.0
tslib: 2.8.1
@@ -14234,24 +14400,24 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ '@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)':
dependencies:
- '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
'@docusaurus/logger': 3.10.0
- '@docusaurus/mdx-loader': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/module-type-aliases': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/theme-common': 3.10.0(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/mdx-loader': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/module-type-aliases': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/theme-common': 3.10.0(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
'@types/react-router-config': 5.0.11
combine-promises: 1.2.0
fs-extra: 11.3.4
js-yaml: 4.1.1
lodash: 4.18.1
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
schema-dts: 1.1.5
tslib: 2.8.1
utility-types: 3.11.0
@@ -14274,16 +14440,16 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@docusaurus/plugin-content-pages@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ '@docusaurus/plugin-content-pages@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)':
dependencies:
- '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/mdx-loader': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/mdx-loader': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
fs-extra: 11.3.4
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
tslib: 2.8.1
webpack: 5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))
transitivePeerDependencies:
@@ -14304,12 +14470,12 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@docusaurus/plugin-css-cascade-layers@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ '@docusaurus/plugin-css-cascade-layers@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)':
dependencies:
- '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
tslib: 2.8.1
transitivePeerDependencies:
- '@docusaurus/faster'
@@ -14331,15 +14497,15 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@docusaurus/plugin-debug@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ '@docusaurus/plugin-debug@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)':
dependencies:
- '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
fs-extra: 11.3.4
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- react-json-view-lite: 2.5.0(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
+ react-json-view-lite: 2.5.0(react@19.2.3)
tslib: 2.8.1
transitivePeerDependencies:
- '@docusaurus/faster'
@@ -14359,13 +14525,13 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@docusaurus/plugin-google-analytics@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ '@docusaurus/plugin-google-analytics@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)':
dependencies:
- '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
tslib: 2.8.1
transitivePeerDependencies:
- '@docusaurus/faster'
@@ -14385,14 +14551,14 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@docusaurus/plugin-google-gtag@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ '@docusaurus/plugin-google-gtag@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)':
dependencies:
- '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
'@types/gtag.js': 0.0.20
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
tslib: 2.8.1
transitivePeerDependencies:
- '@docusaurus/faster'
@@ -14412,13 +14578,13 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@docusaurus/plugin-google-tag-manager@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ '@docusaurus/plugin-google-tag-manager@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)':
dependencies:
- '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
tslib: 2.8.1
transitivePeerDependencies:
- '@docusaurus/faster'
@@ -14438,17 +14604,17 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@docusaurus/plugin-sitemap@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ '@docusaurus/plugin-sitemap@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)':
dependencies:
- '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
'@docusaurus/logger': 3.10.0
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
fs-extra: 11.3.4
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
sitemap: 7.1.3
tslib: 2.8.1
transitivePeerDependencies:
@@ -14469,16 +14635,16 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@docusaurus/plugin-svgr@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ '@docusaurus/plugin-svgr@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)':
dependencies:
- '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@svgr/core': 8.1.0(typescript@5.9.3)
- '@svgr/webpack': 8.1.0(typescript@5.9.3)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@svgr/core': 8.1.0(typescript@6.0.3)
+ '@svgr/webpack': 8.1.0(typescript@6.0.3)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
tslib: 2.8.1
webpack: 5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))
transitivePeerDependencies:
@@ -14499,25 +14665,25 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@docusaurus/preset-classic@3.10.0(@algolia/client-search@5.50.1)(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(search-insights@2.17.3)(typescript@5.9.3)':
- dependencies:
- '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/plugin-content-blog': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/plugin-content-docs': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/plugin-content-pages': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/plugin-css-cascade-layers': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/plugin-debug': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/plugin-google-analytics': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/plugin-google-gtag': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/plugin-google-tag-manager': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/plugin-sitemap': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/plugin-svgr': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/theme-classic': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/theme-common': 3.10.0(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/theme-search-algolia': 3.10.0(@algolia/client-search@5.50.1)(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(search-insights@2.17.3)(typescript@5.9.3)
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ '@docusaurus/preset-classic@3.10.0(@algolia/client-search@5.50.1)(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(search-insights@2.17.3)(typescript@6.0.3)':
+ dependencies:
+ '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/plugin-content-blog': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/plugin-content-docs': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/plugin-content-pages': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/plugin-css-cascade-layers': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/plugin-debug': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/plugin-google-analytics': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/plugin-google-gtag': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/plugin-google-tag-manager': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/plugin-sitemap': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/plugin-svgr': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/theme-classic': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/theme-common': 3.10.0(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/theme-search-algolia': 3.10.0(@algolia/client-search@5.50.1)(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(search-insights@2.17.3)(typescript@6.0.3)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
transitivePeerDependencies:
- '@algolia/client-search'
- '@docusaurus/faster'
@@ -14539,38 +14705,38 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@docusaurus/react-loadable@6.0.0(react@19.2.0)':
+ '@docusaurus/react-loadable@6.0.0(react@19.2.3)':
dependencies:
'@types/react': 19.2.14
- react: 19.2.0
+ react: 19.2.3
- '@docusaurus/theme-classic@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ '@docusaurus/theme-classic@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)':
dependencies:
- '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
'@docusaurus/logger': 3.10.0
- '@docusaurus/mdx-loader': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/module-type-aliases': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/plugin-content-blog': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/plugin-content-docs': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/plugin-content-pages': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/theme-common': 3.10.0(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/mdx-loader': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/module-type-aliases': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/plugin-content-blog': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/plugin-content-docs': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/plugin-content-pages': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/theme-common': 3.10.0(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
'@docusaurus/theme-translations': 3.10.0
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@mdx-js/react': 3.1.1(@types/react@19.2.14)(react@19.2.0)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@mdx-js/react': 3.1.1(@types/react@19.2.14)(react@19.2.3)
clsx: 2.1.1
copy-text-to-clipboard: 3.2.2
infima: 0.2.0-alpha.45
lodash: 4.18.1
nprogress: 0.2.0
postcss: 8.5.9
- prism-react-renderer: 2.4.1(react@19.2.0)
+ prism-react-renderer: 2.4.1(react@19.2.3)
prismjs: 1.30.0
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- react-router-dom: 5.3.4(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
+ react-router-dom: 5.3.4(react@19.2.3)
rtlcss: 4.3.0
tslib: 2.8.1
utility-types: 3.11.0
@@ -14592,21 +14758,21 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@docusaurus/theme-common@3.10.0(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@docusaurus/theme-common@3.10.0(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
- '@docusaurus/mdx-loader': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/module-type-aliases': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/plugin-content-docs': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/mdx-loader': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/module-type-aliases': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/plugin-content-docs': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
'@types/history': 4.7.11
'@types/react': 19.2.14
'@types/react-router-config': 5.0.11
clsx: 2.1.1
parse-numeric-range: 1.3.0
- prism-react-renderer: 2.4.1(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ prism-react-renderer: 2.4.1(react@19.2.3)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
tslib: 2.8.1
utility-types: 3.11.0
transitivePeerDependencies:
@@ -14616,25 +14782,25 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/theme-search-algolia@3.10.0(@algolia/client-search@5.50.1)(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(search-insights@2.17.3)(typescript@5.9.3)':
+ '@docusaurus/theme-search-algolia@3.10.0(@algolia/client-search@5.50.1)(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(search-insights@2.17.3)(typescript@6.0.3)':
dependencies:
'@algolia/autocomplete-core': 1.19.8(@algolia/client-search@5.50.1)(algoliasearch@5.50.1)(search-insights@2.17.3)
- '@docsearch/react': 4.6.2(@algolia/client-search@5.50.1)(@types/react@19.2.14)(algoliasearch@5.50.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(search-insights@2.17.3)
- '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ '@docsearch/react': 4.6.2(@algolia/client-search@5.50.1)(@types/react@19.2.14)(algoliasearch@5.50.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(search-insights@2.17.3)
+ '@docusaurus/core': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
'@docusaurus/logger': 3.10.0
- '@docusaurus/plugin-content-docs': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@docusaurus/theme-common': 3.10.0(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.9.3))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/plugin-content-docs': 3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
+ '@docusaurus/theme-common': 3.10.0(@docusaurus/plugin-content-docs@3.10.0(@docusaurus/faster@3.10.0(@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(@swc/helpers@0.5.21))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3))(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(typescript@6.0.3))(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
'@docusaurus/theme-translations': 3.10.0
- '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-validation': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
algoliasearch: 5.50.1
algoliasearch-helper: 3.28.1(algoliasearch@5.50.1)
clsx: 2.1.1
eta: 2.2.0
fs-extra: 11.3.4
lodash: 4.18.1
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
tslib: 2.8.1
utility-types: 3.11.0
transitivePeerDependencies:
@@ -14665,7 +14831,7 @@ snapshots:
'@docusaurus/tsconfig@3.10.0': {}
- '@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@docusaurus/types@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
'@mdx-js/mdx': 3.1.1
'@types/history': 4.7.11
@@ -14673,9 +14839,9 @@ snapshots:
'@types/react': 19.2.14
commander: 5.1.0
joi: 17.13.3
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- react-helmet-async: '@slorber/react-helmet-async@1.3.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)'
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
+ react-helmet-async: '@slorber/react-helmet-async@1.3.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3)'
utility-types: 3.11.0
webpack: 5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))
webpack-merge: 5.10.0
@@ -14686,9 +14852,9 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/utils-common@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@docusaurus/utils-common@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
tslib: 2.8.1
transitivePeerDependencies:
- '@swc/core'
@@ -14699,11 +14865,11 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/utils-validation@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@docusaurus/utils-validation@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
'@docusaurus/logger': 3.10.0
- '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/utils': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
fs-extra: 11.3.4
joi: 17.13.3
js-yaml: 4.1.1
@@ -14718,11 +14884,11 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/utils@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@docusaurus/utils@3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
'@docusaurus/logger': 3.10.0
- '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@docusaurus/types': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@docusaurus/utils-common': 3.10.0(@swc/core@1.15.24(@swc/helpers@0.5.21))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
escape-string-regexp: 4.0.0
execa: 5.1.1
file-loader: 6.2.0(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21)))
@@ -14809,10 +14975,10 @@ snapshots:
'@emotion/memoize@0.9.0': {}
- '@emotion/native@11.11.0(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.2))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@emotion/native@11.11.0(@emotion/react@11.14.0(@types/react@19.2.14)(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))(react@19.2.0)':
dependencies:
'@emotion/primitives-core': 11.13.2(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.2))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(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)
transitivePeerDependencies:
- '@emotion/react'
- react
@@ -14987,29 +15153,31 @@ snapshots:
'@expo-google-fonts/material-symbols@0.4.34': {}
- '@expo/cli@55.0.23(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-constants@55.0.15)(expo-font@55.0.6)(expo-router@55.0.13)(expo@55.0.14)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ '@expo/cli@56.1.0(@expo/dom-webview@56.0.4)(@expo/metro-runtime@56.0.5)(expo-constants@56.0.6)(expo-font@56.0.3)(expo-router@56.1.1)(expo@56.0.0-preview.7)(react-dom@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)':
dependencies:
'@expo/code-signing-certificates': 0.0.6
- '@expo/config': 55.0.14(typescript@5.9.3)
- '@expo/config-plugins': 55.0.8
+ '@expo/config': 56.0.3(typescript@6.0.3)
+ '@expo/config-plugins': 56.0.3
'@expo/devcert': 1.2.1
- '@expo/env': 2.1.1
- '@expo/image-utils': 0.8.13(typescript@5.9.3)
- '@expo/json-file': 10.0.13
- '@expo/log-box': 55.0.10(@expo/dom-webview@55.0.5)(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@expo/metro': 55.0.0
- '@expo/metro-config': 55.0.15(expo@55.0.14)(typescript@5.9.3)
- '@expo/osascript': 2.4.2
- '@expo/package-manager': 1.10.4
- '@expo/plist': 0.5.2
- '@expo/prebuild-config': 55.0.14(expo@55.0.14)(typescript@5.9.3)
- '@expo/require-utils': 55.0.4(typescript@5.9.3)
- '@expo/router-server': 55.0.14(@expo/metro-runtime@55.0.9)(expo-constants@55.0.15)(expo-font@55.0.6)(expo-router@55.0.13)(expo-server@55.0.7)(expo@55.0.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@expo/schema-utils': 55.0.3
+ '@expo/env': 2.2.1
+ '@expo/image-utils': 0.9.2(typescript@6.0.3)
+ '@expo/inline-modules': 0.0.4
+ '@expo/json-file': 10.1.1
+ '@expo/log-box': 56.0.6(@expo/dom-webview@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)
+ '@expo/metro': 56.0.0
+ '@expo/metro-config': 56.0.5(expo@56.0.0-preview.7)(typescript@6.0.3)
+ '@expo/metro-file-map': 56.0.0
+ '@expo/osascript': 2.5.1
+ '@expo/package-manager': 1.11.1
+ '@expo/plist': 0.6.1
+ '@expo/prebuild-config': 56.0.4(typescript@6.0.3)
+ '@expo/require-utils': 56.1.0(typescript@6.0.3)
+ '@expo/router-server': 56.0.5(@expo/metro-runtime@56.0.5)(expo-constants@56.0.6)(expo-font@56.0.3)(expo-router@56.1.1)(expo-server@56.0.1)(expo@56.0.0-preview.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@expo/schema-utils': 56.0.1
'@expo/spawn-async': 1.7.2
'@expo/ws-tunnel': 1.0.6
- '@expo/xcpretty': 4.4.3
- '@react-native/dev-middleware': 0.83.4
+ '@expo/xcpretty': 4.4.4
+ '@react-native/dev-middleware': 0.85.3
accepts: 1.3.8
arg: 5.0.2
better-opn: 3.0.2
@@ -15021,13 +15189,13 @@ snapshots:
connect: 3.7.0
debug: 4.4.3
dnssd-advertise: 1.1.4
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-server: 55.0.7
+ 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)
+ expo-server: 56.0.1
fetch-nodeshim: 0.4.10
getenv: 2.0.0
glob: 13.0.6
lan-network: 0.2.1
- multitars: 0.2.5
+ multitars: 1.0.0
node-forge: 1.4.0
npm-package-arg: 11.0.3
ora: 3.4.0
@@ -15039,7 +15207,6 @@ snapshots:
semver: 7.7.4
send: 0.19.2
slugify: 1.6.9
- source-map-support: 0.5.21
stacktrace-parser: 0.1.11
structured-headers: 0.4.1
terminal-link: 2.1.1
@@ -15048,8 +15215,8 @@ snapshots:
ws: 8.20.0
zod: 3.25.76
optionalDependencies:
- expo-router: 55.0.13(e7e6bff1cf0beac0c272efc28d8685ac)
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ expo-router: 56.1.1(f97a815c8b3e5c15c283c5191555858a)
+ 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)
transitivePeerDependencies:
- '@expo/dom-webview'
- '@expo/metro-runtime'
@@ -15063,128 +15230,36 @@ snapshots:
- typescript
- utf-8-validate
- '@expo/cli@55.0.27(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-constants@55.0.15)(expo-font@55.0.6)(expo-router@55.0.13)(expo@55.0.19)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ '@expo/code-signing-certificates@0.0.6':
dependencies:
- '@expo/code-signing-certificates': 0.0.6
- '@expo/config': 55.0.15(typescript@5.9.3)
- '@expo/config-plugins': 55.0.8
- '@expo/devcert': 1.2.1
- '@expo/env': 2.1.1
- '@expo/image-utils': 0.8.13(typescript@5.9.3)
- '@expo/json-file': 10.0.13
- '@expo/log-box': 55.0.11(@expo/dom-webview@55.0.5)(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@expo/metro': 55.1.1
- '@expo/metro-config': 55.0.18(expo@55.0.19)(typescript@5.9.3)
- '@expo/osascript': 2.4.2
- '@expo/package-manager': 1.10.4
- '@expo/plist': 0.5.2
- '@expo/prebuild-config': 55.0.16(expo@55.0.19)(typescript@5.9.3)
- '@expo/require-utils': 55.0.4(typescript@5.9.3)
- '@expo/router-server': 55.0.15(@expo/metro-runtime@55.0.9)(expo-constants@55.0.15)(expo-font@55.0.6)(expo-router@55.0.13)(expo-server@55.0.8)(expo@55.0.19)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@expo/schema-utils': 55.0.3
- '@expo/spawn-async': 1.7.2
- '@expo/ws-tunnel': 1.0.6
- '@expo/xcpretty': 4.4.3
- '@react-native/dev-middleware': 0.83.6
- accepts: 1.3.8
- arg: 5.0.2
- better-opn: 3.0.2
- bplist-creator: 0.1.0
- bplist-parser: 0.3.2
+ node-forge: 1.4.0
+
+ '@expo/config-plugins@56.0.3':
+ dependencies:
+ '@expo/config-types': 56.0.2
+ '@expo/json-file': 10.1.1
+ '@expo/plist': 0.6.1
+ '@expo/sdk-runtime-versions': 1.0.0
chalk: 4.1.2
- ci-info: 3.9.0
- compression: 1.8.1
- connect: 3.7.0
debug: 4.4.3
- dnssd-advertise: 1.1.4
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-server: 55.0.8
- fetch-nodeshim: 0.4.10
getenv: 2.0.0
glob: 13.0.6
- lan-network: 0.2.1
- multitars: 1.0.0
- node-forge: 1.4.0
- npm-package-arg: 11.0.3
- ora: 3.4.0
- picomatch: 4.0.4
- pretty-format: 29.7.0
- progress: 2.0.3
- prompts: 2.4.2
resolve-from: 5.0.0
semver: 7.7.4
- send: 0.19.2
slugify: 1.6.9
- source-map-support: 0.5.21
- stacktrace-parser: 0.1.11
- structured-headers: 0.4.1
- terminal-link: 2.1.1
- toqr: 0.1.1
- wrap-ansi: 7.0.0
- ws: 8.20.0
- zod: 3.25.76
- optionalDependencies:
- expo-router: 55.0.13(45d51f50f8a415571faffbf3107b4078)
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ xcode: 3.0.1
+ xml2js: 0.6.0
transitivePeerDependencies:
- - '@expo/dom-webview'
- - '@expo/metro-runtime'
- - bufferutil
- - expo-constants
- - expo-font
- - react
- - react-dom
- - react-server-dom-webpack
- supports-color
- - typescript
- - utf-8-validate
- '@expo/code-signing-certificates@0.0.6':
- dependencies:
- node-forge: 1.4.0
-
- '@expo/config-plugins@55.0.8':
- dependencies:
- '@expo/config-types': 55.0.5
- '@expo/json-file': 10.0.13
- '@expo/plist': 0.5.2
- '@expo/sdk-runtime-versions': 1.0.0
- chalk: 4.1.2
- debug: 4.4.3
- getenv: 2.0.0
- glob: 13.0.6
- resolve-from: 5.0.0
- semver: 7.7.4
- slugify: 1.6.9
- xcode: 3.0.1
- xml2js: 0.6.0
- transitivePeerDependencies:
- - supports-color
-
- '@expo/config-types@55.0.5': {}
-
- '@expo/config@55.0.14(typescript@5.9.3)':
- dependencies:
- '@expo/config-plugins': 55.0.8
- '@expo/config-types': 55.0.5
- '@expo/json-file': 10.0.13
- '@expo/require-utils': 55.0.4(typescript@5.9.3)
- deepmerge: 4.3.1
- getenv: 2.0.0
- glob: 13.0.6
- resolve-workspace-root: 2.0.1
- semver: 7.7.4
- slugify: 1.6.9
- transitivePeerDependencies:
- - supports-color
- - typescript
+ '@expo/config-types@56.0.2': {}
- '@expo/config@55.0.15(typescript@5.9.3)':
+ '@expo/config@56.0.3(typescript@6.0.3)':
dependencies:
- '@expo/config-plugins': 55.0.8
- '@expo/config-types': 55.0.5
- '@expo/json-file': 10.0.13
- '@expo/require-utils': 55.0.4(typescript@5.9.3)
+ '@expo/config-plugins': 56.0.3
+ '@expo/config-types': 56.0.2
+ '@expo/json-file': 10.1.1
+ '@expo/require-utils': 56.1.0(typescript@6.0.3)
deepmerge: 4.3.1
getenv: 2.0.0
glob: 13.0.6
@@ -15202,26 +15277,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@expo/devtools@55.0.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@expo/devtools@56.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:
chalk: 4.1.2
optionalDependencies:
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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)
- '@expo/dom-webview@55.0.5(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@expo/dom-webview@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)':
dependencies:
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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)
+ 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)
- '@expo/dom-webview@55.0.5(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
- dependencies:
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
-
- '@expo/env@2.1.1':
+ '@expo/env@2.2.1':
dependencies:
chalk: 4.1.2
debug: 4.4.3
@@ -15229,9 +15298,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@expo/fingerprint@0.16.6':
+ '@expo/expo-modules-macros-plugin@0.0.8': {}
+
+ '@expo/fingerprint@0.17.4':
dependencies:
- '@expo/env': 2.1.1
+ '@expo/env': 2.2.1
'@expo/spawn-async': 1.7.2
arg: 5.0.2
chalk: 4.1.2
@@ -15245,9 +15316,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@expo/image-utils@0.8.13(typescript@5.9.3)':
+ '@expo/image-utils@0.9.2(typescript@6.0.3)':
dependencies:
- '@expo/require-utils': 55.0.4(typescript@5.9.3)
+ '@expo/require-utils': 56.1.0(typescript@6.0.3)
'@expo/spawn-async': 1.7.2
chalk: 4.1.2
getenv: 2.0.0
@@ -15258,288 +15329,169 @@ snapshots:
- supports-color
- typescript
- '@expo/json-file@10.0.13':
- dependencies:
- '@babel/code-frame': 7.29.0
- json5: 2.2.3
-
- '@expo/local-build-cache-provider@55.0.10(typescript@5.9.3)':
+ '@expo/inline-modules@0.0.4':
dependencies:
- '@expo/config': 55.0.14(typescript@5.9.3)
- chalk: 4.1.2
+ '@expo/config-plugins': 56.0.3
transitivePeerDependencies:
- supports-color
- - typescript
- '@expo/local-build-cache-provider@55.0.11(typescript@5.9.3)':
+ '@expo/json-file@10.1.1':
dependencies:
- '@expo/config': 55.0.15(typescript@5.9.3)
+ '@babel/code-frame': 7.29.0
+ json5: 2.2.3
+
+ '@expo/local-build-cache-provider@56.0.2(typescript@6.0.3)':
+ dependencies:
+ '@expo/config': 56.0.3(typescript@6.0.3)
chalk: 4.1.2
transitivePeerDependencies:
- supports-color
- typescript
- '@expo/log-box@55.0.10(@expo/dom-webview@55.0.5)(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@expo/log-box@56.0.6(@expo/dom-webview@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)':
dependencies:
- '@expo/dom-webview': 55.0.5(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@expo/dom-webview': 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)
anser: 1.4.10
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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)
+ 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)
stacktrace-parser: 0.1.11
- '@expo/log-box@55.0.10(@expo/dom-webview@55.0.5)(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@expo/dom-webview': 55.0.5(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- anser: 1.4.10
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- stacktrace-parser: 0.1.11
-
- '@expo/log-box@55.0.11(@expo/dom-webview@55.0.5)(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@expo/dom-webview': 55.0.5(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- anser: 1.4.10
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- stacktrace-parser: 0.1.11
- optional: true
-
- '@expo/log-box@55.0.11(@expo/dom-webview@55.0.5)(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@expo/dom-webview': 55.0.5(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- anser: 1.4.10
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- stacktrace-parser: 0.1.11
-
- '@expo/metro-config@55.0.15(expo@55.0.14)(typescript@5.9.3)':
+ '@expo/metro-config@56.0.5(expo@56.0.0-preview.7)(typescript@6.0.3)':
dependencies:
'@babel/code-frame': 7.29.0
'@babel/core': 7.29.0
'@babel/generator': 7.29.1
- '@expo/config': 55.0.14(typescript@5.9.3)
- '@expo/env': 2.1.1
- '@expo/json-file': 10.0.13
- '@expo/metro': 55.0.0
+ '@expo/config': 56.0.3(typescript@6.0.3)
+ '@expo/env': 2.2.1
+ '@expo/json-file': 10.1.1
+ '@expo/metro': 56.0.0
'@expo/spawn-async': 1.7.2
browserslist: 4.28.2
chalk: 4.1.2
debug: 4.4.3
getenv: 2.0.0
glob: 13.0.6
- hermes-parser: 0.32.1
+ hermes-parser: 0.33.3
jsc-safe-url: 0.2.4
lightningcss: 1.32.0
picomatch: 4.0.4
postcss: 8.4.49
resolve-from: 5.0.0
optionalDependencies:
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ 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)
transitivePeerDependencies:
- bufferutil
- supports-color
- typescript
- utf-8-validate
- '@expo/metro-config@55.0.18(expo@55.0.19)(typescript@5.9.3)':
+ '@expo/metro-file-map@56.0.0':
dependencies:
- '@babel/code-frame': 7.29.0
- '@babel/core': 7.29.0
- '@babel/generator': 7.29.1
- '@expo/config': 55.0.15(typescript@5.9.3)
- '@expo/env': 2.1.1
- '@expo/json-file': 10.0.13
- '@expo/metro': 55.1.1
- '@expo/spawn-async': 1.7.2
- browserslist: 4.28.2
- chalk: 4.1.2
debug: 4.4.3
- getenv: 2.0.0
- glob: 13.0.6
- hermes-parser: 0.32.1
- jsc-safe-url: 0.2.4
- lightningcss: 1.32.0
- picomatch: 4.0.4
- postcss: 8.4.49
- resolve-from: 5.0.0
- optionalDependencies:
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ fb-watchman: 2.0.2
+ invariant: 2.2.4
+ jest-worker: 29.7.0
+ micromatch: 4.0.8
+ walker: 1.0.8
transitivePeerDependencies:
- - bufferutil
- supports-color
- - typescript
- - utf-8-validate
- '@expo/metro-runtime@55.0.9(@expo/dom-webview@55.0.5)(expo@55.0.14)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@expo/metro-runtime@56.0.5(@expo/log-box@56.0.6)(expo@56.0.0-preview.7)(react-dom@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)':
dependencies:
- '@expo/log-box': 55.0.10(@expo/dom-webview@55.0.5)(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@expo/log-box': 56.0.6(@expo/dom-webview@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)
anser: 1.4.10
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ 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)
pretty-format: 29.7.0
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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)
stacktrace-parser: 0.1.11
whatwg-fetch: 3.6.20
optionalDependencies:
- react-dom: 19.2.0(react@19.2.0)
- transitivePeerDependencies:
- - '@expo/dom-webview'
-
- '@expo/metro-runtime@55.0.9(@expo/dom-webview@55.0.5)(expo@55.0.19)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@expo/log-box': 55.0.10(@expo/dom-webview@55.0.5)(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- anser: 1.4.10
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- pretty-format: 29.7.0
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- stacktrace-parser: 0.1.11
- whatwg-fetch: 3.6.20
- optionalDependencies:
- react-dom: 19.2.0(react@19.2.0)
- transitivePeerDependencies:
- - '@expo/dom-webview'
-
- '@expo/metro@55.0.0':
- dependencies:
- metro: 0.83.5
- metro-babel-transformer: 0.83.5
- metro-cache: 0.83.5
- metro-cache-key: 0.83.5
- metro-config: 0.83.5
- metro-core: 0.83.5
- metro-file-map: 0.83.5
- metro-minify-terser: 0.83.5
- metro-resolver: 0.83.5
- metro-runtime: 0.83.5
- metro-source-map: 0.83.5
- metro-symbolicate: 0.83.5
- metro-transform-plugins: 0.83.5
- metro-transform-worker: 0.83.5
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- '@expo/metro@55.1.1':
- dependencies:
- metro: 0.83.7
- metro-babel-transformer: 0.83.7
- metro-cache: 0.83.7
- metro-cache-key: 0.83.7
- metro-config: 0.83.7
- metro-core: 0.83.7
- metro-file-map: 0.83.7
- metro-minify-terser: 0.83.7
- metro-resolver: 0.83.7
- metro-runtime: 0.83.7
- metro-source-map: 0.83.7
- metro-symbolicate: 0.83.7
- metro-transform-plugins: 0.83.7
- metro-transform-worker: 0.83.7
+ react-dom: 19.2.3(react@19.2.3)
+
+ '@expo/metro@56.0.0':
+ dependencies:
+ metro: 0.84.4
+ metro-babel-transformer: 0.84.4
+ metro-cache: 0.84.4
+ metro-cache-key: 0.84.4
+ metro-config: 0.84.4
+ metro-core: 0.84.4
+ metro-file-map: 0.84.4
+ metro-minify-terser: 0.84.4
+ metro-resolver: 0.84.4
+ metro-runtime: 0.84.4
+ metro-source-map: 0.84.4
+ metro-symbolicate: 0.84.4
+ metro-transform-plugins: 0.84.4
+ metro-transform-worker: 0.84.4
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- '@expo/osascript@2.4.2':
+ '@expo/osascript@2.5.1':
dependencies:
'@expo/spawn-async': 1.7.2
- '@expo/package-manager@1.10.4':
+ '@expo/package-manager@1.11.1':
dependencies:
- '@expo/json-file': 10.0.13
+ '@expo/json-file': 10.1.1
'@expo/spawn-async': 1.7.2
chalk: 4.1.2
npm-package-arg: 11.0.3
ora: 3.4.0
resolve-workspace-root: 2.0.1
- '@expo/plist@0.5.2':
+ '@expo/plist@0.6.1':
dependencies:
'@xmldom/xmldom': 0.8.12
base64-js: 1.5.1
xmlbuilder: 15.1.1
- '@expo/prebuild-config@55.0.14(expo@55.0.14)(typescript@5.9.3)':
+ '@expo/prebuild-config@56.0.4(typescript@6.0.3)':
dependencies:
- '@expo/config': 55.0.14(typescript@5.9.3)
- '@expo/config-plugins': 55.0.8
- '@expo/config-types': 55.0.5
- '@expo/image-utils': 0.8.13(typescript@5.9.3)
- '@expo/json-file': 10.0.13
- '@react-native/normalize-colors': 0.83.4
+ '@expo/config': 56.0.3(typescript@6.0.3)
+ '@expo/config-plugins': 56.0.3
+ '@expo/config-types': 56.0.2
+ '@expo/image-utils': 0.9.2(typescript@6.0.3)
+ '@expo/json-file': 10.1.1
+ '@react-native/normalize-colors': 0.85.3
debug: 4.4.3
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ expo-modules-autolinking: 56.0.3(typescript@6.0.3)
resolve-from: 5.0.0
semver: 7.7.4
- xml2js: 0.6.0
transitivePeerDependencies:
- supports-color
- typescript
- '@expo/prebuild-config@55.0.16(expo@55.0.19)(typescript@5.9.3)':
- dependencies:
- '@expo/config': 55.0.15(typescript@5.9.3)
- '@expo/config-plugins': 55.0.8
- '@expo/config-types': 55.0.5
- '@expo/image-utils': 0.8.13(typescript@5.9.3)
- '@expo/json-file': 10.0.13
- '@react-native/normalize-colors': 0.83.6
- debug: 4.4.3
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- resolve-from: 5.0.0
- semver: 7.7.4
- xml2js: 0.6.0
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@expo/require-utils@55.0.4(typescript@5.9.3)':
+ '@expo/require-utils@56.1.0(typescript@6.0.3)':
dependencies:
'@babel/code-frame': 7.29.0
'@babel/core': 7.29.0
'@babel/plugin-transform-modules-commonjs': 7.28.6(@babel/core@7.29.0)
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@expo/router-server@55.0.14(@expo/metro-runtime@55.0.9)(expo-constants@55.0.15)(expo-font@55.0.6)(expo-router@55.0.13)(expo-server@55.0.7)(expo@55.0.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@expo/router-server@56.0.5(@expo/metro-runtime@56.0.5)(expo-constants@56.0.6)(expo-font@56.0.3)(expo-router@56.1.1)(expo-server@56.0.1)(expo@56.0.0-preview.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
debug: 4.4.3
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-constants: 55.0.15(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
- expo-font: 55.0.6(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- expo-server: 55.0.7
- react: 19.2.0
+ 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)
+ expo-constants: 56.0.6(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))
+ expo-font: 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-server: 56.0.1
+ react: 19.2.3
optionalDependencies:
- '@expo/metro-runtime': 55.0.9(@expo/dom-webview@55.0.5)(expo@55.0.14)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- expo-router: 55.0.13(e7e6bff1cf0beac0c272efc28d8685ac)
- react-dom: 19.2.0(react@19.2.0)
+ '@expo/metro-runtime': 56.0.5(@expo/log-box@56.0.6)(expo@56.0.0-preview.7)(react-dom@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)
+ expo-router: 56.1.1(f97a815c8b3e5c15c283c5191555858a)
+ react-dom: 19.2.3(react@19.2.3)
transitivePeerDependencies:
- supports-color
- '@expo/router-server@55.0.15(@expo/metro-runtime@55.0.9)(expo-constants@55.0.15)(expo-font@55.0.6)(expo-router@55.0.13)(expo-server@55.0.8)(expo@55.0.19)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- debug: 4.4.3
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-constants: 55.0.15(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
- expo-font: 55.0.6(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- expo-server: 55.0.8
- react: 19.2.0
- optionalDependencies:
- '@expo/metro-runtime': 55.0.9(@expo/dom-webview@55.0.5)(expo@55.0.19)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- expo-router: 55.0.13(45d51f50f8a415571faffbf3107b4078)
- react-dom: 19.2.0(react@19.2.0)
- transitivePeerDependencies:
- - supports-color
-
- '@expo/schema-utils@55.0.3': {}
+ '@expo/schema-utils@56.0.1': {}
'@expo/sdk-runtime-versions@1.0.0': {}
@@ -15558,15 +15510,31 @@ snapshots:
'@expo/sudo-prompt@9.3.2': {}
- '@expo/vector-icons@15.1.1(expo-font@55.0.6)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@expo/ui@56.0.4(fb48858a35535251866f381b3285822d)':
dependencies:
- expo-font: 55.0.6(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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)
+ 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)
+ sf-symbols-typescript: 2.2.0
+ vaul: 1.1.2(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ optionalDependencies:
+ '@babel/core': 7.29.0
+ react-dom: 19.2.3(react@19.2.3)
+ react-native-reanimated: 4.3.0(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)
+ 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)
+ transitivePeerDependencies:
+ - '@types/react'
+ - '@types/react-dom'
+
+ '@expo/vector-icons@15.1.1(expo-font@56.0.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)':
+ dependencies:
+ expo-font: 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)
+ 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)
'@expo/ws-tunnel@1.0.6': {}
- '@expo/xcpretty@4.4.3':
+ '@expo/xcpretty@4.4.4':
dependencies:
'@babel/code-frame': 7.29.0
chalk: 4.1.2
@@ -15613,44 +15581,49 @@ snapshots:
type-is: 2.0.1
vary: 1.1.2
- '@gorhom/bottom-sheet@5.2.9(@types/react@19.2.14)(react-native-gesture-handler@2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-reanimated@4.2.1(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@gorhom/bottom-sheet@5.2.9(3fc08df43517739b4d69cc02d7705d5b)':
dependencies:
- '@gorhom/portal': 1.0.14(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@gorhom/portal': 1.0.14(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)
invariant: 2.2.4
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-native-gesture-handler: 2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-reanimated: 4.2.1(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ 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-native-gesture-handler: 2.31.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)
+ react-native-reanimated: 4.3.0(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)
optionalDependencies:
'@types/react': 19.2.14
- '@gorhom/bottom-sheet@5.2.9(@types/react@19.2.14)(react-native-gesture-handler@2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-reanimated@4.2.3(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@gorhom/bottom-sheet@5.2.9(@types/react@19.2.14)(react-native-gesture-handler@2.30.1(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))(react-native-reanimated@4.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.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))(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))(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:
- '@gorhom/portal': 1.0.14(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@gorhom/portal': 1.0.14(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)
invariant: 2.2.4
react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-native-gesture-handler: 2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-reanimated: 4.2.3(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(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)
+ react-native-gesture-handler: 2.30.1(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)
+ react-native-reanimated: 4.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.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))(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)
optionalDependencies:
'@types/react': 19.2.14
- '@gorhom/bottom-sheet@5.2.9(@types/react@19.2.14)(react-native-gesture-handler@2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-reanimated@4.2.3(react-native-worklets@0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@gorhom/bottom-sheet@5.2.9(@types/react@19.2.14)(react-native-gesture-handler@2.31.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))(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:
- '@gorhom/portal': 1.0.14(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@gorhom/portal': 1.0.14(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)
invariant: 2.2.4
react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-native-gesture-handler: 2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-reanimated: 4.2.3(react-native-worklets@0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(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)
+ react-native-gesture-handler: 2.31.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)
optionalDependencies:
'@types/react': 19.2.14
- '@gorhom/portal@1.0.14(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@gorhom/portal@1.0.14(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:
nanoid: 3.3.11
react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(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)
+
+ '@gorhom/portal@1.0.14(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:
+ nanoid: 3.3.11
+ 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)
'@hapi/hoek@9.3.0': {}
@@ -15876,13 +15849,13 @@ snapshots:
'@types/yargs': 17.0.35
chalk: 4.1.2
- '@joshwooding/vite-plugin-react-docgen-typescript@0.6.4(typescript@5.9.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))':
+ '@joshwooding/vite-plugin-react-docgen-typescript@0.6.4(typescript@6.0.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))':
dependencies:
glob: 13.0.6
- react-docgen-typescript: 2.2.2(typescript@5.9.3)
+ react-docgen-typescript: 2.2.2(typescript@6.0.3)
vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3)
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
'@jridgewell/gen-mapping@0.3.13':
dependencies:
@@ -16035,13 +16008,13 @@ snapshots:
'@jsonjoy.com/codegen': 17.67.0(tslib@2.8.1)
tslib: 2.8.1
- '@legendapp/list@3.0.0-beta.38(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@legendapp/list@3.0.0-beta.38(react-dom@19.2.3(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))(react@19.2.0)':
dependencies:
react: 19.2.0
use-sync-external-store: 1.6.0(react@19.2.0)
optionalDependencies:
- react-dom: 19.2.0(react@19.2.0)
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ react-dom: 19.2.3(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)
'@leichtgewicht/ip-codec@2.0.5': {}
@@ -16093,11 +16066,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.0)':
+ '@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.3)':
dependencies:
'@types/mdx': 2.0.13
'@types/react': 19.2.14
- react: 19.2.0
+ react: 19.2.3
'@module-federation/error-codes@0.22.0': {}
@@ -16126,8 +16099,8 @@ snapshots:
'@napi-rs/wasm-runtime@0.2.12':
dependencies:
- '@emnapi/core': 1.9.2
- '@emnapi/runtime': 1.9.2
+ '@emnapi/core': 1.10.0
+ '@emnapi/runtime': 1.10.0
'@tybys/wasm-util': 0.10.1
optional: true
@@ -16235,6 +16208,8 @@ snapshots:
'@oxc-project/types@0.124.0': {}
+ '@oxc-project/types@0.129.0': {}
+
'@oxc-project/types@0.99.0': {}
'@peculiar/asn1-cms@2.6.1':
@@ -16350,195 +16325,204 @@ snapshots:
- '@emnapi/core'
- '@emnapi/runtime'
+ '@quansync/fs@1.0.0':
+ dependencies:
+ quansync: 1.0.0
+
'@radix-ui/primitive@1.1.3': {}
- '@radix-ui/react-collection@1.1.7(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-collection@1.1.7(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.3)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.14)(react@19.2.0)':
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.14)(react@19.2.3)':
dependencies:
- react: 19.2.0
+ react: 19.2.3
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-context@1.1.2(@types/react@19.2.14)(react@19.2.0)':
+ '@radix-ui/react-context@1.1.2(@types/react@19.2.14)(react@19.2.3)':
dependencies:
- react: 19.2.0
+ react: 19.2.3
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-dialog@1.1.15(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-dialog@1.1.15(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-focus-scope': 1.1.7(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-portal': 1.1.9(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-presence': 1.1.5(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-portal': 1.1.9(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@radix-ui/react-presence': 1.1.5(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.3)
aria-hidden: 1.2.6
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- react-remove-scroll: 2.7.2(@types/react@19.2.14)(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
+ react-remove-scroll: 2.7.2(@types/react@19.2.14)(react@19.2.3)
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-direction@1.1.1(@types/react@19.2.14)(react@19.2.0)':
+ '@radix-ui/react-direction@1.1.1(@types/react@19.2.14)(react@19.2.3)':
dependencies:
- react: 19.2.0
+ react: 19.2.3
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-dismissable-layer@1.1.11(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-dismissable-layer@1.1.11(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.14)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.14)(react@19.2.3)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.14)(react@19.2.0)':
+ '@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.14)(react@19.2.3)':
dependencies:
- react: 19.2.0
+ react: 19.2.3
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-focus-scope@1.1.7(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-focus-scope@1.1.7(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.3)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-id@1.1.1(@types/react@19.2.14)(react@19.2.0)':
+ '@radix-ui/react-id@1.1.1(@types/react@19.2.14)(react@19.2.3)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.0)
- react: 19.2.0
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.3)
+ react: 19.2.3
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-portal@1.1.9(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-portal@1.1.9(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.3)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-presence@1.1.5(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-presence@1.1.5(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.3)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-primitive@2.1.3(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-primitive@2.1.3(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.3)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-roving-focus@1.1.11(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-roving-focus@1.1.11(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-collection': 1.1.7(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ '@radix-ui/react-collection': 1.1.7(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.3)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-slot@1.2.3(@types/react@19.2.14)(react@19.2.0)':
+ '@radix-ui/react-slot@1.2.3(@types/react@19.2.14)(react@19.2.3)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.0)
- react: 19.2.0
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.3)
+ react: 19.2.3
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-tabs@1.1.13(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-tabs@1.1.13(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-presence': 1.1.5(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-roving-focus': 1.1.11(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-presence': 1.1.5(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.3)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.14)(react@19.2.0)':
+ '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.14)(react@19.2.3)':
dependencies:
- react: 19.2.0
+ react: 19.2.3
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.14)(react@19.2.0)':
+ '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.14)(react@19.2.3)':
dependencies:
- '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.0)
- react: 19.2.0
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.3)
+ react: 19.2.3
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.14)(react@19.2.0)':
+ '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.14)(react@19.2.3)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.0)
- react: 19.2.0
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.3)
+ react: 19.2.3
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.14)(react@19.2.0)':
+ '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.14)(react@19.2.3)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.0)
- react: 19.2.0
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.3)
+ react: 19.2.3
optionalDependencies:
'@types/react': 19.2.14
- '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.14)(react@19.2.0)':
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.14)(react@19.2.3)':
dependencies:
- react: 19.2.0
+ react: 19.2.3
optionalDependencies:
'@types/react': 19.2.14
- '@react-native-async-storage/async-storage@2.2.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))':
+ '@react-native-async-storage/async-storage@2.2.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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))':
+ dependencies:
+ merge-options: 3.0.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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3)
+
+ '@react-native-async-storage/async-storage@2.2.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))':
dependencies:
merge-options: 3.0.4
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.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-native-community/cli-clean@20.0.0':
dependencies:
@@ -16561,52 +16545,20 @@ snapshots:
execa: 5.1.1
fast-glob: 3.3.3
- '@react-native-community/cli-config@20.0.0(typescript@5.9.3)':
+ '@react-native-community/cli-config@20.0.0(typescript@6.0.3)':
dependencies:
'@react-native-community/cli-tools': 20.0.0
chalk: 4.1.2
- cosmiconfig: 9.0.1(typescript@5.9.3)
+ cosmiconfig: 9.0.1(typescript@6.0.3)
deepmerge: 4.3.1
fast-glob: 3.3.3
joi: 17.13.3
transitivePeerDependencies:
- typescript
- '@react-native-community/cli-config@20.0.0(typescript@6.0.2)':
- dependencies:
- '@react-native-community/cli-tools': 20.0.0
- chalk: 4.1.2
- cosmiconfig: 9.0.1(typescript@6.0.2)
- deepmerge: 4.3.1
- fast-glob: 3.3.3
- joi: 17.13.3
- transitivePeerDependencies:
- - typescript
- optional: true
-
- '@react-native-community/cli-doctor@20.0.0(typescript@5.9.3)':
- dependencies:
- '@react-native-community/cli-config': 20.0.0(typescript@5.9.3)
- '@react-native-community/cli-platform-android': 20.0.0
- '@react-native-community/cli-platform-apple': 20.0.0
- '@react-native-community/cli-platform-ios': 20.0.0
- '@react-native-community/cli-tools': 20.0.0
- chalk: 4.1.2
- command-exists: 1.2.9
- deepmerge: 4.3.1
- envinfo: 7.21.0
- execa: 5.1.1
- node-stream-zip: 1.15.0
- ora: 5.4.1
- semver: 7.7.4
- wcwidth: 1.0.1
- yaml: 2.8.3
- transitivePeerDependencies:
- - typescript
-
- '@react-native-community/cli-doctor@20.0.0(typescript@6.0.2)':
+ '@react-native-community/cli-doctor@20.0.0(typescript@6.0.3)':
dependencies:
- '@react-native-community/cli-config': 20.0.0(typescript@6.0.2)
+ '@react-native-community/cli-config': 20.0.0(typescript@6.0.3)
'@react-native-community/cli-platform-android': 20.0.0
'@react-native-community/cli-platform-apple': 20.0.0
'@react-native-community/cli-platform-ios': 20.0.0
@@ -16623,7 +16575,6 @@ snapshots:
yaml: 2.8.3
transitivePeerDependencies:
- typescript
- optional: true
'@react-native-community/cli-platform-android@20.0.0':
dependencies:
@@ -16679,11 +16630,11 @@ snapshots:
dependencies:
joi: 17.13.3
- '@react-native-community/cli@20.0.0(typescript@5.9.3)':
+ '@react-native-community/cli@20.0.0(typescript@6.0.3)':
dependencies:
'@react-native-community/cli-clean': 20.0.0
- '@react-native-community/cli-config': 20.0.0(typescript@5.9.3)
- '@react-native-community/cli-doctor': 20.0.0(typescript@5.9.3)
+ '@react-native-community/cli-config': 20.0.0(typescript@6.0.3)
+ '@react-native-community/cli-doctor': 20.0.0(typescript@6.0.3)
'@react-native-community/cli-server-api': 20.0.0
'@react-native-community/cli-tools': 20.0.0
'@react-native-community/cli-types': 20.0.0
@@ -16702,50 +16653,39 @@ snapshots:
- typescript
- utf-8-validate
- '@react-native-community/cli@20.0.0(typescript@6.0.2)':
+ '@react-native-community/datetimepicker@8.6.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))(react@19.2.0)':
dependencies:
- '@react-native-community/cli-clean': 20.0.0
- '@react-native-community/cli-config': 20.0.0(typescript@6.0.2)
- '@react-native-community/cli-doctor': 20.0.0(typescript@6.0.2)
- '@react-native-community/cli-server-api': 20.0.0
- '@react-native-community/cli-tools': 20.0.0
- '@react-native-community/cli-types': 20.0.0
- chalk: 4.1.2
- commander: 9.5.0
- deepmerge: 4.3.1
- execa: 5.1.1
- find-up: 5.0.0
- fs-extra: 8.1.0
- graceful-fs: 4.2.11
- prompts: 2.4.2
- semver: 7.7.4
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - typescript
- - utf-8-validate
- optional: true
+ invariant: 2.2.4
+ 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)
- '@react-native-community/datetimepicker@8.6.0(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@react-native-community/datetimepicker@9.1.0(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)':
dependencies:
invariant: 2.2.4
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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)
optionalDependencies:
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ 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)
- '@react-native-community/datetimepicker@8.6.0(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@react-native-community/datetimepicker@9.1.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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3)':
dependencies:
invariant: 2.2.4
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- optionalDependencies:
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3)
'@react-native-community/slider@5.1.2': {}
+ '@react-native-community/slider@5.2.0': {}
+
+ '@react-native-masked-view/masked-view@0.3.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:
+ 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-native/assets-registry@0.83.4': {}
+ '@react-native/assets-registry@0.85.3': {}
+
'@react-native/babel-plugin-codegen@0.83.4(@babel/core@7.29.0)':
dependencies:
'@babel/traverse': 7.29.0
@@ -16754,10 +16694,10 @@ snapshots:
- '@babel/core'
- supports-color
- '@react-native/babel-plugin-codegen@0.83.6(@babel/core@7.29.0)':
+ '@react-native/babel-plugin-codegen@0.85.3(@babel/core@7.29.0)':
dependencies:
'@babel/traverse': 7.29.0
- '@react-native/codegen': 0.83.6(@babel/core@7.29.0)
+ '@react-native/codegen': 0.85.3(@babel/core@7.29.0)
transitivePeerDependencies:
- '@babel/core'
- supports-color
@@ -16812,7 +16752,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@react-native/babel-preset@0.83.6(@babel/core@7.29.0)':
+ '@react-native/babel-preset@0.85.3(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
'@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.29.0)
@@ -16820,27 +16760,19 @@ snapshots:
'@babel/plugin-syntax-export-default-from': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.0)
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.0)
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.29.0)
'@babel/plugin-transform-async-generator-functions': 7.29.0(@babel/core@7.29.0)
'@babel/plugin-transform-async-to-generator': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-block-scoping': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-class-properties': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-classes': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-computed-properties': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.29.0)
'@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.29.0)
'@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.29.0)
- '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.29.0)
- '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.29.0)
- '@babel/plugin-transform-logical-assignment-operators': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-modules-commonjs': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-named-capturing-groups-regex': 7.29.0(@babel/core@7.29.0)
'@babel/plugin-transform-nullish-coalescing-operator': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-numeric-separator': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-object-rest-spread': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-optional-catch-binding': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-optional-chaining': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.29.0)
'@babel/plugin-transform-private-methods': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-private-property-in-object': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.29.0)
@@ -16849,14 +16781,10 @@ snapshots:
'@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.29.0)
'@babel/plugin-transform-regenerator': 7.29.0(@babel/core@7.29.0)
'@babel/plugin-transform-runtime': 7.29.0(@babel/core@7.29.0)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.29.0)
- '@babel/plugin-transform-spread': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.29.0)
'@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.29.0)
- '@babel/template': 7.28.6
- '@react-native/babel-plugin-codegen': 0.83.6(@babel/core@7.29.0)
- babel-plugin-syntax-hermes-parser: 0.32.0
+ '@react-native/babel-plugin-codegen': 0.85.3(@babel/core@7.29.0)
+ babel-plugin-syntax-hermes-parser: 0.33.3
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.29.0)
react-refresh: 0.14.2
transitivePeerDependencies:
@@ -16872,17 +16800,17 @@ snapshots:
nullthrows: 1.1.1
yargs: 17.7.2
- '@react-native/codegen@0.83.6(@babel/core@7.29.0)':
+ '@react-native/codegen@0.85.3(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
'@babel/parser': 7.29.2
- glob: 7.2.3
- hermes-parser: 0.32.0
+ hermes-parser: 0.33.3
invariant: 2.2.4
nullthrows: 1.1.1
+ tinyglobby: 0.2.16
yargs: 17.7.2
- '@react-native/community-cli-plugin@0.83.4(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))':
+ '@react-native/community-cli-plugin@0.83.4(@react-native-community/cli@20.0.0(typescript@6.0.3))(@react-native/metro-config@0.85.3(@babel/core@7.29.0))':
dependencies:
'@react-native/dev-middleware': 0.83.4
debug: 4.4.3
@@ -16892,43 +16820,63 @@ snapshots:
metro-core: 0.83.7
semver: 7.7.4
optionalDependencies:
- '@react-native-community/cli': 20.0.0(typescript@5.9.3)
- '@react-native/metro-config': 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)
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- '@react-native/community-cli-plugin@0.83.4(@react-native-community/cli@20.0.0(typescript@6.0.2))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))':
+ '@react-native/community-cli-plugin@0.85.3(@react-native-community/cli@20.0.0(typescript@6.0.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))':
dependencies:
- '@react-native/dev-middleware': 0.83.4
+ '@react-native/dev-middleware': 0.85.3
debug: 4.4.3
invariant: 2.2.4
- metro: 0.83.7
- metro-config: 0.83.7
- metro-core: 0.83.7
+ metro: 0.84.4
+ metro-config: 0.84.4
+ metro-core: 0.84.4
semver: 7.7.4
optionalDependencies:
- '@react-native-community/cli': 20.0.0(typescript@6.0.2)
+ '@react-native-community/cli': 20.0.0(typescript@6.0.3)
'@react-native/metro-config': 0.83.4(@babel/core@7.29.0)
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
+ '@react-native/community-cli-plugin@0.85.3(@react-native-community/cli@20.0.0(typescript@6.0.3))(@react-native/metro-config@0.85.3(@babel/core@7.29.0))':
+ dependencies:
+ '@react-native/dev-middleware': 0.85.3
+ debug: 4.4.3
+ invariant: 2.2.4
+ metro: 0.84.4
+ metro-config: 0.84.4
+ metro-core: 0.84.4
+ semver: 7.7.4
+ optionalDependencies:
+ '@react-native-community/cli': 20.0.0(typescript@6.0.3)
+ '@react-native/metro-config': 0.85.3(@babel/core@7.29.0)
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
'@react-native/debugger-frontend@0.83.4': {}
- '@react-native/debugger-frontend@0.83.6': {}
+ '@react-native/debugger-frontend@0.85.3': {}
'@react-native/debugger-shell@0.83.4':
dependencies:
cross-spawn: 7.0.6
fb-dotslash: 0.5.8
- '@react-native/debugger-shell@0.83.6':
+ '@react-native/debugger-shell@0.85.3':
dependencies:
cross-spawn: 7.0.6
+ debug: 4.4.3
fb-dotslash: 0.5.8
+ transitivePeerDependencies:
+ - supports-color
'@react-native/dev-middleware@0.83.4':
dependencies:
@@ -16949,13 +16897,13 @@ snapshots:
- supports-color
- utf-8-validate
- '@react-native/dev-middleware@0.83.6':
+ '@react-native/dev-middleware@0.85.3':
dependencies:
'@isaacs/ttlcache': 1.4.1
- '@react-native/debugger-frontend': 0.83.6
- '@react-native/debugger-shell': 0.83.6
+ '@react-native/debugger-frontend': 0.85.3
+ '@react-native/debugger-shell': 0.85.3
chrome-launcher: 0.15.2
- chromium-edge-launcher: 0.2.0
+ chromium-edge-launcher: 0.3.0
connect: 3.7.0
debug: 4.4.3
invariant: 2.2.4
@@ -16968,18 +16916,18 @@ snapshots:
- supports-color
- utf-8-validate
- '@react-native/eslint-config@0.83.4(eslint@9.39.4(jiti@1.21.7))(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(prettier@3.8.2)(typescript@5.9.3)':
+ '@react-native/eslint-config@0.83.4(eslint@9.39.4(jiti@1.21.7))(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(prettier@3.8.2)(typescript@6.0.3)':
dependencies:
'@babel/core': 7.29.0
'@babel/eslint-parser': 7.28.6(@babel/core@7.29.0)(eslint@9.39.4(jiti@1.21.7))
'@react-native/eslint-plugin': 0.83.4
- '@typescript-eslint/eslint-plugin': 8.58.1(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
- '@typescript-eslint/parser': 8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/eslint-plugin': 8.58.1(@typescript-eslint/parser@8.58.1(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.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
eslint: 9.39.4(jiti@1.21.7)
eslint-config-prettier: 8.10.2(eslint@9.39.4(jiti@1.21.7))
eslint-plugin-eslint-comments: 3.2.0(eslint@9.39.4(jiti@1.21.7))
eslint-plugin-ft-flow: 2.0.3(@babel/eslint-parser@7.28.6(@babel/core@7.29.0)(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7))
- eslint-plugin-jest: 29.15.2(@typescript-eslint/eslint-plugin@8.58.1(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.4(jiti@1.21.7))(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(typescript@5.9.3)
+ eslint-plugin-jest: 29.15.2(@typescript-eslint/eslint-plugin@8.58.1(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7))(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(typescript@6.0.3)
eslint-plugin-react: 7.37.5(eslint@9.39.4(jiti@1.21.7))
eslint-plugin-react-hooks: 7.0.1(eslint@9.39.4(jiti@1.21.7))
eslint-plugin-react-native: 4.1.0(eslint@9.39.4(jiti@1.21.7))
@@ -16993,8 +16941,24 @@ snapshots:
'@react-native/gradle-plugin@0.83.4': {}
+ '@react-native/gradle-plugin@0.85.3': {}
+
+ '@react-native/jest-preset@0.85.3(@babel/core@7.29.0)(react@19.2.3)':
+ dependencies:
+ '@jest/create-cache-key-function': 29.7.0
+ '@react-native/js-polyfills': 0.85.3
+ babel-jest: 29.7.0(@babel/core@7.29.0)
+ jest-environment-node: 29.7.0
+ react: 19.2.3
+ regenerator-runtime: 0.13.11
+ transitivePeerDependencies:
+ - '@babel/core'
+ - supports-color
+
'@react-native/js-polyfills@0.83.4': {}
+ '@react-native/js-polyfills@0.85.3': {}
+
'@react-native/metro-babel-transformer@0.83.4(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
@@ -17004,6 +16968,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@react-native/metro-babel-transformer@0.85.3(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@react-native/babel-preset': 0.85.3(@babel/core@7.29.0)
+ hermes-parser: 0.33.3
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+
'@react-native/metro-config@0.83.4(@babel/core@7.29.0)':
dependencies:
'@react-native/js-polyfills': 0.83.4
@@ -17016,10 +16989,22 @@ snapshots:
- supports-color
- utf-8-validate
- '@react-native/new-app-screen@0.83.4(@types/react@19.2.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@react-native/metro-config@0.85.3(@babel/core@7.29.0)':
dependencies:
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ '@react-native/js-polyfills': 0.85.3
+ '@react-native/metro-babel-transformer': 0.85.3(@babel/core@7.29.0)
+ metro-config: 0.84.4
+ metro-runtime: 0.84.4
+ transitivePeerDependencies:
+ - '@babel/core'
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
+ '@react-native/new-app-screen@0.83.4(@types/react@19.2.14)(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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3)':
+ dependencies:
+ 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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3)
optionalDependencies:
'@types/react': 19.2.14
@@ -17027,123 +17012,120 @@ snapshots:
'@react-native/normalize-colors@0.83.4': {}
- '@react-native/normalize-colors@0.83.6': {}
+ '@react-native/normalize-colors@0.85.3': {}
'@react-native/typescript-config@0.83.4': {}
- '@react-native/virtualized-lists@0.83.4(@types/react@19.2.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@react-native/virtualized-lists@0.83.4(@types/react@19.2.14)(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:
invariant: 2.2.4
nullthrows: 1.1.1
react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(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)
optionalDependencies:
'@types/react': 19.2.14
- '@react-native/virtualized-lists@0.83.4(@types/react@19.2.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.2))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@react-native/virtualized-lists@0.85.3(@types/react@19.2.14)(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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.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.2))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3)
optionalDependencies:
'@types/react': 19.2.14
- '@react-navigation/bottom-tabs@7.15.11(@react-navigation/native@7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-screens@4.23.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@react-native/virtualized-lists@0.85.3(@types/react@19.2.14)(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:
- '@react-navigation/elements': 2.9.15(@react-navigation/native@7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@react-navigation/native': 7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ invariant: 2.2.4
+ nullthrows: 1.1.1
+ 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)
+ optionalDependencies:
+ '@types/react': 19.2.14
+
+ '@react-navigation/bottom-tabs@7.15.11(d3113f5aedba4bc22c7f261c71692f23)':
+ dependencies:
+ '@react-navigation/elements': 2.9.15(a57a634aadd90d6726be819abb0238ae)
+ '@react-navigation/native': 7.2.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)
color: 4.2.3
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-native-safe-area-context: 5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-screens: 4.23.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ 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-native-safe-area-context: 5.7.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-screens: 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)
sf-symbols-typescript: 2.2.0
transitivePeerDependencies:
- '@react-native-masked-view/masked-view'
- '@react-navigation/core@7.17.2(react@19.2.0)':
+ '@react-navigation/core@7.17.2(react@19.2.3)':
dependencies:
'@react-navigation/routers': 7.5.3
escape-string-regexp: 4.0.0
fast-deep-equal: 3.1.3
nanoid: 3.3.11
query-string: 7.1.3
- react: 19.2.0
+ react: 19.2.3
react-is: 19.2.5
- use-latest-callback: 0.2.6(react@19.2.0)
- use-sync-external-store: 1.6.0(react@19.2.0)
+ use-latest-callback: 0.2.6(react@19.2.3)
+ use-sync-external-store: 1.6.0(react@19.2.3)
- '@react-navigation/elements@2.9.15(@react-navigation/native@7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@react-navigation/elements@2.9.15(a57a634aadd90d6726be819abb0238ae)':
dependencies:
- '@react-navigation/native': 7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@react-navigation/native': 7.2.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)
color: 4.2.3
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-native-safe-area-context: 5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- use-latest-callback: 0.2.6(react@19.2.0)
- use-sync-external-store: 1.6.0(react@19.2.0)
-
- '@react-navigation/native-stack@7.14.12(@react-navigation/native@7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-screens@4.23.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@react-navigation/elements': 2.9.15(@react-navigation/native@7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@react-navigation/native': 7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- color: 4.2.3
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-native-safe-area-context: 5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-screens: 4.23.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- sf-symbols-typescript: 2.2.0
- warn-once: 0.1.1
- transitivePeerDependencies:
- - '@react-native-masked-view/masked-view'
+ 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-native-safe-area-context: 5.7.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)
+ use-latest-callback: 0.2.6(react@19.2.3)
+ use-sync-external-store: 1.6.0(react@19.2.3)
+ optionalDependencies:
+ '@react-native-masked-view/masked-view': 0.3.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)
- '@react-navigation/native@7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@react-navigation/native@7.2.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:
- '@react-navigation/core': 7.17.2(react@19.2.0)
+ '@react-navigation/core': 7.17.2(react@19.2.3)
escape-string-regexp: 4.0.0
fast-deep-equal: 3.1.3
nanoid: 3.3.11
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- use-latest-callback: 0.2.6(react@19.2.0)
+ 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)
+ use-latest-callback: 0.2.6(react@19.2.3)
'@react-navigation/routers@7.5.3':
dependencies:
nanoid: 3.3.11
- '@rnx-kit/metro-config@2.2.4(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(memfs@4.57.1(tslib@2.8.1))(metro@0.83.7)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ '@rnx-kit/metro-config@2.2.4(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(memfs@4.57.1(tslib@2.8.1))(metro@0.84.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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3)':
dependencies:
- '@rnx-kit/tools-node': 3.0.4(metro@0.83.7)
- '@rnx-kit/tools-react-native': 2.3.7(memfs@4.57.1(tslib@2.8.1))(metro@0.83.7)
+ '@rnx-kit/tools-node': 3.0.4(metro@0.84.4)
+ '@rnx-kit/tools-react-native': 2.3.7(memfs@4.57.1(tslib@2.8.1))(metro@0.84.4)
'@rnx-kit/tools-workspaces': 0.2.3
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3)
optionalDependencies:
'@react-native/metro-config': 0.83.4(@babel/core@7.29.0)
transitivePeerDependencies:
- memfs
- metro
- '@rnx-kit/react-native-host@0.5.16(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))':
+ '@rnx-kit/react-native-host@0.5.16(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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))':
dependencies:
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3)
'@rnx-kit/tools-filesystem@0.2.0(memfs@4.57.1(tslib@2.8.1))':
optionalDependencies:
memfs: 4.57.1(tslib@2.8.1)
- '@rnx-kit/tools-node@3.0.4(metro@0.83.7)':
+ '@rnx-kit/tools-node@3.0.4(metro@0.84.4)':
dependencies:
- '@rnx-kit/types-node': 1.0.0(metro@0.83.7)
+ '@rnx-kit/types-node': 1.0.0(metro@0.84.4)
transitivePeerDependencies:
- metro
- '@rnx-kit/tools-react-native@2.3.7(memfs@4.57.1(tslib@2.8.1))(metro@0.83.7)':
+ '@rnx-kit/tools-react-native@2.3.7(memfs@4.57.1(tslib@2.8.1))(metro@0.84.4)':
dependencies:
'@rnx-kit/tools-filesystem': 0.2.0(memfs@4.57.1(tslib@2.8.1))
- '@rnx-kit/tools-node': 3.0.4(metro@0.83.7)
- '@rnx-kit/types-bundle-config': 1.0.0(metro@0.83.7)
+ '@rnx-kit/tools-node': 3.0.4(metro@0.84.4)
+ '@rnx-kit/types-bundle-config': 1.0.0(metro@0.84.4)
transitivePeerDependencies:
- memfs
- metro
@@ -17156,26 +17138,26 @@ snapshots:
read-yaml-file: 2.1.0
strip-json-comments: 3.1.1
- '@rnx-kit/types-bundle-config@1.0.0(metro@0.83.7)':
+ '@rnx-kit/types-bundle-config@1.0.0(metro@0.84.4)':
dependencies:
'@rnx-kit/types-metro-serializer-esbuild': 1.0.1
'@rnx-kit/types-plugin-cyclic-dependencies': 1.0.0
'@rnx-kit/types-plugin-duplicates-checker': 1.0.0
'@rnx-kit/types-plugin-typescript': 1.0.0
optionalDependencies:
- metro: 0.83.7
+ metro: 0.84.4
- '@rnx-kit/types-kit-config@1.0.0(metro@0.83.7)':
+ '@rnx-kit/types-kit-config@1.0.0(metro@0.84.4)':
dependencies:
- '@rnx-kit/types-bundle-config': 1.0.0(metro@0.83.7)
+ '@rnx-kit/types-bundle-config': 1.0.0(metro@0.84.4)
transitivePeerDependencies:
- metro
'@rnx-kit/types-metro-serializer-esbuild@1.0.1': {}
- '@rnx-kit/types-node@1.0.0(metro@0.83.7)':
+ '@rnx-kit/types-node@1.0.0(metro@0.84.4)':
dependencies:
- '@rnx-kit/types-kit-config': 1.0.0(metro@0.83.7)
+ '@rnx-kit/types-kit-config': 1.0.0(metro@0.84.4)
transitivePeerDependencies:
- metro
@@ -17185,141 +17167,115 @@ snapshots:
'@rnx-kit/types-plugin-typescript@1.0.0': {}
- '@rolldown/binding-android-arm64@1.0.0-rc.15':
- optional: true
-
- '@rolldown/binding-darwin-arm64@1.0.0-rc.15':
- optional: true
-
- '@rolldown/binding-darwin-x64@1.0.0-rc.15':
+ '@rolldown/binding-android-arm64@1.0.0':
optional: true
- '@rolldown/binding-freebsd-x64@1.0.0-rc.15':
- optional: true
-
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.15':
- optional: true
-
- '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.15':
+ '@rolldown/binding-android-arm64@1.0.0-rc.15':
optional: true
- '@rolldown/binding-linux-arm64-musl@1.0.0-rc.15':
+ '@rolldown/binding-darwin-arm64@1.0.0':
optional: true
- '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.15':
- optional: true
-
- '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.15':
+ '@rolldown/binding-darwin-arm64@1.0.0-rc.15':
optional: true
- '@rolldown/binding-linux-x64-gnu@1.0.0-rc.15':
+ '@rolldown/binding-darwin-x64@1.0.0':
optional: true
- '@rolldown/binding-linux-x64-musl@1.0.0-rc.15':
+ '@rolldown/binding-darwin-x64@1.0.0-rc.15':
optional: true
- '@rolldown/binding-openharmony-arm64@1.0.0-rc.15':
+ '@rolldown/binding-freebsd-x64@1.0.0':
optional: true
- '@rolldown/binding-wasm32-wasi@1.0.0-rc.15':
- dependencies:
- '@emnapi/core': 1.9.2
- '@emnapi/runtime': 1.9.2
- '@napi-rs/wasm-runtime': 1.1.3(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)
- optional: true
-
- '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.15':
+ '@rolldown/binding-freebsd-x64@1.0.0-rc.15':
optional: true
- '@rolldown/binding-win32-x64-msvc@1.0.0-rc.15':
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0':
optional: true
- '@rolldown/pluginutils@1.0.0-rc.15': {}
-
- '@rolldown/pluginutils@1.0.0-rc.3': {}
-
- '@rollup/pluginutils@5.3.0(rollup@4.60.1)':
- dependencies:
- '@types/estree': 1.0.8
- estree-walker: 2.0.2
- picomatch: 4.0.4
- optionalDependencies:
- rollup: 4.60.1
-
- '@rollup/rollup-android-arm-eabi@4.60.1':
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.15':
optional: true
- '@rollup/rollup-android-arm64@4.60.1':
+ '@rolldown/binding-linux-arm64-gnu@1.0.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.60.1':
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.15':
optional: true
- '@rollup/rollup-darwin-x64@4.60.1':
+ '@rolldown/binding-linux-arm64-musl@1.0.0':
optional: true
- '@rollup/rollup-freebsd-arm64@4.60.1':
+ '@rolldown/binding-linux-arm64-musl@1.0.0-rc.15':
optional: true
- '@rollup/rollup-freebsd-x64@4.60.1':
+ '@rolldown/binding-linux-ppc64-gnu@1.0.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.60.1':
+ '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.15':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.60.1':
+ '@rolldown/binding-linux-s390x-gnu@1.0.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.60.1':
+ '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.15':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.60.1':
+ '@rolldown/binding-linux-x64-gnu@1.0.0':
optional: true
- '@rollup/rollup-linux-loong64-gnu@4.60.1':
+ '@rolldown/binding-linux-x64-gnu@1.0.0-rc.15':
optional: true
- '@rollup/rollup-linux-loong64-musl@4.60.1':
+ '@rolldown/binding-linux-x64-musl@1.0.0':
optional: true
- '@rollup/rollup-linux-ppc64-gnu@4.60.1':
+ '@rolldown/binding-linux-x64-musl@1.0.0-rc.15':
optional: true
- '@rollup/rollup-linux-ppc64-musl@4.60.1':
+ '@rolldown/binding-openharmony-arm64@1.0.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.60.1':
+ '@rolldown/binding-openharmony-arm64@1.0.0-rc.15':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.60.1':
+ '@rolldown/binding-wasm32-wasi@1.0.0':
+ dependencies:
+ '@emnapi/core': 1.10.0
+ '@emnapi/runtime': 1.10.0
+ '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.60.1':
+ '@rolldown/binding-wasm32-wasi@1.0.0-rc.15':
+ dependencies:
+ '@emnapi/core': 1.9.2
+ '@emnapi/runtime': 1.9.2
+ '@napi-rs/wasm-runtime': 1.1.3(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)
optional: true
- '@rollup/rollup-linux-x64-gnu@4.60.1':
+ '@rolldown/binding-win32-arm64-msvc@1.0.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.60.1':
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.15':
optional: true
- '@rollup/rollup-openbsd-x64@4.60.1':
+ '@rolldown/binding-win32-x64-msvc@1.0.0':
optional: true
- '@rollup/rollup-openharmony-arm64@4.60.1':
+ '@rolldown/binding-win32-x64-msvc@1.0.0-rc.15':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.60.1':
- optional: true
+ '@rolldown/pluginutils@1.0.0': {}
- '@rollup/rollup-win32-ia32-msvc@4.60.1':
- optional: true
+ '@rolldown/pluginutils@1.0.0-rc.15': {}
- '@rollup/rollup-win32-x64-gnu@4.60.1':
- optional: true
+ '@rolldown/pluginutils@1.0.0-rc.3': {}
- '@rollup/rollup-win32-x64-msvc@4.60.1':
- optional: true
+ '@rollup/pluginutils@5.3.0':
+ dependencies:
+ '@types/estree': 1.0.8
+ estree-walker: 2.0.2
+ picomatch: 4.0.4
'@rozenite/agent-shared@1.7.0':
dependencies:
@@ -17349,9 +17305,9 @@ snapshots:
- supports-color
- utf-8-validate
- '@rozenite/plugin-bridge@1.7.0(react@19.2.0)':
+ '@rozenite/plugin-bridge@1.7.0(react@19.2.3)':
dependencies:
- react: 19.2.0
+ react: 19.2.3
tslib: 2.8.1
'@rozenite/runtime@1.7.0':
@@ -17503,13 +17459,13 @@ snapshots:
dependencies:
'@sinonjs/commons': 3.0.1
- '@slorber/react-helmet-async@1.3.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@slorber/react-helmet-async@1.3.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
dependencies:
'@babel/runtime': 7.29.2
invariant: 2.2.4
prop-types: 15.8.1
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
react-fast-compare: 3.2.2
shallowequal: 1.1.0
@@ -17528,10 +17484,10 @@ snapshots:
- bufferutil
- utf-8-validate
- '@storybook/builder-vite@10.3.2(esbuild@0.27.7)(rollup@4.60.1)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))':
+ '@storybook/builder-vite@10.3.2(esbuild@0.27.7)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))':
dependencies:
- '@storybook/csf-plugin': 10.3.2(esbuild@0.27.7)(rollup@4.60.1)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))
- storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@storybook/csf-plugin': 10.3.2(esbuild@0.27.7)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))
+ storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
ts-dedent: 2.2.0
vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3)
transitivePeerDependencies:
@@ -17539,58 +17495,68 @@ snapshots:
- rollup
- webpack
- '@storybook/csf-plugin@10.3.2(esbuild@0.27.7)(rollup@4.60.1)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))':
+ '@storybook/csf-plugin@10.3.2(esbuild@0.27.7)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))':
dependencies:
- storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
unplugin: 2.3.11
optionalDependencies:
esbuild: 0.27.7
- rollup: 4.60.1
vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3)
webpack: 5.106.1(esbuild@0.27.7)
'@storybook/global@5.0.0': {}
- '@storybook/icons@2.0.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@storybook/icons@2.0.1(react-dom@19.2.3(react@19.2.0))(react@19.2.0)':
dependencies:
react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ react-dom: 19.2.3(react@19.2.0)
+
+ '@storybook/icons@2.0.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
+ dependencies:
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
- '@storybook/mcp@0.6.2(typescript@5.9.3)':
+ '@storybook/mcp@0.6.2(typescript@6.0.3)':
dependencies:
- '@tmcp/adapter-valibot': 0.1.5(tmcp@1.19.3(typescript@5.9.3))(valibot@1.2.0(typescript@5.9.3))
- '@tmcp/transport-http': 0.8.5(tmcp@1.19.3(typescript@5.9.3))
- tmcp: 1.19.3(typescript@5.9.3)
- valibot: 1.2.0(typescript@5.9.3)
+ '@tmcp/adapter-valibot': 0.1.5(tmcp@1.19.3(typescript@6.0.3))(valibot@1.2.0(typescript@6.0.3))
+ '@tmcp/transport-http': 0.8.5(tmcp@1.19.3(typescript@6.0.3))
+ tmcp: 1.19.3(typescript@6.0.3)
+ valibot: 1.2.0(typescript@6.0.3)
transitivePeerDependencies:
- '@tmcp/auth'
- typescript
- '@storybook/react-dom-shim@10.3.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))':
+ '@storybook/react-dom-shim@10.3.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))':
dependencies:
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
+ storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
- '@storybook/react-dom-shim@10.3.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))':
+ '@storybook/react-dom-shim@10.3.5(react-dom@19.2.3(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0))':
dependencies:
react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react-dom: 19.2.3(react@19.2.0)
+ storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0)
- '@storybook/react-native-web-vite@10.3.2(esbuild@0.27.7)(react-dom@19.2.0(react@19.2.0))(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(rollup@4.60.1)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))':
+ '@storybook/react-dom-shim@10.3.5(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))':
dependencies:
- '@storybook/builder-vite': 10.3.2(esbuild@0.27.7)(rollup@4.60.1)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))
- '@storybook/react': 10.3.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
- '@storybook/react-vite': 10.3.2(esbuild@0.27.7)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(rollup@4.60.1)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-native-web: 0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
+ storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+
+ '@storybook/react-native-web-vite@10.3.2(esbuild@0.27.7)(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@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)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))':
+ dependencies:
+ '@storybook/builder-vite': 10.3.2(esbuild@0.27.7)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))
+ '@storybook/react': 10.3.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)
+ '@storybook/react-vite': 10.3.2(esbuild@0.27.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))
+ react: 19.2.3
+ react-dom: 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-native-web: 0.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3)
- vite-plugin-rnw: 0.0.11(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))
- vite-tsconfig-paths: 6.1.1(typescript@5.9.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))
+ vite-plugin-rnw: 0.0.11(react-native-web@0.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))
+ vite-tsconfig-paths: 6.1.1(typescript@6.0.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))
transitivePeerDependencies:
- esbuild
- rollup
@@ -17598,19 +17564,19 @@ snapshots:
- typescript
- webpack
- '@storybook/react-vite@10.3.2(esbuild@0.27.7)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(rollup@4.60.1)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))':
+ '@storybook/react-vite@10.3.2(esbuild@0.27.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))':
dependencies:
- '@joshwooding/vite-plugin-react-docgen-typescript': 0.6.4(typescript@5.9.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))
- '@rollup/pluginutils': 5.3.0(rollup@4.60.1)
- '@storybook/builder-vite': 10.3.2(esbuild@0.27.7)(rollup@4.60.1)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))
- '@storybook/react': 10.3.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
+ '@joshwooding/vite-plugin-react-docgen-typescript': 0.6.4(typescript@6.0.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))
+ '@rollup/pluginutils': 5.3.0
+ '@storybook/builder-vite': 10.3.2(esbuild@0.27.7)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))(webpack@5.106.1(esbuild@0.27.7))
+ '@storybook/react': 10.3.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)
empathic: 2.0.0
magic-string: 0.30.21
- react: 19.2.0
+ react: 19.2.3
react-docgen: 8.0.3
- react-dom: 19.2.0(react@19.2.0)
+ react-dom: 19.2.3(react@19.2.3)
resolve: 1.22.11
- storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
tsconfig-paths: 4.2.0
vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3)
transitivePeerDependencies:
@@ -17620,31 +17586,45 @@ snapshots:
- typescript
- webpack
- '@storybook/react@10.3.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)':
+ '@storybook/react@10.3.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)':
dependencies:
'@storybook/global': 5.0.0
- '@storybook/react-dom-shim': 10.3.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))
- react: 19.2.0
+ '@storybook/react-dom-shim': 10.3.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))
+ react: 19.2.3
react-docgen: 8.0.3
- react-docgen-typescript: 2.2.2(typescript@5.9.3)
- react-dom: 19.2.0(react@19.2.0)
- storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react-docgen-typescript: 2.2.2(typescript@6.0.3)
+ react-dom: 19.2.3(react@19.2.3)
+ storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@storybook/react@10.3.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)':
+ '@storybook/react@10.3.5(react-dom@19.2.3(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0))(typescript@6.0.3)':
dependencies:
'@storybook/global': 5.0.0
- '@storybook/react-dom-shim': 10.3.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))
+ '@storybook/react-dom-shim': 10.3.5(react-dom@19.2.3(react@19.2.0))(react@19.2.0)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0))
react: 19.2.0
react-docgen: 8.0.3
- react-docgen-typescript: 2.2.2(typescript@5.9.3)
- react-dom: 19.2.0(react@19.2.0)
- storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react-docgen-typescript: 2.2.2(typescript@6.0.3)
+ react-dom: 19.2.3(react@19.2.0)
+ storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0)
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@storybook/react@10.3.5(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)':
+ dependencies:
+ '@storybook/global': 5.0.0
+ '@storybook/react-dom-shim': 10.3.5(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))
+ react: 19.2.3
+ react-docgen: 8.0.3
+ react-docgen-typescript: 2.2.2(typescript@6.0.3)
+ react-dom: 19.2.3(react@19.2.3)
+ storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ optionalDependencies:
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -17692,12 +17672,12 @@ snapshots:
'@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.29.0)
'@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.29.0)
- '@svgr/core@8.1.0(typescript@5.9.3)':
+ '@svgr/core@8.1.0(typescript@6.0.3)':
dependencies:
'@babel/core': 7.29.0
'@svgr/babel-preset': 8.1.0(@babel/core@7.29.0)
camelcase: 6.3.0
- cosmiconfig: 8.3.6(typescript@5.9.3)
+ cosmiconfig: 8.3.6(typescript@6.0.3)
snake-case: 3.0.4
transitivePeerDependencies:
- supports-color
@@ -17708,35 +17688,35 @@ snapshots:
'@babel/types': 7.29.0
entities: 4.5.0
- '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.9.3))':
+ '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@6.0.3))':
dependencies:
'@babel/core': 7.29.0
'@svgr/babel-preset': 8.1.0(@babel/core@7.29.0)
- '@svgr/core': 8.1.0(typescript@5.9.3)
+ '@svgr/core': 8.1.0(typescript@6.0.3)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
transitivePeerDependencies:
- supports-color
- '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.9.3))(typescript@5.9.3)':
+ '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@6.0.3))(typescript@6.0.3)':
dependencies:
- '@svgr/core': 8.1.0(typescript@5.9.3)
- cosmiconfig: 8.3.6(typescript@5.9.3)
+ '@svgr/core': 8.1.0(typescript@6.0.3)
+ cosmiconfig: 8.3.6(typescript@6.0.3)
deepmerge: 4.3.1
svgo: 3.3.3
transitivePeerDependencies:
- typescript
- '@svgr/webpack@8.1.0(typescript@5.9.3)':
+ '@svgr/webpack@8.1.0(typescript@6.0.3)':
dependencies:
'@babel/core': 7.29.0
'@babel/plugin-transform-react-constant-elements': 7.27.1(@babel/core@7.29.0)
'@babel/preset-env': 7.29.2(@babel/core@7.29.0)
'@babel/preset-react': 7.28.5(@babel/core@7.29.0)
'@babel/preset-typescript': 7.28.5(@babel/core@7.29.0)
- '@svgr/core': 8.1.0(typescript@5.9.3)
- '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.9.3))
- '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.9.3))(typescript@5.9.3)
+ '@svgr/core': 8.1.0(typescript@6.0.3)
+ '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@6.0.3))
+ '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@6.0.3))(typescript@6.0.3)
transitivePeerDependencies:
- supports-color
- typescript
@@ -17883,15 +17863,15 @@ snapshots:
picocolors: 1.1.1
redent: 3.0.0
- '@testing-library/react-native@14.0.0-beta.0(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(test-renderer@0.15.0(@types/react@19.2.14)(react@19.2.0))':
+ '@testing-library/react-native@14.0.0-beta.0(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.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)(test-renderer@0.15.0(@types/react@19.2.14)(react@19.2.3))':
dependencies:
jest-matcher-utils: 30.3.0
picocolors: 1.1.1
pretty-format: 30.3.0
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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)
redent: 3.0.0
- test-renderer: 0.15.0(@types/react@19.2.14)(react@19.2.0)
+ test-renderer: 0.15.0(@types/react@19.2.14)(react@19.2.3)
optionalDependencies:
jest: 29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0)
@@ -17899,29 +17879,31 @@ snapshots:
dependencies:
'@testing-library/dom': 10.4.1
- '@tmcp/adapter-valibot@0.1.5(tmcp@1.19.3(typescript@5.9.3))(valibot@1.2.0(typescript@5.9.3))':
+ '@tmcp/adapter-valibot@0.1.5(tmcp@1.19.3(typescript@6.0.3))(valibot@1.2.0(typescript@6.0.3))':
dependencies:
'@standard-schema/spec': 1.1.0
- '@valibot/to-json-schema': 1.6.0(valibot@1.2.0(typescript@5.9.3))
- tmcp: 1.19.3(typescript@5.9.3)
- valibot: 1.2.0(typescript@5.9.3)
+ '@valibot/to-json-schema': 1.6.0(valibot@1.2.0(typescript@6.0.3))
+ tmcp: 1.19.3(typescript@6.0.3)
+ valibot: 1.2.0(typescript@6.0.3)
- '@tmcp/adapter-valibot@0.1.5(tmcp@1.19.3(typescript@5.9.3))(valibot@1.3.1(typescript@5.9.3))':
+ '@tmcp/adapter-valibot@0.1.5(tmcp@1.19.3(typescript@6.0.3))(valibot@1.3.1(typescript@6.0.3))':
dependencies:
'@standard-schema/spec': 1.1.0
- '@valibot/to-json-schema': 1.6.0(valibot@1.3.1(typescript@5.9.3))
- tmcp: 1.19.3(typescript@5.9.3)
- valibot: 1.3.1(typescript@5.9.3)
+ '@valibot/to-json-schema': 1.6.0(valibot@1.3.1(typescript@6.0.3))
+ tmcp: 1.19.3(typescript@6.0.3)
+ valibot: 1.3.1(typescript@6.0.3)
- '@tmcp/session-manager@0.2.1(tmcp@1.19.3(typescript@5.9.3))':
+ '@tmcp/session-manager@0.2.1(tmcp@1.19.3(typescript@6.0.3))':
dependencies:
- tmcp: 1.19.3(typescript@5.9.3)
+ tmcp: 1.19.3(typescript@6.0.3)
- '@tmcp/transport-http@0.8.5(tmcp@1.19.3(typescript@5.9.3))':
+ '@tmcp/transport-http@0.8.5(tmcp@1.19.3(typescript@6.0.3))':
dependencies:
- '@tmcp/session-manager': 0.2.1(tmcp@1.19.3(typescript@5.9.3))
+ '@tmcp/session-manager': 0.2.1(tmcp@1.19.3(typescript@6.0.3))
esm-env: 1.2.2
- tmcp: 1.19.3(typescript@5.9.3)
+ tmcp: 1.19.3(typescript@6.0.3)
+
+ '@tootallnate/once@2.0.1': {}
'@tybys/wasm-util@0.10.1':
dependencies:
@@ -18057,6 +18039,8 @@ snapshots:
'@types/tough-cookie': 4.0.5
parse5: 7.3.0
+ '@types/jsesc@2.5.1': {}
+
'@types/json-schema@7.0.15': {}
'@types/json5@0.0.29': {}
@@ -18173,40 +18157,77 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
- '@typescript-eslint/eslint-plugin@8.58.1(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)':
+ '@typescript-eslint/eslint-plugin@8.58.1(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)':
dependencies:
'@eslint-community/regexpp': 4.12.2
- '@typescript-eslint/parser': 8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
'@typescript-eslint/scope-manager': 8.58.1
- '@typescript-eslint/type-utils': 8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
- '@typescript-eslint/utils': 8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/type-utils': 8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
'@typescript-eslint/visitor-keys': 8.58.1
eslint: 9.39.4(jiti@1.21.7)
ignore: 7.0.5
natural-compare: 1.4.0
- ts-api-utils: 2.5.0(typescript@5.9.3)
- typescript: 5.9.3
+ ts-api-utils: 2.5.0(typescript@6.0.3)
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)':
+ '@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)':
+ dependencies:
+ '@eslint-community/regexpp': 4.12.2
+ '@typescript-eslint/parser': 8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
+ '@typescript-eslint/scope-manager': 8.59.2
+ '@typescript-eslint/type-utils': 8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
+ '@typescript-eslint/visitor-keys': 8.59.2
+ eslint: 9.39.4(jiti@1.21.7)
+ ignore: 7.0.5
+ natural-compare: 1.4.0
+ ts-api-utils: 2.5.0(typescript@6.0.3)
+ typescript: 6.0.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)':
dependencies:
'@typescript-eslint/scope-manager': 8.58.1
'@typescript-eslint/types': 8.58.1
- '@typescript-eslint/typescript-estree': 8.58.1(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 8.58.1(typescript@6.0.3)
'@typescript-eslint/visitor-keys': 8.58.1
debug: 4.4.3
eslint: 9.39.4(jiti@1.21.7)
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.58.1(typescript@5.9.3)':
+ '@typescript-eslint/parser@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.58.1(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.59.2
+ '@typescript-eslint/types': 8.59.2
+ '@typescript-eslint/typescript-estree': 8.59.2(typescript@6.0.3)
+ '@typescript-eslint/visitor-keys': 8.59.2
+ debug: 4.4.3
+ eslint: 9.39.4(jiti@1.21.7)
+ typescript: 6.0.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/project-service@8.58.1(typescript@6.0.3)':
+ dependencies:
+ '@typescript-eslint/tsconfig-utils': 8.58.1(typescript@6.0.3)
'@typescript-eslint/types': 8.58.1
debug: 4.4.3
- typescript: 5.9.3
+ typescript: 6.0.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/project-service@8.59.2(typescript@6.0.3)':
+ dependencies:
+ '@typescript-eslint/tsconfig-utils': 8.59.2(typescript@6.0.3)
+ '@typescript-eslint/types': 8.59.2
+ debug: 4.4.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -18220,19 +18241,40 @@ snapshots:
'@typescript-eslint/types': 8.58.1
'@typescript-eslint/visitor-keys': 8.58.1
- '@typescript-eslint/tsconfig-utils@8.58.1(typescript@5.9.3)':
+ '@typescript-eslint/scope-manager@8.59.2':
+ dependencies:
+ '@typescript-eslint/types': 8.59.2
+ '@typescript-eslint/visitor-keys': 8.59.2
+
+ '@typescript-eslint/tsconfig-utils@8.58.1(typescript@6.0.3)':
+ dependencies:
+ typescript: 6.0.3
+
+ '@typescript-eslint/tsconfig-utils@8.59.2(typescript@6.0.3)':
dependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
- '@typescript-eslint/type-utils@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)':
+ '@typescript-eslint/type-utils@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)':
dependencies:
'@typescript-eslint/types': 8.58.1
- '@typescript-eslint/typescript-estree': 8.58.1(typescript@5.9.3)
- '@typescript-eslint/utils': 8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 8.58.1(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
+ debug: 4.4.3
+ eslint: 9.39.4(jiti@1.21.7)
+ ts-api-utils: 2.5.0(typescript@6.0.3)
+ typescript: 6.0.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/type-utils@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)':
+ dependencies:
+ '@typescript-eslint/types': 8.59.2
+ '@typescript-eslint/typescript-estree': 8.59.2(typescript@6.0.3)
+ '@typescript-eslint/utils': 8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
debug: 4.4.3
eslint: 9.39.4(jiti@1.21.7)
- ts-api-utils: 2.5.0(typescript@5.9.3)
- typescript: 5.9.3
+ ts-api-utils: 2.5.0(typescript@6.0.3)
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -18240,7 +18282,9 @@ snapshots:
'@typescript-eslint/types@8.58.1': {}
- '@typescript-eslint/typescript-estree@5.62.0(typescript@5.9.3)':
+ '@typescript-eslint/types@8.59.2': {}
+
+ '@typescript-eslint/typescript-estree@5.62.0(typescript@6.0.3)':
dependencies:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
@@ -18248,35 +18292,50 @@ snapshots:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.7.4
- tsutils: 3.21.0(typescript@5.9.3)
+ tsutils: 3.21.0(typescript@6.0.3)
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.58.1(typescript@5.9.3)':
+ '@typescript-eslint/typescript-estree@8.58.1(typescript@6.0.3)':
dependencies:
- '@typescript-eslint/project-service': 8.58.1(typescript@5.9.3)
- '@typescript-eslint/tsconfig-utils': 8.58.1(typescript@5.9.3)
+ '@typescript-eslint/project-service': 8.58.1(typescript@6.0.3)
+ '@typescript-eslint/tsconfig-utils': 8.58.1(typescript@6.0.3)
'@typescript-eslint/types': 8.58.1
'@typescript-eslint/visitor-keys': 8.58.1
debug: 4.4.3
minimatch: 10.2.5
semver: 7.7.4
tinyglobby: 0.2.16
- ts-api-utils: 2.5.0(typescript@5.9.3)
- typescript: 5.9.3
+ ts-api-utils: 2.5.0(typescript@6.0.3)
+ typescript: 6.0.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/typescript-estree@8.59.2(typescript@6.0.3)':
+ dependencies:
+ '@typescript-eslint/project-service': 8.59.2(typescript@6.0.3)
+ '@typescript-eslint/tsconfig-utils': 8.59.2(typescript@6.0.3)
+ '@typescript-eslint/types': 8.59.2
+ '@typescript-eslint/visitor-keys': 8.59.2
+ debug: 4.4.3
+ minimatch: 10.2.5
+ semver: 7.7.4
+ tinyglobby: 0.2.16
+ ts-api-utils: 2.5.0(typescript@6.0.3)
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@5.62.0(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)':
+ '@typescript-eslint/utils@5.62.0(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)':
dependencies:
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@1.21.7))
'@types/json-schema': 7.0.15
'@types/semver': 7.7.1
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@6.0.3)
eslint: 9.39.4(jiti@1.21.7)
eslint-scope: 5.1.1
semver: 7.7.4
@@ -18284,14 +18343,25 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)':
+ '@typescript-eslint/utils@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)':
dependencies:
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@1.21.7))
'@typescript-eslint/scope-manager': 8.58.1
'@typescript-eslint/types': 8.58.1
- '@typescript-eslint/typescript-estree': 8.58.1(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 8.58.1(typescript@6.0.3)
+ eslint: 9.39.4(jiti@1.21.7)
+ typescript: 6.0.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/utils@8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@1.21.7))
+ '@typescript-eslint/scope-manager': 8.59.2
+ '@typescript-eslint/types': 8.59.2
+ '@typescript-eslint/typescript-estree': 8.59.2(typescript@6.0.3)
eslint: 9.39.4(jiti@1.21.7)
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -18305,6 +18375,11 @@ snapshots:
'@typescript-eslint/types': 8.58.1
eslint-visitor-keys: 5.0.1
+ '@typescript-eslint/visitor-keys@8.59.2':
+ dependencies:
+ '@typescript-eslint/types': 8.59.2
+ eslint-visitor-keys: 5.0.1
+
'@ungap/structured-clone@1.3.0': {}
'@unrs/resolver-binding-android-arm-eabi@1.11.1':
@@ -18366,13 +18441,13 @@ snapshots:
'@unrs/resolver-binding-win32-x64-msvc@1.11.1':
optional: true
- '@valibot/to-json-schema@1.6.0(valibot@1.2.0(typescript@5.9.3))':
+ '@valibot/to-json-schema@1.6.0(valibot@1.2.0(typescript@6.0.3))':
dependencies:
- valibot: 1.2.0(typescript@5.9.3)
+ valibot: 1.2.0(typescript@6.0.3)
- '@valibot/to-json-schema@1.6.0(valibot@1.3.1(typescript@5.9.3))':
+ '@valibot/to-json-schema@1.6.0(valibot@1.3.1(typescript@6.0.3))':
dependencies:
- valibot: 1.3.1(typescript@5.9.3)
+ valibot: 1.3.1(typescript@6.0.3)
'@vitejs/plugin-react@5.2.0(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))':
dependencies:
@@ -18492,6 +18567,8 @@ snapshots:
'@xtuc/long@4.2.2': {}
+ abab@2.0.6: {}
+
abort-controller@3.0.0:
dependencies:
event-target-shim: 5.0.1
@@ -18508,6 +18585,11 @@ 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
@@ -18524,6 +18606,12 @@ 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:
@@ -18624,6 +18712,8 @@ snapshots:
ansi-styles@6.2.3: {}
+ ansis@4.2.0: {}
+
any-promise@1.3.0: {}
anymatch@3.1.3:
@@ -18734,6 +18824,12 @@ snapshots:
assertion-error@2.0.1: {}
+ ast-kit@3.0.0-beta.1:
+ dependencies:
+ '@babel/parser': 8.0.0-rc.4
+ estree-walker: 3.0.3
+ pathe: 2.0.3
+
ast-types@0.16.1:
dependencies:
tslib: 2.8.1
@@ -18746,6 +18842,8 @@ snapshots:
async-limiter@1.0.1: {}
+ asynckit@0.4.0: {}
+
atomic-sleep@1.0.0: {}
autoprefixer@10.4.27(postcss@8.5.9):
@@ -18766,6 +18864,8 @@ snapshots:
'@fastify/error': 4.2.0
fastq: 1.20.1
+ await-lock@2.2.2: {}
+
babel-jest@29.7.0(@babel/core@7.29.0):
dependencies:
'@babel/core': 7.29.0
@@ -18856,10 +18956,10 @@ snapshots:
dependencies:
'@babel/types': 7.29.0
- babel-plugin-react-docgen-typescript@1.5.1(@babel/core@7.29.0)(typescript@5.9.3):
+ 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: 2.2.2(typescript@5.9.3)
+ react-docgen-typescript: 1.22.0(typescript@6.0.3)
transitivePeerDependencies:
- typescript
@@ -18873,6 +18973,10 @@ snapshots:
dependencies:
hermes-parser: 0.32.1
+ babel-plugin-syntax-hermes-parser@0.33.3:
+ dependencies:
+ hermes-parser: 0.33.3
+
babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.29.0):
dependencies:
'@babel/plugin-syntax-flow': 7.28.6(@babel/core@7.29.0)
@@ -18898,40 +19002,7 @@ snapshots:
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.29.0)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.29.0)
- babel-preset-expo@55.0.17(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@55.0.14)(react-refresh@0.14.2):
- dependencies:
- '@babel/generator': 7.29.1
- '@babel/helper-module-imports': 7.28.6
- '@babel/plugin-proposal-decorators': 7.29.0(@babel/core@7.29.0)
- '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.29.0)
- '@babel/plugin-syntax-export-default-from': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-class-static-block': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.29.0)
- '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.29.0)
- '@babel/plugin-transform-modules-commonjs': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-object-rest-spread': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.29.0)
- '@babel/plugin-transform-private-methods': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-private-property-in-object': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-runtime': 7.29.0(@babel/core@7.29.0)
- '@babel/preset-react': 7.28.5(@babel/core@7.29.0)
- '@babel/preset-typescript': 7.28.5(@babel/core@7.29.0)
- '@react-native/babel-preset': 0.83.4(@babel/core@7.29.0)
- babel-plugin-react-compiler: 1.0.0
- babel-plugin-react-native-web: 0.21.2
- babel-plugin-syntax-hermes-parser: 0.32.1
- babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.29.0)
- debug: 4.4.3
- react-refresh: 0.14.2
- resolve-from: 5.0.0
- optionalDependencies:
- '@babel/runtime': 7.29.2
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- transitivePeerDependencies:
- - '@babel/core'
- - supports-color
-
- babel-preset-expo@55.0.17(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@55.0.19)(react-refresh@0.18.0):
+ babel-preset-expo@55.0.17(@babel/core@7.29.0)(@babel/runtime@7.29.2)(react-refresh@0.18.0):
dependencies:
'@babel/generator': 7.29.1
'@babel/helper-module-imports': 7.28.6
@@ -18959,40 +19030,58 @@ snapshots:
resolve-from: 5.0.0
optionalDependencies:
'@babel/runtime': 7.29.2
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
transitivePeerDependencies:
- '@babel/core'
- supports-color
- babel-preset-expo@55.0.19(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@55.0.19)(react-refresh@0.14.2):
+ babel-preset-expo@56.0.5(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@56.0.0-preview.7)(react-refresh@0.14.2):
dependencies:
'@babel/generator': 7.29.1
'@babel/helper-module-imports': 7.28.6
'@babel/plugin-proposal-decorators': 7.29.0(@babel/core@7.29.0)
'@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.29.0)
'@babel/plugin-syntax-export-default-from': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.0)
+ '@babel/plugin-transform-async-generator-functions': 7.29.0(@babel/core@7.29.0)
+ '@babel/plugin-transform-async-to-generator': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-block-scoping': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-class-properties': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-class-static-block': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-classes': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.29.0)
'@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.29.0)
'@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-modules-commonjs': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.29.0(@babel/core@7.29.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-object-rest-spread': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-optional-chaining': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.29.0)
'@babel/plugin-transform-private-methods': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-private-property-in-object': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.29.0)
+ '@babel/plugin-transform-react-jsx': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.29.0)
'@babel/plugin-transform-runtime': 7.29.0(@babel/core@7.29.0)
- '@babel/preset-react': 7.28.5(@babel/core@7.29.0)
+ '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.29.0)
'@babel/preset-typescript': 7.28.5(@babel/core@7.29.0)
- '@react-native/babel-preset': 0.83.6(@babel/core@7.29.0)
+ '@react-native/babel-plugin-codegen': 0.85.3(@babel/core@7.29.0)
babel-plugin-react-compiler: 1.0.0
babel-plugin-react-native-web: 0.21.2
- babel-plugin-syntax-hermes-parser: 0.32.1
+ babel-plugin-syntax-hermes-parser: 0.33.3
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.29.0)
debug: 4.4.3
react-refresh: 0.14.2
- resolve-from: 5.0.0
optionalDependencies:
'@babel/runtime': 7.29.2
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ 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)
transitivePeerDependencies:
- '@babel/core'
- supports-color
@@ -19033,6 +19122,8 @@ snapshots:
binary-extensions@2.3.0: {}
+ birpc@4.0.0: {}
+
bl@4.1.0:
dependencies:
buffer: 5.7.1
@@ -19149,18 +19240,13 @@ snapshots:
dependencies:
run-applescript: 7.1.0
- bundle-require@5.1.0(esbuild@0.27.7):
- dependencies:
- esbuild: 0.27.7
- load-tsconfig: 0.2.5
-
bytes@3.0.0: {}
bytes@3.1.2: {}
bytestreamjs@2.0.1: {}
- cac@6.7.14: {}
+ cac@7.0.0: {}
cacheable-lookup@7.0.0: {}
@@ -19290,10 +19376,6 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- chokidar@4.0.3:
- dependencies:
- readdirp: 4.1.2
-
chrome-launcher@0.15.2:
dependencies:
'@types/node': 25.6.0
@@ -19316,6 +19398,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ chromium-edge-launcher@0.3.0:
+ dependencies:
+ '@types/node': 25.6.0
+ escape-string-regexp: 4.0.0
+ is-wsl: 2.2.0
+ lighthouse-logger: 1.4.2
+ mkdirp: 1.0.4
+ transitivePeerDependencies:
+ - supports-color
+
ci-info@2.0.0: {}
ci-info@3.9.0: {}
@@ -19406,6 +19498,10 @@ 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: {}
@@ -19448,8 +19544,6 @@ snapshots:
concat-map@0.0.1: {}
- confbox@0.1.8: {}
-
config-chain@1.1.13:
dependencies:
ini: 1.3.8
@@ -19507,7 +19601,7 @@ snapshots:
globby: 13.2.2
normalize-path: 3.0.0
schema-utils: 4.3.3
- serialize-javascript: 7.0.5
+ serialize-javascript: 6.0.2
webpack: 5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))
core-js-compat@3.49.0:
@@ -19526,33 +19620,23 @@ snapshots:
path-type: 4.0.0
yaml: 1.10.3
- cosmiconfig@8.3.6(typescript@5.9.3):
+ cosmiconfig@8.3.6(typescript@6.0.3):
dependencies:
import-fresh: 3.3.1
js-yaml: 4.1.1
parse-json: 5.2.0
path-type: 4.0.0
optionalDependencies:
- typescript: 5.9.3
-
- cosmiconfig@9.0.1(typescript@5.9.3):
- dependencies:
- env-paths: 2.2.1
- import-fresh: 3.3.1
- js-yaml: 4.1.1
- parse-json: 5.2.0
- optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
- cosmiconfig@9.0.1(typescript@6.0.2):
+ cosmiconfig@9.0.1(typescript@6.0.3):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.1
js-yaml: 4.1.1
parse-json: 5.2.0
optionalDependencies:
- typescript: 6.0.2
- optional: true
+ typescript: 6.0.3
create-jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0):
dependencies:
@@ -19633,7 +19717,7 @@ snapshots:
jest-worker: 29.7.0
postcss: 8.5.9
schema-utils: 4.3.3
- serialize-javascript: 7.0.5
+ serialize-javascript: 6.0.2
webpack: 5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))
optionalDependencies:
clean-css: 5.3.3
@@ -19746,17 +19830,21 @@ snapshots:
dependencies:
css-tree: 2.2.1
- cssstyle@4.6.0:
+ cssom@0.3.8: {}
+
+ cssom@0.5.0: {}
+
+ cssstyle@2.3.0:
dependencies:
- '@asamuzakjp/css-color': 3.2.0
- rrweb-cssom: 0.8.0
+ cssom: 0.3.8
csstype@3.2.3: {}
- data-urls@5.0.0:
+ data-urls@3.0.2:
dependencies:
- whatwg-mimetype: 4.0.0
- whatwg-url: 14.2.0
+ abab: 2.0.6
+ whatwg-mimetype: 3.0.0
+ whatwg-url: 11.0.0
data-view-buffer@1.0.2:
dependencies:
@@ -19851,6 +19939,10 @@ snapshots:
has-property-descriptors: 1.0.2
object-keys: 1.1.1
+ defu@6.1.7: {}
+
+ delayed-stream@1.0.0: {}
+
depd@1.1.2: {}
depd@2.0.0: {}
@@ -19922,6 +20014,10 @@ snapshots:
domelementtype@2.3.0: {}
+ domexception@4.0.0:
+ dependencies:
+ webidl-conversions: 7.0.0
+
domhandler@4.3.1:
dependencies:
domelementtype: 2.3.0
@@ -19953,6 +20049,8 @@ snapshots:
dotenv@8.6.0: {}
+ dts-resolver@3.0.0: {}
+
dunder-proto@1.0.1:
dependencies:
call-bind-apply-helpers: 1.0.2
@@ -19999,6 +20097,8 @@ snapshots:
ansi-colors: 4.1.3
strip-ansi: 6.0.1
+ entities@2.0.3: {}
+
entities@2.2.0: {}
entities@4.5.0: {}
@@ -20193,14 +20293,22 @@ snapshots:
escape-string-regexp@5.0.0: {}
- eslint-config-expo@55.0.0(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3):
+ 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.58.1(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
- '@typescript-eslint/parser': 8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ '@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)(eslint@9.39.4(jiti@1.21.7))
- eslint-plugin-expo: 1.0.0(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(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-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-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
@@ -20226,7 +20334,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(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)):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.4.3
@@ -20237,18 +20345,18 @@ snapshots:
tinyglobby: 0.2.16
unrs-resolver: 1.11.1
optionalDependencies:
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(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-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))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.1(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(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-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)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.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-node: 0.3.10
- eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(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))
transitivePeerDependencies:
- supports-color
@@ -20258,10 +20366,10 @@ snapshots:
eslint: 9.39.4(jiti@1.21.7)
ignore: 5.3.2
- eslint-plugin-expo@1.0.0(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3):
+ eslint-plugin-expo@1.0.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3):
dependencies:
- '@typescript-eslint/types': 8.58.1
- '@typescript-eslint/utils': 8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/types': 8.59.2
+ '@typescript-eslint/utils': 8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
eslint: 9.39.4(jiti@1.21.7)
transitivePeerDependencies:
- supports-color
@@ -20274,7 +20382,7 @@ snapshots:
lodash: 4.18.1
string-natural-compare: 3.0.1
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(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-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)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -20285,7 +20393,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.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(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-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))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -20297,20 +20405,20 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.59.2(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jest@29.15.2(@typescript-eslint/eslint-plugin@8.58.1(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.4(jiti@1.21.7))(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(typescript@5.9.3):
+ eslint-plugin-jest@29.15.2(@typescript-eslint/eslint-plugin@8.58.1(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7))(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(typescript@6.0.3):
dependencies:
- '@typescript-eslint/utils': 8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
eslint: 9.39.4(jiti@1.21.7)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.58.1(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/eslint-plugin': 8.58.1(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)
jest: 29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0)
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -20521,36 +20629,25 @@ snapshots:
jest-message-util: 29.7.0
jest-util: 29.7.0
- expo-asset@55.0.16(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3):
- dependencies:
- '@expo/image-utils': 0.8.13(typescript@5.9.3)
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-constants: 55.0.15(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- expo-asset@55.0.16(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3):
+ expo-asset@56.0.6(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)(typescript@6.0.3):
dependencies:
- '@expo/image-utils': 0.8.13(typescript@5.9.3)
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-constants: 55.0.15(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ '@expo/image-utils': 0.9.2(typescript@6.0.3)
+ 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)
+ expo-constants: 56.0.6(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
+ 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)
transitivePeerDependencies:
- supports-color
- typescript
- expo-atlas@0.4.3(expo@55.0.14):
+ expo-atlas@0.4.3(expo@56.0.0-preview.7):
dependencies:
'@expo/server': 0.5.3
arg: 5.0.2
chalk: 4.1.2
compression: 1.8.1
connect: 3.7.0
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ 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)
express: 4.22.1
freeport-async: 2.0.0
getenv: 2.0.0
@@ -20561,470 +20658,261 @@ snapshots:
transitivePeerDependencies:
- supports-color
- expo-constants@55.0.15(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)):
- dependencies:
- '@expo/env': 2.1.1
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- transitivePeerDependencies:
- - supports-color
-
- expo-constants@55.0.15(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)):
+ expo-constants@56.0.6(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)):
dependencies:
- '@expo/env': 2.1.1
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ '@expo/env': 2.2.1
+ 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)
+ 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)
transitivePeerDependencies:
- supports-color
- expo-eas-client@55.0.5: {}
+ expo-eas-client@56.0.1: {}
- expo-file-system@55.0.17(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)):
+ expo-file-system@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)):
dependencies:
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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)
+ 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)
- expo-file-system@55.0.17(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)):
+ expo-font@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):
dependencies:
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
-
- expo-font@55.0.6(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
- dependencies:
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- fontfaceobserver: 2.3.0
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
-
- expo-font@55.0.6(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
- dependencies:
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ 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)
fontfaceobserver: 2.3.0
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
-
- expo-glass-effect@55.0.10(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
- dependencies:
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- optional: true
-
- expo-glass-effect@55.0.10(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
- dependencies:
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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)
- expo-haptics@55.0.14(expo@55.0.19):
+ expo-glass-effect@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):
dependencies:
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ 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)
+ 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)
- expo-image@55.0.9(expo@55.0.14)(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ expo-haptics@56.0.3(expo@56.0.0-preview.7):
dependencies:
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- sf-symbols-typescript: 2.2.0
- optionalDependencies:
- react-native-web: 0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- optional: true
+ 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)
- expo-image@55.0.9(expo@55.0.19)(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ expo-image@56.0.4(expo@56.0.0-preview.7)(react-native-web@0.21.2(react-dom@19.2.3(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):
dependencies:
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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)
+ 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)
sf-symbols-typescript: 2.2.0
optionalDependencies:
- react-native-web: 0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
-
- expo-json-utils@55.0.2: {}
+ react-native-web: 0.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
- expo-keep-awake@55.0.6(expo@55.0.14)(react@19.2.0):
- dependencies:
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react: 19.2.0
-
- expo-keep-awake@55.0.7(expo@55.0.19)(react@19.2.0):
- dependencies:
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react: 19.2.0
+ expo-json-utils@56.0.0: {}
- expo-linking@55.0.14(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ expo-keep-awake@56.0.3(expo@56.0.0-preview.7)(react@19.2.3):
dependencies:
- expo-constants: 55.0.15(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
- invariant: 2.2.4
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- transitivePeerDependencies:
- - expo
- - supports-color
- optional: true
+ 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)
+ react: 19.2.3
- expo-linking@55.0.14(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ expo-linking@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):
dependencies:
- expo-constants: 55.0.15(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
+ expo-constants: 56.0.6(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))
invariant: 2.2.4
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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)
transitivePeerDependencies:
- expo
- supports-color
- expo-manifests@55.0.15(expo@55.0.14)(typescript@5.9.3):
- dependencies:
- '@expo/config': 55.0.14(typescript@5.9.3)
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-json-utils: 55.0.2
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- expo-modules-autolinking@55.0.17(typescript@5.9.3):
- dependencies:
- '@expo/require-utils': 55.0.4(typescript@5.9.3)
- '@expo/spawn-async': 1.7.2
- chalk: 4.1.2
- commander: 7.2.0
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- expo-modules-autolinking@55.0.19(typescript@5.9.3):
- dependencies:
- '@expo/require-utils': 55.0.4(typescript@5.9.3)
- '@expo/spawn-async': 1.7.2
- chalk: 4.1.2
- commander: 7.2.0
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- expo-modules-core@55.0.22(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
- dependencies:
- invariant: 2.2.4
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- optionalDependencies:
- react-native-worklets: 0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
-
- expo-modules-core@55.0.24(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
- dependencies:
- invariant: 2.2.4
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- optionalDependencies:
- react-native-worklets: 0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
-
- expo-modules-core@55.0.24(react-native-worklets@0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
- dependencies:
- invariant: 2.2.4
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- optionalDependencies:
- react-native-worklets: 0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
-
- expo-router@55.0.13(45d51f50f8a415571faffbf3107b4078):
- dependencies:
- '@expo/log-box': 55.0.11(@expo/dom-webview@55.0.5)(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@expo/metro-runtime': 55.0.9(@expo/dom-webview@55.0.5)(expo@55.0.19)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@expo/schema-utils': 55.0.3
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-tabs': 1.1.13(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@react-navigation/bottom-tabs': 7.15.11(@react-navigation/native@7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-screens@4.23.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@react-navigation/native': 7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@react-navigation/native-stack': 7.14.12(@react-navigation/native@7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-screens@4.23.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- client-only: 0.0.1
- debug: 4.4.3
- escape-string-regexp: 4.0.0
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-constants: 55.0.15(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
- expo-glass-effect: 55.0.10(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- expo-image: 55.0.9(expo@55.0.19)(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- expo-linking: 55.0.14(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- expo-server: 55.0.8
- expo-symbols: 55.0.7(expo-font@55.0.6)(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- fast-deep-equal: 3.1.3
- invariant: 2.2.4
- nanoid: 3.3.11
- query-string: 7.1.3
- react: 19.2.0
- react-fast-compare: 3.2.2
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-native-is-edge-to-edge: 1.3.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-safe-area-context: 5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-screens: 4.23.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- semver: 7.6.3
- server-only: 0.0.1
- sf-symbols-typescript: 2.2.0
- shallowequal: 1.1.0
- use-latest-callback: 0.2.6(react@19.2.0)
- vaul: 1.1.2(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- optionalDependencies:
- react-dom: 19.2.0(react@19.2.0)
- react-native-gesture-handler: 2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-reanimated: 4.2.3(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-web: 0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ expo-manifests@56.0.2(expo@56.0.0-preview.7):
+ dependencies:
+ 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)
+ expo-json-utils: 56.0.0
+
+ expo-modules-autolinking@56.0.3(typescript@6.0.3):
+ dependencies:
+ '@expo/require-utils': 56.1.0(typescript@6.0.3)
+ '@expo/spawn-async': 1.7.2
+ chalk: 4.1.2
+ commander: 7.2.0
transitivePeerDependencies:
- - '@react-native-masked-view/masked-view'
- - '@types/react'
- - '@types/react-dom'
- - expo-font
- supports-color
+ - typescript
+
+ expo-modules-core@56.0.5(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):
+ dependencies:
+ '@expo/expo-modules-macros-plugin': 0.0.8
+ expo-modules-jsi: 56.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))
+ invariant: 2.2.4
+ 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)
+ optionalDependencies:
+ 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)
+
+ expo-modules-jsi@56.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)):
+ dependencies:
+ 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)
- expo-router@55.0.13(e7e6bff1cf0beac0c272efc28d8685ac):
+ expo-router@56.1.1(f97a815c8b3e5c15c283c5191555858a):
dependencies:
- '@expo/log-box': 55.0.11(@expo/dom-webview@55.0.5)(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@expo/metro-runtime': 55.0.9(@expo/dom-webview@55.0.5)(expo@55.0.14)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@expo/schema-utils': 55.0.3
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.0)
- '@radix-ui/react-tabs': 1.1.13(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@react-navigation/bottom-tabs': 7.15.11(@react-navigation/native@7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-screens@4.23.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@react-navigation/native': 7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@react-navigation/native-stack': 7.14.12(@react-navigation/native@7.2.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-screens@4.23.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@expo/log-box': 56.0.6(@expo/dom-webview@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)
+ '@expo/metro-runtime': 56.0.5(@expo/log-box@56.0.6)(expo@56.0.0-preview.7)(react-dom@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)
+ '@expo/schema-utils': 56.0.1
+ '@expo/ui': 56.0.4(fb48858a35535251866f381b3285822d)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.3)
+ '@radix-ui/react-tabs': 1.1.13(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@react-native-masked-view/masked-view': 0.3.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)
+ '@testing-library/jest-dom': 6.9.1
+ '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1)
client-only: 0.0.1
+ color: 4.2.3
debug: 4.4.3
escape-string-regexp: 4.0.0
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-constants: 55.0.15(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
- expo-glass-effect: 55.0.10(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- expo-image: 55.0.9(expo@55.0.14)(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- expo-linking: 55.0.14(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- expo-server: 55.0.8
- expo-symbols: 55.0.7(expo-font@55.0.6)(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ 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)
+ expo-constants: 56.0.6(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))
+ expo-glass-effect: 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)
+ expo-image: 56.0.4(expo@56.0.0-preview.7)(react-native-web@0.21.2(react-dom@19.2.3(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)
+ expo-linking: 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)
+ expo-server: 56.0.1
+ expo-symbols: 56.0.5(expo-font@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)
fast-deep-equal: 3.1.3
invariant: 2.2.4
nanoid: 3.3.11
query-string: 7.1.3
- react: 19.2.0
+ react: 19.2.3
react-fast-compare: 3.2.2
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-native-is-edge-to-edge: 1.3.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-safe-area-context: 5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-screens: 4.23.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- semver: 7.6.3
+ react-is: 19.2.5
+ 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-native-drawer-layout: 4.2.3(24726e62ce640166e30f09d74bac5c38)
+ react-native-safe-area-context: 5.7.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-screens: 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)
server-only: 0.0.1
sf-symbols-typescript: 2.2.0
shallowequal: 1.1.0
- use-latest-callback: 0.2.6(react@19.2.0)
- vaul: 1.1.2(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ vaul: 1.1.2(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
optionalDependencies:
- '@testing-library/react-native': 14.0.0-beta.0(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(test-renderer@0.15.0(@types/react@19.2.14)(react@19.2.0))
- react-dom: 19.2.0(react@19.2.0)
- react-native-gesture-handler: 2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-reanimated: 4.2.1(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-web: 0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@testing-library/react-native': 14.0.0-beta.0(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.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)(test-renderer@0.15.0(@types/react@19.2.14)(react@19.2.3))
+ react-dom: 19.2.3(react@19.2.3)
+ react-native-gesture-handler: 2.31.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)
+ react-native-reanimated: 4.3.0(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)
+ react-native-web: 0.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
transitivePeerDependencies:
- - '@react-native-masked-view/masked-view'
+ - '@babel/core'
+ - '@testing-library/dom'
- '@types/react'
- '@types/react-dom'
- expo-font
+ - react-native-worklets
- supports-color
- optional: true
-
- expo-server@55.0.7: {}
- expo-server@55.0.8: {}
+ expo-server@56.0.1: {}
- expo-splash-screen@55.0.19(expo@55.0.19)(typescript@5.9.3):
+ expo-splash-screen@56.0.4(expo@56.0.0-preview.7)(typescript@6.0.3):
dependencies:
- '@expo/prebuild-config': 55.0.16(expo@55.0.19)(typescript@5.9.3)
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ '@expo/config-plugins': 56.0.3
+ '@expo/image-utils': 0.9.2(typescript@6.0.3)
+ 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)
+ xml2js: 0.6.0
transitivePeerDependencies:
- supports-color
- typescript
- expo-status-bar@55.0.5(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ expo-sqlite@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):
dependencies:
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-native-is-edge-to-edge: 1.3.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ await-lock: 2.2.2
+ 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)
+ 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)
- expo-structured-headers@55.0.2: {}
-
- expo-symbols@55.0.7(expo-font@55.0.6)(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ expo-status-bar@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):
dependencies:
- '@expo-google-fonts/material-symbols': 0.4.34
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-font: 55.0.6(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- sf-symbols-typescript: 2.2.0
- optional: true
+ 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)
+ 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)
+
+ expo-structured-headers@56.0.0: {}
- expo-symbols@55.0.7(expo-font@55.0.6)(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ expo-symbols@56.0.5(expo-font@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):
dependencies:
'@expo-google-fonts/material-symbols': 0.4.34
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-font: 55.0.6(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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)
+ expo-font: 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)
+ 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)
sf-symbols-typescript: 2.2.0
- expo-system-ui@55.0.16(expo@55.0.19)(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)):
+ expo-system-ui@56.0.4(expo@56.0.0-preview.7)(react-native-web@0.21.2(react-dom@19.2.3(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)):
dependencies:
- '@react-native/normalize-colors': 0.83.6
+ '@react-native/normalize-colors': 0.85.3
debug: 4.4.3
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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)
+ 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)
optionalDependencies:
- react-native-web: 0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react-native-web: 0.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
transitivePeerDependencies:
- supports-color
- expo-updates-interface@55.1.5(expo@55.0.14):
+ expo-updates-interface@56.0.2(expo@56.0.0-preview.7):
dependencies:
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ 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)
- expo-updates@55.0.20(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3):
+ expo-updates@56.0.6(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):
dependencies:
'@expo/code-signing-certificates': 0.0.6
- '@expo/plist': 0.5.2
+ '@expo/plist': 0.6.1
'@expo/spawn-async': 1.7.2
arg: 4.1.3
chalk: 4.1.2
debug: 4.4.3
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-eas-client: 55.0.5
- expo-manifests: 55.0.15(expo@55.0.14)(typescript@5.9.3)
- expo-structured-headers: 55.0.2
- expo-updates-interface: 55.1.5(expo@55.0.14)
+ 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)
+ expo-eas-client: 56.0.1
+ expo-manifests: 56.0.2(expo@56.0.0-preview.7)
+ expo-structured-headers: 56.0.0
+ expo-updates-interface: 56.0.2(expo@56.0.0-preview.7)
getenv: 2.0.0
glob: 13.0.6
ignore: 5.3.2
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ nullthrows: 1.1.1
+ 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)
resolve-from: 5.0.0
transitivePeerDependencies:
- supports-color
- - typescript
-
- expo-web-browser@55.0.14(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)):
- dependencies:
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
-
- expo@55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3):
- dependencies:
- '@babel/runtime': 7.29.2
- '@expo/cli': 55.0.23(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-constants@55.0.15)(expo-font@55.0.6)(expo-router@55.0.13)(expo@55.0.14)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@expo/config': 55.0.14(typescript@5.9.3)
- '@expo/config-plugins': 55.0.8
- '@expo/devtools': 55.0.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@expo/fingerprint': 0.16.6
- '@expo/local-build-cache-provider': 55.0.10(typescript@5.9.3)
- '@expo/log-box': 55.0.10(@expo/dom-webview@55.0.5)(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@expo/metro': 55.0.0
- '@expo/metro-config': 55.0.15(expo@55.0.14)(typescript@5.9.3)
- '@expo/vector-icons': 15.1.1(expo-font@55.0.6)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@ungap/structured-clone': 1.3.0
- babel-preset-expo: 55.0.17(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@55.0.14)(react-refresh@0.14.2)
- expo-asset: 55.0.16(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-constants: 55.0.15(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
- expo-file-system: 55.0.17(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
- expo-font: 55.0.6(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- expo-keep-awake: 55.0.6(expo@55.0.14)(react@19.2.0)
- expo-modules-autolinking: 55.0.17(typescript@5.9.3)
- expo-modules-core: 55.0.22(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- pretty-format: 29.7.0
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-refresh: 0.14.2
- whatwg-url-minimum: 0.1.1
- optionalDependencies:
- '@expo/dom-webview': 55.0.5(expo@55.0.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@expo/metro-runtime': 55.0.9(@expo/dom-webview@55.0.5)(expo@55.0.14)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- transitivePeerDependencies:
- - '@babel/core'
- - bufferutil
- - expo-router
- - expo-widgets
- - react-dom
- - react-native-worklets
- - react-server-dom-webpack
- - supports-color
- - typescript
- - utf-8-validate
- expo@55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3):
+ expo-web-browser@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)):
dependencies:
- '@babel/runtime': 7.29.2
- '@expo/cli': 55.0.27(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-constants@55.0.15)(expo-font@55.0.6)(expo-router@55.0.13)(expo@55.0.19)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@expo/config': 55.0.15(typescript@5.9.3)
- '@expo/config-plugins': 55.0.8
- '@expo/devtools': 55.0.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@expo/fingerprint': 0.16.6
- '@expo/local-build-cache-provider': 55.0.11(typescript@5.9.3)
- '@expo/log-box': 55.0.11(@expo/dom-webview@55.0.5)(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@expo/metro': 55.1.1
- '@expo/metro-config': 55.0.18(expo@55.0.19)(typescript@5.9.3)
- '@expo/vector-icons': 15.1.1(expo-font@55.0.6)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@ungap/structured-clone': 1.3.0
- babel-preset-expo: 55.0.19(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@55.0.19)(react-refresh@0.14.2)
- expo-asset: 55.0.16(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-constants: 55.0.15(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
- expo-file-system: 55.0.17(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
- expo-font: 55.0.6(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- expo-keep-awake: 55.0.7(expo@55.0.19)(react@19.2.0)
- expo-modules-autolinking: 55.0.19(typescript@5.9.3)
- expo-modules-core: 55.0.24(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- pretty-format: 29.7.0
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-refresh: 0.14.2
- whatwg-url-minimum: 0.1.1
- optionalDependencies:
- '@expo/dom-webview': 55.0.5(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@expo/metro-runtime': 55.0.9(@expo/dom-webview@55.0.5)(expo@55.0.19)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- transitivePeerDependencies:
- - '@babel/core'
- - bufferutil
- - expo-router
- - expo-widgets
- - react-dom
- - react-native-worklets
- - react-server-dom-webpack
- - supports-color
- - typescript
- - utf-8-validate
+ 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)
+ 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)
- expo@55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3):
+ 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):
dependencies:
'@babel/runtime': 7.29.2
- '@expo/cli': 55.0.27(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-constants@55.0.15)(expo-font@55.0.6)(expo-router@55.0.13)(expo@55.0.19)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- '@expo/config': 55.0.15(typescript@5.9.3)
- '@expo/config-plugins': 55.0.8
- '@expo/devtools': 55.0.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@expo/fingerprint': 0.16.6
- '@expo/local-build-cache-provider': 55.0.11(typescript@5.9.3)
- '@expo/log-box': 55.0.11(@expo/dom-webview@55.0.5)(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@expo/metro': 55.1.1
- '@expo/metro-config': 55.0.18(expo@55.0.19)(typescript@5.9.3)
- '@expo/vector-icons': 15.1.1(expo-font@55.0.6)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@expo/cli': 56.1.0(@expo/dom-webview@56.0.4)(@expo/metro-runtime@56.0.5)(expo-constants@56.0.6)(expo-font@56.0.3)(expo-router@56.1.1)(expo@56.0.0-preview.7)(react-dom@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)
+ '@expo/config': 56.0.3(typescript@6.0.3)
+ '@expo/config-plugins': 56.0.3
+ '@expo/devtools': 56.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)
+ '@expo/fingerprint': 0.17.4
+ '@expo/local-build-cache-provider': 56.0.2(typescript@6.0.3)
+ '@expo/log-box': 56.0.6(@expo/dom-webview@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)
+ '@expo/metro': 56.0.0
+ '@expo/metro-config': 56.0.5(expo@56.0.0-preview.7)(typescript@6.0.3)
+ '@expo/vector-icons': 15.1.1(expo-font@56.0.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)
'@ungap/structured-clone': 1.3.0
- babel-preset-expo: 55.0.19(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@55.0.19)(react-refresh@0.14.2)
- expo-asset: 55.0.16(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-constants: 55.0.15(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
- expo-file-system: 55.0.17(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
- expo-font: 55.0.6(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- expo-keep-awake: 55.0.7(expo@55.0.19)(react@19.2.0)
- expo-modules-autolinking: 55.0.19(typescript@5.9.3)
- expo-modules-core: 55.0.24(react-native-worklets@0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ babel-preset-expo: 56.0.5(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@56.0.0-preview.7)(react-refresh@0.14.2)
+ expo-asset: 56.0.6(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)(typescript@6.0.3)
+ expo-constants: 56.0.6(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))
+ expo-file-system: 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))
+ expo-font: 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-keep-awake: 56.0.3(expo@56.0.0-preview.7)(react@19.2.3)
+ expo-modules-autolinking: 56.0.3(typescript@6.0.3)
+ expo-modules-core: 56.0.5(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)
pretty-format: 29.7.0
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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-refresh: 0.14.2
- whatwg-url-minimum: 0.1.1
+ whatwg-url-minimum: 0.1.2
optionalDependencies:
- '@expo/dom-webview': 55.0.5(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- '@expo/metro-runtime': 55.0.9(@expo/dom-webview@55.0.5)(expo@55.0.19)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@expo/dom-webview': 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)
+ '@expo/metro-runtime': 56.0.5(@expo/log-box@56.0.6)(expo@56.0.0-preview.7)(react-dom@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)
+ 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)
transitivePeerDependencies:
- '@babel/core'
- bufferutil
- expo-router
- expo-widgets
- - react-dom
- react-native-worklets
- react-server-dom-webpack
- supports-color
@@ -21305,12 +21193,6 @@ snapshots:
locate-path: 7.2.0
path-exists: 5.0.0
- fix-dts-default-cjs-exports@1.0.1:
- dependencies:
- magic-string: 0.30.21
- mlly: 1.8.2
- rollup: 4.60.1
-
flat-cache@4.0.1:
dependencies:
flatted: 3.4.2
@@ -21340,6 +21222,14 @@ 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: {}
@@ -21430,6 +21320,10 @@ snapshots:
dependencies:
resolve-pkg-maps: 1.0.0
+ get-tsconfig@5.0.0-beta.5:
+ dependencies:
+ resolve-pkg-maps: 1.0.0
+
getenv@2.0.0: {}
github-slugger@1.5.0: {}
@@ -21657,6 +21551,8 @@ snapshots:
hermes-compiler@0.14.1: {}
+ hermes-compiler@250829098.0.10: {}
+
hermes-estree@0.25.1: {}
hermes-estree@0.32.0: {}
@@ -21706,6 +21602,8 @@ snapshots:
dependencies:
react-is: 16.13.1
+ hookable@6.1.1: {}
+
hosted-git-info@7.0.2:
dependencies:
lru-cache: 10.4.3
@@ -21717,9 +21615,9 @@ snapshots:
readable-stream: 2.3.8
wbuf: 1.7.3
- html-encoding-sniffer@4.0.0:
+ html-encoding-sniffer@3.0.0:
dependencies:
- whatwg-encoding: 3.1.1
+ whatwg-encoding: 2.0.0
html-entities@2.6.0: {}
@@ -21796,9 +21694,10 @@ snapshots:
http-parser-js@0.5.10: {}
- http-proxy-agent@7.0.2:
+ http-proxy-agent@5.0.0:
dependencies:
- agent-base: 7.1.4
+ '@tootallnate/once': 2.0.1
+ agent-base: 6.0.2
debug: 4.4.3
transitivePeerDependencies:
- supports-color
@@ -21839,6 +21738,13 @@ 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
@@ -21894,6 +21800,8 @@ snapshots:
pkg-dir: 4.2.0
resolve-cwd: 3.0.0
+ import-without-cache@0.4.0: {}
+
imurmurhash@0.1.4: {}
indent-string@4.0.0: {}
@@ -22317,7 +22225,7 @@ snapshots:
'@types/node': 25.6.0
jest-mock: 29.7.0
jest-util: 29.7.0
- jsdom: 26.1.0
+ jsdom: 20.0.3
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -22332,50 +22240,19 @@ snapshots:
jest-mock: 29.7.0
jest-util: 29.7.0
- jest-expo@55.0.15(@babel/core@7.29.0)(expo@55.0.14)(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3):
- dependencies:
- '@expo/config': 55.0.14(typescript@5.9.3)
- '@expo/json-file': 10.0.13
- '@jest/create-cache-key-function': 29.7.0
- '@jest/globals': 29.7.0
- babel-jest: 29.7.0(@babel/core@7.29.0)
- expo: 55.0.14(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- jest-environment-jsdom: 29.7.0
- jest-snapshot: 29.7.0
- jest-watch-select-projects: 2.0.0
- jest-watch-typeahead: 2.2.1(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))
- json5: 2.2.3
- lodash: 4.18.1
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-test-renderer: 19.2.0(react@19.2.0)
- server-only: 0.0.1
- stacktrace-js: 2.0.2
- transitivePeerDependencies:
- - '@babel/core'
- - bufferutil
- - canvas
- - jest
- - react
- - supports-color
- - typescript
- - utf-8-validate
-
- jest-expo@55.0.15(@babel/core@7.29.0)(expo@55.0.19)(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3):
+ jest-expo@56.0.0(@babel/core@7.29.0)(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.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):
dependencies:
- '@expo/config': 55.0.14(typescript@5.9.3)
- '@expo/json-file': 10.0.13
'@jest/create-cache-key-function': 29.7.0
'@jest/globals': 29.7.0
babel-jest: 29.7.0(@babel/core@7.29.0)
- expo: 55.0.19(@babel/core@7.29.0)(@expo/dom-webview@55.0.5)(@expo/metro-runtime@55.0.9)(expo-router@55.0.13)(react-dom@19.2.0(react@19.2.0))(react-native-worklets@0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
jest-environment-jsdom: 29.7.0
jest-snapshot: 29.7.0
jest-watch-select-projects: 2.0.0
jest-watch-typeahead: 2.2.1(jest@29.7.0(@types/node@25.6.0)(babel-plugin-macros@3.1.0))
json5: 2.2.3
lodash: 4.18.1
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-test-renderer: 19.2.0(react@19.2.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-test-renderer: 19.2.3(react@19.2.3)
server-only: 0.0.1
stacktrace-js: 2.0.2
transitivePeerDependencies:
@@ -22385,7 +22262,6 @@ snapshots:
- jest
- react
- supports-color
- - typescript
- utf-8-validate
jest-get-type@29.6.3: {}
@@ -22629,14 +22505,12 @@ snapshots:
'@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
- jotai@2.19.1(@babel/core@7.29.0)(@babel/template@7.28.6)(@types/react@19.2.14)(react@19.2.0):
+ jotai@2.19.1(@babel/core@7.29.0)(@babel/template@7.28.6)(@types/react@19.2.14)(react@19.2.3):
optionalDependencies:
'@babel/core': 7.29.0
'@babel/template': 7.28.6
'@types/react': 19.2.14
- react: 19.2.0
-
- joycon@3.1.1: {}
+ react: 19.2.3
js-tokens@4.0.0: {}
@@ -22651,28 +22525,34 @@ snapshots:
jsc-safe-url@0.2.4: {}
- jsdom@26.1.0:
+ jsdom@20.0.3:
dependencies:
- cssstyle: 4.6.0
- data-urls: 5.0.0
+ 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
decimal.js: 10.6.0
- html-encoding-sniffer: 4.0.0
- http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6
+ 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
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: 5.1.2
- w3c-xmlserializer: 5.0.0
+ tough-cookie: 4.1.4
+ w3c-xmlserializer: 4.0.0
webidl-conversions: 7.0.0
- whatwg-encoding: 3.1.1
- whatwg-mimetype: 4.0.0
- whatwg-url: 14.2.0
+ whatwg-encoding: 2.0.0
+ whatwg-mimetype: 3.0.0
+ whatwg-url: 11.0.0
ws: 8.20.0
- xml-name-validator: 5.0.0
+ xml-name-validator: 4.0.0
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -22835,11 +22715,9 @@ snapshots:
lines-and-columns@1.2.4: {}
- linkify-it@5.0.0:
+ linkify-it@2.2.0:
dependencies:
- uc.micro: 2.1.0
-
- load-tsconfig@0.2.5: {}
+ uc.micro: 1.0.6
loader-runner@4.3.1: {}
@@ -22944,14 +22822,13 @@ snapshots:
markdown-extensions@2.0.0: {}
- markdown-it@14.1.1:
+ markdown-it@10.0.0:
dependencies:
- 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
+ argparse: 1.0.10
+ entities: 2.0.3
+ linkify-it: 2.2.0
+ mdurl: 1.0.1
+ uc.micro: 1.0.6
markdown-table@2.0.0:
dependencies:
@@ -23157,7 +23034,7 @@ snapshots:
mdn-data@2.0.30: {}
- mdurl@2.0.0: {}
+ mdurl@1.0.1: {}
media-typer@0.3.0: {}
@@ -23221,6 +23098,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ metro-babel-transformer@0.84.4:
+ dependencies:
+ '@babel/core': 7.29.0
+ flow-enums-runtime: 0.0.6
+ hermes-parser: 0.35.0
+ metro-cache-key: 0.84.4
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+
metro-cache-key@0.83.5:
dependencies:
flow-enums-runtime: 0.0.6
@@ -23229,6 +23116,10 @@ snapshots:
dependencies:
flow-enums-runtime: 0.0.6
+ metro-cache-key@0.84.4:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+
metro-cache@0.83.5:
dependencies:
exponential-backoff: 3.1.3
@@ -23247,6 +23138,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ metro-cache@0.84.4:
+ dependencies:
+ exponential-backoff: 3.1.3
+ flow-enums-runtime: 0.0.6
+ https-proxy-agent: 7.0.6
+ metro-core: 0.84.4
+ transitivePeerDependencies:
+ - supports-color
+
metro-config@0.83.5:
dependencies:
connect: 3.7.0
@@ -23277,6 +23177,21 @@ snapshots:
- supports-color
- utf-8-validate
+ metro-config@0.84.4:
+ dependencies:
+ connect: 3.7.0
+ flow-enums-runtime: 0.0.6
+ jest-validate: 29.7.0
+ metro: 0.84.4
+ metro-cache: 0.84.4
+ metro-core: 0.84.4
+ metro-runtime: 0.84.4
+ yaml: 2.8.3
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
metro-core@0.83.5:
dependencies:
flow-enums-runtime: 0.0.6
@@ -23289,6 +23204,12 @@ snapshots:
lodash.throttle: 4.1.1
metro-resolver: 0.83.7
+ metro-core@0.84.4:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+ lodash.throttle: 4.1.1
+ metro-resolver: 0.84.4
+
metro-file-map@0.83.5:
dependencies:
debug: 4.4.3
@@ -23317,6 +23238,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ metro-file-map@0.84.4:
+ dependencies:
+ debug: 4.4.3
+ fb-watchman: 2.0.2
+ flow-enums-runtime: 0.0.6
+ graceful-fs: 4.2.11
+ invariant: 2.2.4
+ jest-worker: 29.7.0
+ micromatch: 4.0.8
+ nullthrows: 1.1.1
+ walker: 1.0.8
+ transitivePeerDependencies:
+ - supports-color
+
metro-minify-terser@0.83.5:
dependencies:
flow-enums-runtime: 0.0.6
@@ -23327,6 +23262,11 @@ snapshots:
flow-enums-runtime: 0.0.6
terser: 5.46.1
+ metro-minify-terser@0.84.4:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+ terser: 5.46.1
+
metro-resolver@0.83.5:
dependencies:
flow-enums-runtime: 0.0.6
@@ -23335,6 +23275,10 @@ snapshots:
dependencies:
flow-enums-runtime: 0.0.6
+ metro-resolver@0.84.4:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+
metro-runtime@0.83.5:
dependencies:
'@babel/runtime': 7.29.2
@@ -23345,6 +23289,11 @@ snapshots:
'@babel/runtime': 7.29.2
flow-enums-runtime: 0.0.6
+ metro-runtime@0.84.4:
+ dependencies:
+ '@babel/runtime': 7.29.2
+ flow-enums-runtime: 0.0.6
+
metro-source-map@0.83.5:
dependencies:
'@babel/traverse': 7.29.0
@@ -23373,6 +23322,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ metro-source-map@0.84.4:
+ dependencies:
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
+ flow-enums-runtime: 0.0.6
+ invariant: 2.2.4
+ metro-symbolicate: 0.84.4
+ nullthrows: 1.1.1
+ ob1: 0.84.4
+ source-map: 0.5.7
+ vlq: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+
metro-symbolicate@0.83.5:
dependencies:
flow-enums-runtime: 0.0.6
@@ -23395,6 +23358,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ metro-symbolicate@0.84.4:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+ invariant: 2.2.4
+ metro-source-map: 0.84.4
+ nullthrows: 1.1.1
+ source-map: 0.5.7
+ vlq: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+
metro-transform-plugins@0.83.5:
dependencies:
'@babel/core': 7.29.0
@@ -23417,6 +23391,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ metro-transform-plugins@0.84.4:
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/template': 7.28.6
+ '@babel/traverse': 7.29.0
+ flow-enums-runtime: 0.0.6
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+
metro-transform-worker@0.83.5:
dependencies:
'@babel/core': 7.29.0
@@ -23457,6 +23442,26 @@ snapshots:
- supports-color
- utf-8-validate
+ metro-transform-worker@0.84.4:
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/parser': 7.29.2
+ '@babel/types': 7.29.0
+ flow-enums-runtime: 0.0.6
+ metro: 0.84.4
+ metro-babel-transformer: 0.84.4
+ metro-cache: 0.84.4
+ metro-cache-key: 0.84.4
+ metro-minify-terser: 0.84.4
+ metro-source-map: 0.84.4
+ metro-transform-plugins: 0.84.4
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
metro@0.83.5:
dependencies:
'@babel/code-frame': 7.29.0
@@ -23504,7 +23509,53 @@ snapshots:
- supports-color
- utf-8-validate
- metro@0.83.7:
+ metro@0.83.7:
+ dependencies:
+ '@babel/code-frame': 7.29.0
+ '@babel/core': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/parser': 7.29.2
+ '@babel/template': 7.28.6
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
+ accepts: 2.0.0
+ ci-info: 2.0.0
+ connect: 3.7.0
+ debug: 4.4.3
+ error-stack-parser: 2.1.4
+ flow-enums-runtime: 0.0.6
+ graceful-fs: 4.2.11
+ hermes-parser: 0.35.0
+ image-size: 1.2.1
+ invariant: 2.2.4
+ jest-worker: 29.7.0
+ jsc-safe-url: 0.2.4
+ lodash.throttle: 4.1.1
+ metro-babel-transformer: 0.83.7
+ metro-cache: 0.83.7
+ metro-cache-key: 0.83.7
+ metro-config: 0.83.7
+ metro-core: 0.83.7
+ metro-file-map: 0.83.7
+ metro-resolver: 0.83.7
+ metro-runtime: 0.83.7
+ metro-source-map: 0.83.7
+ metro-symbolicate: 0.83.7
+ metro-transform-plugins: 0.83.7
+ metro-transform-worker: 0.83.7
+ mime-types: 3.0.2
+ nullthrows: 1.1.1
+ serialize-error: 2.1.0
+ source-map: 0.5.7
+ throat: 5.0.0
+ ws: 7.5.10
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
+ metro@0.84.4:
dependencies:
'@babel/code-frame': 7.29.0
'@babel/core': 7.29.0
@@ -23526,18 +23577,18 @@ snapshots:
jest-worker: 29.7.0
jsc-safe-url: 0.2.4
lodash.throttle: 4.1.1
- metro-babel-transformer: 0.83.7
- metro-cache: 0.83.7
- metro-cache-key: 0.83.7
- metro-config: 0.83.7
- metro-core: 0.83.7
- metro-file-map: 0.83.7
- metro-resolver: 0.83.7
- metro-runtime: 0.83.7
- metro-source-map: 0.83.7
- metro-symbolicate: 0.83.7
- metro-transform-plugins: 0.83.7
- metro-transform-worker: 0.83.7
+ metro-babel-transformer: 0.84.4
+ metro-cache: 0.84.4
+ metro-cache-key: 0.84.4
+ metro-config: 0.84.4
+ metro-core: 0.84.4
+ metro-file-map: 0.84.4
+ metro-resolver: 0.84.4
+ metro-runtime: 0.84.4
+ metro-source-map: 0.84.4
+ metro-symbolicate: 0.84.4
+ metro-transform-plugins: 0.84.4
+ metro-transform-worker: 0.84.4
mime-types: 3.0.2
nullthrows: 1.1.1
serialize-error: 2.1.0
@@ -23904,13 +23955,6 @@ snapshots:
mkdirp@1.0.4: {}
- mlly@1.8.2:
- dependencies:
- acorn: 8.16.0
- pathe: 2.0.3
- pkg-types: 1.3.1
- ufo: 1.6.3
-
morgan@1.10.1:
dependencies:
basic-auth: 2.0.1
@@ -23934,8 +23978,6 @@ snapshots:
dns-packet: 5.6.1
thunky: 1.1.0
- multitars@0.2.5: {}
-
multitars@1.0.0: {}
mz@2.7.0:
@@ -24032,6 +24074,10 @@ snapshots:
dependencies:
flow-enums-runtime: 0.0.6
+ ob1@0.84.4:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+
object-assign@4.1.1: {}
object-inspect@1.13.4: {}
@@ -24076,6 +24122,8 @@ snapshots:
obuf@1.1.2: {}
+ obug@2.1.1: {}
+
on-exit-leak-free@2.1.2: {}
on-finished@2.3.0:
@@ -24376,12 +24424,6 @@ snapshots:
dependencies:
find-up: 6.3.0
- pkg-types@1.3.1:
- dependencies:
- confbox: 0.1.8
- mlly: 1.8.2
- pathe: 2.0.3
-
pkijs@3.4.0:
dependencies:
'@noble/hashes': 1.4.0
@@ -24547,17 +24589,9 @@ snapshots:
'@csstools/utilities': 2.0.0(postcss@8.5.9)
postcss: 8.5.9
- postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.9)(yaml@2.8.3):
- dependencies:
- lilconfig: 3.1.3
- optionalDependencies:
- jiti: 1.21.7
- postcss: 8.5.9
- yaml: 2.8.3
-
- postcss-loader@7.3.4(postcss@8.5.9)(typescript@5.9.3)(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))):
+ 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))):
dependencies:
- cosmiconfig: 8.3.6(typescript@5.9.3)
+ cosmiconfig: 8.3.6(typescript@6.0.3)
jiti: 1.21.7
postcss: 8.5.9
semver: 7.7.4
@@ -24905,11 +24939,11 @@ snapshots:
pretty-time@1.1.0: {}
- prism-react-renderer@2.4.1(react@19.2.0):
+ prism-react-renderer@2.4.1(react@19.2.3):
dependencies:
'@types/prismjs': 1.26.6
clsx: 2.1.1
- react: 19.2.0
+ react: 19.2.3
prismjs@1.30.0: {}
@@ -24951,7 +24985,9 @@ snapshots:
forwarded: 0.2.0
ipaddr.js: 1.9.1
- punycode.js@2.3.1: {}
+ psl@1.15.0:
+ dependencies:
+ punycode: 2.3.1
punycode@2.3.1: {}
@@ -24977,6 +25013,8 @@ snapshots:
quansync@0.2.11: {}
+ quansync@1.0.0: {}
+
query-string@7.1.3:
dependencies:
decode-uri-component: 0.2.2
@@ -24984,6 +25022,8 @@ 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:
@@ -24994,6 +25034,10 @@ 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: {}
@@ -25019,9 +25063,9 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- react-compiler-runtime@1.0.0(react@19.2.0):
+ react-compiler-runtime@1.0.0(react@19.2.3):
dependencies:
- react: 19.2.0
+ react: 19.2.3
react-devtools-core@6.1.5:
dependencies:
@@ -25031,9 +25075,13 @@ snapshots:
- bufferutil
- utf-8-validate
- react-docgen-typescript@2.2.2(typescript@5.9.3):
+ react-docgen-typescript@1.22.0(typescript@6.0.3):
dependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
+
+ react-docgen-typescript@2.2.2(typescript@6.0.3):
+ dependencies:
+ typescript: 6.0.3
react-docgen@8.0.3:
dependencies:
@@ -25050,16 +25098,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- react-dom@19.2.0(react@19.2.0):
+ react-dom@19.2.3(react@19.2.0):
dependencies:
react: 19.2.0
scheduler: 0.27.0
+ react-dom@19.2.3(react@19.2.3):
+ dependencies:
+ react: 19.2.3
+ scheduler: 0.27.0
+
react-fast-compare@3.2.2: {}
- react-freeze@1.0.4(react@19.2.0):
+ react-freeze@1.0.4(react@19.2.3):
dependencies:
- react: 19.2.0
+ react: 19.2.3
react-is@16.13.1: {}
@@ -25069,120 +25122,157 @@ snapshots:
react-is@19.2.5: {}
- react-json-view-lite@2.5.0(react@19.2.0):
+ react-json-view-lite@2.5.0(react@19.2.3):
dependencies:
- react: 19.2.0
+ react: 19.2.3
- react-loadable-ssr-addon-v5-slorber@1.0.3(@docusaurus/react-loadable@6.0.0(react@19.2.0))(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))):
+ react-loadable-ssr-addon-v5-slorber@1.0.3(@docusaurus/react-loadable@6.0.0(react@19.2.3))(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))):
dependencies:
'@babel/runtime': 7.29.2
- react-loadable: '@docusaurus/react-loadable@6.0.0(react@19.2.0)'
+ react-loadable: '@docusaurus/react-loadable@6.0.0(react@19.2.3)'
webpack: 5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))
+ react-native-drawer-layout@4.2.3(24726e62ce640166e30f09d74bac5c38):
+ dependencies:
+ color: 4.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-native-gesture-handler: 2.31.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)
+ react-native-reanimated: 4.3.0(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)
+ use-latest-callback: 0.2.6(react@19.2.3)
+
react-native-fit-image@1.5.5:
dependencies:
prop-types: 15.8.1
- react-native-gesture-handler@2.30.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ react-native-gesture-handler@2.30.1(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:
'@egjs/hammerjs': 2.0.17
hoist-non-react-statics: 3.3.2
invariant: 2.2.4
react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(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)
- react-native-is-edge-to-edge@1.2.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ react-native-gesture-handler@2.31.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:
+ '@egjs/hammerjs': 2.0.17
+ '@types/react-test-renderer': 19.1.0
+ hoist-non-react-statics: 3.3.2
+ invariant: 2.2.4
react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(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)
+
+ react-native-gesture-handler@2.31.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:
+ '@egjs/hammerjs': 2.0.17
+ '@types/react-test-renderer': 19.1.0
+ hoist-non-react-statics: 3.3.2
+ invariant: 2.2.4
+ 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-native-is-edge-to-edge@1.3.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ react-native-is-edge-to-edge@1.3.1(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:
react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(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)
+
+ react-native-is-edge-to-edge@1.3.1(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:
+ 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-native-markdown-display@7.0.2(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ 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: 14.1.1
+ markdown-it: 10.0.0
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@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(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)
react-native-fit-image: 1.5.5
- react-native-modal-datetime-picker@18.0.0(@react-native-community/datetimepicker@8.6.0(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)):
+ react-native-modal-datetime-picker@18.0.0(@react-native-community/datetimepicker@8.6.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))(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)):
dependencies:
- '@react-native-community/datetimepicker': 8.6.0(expo@55.0.19)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@react-native-community/datetimepicker': 8.6.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))(react@19.2.0)
prop-types: 15.8.1
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(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)
- react-native-reanimated@4.2.1(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ react-native-reanimated@4.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.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))(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:
react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-native-is-edge-to-edge: 1.2.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-worklets: 0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- semver: 7.7.3
+ 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-native-is-edge-to-edge: 1.3.1(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)
+ 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.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)
+ semver: 7.7.4
- react-native-reanimated@4.2.3(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ react-native-reanimated@4.3.0(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):
dependencies:
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-native-is-edge-to-edge: 1.3.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-worklets: 0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ 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-native-is-edge-to-edge: 1.3.1(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-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)
semver: 7.7.4
- react-native-reanimated@4.2.3(react-native-worklets@0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ react-native-safe-area-context@5.7.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))(react@19.2.0):
dependencies:
react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- react-native-is-edge-to-edge: 1.3.1(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- react-native-worklets: 0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- semver: 7.7.4
+ 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-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ react-native-safe-area-context@5.7.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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3):
dependencies:
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3)
- react-native-screens@4.23.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ react-native-safe-area-context@5.7.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):
dependencies:
- react: 19.2.0
- react-freeze: 1.0.4(react@19.2.0)
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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-native-screens@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):
+ dependencies:
+ react: 19.2.3
+ react-freeze: 1.0.4(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)
warn-once: 0.1.1
- react-native-svg@15.15.3(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ react-native-svg@15.15.3(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-select: 5.2.2
css-tree: 1.1.3
react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(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)
+ warn-once: 0.1.1
+
+ react-native-svg@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):
+ dependencies:
+ css-select: 5.2.2
+ css-tree: 1.1.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)
warn-once: 0.1.1
- react-native-test-app@5.1.4(@expo/config-plugins@55.0.8)(memfs@4.57.1(tslib@2.8.1))(metro@0.83.7)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ react-native-test-app@5.1.4(@expo/config-plugins@56.0.3)(memfs@4.57.1(tslib@2.8.1))(metro@0.84.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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3):
dependencies:
'@isaacs/cliui': 9.0.0
- '@rnx-kit/react-native-host': 0.5.16(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))
- '@rnx-kit/tools-react-native': 2.3.7(memfs@4.57.1(tslib@2.8.1))(metro@0.83.7)
+ '@rnx-kit/react-native-host': 0.5.16(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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))
+ '@rnx-kit/tools-react-native': 2.3.7(memfs@4.57.1(tslib@2.8.1))(metro@0.84.4)
ajv: 8.18.0
fast-xml-parser: 5.7.2
prompts: 2.4.2
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
+ 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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3)
semver: 7.7.4
optionalDependencies:
- '@expo/config-plugins': 55.0.8
+ '@expo/config-plugins': 56.0.3
transitivePeerDependencies:
- memfs
- metro
- react-native-url-polyfill@3.0.0(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)):
+ react-native-url-polyfill@3.0.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)):
dependencies:
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.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)
whatwg-url-without-unicode: 8.0.0-3
- react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
+ react-native-web@0.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
dependencies:
'@babel/runtime': 7.29.2
'@react-native/normalize-colors': 0.74.89
@@ -25191,60 +25281,62 @@ snapshots:
memoize-one: 6.0.0
nullthrows: 1.1.1
postcss-value-parser: 4.2.0
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
styleq: 0.1.3
transitivePeerDependencies:
- encoding
- react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ 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.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:
'@babel/core': 7.29.0
'@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.29.0)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.29.0)
- '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.29.0)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.29.0)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-class-properties': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-classes': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-optional-chaining': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.29.0)
'@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.29.0)
'@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.29.0)
- '@babel/preset-typescript': 7.27.1(@babel/core@7.29.0)
+ '@babel/preset-typescript': 7.28.5(@babel/core@7.29.0)
+ '@react-native/metro-config': 0.85.3(@babel/core@7.29.0)
convert-source-map: 2.0.0
react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- semver: 7.7.3
+ 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)
+ semver: 7.7.4
transitivePeerDependencies:
- supports-color
- react-native-worklets@0.7.4(@babel/core@7.29.0)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ 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):
dependencies:
'@babel/core': 7.29.0
'@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.29.0)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.29.0)
- '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.29.0)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.29.0)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-class-properties': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-classes': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-optional-chaining': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.29.0)
'@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.29.0)
'@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.29.0)
- '@babel/preset-typescript': 7.27.1(@babel/core@7.29.0)
+ '@babel/preset-typescript': 7.28.5(@babel/core@7.29.0)
+ '@react-native/metro-config': 0.85.3(@babel/core@7.29.0)
convert-source-map: 2.0.0
- react: 19.2.0
- react-native: 0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0)
- semver: 7.7.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)
+ semver: 7.7.4
transitivePeerDependencies:
- supports-color
- react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(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):
dependencies:
'@jest/create-cache-key-function': 29.7.0
'@react-native/assets-registry': 0.83.4
'@react-native/codegen': 0.83.4(@babel/core@7.29.0)
- '@react-native/community-cli-plugin': 0.83.4(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))
+ '@react-native/community-cli-plugin': 0.83.4(@react-native-community/cli@20.0.0(typescript@6.0.3))(@react-native/metro-config@0.85.3(@babel/core@7.29.0))
'@react-native/gradle-plugin': 0.83.4
'@react-native/js-polyfills': 0.83.4
'@react-native/normalize-colors': 0.83.4
- '@react-native/virtualized-lists': 0.83.4(@types/react@19.2.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@react-native/virtualized-lists': 0.83.4(@types/react@19.2.14)(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)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -25283,45 +25375,43 @@ snapshots:
- supports-color
- utf-8-validate
- react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.2))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3):
dependencies:
- '@jest/create-cache-key-function': 29.7.0
- '@react-native/assets-registry': 0.83.4
- '@react-native/codegen': 0.83.4(@babel/core@7.29.0)
- '@react-native/community-cli-plugin': 0.83.4(@react-native-community/cli@20.0.0(typescript@6.0.2))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))
- '@react-native/gradle-plugin': 0.83.4
- '@react-native/js-polyfills': 0.83.4
- '@react-native/normalize-colors': 0.83.4
- '@react-native/virtualized-lists': 0.83.4(@types/react@19.2.14)(react-native@0.83.4(@babel/core@7.29.0)(@react-native-community/cli@20.0.0(typescript@6.0.2))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@react-native/assets-registry': 0.85.3
+ '@react-native/codegen': 0.85.3(@babel/core@7.29.0)
+ '@react-native/community-cli-plugin': 0.85.3(@react-native-community/cli@20.0.0(typescript@6.0.3))(@react-native/metro-config@0.83.4(@babel/core@7.29.0))
+ '@react-native/gradle-plugin': 0.85.3
+ '@react-native/js-polyfills': 0.85.3
+ '@react-native/normalize-colors': 0.85.3
+ '@react-native/virtualized-lists': 0.85.3(@types/react@19.2.14)(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.83.4(@babel/core@7.29.0))(@types/react@19.2.14)(react@19.2.3))(react@19.2.3)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
- babel-jest: 29.7.0(@babel/core@7.29.0)
- babel-plugin-syntax-hermes-parser: 0.32.0
+ babel-plugin-syntax-hermes-parser: 0.33.3
base64-js: 1.5.1
commander: 12.1.0
flow-enums-runtime: 0.0.6
- glob: 7.2.3
- hermes-compiler: 0.14.1
+ hermes-compiler: 250829098.0.10
invariant: 2.2.4
- jest-environment-node: 29.7.0
memoize-one: 5.2.1
- metro-runtime: 0.83.5
- metro-source-map: 0.83.5
+ metro-runtime: 0.84.4
+ metro-source-map: 0.84.4
nullthrows: 1.1.1
pretty-format: 29.7.0
promise: 8.3.0
- react: 19.2.0
+ react: 19.2.3
react-devtools-core: 6.1.5
react-refresh: 0.14.2
regenerator-runtime: 0.13.11
scheduler: 0.27.0
semver: 7.7.4
stacktrace-parser: 0.1.11
+ tinyglobby: 0.2.16
whatwg-fetch: 3.6.20
ws: 7.5.10
yargs: 17.7.2
optionalDependencies:
+ '@react-native/jest-preset': 0.85.3(@babel/core@7.29.0)(react@19.2.3)
'@types/react': 19.2.14
transitivePeerDependencies:
- '@babel/core'
@@ -25331,52 +25421,98 @@ snapshots:
- supports-color
- utf-8-validate
- react-reconciler@0.31.0(react@19.2.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):
dependencies:
- react: 19.2.0
+ '@react-native/assets-registry': 0.85.3
+ '@react-native/codegen': 0.85.3(@babel/core@7.29.0)
+ '@react-native/community-cli-plugin': 0.85.3(@react-native-community/cli@20.0.0(typescript@6.0.3))(@react-native/metro-config@0.85.3(@babel/core@7.29.0))
+ '@react-native/gradle-plugin': 0.85.3
+ '@react-native/js-polyfills': 0.85.3
+ '@react-native/normalize-colors': 0.85.3
+ '@react-native/virtualized-lists': 0.85.3(@types/react@19.2.14)(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)
+ abort-controller: 3.0.0
+ anser: 1.4.10
+ ansi-regex: 5.0.1
+ babel-plugin-syntax-hermes-parser: 0.33.3
+ base64-js: 1.5.1
+ commander: 12.1.0
+ flow-enums-runtime: 0.0.6
+ hermes-compiler: 250829098.0.10
+ invariant: 2.2.4
+ memoize-one: 5.2.1
+ metro-runtime: 0.84.4
+ metro-source-map: 0.84.4
+ nullthrows: 1.1.1
+ pretty-format: 29.7.0
+ promise: 8.3.0
+ react: 19.2.3
+ react-devtools-core: 6.1.5
+ react-refresh: 0.14.2
+ regenerator-runtime: 0.13.11
+ scheduler: 0.27.0
+ semver: 7.7.4
+ stacktrace-parser: 0.1.11
+ tinyglobby: 0.2.16
+ whatwg-fetch: 3.6.20
+ ws: 7.5.10
+ yargs: 17.7.2
+ optionalDependencies:
+ '@react-native/jest-preset': 0.85.3(@babel/core@7.29.0)(react@19.2.3)
+ '@types/react': 19.2.14
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@react-native-community/cli'
+ - '@react-native/metro-config'
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
+ react-reconciler@0.31.0(react@19.2.3):
+ dependencies:
+ react: 19.2.3
scheduler: 0.25.0
react-refresh@0.14.2: {}
react-refresh@0.18.0: {}
- react-remove-scroll-bar@2.3.8(@types/react@19.2.14)(react@19.2.0):
+ react-remove-scroll-bar@2.3.8(@types/react@19.2.14)(react@19.2.3):
dependencies:
- react: 19.2.0
- react-style-singleton: 2.2.3(@types/react@19.2.14)(react@19.2.0)
+ react: 19.2.3
+ react-style-singleton: 2.2.3(@types/react@19.2.14)(react@19.2.3)
tslib: 2.8.1
optionalDependencies:
'@types/react': 19.2.14
- react-remove-scroll@2.7.2(@types/react@19.2.14)(react@19.2.0):
+ react-remove-scroll@2.7.2(@types/react@19.2.14)(react@19.2.3):
dependencies:
- react: 19.2.0
- react-remove-scroll-bar: 2.3.8(@types/react@19.2.14)(react@19.2.0)
- react-style-singleton: 2.2.3(@types/react@19.2.14)(react@19.2.0)
+ react: 19.2.3
+ react-remove-scroll-bar: 2.3.8(@types/react@19.2.14)(react@19.2.3)
+ react-style-singleton: 2.2.3(@types/react@19.2.14)(react@19.2.3)
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@19.2.14)(react@19.2.0)
- use-sidecar: 1.1.3(@types/react@19.2.14)(react@19.2.0)
+ use-callback-ref: 1.3.3(@types/react@19.2.14)(react@19.2.3)
+ use-sidecar: 1.1.3(@types/react@19.2.14)(react@19.2.3)
optionalDependencies:
'@types/react': 19.2.14
- react-router-config@5.1.1(react-router@5.3.4(react@19.2.0))(react@19.2.0):
+ react-router-config@5.1.1(react-router@5.3.4(react@19.2.3))(react@19.2.3):
dependencies:
'@babel/runtime': 7.29.2
- react: 19.2.0
- react-router: 5.3.4(react@19.2.0)
+ react: 19.2.3
+ react-router: 5.3.4(react@19.2.3)
- react-router-dom@5.3.4(react@19.2.0):
+ react-router-dom@5.3.4(react@19.2.3):
dependencies:
'@babel/runtime': 7.29.2
history: 4.10.1
loose-envify: 1.4.0
prop-types: 15.8.1
- react: 19.2.0
- react-router: 5.3.4(react@19.2.0)
+ react: 19.2.3
+ react-router: 5.3.4(react@19.2.3)
tiny-invariant: 1.3.3
tiny-warning: 1.0.3
- react-router@5.3.4(react@19.2.0):
+ react-router@5.3.4(react@19.2.3):
dependencies:
'@babel/runtime': 7.29.2
history: 4.10.1
@@ -25384,27 +25520,35 @@ snapshots:
loose-envify: 1.4.0
path-to-regexp: 1.9.0
prop-types: 15.8.1
- react: 19.2.0
+ react: 19.2.3
react-is: 16.13.1
tiny-invariant: 1.3.3
tiny-warning: 1.0.3
- react-style-singleton@2.2.3(@types/react@19.2.14)(react@19.2.0):
+ react-style-singleton@2.2.3(@types/react@19.2.14)(react@19.2.3):
dependencies:
get-nonce: 1.0.1
- react: 19.2.0
+ react: 19.2.3
tslib: 2.8.1
optionalDependencies:
'@types/react': 19.2.14
- react-test-renderer@19.2.0(react@19.2.0):
+ react-test-renderer@19.2.0(react@19.2.3):
dependencies:
- react: 19.2.0
+ react: 19.2.3
+ react-is: 19.2.5
+ scheduler: 0.27.0
+
+ react-test-renderer@19.2.3(react@19.2.3):
+ dependencies:
+ react: 19.2.3
react-is: 19.2.5
scheduler: 0.27.0
react@19.2.0: {}
+ react@19.2.3: {}
+
read-yaml-file@1.1.0:
dependencies:
graceful-fs: 4.2.11
@@ -25437,8 +25581,6 @@ snapshots:
dependencies:
picomatch: 2.3.2
- readdirp@4.1.2: {}
-
real-require@0.2.0: {}
recast@0.23.11:
@@ -25698,6 +25840,43 @@ snapshots:
dependencies:
glob: 7.2.3
+ rolldown-plugin-dts@0.25.0(rolldown@1.0.0)(typescript@6.0.3):
+ dependencies:
+ '@babel/generator': 8.0.0-rc.4
+ '@babel/helper-validator-identifier': 8.0.0-rc.4
+ '@babel/parser': 8.0.0-rc.4
+ ast-kit: 3.0.0-beta.1
+ birpc: 4.0.0
+ dts-resolver: 3.0.0
+ get-tsconfig: 5.0.0-beta.5
+ obug: 2.1.1
+ rolldown: 1.0.0
+ optionalDependencies:
+ typescript: 6.0.3
+ transitivePeerDependencies:
+ - oxc-resolver
+
+ rolldown@1.0.0:
+ dependencies:
+ '@oxc-project/types': 0.129.0
+ '@rolldown/pluginutils': 1.0.0
+ optionalDependencies:
+ '@rolldown/binding-android-arm64': 1.0.0
+ '@rolldown/binding-darwin-arm64': 1.0.0
+ '@rolldown/binding-darwin-x64': 1.0.0
+ '@rolldown/binding-freebsd-x64': 1.0.0
+ '@rolldown/binding-linux-arm-gnueabihf': 1.0.0
+ '@rolldown/binding-linux-arm64-gnu': 1.0.0
+ '@rolldown/binding-linux-arm64-musl': 1.0.0
+ '@rolldown/binding-linux-ppc64-gnu': 1.0.0
+ '@rolldown/binding-linux-s390x-gnu': 1.0.0
+ '@rolldown/binding-linux-x64-gnu': 1.0.0
+ '@rolldown/binding-linux-x64-musl': 1.0.0
+ '@rolldown/binding-openharmony-arm64': 1.0.0
+ '@rolldown/binding-wasm32-wasi': 1.0.0
+ '@rolldown/binding-win32-arm64-msvc': 1.0.0
+ '@rolldown/binding-win32-x64-msvc': 1.0.0
+
rolldown@1.0.0-rc.15:
dependencies:
'@oxc-project/types': 0.124.0
@@ -25719,37 +25898,6 @@ snapshots:
'@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.15
'@rolldown/binding-win32-x64-msvc': 1.0.0-rc.15
- rollup@4.60.1:
- dependencies:
- '@types/estree': 1.0.8
- optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.60.1
- '@rollup/rollup-android-arm64': 4.60.1
- '@rollup/rollup-darwin-arm64': 4.60.1
- '@rollup/rollup-darwin-x64': 4.60.1
- '@rollup/rollup-freebsd-arm64': 4.60.1
- '@rollup/rollup-freebsd-x64': 4.60.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.60.1
- '@rollup/rollup-linux-arm-musleabihf': 4.60.1
- '@rollup/rollup-linux-arm64-gnu': 4.60.1
- '@rollup/rollup-linux-arm64-musl': 4.60.1
- '@rollup/rollup-linux-loong64-gnu': 4.60.1
- '@rollup/rollup-linux-loong64-musl': 4.60.1
- '@rollup/rollup-linux-ppc64-gnu': 4.60.1
- '@rollup/rollup-linux-ppc64-musl': 4.60.1
- '@rollup/rollup-linux-riscv64-gnu': 4.60.1
- '@rollup/rollup-linux-riscv64-musl': 4.60.1
- '@rollup/rollup-linux-s390x-gnu': 4.60.1
- '@rollup/rollup-linux-x64-gnu': 4.60.1
- '@rollup/rollup-linux-x64-musl': 4.60.1
- '@rollup/rollup-openbsd-x64': 4.60.1
- '@rollup/rollup-openharmony-arm64': 4.60.1
- '@rollup/rollup-win32-arm64-msvc': 4.60.1
- '@rollup/rollup-win32-ia32-msvc': 4.60.1
- '@rollup/rollup-win32-x64-gnu': 4.60.1
- '@rollup/rollup-win32-x64-msvc': 4.60.1
- fsevents: 2.3.3
-
router@2.2.0:
dependencies:
debug: 4.4.3
@@ -25760,8 +25908,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- rrweb-cssom@0.8.0: {}
-
rtlcss@4.3.0:
dependencies:
escalade: 3.2.0
@@ -25853,10 +25999,6 @@ snapshots:
semver@6.3.1: {}
- semver@7.6.3: {}
-
- semver@7.7.3: {}
-
semver@7.7.4: {}
send@0.19.2:
@@ -25895,7 +26037,9 @@ snapshots:
serialize-error@2.1.0: {}
- serialize-javascript@7.0.5: {}
+ serialize-javascript@6.0.2:
+ dependencies:
+ randombytes: 2.1.0
serve-handler@6.1.7:
dependencies:
@@ -26208,14 +26352,14 @@ snapshots:
es-errors: 1.3.0
internal-slot: 1.1.0
- storybook-addon-deep-controls@0.10.0(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)):
+ storybook-addon-deep-controls@0.10.0(storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)):
dependencies:
- storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ storybook: 10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
- storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
+ storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.0))(react@19.2.0):
dependencies:
'@storybook/global': 5.0.0
- '@storybook/icons': 2.0.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@storybook/icons': 2.0.1(react-dom@19.2.3(react@19.2.0))(react@19.2.0)
'@testing-library/jest-dom': 6.9.1
'@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1)
'@vitest/expect': 3.2.4
@@ -26235,6 +26379,29 @@ snapshots:
- react-dom
- utf-8-validate
+ storybook@10.3.2(@testing-library/dom@10.4.1)(prettier@3.8.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
+ dependencies:
+ '@storybook/global': 5.0.0
+ '@storybook/icons': 2.0.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ '@testing-library/jest-dom': 6.9.1
+ '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1)
+ '@vitest/expect': 3.2.4
+ '@vitest/spy': 3.2.4
+ esbuild: 0.27.7
+ open: 10.2.0
+ recast: 0.23.11
+ semver: 7.7.4
+ use-sync-external-store: 1.6.0(react@19.2.3)
+ ws: 8.20.0
+ optionalDependencies:
+ prettier: 3.8.2
+ transitivePeerDependencies:
+ - '@testing-library/dom'
+ - bufferutil
+ - react
+ - react-dom
+ - utf-8-validate
+
stream-buffers@2.2.0: {}
stream-chain@2.2.5: {}
@@ -26486,11 +26653,11 @@ snapshots:
glob: 7.2.3
minimatch: 3.1.5
- test-renderer@0.15.0(@types/react@19.2.14)(react@19.2.0):
+ test-renderer@0.15.0(@types/react@19.2.14)(react@19.2.3):
dependencies:
'@types/react-reconciler': 0.31.0(@types/react@19.2.14)
- react: 19.2.0
- react-reconciler: 0.31.0(react@19.2.0)
+ react: 19.2.3
+ react-reconciler: 0.31.0(react@19.2.3)
transitivePeerDependencies:
- '@types/react'
@@ -26522,7 +26689,7 @@ snapshots:
tinycolor2@1.6.0: {}
- tinyexec@0.3.2: {}
+ tinyexec@1.1.2: {}
tinyglobby@0.2.16:
dependencies:
@@ -26540,19 +26707,13 @@ 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@5.9.3):
+ tmcp@1.19.3(typescript@6.0.3):
dependencies:
'@standard-schema/spec': 1.1.0
json-rpc-2.0: 1.7.1
sqids: 0.3.0
uri-template-matcher: 1.1.2
- valibot: 1.3.1(typescript@5.9.3)
+ valibot: 1.3.1(typescript@6.0.3)
transitivePeerDependencies:
- typescript
@@ -26570,13 +26731,16 @@ snapshots:
totalist@3.0.1: {}
- tough-cookie@5.1.2:
+ tough-cookie@4.1.4:
dependencies:
- tldts: 6.1.86
+ psl: 1.15.0
+ punycode: 2.3.1
+ universalify: 0.2.0
+ url-parse: 1.5.10
tr46@0.0.3: {}
- tr46@5.1.1:
+ tr46@3.0.0:
dependencies:
punycode: 2.3.1
@@ -26590,17 +26754,17 @@ snapshots:
trough@2.2.0: {}
- ts-api-utils@2.5.0(typescript@5.9.3):
+ ts-api-utils@2.5.0(typescript@6.0.3):
dependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
ts-dedent@2.2.0: {}
ts-interface-checker@0.1.13: {}
- tsconfck@3.1.6(typescript@5.9.3):
+ tsconfck@3.1.6(typescript@6.0.3):
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
tsconfig-paths@3.15.0:
dependencies:
@@ -26615,72 +26779,39 @@ snapshots:
minimist: 1.2.8
strip-bom: 3.0.0
- tslib@1.14.1: {}
-
- tslib@2.8.1: {}
-
- tsup@8.5.1(@swc/core@1.15.24(@swc/helpers@0.5.21))(jiti@1.21.7)(postcss@8.5.9)(typescript@5.9.3)(yaml@2.8.3):
+ tsdown@0.22.0(typescript@6.0.3):
dependencies:
- bundle-require: 5.1.0(esbuild@0.27.7)
- cac: 6.7.14
- chokidar: 4.0.3
- consola: 3.4.2
- debug: 4.4.3
- esbuild: 0.27.7
- fix-dts-default-cjs-exports: 1.0.1
- joycon: 3.1.1
- picocolors: 1.1.1
- postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.9)(yaml@2.8.3)
- resolve-from: 5.0.0
- rollup: 4.60.1
- source-map: 0.7.6
- sucrase: 3.35.1
- tinyexec: 0.3.2
+ ansis: 4.2.0
+ cac: 7.0.0
+ defu: 6.1.7
+ empathic: 2.0.0
+ hookable: 6.1.1
+ import-without-cache: 0.4.0
+ obug: 2.1.1
+ picomatch: 4.0.4
+ rolldown: 1.0.0
+ rolldown-plugin-dts: 0.25.0(rolldown@1.0.0)(typescript@6.0.3)
+ semver: 7.7.4
+ tinyexec: 1.1.2
tinyglobby: 0.2.16
tree-kill: 1.2.2
+ unconfig-core: 7.5.0
optionalDependencies:
- '@swc/core': 1.15.24(@swc/helpers@0.5.21)
- postcss: 8.5.9
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- - jiti
- - supports-color
- - tsx
- - yaml
+ - '@ts-macro/tsc'
+ - '@typescript/native-preview'
+ - oxc-resolver
+ - vue-tsc
- tsup@8.5.1(@swc/core@1.15.24(@swc/helpers@0.5.21))(jiti@1.21.7)(postcss@8.5.9)(typescript@6.0.2)(yaml@2.8.3):
- dependencies:
- bundle-require: 5.1.0(esbuild@0.27.7)
- cac: 6.7.14
- chokidar: 4.0.3
- consola: 3.4.2
- debug: 4.4.3
- esbuild: 0.27.7
- fix-dts-default-cjs-exports: 1.0.1
- joycon: 3.1.1
- picocolors: 1.1.1
- postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.9)(yaml@2.8.3)
- resolve-from: 5.0.0
- rollup: 4.60.1
- source-map: 0.7.6
- sucrase: 3.35.1
- tinyexec: 0.3.2
- tinyglobby: 0.2.16
- tree-kill: 1.2.2
- optionalDependencies:
- '@swc/core': 1.15.24(@swc/helpers@0.5.21)
- postcss: 8.5.9
- typescript: 6.0.2
- transitivePeerDependencies:
- - jiti
- - supports-color
- - tsx
- - yaml
+ tslib@1.14.1: {}
+
+ tslib@2.8.1: {}
- tsutils@3.21.0(typescript@5.9.3):
+ tsutils@3.21.0(typescript@6.0.3):
dependencies:
tslib: 1.14.1
- typescript: 5.9.3
+ typescript: 6.0.3
tsyringe@4.10.0:
dependencies:
@@ -26748,16 +26879,11 @@ snapshots:
dependencies:
is-typedarray: 1.0.0
- typescript@5.9.3: {}
-
- typescript@6.0.2:
- optional: true
+ typescript@6.0.3: {}
ua-parser-js@1.0.41: {}
- uc.micro@2.1.0: {}
-
- ufo@1.6.3: {}
+ uc.micro@1.0.6: {}
unbox-primitive@1.1.0:
dependencies:
@@ -26766,6 +26892,11 @@ snapshots:
has-symbols: 1.1.0
which-boxed-primitive: 1.1.1
+ unconfig-core@7.5.0:
+ dependencies:
+ '@quansync/fs': 1.0.0
+ quansync: 1.0.0
+
undici-types@7.19.2: {}
undici@6.24.1: {}
@@ -26826,6 +26957,8 @@ snapshots:
universalify@0.1.2: {}
+ universalify@0.2.0: {}
+
universalify@2.0.1: {}
unpipe@1.0.0: {}
@@ -26899,21 +27032,26 @@ snapshots:
optionalDependencies:
file-loader: 6.2.0(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21)))
- use-callback-ref@1.3.3(@types/react@19.2.14)(react@19.2.0):
+ url-parse@1.5.10:
dependencies:
- react: 19.2.0
+ 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
tslib: 2.8.1
optionalDependencies:
'@types/react': 19.2.14
- use-latest-callback@0.2.6(react@19.2.0):
+ use-latest-callback@0.2.6(react@19.2.3):
dependencies:
- react: 19.2.0
+ react: 19.2.3
- use-sidecar@1.1.3(@types/react@19.2.14)(react@19.2.0):
+ use-sidecar@1.1.3(@types/react@19.2.14)(react@19.2.3):
dependencies:
detect-node-es: 1.1.0
- react: 19.2.0
+ react: 19.2.3
tslib: 2.8.1
optionalDependencies:
'@types/react': 19.2.14
@@ -26922,6 +27060,10 @@ snapshots:
dependencies:
react: 19.2.0
+ use-sync-external-store@1.6.0(react@19.2.3):
+ dependencies:
+ react: 19.2.3
+
util-deprecate@1.0.2: {}
utila@0.4.0: {}
@@ -26940,13 +27082,13 @@ snapshots:
'@types/istanbul-lib-coverage': 2.0.6
convert-source-map: 2.0.0
- valibot@1.2.0(typescript@5.9.3):
+ valibot@1.2.0(typescript@6.0.3):
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
- valibot@1.3.1(typescript@5.9.3):
+ valibot@1.3.1(typescript@6.0.3):
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
validate-npm-package-name@5.0.1: {}
@@ -26954,11 +27096,11 @@ snapshots:
vary@1.1.2: {}
- vaul@1.1.2(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
+ vaul@1.1.2(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
dependencies:
- '@radix-ui/react-dialog': 1.1.15(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
+ '@radix-ui/react-dialog': 1.1.15(@types/react@19.2.14)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ react: 19.2.3
+ react-dom: 19.2.3(react@19.2.3)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
@@ -26991,24 +27133,24 @@ snapshots:
fast-glob: 3.3.3
magic-string: 0.30.21
- vite-plugin-rnw@0.0.11(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3)):
+ vite-plugin-rnw@0.0.11(react-native-web@0.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(typescript@6.0.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3)):
dependencies:
'@rolldown/pluginutils': 1.0.0-rc.15
'@vitejs/plugin-react': 5.2.0(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3))
flow-remove-types: 2.309.0
magic-string: 0.30.21
- react-native-web: 0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- typescript: 5.9.3
+ react-native-web: 0.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
+ typescript: 6.0.3
vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3)
vite-plugin-commonjs: 0.10.4
transitivePeerDependencies:
- supports-color
- vite-tsconfig-paths@6.1.1(typescript@5.9.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3)):
+ vite-tsconfig-paths@6.1.1(typescript@6.0.3)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3)):
dependencies:
debug: 4.4.3
globrex: 0.1.2
- tsconfck: 3.1.6(typescript@5.9.3)
+ tsconfck: 3.1.6(typescript@6.0.3)
vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@1.21.7)(terser@5.46.1)(yaml@2.8.3)
transitivePeerDependencies:
- supports-color
@@ -27033,9 +27175,9 @@ snapshots:
vlq@1.0.1: {}
- w3c-xmlserializer@5.0.0:
+ w3c-xmlserializer@4.0.0:
dependencies:
- xml-name-validator: 5.0.0
+ xml-name-validator: 4.0.0
walker@1.0.8:
dependencies:
@@ -27267,15 +27409,15 @@ snapshots:
websocket-extensions@0.1.4: {}
- whatwg-encoding@3.1.1:
+ whatwg-encoding@2.0.0:
dependencies:
iconv-lite: 0.6.3
whatwg-fetch@3.6.20: {}
- whatwg-mimetype@4.0.0: {}
+ whatwg-mimetype@3.0.0: {}
- whatwg-url-minimum@0.1.1: {}
+ whatwg-url-minimum@0.1.2: {}
whatwg-url-without-unicode@8.0.0-3:
dependencies:
@@ -27283,9 +27425,9 @@ snapshots:
punycode: 2.3.1
webidl-conversions: 5.0.0
- whatwg-url@14.2.0:
+ whatwg-url@11.0.0:
dependencies:
- tr46: 5.1.1
+ tr46: 3.0.0
webidl-conversions: 7.0.0
whatwg-url@5.0.0:
@@ -27403,7 +27545,7 @@ snapshots:
dependencies:
sax: 1.6.0
- xml-name-validator@5.0.0: {}
+ xml-name-validator@4.0.0: {}
xml2js@0.6.0:
dependencies:
diff --git a/tests/tsconfig.json b/tests/tsconfig.json
index bcdba9e6b7..83df2b5302 100644
--- a/tests/tsconfig.json
+++ b/tests/tsconfig.json
@@ -1,7 +1,6 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
- "baseUrl": ".",
"noEmit": true,
"declaration": false
},
diff --git a/tsconfig.json b/tsconfig.json
index 6550a312b1..20f952305a 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -8,10 +8,12 @@
"lib": ["es2022"],
"module": "es2022",
"moduleResolution": "bundler",
+ "ignoreDeprecations": "6.0",
"outDir": "dist/",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"esModuleInterop": true,
+ "strict": false,
"target": "es2022",
"resolveJsonModule": true
},