diff --git a/.github/assets/app-icons.png b/.github/assets/app-icons.png
new file mode 100644
index 00000000..6bcdce7a
Binary files /dev/null and b/.github/assets/app-icons.png differ
diff --git a/.github/workflows/eas-build.yml b/.github/workflows/eas-build.yml
index ee8af8e4..c2d7acc2 100644
--- a/.github/workflows/eas-build.yml
+++ b/.github/workflows/eas-build.yml
@@ -6,8 +6,17 @@ env:
EXPO_PUBLIC_OPENAPI_URL: ${{ vars.OPENAPI_URL }}
on:
- push:
- branches: [main]
+ workflow_dispatch:
+ inputs:
+ profile:
+ description: EAS build profile
+ required: true
+ default: production
+ type: choice
+ options:
+ - development
+ - staging
+ - production
jobs:
build:
@@ -32,4 +41,4 @@ jobs:
run: pnpm install
- name: 🚀 Build app
- run: eas build --non-interactive
+ run: eas build --profile ${{ github.event.inputs.profile }} --non-interactive
diff --git a/.github/workflows/eas-development-build.yml b/.github/workflows/eas-development-build.yml
new file mode 100644
index 00000000..8de6cd33
--- /dev/null
+++ b/.github/workflows/eas-development-build.yml
@@ -0,0 +1,33 @@
+name: 🔨 EAS Development build
+
+env:
+ EXPO_PUBLIC_API_URL: ${{ vars.API_URL }}
+ EXPO_PUBLIC_AUTH_URL: ${{ vars.AUTH_URL }}
+ EXPO_PUBLIC_OPENAPI_URL: ${{ vars.OPENAPI_URL }}
+
+on: workflow_dispatch
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: 🏗 Setup repo
+ uses: actions/checkout@v5
+
+ - name: 🏗 Setup Node
+ uses: actions/setup-node@v5
+ with:
+ node-version: 'lts/*'
+ cache: 'pnpm'
+
+ - name: 🏗 Setup EAS
+ uses: expo/expo-github-action@v8
+ with:
+ eas-version: latest
+ token: ${{ secrets.EXPO_TOKEN }}
+
+ - name: 📦 Install dependencies
+ run: pnpm install
+
+ - name: 🚀 Build development client
+ run: eas build --profile development --non-interactive
diff --git a/.github/workflows/eas-update.yml b/.github/workflows/eas-update.yml
index e180ef52..b421952d 100644
--- a/.github/workflows/eas-update.yml
+++ b/.github/workflows/eas-update.yml
@@ -6,8 +6,17 @@ env:
EXPO_PUBLIC_OPENAPI_URL: ${{ vars.OPENAPI_URL }}
on:
- push:
- branches: [main]
+ workflow_dispatch:
+ inputs:
+ channel:
+ description: EAS Update channel (matches build profile)
+ required: true
+ default: production
+ type: choice
+ options:
+ - development
+ - staging
+ - production
jobs:
update:
@@ -31,5 +40,5 @@ jobs:
- name: 📦 Install dependencies
run: pnpm install
- - name: 🚀 Create update
- run: eas update --auto --non-interactive
+ - name: 🚀 Publish update
+ run: eas update --branch ${{ github.event.inputs.channel }} --non-interactive
diff --git a/.github/workflows/prepare-production.yml b/.github/workflows/prepare-production.yml
new file mode 100644
index 00000000..02571bdf
--- /dev/null
+++ b/.github/workflows/prepare-production.yml
@@ -0,0 +1,43 @@
+name: 🚀 Release Production
+
+env:
+ EXPO_PUBLIC_API_URL: ${{ vars.API_URL }}
+ EXPO_PUBLIC_AUTH_URL: ${{ vars.AUTH_URL }}
+ EXPO_PUBLIC_OPENAPI_URL: ${{ vars.OPENAPI_URL }}
+
+on: workflow_dispatch
+
+jobs:
+ prepare-production:
+ runs-on: ubuntu-latest
+ steps:
+ - name: 🏗 Setup repo
+ uses: actions/checkout@v5
+
+ - name: 🏗 Setup Node
+ uses: actions/setup-node@v5
+ with:
+ node-version: 'lts/*'
+ cache: 'pnpm'
+
+ - name: 🏗 Setup EAS
+ uses: expo/expo-github-action@v8
+ with:
+ eas-version: latest
+ token: ${{ secrets.EXPO_TOKEN }}
+
+ - name: 📦 Install dependencies
+ run: pnpm install
+
+ - name: 🚀 Build production
+ run: eas build --profile production --platform all --non-interactive
+
+ - name: Setup App Store Connect API key
+ run: |
+ echo "$APP_STORE_CONNECT_API_KEY" | base64 -d > "$ASC_API_KEY_PATH"
+ env:
+ APP_STORE_CONNECT_API_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY }}
+ ASC_API_KEY_PATH: AuthKey_${{ vars.ASC_API_KEY_ID }}.p8
+
+ - name: 🚀 Submit on stores
+ run: eas submit --profile production --platform all --latest --non-interactive
diff --git a/.prettierrc.cjs b/.prettierrc.cjs
index 94367863..2a3f4eb5 100644
--- a/.prettierrc.cjs
+++ b/.prettierrc.cjs
@@ -1,14 +1,16 @@
// Prettier configuration. Please avoid changing the current configuration.
-// But if you do so, please run the `npm run pretty` command.
+// But if you do so, please run the `pnpm pretty` command.
/** @type {import("prettier").Options} */
const config = {
+ plugins: ['prettier-plugin-tailwindcss'],
endOfLine: 'lf',
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'es5',
arrowParens: 'always',
+ tailwindStylesheet: './src/app.css',
+ tailwindFunctions: ['cn', 'tv'],
};
-// eslint-disable-next-line no-undef
module.exports = config;
diff --git a/.rnstorybook/storybook.requires.ts b/.rnstorybook/storybook.requires.ts
index 0a4c1d9b..d5259c94 100644
--- a/.rnstorybook/storybook.requires.ts
+++ b/.rnstorybook/storybook.requires.ts
@@ -36,22 +36,23 @@ const normalizedStories = [
declare global {
var view: View;
var STORIES: typeof normalizedStories;
+ var STORYBOOK_WEBSOCKET: { host: string; port: number } | undefined;
}
const annotations = [require('@storybook/react-native/preview')];
-global.STORIES = normalizedStories;
+globalThis.STORIES = normalizedStories;
// @ts-ignore
module?.hot?.accept?.();
-if (!global.view) {
- global.view = start({
+if (!globalThis.view) {
+ globalThis.view = start({
annotations,
storyEntries: normalizedStories,
});
} else {
- updateView(global.view, annotations, normalizedStories);
+ updateView(globalThis.view, annotations, normalizedStories);
}
-export const view: View = global.view;
+export const view: View = globalThis.view;
diff --git a/README.md b/README.md
index a681c297..ddaa2390 100644
--- a/README.md
+++ b/README.md
@@ -3,17 +3,14 @@
🚀 Start UI [native] is an opinionated native starter repository created & maintained by the [BearStudio Team](https://www.bearstudio.fr/team) and other contributors.
It represents our team's up-to-date stack that we use when creating native apps for our clients.
-
# Technologies
-
-
-[⚙️ Node.js](https://nodejs.org), [🟦 TypeScript](https://www.typescriptlang.org/), [⚛️ React](https://react.dev/), [📱 React Native](https://reactnative.dev/), [🚀 Expo](https://docs.expo.dev/), [🔐 Better Auth](https://www.better-auth.com/), [🌿 Ficus UI](https://ficus-ui.com/), [🌴 Tanstack Form](https://tanstack.com/form/), [🌴 Tanstack Query](https://tanstack.com/query/), [👋 Hey API](https://heyapi.dev/)
+[⚙️ Node.js](https://nodejs.org), [🟦 TypeScript](https://www.typescriptlang.org/), [⚛️ React](https://react.dev/), [📱 React Native](https://reactnative.dev/), [🚀 Expo](https://docs.expo.dev/), [🔐 Better Auth](https://www.better-auth.com/), [🖌️ Uniwind](https://uniwind.dev), [🧱 React Native Reusables](https://reactnativereusables.com), [🌴 Tanstack Form](https://tanstack.com/form/), [🌴 Tanstack Query](https://tanstack.com/query/), [👋 Hey API](https://heyapi.dev/)
# Requirements
-* [Node.js](https://nodejs.org) >= 22
-* [pnpm](https://pnpm.io/)
+- [Node.js](https://nodejs.org) >= 22
+- [pnpm](https://pnpm.io/)
# Getting Started
@@ -21,7 +18,7 @@ It represents our team's up-to-date stack that we use when creating native apps
pnpm create start-ui -t native myApp
```
-That will scaffold a new folder with the latest version of 🚀 Start UI [native] 🎉
+That will scaffold a new folder with the latest version of 🚀 Start UI [native] 🎉
# Installation
@@ -33,7 +30,6 @@ pnpm install # Install dependencies
## Environment variables
-
> [!TIP]
> Using Expo Go, local development urls should not be `localhost`, use public IP instead
@@ -54,6 +50,7 @@ pnpm gen:api
A new folder `/src/lib/hey-api/generated` will be created with stuff like to combine use Tanstack Query to fetch data, based on env variables.
For example
+
```ts
import { api } from '@/lib/hey-api/api';
@@ -62,22 +59,43 @@ useQuery(api.bookGetByIdOptions({ path: { id: props.bookId } }));
# Run
-
### Expo Go
```bash
pnpm dev
```
-### Local build
+### Local builds
+
+App name and bundle ID come from `app.config.ts`, evaluated at **prebuild** time. Each script runs `prebuild --clean` with the appropriate `APP_ENV`, then builds.
+
+
+| Script | App name | Build type | Need |
+| --------------------------------------------------- | --------------------------- | ---------- | ----------------------------------------- |
+| `dev:build:ios` / `dev:build:android` | Start UI [native] [Dev] | Dev/Debug | Local development, replacement of Expo Go |
+| `build:staging:ios` / `build:staging:android` | Start UI [native] [Staging] | Release | Install staging release version locally |
+| `build:production:ios` / `build:production:android` | Start UI [native] | Release | Install production version locally |
+
```bash
-pnpm prebuild # To generate local builds
+# Development (debug build, dev client)
+pnpm dev:build:ios
+pnpm dev:build:android
+
+# Staging (release build, internal testing)
+pnpm build:staging:ios
+pnpm build:staging:android
-pnpm dev:ios # To run with local ios build
-pnpm dev:android # To run with local android build
+# Production (release build, store-like)
+pnpm build:production:ios
+pnpm build:production:android
```
+> [!TIP]
+> If the app name is wrong, the native project was generated with the wrong `APP_ENV`. Re-run the same build script — it includes `--clean` to regenerate the native project.
+
+
+
### Devtools
You can use @dev-plugins pressing `Shift + m` in your Expo terminal.
@@ -87,13 +105,12 @@ You can use @dev-plugins pressing `Shift + m` in your Expo terminal.
Storybook is managed as a specific mode of the app that is launch apart in port 8083
```bash
-pnpm storybook # To run app in storybook mode
+pnpm dev:storybook # To run app in storybook mode
```
> [!TIP]
> You can open Storybook in another tab and switch between the app and Storybook by pressing `i` or `a` in each terminal.
-
## Generate custom icons components from svg files
Put the custom svg files into the `app/components/icons/svg-sources` folder and then run the following command:
@@ -108,22 +125,73 @@ If you want to use the same set of custom duotone icons that Start UI is already
> [!WARNING]
> All svg icons should be svg files prefixed by `icon-` (example: `icon-externel-link`) with **square size** and **filled with `#000` color** (will be replaced by `currentColor`).
+# GitHub repository configuration
+
+The GitHub Actions workflows require the following configuration.
+
+## Variables
+
+Add at **Settings → Secrets and variables → Actions → Variables**:
+
+
+| Variable | Description | Used by |
+| ---------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------- |
+| `API_URL` | Base URL of your API server | EAS builds, preview, update, code quality, prepare-production |
+| `AUTH_URL` | Better Auth URL (e.g. `https://your-api.com/api/auth`) | EAS builds, preview, update, code quality, prepare-production |
+| `OPENAPI_URL` | OpenAPI schema URL (e.g. `https://your-api.com/openapi/app/schema`) | EAS builds, preview, update, code quality, prepare-production |
+| `ASC_API_KEY_ID` | App Store Connect API Key ID (e.g. `H3KZ2V5L32`) for the Release Production workflow | prepare-production |
+
+
+## Secrets
+
+Add at **Settings → Secrets and variables → Actions → Secrets**:
+
+
+| Secret | Description | Used by |
+| --------------------------- | ------------------------------------------------------------------------ | ----------------------------------------------------------------- |
+| `EXPO_TOKEN` | Expo access token for EAS CLI | EAS build, development build, update, preview, prepare-production |
+| `APP_STORE_CONNECT_API_KEY` | Base64-encoded App Store Connect API key (.p8 file) for store submission | prepare-production |
+
+
+Create an Expo token at [expo.dev/accounts/{account}/settings/access-tokens](https://expo.dev/accounts/_/settings/access-tokens).
+
+For `APP_STORE_CONNECT_API_KEY`: export your App Store Connect API key as base64 (`base64 -i AuthKey_XXX.p8`) and store the result as the secret. The prepare-production workflow decodes it at runtime for `eas submit`.
+
+For the **Release Production** workflow, also configure `eas.json` submit.production with your App Store Connect credentials (`ascAppId`, `ascApiKeyId`, `ascApiKeyIssuerId`, `ascApiKeyPath`), and set the `ASC_API_KEY_ID` variable to match your key ID (used in the key filename).
+
+## Workflows
+
+
+| Workflow | Trigger | Description |
+| ------------------------- | ------------ | --------------------------------------------------------------------------------------- |
+| **EAS build** | Manual | Build app — select profile (development, staging, production) in the GitHub UI |
+| **EAS Development build** | Manual | Build development client (internal) |
+| **EAS Update** | Manual | Publish OTA update — select channel (development, staging, production) in the GitHub UI |
+| **EAS Preview** | Pull request | Publish preview update on PR branch |
+| **Release Production** | Manual | Build production, then submit to App Store and Play Store |
+
+
+### EAS build profiles
+
+
+| Profile | Purpose |
+| --------------- | ------------------------------------------------------------------------ |
+| **development** | Dev client for local development (internal distribution) |
+| **staging** | Internal distribution for testers (never sent to stores) |
+| **production** | Store build (auto-increments, submitted via Release Production workflow) |
+
+
# EAS Preview
To be able to use previews on PR, you have to setup your project with EAS
-1. Setup Expo access token
- * Create it: https://expo.dev/accounts/{account}/settings/access-tokens
- * Add it as GitHub repository secrets: https://github.com/xxx/xxx/settings/secrets/actions
-2. Add GitHub repository variables: https://github.com/xxx/xxx/settings/variables/actions
- * `API_URL`
- * `AUTH_URL`
- * `OPENAPI_URL`
-3. Setup Expo project: https://expo.dev/
- * Create your project
- * Get project's id
- * Set as `EXPO_PROJECT_ID` in `app.config.ts`
-4. Setup eas
- * `eas login`
- * `eas init --id {projectid}`
- * `eas update:configure`
\ No newline at end of file
+1. Configure [GitHub variables and secrets](#github-repository-configuration) (see above)
+2. Setup Expo project: [https://expo.dev/](https://expo.dev/)
+ - Create your project
+ - Get project's id
+ - Set as `EAS_PROJECT_ID` in `app.config.ts`
+3. Setup eas
+ - `eas login`
+ - `eas init --id {projectid}`
+ - `eas update:configure`
+
diff --git a/app.config.ts b/app.config.ts
index 1cc798cf..b36118da 100644
--- a/app.config.ts
+++ b/app.config.ts
@@ -1,47 +1,117 @@
import { ExpoConfig } from 'expo/config';
-const BUILD_NUMBER: `${number}` = '1';
-const EXPO_PROJECT_ID = 'af6ae74c-f04d-497a-9733-b2b7539f77c5';
+// ─── Project config ─────────────────────────────────────────────────────────
+const EAS_PROJECT_ID = 'af6ae74c-f04d-497a-9733-b2b7539f77c5';
+const PROJECT_SLUG = 'start-ui-native-v9iizxkbojzedvpfkfzcq';
+const OWNER = 'bearstudio';
-const appPrefix =
- process.env.EXPO_PUBLIC_ENVIRONMENT === 'storybook' ? 'Storybook • ' : '';
+// ─── App production config ─────────────────────────────────────────────────
+const APP_NAME = 'Start UI [native]';
+const BUNDLE_IDENTIFIER = 'com.bearstudio.startuinative';
+const PACKAGE_NAME = 'com.bearstudio.startuinative';
+const SCHEME = 'start-ui-native';
+
+// ─── Env-based config ───────────────────────────────────────────────────────
+type AppEnv = 'development' | 'staging' | 'production' | 'storybook';
+const APP_ENV = (process.env.APP_ENV ?? 'production') as AppEnv;
+
+const getDynamicAppConfig = (environment?: AppEnv) => {
+ switch (environment) {
+ case 'development':
+ return {
+ /** App name used for Xcode target; must be ASCII and match EAS lookup. */
+ name: 'StartUINativeDev',
+ /** User-visible name on device. */
+ displayName: `${APP_NAME} [Dev]`,
+ bundleIdentifier: `${BUNDLE_IDENTIFIER}.development`,
+ packageName: `${PACKAGE_NAME}.development`,
+ icon: './src/assets/images/icon-dev.png',
+ adaptiveIcon: {
+ foregroundImage:
+ './src/assets/images/android-icon-foreground-dev.png',
+ monochromeImage:
+ './src/assets/images/android-icon-monochrome-dev.png',
+ backgroundColor: '#FFFFFF',
+ },
+ scheme: `${SCHEME}-development`,
+ };
+ case 'staging':
+ return {
+ name: 'StartUINativeStaging',
+ displayName: `${APP_NAME} [Staging]`,
+ bundleIdentifier: `${BUNDLE_IDENTIFIER}.staging`,
+ packageName: `${PACKAGE_NAME}.staging`,
+ icon: './src/assets/images/icon-staging.png',
+ adaptiveIcon: {
+ foregroundImage:
+ './src/assets/images/android-icon-foreground-staging.png',
+ monochromeImage:
+ './src/assets/images/android-icon-monochrome-staging.png',
+ backgroundColor: '#FFFFFF',
+ },
+ scheme: `${SCHEME}-staging`,
+ };
+ case 'storybook':
+ return {
+ name: 'StartUINativeStorybook',
+ displayName: `Storybook • ${APP_NAME}`,
+ bundleIdentifier: `${BUNDLE_IDENTIFIER}.development`,
+ packageName: `${PACKAGE_NAME}.development`,
+ icon: './src/assets/images/icon.png',
+ adaptiveIcon: {
+ foregroundImage: './src/assets/images/android-icon-foreground.png',
+ monochromeImage: './src/assets/images/android-icon-monochrome.png',
+ backgroundColor: '#FFFFFF',
+ },
+ scheme: `${SCHEME}-storybook`,
+ };
+ case 'production':
+ default:
+ return {
+ name: APP_NAME,
+ displayName: undefined,
+ bundleIdentifier: BUNDLE_IDENTIFIER,
+ packageName: PACKAGE_NAME,
+ icon: './src/assets/images/icon.png',
+ adaptiveIcon: {
+ foregroundImage: './src/assets/images/android-icon-foreground.png',
+ monochromeImage: './src/assets/images/android-icon-monochrome.png',
+ backgroundColor: '#FFFFFF',
+ },
+ scheme: SCHEME,
+ };
+ }
+};
+
+const appConfig = getDynamicAppConfig(APP_ENV);
export default {
- name: appPrefix + 'Start UI [native]',
- slug: 'start-ui-native-v9iizxkbojzedvpfkfzcq',
- scheme: 'start-ui-native',
- owner: 'bearstudio',
+ /** User-visible name on device; use displayName when set, else internal name */
+ name: appConfig.displayName ?? appConfig.name,
+ slug: PROJECT_SLUG,
+ scheme: appConfig.scheme,
+ owner: OWNER,
version: '1.0.0',
- runtimeVersion: '1.0.0',
+ runtimeVersion: { policy: 'appVersion' },
platforms: ['android', 'ios'],
orientation: 'default',
- icon: './src/assets/images/icon.png',
+ icon: appConfig.icon,
userInterfaceStyle: 'automatic',
- backgroundColor: '#FFFFFF',
experiments: {
typedRoutes: true,
reactCompiler: true,
tsconfigPaths: true,
},
ios: {
- bundleIdentifier: 'com.bearstudio.startuinative',
- buildNumber: BUILD_NUMBER,
+ bundleIdentifier: appConfig.bundleIdentifier,
supportsTablet: true,
- // appStoreUrl: 'https://apps.apple.com/fr/app/bearstudio/startuinative',
},
android: {
- package: 'com.bearstudio.startuinative',
- versionCode: +BUILD_NUMBER,
- adaptiveIcon: {
- backgroundColor: '#FFFFFF',
- foregroundImage: './src/assets/images/android-icon-foreground.png',
- monochromeImage: './src/assets/images/android-icon-monochrome.png',
- },
- edgeToEdgeEnabled: true,
- // playStoreUrl:
- // 'https://play.google.com/store/apps/details?id=com.bearstudio.startuinative',
+ package: appConfig.packageName,
+ adaptiveIcon: appConfig.adaptiveIcon,
},
plugins: [
+ '@react-native-community/datetimepicker',
'expo-router',
[
'expo-splash-screen',
@@ -63,12 +133,12 @@ export default {
],
githubUrl: 'https://github.com/bearstudio/start-ui-native',
updates: {
- url: `https://u.expo.dev/${EXPO_PROJECT_ID}`,
+ url: `https://u.expo.dev/${EAS_PROJECT_ID}`,
},
extra: {
- isStorybook: process.env.EXPO_PUBLIC_ENVIRONMENT === 'storybook',
+ isStorybook: APP_ENV === 'storybook',
eas: {
- projectId: EXPO_PROJECT_ID,
+ projectId: EAS_PROJECT_ID,
},
},
} as const satisfies ExpoConfig;
diff --git a/components.json b/components.json
new file mode 100644
index 00000000..8e67e9c1
--- /dev/null
+++ b/components.json
@@ -0,0 +1,19 @@
+{
+ "$schema": "https://ui.shadcn.com/schema.json",
+ "style": "new-york",
+ "rsc": false,
+ "tsx": true,
+ "tailwind": {
+ "config": "tailwind.config.ts",
+ "css": "src/app.css",
+ "baseColor": "neutral",
+ "cssVariables": true
+ },
+ "aliases": {
+ "components": "@/components",
+ "utils": "@/lib/tailwind/utils",
+ "ui": "@/components/ui",
+ "lib": "@/lib",
+ "hooks": "@/hooks"
+ }
+}
diff --git a/eas.json b/eas.json
index bd914fcf..5fb45aba 100644
--- a/eas.json
+++ b/eas.json
@@ -5,20 +5,40 @@
},
"build": {
"development": {
- "developmentClient": true,
+ "channel": "development",
"distribution": "internal",
- "channel": "development"
+ "developmentClient": true,
+ "env": {
+ "APP_ENV": "development"
+ }
},
- "preview": {
+ "staging": {
+ "channel": "staging",
"distribution": "internal",
- "channel": "preview"
+ "env": {
+ "APP_ENV": "staging"
+ }
},
"production": {
+ "channel": "production",
"autoIncrement": true,
- "channel": "production"
+ "env": {
+ "APP_ENV": "production"
+ }
}
},
"submit": {
- "production": {}
+ "production": {
+ "ios": {
+ "ascAppId": "YOUR_ASC_APP_ID",
+ "ascApiKeyId": "YOUR_ASC_API_KEY_ID",
+ "ascApiKeyIssuerId": "YOUR_ASC_API_KEY_ISSUER_ID",
+ "ascApiKeyPath": "AuthKey_YOUR_KEY_ID.p8"
+ },
+ "android": {
+ "track": "internal",
+ "releaseStatus": "draft"
+ }
+ }
}
}
diff --git a/eslint.config.js b/eslint.config.js
index 75a56ef6..b9419292 100644
--- a/eslint.config.js
+++ b/eslint.config.js
@@ -96,9 +96,7 @@ export default tslint.config(
// static data
['^@/data'],
// components
- ['^@/components', '^@/container'],
- // zustand store
- ['^@/store'],
+ ['^@/components'],
// Other imports
['^@/'],
// relative paths up until 3 level
diff --git a/metro.config.cjs b/metro.config.cjs
index b04234fe..401c2a21 100644
--- a/metro.config.cjs
+++ b/metro.config.cjs
@@ -2,13 +2,22 @@
/* eslint-disable @typescript-eslint/no-require-imports */
const path = require('path');
const { getDefaultConfig } = require('expo/metro-config');
-
-const withStorybook = require('@storybook/react-native/metro/withStorybook');
+const { withUniwindConfig } = require('uniwind/metro');
+const {
+ withStorybook,
+} = require('@storybook/react-native/metro/withStorybook');
/** @type {import('expo/metro-config').MetroConfig} */
const config = getDefaultConfig(__dirname);
-module.exports = withStorybook(config, {
- enabled: true,
- configPath: path.resolve(__dirname, './.rnstorybook'),
+// withUniwindConfig must be outermost (Uniwind requirement)
+const storybookEnabled = process.env.APP_ENV === 'storybook';
+
+const storybookConfig = withStorybook(config, {
+ enabled: storybookEnabled,
+ configPath: path.resolve(__dirname, '.rnstorybook'),
+});
+
+module.exports = withUniwindConfig(storybookConfig, {
+ cssEntryFile: './src/app.css',
});
diff --git a/package.json b/package.json
index 905232e1..111e04cf 100644
--- a/package.json
+++ b/package.json
@@ -9,9 +9,13 @@
"prebuild": "expo prebuild",
"start": "expo start",
"dev": "expo start --go",
- "dev:android": "expo run:android",
- "dev:ios": "expo run:ios",
- "storybook": "EXPO_PUBLIC_ENVIRONMENT='storybook' expo start --go --port 8083",
+ "dev:build:android": "APP_ENV=development expo prebuild --clean && expo run:android",
+ "dev:build:ios": "APP_ENV=development expo prebuild --clean && expo run:ios",
+ "dev:storybook": "APP_ENV=storybook expo start --go --port 8083",
+ "build:staging:android": "APP_ENV=staging expo prebuild --clean && expo run:android --variant release",
+ "build:staging:ios": "APP_ENV=staging expo prebuild --clean && expo run:ios --configuration Release",
+ "build:production:android": "APP_ENV=production expo prebuild --clean && expo run:android --variant release",
+ "build:production:ios": "APP_ENV=production expo prebuild --clean && expo run:ios --configuration Release",
"lint": "run-p lint:*",
"lint:eslint": "eslint ./src --fix",
"lint:ts": "tsc --noEmit",
@@ -22,85 +26,99 @@
"ios": "expo run:ios"
},
"dependencies": {
- "@bearstudio/ui-state": "1.0.2",
- "@better-auth/expo": "1.3.27",
+ "@bearstudio/ui-state": "1.1.0",
+ "@better-auth/expo": "1.5.5",
"@dev-plugins/async-storage": "0.4.0",
"@dev-plugins/react-navigation": "0.4.0",
"@dev-plugins/react-query": "0.4.0",
- "@expo/metro-runtime": "6.1.2",
- "@gorhom/bottom-sheet": "5.2.6",
+ "@expo/metro-runtime": "55.0.6",
+ "@gorhom/bottom-sheet": "5.2.8",
"@react-native-async-storage/async-storage": "2.2.0",
- "@react-native-community/slider": "5.0.1",
- "@react-navigation/elements": "2.6.4",
- "@tanstack/eslint-plugin-query": "5.90.1",
- "@tanstack/react-form": "1.23.4",
- "@tanstack/react-query": "5.90.2",
- "better-auth": "1.3.27",
- "dayjs": "1.11.18",
- "expo": "54.0.15",
- "expo-application": "7.0.7",
- "expo-constants": "18.0.9",
- "expo-device": "8.0.9",
- "expo-font": "14.0.9",
- "expo-haptics": "15.0.7",
- "expo-image": "3.0.10",
- "expo-keep-awake": "15.0.7",
- "expo-linking": "8.0.8",
- "expo-localization": "17.0.7",
- "expo-router": "6.0.13",
- "expo-secure-store": "15.0.7",
- "expo-splash-screen": "31.0.10",
- "expo-status-bar": "3.0.8",
- "expo-symbols": "1.0.7",
- "expo-system-ui": "6.0.7",
- "expo-updates": "29.0.12",
- "expo-web-browser": "15.0.8",
- "i18next": "25.5.3",
- "lucide-react-native": "0.545.0",
- "react": "19.1.0",
- "react-dom": "19.1.0",
- "react-i18next": "16.0.0",
- "react-native": "0.81.4",
- "react-native-ficus-ui": "2.3.0",
- "react-native-gesture-handler": "2.28.0",
- "react-native-pager-view": "6.9.1",
- "react-native-reanimated": "4.1.2",
- "react-native-safe-area-context": "5.6.1",
- "react-native-screens": "4.16.0",
- "react-native-svg": "15.12.1",
- "react-native-web": "0.21.1",
- "react-native-worklets": "0.5.1",
- "sonner-native": "0.21.1",
- "zod": "4.1.11",
- "zustand": "5.0.8"
+ "@react-native-community/datetimepicker": "8.6.0",
+ "@react-native-community/slider": "5.1.2",
+ "@react-navigation/elements": "2.9.10",
+ "@rn-primitives/avatar": "1.2.0",
+ "@rn-primitives/slot": "1.2.0",
+ "@shopify/flash-list": "2.0.2",
+ "@tanstack/eslint-plugin-query": "5.91.4",
+ "@tanstack/react-form": "1.28.4",
+ "@tanstack/react-query": "5.90.21",
+ "better-auth": "1.5.5",
+ "class-variance-authority": "0.7.1",
+ "clsx": "2.1.1",
+ "dayjs": "1.11.19",
+ "expo": "55.0.6",
+ "expo-application": "55.0.9",
+ "expo-constants": "55.0.7",
+ "expo-crypto": "~55.0.9",
+ "expo-device": "55.0.9",
+ "expo-font": "55.0.4",
+ "expo-haptics": "55.0.8",
+ "expo-image": "55.0.6",
+ "expo-keep-awake": "55.0.4",
+ "expo-linking": "55.0.7",
+ "expo-localization": "55.0.8",
+ "expo-network": "55.0.8",
+ "expo-router": "55.0.5",
+ "expo-secure-store": "55.0.8",
+ "expo-splash-screen": "55.0.10",
+ "expo-status-bar": "55.0.4",
+ "expo-symbols": "55.0.5",
+ "expo-system-ui": "55.0.9",
+ "expo-updates": "55.0.13",
+ "expo-web-browser": "55.0.9",
+ "i18next": "25.8.18",
+ "lucide-react-native": "0.577.0",
+ "react": "19.2.0",
+ "react-dom": "19.2.0",
+ "react-i18next": "16.5.8",
+ "react-native": "0.83.2",
+ "react-native-gesture-handler": "2.30.0",
+ "react-native-pager-view": "8.0.0",
+ "react-native-reanimated": "4.2.1",
+ "react-native-safe-area-context": "5.6.2",
+ "react-native-screens": "4.23.0",
+ "react-native-svg": "15.15.3",
+ "react-native-web": "0.21.2",
+ "react-native-worklets": "0.7.2",
+ "remeda": "2.33.6",
+ "sonner-native": "0.23.1",
+ "tailwind-merge": "3.5.0",
+ "tailwindcss": "4.2.1",
+ "tailwindcss-animate": "1.0.7",
+ "ts-pattern": "5.9.0",
+ "uniwind": "1.5.0",
+ "zod": "4.3.6",
+ "zustand": "5.0.11"
},
"devDependencies": {
- "@babel/core": "7.28.4",
- "@eslint-react/eslint-plugin": "1.53.1",
- "@eslint/js": "9.36.0",
- "@hey-api/openapi-ts": "0.85.1",
- "@storybook/addon-ondevice-actions": "9.1.4",
- "@storybook/addon-ondevice-controls": "9.1.4",
- "@storybook/react-native": "9.1.4",
+ "@babel/core": "7.29.0",
+ "@eslint-react/eslint-plugin": "2.13.0",
+ "@eslint/js": "9.39.4",
+ "@hey-api/openapi-ts": "0.94.0",
+ "@storybook/addon-ondevice-actions": "10.2.3",
+ "@storybook/addon-ondevice-controls": "10.2.3",
+ "@storybook/react-native": "10.2.3",
"@svgr/cli": "8.1.0",
- "@types/node": "24.6.1",
- "@types/react": "19.1.13",
- "dotenv": "17.2.2",
- "dotenv-cli": "10.0.0",
- "eslint": "9.36.0",
- "eslint-config-expo": "10.0.0",
+ "@types/node": "25.4.0",
+ "@types/react": "19.2.14",
+ "dotenv": "17.3.1",
+ "dotenv-cli": "11.0.0",
+ "eslint": "9.39.4",
+ "eslint-config-expo": "55.0.0",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-simple-import-sort": "12.1.1",
- "eslint-plugin-sonarjs": "3.0.5",
- "eslint-plugin-unicorn": "61.0.2",
- "jiti": "2.6.0",
- "lefthook": "1.13.4",
+ "eslint-plugin-sonarjs": "4.0.2",
+ "eslint-plugin-unicorn": "63.0.0",
+ "jiti": "2.6.1",
+ "lefthook": "2.1.4",
"npm-run-all": "4.1.5",
- "prettier": "3.6.2",
- "storybook": "9.1.10",
+ "prettier": "3.8.1",
+ "prettier-plugin-tailwindcss": "0.7.2",
+ "storybook": "10.2.17",
"ts-plugin-sort-import-suggestions": "1.0.4",
- "typescript": "5.9.2",
- "typescript-eslint": "8.44.1"
+ "typescript": "5.9.3",
+ "typescript-eslint": "8.57.0"
},
"repository": {
"type": "git",
@@ -123,6 +141,13 @@
"url": "https://github.com/omar-bear"
}
],
+ "expo": {
+ "install": {
+ "exclude": [
+ "@react-native-community/slider"
+ ]
+ }
+ },
"license": "MIT",
"bugs": {
"url": "https://github.com/bearstudio/start-ui-native/issues"
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 3b79e353..f5775a29 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -12,298 +12,323 @@ importers:
.:
dependencies:
'@bearstudio/ui-state':
- specifier: 1.0.2
- version: 1.0.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 1.1.0
+ version: 1.1.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@better-auth/expo':
- specifier: 1.3.27
- version: 1.3.27(better-auth@1.3.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(expo-constants@18.0.9)(expo-crypto@15.0.7(expo@54.0.15))(expo-linking@8.0.8)(expo-secure-store@15.0.7(expo@54.0.15))(expo-web-browser@15.0.8(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)))
+ specifier: 1.5.5
+ version: 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1))(better-auth@1.5.5(mongodb@7.1.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(expo-constants@55.0.7)(expo-linking@55.0.7)(expo-network@55.0.8(expo@55.0.6)(react@19.2.0))(expo-web-browser@55.0.9(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)))
'@dev-plugins/async-storage':
specifier: 0.4.0
- version: 0.4.0(@react-native-async-storage/async-storage@2.2.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)))(expo@54.0.15)(react@19.1.0)
+ version: 0.4.0(@react-native-async-storage/async-storage@2.2.0(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)))(expo@55.0.6)(react@19.2.0)
'@dev-plugins/react-navigation':
specifier: 0.4.0
- version: 0.4.0(@react-navigation/core@7.12.4(react@19.1.0))(expo@54.0.15)(react@19.1.0)
+ version: 0.4.0(@react-navigation/core@7.16.1(react@19.2.0))(expo@55.0.6)(react@19.2.0)
'@dev-plugins/react-query':
specifier: 0.4.0
- version: 0.4.0(@tanstack/react-query@5.90.2(react@19.1.0))(expo@54.0.15)(react@19.1.0)
+ version: 0.4.0(@tanstack/react-query@5.90.21(react@19.2.0))(expo@55.0.6)(react@19.2.0)
'@expo/metro-runtime':
- specifier: 6.1.2
- version: 6.1.2(expo@54.0.15)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 55.0.6
+ version: 55.0.6(@expo/dom-webview@55.0.3)(expo@55.0.6)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
'@gorhom/bottom-sheet':
- specifier: 5.2.6
- version: 5.2.6(@types/react@19.1.13)(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 5.2.8
+ version: 5.2.8(@types/react@19.2.14)(react-native-gesture-handler@2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
'@react-native-async-storage/async-storage':
specifier: 2.2.0
- version: 2.2.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
+ version: 2.2.0(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))
+ '@react-native-community/datetimepicker':
+ specifier: 8.6.0
+ version: 8.6.0(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
'@react-native-community/slider':
specifier: 5.0.1
version: 5.0.1
'@react-navigation/elements':
- specifier: 2.6.4
- version: 2.6.4(@react-navigation/native@7.1.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 2.9.10
+ version: 2.9.10(@react-navigation/native@7.1.33(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.2(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@rn-primitives/avatar':
+ specifier: 1.2.0
+ version: 1.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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@rn-primitives/slot':
+ specifier: 1.2.0
+ version: 1.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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@shopify/flash-list':
+ specifier: 2.0.2
+ version: 2.0.2(@babel/runtime@7.28.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
'@tanstack/eslint-plugin-query':
- specifier: 5.90.1
- version: 5.90.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
+ specifier: 5.91.4
+ version: 5.91.4(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
'@tanstack/react-form':
- specifier: 1.23.4
- version: 1.23.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 1.28.4
+ version: 1.28.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@tanstack/react-query':
- specifier: 5.90.2
- version: 5.90.2(react@19.1.0)
+ specifier: 5.90.21
+ version: 5.90.21(react@19.2.0)
better-auth:
- specifier: 1.3.27
- version: 1.3.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 1.5.5
+ version: 1.5.5(mongodb@7.1.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ class-variance-authority:
+ specifier: 0.7.1
+ version: 0.7.1
+ clsx:
+ specifier: 2.1.1
+ version: 2.1.1
dayjs:
- specifier: 1.11.18
- version: 1.11.18
+ specifier: 1.11.19
+ version: 1.11.19
expo:
- specifier: 54.0.15
- version: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 55.0.6
+ version: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
expo-application:
- specifier: 7.0.7
- version: 7.0.7(expo@54.0.15)
+ specifier: 55.0.9
+ version: 55.0.9(expo@55.0.6)
expo-constants:
- specifier: 18.0.9
- version: 18.0.9(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
+ specifier: 55.0.7
+ version: 55.0.7(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(typescript@5.9.3)
+ expo-crypto:
+ specifier: ~55.0.9
+ version: 55.0.9(expo@55.0.6)
expo-device:
- specifier: 8.0.9
- version: 8.0.9(expo@54.0.15)
+ specifier: 55.0.9
+ version: 55.0.9(expo@55.0.6)
expo-font:
- specifier: 14.0.9
- version: 14.0.9(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 55.0.4
+ version: 55.0.4(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
expo-haptics:
- specifier: 15.0.7
- version: 15.0.7(expo@54.0.15)
+ specifier: 55.0.8
+ version: 55.0.8(expo@55.0.6)
expo-image:
- specifier: 3.0.10
- version: 3.0.10(expo@54.0.15)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 55.0.6
+ version: 55.0.6(expo@55.0.6)(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
expo-keep-awake:
- specifier: 15.0.7
- version: 15.0.7(expo@54.0.15)(react@19.1.0)
+ specifier: 55.0.4
+ version: 55.0.4(expo@55.0.6)(react@19.2.0)
expo-linking:
- specifier: 8.0.8
- version: 8.0.8(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 55.0.7
+ version: 55.0.7(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
expo-localization:
- specifier: 17.0.7
- version: 17.0.7(expo@54.0.15)(react@19.1.0)
+ specifier: 55.0.8
+ version: 55.0.8(expo@55.0.6)(react@19.2.0)
+ expo-network:
+ specifier: 55.0.8
+ version: 55.0.8(expo@55.0.6)(react@19.2.0)
expo-router:
- specifier: 6.0.13
- version: 6.0.13(@expo/metro-runtime@6.1.2)(@types/react@19.1.13)(expo-constants@18.0.9)(expo-linking@8.0.8)(expo@54.0.15)(react-dom@19.1.0(react@19.1.0))(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 55.0.5
+ version: 55.0.5(@expo/log-box@55.0.7)(@expo/metro-runtime@55.0.6)(@types/react@19.2.14)(expo-constants@55.0.7)(expo-font@55.0.4)(expo-linking@55.0.7)(expo@55.0.6)(react-dom@19.2.0(react@19.2.0))(react-native-gesture-handler@2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.2(react-native@0.83.2(@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.2(@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))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
expo-secure-store:
- specifier: 15.0.7
- version: 15.0.7(expo@54.0.15)
+ specifier: 55.0.8
+ version: 55.0.8(expo@55.0.6)
expo-splash-screen:
- specifier: 31.0.10
- version: 31.0.10(expo@54.0.15)
+ specifier: 55.0.10
+ version: 55.0.10(expo@55.0.6)(typescript@5.9.3)
expo-status-bar:
- specifier: 3.0.8
- version: 3.0.8(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 55.0.4
+ version: 55.0.4(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
expo-symbols:
- specifier: 1.0.7
- version: 1.0.7(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
+ specifier: 55.0.5
+ version: 55.0.5(expo-font@55.0.4)(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
expo-system-ui:
- specifier: 6.0.7
- version: 6.0.7(expo@54.0.15)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
+ specifier: 55.0.9
+ version: 55.0.9(expo@55.0.6)(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))
expo-updates:
- specifier: 29.0.12
- version: 29.0.12(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 55.0.13
+ version: 55.0.13(expo@55.0.6)(react-native@0.83.2(@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:
- specifier: 15.0.8
- version: 15.0.8(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
+ specifier: 55.0.9
+ version: 55.0.9(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))
i18next:
- specifier: 25.5.3
- version: 25.5.3(typescript@5.9.2)
+ specifier: 25.8.18
+ version: 25.8.18(typescript@5.9.3)
lucide-react-native:
- specifier: 0.545.0
- version: 0.545.0(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 0.577.0
+ version: 0.577.0(react-native-svg@15.15.3(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.0
+ version: 19.2.0
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.0
+ version: 19.2.0(react@19.2.0)
react-i18next:
- specifier: 16.0.0
- version: 16.0.0(i18next@25.5.3(typescript@5.9.2))(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)(typescript@5.9.2)
+ specifier: 16.5.8
+ version: 16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
react-native:
- specifier: 0.81.4
- version: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-ficus-ui:
- specifier: 2.3.0
- version: 2.3.0(@babel/core@7.28.4)(@babel/runtime@7.28.4)(@types/react@19.1.13)(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 0.83.2
+ version: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
react-native-gesture-handler:
- specifier: 2.28.0
- version: 2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 2.30.0
+ version: 2.30.0(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
react-native-pager-view:
- specifier: 6.9.1
- version: 6.9.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 8.0.0
+ version: 8.0.0(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
react-native-reanimated:
- specifier: 4.1.2
- version: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 4.2.1
+ version: 4.2.1(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
react-native-safe-area-context:
- specifier: 5.6.1
- version: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 5.6.2
+ version: 5.6.2(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
react-native-screens:
- specifier: 4.16.0
- version: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 4.23.0
+ version: 4.23.0(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
react-native-svg:
- specifier: 15.12.1
- version: 15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 15.15.3
+ version: 15.15.3(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
react-native-web:
- specifier: 0.21.1
- version: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 0.21.2
+ version: 0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
react-native-worklets:
- specifier: 0.5.1
- version: 0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 0.7.2
+ version: 0.7.2(@babel/core@7.29.0)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ remeda:
+ specifier: 2.33.6
+ version: 2.33.6
sonner-native:
- specifier: 0.21.1
- version: 0.21.1(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ specifier: 0.23.1
+ version: 0.23.1(react-native-gesture-handler@2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.2(react-native@0.83.2(@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.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ tailwind-merge:
+ specifier: 3.5.0
+ version: 3.5.0
+ tailwindcss:
+ specifier: 4.2.1
+ version: 4.2.1
+ tailwindcss-animate:
+ specifier: 1.0.7
+ version: 1.0.7(tailwindcss@4.2.1)
+ ts-pattern:
+ specifier: 5.9.0
+ version: 5.9.0
+ uniwind:
+ specifier: 1.5.0
+ version: 1.5.0(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(tailwindcss@4.2.1)
zod:
- specifier: 4.1.11
- version: 4.1.11
+ specifier: 4.3.6
+ version: 4.3.6
zustand:
- specifier: 5.0.8
- version: 5.0.8(@types/react@19.1.13)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0))
+ specifier: 5.0.11
+ version: 5.0.11(@types/react@19.2.14)(react@19.2.0)(use-sync-external-store@1.6.0(react@19.2.0))
devDependencies:
'@babel/core':
- specifier: 7.28.4
- version: 7.28.4
+ specifier: 7.29.0
+ version: 7.29.0
'@eslint-react/eslint-plugin':
- specifier: 1.53.1
- version: 1.53.1(eslint@9.36.0(jiti@2.6.0))(ts-api-utils@2.1.0(typescript@5.9.2))(typescript@5.9.2)
+ specifier: 2.13.0
+ version: 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
'@eslint/js':
- specifier: 9.36.0
- version: 9.36.0
+ specifier: 9.39.4
+ version: 9.39.4
'@hey-api/openapi-ts':
- specifier: 0.85.1
- version: 0.85.1(typescript@5.9.2)
+ specifier: 0.94.0
+ version: 0.94.0(typescript@5.9.3)
'@storybook/addon-ondevice-actions':
- specifier: 9.1.4
- version: 9.1.4(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2))
+ specifier: 10.2.3
+ version: 10.2.3(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(storybook@10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))
'@storybook/addon-ondevice-controls':
- specifier: 9.1.4
- version: 9.1.4(@gorhom/bottom-sheet@5.2.6(@types/react@19.1.13)(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(@react-native-community/datetimepicker@8.4.5(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(@react-native-community/slider@5.0.1)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2))(typescript@5.9.2)
+ specifier: 10.2.3
+ version: 10.2.3(@gorhom/bottom-sheet@5.2.8(@types/react@19.2.14)(react-native-gesture-handler@2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@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(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(@react-native-community/slider@5.0.1)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(storybook@10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
'@storybook/react-native':
- specifier: 9.1.4
- version: 9.1.4(9fcd6d6e744a7cbfb1042062dad4162f)
+ specifier: 10.2.3
+ version: 10.2.3(c950714389eb8b4b1b6c5d73162b9aff)
'@svgr/cli':
specifier: 8.1.0
- version: 8.1.0(typescript@5.9.2)
+ version: 8.1.0(typescript@5.9.3)
'@types/node':
- specifier: 24.6.1
- version: 24.6.1
+ specifier: 25.4.0
+ version: 25.4.0
'@types/react':
- specifier: 19.1.13
- version: 19.1.13
+ specifier: 19.2.14
+ version: 19.2.14
dotenv:
- specifier: 17.2.2
- version: 17.2.2
+ specifier: 17.3.1
+ version: 17.3.1
dotenv-cli:
- specifier: 10.0.0
- version: 10.0.0
+ specifier: 11.0.0
+ version: 11.0.0
eslint:
- specifier: 9.36.0
- version: 9.36.0(jiti@2.6.0)
+ specifier: 9.39.4
+ version: 9.39.4(jiti@2.6.1)
eslint-config-expo:
- specifier: 10.0.0
- version: 10.0.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
+ specifier: 55.0.0
+ version: 55.0.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
eslint-plugin-react-hooks:
specifier: 5.2.0
- version: 5.2.0(eslint@9.36.0(jiti@2.6.0))
+ version: 5.2.0(eslint@9.39.4(jiti@2.6.1))
eslint-plugin-simple-import-sort:
specifier: 12.1.1
- version: 12.1.1(eslint@9.36.0(jiti@2.6.0))
+ version: 12.1.1(eslint@9.39.4(jiti@2.6.1))
eslint-plugin-sonarjs:
- specifier: 3.0.5
- version: 3.0.5(eslint@9.36.0(jiti@2.6.0))
+ specifier: 4.0.2
+ version: 4.0.2(eslint@9.39.4(jiti@2.6.1))
eslint-plugin-unicorn:
- specifier: 61.0.2
- version: 61.0.2(eslint@9.36.0(jiti@2.6.0))
+ specifier: 63.0.0
+ version: 63.0.0(eslint@9.39.4(jiti@2.6.1))
jiti:
- specifier: 2.6.0
- version: 2.6.0
+ specifier: 2.6.1
+ version: 2.6.1
lefthook:
- specifier: 1.13.4
- version: 1.13.4
+ specifier: 2.1.4
+ version: 2.1.4
npm-run-all:
specifier: 4.1.5
version: 4.1.5
prettier:
- specifier: 3.6.2
- version: 3.6.2
+ specifier: 3.8.1
+ version: 3.8.1
+ prettier-plugin-tailwindcss:
+ specifier: 0.7.2
+ version: 0.7.2(prettier@3.8.1)
storybook:
- specifier: 9.1.10
- version: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)
+ specifier: 10.2.17
+ version: 10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
ts-plugin-sort-import-suggestions:
specifier: 1.0.4
version: 1.0.4
typescript:
- specifier: 5.9.2
- version: 5.9.2
+ specifier: 5.9.3
+ version: 5.9.3
typescript-eslint:
- specifier: 8.44.1
- version: 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
+ specifier: 8.57.0
+ version: 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
packages:
- '@0no-co/graphql.web@1.2.0':
- resolution: {integrity: sha512-/1iHy9TTr63gE1YcR5idjx8UREz1s0kFhydf3bBLCXyqjhkIc6igAzTOx3zPifCwFR87tsh/4Pa9cNts6d2otw==}
- peerDependencies:
- graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
- peerDependenciesMeta:
- graphql:
- optional: true
-
'@adobe/css-tools@4.4.4':
resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==}
- '@ark/schema@0.46.0':
- resolution: {integrity: sha512-c2UQdKgP2eqqDArfBqQIJppxJHvNNXuQPeuSPlDML4rjw+f1cu0qAlzOG4b8ujgm9ctIDWwhpyw6gjG5ledIVQ==}
-
- '@ark/util@0.46.0':
- resolution: {integrity: sha512-JPy/NGWn/lvf1WmGCPw2VGpBg5utZraE84I7wli18EDF3p3zc/e9WolT35tINeZO3l7C77SjqRJeAUoT0CvMRg==}
-
- '@babel/code-frame@7.10.4':
- resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==}
-
- '@babel/code-frame@7.27.1':
- resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
+ '@babel/code-frame@7.29.0':
+ resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.28.4':
- resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==}
+ '@babel/compat-data@7.29.0':
+ resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.28.4':
- resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==}
+ '@babel/core@7.29.0':
+ resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.28.3':
- resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
+ '@babel/generator@7.29.1':
+ resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.27.3':
resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.27.2':
- resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
+ '@babel/helper-compilation-targets@7.28.6':
+ resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.28.3':
- resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==}
+ '@babel/helper-create-class-features-plugin@7.28.6':
+ resolution: {integrity: sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.27.1':
- resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==}
+ '@babel/helper-create-regexp-features-plugin@7.28.5':
+ resolution: {integrity: sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-define-polyfill-provider@0.6.5':
- resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==}
+ '@babel/helper-define-polyfill-provider@0.6.7':
+ resolution: {integrity: sha512-6Fqi8MtQ/PweQ9xvux65emkLQ83uB+qAVtfHkC9UodyHMIZdxNI01HjLCLUtybElp2KY2XNE0nOgyP1E1vXw9w==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -311,16 +336,16 @@ packages:
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-member-expression-to-functions@7.27.1':
- resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
+ '@babel/helper-member-expression-to-functions@7.28.5':
+ resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.27.1':
- resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
+ '@babel/helper-module-imports@7.28.6':
+ resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.28.3':
- resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
+ '@babel/helper-module-transforms@7.28.6':
+ resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -329,8 +354,8 @@ packages:
resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.27.1':
- resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
+ '@babel/helper-plugin-utils@7.28.6':
+ resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==}
engines: {node: '>=6.9.0'}
'@babel/helper-remap-async-to-generator@7.27.1':
@@ -339,8 +364,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.27.1':
- resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
+ '@babel/helper-replace-supers@7.28.6':
+ resolution: {integrity: sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -353,63 +378,29 @@ packages:
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.27.1':
- resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
+ '@babel/helper-validator-identifier@7.28.5':
+ resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.28.3':
- resolution: {integrity: sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==}
+ '@babel/helper-wrap-function@7.28.6':
+ resolution: {integrity: sha512-z+PwLziMNBeSQJonizz2AGnndLsP2DeGHIxDAn+wdHOGuo4Fo1x1HBPPXeE9TAOPHNNWQKCSlA2VZyYyyibDnQ==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.28.4':
- resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
+ '@babel/helpers@7.28.6':
+ resolution: {integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.25.9':
- resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/parser@7.28.4':
- resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==}
+ '@babel/parser@7.29.0':
+ resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1':
- resolution: {integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1':
- resolution: {integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1':
- resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1':
- resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
-
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3':
- resolution: {integrity: sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/plugin-proposal-decorators@7.28.0':
- resolution: {integrity: sha512-zOiZqvANjWDUaUS9xMxbMcK/Zccztbe/6ikvUXaG9nsPH3w6qh5UaPGAnirI/WhIbZ8m3OHU0ReyPrknG+ZKeg==}
+ '@babel/plugin-proposal-decorators@7.29.0':
+ resolution: {integrity: sha512-CVBVv3VY/XRMxRYq5dwr2DS7/MvqPm23cOCjbwNnVrfOqcWlnefua1uUs0sjdKOGjvPUG633o07uWzJq4oI6dA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -420,12 +411,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2':
- resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-async-generators@7.8.4':
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
@@ -447,8 +432,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-decorators@7.27.1':
- resolution: {integrity: sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==}
+ '@babel/plugin-syntax-decorators@7.28.6':
+ resolution: {integrity: sha512-71EYI0ONURHJBL4rSFXnITXqXrrY8q4P0q006DPfN+Rk+ASM+++IBXem/ruokgBZR8YNEWZ8R6B+rCb8VcUTqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -458,26 +443,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-export-default-from@7.27.1':
- resolution: {integrity: sha512-eBC/3KSekshx19+N40MzjWqJd7KTEdOoLesAfa4IDFI8eRz5a47i5Oszus6zG/cwIXN63YhgLOMSSNJx49sENg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-flow@7.27.1':
- resolution: {integrity: sha512-p9OkPbZ5G7UT1MofwYFigGebnrzGJacoBSQM0/6bi/PUMVE+qlWDD/OalvQKbwgQzU6dl0xAv6r4X7Jme0RYxA==}
+ '@babel/plugin-syntax-export-default-from@7.28.6':
+ resolution: {integrity: sha512-Svlx1fjJFnNz0LZeUaybRukSxZI3KkpApUmIRzEdXC5k8ErTOz0OD0kNrICi5Vc3GlpP5ZCeRyRO+mfWTSz+iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.27.1':
- resolution: {integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==}
+ '@babel/plugin-syntax-flow@7.28.6':
+ resolution: {integrity: sha512-D+OrJumc9McXNEBI/JmFnc/0uCM2/Y3PEBG3gfV3QIYkKv5pvnpzFrl1kYCrcHJP8nOeFB/SHi1IHz29pNGuew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.27.1':
- resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==}
+ '@babel/plugin-syntax-import-attributes@7.28.6':
+ resolution: {integrity: sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -492,8 +471,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.27.1':
- resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
+ '@babel/plugin-syntax-jsx@7.28.6':
+ resolution: {integrity: sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -540,56 +519,50 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.27.1':
- resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
+ '@babel/plugin-syntax-typescript@7.28.6':
+ resolution: {integrity: sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6':
- resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/plugin-transform-arrow-functions@7.27.1':
resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.28.0':
- resolution: {integrity: sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==}
+ '@babel/plugin-transform-async-generator-functions@7.29.0':
+ resolution: {integrity: sha512-va0VdWro4zlBr2JsXC+ofCPB2iG12wPtVGTWFx2WLDOM3nYQZZIGP82qku2eW/JR83sD+k2k+CsNtyEbUqhU6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.27.1':
- resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==}
+ '@babel/plugin-transform-async-to-generator@7.28.6':
+ resolution: {integrity: sha512-ilTRcmbuXjsMmcZ3HASTe4caH5Tpo93PkTxF9oG2VZsSWsahydmcEHhix9Ik122RcTnZnUzPbmux4wh1swfv7g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.27.1':
- resolution: {integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==}
+ '@babel/plugin-transform-block-scoping@7.28.6':
+ resolution: {integrity: sha512-tt/7wOtBmwHPNMPu7ax4pdPz6shjFrmHDghvNC+FG9Qvj7D6mJcoRQIF5dy4njmxR941l6rgtvfSB2zX3VlUIw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.28.4':
- resolution: {integrity: sha512-1yxmvN0MJHOhPVmAsmoW5liWwoILobu/d/ShymZmj867bAdxGbehIrew1DuLpw2Ukv+qDSSPQdYW1dLNE7t11A==}
+ '@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.27.1':
- resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==}
+ '@babel/plugin-transform-class-properties@7.28.6':
+ resolution: {integrity: sha512-dY2wS3I2G7D697VHndN91TJr8/AAfXQNt5ynCTI/MpxMsSzHp+52uNivYT5wCPax3whc47DR8Ba7cmlQMg24bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.28.3':
- resolution: {integrity: sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==}
+ '@babel/plugin-transform-class-static-block@7.28.6':
+ resolution: {integrity: sha512-rfQ++ghVwTWTqQ7w8qyDxL1XGihjBss4CmTgGRCTAC9RIbhVpyp4fOeZtta0Lbf+dTNIVJer6ych2ibHwkZqsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
@@ -600,50 +573,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.27.1':
- resolution: {integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-destructuring@7.28.0':
- resolution: {integrity: sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-dotall-regex@7.27.1':
- resolution: {integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-duplicate-keys@7.27.1':
- resolution: {integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1':
- resolution: {integrity: sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/plugin-transform-dynamic-import@7.27.1':
- resolution: {integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==}
+ '@babel/plugin-transform-classes@7.28.6':
+ resolution: {integrity: sha512-EF5KONAqC5zAqT783iMGuM2ZtmEBy+mJMOKl2BCvPZ2lVrwvXnB6o+OBWCS+CoeCCpVRF2sA2RBKUxvT8tQT5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-explicit-resource-management@7.28.0':
- resolution: {integrity: sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==}
+ '@babel/plugin-transform-computed-properties@7.28.6':
+ resolution: {integrity: sha512-bcc3k0ijhHbc2lEfpFHgx7eYw9KNXqOerKWfzbxEHUGKnS3sz9C4CNL9OiFN1297bDNfUiSO7DaLzbvHQQQ1BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.27.1':
- resolution: {integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==}
+ '@babel/plugin-transform-destructuring@7.28.5':
+ resolution: {integrity: sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -672,92 +615,56 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.27.1':
- resolution: {integrity: sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-literals@7.27.1':
resolution: {integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.27.1':
- resolution: {integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-member-expression-literals@7.27.1':
- resolution: {integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-modules-amd@7.27.1':
- resolution: {integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-modules-commonjs@7.27.1':
- resolution: {integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-modules-systemjs@7.27.1':
- resolution: {integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==}
+ '@babel/plugin-transform-logical-assignment-operators@7.28.6':
+ resolution: {integrity: sha512-+anKKair6gpi8VsM/95kmomGNMD0eLz1NQ8+Pfw5sAwWH9fGYXT50E55ZpV0pHUHWf6IUTWPM+f/7AAff+wr9A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.27.1':
- resolution: {integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==}
+ '@babel/plugin-transform-modules-commonjs@7.28.6':
+ resolution: {integrity: sha512-jppVbf8IV9iWWwWTQIxJMAJCWBuuKx71475wHwYytrRGQ2CWiDvYlADQno3tcYpS/T2UUWFQp3nVtYfK/YBQrA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-named-capturing-groups-regex@7.27.1':
- resolution: {integrity: sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==}
+ '@babel/plugin-transform-named-capturing-groups-regex@7.29.0':
+ resolution: {integrity: sha512-1CZQA5KNAD6ZYQLPw7oi5ewtDNxH/2vuCh+6SmvgDfhumForvs8a1o9n0UrEoBD8HU4djO2yWngTQlXl1NDVEQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-new-target@7.27.1':
- resolution: {integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==}
- engines: {node: '>=6.9.0'}
- 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-numeric-separator@7.27.1':
- resolution: {integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.28.6':
+ resolution: {integrity: sha512-3wKbRgmzYbw24mDJXT7N+ADXw8BC/imU9yo9c9X9NKaLF1fW+e5H1U5QjMUBe4Qo4Ox/o++IyUkl1sVCLgevKg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.28.4':
- resolution: {integrity: sha512-373KA2HQzKhQCYiRVIRr+3MjpCObqzDlyrM6u4I201wL8Mp2wHf7uB8GhDwis03k2ti8Zr65Zyyqs1xOxUF/Ew==}
+ '@babel/plugin-transform-numeric-separator@7.28.6':
+ resolution: {integrity: sha512-SJR8hPynj8outz+SlStQSwvziMN4+Bq99it4tMIf5/Caq+3iOc0JtKyse8puvyXkk3eFRIA5ID/XfunGgO5i6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-super@7.27.1':
- resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==}
+ '@babel/plugin-transform-object-rest-spread@7.28.6':
+ resolution: {integrity: sha512-5rh+JR4JBC4pGkXLAcYdLHZjXudVxWMXbB6u6+E9lRL5TrGVbHt1TjxGbZ8CkmYw9zjkB7jutzOROArsqtncEA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.27.1':
- resolution: {integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==}
+ '@babel/plugin-transform-optional-catch-binding@7.28.6':
+ resolution: {integrity: sha512-R8ja/Pyrv0OGAvAXQhSTmWyPJPml+0TMqXlO5w+AsMEiwb2fg3WkOvob7UxFSL3OIttFSGSRFKQsOhJ/X6HQdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -768,26 +675,26 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.27.7':
- resolution: {integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==}
+ '@babel/plugin-transform-optional-chaining@7.28.6':
+ resolution: {integrity: sha512-A4zobikRGJTsX9uqVFdafzGkqD30t26ck2LmOzAuLL8b2x6k3TIqRiT2xVvA9fNmFeTX484VpsdgmKNA0bS23w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.27.1':
- resolution: {integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==}
+ '@babel/plugin-transform-parameters@7.27.7':
+ resolution: {integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.27.1':
- resolution: {integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==}
+ '@babel/plugin-transform-private-methods@7.28.6':
+ resolution: {integrity: sha512-piiuapX9CRv7+0st8lmuUlRSmX6mBcVeNQ1b4AYzJxfCMuBfB0vBXDiGSmm03pKJw1v6cZ8KSeM+oUnM6yAExg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-property-literals@7.27.1':
- resolution: {integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==}
+ '@babel/plugin-transform-private-property-in-object@7.28.6':
+ resolution: {integrity: sha512-b97jvNSOb5+ehyQmBpmhOCiUC5oVK4PMnpRvO7+ymFBoqYjeDHIU9jnrNUuwHOiL9RpGDoKBpSViarV+BU+eVA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -816,8 +723,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx@7.27.1':
- resolution: {integrity: sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==}
+ '@babel/plugin-transform-react-jsx@7.28.6':
+ resolution: {integrity: sha512-61bxqhiRfAACulXSLd/GxqmAedUSrRZIu/cbaT18T1CetkTmtDN15it7i80ru4DVqRK1WMxQhXs+Lf9kajm5Ow==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -828,26 +735,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.28.4':
- resolution: {integrity: sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-regexp-modifiers@7.27.1':
- resolution: {integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/plugin-transform-reserved-words@7.27.1':
- resolution: {integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==}
+ '@babel/plugin-transform-regenerator@7.29.0':
+ resolution: {integrity: sha512-FijqlqMA7DmRdg/aINBSs04y8XNTYw/lr1gJ2WsmBnnaNw1iS43EPkJW+zK7z65auG3AWRFXWj+NcTQwYptUog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.28.3':
- resolution: {integrity: sha512-Y6ab1kGqZ0u42Zv/4a7l0l72n9DKP/MKoKWaUSBylrhNZO2prYuqFOLbn5aW5SIFXwSH93yfjbgllL8lxuGKLg==}
+ '@babel/plugin-transform-runtime@7.29.0':
+ resolution: {integrity: sha512-jlaRT5dJtMaMCV6fAuLbsQMSwz/QkvaHOHOSXRitGGwSpR1blCY4KUKoyP2tYO8vJcqYe8cEj96cqSztv3uF9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -858,8 +753,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.27.1':
- resolution: {integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==}
+ '@babel/plugin-transform-spread@7.28.6':
+ resolution: {integrity: sha512-9U4QObUC0FtJl05AsUcodau/RWDytrU6uKgkxu09mLR9HLDAtUMoPuuskm5huQsoktmsYpI+bGmq+iapDcriKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -870,38 +765,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-strict-mode@7.27.1':
- resolution: {integrity: sha512-cdA1TyX9NfOaV8PILyNSrzJxXnjk4UeAgSwSLDCepfOg9AlxCg5al0KWsFh0ZJRzp6k5gwpSlJ4auWT+gx46ig==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-template-literals@7.27.1':
resolution: {integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.27.1':
- resolution: {integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-typescript@7.28.0':
- resolution: {integrity: sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-unicode-escapes@7.27.1':
- resolution: {integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-unicode-property-regex@7.27.1':
- resolution: {integrity: sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==}
+ '@babel/plugin-transform-typescript@7.28.6':
+ resolution: {integrity: sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -912,80 +783,132 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.27.1':
- resolution: {integrity: sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/preset-env@7.28.3':
- resolution: {integrity: sha512-ROiDcM+GbYVPYBOeCR6uBXKkQpBExLl8k9HO1ygXEyds39j+vCCsjmj7S8GOniZQlEs81QlkdJZe76IpLSiqpg==}
+ '@babel/preset-react@7.28.5':
+ resolution: {integrity: sha512-Z3J8vhRq7CeLjdC58jLv4lnZ5RKFUJWqH5emvxmv9Hv3BD1T9R/Im713R4MTKwvFaV74ejZ3sM01LyEKk4ugNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-modules@0.1.6-no-external-plugins':
- resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
-
- '@babel/preset-react@7.27.1':
- resolution: {integrity: sha512-oJHWh2gLhU9dW9HHr42q0cI0/iHHXTLGe39qvpAZZzagHy0MzYLCnCVV0symeRvzmjHyVU7mw2K06E6u/JwbhA==}
+ '@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.27.1':
- resolution: {integrity: sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==}
+ '@babel/preset-typescript@7.28.5':
+ resolution: {integrity: sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/runtime@7.28.4':
- resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
+ '@babel/runtime@7.28.6':
+ resolution: {integrity: sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.27.2':
- resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
+ '@babel/template@7.28.6':
+ resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.28.4':
- resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==}
+ '@babel/traverse@7.29.0':
+ resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.28.4':
- resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==}
+ '@babel/types@7.29.0':
+ resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
engines: {node: '>=6.9.0'}
- '@bearstudio/ui-state@1.0.2':
- resolution: {integrity: sha512-/O47TMdXKkGRETlBK83DQEL5f9u56+llybHmOzGb8qLSdwzIlKaKDYzJ4IFQw2BglDOX+azEsc3vQ4C7Z9nJaA==}
+ '@bearstudio/ui-state@1.1.0':
+ resolution: {integrity: sha512-NtLjXNBBZp2mXFVOGaRJYuFiOoCyDMz03FB9Iw7ZkOBHsJsakHsldElC/d7iIVmbUNDfK7YhjehC+rLIGjzPSA==}
peerDependencies:
react: '>=18.0.0'
react-dom: '>=18.0.0'
- '@better-auth/core@1.3.27':
- resolution: {integrity: sha512-3Sfdax6MQyronY+znx7bOsfQHI6m1SThvJWb0RDscFEAhfqLy95k1sl+/PgGyg0cwc2cUXoEiAOSqYdFYrg3vA==}
+ '@better-auth/core@1.5.5':
+ resolution: {integrity: sha512-1oR/2jAp821Dcf67kQYHUoyNcdc1TcShfw4QMK0YTVntuRES5mUOyvEJql5T6eIuLfaqaN4LOF78l0FtF66HXA==}
+ peerDependencies:
+ '@better-auth/utils': 0.3.1
+ '@better-fetch/fetch': 1.1.21
+ '@cloudflare/workers-types': '>=4'
+ better-call: 1.3.2
+ jose: ^6.1.0
+ kysely: ^0.28.5
+ nanostores: ^1.0.1
+ peerDependenciesMeta:
+ '@cloudflare/workers-types':
+ optional: true
+
+ '@better-auth/drizzle-adapter@1.5.5':
+ resolution: {integrity: sha512-HAi9xAP40oDt48QZeYBFTcmg3vt1Jik90GwoRIfangd7VGbxesIIDBJSnvwMbZ52GBIc6+V4FRw9lasNiNrPfw==}
+ peerDependencies:
+ '@better-auth/core': 1.5.5
+ '@better-auth/utils': ^0.3.0
+ drizzle-orm: '>=0.41.0'
+ peerDependenciesMeta:
+ drizzle-orm:
+ optional: true
- '@better-auth/expo@1.3.27':
- resolution: {integrity: sha512-2bZ4Fi7Moa99ymjkIwRUzENbqmzZNjD9cjlq2lpuiF/+TGOA2LYJmS7RnR/i9+UHKi5T3AsXgrIRMFQgYtgZ2Q==}
+ '@better-auth/expo@1.5.5':
+ resolution: {integrity: sha512-viaMqxnxVYQyDAzPAWqsVDwE0REI2t/2lOUzqYwK1wP9NOTA/DlvydNPgNrsl3iboes3FlyktDOb9XdeGAjzEQ==}
peerDependencies:
- better-auth: 1.3.27
+ '@better-auth/core': 1.5.5
+ better-auth: 1.5.5
expo-constants: '>=17.0.0'
- expo-crypto: '>=13.0.0'
expo-linking: '>=7.0.0'
- expo-secure-store: '>=14.0.0'
+ expo-network: '>=8.0.7'
expo-web-browser: '>=14.0.0'
+ peerDependenciesMeta:
+ expo-constants:
+ optional: true
+ expo-linking:
+ optional: true
+ expo-network:
+ optional: true
+ expo-web-browser:
+ optional: true
+
+ '@better-auth/kysely-adapter@1.5.5':
+ resolution: {integrity: sha512-LmHffIVnqbfsxcxckMOoE8MwibWrbVFch+kwPKJ5OFDFv6lin75ufN7ZZ7twH0IMPLT/FcgzaRjP8jRrXRef9g==}
+ peerDependencies:
+ '@better-auth/core': 1.5.5
+ '@better-auth/utils': ^0.3.0
+ kysely: ^0.27.0 || ^0.28.0
+
+ '@better-auth/memory-adapter@1.5.5':
+ resolution: {integrity: sha512-4X0j1/2L+nsgmObjmy9xEGUFWUv38Qjthp558fwS3DAp6ueWWyCaxaD6VJZ7m5qPNMrsBStO5WGP8CmJTEWm7g==}
+ peerDependencies:
+ '@better-auth/core': 1.5.5
+ '@better-auth/utils': ^0.3.0
- '@better-auth/utils@0.3.0':
- resolution: {integrity: sha512-W+Adw6ZA6mgvnSnhOki270rwJ42t4XzSK6YWGF//BbVXL6SwCLWfyzBc1lN2m/4RM28KubdBKQ4X5VMoLRNPQw==}
+ '@better-auth/mongo-adapter@1.5.5':
+ resolution: {integrity: sha512-P1J9ljL5X5k740I8Rx1esPWNgWYPdJR5hf2CY7BwDSrQFPUHuzeCg0YhtEEP55niNateTXhBqGAcy0fVOeamZg==}
+ peerDependencies:
+ '@better-auth/core': 1.5.5
+ '@better-auth/utils': ^0.3.0
+ mongodb: ^6.0.0 || ^7.0.0
- '@better-fetch/fetch@1.1.18':
- resolution: {integrity: sha512-rEFOE1MYIsBmoMJtQbl32PGHHXuG2hDxvEd7rUHE0vCBoFQVSDqaVs9hkZEtHCxRoY+CljXKFCOuJ8uxqw1LcA==}
+ '@better-auth/prisma-adapter@1.5.5':
+ resolution: {integrity: sha512-CliDd78CXHzzwQIXhCdwGr5Ml53i6JdCHWV7PYwTIJz9EAm6qb2RVBdpP3nqEfNjINGM22A6gfleCgCdZkTIZg==}
+ peerDependencies:
+ '@better-auth/core': 1.5.5
+ '@better-auth/utils': ^0.3.0
+ '@prisma/client': ^5.0.0 || ^6.0.0 || ^7.0.0
+ prisma: ^5.0.0 || ^6.0.0 || ^7.0.0
+ peerDependenciesMeta:
+ '@prisma/client':
+ optional: true
+ prisma:
+ optional: true
- '@chakra-ui/utils@2.2.2':
- resolution: {integrity: sha512-jUPLT0JzRMWxpdzH6c+t0YMJYrvc5CLericgITV3zDSXblkfx3DsYXqU11DJTSGZI9dUKzM1Wd0Wswn4eJwvFQ==}
+ '@better-auth/telemetry@1.5.5':
+ resolution: {integrity: sha512-1+lklxArn4IMHuU503RcPdXrSG2tlXt4jnGG3omolmspQ7tktg/Y9XO/yAkYDurtvMn1xJ8X1Ov01Ji/r5s9BQ==}
peerDependencies:
- react: '>=16.8.0'
+ '@better-auth/core': 1.5.5
+
+ '@better-auth/utils@0.3.1':
+ resolution: {integrity: sha512-+CGp4UmZSUrHHnpHhLPYu6cV+wSUSvVbZbNykxhUDocpVNTo9uFFxw/NqJlh1iC4wQ9HKKWGCKuZ5wUgS0v6Kg==}
+
+ '@better-fetch/fetch@1.1.21':
+ resolution: {integrity: sha512-/ImESw0sskqlVR94jB+5+Pxjf+xBwDZF/N5+y2/q4EqD7IARUTSpPfIo8uf39SYpCxyOCtbyYpUrZ3F/k0zT4A==}
'@dev-plugins/async-storage@0.4.0':
resolution: {integrity: sha512-C6XTCb+iDT+kZ9Idi5JcR94KNlzxq6WeSoNozbObVhKazaBS2ZKp3q6kxbwVJqbSeWmS5/Uq7qN1AuKjSL6Xdg==}
@@ -1012,253 +935,253 @@ packages:
resolution: {integrity: sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==}
engines: {node: '>=0.8.0'}
- '@emnapi/core@1.5.0':
- resolution: {integrity: sha512-sbP8GzB1WDzacS8fgNPpHlp6C9VZe+SJP3F90W9rLemaQj2PzIuTEl1qDOYQf58YIpyjViI24y9aPWCjEzY2cg==}
+ '@emnapi/core@1.9.0':
+ resolution: {integrity: sha512-0DQ98G9ZQZOxfUcQn1waV2yS8aWdZ6kJMbYCJB3oUBecjWYO1fqJ+a1DRfPF3O5JEkwqwP1A9QEN/9mYm2Yd0w==}
- '@emnapi/runtime@1.5.0':
- resolution: {integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==}
+ '@emnapi/runtime@1.9.0':
+ resolution: {integrity: sha512-QN75eB0IH2ywSpRpNddCRfQIhmJYBCJ1x5Lb3IscKAL8bMnVAKnRg8dCoXbHzVLLH7P38N2Z3mtulB7W0J0FKw==}
- '@emnapi/wasi-threads@1.1.0':
- resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
+ '@emnapi/wasi-threads@1.2.0':
+ resolution: {integrity: sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==}
- '@esbuild/aix-ppc64@0.25.10':
- resolution: {integrity: sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==}
+ '@esbuild/aix-ppc64@0.27.3':
+ resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.25.10':
- resolution: {integrity: sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==}
+ '@esbuild/android-arm64@0.27.3':
+ resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.25.10':
- resolution: {integrity: sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==}
+ '@esbuild/android-arm@0.27.3':
+ resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.25.10':
- resolution: {integrity: sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==}
+ '@esbuild/android-x64@0.27.3':
+ resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.25.10':
- resolution: {integrity: sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==}
+ '@esbuild/darwin-arm64@0.27.3':
+ resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.25.10':
- resolution: {integrity: sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==}
+ '@esbuild/darwin-x64@0.27.3':
+ resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.25.10':
- resolution: {integrity: sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==}
+ '@esbuild/freebsd-arm64@0.27.3':
+ resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.25.10':
- resolution: {integrity: sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==}
+ '@esbuild/freebsd-x64@0.27.3':
+ resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.25.10':
- resolution: {integrity: sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==}
+ '@esbuild/linux-arm64@0.27.3':
+ resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.25.10':
- resolution: {integrity: sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==}
+ '@esbuild/linux-arm@0.27.3':
+ resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.25.10':
- resolution: {integrity: sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==}
+ '@esbuild/linux-ia32@0.27.3':
+ resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.25.10':
- resolution: {integrity: sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==}
+ '@esbuild/linux-loong64@0.27.3':
+ resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.25.10':
- resolution: {integrity: sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==}
+ '@esbuild/linux-mips64el@0.27.3':
+ resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.25.10':
- resolution: {integrity: sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==}
+ '@esbuild/linux-ppc64@0.27.3':
+ resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.25.10':
- resolution: {integrity: sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==}
+ '@esbuild/linux-riscv64@0.27.3':
+ resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.25.10':
- resolution: {integrity: sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==}
+ '@esbuild/linux-s390x@0.27.3':
+ resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.25.10':
- resolution: {integrity: sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==}
+ '@esbuild/linux-x64@0.27.3':
+ resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.25.10':
- resolution: {integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==}
+ '@esbuild/netbsd-arm64@0.27.3':
+ resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.25.10':
- resolution: {integrity: sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==}
+ '@esbuild/netbsd-x64@0.27.3':
+ resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.25.10':
- resolution: {integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==}
+ '@esbuild/openbsd-arm64@0.27.3':
+ resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.25.10':
- resolution: {integrity: sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==}
+ '@esbuild/openbsd-x64@0.27.3':
+ resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/openharmony-arm64@0.25.10':
- resolution: {integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==}
+ '@esbuild/openharmony-arm64@0.27.3':
+ resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
- '@esbuild/sunos-x64@0.25.10':
- resolution: {integrity: sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==}
+ '@esbuild/sunos-x64@0.27.3':
+ resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.25.10':
- resolution: {integrity: sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==}
+ '@esbuild/win32-arm64@0.27.3':
+ resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.25.10':
- resolution: {integrity: sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==}
+ '@esbuild/win32-ia32@0.27.3':
+ resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.25.10':
- resolution: {integrity: sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==}
+ '@esbuild/win32-x64@0.27.3':
+ resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.9.0':
- resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
+ '@eslint-community/eslint-utils@4.9.1':
+ resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.12.1':
- resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
+ '@eslint-community/regexpp@4.12.2':
+ resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint-react/ast@1.53.1':
- resolution: {integrity: sha512-qvUC99ewtriJp9quVEOvZ6+RHcsMLfVQ0OhZ4/LupZUDhjW7GiX1dxJsFaxHdJ9rLNLhQyLSPmbAToeqUrSruQ==}
- engines: {node: '>=18.18.0'}
+ '@eslint-react/ast@2.13.0':
+ resolution: {integrity: sha512-43+5gmqV3MpatTzKnu/V2i/jXjmepvwhrb9MaGQvnXHQgq9J7/C7VVCCcwp6Rvp2QHAFquAAdvQDSL8IueTpeA==}
+ engines: {node: '>=20.19.0'}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
- '@eslint-react/core@1.53.1':
- resolution: {integrity: sha512-8prroos5/Uvvh8Tjl1HHCpq4HWD3hV9tYkm7uXgKA6kqj0jHlgRcQzuO6ZPP7feBcK3uOeug7xrq03BuG8QKCA==}
- engines: {node: '>=18.18.0'}
+ '@eslint-react/core@2.13.0':
+ resolution: {integrity: sha512-m62XDzkf1hpzW4sBc7uh7CT+8rBG2xz/itSADuEntlsg4YA7Jhb8hjU6VHf3wRFDwyfx5VnbV209sbJ7Azey0Q==}
+ engines: {node: '>=20.19.0'}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
- '@eslint-react/eff@1.53.1':
- resolution: {integrity: sha512-uq20lPRAmsWRjIZm+mAV/2kZsU2nDqn5IJslxGWe3Vfdw23hoyhEw3S1KKlxbftwbTvsZjKvVP0iw3bZo/NUpg==}
- engines: {node: '>=18.18.0'}
+ '@eslint-react/eff@2.13.0':
+ resolution: {integrity: sha512-rEH2R8FQnUAblUW+v3ZHDU1wEhatbL1+U2B1WVuBXwSKqzF7BGaLqCPIU7o9vofumz5MerVfaCtJgI8jYe2Btg==}
+ engines: {node: '>=20.19.0'}
- '@eslint-react/eslint-plugin@1.53.1':
- resolution: {integrity: sha512-JZ2ciXNCC9CtBBAqYtwWH+Jy/7ZzLw+whei8atP4Fxsbh+Scs30MfEwBzuiEbNw6uF9eZFfPidchpr5RaEhqxg==}
- engines: {node: '>=18.18.0'}
+ '@eslint-react/eslint-plugin@2.13.0':
+ resolution: {integrity: sha512-iaMXpqnJCTW7317hg8L4wx7u5aIiPzZ+d1p59X8wXFgMHzFX4hNu4IfV8oygyjmWKdLsjKE9sEpv/UYWczlb+A==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: ^4.9.5 || ^5.3.3
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@eslint-react/kit@1.53.1':
- resolution: {integrity: sha512-zOi2le9V4rMrJvQV4OeedGvMGvDT46OyFPOwXKs7m0tQu5vXVJ8qwIPaVQT1n/WIuvOg49OfmAVaHpGxK++xLQ==}
- engines: {node: '>=18.18.0'}
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
- '@eslint-react/shared@1.53.1':
- resolution: {integrity: sha512-gomJQmFqQgQVI3Ra4vTMG/s6a4bx3JqeNiTBjxBJt4C9iGaBj458GkP4LJHX7TM6xUzX+fMSKOPX7eV3C/+UCw==}
- engines: {node: '>=18.18.0'}
+ '@eslint-react/shared@2.13.0':
+ resolution: {integrity: sha512-IOloCqrZ7gGBT4lFf9+0/wn7TfzU7JBRjYwTSyb9SDngsbeRrtW95ZpgUpS8/jen1wUEm6F08duAooTZ2FtsWA==}
+ engines: {node: '>=20.19.0'}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
- '@eslint-react/var@1.53.1':
- resolution: {integrity: sha512-yzwopvPntcHU7mmDvWzRo1fb8QhjD8eDRRohD11rTV1u7nWO4QbJi0pOyugQakvte1/W11Y0Vr8Of0Ojk/A6zg==}
- engines: {node: '>=18.18.0'}
+ '@eslint-react/var@2.13.0':
+ resolution: {integrity: sha512-dM+QaeiHR16qPQoJYg205MkdHYSWVa2B7ore5OFpOPlSwqDV3tLW7I+475WjbK7potq5QNPTxRa7VLp9FGeQqA==}
+ engines: {node: '>=20.19.0'}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
- '@eslint/config-array@0.21.0':
- resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==}
+ '@eslint/config-array@0.21.2':
+ resolution: {integrity: sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/config-helpers@0.3.1':
- resolution: {integrity: sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==}
+ '@eslint/config-helpers@0.4.2':
+ resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.15.2':
- resolution: {integrity: sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==}
+ '@eslint/core@0.17.0':
+ resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/eslintrc@2.1.4':
- resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
- '@eslint/eslintrc@3.3.1':
- resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
+ '@eslint/eslintrc@3.3.5':
+ resolution: {integrity: sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@8.57.0':
- resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
- '@eslint/js@9.36.0':
- resolution: {integrity: sha512-uhCbYtYynH30iZErszX78U+nR3pJU3RHGQ57NXy5QupD4SBVwDeU8TNBy+MjMngc1UyIW9noKqsRqfjQTBU2dw==}
+ '@eslint/js@9.39.4':
+ resolution: {integrity: sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/object-schema@2.1.6':
- resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
+ '@eslint/object-schema@2.1.7':
+ resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/plugin-kit@0.3.5':
- resolution: {integrity: sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==}
+ '@eslint/plugin-kit@0.4.1':
+ resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@expo/cli@54.0.12':
- resolution: {integrity: sha512-aBwpzG8z5U4b51S3T5MRIRe+NOOW2KdJ7cvJD8quL2Ba9gZRw8UVb+pmL28tS9yL3r1r3n8b1COSaJ8Y0eRTFA==}
+ '@expo-google-fonts/material-symbols@0.4.25':
+ resolution: {integrity: sha512-MlwOpcYPLYu2+aDAwqv29l3sknNNxA36Jcu07Tg9+MTEvXk2SPcO8eQmwwDeVBbv5Wb6ToD1LmE+e0lLv/9WvA==}
+
+ '@expo/cli@55.0.16':
+ resolution: {integrity: sha512-rp1mBnA5msGDPTfFuqVl+9RsJOtuA0cXsWSJpHdvsIxcSVg0oJyF/rgvrwsFrNQCLXzkMXm+o3CsY9iL1D/CDA==}
hasBin: true
peerDependencies:
expo: '*'
@@ -1270,23 +1193,23 @@ packages:
react-native:
optional: true
- '@expo/code-signing-certificates@0.0.5':
- resolution: {integrity: sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==}
+ '@expo/code-signing-certificates@0.0.6':
+ resolution: {integrity: sha512-iNe0puxwBNEcuua9gmTGzq+SuMDa0iATai1FlFTMHJ/vUmKvN/V//drXoLJkVb5i5H3iE/n/qIJxyoBnXouD0w==}
- '@expo/config-plugins@54.0.2':
- resolution: {integrity: sha512-jD4qxFcURQUVsUFGMcbo63a/AnviK8WUGard+yrdQE3ZrB/aurn68SlApjirQQLEizhjI5Ar2ufqflOBlNpyPg==}
+ '@expo/config-plugins@55.0.6':
+ resolution: {integrity: sha512-cIox6FjZlFaaX40rbQ3DvP9e87S5X85H9uw+BAxJE5timkMhuByy3GAlOsj1h96EyzSiol7Q6YIGgY1Jiz4M+A==}
- '@expo/config-types@54.0.8':
- resolution: {integrity: sha512-lyIn/x/Yz0SgHL7IGWtgTLg6TJWC9vL7489++0hzCHZ4iGjVcfZmPTUfiragZ3HycFFj899qN0jlhl49IHa94A==}
+ '@expo/config-types@55.0.5':
+ resolution: {integrity: sha512-sCmSUZG4mZ/ySXvfyyBdhjivz8Q539X1NondwDdYG7s3SBsk+wsgPJzYsqgAG/P9+l0xWjUD2F+kQ1cAJ6NNLg==}
- '@expo/config@12.0.10':
- resolution: {integrity: sha512-lJMof5Nqakq1DxGYlghYB/ogSBjmv4Fxn1ovyDmcjlRsQdFCXgu06gEUogkhPtc9wBt9WlTTfqENln5HHyLW6w==}
+ '@expo/config@55.0.8':
+ resolution: {integrity: sha512-D7RYYHfErCgEllGxNwdYdkgzLna7zkzUECBV3snbUpf7RvIpB5l1LpCgzuVoc5KVew5h7N1Tn4LnT/tBSUZsQg==}
- '@expo/devcert@1.2.0':
- resolution: {integrity: sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==}
+ '@expo/devcert@1.2.1':
+ resolution: {integrity: sha512-qC4eaxmKMTmJC2ahwyui6ud8f3W60Ss7pMkpBq40Hu3zyiAaugPXnZ24145U7K36qO9UHdZUVxsCvIpz2RYYCA==}
- '@expo/devtools@0.1.7':
- resolution: {integrity: sha512-dfIa9qMyXN+0RfU6SN4rKeXZyzKWsnz6xBSDccjL4IRiE+fQ0t84zg0yxgN4t/WK2JU5v6v4fby7W7Crv9gJvA==}
+ '@expo/devtools@55.0.2':
+ resolution: {integrity: sha512-4VsFn9MUriocyuhyA+ycJP3TJhUsOFHDc270l9h3LhNpXMf6wvIdGcA0QzXkZtORXmlDybWXRP2KT1k36HcQkA==}
peerDependencies:
react: '*'
react-native: '*'
@@ -1296,37 +1219,48 @@ packages:
react-native:
optional: true
- '@expo/env@2.0.7':
- resolution: {integrity: sha512-BNETbLEohk3HQ2LxwwezpG8pq+h7Fs7/vAMP3eAtFT1BCpprLYoBBFZH7gW4aqGfqOcVP4Lc91j014verrYNGg==}
+ '@expo/dom-webview@55.0.3':
+ resolution: {integrity: sha512-bY4/rfcZ0f43DvOtMn8/kmPlmo01tex5hRoc5hKbwBwQjqWQuQt0ACwu7akR9IHI4j0WNG48eL6cZB6dZUFrzg==}
+ peerDependencies:
+ expo: '*'
+ react: '*'
+ react-native: '*'
+
+ '@expo/env@2.1.1':
+ resolution: {integrity: sha512-rVvHC4I6xlPcg+mAO09ydUi2Wjv1ZytpLmHOSzvXzBAz9mMrJggqCe4s4dubjJvi/Ino/xQCLhbaLCnTtLpikg==}
+ engines: {node: '>=20.12.0'}
- '@expo/fingerprint@0.15.2':
- resolution: {integrity: sha512-mA3weHEOd9B3mbDLNDKmAcFWo3kqsAJqPne7uMJndheKXPbRw15bV+ajAGBYZh2SS37xixLJ5eDpuc+Wr6jJtw==}
+ '@expo/fingerprint@0.16.6':
+ resolution: {integrity: sha512-nRITNbnu3RKSHPvKVehrSU4KG2VY9V8nvULOHBw98ukHCAU4bGrU5APvcblOkX3JAap+xEHsg/mZvqlvkLInmQ==}
hasBin: true
- '@expo/image-utils@0.8.7':
- resolution: {integrity: sha512-SXOww4Wq3RVXLyOaXiCCuQFguCDh8mmaHBv54h/R29wGl4jRY8GEyQEx8SypV/iHt1FbzsU/X3Qbcd9afm2W2w==}
+ '@expo/image-utils@0.8.12':
+ resolution: {integrity: sha512-3KguH7kyKqq7pNwLb9j6BBdD/bjmNwXZG/HPWT6GWIXbwrvAJt2JNyYTP5agWJ8jbbuys1yuCzmkX+TU6rmI7A==}
+
+ '@expo/json-file@10.0.12':
+ resolution: {integrity: sha512-inbDycp1rMAelAofg7h/mMzIe+Owx6F7pur3XdQ3EPTy00tme+4P6FWgHKUcjN8dBSrnbRNpSyh5/shzHyVCyQ==}
- '@expo/json-file@10.0.7':
- resolution: {integrity: sha512-z2OTC0XNO6riZu98EjdNHC05l51ySeTto6GP7oSQrCvQgG9ARBwD1YvMQaVZ9wU7p/4LzSf1O7tckL3B45fPpw==}
+ '@expo/local-build-cache-provider@55.0.6':
+ resolution: {integrity: sha512-4kfdv48sKzokijMqi07fINYA9/XprshmPgSLf8i69XgzIv2YdRyBbb70SzrufB7PDneFoltz8N83icW8gOOj1g==}
- '@expo/mcp-tunnel@0.0.8':
- resolution: {integrity: sha512-6261obzt6h9TQb6clET7Fw4Ig4AY2hfTNKI3gBt0gcTNxZipwMg8wER7ssDYieA9feD/FfPTuCPYFcR280aaWA==}
+ '@expo/log-box@55.0.7':
+ resolution: {integrity: sha512-m7V1k2vlMp4NOj3fopjOg4zl/ANXyTRF3HMTMep2GZAKsPiDzgOQ41nm8CaU50/HlDIGXlCObss07gOn20UpHQ==}
peerDependencies:
- '@modelcontextprotocol/sdk': ^1.13.2
- peerDependenciesMeta:
- '@modelcontextprotocol/sdk':
- optional: true
+ '@expo/dom-webview': ^55.0.3
+ expo: '*'
+ react: '*'
+ react-native: '*'
- '@expo/metro-config@54.0.7':
- resolution: {integrity: sha512-bXluEygLrd7cIh/erpjIIC2xDeanaebcwzF+DUMD5vAqHU3o0QXAF3jRV/LsjXZud9V5eRpyCRZ3tLQL0iv8WA==}
+ '@expo/metro-config@55.0.9':
+ resolution: {integrity: sha512-ZJFEfat/+dLUhFyFFWrzMjAqAwwUaJ3RD42QNqR7jh+RVYkAf6XYLynb5qrKJTHI1EcOx4KoO1717yXYYRFDBA==}
peerDependencies:
expo: '*'
peerDependenciesMeta:
expo:
optional: true
- '@expo/metro-runtime@6.1.2':
- resolution: {integrity: sha512-nvM+Qv45QH7pmYvP8JB1G8JpScrWND3KrMA6ZKe62cwwNiX/BjHU28Ear0v/4bQWXlOY0mv6B8CDIm8JxXde9g==}
+ '@expo/metro-runtime@55.0.6':
+ resolution: {integrity: sha512-l8VvgKN9md+URjeQDB+DnHVmvpcWI6zFLH6yv7GTv4sfRDKyaZ5zDXYjTP1phYdgW6ea2NrRtCGNIxylWhsgtg==}
peerDependencies:
expo: '*'
react: '*'
@@ -1336,26 +1270,56 @@ packages:
react-dom:
optional: true
- '@expo/metro@54.1.0':
- resolution: {integrity: sha512-MgdeRNT/LH0v1wcO0TZp9Qn8zEF0X2ACI0wliPtv5kXVbXWI+yK9GyrstwLAiTXlULKVIg3HVSCCvmLu0M3tnw==}
+ '@expo/metro@54.2.0':
+ resolution: {integrity: sha512-h68TNZPGsk6swMmLm9nRSnE2UXm48rWwgcbtAHVMikXvbxdS41NDHHeqg1rcQ9AbznDRp6SQVC2MVpDnsRKU1w==}
- '@expo/osascript@2.3.7':
- resolution: {integrity: sha512-IClSOXxR0YUFxIriUJVqyYki7lLMIHrrzOaP01yxAL1G8pj2DWV5eW1y5jSzIcIfSCNhtGsshGd1tU/AYup5iQ==}
+ '@expo/osascript@2.4.2':
+ resolution: {integrity: sha512-/XP7PSYF2hzOZzqfjgkoWtllyeTN8dW3aM4P6YgKcmmPikKL5FdoyQhti4eh6RK5a5VrUXJTOlTNIpIHsfB5Iw==}
engines: {node: '>=12'}
- '@expo/package-manager@1.9.8':
- resolution: {integrity: sha512-4/I6OWquKXYnzo38pkISHCOCOXxfeEmu4uDoERq1Ei/9Ur/s9y3kLbAamEkitUkDC7gHk1INxRWEfFNzGbmOrA==}
+ '@expo/package-manager@1.10.3':
+ resolution: {integrity: sha512-ZuXiK/9fCrIuLjPSe1VYmfp0Sa85kCMwd8QQpgyi5ufppYKRtLBg14QOgUqj8ZMbJTxE0xqzd0XR7kOs3vAK9A==}
+
+ '@expo/plist@0.5.2':
+ resolution: {integrity: sha512-o4xdVdBpe4aTl3sPMZ2u3fJH4iG1I768EIRk1xRZP+GaFI93MaR3JvoFibYqxeTmLQ1p1kNEVqylfUjezxx45g==}
- '@expo/plist@0.4.7':
- resolution: {integrity: sha512-dGxqHPvCZKeRKDU1sJZMmuyVtcASuSYh1LPFVaM1DuffqPL36n6FMEL0iUqq2Tx3xhWk8wCnWl34IKplUjJDdA==}
+ '@expo/prebuild-config@55.0.8':
+ resolution: {integrity: sha512-VJNJiOmmZgyDnR7JMmc3B8Z0ZepZ17I8Wtw+wAH/2+UCUsFg588XU+bwgYcFGw+is28kwGjY46z43kfufpxOnA==}
+ peerDependencies:
+ expo: '*'
+
+ '@expo/require-utils@55.0.2':
+ resolution: {integrity: sha512-dV5oCShQ1umKBKagMMT4B/N+SREsQe3lU4Zgmko5AO0rxKV0tynZT6xXs+e2JxuqT4Rz997atg7pki0BnZb4uw==}
+ peerDependencies:
+ typescript: ^5.0.0 || ^5.0.0-0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@expo/prebuild-config@54.0.5':
- resolution: {integrity: sha512-eCvbVUf01j1nSrs4mG/rWwY+SfgE30LM6JcElLrnNgNnaDWzt09E/c8n3ZeTLNKENwJaQQ1KIn2VE461/4VnWQ==}
+ '@expo/router-server@55.0.10':
+ resolution: {integrity: sha512-NZQzHwkaedufNPayVfPxsZGEMngOD3gDvYx9lld4sitRexrKDx5sHmmNHi6IByGbmCb4jwLXub5sIyWh6z1xPQ==}
peerDependencies:
+ '@expo/metro-runtime': ^55.0.6
expo: '*'
+ expo-constants: ^55.0.7
+ expo-font: ^55.0.4
+ expo-router: '*'
+ expo-server: ^55.0.6
+ 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/schema-utils@0.1.7':
- resolution: {integrity: sha512-jWHoSuwRb5ZczjahrychMJ3GWZu54jK9ulNdh1d4OzAEq672K9E5yOlnlBsfIHWHGzUAT+0CL7Yt1INiXTz68g==}
+ '@expo/schema-utils@55.0.2':
+ resolution: {integrity: sha512-QZ5WKbJOWkCrMq0/kfhV9ry8te/OaS34YgLVpG8u9y2gix96TlpRTbxM/YATjNcUR2s4fiQmPCOxkGtog4i37g==}
'@expo/sdk-runtime-versions@1.0.0':
resolution: {integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==}
@@ -1367,8 +1331,8 @@ packages:
'@expo/sudo-prompt@9.3.2':
resolution: {integrity: sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==}
- '@expo/vector-icons@15.0.2':
- resolution: {integrity: sha512-IiBjg7ZikueuHNf40wSGCf0zS73a3guJLdZzKnDUxsauB8VWPLMeWnRIupc+7cFhLUkqyvyo0jLNlcxG5xPOuQ==}
+ '@expo/vector-icons@15.1.1':
+ resolution: {integrity: sha512-Iu2VkcoI5vygbtYngm7jb4ifxElNVXQYdDrYkT7UCEIiKLeWnQY0wf2ZhHZ+Wro6Sc5TaumpKUOqDRpLi5rkvw==}
peerDependencies:
expo-font: '>=14.0.4'
react: '*'
@@ -1377,27 +1341,12 @@ packages:
'@expo/ws-tunnel@1.0.6':
resolution: {integrity: sha512-nDRbLmSrJar7abvUjp3smDwH8HcbZcoOEa5jVPUv9/9CajgmWw20JNRwTuBRzWIWIkEJDkz20GoNA+tSwUqk0Q==}
- '@expo/xcpretty@4.3.2':
- resolution: {integrity: sha512-ReZxZ8pdnoI3tP/dNnJdnmAk7uLT4FjsKDGW7YeDdvdOMz2XCQSmSCM9IWlrXuWtMF9zeSB6WJtEhCQ41gQOfw==}
+ '@expo/xcpretty@4.4.1':
+ resolution: {integrity: sha512-KZNxZvnGCtiM2aYYZ6Wz0Ix5r47dAvpNLApFtZWnSoERzAdOMzVBOPysBoM0JlF6FKWZ8GPqgn6qt3dV/8Zlpg==}
hasBin: true
- '@gorhom/bottom-sheet@5.0.4':
- resolution: {integrity: sha512-DTKFE+KwcS4Du5hbzTzh3r9hdfEfYmChcRi6hSeiDPGiCMq8GQ7VD5VE1WaFRrEbcc0+Seu1ZEjsf+JMcFM4vg==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-native': '*'
- react: '*'
- react-native: '*'
- react-native-gesture-handler: '>=2.16.1'
- react-native-reanimated: '>=3.10.1'
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-native':
- optional: true
-
- '@gorhom/bottom-sheet@5.2.6':
- resolution: {integrity: sha512-vmruJxdiUGDg+ZYcDmS30XDhq/h/+QkINOI5LY/uGjx8cPGwgJW0H6AB902gNTKtccbiKe/rr94EwdmIEz+LAQ==}
+ '@gorhom/bottom-sheet@5.2.8':
+ resolution: {integrity: sha512-+N27SMpbBxXZQ/IA2nlEV6RGxL/qSFHKfdFKcygvW+HqPG5jVNb1OqehLQsGfBP+Up42i0gW5ppI+DhpB7UCzA==}
peerDependencies:
'@types/react': '*'
'@types/react-native': '*'
@@ -1417,26 +1366,34 @@ packages:
react: '*'
react-native: '*'
- '@hexagon/base64@1.1.28':
- resolution: {integrity: sha512-lhqDEAvWixy3bZ+UOYbPwUbBkwBq5C1LAJ/xPC8Oi+lL54oyakv/npbA0aU2hgCsx/1NUd4IBvV03+aUBWxerw==}
-
- '@hey-api/codegen-core@0.2.0':
- resolution: {integrity: sha512-c7VjBy/8ed0EVLNgaeS9Xxams1Tuv/WK/b4xXH3Qr4wjzYeJUtxOcoP8YdwNLavqKP8pGiuctjX2Z1Pwc4jMgQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=22.10.0}
+ '@hey-api/codegen-core@0.7.1':
+ resolution: {integrity: sha512-X5qG+rr/BJvr+pEGcoW6l2azoZGrVuxsviEIhuf+3VwL9bk0atfubT65Xwo+4jDxXvjbhZvlwS0Ty3I7mLE2fg==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
typescript: '>=5.5.3'
- '@hey-api/json-schema-ref-parser@1.2.0':
- resolution: {integrity: sha512-BMnIuhVgNmSudadw1GcTsP18Yk5l8FrYrg/OSYNxz0D2E0vf4D5e4j5nUbuY8MU6p1vp7ev0xrfP6A/NWazkzQ==}
- engines: {node: '>= 16'}
+ '@hey-api/json-schema-ref-parser@1.3.1':
+ resolution: {integrity: sha512-7atnpUkT8TyUPHYPLk91j/GyaqMuwTEHanLOe50Dlx0EEvNuQqFD52Yjg8x4KU0UFL1mWlyhE+sUE/wAtQ1N2A==}
+ engines: {node: '>=20.19.0'}
- '@hey-api/openapi-ts@0.85.1':
- resolution: {integrity: sha512-1pWQzOO/MXiE6BhyIZ88xJAVt82WJ775wNwRKjvQesNdUsFOJm4SKxzKEu/rn6mlpfiDkdxWlEHJ0SrcM2CUXQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=22.10.0}
+ '@hey-api/openapi-ts@0.94.0':
+ resolution: {integrity: sha512-dbg3GG+v7sg9/Ahb7yFzwzQIJwm151JAtsnh9KtFyqiN0rGkMGA3/VqogEUq1kJB9XWrlMQwigwzhiEQ33VCSg==}
+ engines: {node: '>=20.19.0'}
hasBin: true
peerDependencies:
typescript: '>=5.5.3'
+ '@hey-api/shared@0.2.2':
+ resolution: {integrity: sha512-vMqCS+j7F9xpWoXC7TBbqZkaelwrdeuSB+s/3elu54V5iq++S59xhkSq5rOgDIpI1trpE59zZQa6dpyUxItOgw==}
+ engines: {node: '>=20.19.0'}
+ peerDependencies:
+ typescript: '>=5.5.3'
+
+ '@hey-api/types@0.1.3':
+ resolution: {integrity: sha512-mZaiPOWH761yD4GjDQvtjS2ZYLu5o5pI1TVSvV/u7cmbybv51/FVtinFBeaE1kFQCKZ8OQpn2ezjLBJrKsGATw==}
+ peerDependencies:
+ typescript: '>=5.5.3'
+
'@humanfs/core@0.19.1':
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
engines: {node: '>=18.18.0'}
@@ -1445,31 +1402,14 @@ packages:
resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
engines: {node: '>=18.18.0'}
- '@humanwhocodes/config-array@0.11.14':
- resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
- engines: {node: '>=10.10.0'}
- deprecated: Use @eslint/config-array instead
-
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- '@humanwhocodes/object-schema@2.0.3':
- resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
- deprecated: Use @eslint/object-schema instead
-
'@humanwhocodes/retry@0.4.3':
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
engines: {node: '>=18.18'}
- '@isaacs/cliui@8.0.2':
- resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
- engines: {node: '>=12'}
-
- '@isaacs/fs-minipass@4.0.1':
- resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
- engines: {node: '>=18.0.0'}
-
'@isaacs/ttlcache@1.4.1':
resolution: {integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==}
engines: {node: '>=12'}
@@ -1528,75 +1468,26 @@ packages:
'@jsdevtools/ono@7.1.3':
resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==}
- '@levischuck/tiny-cbor@0.2.11':
- resolution: {integrity: sha512-llBRm4dT4Z89aRsm6u2oEZ8tfwL/2l6BwpZ7JcyieouniDECM5AqNgr/y08zalEIvW3RSK4upYyybDcmjXqAow==}
+ '@mongodb-js/saslprep@1.4.6':
+ resolution: {integrity: sha512-y+x3H1xBZd38n10NZF/rEBlvDOOMQ6LKUTHqr8R9VkJ+mmQOYtJFxIlkkK8fZrtOiL6VixbOBWMbZGBdal3Z1g==}
'@napi-rs/wasm-runtime@0.2.12':
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
- '@noble/ciphers@2.0.1':
- resolution: {integrity: sha512-xHK3XHPUW8DTAobU+G0XT+/w+JLM7/8k1UFdB5xg/zTFPnFCobhftzw8wl4Lw2aq/Rvir5pxfZV5fEazmeCJ2g==}
+ '@noble/ciphers@2.1.1':
+ resolution: {integrity: sha512-bysYuiVfhxNJuldNXlFEitTVdNnYUc+XNJZd7Qm2a5j1vZHgY+fazadNFWFaMK/2vye0JVlxV3gHmC0WDfAOQw==}
engines: {node: '>= 20.19.0'}
'@noble/hashes@2.0.1':
resolution: {integrity: sha512-XlOlEbQcE9fmuXxrVTXCTlG2nlRXa9Rj3rr5Ue/+tX+nmkgbX720YHh0VR3hBF9xDvwnb8D2shVGOwNx+ulArw==}
engines: {node: '>= 20.19.0'}
- '@nodelib/fs.scandir@2.1.5':
- resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
- engines: {node: '>= 8'}
-
- '@nodelib/fs.stat@2.0.5':
- resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
- engines: {node: '>= 8'}
-
- '@nodelib/fs.walk@1.2.8':
- resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
- engines: {node: '>= 8'}
-
'@nolyfill/is-core-module@1.0.39':
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
engines: {node: '>=12.4.0'}
- '@peculiar/asn1-android@2.5.0':
- resolution: {integrity: sha512-t8A83hgghWQkcneRsgGs2ebAlRe54ns88p7ouv8PW2tzF1nAW4yHcL4uZKrFpIU+uszIRzTkcCuie37gpkId0A==}
-
- '@peculiar/asn1-cms@2.5.0':
- resolution: {integrity: sha512-p0SjJ3TuuleIvjPM4aYfvYw8Fk1Hn/zAVyPJZTtZ2eE9/MIer6/18ROxX6N/e6edVSfvuZBqhxAj3YgsmSjQ/A==}
-
- '@peculiar/asn1-csr@2.5.0':
- resolution: {integrity: sha512-ioigvA6WSYN9h/YssMmmoIwgl3RvZlAYx4A/9jD2qaqXZwGcNlAxaw54eSx2QG1Yu7YyBC5Rku3nNoHrQ16YsQ==}
-
- '@peculiar/asn1-ecc@2.5.0':
- resolution: {integrity: sha512-t4eYGNhXtLRxaP50h3sfO6aJebUCDGQACoeexcelL4roMFRRVgB20yBIu2LxsPh/tdW9I282gNgMOyg3ywg/mg==}
-
- '@peculiar/asn1-pfx@2.5.0':
- resolution: {integrity: sha512-Vj0d0wxJZA+Ztqfb7W+/iu8Uasw6hhKtCdLKXLG/P3kEPIQpqGI4P4YXlROfl7gOCqFIbgsj1HzFIFwQ5s20ug==}
-
- '@peculiar/asn1-pkcs8@2.5.0':
- resolution: {integrity: sha512-L7599HTI2SLlitlpEP8oAPaJgYssByI4eCwQq2C9eC90otFpm8MRn66PpbKviweAlhinWQ3ZjDD2KIVtx7PaVw==}
-
- '@peculiar/asn1-pkcs9@2.5.0':
- resolution: {integrity: sha512-UgqSMBLNLR5TzEZ5ZzxR45Nk6VJrammxd60WMSkofyNzd3DQLSNycGWSK5Xg3UTYbXcDFyG8pA/7/y/ztVCa6A==}
-
- '@peculiar/asn1-rsa@2.5.0':
- resolution: {integrity: sha512-qMZ/vweiTHy9syrkkqWFvbT3eLoedvamcUdnnvwyyUNv5FgFXA3KP8td+ATibnlZ0EANW5PYRm8E6MJzEB/72Q==}
-
- '@peculiar/asn1-schema@2.5.0':
- resolution: {integrity: sha512-YM/nFfskFJSlHqv59ed6dZlLZqtZQwjRVJ4bBAiWV08Oc+1rSd5lDZcBEx0lGDHfSoH3UziI2pXt2UM33KerPQ==}
-
- '@peculiar/asn1-x509-attr@2.5.0':
- resolution: {integrity: sha512-9f0hPOxiJDoG/bfNLAFven+Bd4gwz/VzrCIIWc1025LEI4BXO0U5fOCTNDPbbp2ll+UzqKsZ3g61mpBp74gk9A==}
-
- '@peculiar/asn1-x509@2.5.0':
- resolution: {integrity: sha512-CpwtMCTJvfvYTFMuiME5IH+8qmDe3yEWzKHe7OOADbGfq7ohxeLaXwQo0q4du3qs0AII3UbLCvb9NF/6q0oTKQ==}
-
- '@peculiar/x509@1.14.0':
- resolution: {integrity: sha512-Yc4PDxN3OrxUPiXgU63c+ZRXKGE8YKF2McTciYhUHFtHVB0KMnjeFSU0qpztGhsp4P0uKix4+J2xEpIEDu8oXg==}
-
- '@pkgjs/parseargs@0.11.0':
- resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
- engines: {node: '>=14'}
+ '@nozbe/microfuzz@1.0.0':
+ resolution: {integrity: sha512-XKIg/guk+s1tkPTkHch9hfGOWgsKojT7BqSQddXTppOfVr3SWQhhTCqbgQaPTbppf9gc2kFeG0gpBZZ612UXHA==}
'@radix-ui/primitive@1.1.3':
resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
@@ -1750,8 +1641,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-slot@1.2.0':
- resolution: {integrity: sha512-ujc+V6r0HNDviYqIK3rW4ffgYiZ8g5DEHrGJVk4x7kTlLXRDILnKX9vAUYeIsLOoDpDJ0ujpqMkjH4w2ofuo6w==}
+ '@radix-ui/react-slot@1.2.3':
+ resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -1759,8 +1650,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-slot@1.2.3':
- resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
+ '@radix-ui/react-slot@1.2.4':
+ resolution: {integrity: sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -1831,8 +1722,8 @@ packages:
peerDependencies:
react-native: ^0.0.0-0 || >=0.65 <1.0
- '@react-native-community/datetimepicker@8.4.5':
- resolution: {integrity: sha512-vvVOJAHjU8TFBzTUjQzANCL6C3pZSE2zjfutCATk790uz7ASEc2tOBD+EIG4BTelWtP2G9jqvXp2L7XGdhEBRg==}
+ '@react-native-community/datetimepicker@8.6.0':
+ resolution: {integrity: sha512-yxPSqNfxgpGaqHQIpatqe6ykeBdU/1pdsk/G3x01mY2bpTflLpmVTLqFSJYd3MiZzxNZcMs/j1dQakUczSjcYA==}
peerDependencies:
expo: '>=52.0.0'
react: '*'
@@ -1847,50 +1738,28 @@ packages:
'@react-native-community/slider@5.0.1':
resolution: {integrity: sha512-K3JRWkIW4wQ79YJ6+BPZzp1SamoikxfPRw7Yw4B4PElEQmqZFrmH9M5LxvIo460/3QSrZF/wCgi3qizJt7g/iw==}
- '@react-native-picker/picker@2.11.0':
- resolution: {integrity: sha512-QuZU6gbxmOID5zZgd/H90NgBnbJ3VV6qVzp6c7/dDrmWdX8S0X5YFYgDcQFjE3dRen9wB9FWnj2VVdPU64adSg==}
- peerDependencies:
- react: '*'
- react-native: '*'
-
- '@react-native/assets-registry@0.81.4':
- resolution: {integrity: sha512-AMcDadefBIjD10BRqkWw+W/VdvXEomR6aEZ0fhQRAv7igrBzb4PTn4vHKYg+sUK0e3wa74kcMy2DLc/HtnGcMA==}
+ '@react-native/assets-registry@0.83.2':
+ resolution: {integrity: sha512-9I5l3pGAKnlpQ15uVkeB9Mgjvt3cZEaEc8EDtdexvdtZvLSjtwBzgourrOW4yZUijbjJr8h3YO2Y0q+THwUHTA==}
engines: {node: '>= 20.19.4'}
- '@react-native/babel-plugin-codegen@0.80.0':
- resolution: {integrity: sha512-LXd766LHCR/79WmhIg4zUB9jRosgw8xGJ1QnYOoef1rA7vCdubC23nhUxF+PJdfTdAl1cqX4u1dhZcjg6yXjRg==}
- engines: {node: '>=18'}
-
- '@react-native/babel-plugin-codegen@0.81.4':
- resolution: {integrity: sha512-6ztXf2Tl2iWznyI/Da/N2Eqymt0Mnn69GCLnEFxFbNdk0HxHPZBNWU9shTXhsLWOL7HATSqwg/bB1+3kY1q+mA==}
+ '@react-native/babel-plugin-codegen@0.83.2':
+ resolution: {integrity: sha512-XbcN/BEa64pVlb0Hb/E/Ph2SepjVN/FcNKrJcQvtaKZA6mBSO8pW8Eircdlr61/KBH94LihHbQoQDzkQFpeaTg==}
engines: {node: '>= 20.19.4'}
- '@react-native/babel-preset@0.80.0':
- resolution: {integrity: sha512-ZgwbSOUPNKpIsZ6E0y3bncahh2vBf5V1URNV0tr9PBtu/LbGJ12nBKSH7gqrFdRzfEwKlhc0vP8p1oJt+A5mpw==}
- engines: {node: '>=18'}
- peerDependencies:
- '@babel/core': '*'
-
- '@react-native/babel-preset@0.81.4':
- resolution: {integrity: sha512-VYj0c/cTjQJn/RJ5G6P0L9wuYSbU9yGbPYDHCKstlQZQWkk+L9V8ZDbxdJBTIei9Xl3KPQ1odQ4QaeW+4v+AZg==}
+ '@react-native/babel-preset@0.83.2':
+ resolution: {integrity: sha512-X/RAXDfe6W+om/Fw1i6htTxQXFhBJ2jgNOWx3WpI3KbjeIWbq7ib6vrpTeIAW2NUMg+K3mML1NzgD4dpZeqdjA==}
engines: {node: '>= 20.19.4'}
peerDependencies:
'@babel/core': '*'
- '@react-native/codegen@0.80.0':
- resolution: {integrity: sha512-X9TsPgytoUkNrQjzAZh4dXa4AuouvYT0NzYyvnjw1ry4LESCZtKba+eY4x3+M30WPR52zjgu+UFL//14BSdCCA==}
- engines: {node: '>=18'}
- peerDependencies:
- '@babel/core': '*'
-
- '@react-native/codegen@0.81.4':
- resolution: {integrity: sha512-LWTGUTzFu+qOQnvkzBP52B90Ym3stZT8IFCzzUrppz8Iwglg83FCtDZAR4yLHI29VY/x/+pkcWAMCl3739XHdw==}
+ '@react-native/codegen@0.83.2':
+ resolution: {integrity: sha512-9uK6X1miCXqtL4c759l74N/XbQeneWeQVjoV7SD2CGJuW7ZefxaoYenwGPs7rMoCdtS6wuIyR3hXQ+uWEBGYXA==}
engines: {node: '>= 20.19.4'}
peerDependencies:
'@babel/core': '*'
- '@react-native/community-cli-plugin@0.81.4':
- resolution: {integrity: sha512-8mpnvfcLcnVh+t1ok6V9eozWo8Ut+TZhz8ylJ6gF9d6q9EGDQX6s8jenan5Yv/pzN4vQEKI4ib2pTf/FELw+SA==}
+ '@react-native/community-cli-plugin@0.83.2':
+ resolution: {integrity: sha512-sTEF0eiUKtmImEP07Qo5c3Khvm1LIVX1Qyb6zWUqPL6W3MqFiXutZvKBjqLz6p49Szx8cplQLoXfLHT0bcDXKg==}
engines: {node: '>= 20.19.4'}
peerDependencies:
'@react-native-community/cli': '*'
@@ -1901,63 +1770,67 @@ packages:
'@react-native/metro-config':
optional: true
- '@react-native/debugger-frontend@0.81.4':
- resolution: {integrity: sha512-SU05w1wD0nKdQFcuNC9D6De0ITnINCi8MEnx9RsTD2e4wN83ukoC7FpXaPCYyP6+VjFt5tUKDPgP1O7iaNXCqg==}
+ '@react-native/debugger-frontend@0.83.2':
+ resolution: {integrity: sha512-t4fYfa7xopbUF5S4+ihNEwgaq4wLZLKLY0Ms8z72lkMteVd3bOX2Foxa8E2wTfRvdhPOkSpOsTeNDmD8ON4DoQ==}
+ engines: {node: '>= 20.19.4'}
+
+ '@react-native/debugger-shell@0.83.2':
+ resolution: {integrity: sha512-z9go6NJMsLSDJT5MW6VGugRsZHjYvUTwxtsVc3uLt4U9W6T3J6FWI2wHpXIzd2dUkXRfAiRQ3Zi8ZQQ8fRFg9A==}
engines: {node: '>= 20.19.4'}
- '@react-native/dev-middleware@0.81.4':
- resolution: {integrity: sha512-hu1Wu5R28FT7nHXs2wWXvQ++7W7zq5GPY83llajgPlYKznyPLAY/7bArc5rAzNB7b0kwnlaoPQKlvD/VP9LZug==}
+ '@react-native/dev-middleware@0.83.2':
+ resolution: {integrity: sha512-Zi4EVaAm28+icD19NN07Gh8Pqg/84QQu+jn4patfWKNkcToRFP5vPEbbp0eLOGWS+BVB1d1Fn5lvMrJsBbFcOg==}
engines: {node: '>= 20.19.4'}
- '@react-native/gradle-plugin@0.81.4':
- resolution: {integrity: sha512-T7fPcQvDDCSusZFVSg6H1oVDKb/NnVYLnsqkcHsAF2C2KGXyo3J7slH/tJAwNfj/7EOA2OgcWxfC1frgn9TQvw==}
+ '@react-native/gradle-plugin@0.83.2':
+ resolution: {integrity: sha512-PqN11fXRAU+uJ0inZY1HWYlwJOXHOhF4SPyeHBBxjajKpm2PGunmvFWwkmBjmmUkP/CNO0ezTUudV0oj+2wiHQ==}
engines: {node: '>= 20.19.4'}
- '@react-native/js-polyfills@0.81.4':
- resolution: {integrity: sha512-sr42FaypKXJHMVHhgSbu2f/ZJfrLzgaoQ+HdpRvKEiEh2mhFf6XzZwecyLBvWqf2pMPZa+CpPfNPiejXjKEy8w==}
+ '@react-native/js-polyfills@0.83.2':
+ resolution: {integrity: sha512-dk6fIY2OrKW/2Nk2HydfYNrQau8g6LOtd7NVBrgaqa+lvuRyIML5iimShP5qPqQnx2ofHuzjFw+Ya0b5Q7nDbA==}
engines: {node: '>= 20.19.4'}
'@react-native/normalize-colors@0.74.89':
resolution: {integrity: sha512-qoMMXddVKVhZ8PA1AbUCk83trpd6N+1nF2A6k1i6LsQObyS92fELuk8kU/lQs6M7BsMHwqyLCpQJ1uFgNvIQXg==}
- '@react-native/normalize-colors@0.81.4':
- resolution: {integrity: sha512-9nRRHO1H+tcFqjb9gAM105Urtgcanbta2tuqCVY0NATHeFPDEAB7gPyiLxCHKMi1NbhP6TH0kxgSWXKZl1cyRg==}
+ '@react-native/normalize-colors@0.83.2':
+ resolution: {integrity: sha512-gkZAb9LoVVzNuYzzOviH7DiPTXQoZPHuiTH2+O2+VWNtOkiznjgvqpwYAhg58a5zfRq5GXlbBdf5mzRj5+3Y5Q==}
- '@react-native/virtualized-lists@0.81.4':
- resolution: {integrity: sha512-hBM+rMyL6Wm1Q4f/WpqGsaCojKSNUBqAXLABNGoWm1vabZ7cSnARMxBvA/2vo3hLcoR4v7zDK8tkKm9+O0LjVA==}
+ '@react-native/virtualized-lists@0.83.2':
+ resolution: {integrity: sha512-N7mRjHLW/+KWxMp9IHRWyE3VIkeG1m3PnZJAGEFLCN8VFb7e4VfI567o7tE/HYcdcXCylw+Eqhlciz8gDeQ71g==}
engines: {node: '>= 20.19.4'}
peerDependencies:
- '@types/react': ^19.1.0
+ '@types/react': ^19.2.0
react: '*'
react-native: '*'
peerDependenciesMeta:
'@types/react':
optional: true
- '@react-navigation/bottom-tabs@7.4.7':
- resolution: {integrity: sha512-SQ4KuYV9yr3SV/thefpLWhAD0CU2CrBMG1l0w/QKl3GYuGWdN5OQmdQdmaPZGtsjjVOb+N9Qo7Tf6210P4TlpA==}
+ '@react-navigation/bottom-tabs@7.15.5':
+ resolution: {integrity: sha512-wQHredlCrRmShWQ1vF4HUcLdaiJ8fUgnbaeQH7BJ7MQVQh4mdzab0IOY/4QSmUyNRB350oyu1biTycyQ5FKWMQ==}
peerDependencies:
- '@react-navigation/native': ^7.1.17
+ '@react-navigation/native': ^7.1.33
react: '>= 18.2.0'
react-native: '*'
react-native-safe-area-context: '>= 4.0.0'
react-native-screens: '>= 4.0.0'
- '@react-navigation/core@7.12.4':
- resolution: {integrity: sha512-xLFho76FA7v500XID5z/8YfGTvjQPw7/fXsq4BIrVSqetNe/o/v+KAocEw4ots6kyv3XvSTyiWKh2g3pN6xZ9Q==}
+ '@react-navigation/core@7.16.1':
+ resolution: {integrity: sha512-xhquoyhKdqDfiL7LuupbwYnmauUGfVFGDEJO34m26k8zSN1eDjQ2stBZcHN8ILOI1PrG9885nf8ZmfaQxPS0ww==}
peerDependencies:
react: '>= 18.2.0'
- '@react-navigation/devtools@7.0.39':
- resolution: {integrity: sha512-PJIzHU86mP57AUkI5TdN8WNOaEFkLvlO4GjZ3oDlCMftyaE+1/9HNK/yjd1aKYW1cqfpx7HZnhYmB2rIqcgq5A==}
+ '@react-navigation/devtools@7.0.52':
+ resolution: {integrity: sha512-YqSr1c4USLCdTttltfwOXoPNHlEhnLmSSehGPt7j7yrXDXj55qRQA4aNF0p02paTN2phN17oBaBPcC2nSbqtfw==}
peerDependencies:
react: '>= 18.2.0'
- '@react-navigation/elements@2.6.4':
- resolution: {integrity: sha512-O3X9vWXOEhAO56zkQS7KaDzL8BvjlwZ0LGSteKpt1/k6w6HONG+2Wkblrb057iKmehTkEkQMzMLkXiuLmN5x9Q==}
+ '@react-navigation/elements@2.9.10':
+ resolution: {integrity: sha512-N8tuBekzTRb0pkMHFJGvmC6Q5OisSbt6gzvw7RHMnp4NDo5auVllT12sWFaTXf8mTduaLKNSrD/NZNaOqThCBg==}
peerDependencies:
'@react-native-masked-view/masked-view': '>= 0.2.0'
- '@react-navigation/native': ^7.1.17
+ '@react-navigation/native': ^7.1.33
react: '>= 18.2.0'
react-native: '*'
react-native-safe-area-context: '>= 4.0.0'
@@ -1965,43 +1838,84 @@ packages:
'@react-native-masked-view/masked-view':
optional: true
- '@react-navigation/native-stack@7.3.26':
- resolution: {integrity: sha512-EjaBWzLZ76HJGOOcWCFf+h/M+Zg7M1RalYioDOb6ZdXHz7AwYNidruT3OUAQgSzg3gVLqvu5OYO0jFsNDPCZxQ==}
+ '@react-navigation/native-stack@7.14.4':
+ resolution: {integrity: sha512-HFEnM5Q7JY3FmmiolD/zvgY+9sxZAyVGPZJoz7BdTvJmi1VHOdplf24YiH45mqeitlGnaOlvNT55rH4abHJ5eA==}
peerDependencies:
- '@react-navigation/native': ^7.1.17
+ '@react-navigation/native': ^7.1.33
react: '>= 18.2.0'
react-native: '*'
react-native-safe-area-context: '>= 4.0.0'
react-native-screens: '>= 4.0.0'
- '@react-navigation/native@7.1.17':
- resolution: {integrity: sha512-uEcYWi1NV+2Qe1oELfp9b5hTYekqWATv2cuwcOAg5EvsIsUPtzFrKIasgUXLBRGb9P7yR5ifoJ+ug4u6jdqSTQ==}
+ '@react-navigation/native@7.1.33':
+ resolution: {integrity: sha512-DpFdWGcgLajKZ1TuIvDNQsblN2QaUFWpTQaB8v7WRP9Mix8H/6TFoIrZd93pbymI2hybd6UYrD+lI408eWVcfw==}
peerDependencies:
react: '>= 18.2.0'
react-native: '*'
- '@react-navigation/routers@7.5.1':
- resolution: {integrity: sha512-pxipMW/iEBSUrjxz2cDD7fNwkqR4xoi0E/PcfTQGCcdJwLoaxzab5kSadBLj1MTJyT0YRrOXL9umHpXtp+Dv4w==}
+ '@react-navigation/routers@7.5.3':
+ resolution: {integrity: sha512-1tJHg4KKRJuQ1/EvJxatrMef3NZXEPzwUIUZ3n1yJ2t7Q97siwRtbynRpQG9/69ebbtiZ8W3ScOZF/OmhvM4Rg==}
+
+ '@rn-primitives/avatar@1.2.0':
+ resolution: {integrity: sha512-ic029KaJRADdjmjPzpaSaZ9QrtgGF8DnAA7TcQ/gYqUfLXjkbfzsjARKv7NtEoJLjWAcjIAK6R8JkcbMfPtYig==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
+ react-native-web: '*'
+ peerDependenciesMeta:
+ react-native:
+ optional: true
+ react-native-web:
+ optional: true
+
+ '@rn-primitives/hooks@1.3.0':
+ resolution: {integrity: sha512-BR97reSu7uVDpyMeQdRJHT0w8KdS6jdYnOL6xQtqS2q3H6N7vXBlX4LFERqJZphD+aziJFIAJ3HJF1vtt6XlpQ==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
+ react-native-web: '*'
+ peerDependenciesMeta:
+ react-native:
+ optional: true
+ react-native-web:
+ optional: true
+
+ '@rn-primitives/slot@1.2.0':
+ resolution: {integrity: sha512-cpbn+JLjSeq3wcA4uqgFsUimMrWYWx2Ks7r5rkwd1ds1utxynsGkLOKpYVQkATwWrYhtcoF1raxIKEqXuMN+/w==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
+ react-native-web: '*'
+ peerDependenciesMeta:
+ react-native:
+ optional: true
+ react-native-web:
+ optional: true
+
+ '@rn-primitives/types@1.2.0':
+ resolution: {integrity: sha512-b+6zKgdKVqAfaFPSfhwlQL0dnPQXPpW890m3eguC0VDI1eOsoEvUfVb6lmgH4bum9MmI0xymq4tOUI/fsKLoCQ==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
+ react-native-web: '*'
+ peerDependenciesMeta:
+ react-native:
+ optional: true
+ react-native-web:
+ optional: true
'@rtsao/scc@1.1.0':
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
- '@shopify/flash-list@2.0.3':
- resolution: {integrity: sha512-jUlHuZFoPdqRCDvOqsb2YkTttRPyV8Tb/EjCx3gE2wjr4UTM+fE0Ltv9bwBg0K7yo/SxRNXaW7xu5utusRb0xA==}
+ '@shopify/flash-list@2.0.2':
+ resolution: {integrity: sha512-zhlrhA9eiuEzja4wxVvotgXHtqd3qsYbXkQ3rsBfOgbFA9BVeErpDE/yEwtlIviRGEqpuFj/oU5owD6ByaNX+w==}
peerDependencies:
'@babel/runtime': '*'
react: '*'
react-native: '*'
- '@simplewebauthn/browser@13.2.0':
- resolution: {integrity: sha512-N3fuA1AAnTo5gCStYoIoiasPccC+xPLx2YU88Dv0GeAmPQTWHETlZQq5xZ0DgUq1H9loXMWQH5qqUjcI7BHJ1A==}
-
- '@simplewebauthn/server@13.2.1':
- resolution: {integrity: sha512-Inmfye5opZXe3HI0GaksqBnQiM7glcNySoG6DH1GgkO1Lh9dvuV4XSV9DK02DReUVX39HpcDob9nxHELjECoQw==}
- engines: {node: '>=20.0.0'}
-
- '@sinclair/typebox@0.27.8':
- resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
+ '@sinclair/typebox@0.27.10':
+ resolution: {integrity: sha512-MTBk/3jGLNB2tVxv6uLlFh1iu64iYOQ2PbdOSK3NW8JZsmlaOh2q6sdtKowBhfw8QFLmYNzTW4/oK4uATIi6ZA==}
'@sinonjs/commons@3.0.1':
resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
@@ -2009,22 +1923,25 @@ packages:
'@sinonjs/fake-timers@10.3.0':
resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
- '@storybook/addon-ondevice-actions@9.1.4':
- resolution: {integrity: sha512-W68LZu/M+7LpFmAuqkrYAW6UyfczvucbH6b0jNORz8jno63qLO1R8hsTLJnnz9FFLWoAR6njuUX4gPgSy1Xtkw==}
+ '@standard-schema/spec@1.1.0':
+ resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
+
+ '@storybook/addon-ondevice-actions@10.2.3':
+ resolution: {integrity: sha512-9kzKTcVfCXcWaqecApeULKxbfMWA8FK2erXkydd8l65hV7PBIAZV6QQbm+ukgk1zhPalgTgYmxkCV/mA7GoL2w==}
peerDependencies:
react: '*'
react-native: '*'
- storybook: '>=9'
+ storybook: '>=10 || ^10'
- '@storybook/addon-ondevice-controls@9.1.4':
- resolution: {integrity: sha512-oj+Ga41RSYMUOwgrMPaLG5fTI2puGmrTuxHGNN+Up1Lxqs5mr2fzWDO10TEspZtAg/ETVZqtNKhW166wQoCBTA==}
+ '@storybook/addon-ondevice-controls@10.2.3':
+ resolution: {integrity: sha512-bObnx+vF9uddrycTv1nGJPP9tEBzfk07C8juL0WZDGFYxc2Jj9In3KS9z6sgg6vjMVzR4UuGyqi/uOZ634MZoA==}
peerDependencies:
'@gorhom/bottom-sheet': '>=4'
'@react-native-community/datetimepicker': '*'
'@react-native-community/slider': 5.0.1
react: '*'
react-native: '*'
- storybook: '>=9'
+ storybook: '>=10 || ^10'
peerDependenciesMeta:
'@gorhom/bottom-sheet':
optional: true
@@ -2032,30 +1949,36 @@ packages:
'@storybook/global@5.0.0':
resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
- '@storybook/react-dom-shim@9.1.10':
- resolution: {integrity: sha512-cxy8GTj73RMJIFPrgqdnMXePGX5iFohM5pDCZ63Te5m5GtzKqsILRXtBBLO6Ouexm/ZYRVznkKiwNKX/Fu24fQ==}
+ '@storybook/icons@2.0.1':
+ resolution: {integrity: sha512-/smVjw88yK3CKsiuR71vNgWQ9+NuY2L+e8X7IMrFjexjm6ZR8ULrV2DRkTA61aV6ryefslzHEGDInGpnNeIocg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
+ '@storybook/react-dom-shim@10.2.17':
+ resolution: {integrity: sha512-x9Kb7eUSZ1zGsEw/TtWrvs1LwWIdNp8qoOQCgPEjdB07reSJcE8R3+ASWHJThmd4eZf66ZALPJyerejake4Osw==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^9.1.10
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ storybook: ^10.2.17
- '@storybook/react-native-theming@9.1.4':
- resolution: {integrity: sha512-gUo9ziv5YIYlgU5b9BpkUcMHyV4uJ/gmb8LWZpROx150HBavmX2IVd8IwBiJkPNuWrTFlTMPW9ytU740rp+GPQ==}
+ '@storybook/react-native-theming@10.2.3':
+ resolution: {integrity: sha512-bnEdTTNkA0niOUR3GAwDm5t4Ln8PEIX1bFTdrSSwHF8oTVCYghM6r3F03WEF2NeKYjvrIGlyXPAfisn4d1QFSw==}
peerDependencies:
react: '*'
react-native: '>=0.57.0'
- '@storybook/react-native-ui-common@9.1.4':
- resolution: {integrity: sha512-BfLxoGrVoWZkaeZrqf1cXjnXVZup1knguGNBHFKtWRQLAZqmxEGEYM6l1hzODXvhnsD+2eX+KHQ5DU5CnMiPiw==}
- engines: {node: '>=18.0.0'}
+ '@storybook/react-native-ui-common@10.2.3':
+ resolution: {integrity: sha512-vPOp1/435/L4Aj9nScg7ffocogkFndxUBe2gJAydXpD1Zlvc0vDwmGw9lbalbELlnzTQoS4C6VF62BVs6YTElw==}
+ engines: {node: '>=20.0.0'}
peerDependencies:
react: '*'
react-native: '>=0.57.0'
- storybook: '>=9'
+ storybook: '>=10 || ^10'
- '@storybook/react-native-ui@9.1.4':
- resolution: {integrity: sha512-fBCDfSLkEqgXpAzVdmJMdAxMCkgAhDVVvxvJrtegjOFLE8o9d3PxfFjJkVbZntKmWVU7XlVn0NFuzC0e+5hHIQ==}
- engines: {node: '>=18.0.0'}
+ '@storybook/react-native-ui@10.2.3':
+ resolution: {integrity: sha512-6ZCMjwKr/1srPtMJLDSOjSG83wIWtq9EloygReZBSUwF3zz8V5Byw8Is4um5rv63TjQIynqkMYlGkTA1YXM0Hg==}
+ engines: {node: '>=20.0.0'}
peerDependencies:
'@gorhom/bottom-sheet': '>=4'
react: '*'
@@ -2064,10 +1987,10 @@ packages:
react-native-reanimated: '>=3'
react-native-safe-area-context: '*'
react-native-svg: '>=14'
- storybook: '>=9'
+ storybook: '>=10 || ^10'
- '@storybook/react-native@9.1.4':
- resolution: {integrity: sha512-OjR/1rPQZ2SMBU4+tlgAsF2ooPI1rVadf8DfCH3kC0K4dSfEI+ocqTVzv7p4N3W2ZyTaxgJKJoAxA/Ohw+cSbA==}
+ '@storybook/react-native@10.2.3':
+ resolution: {integrity: sha512-dgqJxB1q3xJgFXPuq7FMRBRpXK9IqsCzKRs0lNFQuh3wfqMggop5+/J5sv8Zo3t2PZ/HOhcax3/+brmg5GL+FA==}
engines: {node: '>=20'}
hasBin: true
peerDependencies:
@@ -2077,7 +2000,7 @@ packages:
react-native-gesture-handler: '>=2'
react-native-reanimated: '>=2'
react-native-safe-area-context: '*'
- storybook: '>=9'
+ storybook: '>=10 || ^10'
peerDependenciesMeta:
'@gorhom/bottom-sheet':
optional: true
@@ -2088,13 +2011,12 @@ packages:
react-native-safe-area-context:
optional: true
- '@storybook/react@9.1.10':
- resolution: {integrity: sha512-flG3Gn3EHZnxn92C7vrA2U4aGqpOKdf85fL43+J/2k9HF5AIyOFGlcv4LGVyKZ3LOAow/nGBVSXL9961h+ICRA==}
- engines: {node: '>=20.0.0'}
+ '@storybook/react@10.2.17':
+ resolution: {integrity: sha512-875AVMYil2X9Civil6GFZ8koIzlKxcXbl2eJ7+/GPbhIonTNmwx0qbWPHttjZXUvFuQ4RRtb9KkBwy4TCb/LeA==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^9.1.10
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ storybook: ^10.2.17
typescript: '>= 4.9.x'
peerDependenciesMeta:
typescript:
@@ -2159,69 +2081,167 @@ packages:
engines: {node: '>=14'}
hasBin: true
- '@svgr/core@8.1.0':
- resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==}
- engines: {node: '>=14'}
+ '@svgr/core@8.1.0':
+ resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==}
+ engines: {node: '>=14'}
+
+ '@svgr/hast-util-to-babel-ast@8.0.0':
+ resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==}
+ engines: {node: '>=14'}
+
+ '@svgr/plugin-jsx@8.1.0':
+ resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@svgr/core': '*'
+
+ '@svgr/plugin-prettier@8.1.0':
+ resolution: {integrity: sha512-o4/uFI8G64tAjBZ4E7gJfH+VP7Qi3T0+M4WnIsP91iFnGPqs5WvPDkpZALXPiyWEtzfYs1Rmwy1Zdfu8qoZuKw==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@svgr/core': '*'
+
+ '@svgr/plugin-svgo@8.1.0':
+ resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@svgr/core': '*'
+
+ '@tailwindcss/node@4.1.17':
+ resolution: {integrity: sha512-csIkHIgLb3JisEFQ0vxr2Y57GUNYh447C8xzwj89U/8fdW8LhProdxvnVH6U8M2Y73QKiTIH+LWbK3V2BBZsAg==}
+
+ '@tailwindcss/oxide-android-arm64@4.1.17':
+ resolution: {integrity: sha512-BMqpkJHgOZ5z78qqiGE6ZIRExyaHyuxjgrJ6eBO5+hfrfGkuya0lYfw8fRHG77gdTjWkNWEEm+qeG2cDMxArLQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [android]
+
+ '@tailwindcss/oxide-darwin-arm64@4.1.17':
+ resolution: {integrity: sha512-EquyumkQweUBNk1zGEU/wfZo2qkp/nQKRZM8bUYO0J+Lums5+wl2CcG1f9BgAjn/u9pJzdYddHWBiFXJTcxmOg==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@tailwindcss/oxide-darwin-x64@4.1.17':
+ resolution: {integrity: sha512-gdhEPLzke2Pog8s12oADwYu0IAw04Y2tlmgVzIN0+046ytcgx8uZmCzEg4VcQh+AHKiS7xaL8kGo/QTiNEGRog==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@tailwindcss/oxide-freebsd-x64@4.1.17':
+ resolution: {integrity: sha512-hxGS81KskMxML9DXsaXT1H0DyA+ZBIbyG/sSAjWNe2EDl7TkPOBI42GBV3u38itzGUOmFfCzk1iAjDXds8Oh0g==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.17':
+ resolution: {integrity: sha512-k7jWk5E3ldAdw0cNglhjSgv501u7yrMf8oeZ0cElhxU6Y2o7f8yqelOp3fhf7evjIS6ujTI3U8pKUXV2I4iXHQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.17':
+ resolution: {integrity: sha512-HVDOm/mxK6+TbARwdW17WrgDYEGzmoYayrCgmLEw7FxTPLcp/glBisuyWkFz/jb7ZfiAXAXUACfyItn+nTgsdQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.17':
+ resolution: {integrity: sha512-HvZLfGr42i5anKtIeQzxdkw/wPqIbpeZqe7vd3V9vI3RQxe3xU1fLjss0TjyhxWcBaipk7NYwSrwTwK1hJARMg==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
- '@svgr/hast-util-to-babel-ast@8.0.0':
- resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==}
- engines: {node: '>=14'}
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.17':
+ resolution: {integrity: sha512-M3XZuORCGB7VPOEDH+nzpJ21XPvK5PyjlkSFkFziNHGLc5d6g3di2McAAblmaSUNl8IOmzYwLx9NsE7bplNkwQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
- '@svgr/plugin-jsx@8.1.0':
- resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==}
- engines: {node: '>=14'}
- peerDependencies:
- '@svgr/core': '*'
+ '@tailwindcss/oxide-linux-x64-musl@4.1.17':
+ resolution: {integrity: sha512-k7f+pf9eXLEey4pBlw+8dgfJHY4PZ5qOUFDyNf7SI6lHjQ9Zt7+NcscjpwdCEbYi6FI5c2KDTDWyf2iHcCSyyQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
- '@svgr/plugin-prettier@8.1.0':
- resolution: {integrity: sha512-o4/uFI8G64tAjBZ4E7gJfH+VP7Qi3T0+M4WnIsP91iFnGPqs5WvPDkpZALXPiyWEtzfYs1Rmwy1Zdfu8qoZuKw==}
- engines: {node: '>=14'}
- peerDependencies:
- '@svgr/core': '*'
+ '@tailwindcss/oxide-wasm32-wasi@4.1.17':
+ resolution: {integrity: sha512-cEytGqSSoy7zK4JRWiTCx43FsKP/zGr0CsuMawhH67ONlH+T79VteQeJQRO/X7L0juEUA8ZyuYikcRBf0vsxhg==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+ bundledDependencies:
+ - '@napi-rs/wasm-runtime'
+ - '@emnapi/core'
+ - '@emnapi/runtime'
+ - '@tybys/wasm-util'
+ - '@emnapi/wasi-threads'
+ - tslib
+
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.17':
+ resolution: {integrity: sha512-JU5AHr7gKbZlOGvMdb4722/0aYbU+tN6lv1kONx0JK2cGsh7g148zVWLM0IKR3NeKLv+L90chBVYcJ8uJWbC9A==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
- '@svgr/plugin-svgo@8.1.0':
- resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==}
- engines: {node: '>=14'}
- peerDependencies:
- '@svgr/core': '*'
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.17':
+ resolution: {integrity: sha512-SKWM4waLuqx0IH+FMDUw6R66Hu4OuTALFgnleKbqhgGU30DY20NORZMZUKgLRjQXNN2TLzKvh48QXTig4h4bGw==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@tailwindcss/oxide@4.1.17':
+ resolution: {integrity: sha512-F0F7d01fmkQhsTjXezGBLdrl1KresJTcI3DB8EkScCldyKp3Msz4hub4uyYaVnk88BAS1g5DQjjF6F5qczheLA==}
+ engines: {node: '>= 10'}
- '@tanstack/devtools-event-client@0.3.2':
- resolution: {integrity: sha512-gkvph/YMCFUfAca75EsJBJnhbKitDGix7vdEcT/3lAV+eyGSv+uECYG43apVQN4yLJKnV6mzcNvGzOhDhb72gg==}
+ '@tanstack/devtools-event-client@0.4.3':
+ resolution: {integrity: sha512-OZI6QyULw0FI0wjgmeYzCIfbgPsOEzwJtCpa69XrfLMtNXLGnz3d/dIabk7frg0TmHo+Ah49w5I4KC7Tufwsvw==}
engines: {node: '>=18'}
+ hasBin: true
- '@tanstack/eslint-plugin-query@5.90.1':
- resolution: {integrity: sha512-Ki4hl+8ZtnMFZ3amZbQl6sSMUq6L8oSJ14vmi3j5t1/SqXclL5SI/1kcuH36iIk05B/bN5pEOS1PTO3Ut/FbVA==}
+ '@tanstack/eslint-plugin-query@5.91.4':
+ resolution: {integrity: sha512-8a+GAeR7oxJ5laNyYBQ6miPK09Hi18o5Oie/jx8zioXODv/AUFLZQecKabPdpQSLmuDXEBPKFh+W5DKbWlahjQ==}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@tanstack/form-core@1.28.4':
+ resolution: {integrity: sha512-2eox5ePrJ6kvA1DXD5QHk/GeGr3VFZ0uYR63UgQOe7bUg6h1JfXaIMqTjZK9sdGyE4oRNqFpoW54H0pZM7nObQ==}
- '@tanstack/form-core@1.24.0':
- resolution: {integrity: sha512-bMxl7cwBt6WYiajImYN/0fjYRuiTAW7+3C/zPHNyxLTc6U5voPGr1lF1RGzf3U5Q8qtvHyGF0dVuISMLqb31yQ==}
+ '@tanstack/pacer-lite@0.1.1':
+ resolution: {integrity: sha512-y/xtNPNt/YeyoVxE/JCx+T7yjEzpezmbb+toK8DDD1P4m7Kzs5YR956+7OKexG3f8aXgC3rLZl7b1V+yNUSy5w==}
+ engines: {node: '>=18'}
- '@tanstack/query-core@5.90.2':
- resolution: {integrity: sha512-k/TcR3YalnzibscALLwxeiLUub6jN5EDLwKDiO7q5f4ICEoptJ+n9+7vcEFy5/x/i6Q+Lb/tXrsKCggf5uQJXQ==}
+ '@tanstack/query-core@5.90.20':
+ resolution: {integrity: sha512-OMD2HLpNouXEfZJWcKeVKUgQ5n+n3A2JFmBaScpNDUqSrQSjiveC7dKMe53uJUg1nDG16ttFPz2xfilz6i2uVg==}
- '@tanstack/react-form@1.23.4':
- resolution: {integrity: sha512-aWkWb+0X8WIaOUuPhNHawgXX9yH2ZpM7AU8mvCd6/qUZMMRPPfsHu3jB1no59Tx5sfc29H1T5UxTQU7MyVQyDQ==}
+ '@tanstack/react-form@1.28.4':
+ resolution: {integrity: sha512-ZGBwl9JM2u0kol7jAWpqAkr2JSHfXJaLPsFDZWPf+ewpVkwngTTW/rGgtoDe5uVpHoDIpOhzpPCAh6O1SjGEOg==}
peerDependencies:
- '@tanstack/react-start': ^1.130.10
+ '@tanstack/react-start': '*'
react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@tanstack/react-start':
optional: true
- '@tanstack/react-query@5.90.2':
- resolution: {integrity: sha512-CLABiR+h5PYfOWr/z+vWFt5VsOA2ekQeRQBFSKlcoW6Ndx/f8rfyVmq4LbgOM4GG2qtxAxjLYLOpCNTYm4uKzw==}
+ '@tanstack/react-query@5.90.21':
+ resolution: {integrity: sha512-0Lu6y5t+tvlTJMTO7oh5NSpJfpg/5D41LlThfepTixPYkJ0sE2Jj0m0f6yYqujBwIXlId87e234+MxG3D3g7kg==}
peerDependencies:
react: ^18 || ^19
- '@tanstack/react-store@0.7.7':
- resolution: {integrity: sha512-qqT0ufegFRDGSof9D/VqaZgjNgp4tRPHZIJq2+QIHkMUtHjaJ0lYrrXjeIUJvjnTbgPfSD1XgOMEt0lmANn6Zg==}
+ '@tanstack/react-store@0.9.2':
+ resolution: {integrity: sha512-Vt5usJE5sHG/cMechQfmwvwne6ktGCELe89Lmvoxe3LKRoFrhPa8OCKWs0NliG8HTJElEIj7PLtaBQIcux5pAQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- '@tanstack/store@0.7.7':
- resolution: {integrity: sha512-xa6pTan1bcaqYDS9BDpSiS63qa6EoDkPN9RsRaxHuDdVDNntzq3xNwR5YKTU/V3SkSyC9T4YVOPh2zRQN0nhIQ==}
+ '@tanstack/store@0.9.2':
+ resolution: {integrity: sha512-K013lUJEFJK2ofFQ/hZKJUmCnpcV00ebLyOyFOWQvyQHUOZp/iYO84BM6aOGiV81JzwbX0APTVmW8YI7yiG5oA==}
'@testing-library/dom@10.4.1':
resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==}
@@ -2237,26 +2257,6 @@ packages:
peerDependencies:
'@testing-library/dom': '>=7.21.4'
- '@trivago/prettier-plugin-sort-imports@5.2.2':
- resolution: {integrity: sha512-fYDQA9e6yTNmA13TLVSA+WMQRc5Bn/c0EUBditUHNfMMxN7M82c38b1kEggVE3pLpZ0FwkwJkUEKMiOi52JXFA==}
- engines: {node: '>18.12'}
- peerDependencies:
- '@vue/compiler-sfc': 3.x
- prettier: 2.x - 3.x
- prettier-plugin-svelte: 3.x
- svelte: 4.x || 5.x
- peerDependenciesMeta:
- '@vue/compiler-sfc':
- optional: true
- prettier-plugin-svelte:
- optional: true
- svelte:
- optional: true
-
- '@trysound/sax@0.2.0':
- resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
- engines: {node: '>=10.13.0'}
-
'@tybys/wasm-util@0.10.1':
resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
@@ -2275,12 +2275,15 @@ packages:
'@types/babel__traverse@7.28.0':
resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
- '@types/chai@5.2.2':
- resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==}
+ '@types/chai@5.2.3':
+ resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==}
'@types/deep-eql@4.0.2':
resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
+ '@types/doctrine@0.0.9':
+ resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
+
'@types/estree@1.0.8':
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
@@ -2305,84 +2308,87 @@ packages:
'@types/json5@0.0.29':
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- '@types/lodash.mergewith@4.6.9':
- resolution: {integrity: sha512-fgkoCAOF47K7sxrQ7Mlud2TH023itugZs2bUg8h/KzT+BnZNrR2jAOmaokbLunHNnobXVWOezAeNn/lZqwxkcw==}
+ '@types/node@25.4.0':
+ resolution: {integrity: sha512-9wLpoeWuBlcbBpOY3XmzSTG3oscB6xjBEEtn+pYXTfhyXhIxC5FsBer2KTopBlvKEiW9l13po9fq+SJY/5lkhw==}
- '@types/lodash@4.17.20':
- resolution: {integrity: sha512-H3MHACvFUEiujabxhaI/ImO6gUrd8oOurg7LQtS7mbwIXA/cUqWrvBsaeJ23aZEPk1TAYkurjfMbSELfoCXlGA==}
+ '@types/react@19.2.14':
+ resolution: {integrity: sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==}
- '@types/node@24.6.1':
- resolution: {integrity: sha512-ljvjjs3DNXummeIaooB4cLBKg2U6SPI6Hjra/9rRIy7CpM0HpLtG9HptkMKAb4HYWy5S7HUvJEuWgr/y0U8SHw==}
-
- '@types/react@19.1.13':
- resolution: {integrity: sha512-hHkbU/eoO3EG5/MZkuFSKmYqPbSVk5byPFa3e7y/8TybHiLMACgI8seVYlicwk7H5K/rI2px9xrQp/C+AUDTiQ==}
+ '@types/resolve@1.20.6':
+ resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==}
'@types/stack-utils@2.0.3':
resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
+ '@types/webidl-conversions@7.0.3':
+ resolution: {integrity: sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==}
+
+ '@types/whatwg-url@13.0.0':
+ resolution: {integrity: sha512-N8WXpbE6Wgri7KUSvrmQcqrMllKZ9uxkYWMt+mCSGwNc0Hsw9VQTW7ApqI4XNrx6/SaM2QQJCzMPDEXE058s+Q==}
+
'@types/yargs-parser@21.0.3':
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
- '@types/yargs@17.0.33':
- resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
+ '@types/yargs@17.0.35':
+ resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==}
- '@typescript-eslint/eslint-plugin@8.44.1':
- resolution: {integrity: sha512-molgphGqOBT7t4YKCSkbasmu1tb1MgrZ2szGzHbclF7PNmOkSTQVHy+2jXOSnxvR3+Xe1yySHFZoqMpz3TfQsw==}
+ '@typescript-eslint/eslint-plugin@8.57.0':
+ resolution: {integrity: sha512-qeu4rTHR3/IaFORbD16gmjq9+rEs9fGKdX0kF6BKSfi+gCuG3RCKLlSBYzn/bGsY9Tj7KE/DAQStbp8AHJGHEQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^8.44.1
- eslint: ^8.57.0 || ^9.0.0
+ '@typescript-eslint/parser': ^8.57.0
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/parser@8.44.1':
- resolution: {integrity: sha512-EHrrEsyhOhxYt8MTg4zTF+DJMuNBzWwgvvOYNj/zm1vnaD/IC5zCXFehZv94Piqa2cRFfXrTFxIvO95L7Qc/cw==}
+ '@typescript-eslint/parser@8.57.0':
+ resolution: {integrity: sha512-XZzOmihLIr8AD1b9hL9ccNMzEMWt/dE2u7NyTY9jJG6YNiNthaD5XtUHVF2uCXZ15ng+z2hT3MVuxnUYhq6k1g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/project-service@8.44.1':
- resolution: {integrity: sha512-ycSa60eGg8GWAkVsKV4E6Nz33h+HjTXbsDT4FILyL8Obk5/mx4tbvCNsLf9zret3ipSumAOG89UcCs/KRaKYrA==}
+ '@typescript-eslint/project-service@8.57.0':
+ resolution: {integrity: sha512-pR+dK0BlxCLxtWfaKQWtYr7MhKmzqZxuii+ZjuFlZlIGRZm22HnXFqa2eY+90MUz8/i80YJmzFGDUsi8dMOV5w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/scope-manager@8.44.1':
- resolution: {integrity: sha512-NdhWHgmynpSvyhchGLXh+w12OMT308Gm25JoRIyTZqEbApiBiQHD/8xgb6LqCWCFcxFtWwaVdFsLPQI3jvhywg==}
+ '@typescript-eslint/scope-manager@8.57.0':
+ resolution: {integrity: sha512-nvExQqAHF01lUM66MskSaZulpPL5pgy5hI5RfrxviLgzZVffB5yYzw27uK/ft8QnKXI2X0LBrHJFr1TaZtAibw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/tsconfig-utils@8.44.1':
- resolution: {integrity: sha512-B5OyACouEjuIvof3o86lRMvyDsFwZm+4fBOqFHccIctYgBjqR3qT39FBYGN87khcgf0ExpdCBeGKpKRhSFTjKQ==}
+ '@typescript-eslint/tsconfig-utils@8.57.0':
+ resolution: {integrity: sha512-LtXRihc5ytjJIQEH+xqjB0+YgsV4/tW35XKX3GTZHpWtcC8SPkT/d4tqdf1cKtesryHm2bgp6l555NYcT2NLvA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/type-utils@8.44.1':
- resolution: {integrity: sha512-KdEerZqHWXsRNKjF9NYswNISnFzXfXNDfPxoTh7tqohU/PRIbwTmsjGK6V9/RTYWau7NZvfo52lgVk+sJh0K3g==}
+ '@typescript-eslint/type-utils@8.57.0':
+ resolution: {integrity: sha512-yjgh7gmDcJ1+TcEg8x3uWQmn8ifvSupnPfjP21twPKrDP/pTHlEQgmKcitzF/rzPSmv7QjJ90vRpN4U+zoUjwQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/types@8.44.1':
- resolution: {integrity: sha512-Lk7uj7y9uQUOEguiDIDLYLJOrYHQa7oBiURYVFqIpGxclAFQ78f6VUOM8lI2XEuNOKNB7XuvM2+2cMXAoq4ALQ==}
+ '@typescript-eslint/types@8.57.0':
+ resolution: {integrity: sha512-dTLI8PEXhjUC7B9Kre+u0XznO696BhXcTlOn0/6kf1fHaQW8+VjJAVHJ3eTI14ZapTxdkOmc80HblPQLaEeJdg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.44.1':
- resolution: {integrity: sha512-qnQJ+mVa7szevdEyvfItbO5Vo+GfZ4/GZWWDRRLjrxYPkhM+6zYB2vRYwCsoJLzqFCdZT4mEqyJoyzkunsZ96A==}
+ '@typescript-eslint/typescript-estree@8.57.0':
+ resolution: {integrity: sha512-m7faHcyVg0BT3VdYTlX8GdJEM7COexXxS6KqGopxdtkQRvBanK377QDHr4W/vIPAR+ah9+B/RclSW5ldVniO1Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/utils@8.44.1':
- resolution: {integrity: sha512-DpX5Fp6edTlocMCwA+mHY8Mra+pPjRZ0TfHkXI8QFelIKcbADQz1LUPNtzOFUriBB2UYqw4Pi9+xV4w9ZczHFg==}
+ '@typescript-eslint/utils@8.57.0':
+ resolution: {integrity: sha512-5iIHvpD3CZe06riAsbNxxreP+MuYgVUsV0n4bwLH//VJmgtt54sQeY2GszntJ4BjYCpMzrfVh2SBnUQTtys2lQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/visitor-keys@8.44.1':
- resolution: {integrity: sha512-576+u0QD+Jp3tZzvfRfxon0EA2lzcDt3lhUbsC6Lgzy9x2VR4E+JUiNyGHi5T8vk0TV+fpJ5GLG1JsJuWCaKhw==}
+ '@typescript-eslint/visitor-keys@8.57.0':
+ resolution: {integrity: sha512-zm6xx8UT/Xy2oSr2ZXD0pZo7Jx2XsCoID2IUh9YSTFRu7z+WdwYTRk6LhUftm1crwqbuoF6I8zAFeCMw0YjwDg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.3.0':
@@ -2427,41 +2433,49 @@ packages:
resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
cpu: [arm64]
os: [linux]
+ libc: [glibc]
'@unrs/resolver-binding-linux-arm64-musl@1.11.1':
resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
cpu: [arm64]
os: [linux]
+ libc: [musl]
'@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
cpu: [ppc64]
os: [linux]
+ libc: [glibc]
'@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
cpu: [riscv64]
os: [linux]
+ libc: [glibc]
'@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
cpu: [riscv64]
os: [linux]
+ libc: [musl]
'@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
cpu: [s390x]
os: [linux]
+ libc: [glibc]
'@unrs/resolver-binding-linux-x64-gnu@1.11.1':
resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
cpu: [x64]
os: [linux]
+ libc: [glibc]
'@unrs/resolver-binding-linux-x64-musl@1.11.1':
resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==}
cpu: [x64]
os: [linux]
+ libc: [musl]
'@unrs/resolver-binding-wasm32-wasi@1.11.1':
resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
@@ -2483,28 +2497,9 @@ packages:
cpu: [x64]
os: [win32]
- '@urql/core@5.2.0':
- resolution: {integrity: sha512-/n0ieD0mvvDnVAXEQgX/7qJiVcvYvNkOHeBvkwtylfjydar123caCXcl58PXFY11oU1oquJocVXHxLAbtv4x1A==}
-
- '@urql/exchange-retry@1.3.2':
- resolution: {integrity: sha512-TQMCz2pFJMfpNxmSfX1VSfTjwUIFx/mL+p1bnfM1xjjdla7Z+KnGMW/EhFbpckp3LyWAH4PgOsMwOMnIN+MBFg==}
- peerDependencies:
- '@urql/core': ^5.0.0
-
'@vitest/expect@3.2.4':
resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==}
- '@vitest/mocker@3.2.4':
- resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==}
- peerDependencies:
- msw: ^2.4.9
- vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
- peerDependenciesMeta:
- msw:
- optional: true
- vite:
- optional: true
-
'@vitest/pretty-format@3.2.4':
resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==}
@@ -2526,13 +2521,17 @@ packages:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
+ accepts@2.0.0:
+ resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==}
+ engines: {node: '>= 0.6'}
+
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn@8.15.0:
- resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
+ acorn@8.16.0:
+ resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -2540,12 +2539,8 @@ packages:
resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
engines: {node: '>= 14'}
- aggregate-error@3.1.0:
- resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
- engines: {node: '>=8'}
-
- ajv@6.12.6:
- resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+ ajv@6.14.0:
+ resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
anser@1.4.10:
resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==}
@@ -2566,10 +2561,6 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.2.2:
- resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
- engines: {node: '>=12'}
-
ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
@@ -2582,19 +2573,12 @@ packages:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
- ansi-styles@6.2.3:
- resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
- engines: {node: '>=12'}
-
- any-promise@1.3.0:
- resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
-
anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
- arg@4.1.0:
- resolution: {integrity: sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==}
+ arg@4.1.3:
+ resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
arg@5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
@@ -2616,9 +2600,6 @@ packages:
resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
engines: {node: '>= 0.4'}
- arktype@2.1.20:
- resolution: {integrity: sha512-IZCEEXaJ8g+Ijd59WtSYwtjnqXiwM8sWQ5EjGamcto7+HVN9eK0C4p0zDlCuAwWhpqr6fIBkxPuYDl4/Mcj/+Q==}
-
array-buffer-byte-length@1.0.2:
resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
engines: {node: '>= 0.4'}
@@ -2627,10 +2608,6 @@ packages:
resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==}
engines: {node: '>= 0.4'}
- array-union@2.1.0:
- resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
- engines: {node: '>=8'}
-
array.prototype.findlast@1.2.5:
resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
engines: {node: '>= 0.4'}
@@ -2658,10 +2635,6 @@ packages:
asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
- asn1js@3.0.6:
- resolution: {integrity: sha512-UOCGPYbl0tv8+006qks/dTgV9ajs97X2p0FAbyS2iyCRrmLSRolDaHdp+v/CLgnzHc3fVB+CwYiUmei7ndFcgA==}
- engines: {node: '>=12.0.0'}
-
assertion-error@2.0.1:
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
engines: {node: '>=12'}
@@ -2674,9 +2647,6 @@ packages:
resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==}
engines: {node: '>= 0.4'}
- async-limiter@1.0.1:
- resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
-
available-typed-arrays@1.0.7:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
@@ -2695,8 +2665,8 @@ packages:
resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- babel-plugin-polyfill-corejs2@0.4.14:
- resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==}
+ babel-plugin-polyfill-corejs2@0.4.16:
+ resolution: {integrity: sha512-xaVwwSfebXf0ooE11BJovZYKhFjIvQo7TsyVpETuIeH2JHv0k/T6Y5j22pPTvqYqmpkxdlPAJlyJ0tfOJAoMxw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -2705,22 +2675,22 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-regenerator@0.6.5:
- resolution: {integrity: sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==}
+ babel-plugin-polyfill-regenerator@0.6.7:
+ resolution: {integrity: sha512-OTYbUlSwXhNgr4g6efMZgsO8//jA61P7ZbRX3iTT53VON8l+WQS8IAUEVo4a4cWknrg2W8Cj4gQhRYNCJ8GkAA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
babel-plugin-react-compiler@1.0.0:
resolution: {integrity: sha512-Ixm8tFfoKKIPYdCCKYTsqv+Fd4IJ0DQqMyEimo+pxUOMUR9cVPlwTrFt9Avu+3cb6Zp3mAzl+t1MrG2fxxKsxw==}
- babel-plugin-react-native-web@0.21.1:
- resolution: {integrity: sha512-7XywfJ5QIRMwjOL+pwJt2w47Jmi5fFLvK7/So4fV4jIN6PcRbylCp9/l3cJY4VJbSz3lnWTeHDTD1LKIc1C09Q==}
+ babel-plugin-react-native-web@0.21.2:
+ resolution: {integrity: sha512-SPD0J6qjJn8231i0HZhlAGH6NORe+QvRSQM2mwQEzJ2Fb3E4ruWTiiicPlHjmeWShDXLcvoorOCXjeR7k/lyWA==}
- babel-plugin-syntax-hermes-parser@0.28.1:
- resolution: {integrity: sha512-meT17DOuUElMNsL5LZN56d+KBp22hb0EfxWfuPUeoSi54e40v1W4C2V36P75FpsH9fVEfDKpw5Nnkahc8haSsQ==}
+ babel-plugin-syntax-hermes-parser@0.32.0:
+ resolution: {integrity: sha512-m5HthL++AbyeEA2FcdwOLfVFvWYECOBObLHNqdR8ceY4TsEdn4LdX2oTvbB2QJSSElE2AWA/b2MXZ/PF/CqLZg==}
- babel-plugin-syntax-hermes-parser@0.29.1:
- resolution: {integrity: sha512-2WFYnoWGdmih1I1J5eIqxATOeycOqRwYxAQBu3cUu/rhwInwHUg7k60AFNbuGjSDL8tje5GDrAnxzRLcu2pYcA==}
+ babel-plugin-syntax-hermes-parser@0.32.1:
+ resolution: {integrity: sha512-HgErPZTghW76Rkq9uqn5ESeiD97FbqpZ1V170T1RG2RDp+7pJVQV2pQJs7y5YzN0/gcT6GM5ci9apRnIwuyPdQ==}
babel-plugin-transform-flow-enums@0.0.2:
resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==}
@@ -2730,17 +2700,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0 || ^8.0.0-0
- babel-preset-expo@54.0.5:
- resolution: {integrity: sha512-nE4auLW1ldNnxuPvwD4YKIuhE7hsxRYzwnC5sbBSYRvz2bZ96ZpV7RYwkeNOObMZLWpldS9YS+ugRgCyj4vEjg==}
+ babel-preset-expo@55.0.11:
+ resolution: {integrity: sha512-ti8t4xufD6gUQQh+qY+b+VT/1zyA0n1PBnwOzCkPUyEDiIVBpaOixR+BzVH68hqu9mH2wDfzoFuGgv+2LfRdqw==}
peerDependencies:
'@babel/runtime': ^7.20.0
expo: '*'
+ expo-widgets: ^55.0.4
react-refresh: '>=0.14.0 <1.0.0'
peerDependenciesMeta:
'@babel/runtime':
optional: true
expo:
optional: true
+ expo-widgets:
+ optional: true
babel-preset-jest@29.6.3:
resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
@@ -2751,31 +2724,67 @@ packages:
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ balanced-match@4.0.4:
+ resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
+ engines: {node: 18 || 20 || >=22}
+
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- baseline-browser-mapping@2.8.16:
- resolution: {integrity: sha512-OMu3BGQ4E7P1ErFsIPpbJh0qvDudM/UuJeHgkAvfWe+0HFJCXh+t/l8L6fVLR55RI/UbKrVLnAXZSVwd9ysWYw==}
+ baseline-browser-mapping@2.10.0:
+ resolution: {integrity: sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==}
+ engines: {node: '>=6.0.0'}
hasBin: true
- better-auth@1.3.27:
- resolution: {integrity: sha512-SwiGAJ7yU6dBhNg0NdV1h5M8T5sa7/AszZVc4vBfMDrLLmvUfbt9JoJ0uRUJUEdKRAAxTyl9yA+F3+GhtAD80w==}
+ better-auth@1.5.5:
+ resolution: {integrity: sha512-GpVPaV1eqr3mOovKfghJXXk6QvlcVeFbS3z+n+FPDid5rK/2PchnDtiaVCzWyXA9jH2KkirOfl+JhAUvnja0Eg==}
peerDependencies:
'@lynx-js/react': '*'
- '@sveltejs/kit': '*'
- next: '*'
- react: '*'
- react-dom: '*'
- solid-js: '*'
- svelte: '*'
- vue: '*'
+ '@prisma/client': ^5.0.0 || ^6.0.0 || ^7.0.0
+ '@sveltejs/kit': ^2.0.0
+ '@tanstack/react-start': ^1.0.0
+ '@tanstack/solid-start': ^1.0.0
+ better-sqlite3: ^12.0.0
+ drizzle-kit: '>=0.31.4'
+ drizzle-orm: '>=0.41.0'
+ mongodb: ^6.0.0 || ^7.0.0
+ mysql2: ^3.0.0
+ next: ^14.0.0 || ^15.0.0 || ^16.0.0
+ pg: ^8.0.0
+ prisma: ^5.0.0 || ^6.0.0 || ^7.0.0
+ react: ^18.0.0 || ^19.0.0
+ react-dom: ^18.0.0 || ^19.0.0
+ solid-js: ^1.0.0
+ svelte: ^4.0.0 || ^5.0.0
+ vitest: ^2.0.0 || ^3.0.0 || ^4.0.0
+ vue: ^3.0.0
peerDependenciesMeta:
'@lynx-js/react':
optional: true
+ '@prisma/client':
+ optional: true
'@sveltejs/kit':
optional: true
+ '@tanstack/react-start':
+ optional: true
+ '@tanstack/solid-start':
+ optional: true
+ better-sqlite3:
+ optional: true
+ drizzle-kit:
+ optional: true
+ drizzle-orm:
+ optional: true
+ mongodb:
+ optional: true
+ mysql2:
+ optional: true
next:
optional: true
+ pg:
+ optional: true
+ prisma:
+ optional: true
react:
optional: true
react-dom:
@@ -2784,11 +2793,18 @@ packages:
optional: true
svelte:
optional: true
+ vitest:
+ optional: true
vue:
optional: true
- better-call@1.0.19:
- resolution: {integrity: sha512-sI3GcA1SCVa3H+CDHl8W8qzhlrckwXOTKhqq3OOPXjgn5aTOMIqGY34zLY/pHA6tRRMjTUC3lz5Mi7EbDA24Kw==}
+ better-call@1.3.2:
+ resolution: {integrity: sha512-4cZIfrerDsNTn3cm+MhLbUePN0gdwkhSXEuG7r/zuQ8c/H7iU0/jSK5TD3FW7U0MgKHce/8jGpPYNO4Ve+4NBw==}
+ peerDependencies:
+ zod: ^4.0.0
+ peerDependenciesMeta:
+ zod:
+ optional: true
better-opn@3.0.2:
resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==}
@@ -2821,18 +2837,26 @@ packages:
brace-expansion@2.0.2:
resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
+ brace-expansion@5.0.4:
+ resolution: {integrity: sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==}
+ engines: {node: 18 || 20 || >=22}
+
braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- browserslist@4.26.3:
- resolution: {integrity: sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==}
+ browserslist@4.28.1:
+ resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
+ bson@7.2.0:
+ resolution: {integrity: sha512-YCEo7KjMlbNlyHhz7zAZNDpIpQbd+wOEHJYezv0nMYTn4x31eIUM2yomNNubclAt63dObUzKHWsBLJ9QcZNSnQ==}
+ engines: {node: '>=20.19.0'}
+
buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
@@ -2855,10 +2879,10 @@ packages:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- c12@3.3.0:
- resolution: {integrity: sha512-K9ZkuyeJQeqLEyqldbYLG3wjqwpw4BVaAqvmxq3GYKK0b1A/yYQdIcJxkzAOWcNVWhJpRXAPfZFueekiY/L8Dw==}
+ c12@3.3.3:
+ resolution: {integrity: sha512-750hTRvgBy5kcMNPdh95Qo+XUBeGo8C7nsKSmedDmaQI+E0r82DwHeM6vBewDe4rGFbnxoa4V9pw+sPh5+Iz8Q==}
peerDependencies:
- magicast: ^0.3.5
+ magicast: '*'
peerDependenciesMeta:
magicast:
optional: true
@@ -2875,18 +2899,6 @@ packages:
resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
engines: {node: '>= 0.4'}
- caller-callsite@2.0.0:
- resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==}
- engines: {node: '>=4'}
-
- caller-path@2.0.0:
- resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==}
- engines: {node: '>=4'}
-
- callsites@2.0.0:
- resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==}
- engines: {node: '>=4'}
-
callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
@@ -2899,8 +2911,8 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- caniuse-lite@1.0.30001750:
- resolution: {integrity: sha512-cuom0g5sdX6rw00qOoLNSFCJ9/mYIsuSOA+yzpDw8eopiFqcVwQvZHqov0vmEighRxX++cfC0Vg1G+1Iy/mSpQ==}
+ caniuse-lite@1.0.30001778:
+ resolution: {integrity: sha512-PN7uxFL+ExFJO61aVmP1aIEG4i9whQd4eoSCebav62UwDyp5OHh06zN4jqKSMePVgxHifCw1QJxdRkA1Pisekg==}
chai@5.3.3:
resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==}
@@ -2917,17 +2929,13 @@ packages:
change-case@5.4.4:
resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==}
- check-error@2.1.1:
- resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==}
+ check-error@2.1.3:
+ resolution: {integrity: sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==}
engines: {node: '>= 16'}
- chokidar@4.0.3:
- resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
- engines: {node: '>= 14.16.0'}
-
- chownr@3.0.0:
- resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
- engines: {node: '>=18'}
+ chokidar@5.0.0:
+ resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
+ engines: {node: '>= 20.19.0'}
chrome-launcher@0.15.2:
resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==}
@@ -2944,21 +2952,23 @@ packages:
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
engines: {node: '>=8'}
- ci-info@4.3.0:
- resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==}
+ ci-info@4.4.0:
+ resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==}
engines: {node: '>=8'}
citty@0.1.6:
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
+ citty@0.2.1:
+ resolution: {integrity: sha512-kEV95lFBhQgtogAPlQfJJ0WGVSokvLr/UEoFPiKKOXF7pl98HfUVUD0ejsuTCld/9xH9vogSywZ5KqHzXrZpqg==}
+
+ class-variance-authority@0.7.1:
+ resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
+
clean-regexp@1.0.0:
resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==}
engines: {node: '>=4'}
- clean-stack@2.2.0:
- resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
- engines: {node: '>=6'}
-
cli-cursor@2.1.0:
resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==}
engines: {node: '>=4'}
@@ -2970,9 +2980,6 @@ packages:
client-only@0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
- cliui@7.0.4:
- resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
-
cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
@@ -2981,6 +2988,10 @@ packages:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
+ clsx@2.1.1:
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
+ engines: {node: '>=6'}
+
color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
@@ -3001,9 +3012,6 @@ packages:
resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
hasBin: true
- color2k@2.0.3:
- resolution: {integrity: sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==}
-
color@4.2.3:
resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
engines: {node: '>=12.5.0'}
@@ -3012,25 +3020,17 @@ packages:
resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
engines: {node: '>=18'}
- commander@13.0.0:
- resolution: {integrity: sha512-oPYleIY8wmTVzkvQq10AEok6YcTC4sRUBl8F9gVuwchGVUCTbl/vhLTaQqutuuySYOsu8YTgV+OxKc/8Yvx+mQ==}
- engines: {node: '>=18'}
+ commander@14.0.3:
+ resolution: {integrity: sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==}
+ engines: {node: '>=20'}
commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- commander@4.1.1:
- resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
- engines: {node: '>= 6'}
-
commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
- commander@8.3.0:
- resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
- engines: {node: '>= 12'}
-
commander@9.5.0:
resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
engines: {node: ^12.20.0 || >=14}
@@ -3049,8 +3049,8 @@ packages:
concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- confbox@0.2.2:
- resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==}
+ confbox@0.2.4:
+ resolution: {integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==}
connect@3.7.0:
resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
@@ -3063,15 +3063,8 @@ packages:
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- core-js-compat@3.45.1:
- resolution: {integrity: sha512-tqTt5T4PzsMIZ430XGviK4vzYSoeNJ6CXODi6c/voxOT6IZqBht5/EKaSNnYiEjjRYxjVz7DQIsOsY0XNi8PIA==}
-
- core-util-is@1.0.3:
- resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
-
- cosmiconfig@5.2.1:
- resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
- engines: {node: '>=4'}
+ core-js-compat@3.48.0:
+ resolution: {integrity: sha512-OM4cAF3D6VtH/WkLtWvyNC56EZVXsZdU3iqaMG2B4WvYrlqU831pc4UtG5yp0sE9z8Y02wVN7PjW5Zf9Gt0f1Q==}
cosmiconfig@8.3.6:
resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
@@ -3093,10 +3086,6 @@ packages:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
- crypto-random-string@2.0.0:
- resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
- engines: {node: '>=8'}
-
css-in-js-utils@3.1.0:
resolution: {integrity: sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==}
@@ -3126,8 +3115,12 @@ packages:
resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
- csstype@3.1.3:
- resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
+ csstype@3.2.3:
+ resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
+
+ culori@4.0.2:
+ resolution: {integrity: sha512-1+BhOB8ahCn4O0cep0Sh2l9KCOfOdY+BXJnKMHFFzDEouSr/el18QwXEMRlOj9UY5nCeA8UN3a/82rUWRBeyBw==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dashify@2.0.0:
resolution: {integrity: sha512-hpA5C/YrPjucXypHPPc0oJ1l9Hf6wWbiOL7Ik42cxnsUOhWiCB/fylKbKqqJalW9FgkNQCw16YO8uW9Hs0Iy1A==}
@@ -3145,8 +3138,8 @@ packages:
resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
engines: {node: '>= 0.4'}
- dayjs@1.11.18:
- resolution: {integrity: sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==}
+ dayjs@1.11.19:
+ resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==}
debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
@@ -3173,18 +3166,12 @@ packages:
supports-color:
optional: true
- decode-formdata@0.9.0:
- resolution: {integrity: sha512-q5uwOjR3Um5YD+ZWPOF/1sGHVW9A5rCrRwITQChRXlmPkxDFBqCm4jNTIVdGHNH9OnR+V9MoZVgRhsFb+ARbUw==}
-
decode-uri-component@0.2.2:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
engines: {node: '>=0.10'}
- dedent@0.7.0:
- resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
-
- dedent@1.7.0:
- resolution: {integrity: sha512-HGFtf8yhuhGhqO07SV79tRp+br4MnbdjeVxotpn1QBl30pcLLCQjX5b2295ll0fv8RKDKsmWYrl05usHM9CewQ==}
+ dedent@1.7.2:
+ resolution: {integrity: sha512-WzMx3mW98SN+zn3hgemf4OzdmyNhhhKz5Ay0pUfQiMQ3e1g+xmTJWp/pKdwKVXhdSkAEGIIzqeuWrL3mV/AXbA==}
peerDependencies:
babel-plugin-macros: ^3.1.0
peerDependenciesMeta:
@@ -3195,31 +3182,19 @@ packages:
resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
engines: {node: '>=6'}
- deep-equal@1.1.2:
- resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==}
- engines: {node: '>= 0.4'}
-
- deep-extend@0.6.0:
- resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
- engines: {node: '>=4.0.0'}
-
deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- deepmerge@4.2.2:
- resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
- engines: {node: '>=0.10.0'}
-
deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
- default-browser-id@5.0.0:
- resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
+ default-browser-id@5.0.1:
+ resolution: {integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==}
engines: {node: '>=18'}
- default-browser@5.2.1:
- resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
+ default-browser@5.5.0:
+ resolution: {integrity: sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==}
engines: {node: '>=18'}
defaults@1.0.4:
@@ -3244,13 +3219,6 @@ packages:
defu@6.1.4:
resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
- del@6.1.1:
- resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
- engines: {node: '>=10'}
-
- denodeify@1.2.1:
- resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==}
-
depd@2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
@@ -3266,19 +3234,15 @@ packages:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- detect-libc@2.1.1:
- resolution: {integrity: sha512-ecqj/sy1jcK1uWrwpR67UhYrIFQ+5WlGxth34WquCbamhFA6hkkwiu37o6J5xCHdo1oixJRfVRw+ywV+Hq/0Aw==}
+ detect-libc@2.1.2:
+ resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
engines: {node: '>=8'}
detect-node-es@1.1.0:
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
- devalue@5.3.2:
- resolution: {integrity: sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==}
-
- dir-glob@3.0.1:
- resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
- engines: {node: '>=8'}
+ dnssd-advertise@1.1.3:
+ resolution: {integrity: sha512-XENsHi3MBzWOCAXif3yZvU1Ah0l+nhJj1sjWL6TnOAYKvGiFhbTx32xHN7+wLMLUOCj7Nr0evADWG4R8JtqCDA==}
doctrine@2.1.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
@@ -3310,45 +3274,35 @@ packages:
dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
- dotenv-cli@10.0.0:
- resolution: {integrity: sha512-lnOnttzfrzkRx2echxJHQRB6vOAMSCzzZg79IxpC00tU42wZPuZkQxNNrrwVAxaQZIIh001l4PxVlCrBxngBzA==}
+ dotenv-cli@11.0.0:
+ resolution: {integrity: sha512-r5pA8idbk7GFWuHEU7trSTflWcdBpQEK+Aw17UrSHjS6CReuhrrPcyC3zcQBPQvhArRHnBo/h6eLH1fkCvNlww==}
hasBin: true
- dotenv-expand@11.0.7:
- resolution: {integrity: sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==}
- engines: {node: '>=12'}
-
- dotenv@16.4.7:
- resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
+ dotenv-expand@12.0.3:
+ resolution: {integrity: sha512-uc47g4b+4k/M/SeaW1y4OApx+mtLWl92l5LMPP0GNXctZqELk+YGgOPIIC5elYmUH4OuoK3JLhuRUYegeySiFA==}
engines: {node: '>=12'}
dotenv@16.6.1:
resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==}
engines: {node: '>=12'}
- dotenv@17.2.2:
- resolution: {integrity: sha512-Sf2LSQP+bOlhKWWyhFsn0UsfdK/kCWRv1iuA2gXAwt3dyNabr6QSj00I2V10pidqz69soatm9ZwZvpQMTIOd5Q==}
+ dotenv@17.3.1:
+ resolution: {integrity: sha512-IO8C/dzEb6O3F9/twg6ZLXz164a2fhTnEWb95H23Dm4OuN+92NmEAlTrupP9VW6Jm3sO26tQlqyvyi4CsnY9GA==}
engines: {node: '>=12'}
dunder-proto@1.0.1:
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
engines: {node: '>= 0.4'}
- eastasianwidth@0.2.0:
- resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
-
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.234:
- resolution: {integrity: sha512-RXfEp2x+VRYn8jbKfQlRImzoJU01kyDvVPBmG39eU2iuRVhuS6vQNocB8J0/8GrIMLnPzgz4eW6WiRnJkTuNWg==}
+ electron-to-chromium@1.5.313:
+ resolution: {integrity: sha512-QBMrTWEf00GXZmJyx2lbYD45jpI3TUFnNIzJ5BBc8piGUDwMPa1GV6HJWTZVvY/eiN3fSopl7NRbgGp9sZ9LTA==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- emoji-regex@9.2.2:
- resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
-
encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
@@ -3357,25 +3311,22 @@ packages:
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
engines: {node: '>= 0.8'}
- end-of-stream@1.4.5:
- resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
+ enhanced-resolve@5.20.0:
+ resolution: {integrity: sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==}
+ engines: {node: '>=10.13.0'}
entities@4.5.0:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
- env-editor@0.4.2:
- resolution: {integrity: sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==}
- engines: {node: '>=8'}
-
error-ex@1.3.4:
resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}
error-stack-parser@2.1.4:
resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
- es-abstract@1.24.0:
- resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==}
+ es-abstract@1.24.1:
+ resolution: {integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==}
engines: {node: '>= 0.4'}
es-define-property@1.0.1:
@@ -3386,8 +3337,8 @@ packages:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es-iterator-helpers@1.2.1:
- resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==}
+ es-iterator-helpers@1.3.0:
+ resolution: {integrity: sha512-04cg8iJFDOxWcYlu0GFFWgs7vtaEPCmr5w1nrj9V3z3axu/48HCMwK6VMp45Zh3ZB+xLP1ifbJfrq86+1ypKKQ==}
engines: {node: '>= 0.4'}
es-object-atoms@1.1.1:
@@ -3406,16 +3357,16 @@ packages:
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
engines: {node: '>= 0.4'}
- es-toolkit@1.40.0:
- resolution: {integrity: sha512-8o6w0KFmU0CiIl0/Q/BCEOabF2IJaELM1T2PWj6e8KqzHv1gdx+7JtFnDwOx1kJH/isJ5NwlDG1nCr1HrRF94Q==}
+ es-toolkit@1.45.1:
+ resolution: {integrity: sha512-/jhoOj/Fx+A+IIyDNOvO3TItGmlMKhtX8ISAHKE90c4b/k1tqaqEZ+uUqfpU8DMnW5cgNJv606zS55jGvza0Xw==}
esbuild-register@3.6.0:
resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
peerDependencies:
esbuild: '>=0.12 <1'
- esbuild@0.25.10:
- resolution: {integrity: sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==}
+ esbuild@0.27.3:
+ resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==}
engines: {node: '>=18'}
hasBin: true
@@ -3438,12 +3389,8 @@ packages:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- escape-string-regexp@5.0.0:
- resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
- engines: {node: '>=12'}
-
- eslint-config-expo@10.0.0:
- resolution: {integrity: sha512-/XC/DvniUWTzU7Ypb/cLDhDD4DXqEio4lug1ObD/oQ9Hcx3OVOR8Mkp4u6U4iGoZSJyIQmIk3WVHe/P1NYUXKw==}
+ eslint-config-expo@55.0.0:
+ resolution: {integrity: sha512-YvhaKrp1g7pR/qjdI12E5nw9y0DJZWgYr815vyW8wskGLsFvxATY3mtKL8zm3ZYzWj3Bvc37tRIS661TEkrv9A==}
peerDependencies:
eslint: '>=8.10'
@@ -3500,35 +3447,19 @@ packages:
'@typescript-eslint/parser':
optional: true
- eslint-plugin-react-debug@1.53.1:
- resolution: {integrity: sha512-WNOiQ6jhodJE88VjBU/IVDM+2Zr9gKHlBFDUSA3fQ0dMB5RiBVj5wMtxbxRuipK/GqNJbteqHcZoYEod7nfddg==}
- engines: {node: '>=18.18.0'}
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: ^4.9.5 || ^5.3.3
- peerDependenciesMeta:
- typescript:
- optional: true
-
- eslint-plugin-react-dom@1.53.1:
- resolution: {integrity: sha512-UYrWJ2cS4HpJ1A5XBuf1HfMpPoLdfGil+27g/ldXfGemb4IXqlxHt4ANLyC8l2CWcE3SXGJW7mTslL34MG0qTQ==}
- engines: {node: '>=18.18.0'}
+ eslint-plugin-react-dom@2.13.0:
+ resolution: {integrity: sha512-+2IZzQ1WEFYOWatW+xvNUqmZn55YBCufzKA7hX3XQ/8eu85Mp4vnlOyNvdVHEOGhUnGuC6+9+zLK+IlEHKdKLQ==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: ^4.9.5 || ^5.3.3
- peerDependenciesMeta:
- typescript:
- optional: true
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
- eslint-plugin-react-hooks-extra@1.53.1:
- resolution: {integrity: sha512-fshTnMWNn9NjFLIuy7HzkRgGK29vKv4ZBO9UMr+kltVAfKLMeXXP6021qVKk66i/XhQjbktiS+vQsu1Rd3ZKvg==}
- engines: {node: '>=18.18.0'}
+ eslint-plugin-react-hooks-extra@2.13.0:
+ resolution: {integrity: sha512-qIbha1nzuyhXM9SbEfrcGVqmyvQu7GAOB2sy9Y4Qo5S8nCqw4fSBxq+8lSce5Tk5Y7XzIkgHOhNyXEvUHRWFMQ==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: ^4.9.5 || ^5.3.3
- peerDependenciesMeta:
- typescript:
- optional: true
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
eslint-plugin-react-hooks@5.2.0:
resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==}
@@ -3536,38 +3467,33 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
- eslint-plugin-react-naming-convention@1.53.1:
- resolution: {integrity: sha512-rvZ/B/CSVF8d34HQ4qIt90LRuxotVx+KUf3i1OMXAyhsagEFMRe4gAlPJiRufZ+h9lnuu279bEdd+NINsXOteA==}
- engines: {node: '>=18.18.0'}
+ eslint-plugin-react-naming-convention@2.13.0:
+ resolution: {integrity: sha512-uSd25JzSg2R4p81s3Wqck0AdwRlO9Yc+cZqTEXv7vW8exGGAM3mWnF6hgrgdqVJqBEGJIbS/Vx1r5BdKcY/MHA==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: ^4.9.5 || ^5.3.3
- peerDependenciesMeta:
- typescript:
- optional: true
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
- eslint-plugin-react-web-api@1.53.1:
- resolution: {integrity: sha512-INVZ3Cbl9/b+sizyb43ChzEPXXYuDsBGU9BIg7OVTNPyDPloCXdI+dQFAcSlDocZhPrLxhPV3eT6+gXbygzYXg==}
- engines: {node: '>=18.18.0'}
+ eslint-plugin-react-rsc@2.13.0:
+ resolution: {integrity: sha512-RaftgITDLQm1zIgYyvR51sBdy4FlVaXFts5VISBaKbSUB0oqXyzOPxMHasfr9BCSjPLKus9zYe+G/Hr6rjFLXQ==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: ^4.9.5 || ^5.3.3
- peerDependenciesMeta:
- typescript:
- optional: true
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
- eslint-plugin-react-x@1.53.1:
- resolution: {integrity: sha512-MwMNnVwiPem0U6SlejDF/ddA4h/lmP6imL1RDZ2m3pUBrcdcOwOx0gyiRVTA3ENnhRlWfHljHf5y7m8qDSxMEg==}
- engines: {node: '>=18.18.0'}
+ eslint-plugin-react-web-api@2.13.0:
+ resolution: {integrity: sha512-nmJbzIAte7PeAkp22CwcKEASkKi49MshSdiDGO1XuN3f4N4/8sBfDcWbQuLPde6JiuzDT/0+l7Gi8wwTHtR1kg==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- ts-api-utils: ^2.1.0
- typescript: ^4.9.5 || ^5.3.3
- peerDependenciesMeta:
- ts-api-utils:
- optional: true
- typescript:
- optional: true
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
+
+ eslint-plugin-react-x@2.13.0:
+ resolution: {integrity: sha512-cMNX0+ws/fWTgVxn52qAQbaFF2rqvaDAtjrPUzY6XOzPjY0rJQdR2tSlWJttz43r2yBfqu+LGvHlGpWL2wfpTQ==}
+ engines: {node: '>=20.19.0'}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
eslint-plugin-react@7.37.5:
resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==}
@@ -3580,20 +3506,16 @@ packages:
peerDependencies:
eslint: '>=5.0.0'
- eslint-plugin-sonarjs@3.0.5:
- resolution: {integrity: sha512-dI62Ff3zMezUToi161hs2i1HX1ie8Ia2hO0jtNBfdgRBicAG4ydy2WPt0rMTrAe3ZrlqhpAO3w1jcQEdneYoFA==}
+ eslint-plugin-sonarjs@4.0.2:
+ resolution: {integrity: sha512-BTcT1zr1iTbmJtVlcesISwnXzh+9uhf9LEOr+RRNf4kR8xA0HQTPft4oiyOCzCOGKkpSJxjR8ZYF6H7VPyplyw==}
peerDependencies:
- eslint: ^8.0.0 || ^9.0.0
+ eslint: ^8.0.0 || ^9.0.0 || ^10.0.0
- eslint-plugin-unicorn@61.0.2:
- resolution: {integrity: sha512-zLihukvneYT7f74GNbVJXfWIiNQmkc/a9vYBTE4qPkQZswolWNdu+Wsp9sIXno1JOzdn6OUwLPd19ekXVkahRA==}
+ eslint-plugin-unicorn@63.0.0:
+ resolution: {integrity: sha512-Iqecl9118uQEXYh7adylgEmGfkn5es3/mlQTLLkd4pXkIk9CTGrAbeUux+YljSa2ohXCBmQQ0+Ej1kZaFgcfkA==}
engines: {node: ^20.10.0 || >=21.0.0}
peerDependencies:
- eslint: '>=9.29.0'
-
- eslint-scope@7.2.2:
- resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ eslint: '>=9.38.0'
eslint-scope@8.4.0:
resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
@@ -3607,14 +3529,12 @@ packages:
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@8.57.0:
- resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
- hasBin: true
+ eslint-visitor-keys@5.0.1:
+ resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- eslint@9.36.0:
- resolution: {integrity: sha512-hB4FIzXovouYzwzECDcUkJ4OcfOEkXTv2zRY6B9bkwjx/cprAq0uvm1nl7zvQ0/TsUk0zQiN4uPfJpB9m+rPMQ==}
+ eslint@9.39.4:
+ resolution: {integrity: sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -3627,17 +3547,13 @@ packages:
resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- espree@9.6.1:
- resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
- esquery@1.6.0:
- resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
+ esquery@1.7.0:
+ resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
engines: {node: '>=0.10'}
esrecurse@4.3.0:
@@ -3648,9 +3564,6 @@ packages:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
- estree-walker@3.0.3:
- resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
-
esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
@@ -3663,64 +3576,64 @@ packages:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
- exec-async@2.2.0:
- resolution: {integrity: sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==}
-
- execa@4.1.0:
- resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==}
- engines: {node: '>=10'}
-
- expo-application@7.0.7:
- resolution: {integrity: sha512-Jt1/qqnoDUbZ+bK91+dHaZ1vrPDtRBOltRa681EeedkisqguuEeUx4UHqwVyDK2oHWsK6lO3ojetoA4h8OmNcg==}
+ expo-application@55.0.9:
+ resolution: {integrity: sha512-jXTaLKdW4cvGSUjF2UQed9ao4P/7TsEo/To7TjxM+jNa74xCSUCBSTxdQftm6hZWRzXG8KT7rSoQDEL51neh1w==}
peerDependencies:
expo: '*'
- expo-asset@12.0.9:
- resolution: {integrity: sha512-vrdRoyhGhBmd0nJcssTSk1Ypx3Mbn/eXaaBCQVkL0MJ8IOZpAObAjfD5CTy8+8RofcHEQdh3wwZVCs7crvfOeg==}
+ expo-asset@55.0.8:
+ resolution: {integrity: sha512-yEz2svDX67R0yiW2skx6dJmcE0q7sj9ECpGMcxBExMCbctc+nMoZCnjUuhzPl5vhClUsO5HFFXS5vIGmf1bgHQ==}
peerDependencies:
expo: '*'
react: '*'
react-native: '*'
- expo-constants@18.0.9:
- resolution: {integrity: sha512-sqoXHAOGDcr+M9NlXzj1tGoZyd3zxYDy215W6E0Z0n8fgBaqce9FAYQE2bu5X4G629AYig5go7U6sQz7Pjcm8A==}
+ expo-constants@55.0.7:
+ resolution: {integrity: sha512-kdcO4TsQRRqt0USvjaY5vgQMO9H52K3kBZ/ejC7F6rz70mv08GoowrZ1CYOr5O4JpPDRlIpQfZJUucaS/c+KWQ==}
peerDependencies:
expo: '*'
react-native: '*'
- expo-crypto@15.0.7:
- resolution: {integrity: sha512-FUo41TwwGT2e5rA45PsjezI868Ch3M6wbCZsmqTWdF/hr+HyPcrp1L//dsh/hsrsyrQdpY/U96Lu71/wXePJeg==}
+ expo-crypto@55.0.9:
+ resolution: {integrity: sha512-hYiZYRPMXGQXSgKjp/m84l/6Uq8mTeMts1C7bFZXN5M5TUOiRhrLeqMSYZFXrAlkFpXeO46V+Ts1CFauMBLuCw==}
peerDependencies:
expo: '*'
- expo-device@8.0.9:
- resolution: {integrity: sha512-XqRpaljDNAYZGZzMpC+b9KZfzfydtkwx3pJAp6ODDH+O/5wjAw+mLc5wQMGJCx8/aqVmMsAokec7iebxDPFZDA==}
+ expo-device@55.0.9:
+ resolution: {integrity: sha512-BzeuL7lwg2jh/tU+HTJ5dxygB1tpfgThaguPPH86K0ujcj/4RBkC27i/i7nhSoWvL1pQIgUqL0L7WTtjcS9t/w==}
peerDependencies:
expo: '*'
- expo-eas-client@1.0.7:
- resolution: {integrity: sha512-Q/b1X0fM+3beqqvffok14pjxMF600NxopdSr9WJY61fF4xllcVnALS0kEudffp9ihMOfcb5xWYqzKj6jMqYDIw==}
+ expo-eas-client@55.0.2:
+ resolution: {integrity: sha512-fjOgSXaZFBK2Xmzn/uw0DTF3BsYv97JEa4PYXXqVCEvNJPwJB1cV1eX6Xyq6iKGIhMPH9k62sOc+oUdt094WCw==}
+
+ expo-file-system@55.0.10:
+ resolution: {integrity: sha512-ysFdVdUgtfj2ApY0Cn+pBg+yK4xp+SNwcaH8j2B91JJQ4OXJmnyCSmrNZYz7J4mdYVuv2GzxIP+N/IGlHQG3Yw==}
+ peerDependencies:
+ expo: '*'
+ react-native: '*'
- expo-file-system@19.0.17:
- resolution: {integrity: sha512-WwaS01SUFrxBnExn87pg0sCTJjZpf2KAOzfImG0o8yhkU7fbYpihpl/oocXBEsNbj58a8hVt1Y4CVV5c1tzu/g==}
+ expo-font@55.0.4:
+ resolution: {integrity: sha512-ZKeGTFffPygvY5dM/9ATM2p7QDkhsaHopH7wFAWgP2lKzqUMS9B/RxCvw5CaObr9Ro7x9YptyeRKX2HmgmMfrg==}
peerDependencies:
expo: '*'
+ react: '*'
react-native: '*'
- expo-font@14.0.9:
- resolution: {integrity: sha512-xCoQbR/36qqB6tew/LQ6GWICpaBmHLhg/Loix5Rku/0ZtNaXMJv08M9o1AcrdiGTn/Xf/BnLu6DgS45cWQEHZg==}
+ expo-glass-effect@55.0.8:
+ resolution: {integrity: sha512-IvUjHb/4t6r2H/LXDjcQ4uDoHrmO2cLOvEb9leLavQ4HX5+P4LRtQrMDMlkWAn5Wo5DkLcG8+1CrQU2nqgogTA==}
peerDependencies:
expo: '*'
react: '*'
react-native: '*'
- expo-haptics@15.0.7:
- resolution: {integrity: sha512-7flWsYPrwjJxZ8x82RiJtzsnk1Xp9ahnbd9PhCy3NnsemyMApoWIEUr4waPqFr80DtiLZfhD9VMLL1CKa8AImQ==}
+ expo-haptics@55.0.8:
+ resolution: {integrity: sha512-yVR6EsQwl1WuhFITc0PpfI/7dsBdjK/F2YA8xB80UUW9iTa+Tqz21FpH4n/vtbargpzFxkhl5WNYMa419+QWFQ==}
peerDependencies:
expo: '*'
- expo-image@3.0.10:
- resolution: {integrity: sha512-i4qNCEf9Ur7vDqdfDdFfWnNCAF2efDTdahuDy9iELPS2nzMKBLeeGA2KxYEPuRylGCS96Rwm+SOZJu6INc2ADQ==}
+ expo-image@55.0.6:
+ resolution: {integrity: sha512-TKuu0uBmgTZlhd91Glv+V4vSBMlfl0bdQxfl97oKKZUo3OBC13l3eLik7v3VNLJN7PZbiwOAiXkZkqSOBx/Xsw==}
peerDependencies:
expo: '*'
react: '*'
@@ -3730,51 +3643,58 @@ packages:
react-native-web:
optional: true
- expo-json-utils@0.15.0:
- resolution: {integrity: sha512-duRT6oGl80IDzH2LD2yEFWNwGIC2WkozsB6HF3cDYNoNNdUvFk6uN3YiwsTsqVM/D0z6LEAQ01/SlYvN+Fw0JQ==}
+ expo-json-utils@55.0.0:
+ resolution: {integrity: sha512-aupt/o5PDAb8dXDCb0JcRdkqnTLxe/F+La7jrnyd/sXlYFfRgBJLFOa1SqVFXm1E/Xam1SE/yw6eAb+DGY7Arg==}
- expo-keep-awake@15.0.7:
- resolution: {integrity: sha512-CgBNcWVPnrIVII5G54QDqoE125l+zmqR4HR8q+MQaCfHet+dYpS5vX5zii/RMayzGN4jPgA4XYIQ28ePKFjHoA==}
+ expo-keep-awake@55.0.4:
+ resolution: {integrity: sha512-vwfdMtMS5Fxaon8gC0AiE70SpxTsHJ+rjeoVJl8kdfdbxczF7OIaVmfjFJ5Gfigd/WZiLqxhfZk34VAkXF4PNg==}
peerDependencies:
expo: '*'
react: '*'
- expo-linking@8.0.8:
- resolution: {integrity: sha512-MyeMcbFDKhXh4sDD1EHwd0uxFQNAc6VCrwBkNvvvufUsTYFq3glTA9Y8a+x78CPpjNqwNAamu74yIaIz7IEJyg==}
+ expo-linking@55.0.7:
+ resolution: {integrity: sha512-MiGCedere1vzQTEi2aGrkzd7eh/rPSz4w6F3GMBuAJzYl+/0VhIuyhozpEGrueyDIXWfzaUVOcn3SfxVi+kwQQ==}
peerDependencies:
react: '*'
react-native: '*'
- expo-localization@17.0.7:
- resolution: {integrity: sha512-ACg1B0tJLNa+f8mZfAaNrMyNzrrzHAARVH1sHHvh+LolKdQpgSKX69Uroz1Llv4C71furpwBklVStbNcEwVVVA==}
+ expo-localization@55.0.8:
+ resolution: {integrity: sha512-uFmpTsoDT7JE5Nwgt0EQ5gBvFVo7/u458SlY6V9Ep9wY/WPucL0o00VpXoFULaMtKHquKBgVUdHwk6E+JFz4dg==}
peerDependencies:
expo: '*'
react: '*'
- expo-manifests@1.0.8:
- resolution: {integrity: sha512-nA5PwU2uiUd+2nkDWf9e71AuFAtbrb330g/ecvuu52bmaXtN8J8oiilc9BDvAX0gg2fbtOaZdEdjBYopt1jdlQ==}
+ expo-manifests@55.0.9:
+ resolution: {integrity: sha512-i82j3X4hbxYDe6kxUw4u8WfvbvTj2w+9BD9WKuL0mFRy+MjvdzdyaqAjEViWCKo/alquP/hTApDTQBb3UmWhkg==}
peerDependencies:
expo: '*'
- expo-modules-autolinking@3.0.16:
- resolution: {integrity: sha512-Ma8jLccB4Zj/ZAnCtxhTgiNnXSp1FNZnsyeGumsUQM08oDv7Mej3ShTh0VCHk+YDS0y39iKmooKtA5Eg9OLNyg==}
+ expo-modules-autolinking@55.0.9:
+ resolution: {integrity: sha512-OXIrxSYKlT/1Av1AMyUWeSTW1GChGofWV14sB73o5eFbfuz6ocv18fnKx+Ji67ZC7a0RztDctcZTuEQK84S4iw==}
hasBin: true
- expo-modules-core@3.0.22:
- resolution: {integrity: sha512-FqG5oelITFTLcIfGwoJP8Qsk65be/eiEjz354NdAurnhFARHAVYOOIsUehArvm75ISdZOIZEaTSjCudmkA3kKg==}
+ expo-modules-core@55.0.15:
+ resolution: {integrity: sha512-MAGz1SYSVgQbwVeUysWgPtLh8ozbBwORatXoA4w0NZqZBZzEyBgUQNhuwaroaIi9W8Ir3wy1McmZcDYDJNGmVw==}
peerDependencies:
react: '*'
react-native: '*'
- expo-router@6.0.13:
- resolution: {integrity: sha512-ngvdEah2+/Xf3/2SSrEuaW9qawUYlkh3NEpw0ZSsjUjgliKTI2rtw1H+dNnIsZEcvnGe/b8UvQHai60KnhAnJw==}
+ expo-network@55.0.8:
+ resolution: {integrity: sha512-IXxwFq5B2OImc6BvHHGN9QOCYfMk3wPnbBL+NiyBFqy+g2LsdnGzWLA2HXD8+1Ngdvi7PwckQO+q6WKHLRx4Vw==}
+ peerDependencies:
+ expo: '*'
+ react: '*'
+
+ expo-router@55.0.5:
+ resolution: {integrity: sha512-PzN545wLtznKuVQmJXnAKB/JFjSJJIPHatsjJe4Cl6bRADr/MbWv5d2fqOpqFD/C0ZGCRHY1uBalq7mb5IQ3ZQ==}
peerDependencies:
- '@expo/metro-runtime': ^6.1.2
- '@react-navigation/drawer': ^7.5.0
- '@testing-library/react-native': '>= 12.0.0'
+ '@expo/log-box': 55.0.7
+ '@expo/metro-runtime': ^55.0.6
+ '@react-navigation/drawer': ^7.7.2
+ '@testing-library/react-native': '>= 13.2.0'
expo: '*'
- expo-constants: ^18.0.9
- expo-linking: ^8.0.8
+ expo-constants: ^55.0.7
+ expo-linking: ^55.0.7
react: '*'
react-dom: '*'
react-native: '*'
@@ -3783,7 +3703,7 @@ packages:
react-native-safe-area-context: '>= 5.4.0'
react-native-screens: '*'
react-native-web: '*'
- react-server-dom-webpack: '>= 19.0.0'
+ react-server-dom-webpack: ~19.0.4 || ~19.1.5 || ~19.2.4
peerDependenciesMeta:
'@react-navigation/drawer':
optional: true
@@ -3800,37 +3720,39 @@ packages:
react-server-dom-webpack:
optional: true
- expo-secure-store@15.0.7:
- resolution: {integrity: sha512-9q7+G1Zxr5P6J5NRIlm86KulvmYwc6UnQlYPjQLDu1drDnerz6AT6l884dPu29HgtDTn4rR0heYeeGFhMKM7/Q==}
+ expo-secure-store@55.0.8:
+ resolution: {integrity: sha512-8w9tQe8U6oRo5YIzqCqVhRrOnfoODNDoitBtLXEx+zS6WLUnkRq5kH7ViJuOgiM7PzLr9pvAliRiDOKyvFbTuQ==}
peerDependencies:
expo: '*'
- expo-server@1.0.2:
- resolution: {integrity: sha512-QlQLjFuwgCiBc+Qq0IyBBHiZK1RS0NJSsKVB5iECMJrR04q7PhkaF7dON0fhvo00COy4fT9rJ5brrJDpFro/gA==}
+ expo-server@55.0.6:
+ resolution: {integrity: sha512-xI72FTm469FfuuBL2R5aNtthgH+GR7ygOpsx/KcPS0K8AZaZd7VjtEExbzn9/qyyYkWW3T+3dAmCDKOMX8gdmQ==}
engines: {node: '>=20.16.0'}
- expo-splash-screen@31.0.10:
- resolution: {integrity: sha512-i6g9IK798mae4yvflstQ1HkgahIJ6exzTCTw4vEdxV0J2SwiW3Tj+CwRjf0te7Zsb+7dDQhBTmGZwdv00VER2A==}
+ expo-splash-screen@55.0.10:
+ resolution: {integrity: sha512-RN5qqrxudxFlRIjLFr/Ifmt+mUCLRc0gs66PekP6flzNS/JYEuoCbwJ+NmUwwJtPA+vyy60DYiky0QmS98ydmQ==}
peerDependencies:
expo: '*'
- expo-status-bar@3.0.8:
- resolution: {integrity: sha512-L248XKPhum7tvREoS1VfE0H6dPCaGtoUWzRsUv7hGKdiB4cus33Rc0sxkWkoQ77wE8stlnUlL5lvmT0oqZ3ZBw==}
+ expo-status-bar@55.0.4:
+ resolution: {integrity: sha512-BPDjUXKqv1F9j2YNGLRZfkBEZXIEEpqj+t81y4c+4fdSN3Pos7goIHXgcl2ozbKQLgKRZQyNZQtbUgh5UjHYUQ==}
peerDependencies:
react: '*'
react-native: '*'
- expo-structured-headers@5.0.0:
- resolution: {integrity: sha512-RmrBtnSphk5REmZGV+lcdgdpxyzio5rJw8CXviHE6qH5pKQQ83fhMEcigvrkBdsn2Efw2EODp4Yxl1/fqMvOZw==}
+ expo-structured-headers@55.0.0:
+ resolution: {integrity: sha512-udaNvuWb45/Sryq9FLC/blwgOChhznuqlTrUzVjC0T83pMdcmscKJX23lnNDW6hCec8p81Y3z1DIFwIyk0g/PQ==}
- expo-symbols@1.0.7:
- resolution: {integrity: sha512-ZqFUeTXbwO6BrE00n37wTXYfJmsjFrfB446jeB9k9w7aA8a6eugNUIzNsUIUfbFWoOiY4wrGmpLSLPBwk4PH+g==}
+ expo-symbols@55.0.5:
+ resolution: {integrity: sha512-W/QYRvnYVes947ZYOHtuKL8Gobs7BUjeu9oknzbo4jGnou7Ks6bj1CwdT0ZWNBgaTopbS4/POXumJIkW4cTPSQ==}
peerDependencies:
expo: '*'
+ expo-font: '*'
+ react: '*'
react-native: '*'
- expo-system-ui@6.0.7:
- resolution: {integrity: sha512-NT+/r/BOg08lFI9SZO2WFi9X1ZmawkVStknioWzQq6Mt4KinoMS6yl3eLbyOLM3LoptN13Ywfo4W5KHA6TV9Ow==}
+ expo-system-ui@55.0.9:
+ resolution: {integrity: sha512-8ygP1B0uFAFI8s7eHY2IcGnE83GhFeZYwHBr/fQ4dSXnc7iVT9zp2PvyTyiDiibQ69dBG+fauMQ4KlPcOO51kQ==}
peerDependencies:
expo: '*'
react-native: '*'
@@ -3839,27 +3761,27 @@ packages:
react-native-web:
optional: true
- expo-updates-interface@2.0.0:
- resolution: {integrity: sha512-pTzAIufEZdVPKql6iMi5ylVSPqV1qbEopz9G6TSECQmnNde2nwq42PxdFBaUEd8IZJ/fdJLQnOT3m6+XJ5s7jg==}
+ expo-updates-interface@55.1.3:
+ resolution: {integrity: sha512-UVVIiZqymQZJL+o/jh65kXOI97xdkbqBJJM0LMabaPMNLFnc6/WvOMOzmQs7SPyKb8+0PeBaFd7tj5DzF6JeQg==}
peerDependencies:
expo: '*'
- expo-updates@29.0.12:
- resolution: {integrity: sha512-gE3bU6qi5g8Y1TtBzoeHac3utR0i1Wj1ufThh+zpDyFjFbegFm+gwvNLVCBagZUClYKk/4CKxh5ytnwZmPzH+g==}
+ expo-updates@55.0.13:
+ resolution: {integrity: sha512-GuOhcyLqeZxUB2cX9R2prInmUSnm3NUJ3l5ZDwU6TrGCtHm9JsZyYqG+3+YwVLSKzwj57uPo6U71Gl7xBNaECg==}
hasBin: true
peerDependencies:
expo: '*'
react: '*'
react-native: '*'
- expo-web-browser@15.0.8:
- resolution: {integrity: sha512-gn+Y2ABQr6/EvFN/XSjTuzwsSPLU1vNVVV0wNe4xXkcSnYGdHxt9kHxs9uLfoCyPByoaGF4VxzAhHIMI7yDcSg==}
+ expo-web-browser@55.0.9:
+ resolution: {integrity: sha512-PvAVsG401QmZabtTsYh1cYcpPiqvBPs8oiOkSrp0jIXnneiM466HxmeNtvo+fNxqJ2nwOBz9qLPiWRO91VBfsQ==}
peerDependencies:
expo: '*'
react-native: '*'
- expo@54.0.15:
- resolution: {integrity: sha512-d4OLUz/9nC+Aw00zamHANh5TZB4/YVYvSmKJAvCfLNxOY2AJeTFAvk0mU5HwICeHQBp6zHtz13DDCiMbcyVQWQ==}
+ expo@55.0.6:
+ resolution: {integrity: sha512-gaF8bh5beWmrptz3d4Gr138CiPoLJtzjNbqNSOQ8kdQm3wMW8lJGT1dsY5NPJTZ7MNJBTN+pcRwshr4BMK4OiA==}
hasBin: true
peerDependencies:
'@expo/dom-webview': '*'
@@ -3875,30 +3797,25 @@ packages:
react-native-webview:
optional: true
- exponential-backoff@3.1.2:
- resolution: {integrity: sha512-8QxYTVXUkuy7fIIoitQkPwGonB8F3Zj8eEO8Sqg9Zv/bkI7RJAzowee4gr81Hak/dUTpA2Z7VfQgoijjPNlUZA==}
-
- exsolve@1.0.7:
- resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==}
+ exponential-backoff@3.1.3:
+ resolution: {integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==}
- fast-deep-equal@2.0.1:
- resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==}
+ exsolve@1.0.8:
+ resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- fast-glob@3.3.3:
- resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
- engines: {node: '>=8.6.0'}
-
fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- fastq@1.19.1:
- resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
+ fb-dotslash@0.5.8:
+ resolution: {integrity: sha512-XHYLKk9J4BupDxi9bSEhkfss0m+Vr9ChTrjhf9l2iw3jB5C7BnY4GVPoMcqbrTutsKJso6yj2nAB6BI/F2oZaA==}
+ engines: {node: '>=20'}
+ hasBin: true
fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
@@ -3918,9 +3835,8 @@ packages:
picomatch:
optional: true
- file-entry-cache@6.0.1:
- resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
- engines: {node: ^10.12.0 || >=12.0.0}
+ fetch-nodeshim@0.4.9:
+ resolution: {integrity: sha512-XIQWlB2A4RZ7NebXWGxS0uDMdvRHkiUDTghBVJKFg9yEOd45w/PP8cZANuPf2H08W6Cor3+2n7Q6TTZgAS3Fkw==}
file-entry-cache@8.0.0:
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
@@ -3950,16 +3866,12 @@ packages:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
engines: {node: '>=10'}
- flat-cache@3.2.0:
- resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
- engines: {node: ^10.12.0 || >=12.0.0}
-
flat-cache@4.0.1:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
- flatted@3.3.3:
- resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
+ flatted@3.4.1:
+ resolution: {integrity: sha512-IxfVbRFVlV8V/yRaGzk0UVIcsKKHMSfYw66T/u4nTwlWteQePsxe//LjudR1AMX4tZW3WFCh3Zqa/sjlqpbURQ==}
flow-enums-runtime@0.0.6:
resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==}
@@ -3971,22 +3883,10 @@ packages:
resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
engines: {node: '>= 0.4'}
- foreground-child@3.3.1:
- resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
- engines: {node: '>=14'}
-
- freeport-async@2.0.0:
- resolution: {integrity: sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==}
- engines: {node: '>=8'}
-
fresh@0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
- fs-extra@10.1.0:
- resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
- engines: {node: '>=12'}
-
fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
@@ -4008,9 +3908,9 @@ packages:
functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
- fuse.js@7.1.0:
- resolution: {integrity: sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==}
- engines: {node: '>=10'}
+ generator-function@2.0.1:
+ resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
+ engines: {node: '>= 0.4'}
gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
@@ -4036,16 +3936,12 @@ packages:
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
engines: {node: '>= 0.4'}
- get-stream@5.2.0:
- resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
- engines: {node: '>=8'}
-
get-symbol-description@1.1.0:
resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
engines: {node: '>= 0.4'}
- get-tsconfig@4.10.1:
- resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==}
+ get-tsconfig@4.13.6:
+ resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==}
getenv@2.0.0:
resolution: {integrity: sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==}
@@ -4055,65 +3951,45 @@ packages:
resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==}
hasBin: true
- glob-parent@5.1.2:
- resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
- engines: {node: '>= 6'}
-
glob-parent@6.0.2:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
- glob@10.4.5:
- resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
- hasBin: true
+ glob@13.0.6:
+ resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==}
+ engines: {node: 18 || 20 || >=22}
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
- deprecated: Glob versions prior to v9 are no longer supported
+ deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
glob@8.1.0:
resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
engines: {node: '>=12'}
- deprecated: Glob versions prior to v9 are no longer supported
-
- global-dirs@0.1.1:
- resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==}
- engines: {node: '>=4'}
-
- globals@13.24.0:
- resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
- engines: {node: '>=8'}
+ deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
globals@14.0.0:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
- globals@16.4.0:
- resolution: {integrity: sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==}
+ globals@16.5.0:
+ resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==}
+ engines: {node: '>=18'}
+
+ globals@17.4.0:
+ resolution: {integrity: sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==}
engines: {node: '>=18'}
globalthis@1.0.4:
resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
engines: {node: '>= 0.4'}
- globby@11.1.0:
- resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
- engines: {node: '>=10'}
-
gopd@1.2.0:
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
engines: {node: '>= 0.4'}
- graceful-fs@4.2.11:
- resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
-
- graphemer@1.4.0:
- resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
-
- handlebars@4.7.8:
- resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
- engines: {node: '>=0.4.7'}
- hasBin: true
+ graceful-fs@4.2.11:
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
has-bigints@1.1.0:
resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
@@ -4146,30 +4022,27 @@ packages:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
- hermes-estree@0.23.1:
- resolution: {integrity: sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==}
-
- hermes-estree@0.28.1:
- resolution: {integrity: sha512-w3nxl/RGM7LBae0v8LH2o36+8VqwOZGv9rX1wyoWT6YaKZLqpJZ0YQ5P0LVr3tuRpf7vCx0iIG4i/VmBJejxTQ==}
-
- hermes-estree@0.29.1:
- resolution: {integrity: sha512-jl+x31n4/w+wEqm0I2r4CMimukLbLQEYpisys5oCre611CI5fc9TxhqkBBCJ1edDG4Kza0f7CgNz8xVMLZQOmQ==}
+ hermes-compiler@0.14.1:
+ resolution: {integrity: sha512-+RPPQlayoZ9n6/KXKt5SFILWXCGJ/LV5d24L5smXrvTDrPS4L6dSctPczXauuvzFP3QEJbD1YO7Z3Ra4a+4IhA==}
hermes-estree@0.32.0:
resolution: {integrity: sha512-KWn3BqnlDOl97Xe1Yviur6NbgIZ+IP+UVSpshlZWkq+EtoHg6/cwiDj/osP9PCEgFE15KBm1O55JRwbMEm5ejQ==}
- hermes-parser@0.23.1:
- resolution: {integrity: sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==}
+ hermes-estree@0.32.1:
+ resolution: {integrity: sha512-ne5hkuDxheNBAikDjqvCZCwihnz0vVu9YsBzAEO1puiyFR4F1+PAz/SiPHSsNTuOveCYGRMX8Xbx4LOubeC0Qg==}
- hermes-parser@0.28.1:
- resolution: {integrity: sha512-nf8o+hE8g7UJWParnccljHumE9Vlq8F7MqIdeahl+4x0tvCUJYRrT0L7h0MMg/X9YJmkNwsfbaNNrzPtFXOscg==}
-
- hermes-parser@0.29.1:
- resolution: {integrity: sha512-xBHWmUtRC5e/UL0tI7Ivt2riA/YBq9+SiYFU7C1oBa/j2jYGlIF9043oak1F47ihuDIxQ5nbsKueYJDRY02UgA==}
+ hermes-estree@0.33.3:
+ resolution: {integrity: sha512-6kzYZHCk8Fy1Uc+t3HGYyJn3OL4aeqKLTyina4UFtWl8I0kSL7OmKThaiX+Uh2f8nGw3mo4Ifxg0M5Zk3/Oeqg==}
hermes-parser@0.32.0:
resolution: {integrity: sha512-g4nBOWFpuiTqjR3LZdRxKUkij9iyveWeuks7INEsMX741f3r9xxrOe8TeQfUxtda0eXmiIFiMQzoeSQEno33Hw==}
+ hermes-parser@0.32.1:
+ resolution: {integrity: sha512-175dz634X/W5AiwrpLdoMl/MOb17poLHyIqgyExlE8D9zQ1OPnoORnGMB5ltRKnpvQzBjMYvT2rN/sHeIfZW5Q==}
+
+ hermes-parser@0.33.3:
+ resolution: {integrity: sha512-Yg3HgaG4CqgyowtYjX/FsnPAuZdHOqSMtnbpylbptsQ9nwwSKsy6uRWcGO5RK0EqiX12q8HvDWKgeAVajRO5DA==}
+
hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
@@ -4183,23 +4056,19 @@ packages:
html-parse-stringify@3.0.1:
resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==}
- http-errors@2.0.0:
- resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
+ http-errors@2.0.1:
+ resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
engines: {node: '>= 0.8'}
https-proxy-agent@7.0.6:
resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
engines: {node: '>= 14'}
- human-signals@1.1.1:
- resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==}
- engines: {node: '>=8.12.0'}
-
hyphenate-style-name@1.1.0:
resolution: {integrity: sha512-WDC/ui2VVRrz3jOVi+XtjqkDjiVjTtFaAGiW37k6b+ohyQ5wYDOGkvCZa8+H0nx3gyvv0+BST9xuOgIyGQ00gw==}
- i18next@25.5.3:
- resolution: {integrity: sha512-joFqorDeQ6YpIXni944upwnuHBf5IoPMuqAchGVeQLdWC2JOjxgM9V8UGLhNIIH/Q8QleRxIi0BSRQehSrDLcg==}
+ i18next@25.8.18:
+ resolution: {integrity: sha512-lzY5X83BiL5AP77+9DydbrqkQHFN9hUzWGjqjLpPcp5ZOzuu1aSoKaU3xbBLSjWx9dAzW431y+d+aogxOZaKRA==}
peerDependencies:
typescript: ^5
peerDependenciesMeta:
@@ -4222,10 +4091,6 @@ packages:
engines: {node: '>=16.x'}
hasBin: true
- import-fresh@2.0.0:
- resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
- engines: {node: '>=4'}
-
import-fresh@3.3.1:
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
engines: {node: '>=6'}
@@ -4249,9 +4114,6 @@ packages:
inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- ini@1.3.8:
- resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
-
inline-style-prefixer@7.0.1:
resolution: {integrity: sha512-lhYo5qNTQp3EvSSp3sRvXMbVQTLrvGV6DycRMJ5dm2BLMiJ30wpXKdDdgX+GmJZ5uQMucwRKHamXSst3Sj/Giw==}
@@ -4262,14 +4124,6 @@ packages:
invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
- is-absolute@1.0.0:
- resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==}
- engines: {node: '>=0.10.0'}
-
- is-arguments@1.2.0:
- resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==}
- engines: {node: '>= 0.4'}
-
is-array-buffer@3.0.5:
resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
engines: {node: '>= 0.4'}
@@ -4315,10 +4169,6 @@ packages:
resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
engines: {node: '>= 0.4'}
- is-directory@0.3.1:
- resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==}
- engines: {node: '>=0.10.0'}
-
is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
engines: {node: '>=8'}
@@ -4341,17 +4191,10 @@ packages:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- is-generator-function@1.1.0:
- resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
+ is-generator-function@1.1.2:
+ resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==}
engines: {node: '>= 0.4'}
- is-git-dirty@2.0.2:
- resolution: {integrity: sha512-U3YCo+GKR/rDsY7r0v/LBICbQwsx859tDQnAT+v0E/zCDeWbQ1TUt1FtyExeyik7VIJlYOLHCIifLdz71HDalg==}
- engines: {node: '>=10'}
-
- is-git-repository@2.0.0:
- resolution: {integrity: sha512-HDO50CG5suIAcmqG4F1buqVXEZRPn+RaXIn9pFKq/947FBo2bCRwK7ZluEVZOy99a4IQyqsjbKEpAiOXCccOHQ==}
-
is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
@@ -4362,6 +4205,10 @@ packages:
eslint: '*'
typescript: '>=4.7.4'
+ is-in-ssh@1.0.0:
+ resolution: {integrity: sha512-jYa6Q9rH90kR1vKB6NM7qqd1mge3Fx4Dhw5TVlK1MUBqhEOuCagrEHMevNuCcbECmXZ0ThXkRm+Ymr51HwEPAw==}
+ engines: {node: '>=20'}
+
is-inside-container@1.0.0:
resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
engines: {node: '>=14.16'}
@@ -4383,14 +4230,6 @@ packages:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- is-path-cwd@2.2.0:
- resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
- engines: {node: '>=6'}
-
- is-path-inside@3.0.3:
- resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
- engines: {node: '>=8'}
-
is-plain-obj@2.1.0:
resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
engines: {node: '>=8'}
@@ -4399,10 +4238,6 @@ packages:
resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
engines: {node: '>= 0.4'}
- is-relative@1.0.0:
- resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==}
- engines: {node: '>=0.10.0'}
-
is-set@2.0.3:
resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
engines: {node: '>= 0.4'}
@@ -4411,10 +4246,6 @@ packages:
resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
engines: {node: '>= 0.4'}
- is-stream@2.0.1:
- resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
- engines: {node: '>=8'}
-
is-string@1.1.1:
resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
engines: {node: '>= 0.4'}
@@ -4427,10 +4258,6 @@ packages:
resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
engines: {node: '>= 0.4'}
- is-unc-path@1.0.0:
- resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==}
- engines: {node: '>=0.10.0'}
-
is-weakmap@2.0.2:
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
engines: {node: '>= 0.4'}
@@ -4443,21 +4270,14 @@ packages:
resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
engines: {node: '>= 0.4'}
- is-windows@1.0.2:
- resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
- engines: {node: '>=0.10.0'}
-
is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
- is-wsl@3.1.0:
- resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
+ is-wsl@3.1.1:
+ resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==}
engines: {node: '>=16'}
- isarray@1.0.0:
- resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
-
isarray@2.0.5:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
@@ -4476,12 +4296,6 @@ packages:
resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==}
engines: {node: '>= 0.4'}
- jackspeak@3.4.3:
- resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
-
- javascript-natural-sort@0.7.1:
- resolution: {integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==}
-
jest-environment-node@29.7.0:
resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -4521,32 +4335,27 @@ packages:
jimp-compact@0.16.1:
resolution: {integrity: sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==}
- jiti@2.6.0:
- resolution: {integrity: sha512-VXe6RjJkBPj0ohtqaO8vSWP3ZhAKo66fKrFNCll4BTcwljPLz03pCbaNKfzGP5MbrCYcbJ7v0nOYYwUzTEIdXQ==}
+ jiti@2.6.1:
+ resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
hasBin: true
- jose@6.1.0:
- resolution: {integrity: sha512-TTQJyoEoKcC1lscpVDCSsVgYzUDg/0Bt3WE//WiTPK6uOCQC2KZS4MpugbMWt/zyjkopgZoXhZuCi00gLudfUA==}
+ jose@6.2.1:
+ resolution: {integrity: sha512-jUaKr1yrbfaImV7R2TN/b3IcZzsw38/chqMpo2XJ7i2F8AfM/lA4G1goC3JVEwg0H7UldTmSt3P68nt31W7/mw==}
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- js-yaml@3.14.1:
- resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
+ js-yaml@3.14.2:
+ resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==}
hasBin: true
- js-yaml@4.1.0:
- resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
+ js-yaml@4.1.1:
+ resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
hasBin: true
jsc-safe-url@0.2.4:
resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==}
- jsesc@3.0.2:
- resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
- engines: {node: '>=6'}
- hasBin: true
-
jsesc@3.1.0:
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
engines: {node: '>=6'}
@@ -4576,9 +4385,6 @@ packages:
engines: {node: '>=6'}
hasBin: true
- jsonfile@6.2.0:
- resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==}
-
jsx-ast-utils-x@0.1.0:
resolution: {integrity: sha512-eQQBjBnsVtGacsG9uJNB8qOr3yA8rga4wAaGG1qRcBzSIvfhERLrWxMAM1hp5fcS6Abo8M4+bUBTekYR0qTPQw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -4594,70 +4400,66 @@ packages:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
- kleur@4.1.5:
- resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
- engines: {node: '>=6'}
-
- kysely@0.28.7:
- resolution: {integrity: sha512-u/cAuTL4DRIiO2/g4vNGRgklEKNIj5Q3CG7RoUB5DV5SfEC2hMvPxKi0GWPmnzwL2ryIeud2VTcEEmqzTzEPNw==}
+ kysely@0.28.11:
+ resolution: {integrity: sha512-zpGIFg0HuoC893rIjYX1BETkVWdDnzTzF5e0kWXJFg5lE0k1/LfNWBejrcnOFu8Q2Rfq/hTDTU7XLUM8QOrpzg==}
engines: {node: '>=20.0.0'}
- lan-network@0.1.7:
- resolution: {integrity: sha512-mnIlAEMu4OyEvUNdzco9xpuB9YVcPkQec+QsgycBCtPZvEqWPCDPfbAE4OJMdBBWpZWtpCn1xw9jJYlwjWI5zQ==}
+ lan-network@0.2.0:
+ resolution: {integrity: sha512-EZgbsXMrGS+oK+Ta12mCjzBFse+SIewGdwrSTr5g+MSymnjpox2x05ceI20PQejJOFvOgzcXrfDk/SdY7dSCtw==}
hasBin: true
- lefthook-darwin-arm64@1.13.4:
- resolution: {integrity: sha512-A/t0OYW9NCEqJ+j3volPvetfgErveioYxTG0tzgmJoMOR4joFN0vkjahKQpKPIMQ1HSqFQtiRefXL3M97rCD1A==}
+ lefthook-darwin-arm64@2.1.4:
+ resolution: {integrity: sha512-BUAAE9+rUrjr39a+wH/1zHmGrDdwUQ2Yq/z6BQbM/yUb9qtXBRcQ5eOXxApqWW177VhGBpX31aqIlfAZ5Q7wzw==}
cpu: [arm64]
os: [darwin]
- lefthook-darwin-x64@1.13.4:
- resolution: {integrity: sha512-pBCy4pm8HEjsDSPNYv4Y4p94ZJYC7Q3KOMkYVH6no7e7ide2adetRq5eylNM7OyKF6fDA3VMv8ywINxHVKu3tg==}
+ lefthook-darwin-x64@2.1.4:
+ resolution: {integrity: sha512-K1ncIMEe84fe+ss1hQNO7rIvqiKy2TJvTFpkypvqFodT7mJXZn7GLKYTIXdIuyPAYthRa9DwFnx5uMoHwD2F1Q==}
cpu: [x64]
os: [darwin]
- lefthook-freebsd-arm64@1.13.4:
- resolution: {integrity: sha512-km8VRaIhORrebspVVwP+j01rYv2Wl8gDpEPcz42az9tfcp1o2d87Hi3zZ3DNSucSq+e7bMul1WNFYnk9xRy0jw==}
+ lefthook-freebsd-arm64@2.1.4:
+ resolution: {integrity: sha512-PVUhjOhVN71YaYsVdQyNbFZ4a2jFB2Tg5hKrrn9kaWpx64aLz/XivLjwr8sEuTaP1GRlEWBpW6Bhrcsyo39qFw==}
cpu: [arm64]
os: [freebsd]
- lefthook-freebsd-x64@1.13.4:
- resolution: {integrity: sha512-eWiFL4uFSg1XhLnbSo8dNF8K5yJ1Al3HauV1XbDfa8rUoonJfGWxOz6z22qzKj8mVkwl7Tk1hhjnAyNtXZNG8g==}
+ lefthook-freebsd-x64@2.1.4:
+ resolution: {integrity: sha512-ZWV9o/LeyWNEBoVO+BhLqxH3rGTba05nkm5NvMjEFSj7LbUNUDbQmupZwtHl1OMGJO66eZP0CalzRfUH6GhBxQ==}
cpu: [x64]
os: [freebsd]
- lefthook-linux-arm64@1.13.4:
- resolution: {integrity: sha512-0aHeK1WoRPHwvgbEXdo1Q25MMCWNeY5wouhcShHpxhmrVBX1c0rYkWC9mQgR+632eUKkA/48+1J69x3mvtMZRg==}
+ lefthook-linux-arm64@2.1.4:
+ resolution: {integrity: sha512-iWN0pGnTjrIvNIcSI1vQBJXUbybTqJ5CLMniPA0olabMXQfPDrdMKVQe+mgdwHK+E3/Y0H0ZNL3lnOj6Sk6szA==}
cpu: [arm64]
os: [linux]
- lefthook-linux-x64@1.13.4:
- resolution: {integrity: sha512-f0rM3o5b7HNX+eKnCZzOPPWV+uPwOgfZEIKd1MqfkxxreQ+kloAcuUcNt6huwrs8foR7+45eC31T5plII3aTnw==}
+ lefthook-linux-x64@2.1.4:
+ resolution: {integrity: sha512-96bTBE/JdYgqWYAJDh+/e/0MaxJ25XTOAk7iy/fKoZ1ugf6S0W9bEFbnCFNooXOcxNVTan5xWKfcjJmPIKtsJA==}
cpu: [x64]
os: [linux]
- lefthook-openbsd-arm64@1.13.4:
- resolution: {integrity: sha512-ov9rjWPOtphlNG2SOPQAPBSeWVTfB/vbh5AcvPECnVVe9jZTCthhKIyr9wx/UfKKqGxlL4wi7jk7BQ1BEJuC5w==}
+ lefthook-openbsd-arm64@2.1.4:
+ resolution: {integrity: sha512-oYUoK6AIJNEr9lUSpIMj6g7sWzotvtc3ryw7yoOyQM6uqmEduw73URV/qGoUcm4nqqmR93ZalZwR2r3Gd61zvw==}
cpu: [arm64]
os: [openbsd]
- lefthook-openbsd-x64@1.13.4:
- resolution: {integrity: sha512-4TVuVG86fJhWGBx8nR+USq00lYHuzLp1PqrW3vDKmTwxlMf3gmquO6PyQ85I5jfr1G2QpKn/cVJCvj3ExMUOxg==}
+ lefthook-openbsd-x64@2.1.4:
+ resolution: {integrity: sha512-i/Dv9Jcm68y9cggr1PhyUhOabBGP9+hzQPoiyOhKks7y9qrJl79A8XfG6LHekSuYc2VpiSu5wdnnrE1cj2nfTg==}
cpu: [x64]
os: [openbsd]
- lefthook-windows-arm64@1.13.4:
- resolution: {integrity: sha512-y46ZgRAgyMy5MQYkZoSBtHYUYj0+54cM0VDT/Lu/jz1GRFAE8JkrRVetk3geqECpnMGxBkSgfhcbGDYeEvJQdw==}
+ lefthook-windows-arm64@2.1.4:
+ resolution: {integrity: sha512-hSww7z+QX4YMnw2lK7DMrs3+w7NtxksuMKOkCKGyxUAC/0m1LAICo0ZbtdDtZ7agxRQQQ/SEbzFRhU5ysNcbjA==}
cpu: [arm64]
os: [win32]
- lefthook-windows-x64@1.13.4:
- resolution: {integrity: sha512-p2YfWuj/43gUT0nHJ6j0pTRpLLwX9n2bio60POuXOrr3RVxdv5MEaQchdRhqYG5uWj7Zsm86K9FWkNuxPG81IA==}
+ lefthook-windows-x64@2.1.4:
+ resolution: {integrity: sha512-eE68LwnogxwcPgGsbVGPGxmghyMGmU9SdGwcc+uhGnUxPz1jL89oECMWJNc36zjVK24umNeDAzB5KA3lw1MuWw==}
cpu: [x64]
os: [win32]
- lefthook@1.13.4:
- resolution: {integrity: sha512-4EJfkcNlZW69ISxyEuBzkyivER/XIVCJcGYTemVBf5DWlBwK97hSrbgDH8O5JuHiCR5lW83hDa1T5TW/dRfnGg==}
+ lefthook@2.1.4:
+ resolution: {integrity: sha512-JNfJ5gAn0KADvJ1I6/xMcx70+/6TL6U9gqGkKvPw5RNMfatC7jIg0Evl97HN846xmfz959BV70l8r3QsBJk30w==}
hasBin: true
leven@3.1.0:
@@ -4671,53 +4473,173 @@ packages:
lighthouse-logger@1.4.2:
resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==}
+ lightningcss-android-arm64@1.30.2:
+ resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [android]
+
+ lightningcss-android-arm64@1.32.0:
+ resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [android]
+
lightningcss-darwin-arm64@1.30.1:
resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
+ lightningcss-darwin-arm64@1.30.2:
+ resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ lightningcss-darwin-arm64@1.32.0:
+ resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
lightningcss-darwin-x64@1.30.1:
resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
+ lightningcss-darwin-x64@1.30.2:
+ resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ lightningcss-darwin-x64@1.32.0:
+ resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
lightningcss-freebsd-x64@1.30.1:
resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
+ lightningcss-freebsd-x64@1.30.2:
+ resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+
+ lightningcss-freebsd-x64@1.32.0:
+ resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+
lightningcss-linux-arm-gnueabihf@1.30.1:
resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
+ lightningcss-linux-arm-gnueabihf@1.30.2:
+ resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ lightningcss-linux-arm-gnueabihf@1.32.0:
+ resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm]
+ os: [linux]
+
lightningcss-linux-arm64-gnu@1.30.1:
resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
+ libc: [glibc]
+
+ lightningcss-linux-arm64-gnu@1.30.2:
+ resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ lightningcss-linux-arm64-gnu@1.32.0:
+ resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
lightningcss-linux-arm64-musl@1.30.1:
resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
+ libc: [musl]
+
+ lightningcss-linux-arm64-musl@1.30.2:
+ resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ lightningcss-linux-arm64-musl@1.32.0:
+ resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
lightningcss-linux-x64-gnu@1.30.1:
resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
+ libc: [glibc]
+
+ lightningcss-linux-x64-gnu@1.30.2:
+ resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ lightningcss-linux-x64-gnu@1.32.0:
+ resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
lightningcss-linux-x64-musl@1.30.1:
resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
+ libc: [musl]
+
+ lightningcss-linux-x64-musl@1.30.2:
+ resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ lightningcss-linux-x64-musl@1.32.0:
+ resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
lightningcss-win32-arm64-msvc@1.30.1:
resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==}
@@ -4725,16 +4647,48 @@ packages:
cpu: [arm64]
os: [win32]
+ lightningcss-win32-arm64-msvc@1.30.2:
+ resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ lightningcss-win32-arm64-msvc@1.32.0:
+ resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
lightningcss-win32-x64-msvc@1.30.1:
resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
+ lightningcss-win32-x64-msvc@1.30.2:
+ resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [win32]
+
+ lightningcss-win32-x64-msvc@1.32.0:
+ resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [win32]
+
lightningcss@1.30.1:
resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==}
engines: {node: '>= 12.0.0'}
+ lightningcss@1.30.2:
+ resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
+ engines: {node: '>= 12.0.0'}
+
+ lightningcss@1.32.0:
+ resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
+ engines: {node: '>= 12.0.0'}
+
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
@@ -4753,25 +4707,12 @@ packages:
lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- lodash.isequal@4.5.0:
- resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
- deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead.
-
- lodash.isobject@3.0.2:
- resolution: {integrity: sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==}
-
lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- lodash.mergewith@4.6.2:
- resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==}
-
lodash.throttle@4.1.1:
resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
- lodash@4.17.21:
- resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
-
log-symbols@2.2.0:
resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==}
engines: {node: '>=4'}
@@ -4789,11 +4730,15 @@ packages:
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
+ lru-cache@11.2.6:
+ resolution: {integrity: sha512-ESL2CrkS/2wTPfuend7Zhkzo2u0daGJ/A2VucJOgQ/C48S/zB8MMeMHSGKYpXhIjbPxfuezITkaBH1wqv00DDQ==}
+ engines: {node: 20 || >=22}
+
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
- lucide-react-native@0.545.0:
- resolution: {integrity: sha512-v9MC1CJ5jJkBbGvO+jrq9Iqe58pS8FvmdIO1NEr7mzQEx7E2VGfXkl1iaJsKpDSqofYhv4Xrks2I2ewF66HIDA==}
+ lucide-react-native@0.577.0:
+ resolution: {integrity: sha512-blWv/YqBMrgkYGAgm2wgWiGP1+1GNBf4f/sUlpyfEL8mxvSzhr7H/0MTS1xQgtd1B6gPC/JIPgP3kcdFjnh8zg==}
peerDependencies:
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
react-native: '*'
@@ -4803,8 +4748,8 @@ packages:
resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
- magic-string@0.30.19:
- resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==}
+ magic-string@0.30.21:
+ resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
@@ -4837,6 +4782,9 @@ packages:
memoizerific@1.11.3:
resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==}
+ memory-pager@1.5.0:
+ resolution: {integrity: sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==}
+
memorystream@0.3.1:
resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
engines: {node: '>= 0.10.0'}
@@ -4848,123 +4796,119 @@ packages:
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
- merge2@1.4.1:
- resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
- engines: {node: '>= 8'}
-
- metro-babel-transformer@0.80.12:
- resolution: {integrity: sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg==}
- engines: {node: '>=18'}
+ metro-babel-transformer@0.83.3:
+ resolution: {integrity: sha512-1vxlvj2yY24ES1O5RsSIvg4a4WeL7PFXgKOHvXTXiW0deLvQr28ExXj6LjwCCDZ4YZLhq6HddLpZnX4dEdSq5g==}
+ engines: {node: '>=20.19.4'}
- metro-babel-transformer@0.83.2:
- resolution: {integrity: sha512-rirY1QMFlA1uxH3ZiNauBninwTioOgwChnRdDcbB4tgRZ+bGX9DiXoh9QdpppiaVKXdJsII932OwWXGGV4+Nlw==}
+ metro-babel-transformer@0.83.5:
+ resolution: {integrity: sha512-d9FfmgUEVejTiSb7bkQeLRGl6aeno2UpuPm3bo3rCYwxewj03ymvOn8s8vnS4fBqAPQ+cE9iQM40wh7nGXR+eA==}
engines: {node: '>=20.19.4'}
- metro-cache-key@0.80.12:
- resolution: {integrity: sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA==}
- engines: {node: '>=18'}
+ metro-cache-key@0.83.3:
+ resolution: {integrity: sha512-59ZO049jKzSmvBmG/B5bZ6/dztP0ilp0o988nc6dpaDsU05Cl1c/lRf+yx8m9WW/JVgbmfO5MziBU559XjI5Zw==}
+ engines: {node: '>=20.19.4'}
- metro-cache-key@0.83.2:
- resolution: {integrity: sha512-3EMG/GkGKYoTaf5RqguGLSWRqGTwO7NQ0qXKmNBjr0y6qD9s3VBXYlwB+MszGtmOKsqE9q3FPrE5Nd9Ipv7rZw==}
+ metro-cache-key@0.83.5:
+ resolution: {integrity: sha512-Ycl8PBajB7bhbAI7Rt0xEyiF8oJ0RWX8EKkolV1KfCUlC++V/GStMSGpPLwnnBZXZWkCC5edBPzv1Hz1Yi0Euw==}
engines: {node: '>=20.19.4'}
- metro-cache@0.80.12:
- resolution: {integrity: sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA==}
- engines: {node: '>=18'}
+ metro-cache@0.83.3:
+ resolution: {integrity: sha512-3jo65X515mQJvKqK3vWRblxDEcgY55Sk3w4xa6LlfEXgQ9g1WgMh9m4qVZVwgcHoLy0a2HENTPCCX4Pk6s8c8Q==}
+ engines: {node: '>=20.19.4'}
- metro-cache@0.83.2:
- resolution: {integrity: sha512-Z43IodutUZeIS7OTH+yQFjc59QlFJ6s5OvM8p2AP9alr0+F8UKr8ADzFzoGKoHefZSKGa4bJx7MZJLF6GwPDHQ==}
+ metro-cache@0.83.5:
+ resolution: {integrity: sha512-oH+s4U+IfZyg8J42bne2Skc90rcuESIYf86dYittcdWQtPfcaFXWpByPyTuWk3rR1Zz3Eh5HOrcVImfEhhJLng==}
engines: {node: '>=20.19.4'}
- metro-config@0.80.12:
- resolution: {integrity: sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ==}
- engines: {node: '>=18'}
+ metro-config@0.83.3:
+ resolution: {integrity: sha512-mTel7ipT0yNjKILIan04bkJkuCzUUkm2SeEaTads8VfEecCh+ltXchdq6DovXJqzQAXuR2P9cxZB47Lg4klriA==}
+ engines: {node: '>=20.19.4'}
- metro-config@0.83.2:
- resolution: {integrity: sha512-1FjCcdBe3e3D08gSSiU9u3Vtxd7alGH3x/DNFqWDFf5NouX4kLgbVloDDClr1UrLz62c0fHh2Vfr9ecmrOZp+g==}
+ metro-config@0.83.5:
+ resolution: {integrity: sha512-JQ/PAASXH7yczgV6OCUSRhZYME+NU8NYjI2RcaG5ga4QfQ3T/XdiLzpSb3awWZYlDCcQb36l4Vl7i0Zw7/Tf9w==}
engines: {node: '>=20.19.4'}
- metro-core@0.80.12:
- resolution: {integrity: sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw==}
- engines: {node: '>=18'}
+ metro-core@0.83.3:
+ resolution: {integrity: sha512-M+X59lm7oBmJZamc96usuF1kusd5YimqG/q97g4Ac7slnJ3YiGglW5CsOlicTR5EWf8MQFxxjDoB6ytTqRe8Hw==}
+ engines: {node: '>=20.19.4'}
- metro-core@0.83.2:
- resolution: {integrity: sha512-8DRb0O82Br0IW77cNgKMLYWUkx48lWxUkvNUxVISyMkcNwE/9ywf1MYQUE88HaKwSrqne6kFgCSA/UWZoUT0Iw==}
+ metro-core@0.83.5:
+ resolution: {integrity: sha512-YcVcLCrf0ed4mdLa82Qob0VxYqfhmlRxUS8+TO4gosZo/gLwSvtdeOjc/Vt0pe/lvMNrBap9LlmvZM8FIsMgJQ==}
engines: {node: '>=20.19.4'}
- metro-file-map@0.80.12:
- resolution: {integrity: sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw==}
- engines: {node: '>=18'}
+ metro-file-map@0.83.3:
+ resolution: {integrity: sha512-jg5AcyE0Q9Xbbu/4NAwwZkmQn7doJCKGW0SLeSJmzNB9Z24jBe0AL2PHNMy4eu0JiKtNWHz9IiONGZWq7hjVTA==}
+ engines: {node: '>=20.19.4'}
- metro-file-map@0.83.2:
- resolution: {integrity: sha512-cMSWnEqZrp/dzZIEd7DEDdk72PXz6w5NOKriJoDN9p1TDQ5nAYrY2lHi8d6mwbcGLoSlWmpPyny9HZYFfPWcGQ==}
+ metro-file-map@0.83.5:
+ resolution: {integrity: sha512-ZEt8s3a1cnYbn40nyCD+CsZdYSlwtFh2kFym4lo+uvfM+UMMH+r/BsrC6rbNClSrt+B7rU9T+Te/sh/NL8ZZKQ==}
engines: {node: '>=20.19.4'}
- metro-minify-terser@0.80.12:
- resolution: {integrity: sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ==}
- engines: {node: '>=18'}
+ metro-minify-terser@0.83.3:
+ resolution: {integrity: sha512-O2BmfWj6FSfzBLrNCXt/rr2VYZdX5i6444QJU0fFoc7Ljg+Q+iqebwE3K0eTvkI6TRjELsXk1cjU+fXwAR4OjQ==}
+ engines: {node: '>=20.19.4'}
- metro-minify-terser@0.83.2:
- resolution: {integrity: sha512-zvIxnh7U0JQ7vT4quasKsijId3dOAWgq+ip2jF/8TMrPUqQabGrs04L2dd0haQJ+PA+d4VvK/bPOY8X/vL2PWw==}
+ metro-minify-terser@0.83.5:
+ resolution: {integrity: sha512-Toe4Md1wS1PBqbvB0cFxBzKEVyyuYTUb0sgifAZh/mSvLH84qA1NAWik9sISWatzvfWf3rOGoUoO5E3f193a3Q==}
engines: {node: '>=20.19.4'}
- metro-resolver@0.80.12:
- resolution: {integrity: sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw==}
- engines: {node: '>=18'}
+ metro-resolver@0.83.3:
+ resolution: {integrity: sha512-0js+zwI5flFxb1ktmR///bxHYg7OLpRpWZlBBruYG8OKYxeMP7SV0xQ/o/hUelrEMdK4LJzqVtHAhBm25LVfAQ==}
+ engines: {node: '>=20.19.4'}
- metro-resolver@0.83.2:
- resolution: {integrity: sha512-Yf5mjyuiRE/Y+KvqfsZxrbHDA15NZxyfg8pIk0qg47LfAJhpMVEX+36e6ZRBq7KVBqy6VDX5Sq55iHGM4xSm7Q==}
+ metro-resolver@0.83.5:
+ resolution: {integrity: sha512-7p3GtzVUpbAweJeCcUJihJeOQl1bDuimO5ueo1K0BUpUtR41q5EilbQ3klt16UTPPMpA+tISWBtsrqU556mY1A==}
engines: {node: '>=20.19.4'}
- metro-runtime@0.80.12:
- resolution: {integrity: sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw==}
- engines: {node: '>=18'}
+ metro-runtime@0.83.3:
+ resolution: {integrity: sha512-JHCJb9ebr9rfJ+LcssFYA2x1qPYuSD/bbePupIGhpMrsla7RCwC/VL3yJ9cSU+nUhU4c9Ixxy8tBta+JbDeZWw==}
+ engines: {node: '>=20.19.4'}
- metro-runtime@0.83.2:
- resolution: {integrity: sha512-nnsPtgRvFbNKwemqs0FuyFDzXLl+ezuFsUXDbX8o0SXOfsOPijqiQrf3kuafO1Zx1aUWf4NOrKJMAQP5EEHg9A==}
+ metro-runtime@0.83.5:
+ resolution: {integrity: sha512-f+b3ue9AWTVlZe2Xrki6TAoFtKIqw30jwfk7GQ1rDUBQaE0ZQ+NkiMEtb9uwH7uAjJ87U7Tdx1Jg1OJqUfEVlA==}
engines: {node: '>=20.19.4'}
- metro-source-map@0.80.12:
- resolution: {integrity: sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw==}
- engines: {node: '>=18'}
+ metro-source-map@0.83.3:
+ resolution: {integrity: sha512-xkC3qwUBh2psVZgVavo8+r2C9Igkk3DibiOXSAht1aYRRcztEZNFtAMtfSB7sdO2iFMx2Mlyu++cBxz/fhdzQg==}
+ engines: {node: '>=20.19.4'}
- metro-source-map@0.83.2:
- resolution: {integrity: sha512-5FL/6BSQvshIKjXOennt9upFngq2lFvDakZn5LfauIVq8+L4sxXewIlSTcxAtzbtjAIaXeOSVMtCJ5DdfCt9AA==}
+ metro-source-map@0.83.5:
+ resolution: {integrity: sha512-VT9bb2KO2/4tWY9Z2yeZqTUao7CicKAOps9LUg2aQzsz+04QyuXL3qgf1cLUVRjA/D6G5u1RJAlN1w9VNHtODQ==}
engines: {node: '>=20.19.4'}
- metro-symbolicate@0.80.12:
- resolution: {integrity: sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw==}
- engines: {node: '>=18'}
+ metro-symbolicate@0.83.3:
+ resolution: {integrity: sha512-F/YChgKd6KbFK3eUR5HdUsfBqVsanf5lNTwFd4Ca7uuxnHgBC3kR/Hba/RGkenR3pZaGNp5Bu9ZqqP52Wyhomw==}
+ engines: {node: '>=20.19.4'}
hasBin: true
- metro-symbolicate@0.83.2:
- resolution: {integrity: sha512-KoU9BLwxxED6n33KYuQQuc5bXkIxF3fSwlc3ouxrrdLWwhu64muYZNQrukkWzhVKRNFIXW7X2iM8JXpi2heIPw==}
+ metro-symbolicate@0.83.5:
+ resolution: {integrity: sha512-EMIkrjNRz/hF+p0RDdxoE60+dkaTLPN3vaaGkFmX5lvFdO6HPfHA/Ywznzkev+za0VhPQ5KSdz49/MALBRteHA==}
engines: {node: '>=20.19.4'}
hasBin: true
- metro-transform-plugins@0.80.12:
- resolution: {integrity: sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA==}
- engines: {node: '>=18'}
+ metro-transform-plugins@0.83.3:
+ resolution: {integrity: sha512-eRGoKJU6jmqOakBMH5kUB7VitEWiNrDzBHpYbkBXW7C5fUGeOd2CyqrosEzbMK5VMiZYyOcNFEphvxk3OXey2A==}
+ engines: {node: '>=20.19.4'}
- metro-transform-plugins@0.83.2:
- resolution: {integrity: sha512-5WlW25WKPkiJk2yA9d8bMuZrgW7vfA4f4MBb9ZeHbTB3eIAoNN8vS8NENgG/X/90vpTB06X66OBvxhT3nHwP6A==}
+ metro-transform-plugins@0.83.5:
+ resolution: {integrity: sha512-KxYKzZL+lt3Os5H2nx7YkbkWVduLZL5kPrE/Yq+Prm/DE1VLhpfnO6HtPs8vimYFKOa58ncl60GpoX0h7Wm0Vw==}
engines: {node: '>=20.19.4'}
- metro-transform-worker@0.80.12:
- resolution: {integrity: sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA==}
- engines: {node: '>=18'}
+ metro-transform-worker@0.83.3:
+ resolution: {integrity: sha512-Ztekew9t/gOIMZX1tvJOgX7KlSLL5kWykl0Iwu2cL2vKMKVALRl1hysyhUw0vjpAvLFx+Kfq9VLjnHIkW32fPA==}
+ engines: {node: '>=20.19.4'}
- metro-transform-worker@0.83.2:
- resolution: {integrity: sha512-G5DsIg+cMZ2KNfrdLnWMvtppb3+Rp1GMyj7Bvd9GgYc/8gRmvq1XVEF9XuO87Shhb03kFhGqMTgZerz3hZ1v4Q==}
+ metro-transform-worker@0.83.5:
+ resolution: {integrity: sha512-8N4pjkNXc6ytlP9oAM6MwqkvUepNSW39LKYl9NjUMpRDazBQ7oBpQDc8Sz4aI8jnH6AGhF7s1m/ayxkN1t04yA==}
engines: {node: '>=20.19.4'}
- metro@0.80.12:
- resolution: {integrity: sha512-1UsH5FzJd9quUsD1qY+zUG4JY3jo3YEMxbMYH9jT6NK3j4iORhlwTK8fYTfAUBhDKjgLfKjAh7aoazNE23oIRA==}
- engines: {node: '>=18'}
+ metro@0.83.3:
+ resolution: {integrity: sha512-+rP+/GieOzkt97hSJ0MrPOuAH/jpaS21ZDvL9DJ35QYRDlQcwzcvUlGUf79AnQxq/2NPiS/AULhhM4TKutIt8Q==}
+ engines: {node: '>=20.19.4'}
hasBin: true
- metro@0.83.2:
- resolution: {integrity: sha512-HQgs9H1FyVbRptNSMy/ImchTTE5vS2MSqLoOo7hbDoBq6hPPZokwJvBMwrYSxdjQZmLXz2JFZtdvS+ZfgTc9yw==}
+ metro@0.83.5:
+ resolution: {integrity: sha512-BgsXevY1MBac/3ZYv/RfNFf/4iuW9X7f4H8ZNkiH+r667HD9sVujxcmu4jvEzGCAm4/WyKdZCuyhAcyhTHOucQ==}
engines: {node: '>=20.19.4'}
hasBin: true
@@ -4984,6 +4928,10 @@ packages:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
+ mime-types@3.0.2:
+ resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==}
+ engines: {node: '>=18'}
+
mime@1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
@@ -4993,49 +4941,72 @@ packages:
resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
engines: {node: '>=4'}
- mimic-fn@2.1.0:
- resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
- engines: {node: '>=6'}
-
min-indent@1.0.1:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
- minimatch@3.1.2:
- resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+ minimatch@10.2.4:
+ resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==}
+ engines: {node: 18 || 20 || >=22}
- minimatch@5.1.6:
- resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
- engines: {node: '>=10'}
+ minimatch@3.1.5:
+ resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==}
- minimatch@9.0.5:
- resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
- engines: {node: '>=16 || 14 >=14.17'}
+ minimatch@5.1.9:
+ resolution: {integrity: sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==}
+ engines: {node: '>=10'}
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- minipass@7.1.2:
- resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+ minipass@7.1.3:
+ resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==}
engines: {node: '>=16 || 14 >=14.17'}
- minizlib@3.1.0:
- resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==}
- engines: {node: '>= 18'}
-
mkdirp@1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
hasBin: true
+ mongodb-connection-string-url@7.0.1:
+ resolution: {integrity: sha512-h0AZ9A7IDVwwHyMxmdMXKy+9oNlF0zFoahHiX3vQ8e3KFcSP3VmsmfvtRSuLPxmyv2vjIDxqty8smTgie/SNRQ==}
+ engines: {node: '>=20.19.0'}
+
+ mongodb@7.1.0:
+ resolution: {integrity: sha512-kMfnKunbolQYwCIyrkxNJFB4Ypy91pYqua5NargS/f8ODNSJxT03ZU3n1JqL4mCzbSih8tvmMEMLpKTT7x5gCg==}
+ engines: {node: '>=20.19.0'}
+ peerDependencies:
+ '@aws-sdk/credential-providers': ^3.806.0
+ '@mongodb-js/zstd': ^7.0.0
+ gcp-metadata: ^7.0.1
+ kerberos: ^7.0.0
+ mongodb-client-encryption: '>=7.0.0 <7.1.0'
+ snappy: ^7.3.2
+ socks: ^2.8.6
+ peerDependenciesMeta:
+ '@aws-sdk/credential-providers':
+ optional: true
+ '@mongodb-js/zstd':
+ optional: true
+ gcp-metadata:
+ optional: true
+ kerberos:
+ optional: true
+ mongodb-client-encryption:
+ optional: true
+ snappy:
+ optional: true
+ socks:
+ optional: true
+
ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- mz@2.7.0:
- resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
+ multitars@0.2.4:
+ resolution: {integrity: sha512-XgLbg1HHchFauMCQPRwMj6MSyDd5koPlTA1hM3rUFkeXzGpjU/I9fP3to7yrObE9jcN8ChIOQGrM0tV0kUZaKg==}
nanoid@3.3.11:
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
@@ -5047,12 +5018,12 @@ packages:
engines: {node: ^18 || >=20}
hasBin: true
- nanostores@1.0.1:
- resolution: {integrity: sha512-kNZ9xnoJYKg/AfxjrVL4SS0fKX++4awQReGqWnwTRHxeHGZ1FJFVgTqr/eMrNQdp0Tz7M7tG/TDaX8QfHDwVCw==}
+ nanostores@1.1.1:
+ resolution: {integrity: sha512-EYJqS25r2iBeTtGQCHidXl1VfZ1jXM7Q04zXJOrMlxVVmD0ptxJaNux92n1mJ7c5lN3zTq12MhH/8x59nP+qmg==}
engines: {node: ^20.0.0 || >=22.0.0}
- napi-postinstall@0.3.3:
- resolution: {integrity: sha512-uTp172LLXSxuSYHv/kou+f6KW3SMppU9ivthaVTXian9sOt3XM/zHYHpRZiLgQoxeWfYUnslNWQHF1+G71xcow==}
+ napi-postinstall@0.3.4:
+ resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
hasBin: true
@@ -5067,11 +5038,9 @@ packages:
resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
engines: {node: '>= 0.6'}
- neo-async@2.6.2:
- resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
-
- nested-error-stacks@2.0.1:
- resolution: {integrity: sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==}
+ negotiator@1.0.0:
+ resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
+ engines: {node: '>= 0.6'}
nice-try@1.0.5:
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
@@ -5079,8 +5048,9 @@ packages:
no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
- node-abort-controller@3.1.1:
- resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==}
+ node-exports-info@1.6.0:
+ resolution: {integrity: sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==}
+ engines: {node: '>= 0.4'}
node-fetch-native@1.6.7:
resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==}
@@ -5094,15 +5064,15 @@ packages:
encoding:
optional: true
- node-forge@1.3.1:
- resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
+ node-forge@1.3.3:
+ resolution: {integrity: sha512-rLvcdSyRCyouf6jcOIPe/BgwG/d7hKjzMKOas33/pHEr6gbq18IK9zV7DiPvzsz0oBJPme6qr6H6kGZuI9/DZg==}
engines: {node: '>= 6.13.0'}
node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
- node-releases@2.0.21:
- resolution: {integrity: sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==}
+ node-releases@2.0.36:
+ resolution: {integrity: sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==}
normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
@@ -5120,27 +5090,23 @@ packages:
engines: {node: '>= 4'}
hasBin: true
- npm-run-path@4.0.1:
- resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
- engines: {node: '>=8'}
-
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
nullthrows@1.1.1:
resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
- nypm@0.6.2:
- resolution: {integrity: sha512-7eM+hpOtrKrBDCh7Ypu2lJ9Z7PNZBdi/8AT3AX8xoCj43BBVHD0hPSTEvMtkMpfs8FCqBGhxB+uToIQimA111g==}
- engines: {node: ^14.16.0 || >=16.10.0}
+ nypm@0.6.5:
+ resolution: {integrity: sha512-K6AJy1GMVyfyMXRVB88700BJqNUkByijGJM8kEHpLdcAt+vSQAVfkWWHYzuRXHSY6xA2sNc5RjTj0p9rE2izVQ==}
+ engines: {node: '>=18'}
hasBin: true
- ob1@0.80.12:
- resolution: {integrity: sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw==}
- engines: {node: '>=18'}
+ ob1@0.83.3:
+ resolution: {integrity: sha512-egUxXCDwoWG06NGCS5s5AdcpnumHKJlfd3HH06P3m9TEMwwScfcY35wpQxbm9oHof+dM/lVH9Rfyu1elTVelSA==}
+ engines: {node: '>=20.19.4'}
- ob1@0.83.2:
- resolution: {integrity: sha512-XlK3w4M+dwd1g1gvHzVbxiXEbUllRONEgcF2uEO0zm4nxa0eKlh41c6N65q1xbiDOeKKda1tvNOAD33fNjyvCg==}
+ ob1@0.83.5:
+ resolution: {integrity: sha512-vNKPYC8L5ycVANANpF/S+WZHpfnRWKx/F3AYP4QMn6ZJTh+l2HOrId0clNkEmua58NB9vmI9Qh7YOoV/4folYg==}
engines: {node: '>=20.19.4'}
object-assign@4.1.1:
@@ -5151,10 +5117,6 @@ packages:
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
engines: {node: '>= 0.4'}
- object-is@1.1.6:
- resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
- engines: {node: '>= 0.4'}
-
object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
@@ -5201,14 +5163,14 @@ packages:
resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==}
engines: {node: '>=4'}
- onetime@5.1.2:
- resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
- engines: {node: '>=6'}
-
- open@10.1.2:
- resolution: {integrity: sha512-cxN6aIDPz6rm8hbebcP7vrQNhvRcveZoJU72Y7vskh4oIm+BZwBECnx5nTmrlres1Qapvx27Qo1Auukpf8PKXw==}
+ open@10.2.0:
+ resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==}
engines: {node: '>=18'}
+ open@11.0.0:
+ resolution: {integrity: sha512-smsWv2LzFjP03xmvFoJ331ss6h+jixfA4UUV/Bsiyuu4YJPfN+FIQGOIiv4w9/+MoHkfkJ22UIaQWRVFRfH6Vw==}
+ engines: {node: '>=20'}
+
open@7.4.2:
resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
engines: {node: '>=8'}
@@ -5245,17 +5207,10 @@ packages:
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
engines: {node: '>=10'}
- p-map@4.0.0:
- resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
- engines: {node: '>=10'}
-
p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- package-json-from-dist@1.0.1:
- resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
-
parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
@@ -5295,9 +5250,9 @@ packages:
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- path-scurry@1.11.1:
- resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
- engines: {node: '>=16 || 14 >=14.18'}
+ path-scurry@2.0.2:
+ resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==}
+ engines: {node: 18 || 20 || >=22}
path-type@3.0.0:
resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
@@ -5314,8 +5269,8 @@ packages:
resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==}
engines: {node: '>= 14.16'}
- perfect-debounce@2.0.0:
- resolution: {integrity: sha512-fkEH/OBiKrqqI/yIgjR92lMfs2K8105zt/VT6+7eTjNwisrsh47CeIED9z58zI7DfKdH3uHAn25ziRZn3kgAow==}
+ perfect-debounce@2.1.0:
+ resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==}
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
@@ -5324,10 +5279,6 @@ packages:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- picomatch@3.0.1:
- resolution: {integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==}
- engines: {node: '>=10'}
-
picomatch@4.0.3:
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
engines: {node: '>=12'}
@@ -5375,29 +5326,79 @@ packages:
resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
engines: {node: ^10 || ^12 || >=14}
+ powershell-utils@0.1.0:
+ resolution: {integrity: sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A==}
+ engines: {node: '>=20'}
+
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
+ prettier-plugin-tailwindcss@0.7.2:
+ resolution: {integrity: sha512-LkphyK3Fw+q2HdMOoiEHWf93fNtYJwfamoKPl7UwtjFQdei/iIBoX11G6j706FzN3ymX9mPVi97qIY8328vdnA==}
+ engines: {node: '>=20.19'}
+ peerDependencies:
+ '@ianvs/prettier-plugin-sort-imports': '*'
+ '@prettier/plugin-hermes': '*'
+ '@prettier/plugin-oxc': '*'
+ '@prettier/plugin-pug': '*'
+ '@shopify/prettier-plugin-liquid': '*'
+ '@trivago/prettier-plugin-sort-imports': '*'
+ '@zackad/prettier-plugin-twig': '*'
+ prettier: ^3.0
+ prettier-plugin-astro: '*'
+ prettier-plugin-css-order: '*'
+ prettier-plugin-jsdoc: '*'
+ prettier-plugin-marko: '*'
+ prettier-plugin-multiline-arrays: '*'
+ prettier-plugin-organize-attributes: '*'
+ prettier-plugin-organize-imports: '*'
+ prettier-plugin-sort-imports: '*'
+ prettier-plugin-svelte: '*'
+ peerDependenciesMeta:
+ '@ianvs/prettier-plugin-sort-imports':
+ optional: true
+ '@prettier/plugin-hermes':
+ optional: true
+ '@prettier/plugin-oxc':
+ optional: true
+ '@prettier/plugin-pug':
+ optional: true
+ '@shopify/prettier-plugin-liquid':
+ optional: true
+ '@trivago/prettier-plugin-sort-imports':
+ optional: true
+ '@zackad/prettier-plugin-twig':
+ optional: true
+ prettier-plugin-astro:
+ optional: true
+ prettier-plugin-css-order:
+ optional: true
+ prettier-plugin-jsdoc:
+ optional: true
+ prettier-plugin-marko:
+ optional: true
+ prettier-plugin-multiline-arrays:
+ optional: true
+ prettier-plugin-organize-attributes:
+ optional: true
+ prettier-plugin-organize-imports:
+ optional: true
+ prettier-plugin-sort-imports:
+ optional: true
+ prettier-plugin-svelte:
+ optional: true
+
prettier@2.8.8:
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
engines: {node: '>=10.13.0'}
hasBin: true
- prettier@3.4.2:
- resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==}
+ prettier@3.8.1:
+ resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==}
engines: {node: '>=14'}
hasBin: true
- prettier@3.6.2:
- resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==}
- engines: {node: '>=14'}
- hasBin: true
-
- pretty-bytes@5.6.0:
- resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
- engines: {node: '>=6'}
-
pretty-format@27.5.1:
resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
@@ -5410,9 +5411,6 @@ packages:
resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- process-nextick-args@2.0.1:
- resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
-
progress@2.0.3:
resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
engines: {node: '>=0.4.0'}
@@ -5430,31 +5428,14 @@ packages:
prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
- pump@3.0.3:
- resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==}
-
punycode@2.3.1:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
- pvtsutils@1.3.6:
- resolution: {integrity: sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==}
-
- pvutils@1.1.3:
- resolution: {integrity: sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==}
- engines: {node: '>=6.0.0'}
-
- qrcode-terminal@0.11.0:
- resolution: {integrity: sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==}
- hasBin: true
-
query-string@7.1.3:
resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==}
engines: {node: '>=6'}
- queue-microtask@1.2.3:
- resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
-
queue@6.0.2:
resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==}
@@ -5465,22 +5446,17 @@ packages:
rc9@2.1.2:
resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==}
- rc@1.2.8:
- resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
- hasBin: true
-
react-devtools-core@6.1.5:
resolution: {integrity: sha512-ePrwPfxAnB+7hgnEr8vpKxL9cmnp7F322t8oqcPshbIQQhDKgFDW4tjhF2wjVbdXF9O/nyuy3sQWd9JGpiLPvA==}
- react-dom@18.3.1:
- resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
- peerDependencies:
- react: ^18.3.1
+ react-docgen@8.0.2:
+ resolution: {integrity: sha512-+NRMYs2DyTP4/tqWz371Oo50JqmWltR1h2gcdgUMAWZJIAvrd0/SqlCfx7tpzpl/s36rzw6qH2MjoNrxtRNYhA==}
+ engines: {node: ^20.9.0 || >=22}
- react-dom@19.1.0:
- resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
+ react-dom@19.2.0:
+ resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==}
peerDependencies:
- react: ^19.1.0
+ react: ^19.2.0
react-fast-compare@3.2.2:
resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
@@ -5491,10 +5467,10 @@ packages:
peerDependencies:
react: '>=17.0.0'
- react-i18next@16.0.0:
- resolution: {integrity: sha512-JQ+dFfLnFSKJQt7W01lJHWRC0SX7eDPobI+MSTJ3/gP39xH2g33AuTE7iddAfXYHamJdAeMGM0VFboPaD3G68Q==}
+ react-i18next@16.5.8:
+ resolution: {integrity: sha512-2ABeHHlakxVY+LSirD+OiERxFL6+zip0PaHo979bgwzeHg27Sqc82xxXWIrSFmfWX0ZkrvXMHwhsi/NGUf5VQg==}
peerDependencies:
- i18next: '>= 25.5.2'
+ i18next: '>= 25.6.2'
react: '>= 16.8.0'
react-dom: '*'
react-native: '*'
@@ -5514,45 +5490,25 @@ packages:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
react-is@18.3.1:
- resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
-
- react-is@19.1.1:
- resolution: {integrity: sha512-tr41fA15Vn8p4X9ntI+yCyeGSf1TlYaY5vlTZfQmeLBrFo3psOPX6HhTDnFNL9uj3EhP0KAQ80cugCl4b4BERA==}
-
- react-native-animatable@1.3.3:
- resolution: {integrity: sha512-2ckIxZQAsvWn25Ho+DK3d1mXIgj7tITkrS4pYDvx96WyOttSvzzFeQnM2od0+FUMzILbdHDsDEqZvnz1DYNQ1w==}
-
- react-native-builder-bob@0.40.11:
- resolution: {integrity: sha512-LKh8xbjvh6JLxpRAiTSXqWAC27LJrSOMaXsN8aPwNc4HmXFnMUsl54OSL+d38ZZtBkFh8O2x1Z4Vno20rLy3Lw==}
- engines: {node: ^20.19.0 || ^22.12.0 || >= 23.4.0}
- hasBin: true
-
- react-native-confirmation-code-field@7.4.0:
- resolution: {integrity: sha512-Kw7rD0RXi6vZnt0Y67nkSW2wYmZFdnxJ23yxkKm3jqwvSxAvaA1NP3h3MHSPmJd25l0WK/+fjXOeCliDqWZ9rw==}
- peerDependencies:
- react: '>=16.4.0'
- react-native: '>=0.64.0'
- peerDependenciesMeta:
- react:
- optional: true
- react-native:
- optional: true
+ resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
+
+ react-is@19.2.4:
+ resolution: {integrity: sha512-W+EWGn2v0ApPKgKKCy/7s7WHXkboGcsrXE+2joLyVxkbyVQfO3MUEaUQDHoSmb8TFFrSKYa9mw64WZHNHSDzYA==}
- react-native-ficus-ui@2.3.0:
- resolution: {integrity: sha512-Ne/CUV3Jj0i6MIV9tDYB1IwF6K6v+W3mJdo8TcE1+N76WCIKHQTYYewtaUOT8OAAKmlgHmvmAqaF372fPfKP7A==}
- engines: {node: '>= 22.0.0'}
+ react-native-gesture-handler@2.30.0:
+ resolution: {integrity: sha512-5YsnKHGa0X9C8lb5oCnKm0fLUPM6CRduvUUw2Bav4RIj/C3HcFh4RIUnF8wgG6JQWCL1//gRx4v+LVWgcIQdGA==}
peerDependencies:
react: '*'
react-native: '*'
- react-native-gesture-handler@2.28.0:
- resolution: {integrity: sha512-0msfJ1vRxXKVgTgvL+1ZOoYw3/0z1R+Ked0+udoJhyplC2jbVKIJ8Z1bzWdpQRCV3QcQ87Op0zJVE5DhKK2A0A==}
+ react-native-is-edge-to-edge@1.2.1:
+ resolution: {integrity: sha512-FLbPWl/MyYQWz+KwqOZsSyj2JmLKglHatd3xLZWskXOpRaio4LfEDEz8E/A6uD8QoTHW6Aobw1jbEwK7KMgR7Q==}
peerDependencies:
react: '*'
react-native: '*'
- react-native-is-edge-to-edge@1.2.1:
- resolution: {integrity: sha512-FLbPWl/MyYQWz+KwqOZsSyj2JmLKglHatd3xLZWskXOpRaio4LfEDEz8E/A6uD8QoTHW6Aobw1jbEwK7KMgR7Q==}
+ react-native-is-edge-to-edge@1.3.1:
+ resolution: {integrity: sha512-NIXU/iT5+ORyCc7p0z2nnlkouYKX425vuU1OEm6bMMtWWR9yvb+Xg5AZmImTKoF9abxCPqrKC3rOZsKzUYgYZA==}
peerDependencies:
react: '*'
react-native: '*'
@@ -5563,101 +5519,62 @@ packages:
'@react-native-community/datetimepicker': '>=6.7.0'
react-native: '>=0.65.0'
- react-native-modal@13.0.1:
- resolution: {integrity: sha512-UB+mjmUtf+miaG/sDhOikRfBOv0gJdBU2ZE1HtFWp6UixW9jCk/bhGdHUgmZljbPpp0RaO/6YiMmQSSK3kkMaw==}
- peerDependencies:
- react: '*'
- react-native: '>=0.65.0'
-
- react-native-monorepo-config@0.1.10:
- resolution: {integrity: sha512-v0rlaLZiCUg95Mpw6xNRQce5k9yio0qscKjNQaPtFYMNL75YugS2UPUItIPLIRbZubK+s2/LRzBjX+mdyUgh4g==}
-
- react-native-pager-view@6.5.1:
- resolution: {integrity: sha512-YdX7bP+rPYvATMU7HzlMq9JaG3ui/+cVRbFZFGW+QshDULANFg9ECR1BA7H7JTIcO/ZgWCwF+1aVmYG5yBA9Og==}
- peerDependencies:
- react: '*'
- react-native: '*'
-
- react-native-pager-view@6.9.1:
- resolution: {integrity: sha512-uUT0MMMbNtoSbxe9pRvdJJKEi9snjuJ3fXlZhG8F2vVMOBJVt/AFtqMPUHu9yMflmqOr08PewKzj9EPl/Yj+Gw==}
- peerDependencies:
- react: '*'
- react-native: '*'
-
- react-native-picker-select@9.3.1:
- resolution: {integrity: sha512-o621HcsKJfJkpYeP/PZQiZTKbf8W7FT08niLFL0v1pGkIQyak5IfzfinV2t+/l1vktGwAH2Tt29LrP/Hc5fk3A==}
- peerDependencies:
- '@react-native-picker/picker': ^2.4.0
-
- react-native-reanimated@4.1.2:
- resolution: {integrity: sha512-qzmQiFrvjm62pRBcj97QI9Xckc3EjgHQoY1F2yjktd0kpjhoyePeuTEXjYRCAVIy7IV/1cfeSup34+zFThFoHQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- react: '*'
- react-native: '*'
- react-native-worklets: '>=0.5.0'
-
- react-native-safe-area-context@5.6.1:
- resolution: {integrity: sha512-/wJE58HLEAkATzhhX1xSr+fostLsK8Q97EfpfMDKo8jlOc1QKESSX/FQrhk7HhQH/2uSaox4Y86sNaI02kteiA==}
+ react-native-pager-view@8.0.0:
+ resolution: {integrity: sha512-oAwlWT1lhTkIs9HhODnjNNl/owxzn9DP1MbP+az6OTUdgbmzA16Up83sBH8NRKwrH8rNm7iuWnX1qMqiiWOLhg==}
peerDependencies:
react: '*'
react-native: '*'
- react-native-screens@4.16.0:
- resolution: {integrity: sha512-yIAyh7F/9uWkOzCi1/2FqvNvK6Wb9Y1+Kzn16SuGfN9YFJDTbwlzGRvePCNTOX0recpLQF3kc2FmvMUhyTCH1Q==}
+ 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-svg@15.12.1:
- resolution: {integrity: sha512-vCuZJDf8a5aNC2dlMovEv4Z0jjEUET53lm/iILFnFewa15b4atjVxU6Wirm6O9y6dEsdjDZVD7Q3QM4T1wlI8g==}
+ react-native-safe-area-context@5.6.2:
+ resolution: {integrity: sha512-4XGqMNj5qjUTYywJqpdWZ9IG8jgkS3h06sfVjfw5yZQZfWnRFXczi0GnYyFyCc2EBps/qFmoCH8fez//WumdVg==}
peerDependencies:
react: '*'
react-native: '*'
- react-native-tab-view@3.5.2:
- resolution: {integrity: sha512-nE5WqjbeEPsWQx4mtz81QGVvgHRhujTNIIZiMCx3Bj6CBFDafbk7XZp9ocmtzXUQaZ4bhtVS43R4FIiR4LboJw==}
+ react-native-screens@4.23.0:
+ resolution: {integrity: sha512-XhO3aK0UeLpBn4kLecd+J+EDeRRJlI/Ro9Fze06vo1q163VeYtzfU9QS09/VyDFMWR1qxDC1iazCArTPSFFiPw==}
peerDependencies:
react: '*'
react-native: '*'
- react-native-pager-view: '*'
- react-native-toast-message@2.1.6:
- resolution: {integrity: sha512-VctXuq20vmRa9AE13acaNZhrLcS3FaBS2zEevS3+vhBsnVZYG0FIlWIis9tVnpnNxUb3ART+BWtwQjzSttXTng==}
+ react-native-svg@15.15.3:
+ resolution: {integrity: sha512-/k4KYwPBLGcx2f5d4FjE+vCScK7QOX14cl2lIASJ28u4slHHtIhL0SZKU7u9qmRBHxTCKPoPBtN6haT1NENJNA==}
peerDependencies:
react: '*'
react-native: '*'
- react-native-url-polyfill@2.0.0:
- resolution: {integrity: sha512-My330Do7/DvKnEvwQc0WdcBnFPploYKp9CYlefDXzIdEaA+PAhDYllkvGeEroEzvc4Kzzj2O4yVdz8v6fjRvhA==}
+ react-native-url-polyfill@3.0.0:
+ resolution: {integrity: sha512-aA5CiuUCUb/lbrliVCJ6lZ17/RpNJzvTO/C7gC/YmDQhTUoRD5q5HlJfwLWcxz4VgAhHwXKzhxH+wUN24tAdqg==}
peerDependencies:
react-native: '*'
- react-native-vector-icons@10.2.0:
- resolution: {integrity: sha512-n5HGcxUuVaTf9QJPs/W22xQpC2Z9u0nb0KgLPnVltP8vdUvOp6+R26gF55kilP/fV4eL4vsAHUqUjewppJMBOQ==}
- deprecated: react-native-vector-icons package has moved to a new model of per-icon-family packages. See the https://github.com/oblador/react-native-vector-icons/blob/master/MIGRATION.md on how to migrate
- hasBin: true
-
- react-native-web@0.21.1:
- resolution: {integrity: sha512-BeNsgwwe4AXUFPAoFU+DKjJ+CVQa3h54zYX77p7GVZrXiiNo3vl03WYDYVEy5R2J2HOPInXtQZB5gmj3vuzrKg==}
+ react-native-web@0.21.2:
+ resolution: {integrity: sha512-SO2t9/17zM4iEnFvlu2DA9jqNbzNhoUP+AItkoCOyFmDMOhUnBBznBDCYN92fGdfAkfQlWzPoez6+zLxFNsZEg==}
peerDependencies:
react: ^18.0.0 || ^19.0.0
react-dom: ^18.0.0 || ^19.0.0
- react-native-worklets@0.5.1:
- resolution: {integrity: sha512-lJG6Uk9YuojjEX/tQrCbcbmpdLCSFxDK1rJlkDhgqkVi1KZzG7cdcBFQRqyNOOzR9Y0CXNuldmtWTGOyM0k0+w==}
+ react-native-worklets@0.7.2:
+ resolution: {integrity: sha512-DuLu1kMV/Uyl9pQHp3hehAlThoLw7Yk2FwRTpzASOmI+cd4845FWn3m2bk9MnjUw8FBRIyhwLqYm2AJaXDXsog==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': '*'
react: '*'
react-native: '*'
- react-native@0.81.4:
- resolution: {integrity: sha512-bt5bz3A/+Cv46KcjV0VQa+fo7MKxs17RCcpzjftINlen4ZDUl0I6Ut+brQ2FToa5oD0IB0xvQHfmsg2EDqsZdQ==}
+ react-native@0.83.2:
+ resolution: {integrity: sha512-ZDma3SLkRN2U2dg0/EZqxNBAx4of/oTnPjXAQi299VLq2gdnbZowGy9hzqv+O7sTA62g+lM1v+2FM5DUnJ/6hg==}
engines: {node: '>= 20.19.4'}
hasBin: true
peerDependencies:
- '@types/react': ^19.1.0
- react: ^19.1.0
+ '@types/react': ^19.1.1
+ react: ^19.2.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -5676,8 +5593,8 @@ packages:
'@types/react':
optional: true
- react-remove-scroll@2.7.1:
- resolution: {integrity: sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==}
+ react-remove-scroll@2.7.2:
+ resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==}
engines: {node: '>=10'}
peerDependencies:
'@types/react': '*'
@@ -5686,11 +5603,6 @@ packages:
'@types/react':
optional: true
- react-shallow-renderer@16.15.0:
- resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==}
- peerDependencies:
- react: ^16.0.0 || ^17.0.0 || ^18.0.0
-
react-style-singleton@2.2.3:
resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
engines: {node: '>=10'}
@@ -5701,25 +5613,17 @@ packages:
'@types/react':
optional: true
- react-test-renderer@18.2.0:
- resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==}
- peerDependencies:
- react: ^18.2.0
-
- react@19.1.0:
- resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
+ react@19.2.0:
+ resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==}
engines: {node: '>=0.10.0'}
read-pkg@3.0.0:
resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==}
engines: {node: '>=4'}
- readable-stream@2.3.8:
- resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
-
- readdirp@4.1.2:
- resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
- engines: {node: '>= 14.18.0'}
+ readdirp@5.0.0:
+ resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
+ engines: {node: '>= 20.19.0'}
recast@0.23.11:
resolution: {integrity: sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==}
@@ -5733,9 +5637,6 @@ packages:
resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- reflect-metadata@0.2.2:
- resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==}
-
reflect.getprototypeof@1.0.10:
resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
engines: {node: '>= 0.4'}
@@ -5769,30 +5670,17 @@ packages:
regjsgen@0.8.0:
resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
- regjsparser@0.12.0:
- resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
- hasBin: true
-
regjsparser@0.13.0:
resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==}
hasBin: true
+ remeda@2.33.6:
+ resolution: {integrity: sha512-tazDGH7s75kUPGBKLvhgBEHMgW+TdDFhjUAMdQj57IoWz6HsGa5D2RX5yDUz6IIqiRRvZiaEHzCzWdTeixc/Kg==}
+
require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
- require-from-string@2.0.2:
- resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
- engines: {node: '>=0.10.0'}
-
- requireg@0.2.2:
- resolution: {integrity: sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==}
- engines: {node: '>= 4.0.0'}
-
- resolve-from@3.0.0:
- resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==}
- engines: {node: '>=4'}
-
resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
@@ -5801,47 +5689,33 @@ packages:
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
engines: {node: '>=8'}
- resolve-global@1.0.0:
- resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==}
- engines: {node: '>=8'}
-
resolve-pkg-maps@1.0.0:
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
- resolve-workspace-root@2.0.0:
- resolution: {integrity: sha512-IsaBUZETJD5WsI11Wt8PKHwaIe45or6pwNc8yflvLJ4DWtImK9kuLoH5kUva/2Mmx/RdIyr4aONNSa2v9LTJsw==}
-
- resolve.exports@2.0.3:
- resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
- engines: {node: '>=10'}
+ resolve-workspace-root@2.0.1:
+ resolution: {integrity: sha512-nR23LHAvaI6aHtMg6RWoaHpdR4D881Nydkzi2CixINyg9T00KgaJdJI6Vwty+Ps8WLxZHuxsS0BseWjxSA4C+w==}
- resolve@1.22.10:
- resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+ resolve@1.22.11:
+ resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
engines: {node: '>= 0.4'}
hasBin: true
- resolve@1.7.1:
- resolution: {integrity: sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==}
-
- resolve@2.0.0-next.5:
- resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
+ resolve@2.0.0-next.6:
+ resolution: {integrity: sha512-3JmVl5hMGtJ3kMmB3zi3DL25KfkCEyy3Tw7Gmw7z5w8M9WlwoPFnIvwChzu1+cF3iaK3sp18hhPz8ANeimdJfA==}
+ engines: {node: '>= 0.4'}
hasBin: true
restore-cursor@2.0.0:
resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==}
engines: {node: '>=4'}
- reusify@1.1.0:
- resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
- engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
-
rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- rou3@0.5.1:
- resolution: {integrity: sha512-OXMmJ3zRk2xeXFGfA3K+EOPHC5u7RDFG7lIOx0X1pdnhUkI8MdVrbV+sNsD80ElpUZ+MRHdyxPnFthq9VHs8uQ==}
+ rou3@0.7.12:
+ resolution: {integrity: sha512-iFE4hLDuloSWcD7mjdCDhx2bKcIsYbtOTpfH5MHHLSKMOUyjqQXTeZVa289uuwEGEKFoE/BAPbhaU4B774nceg==}
rtl-detect@1.1.2:
resolution: {integrity: sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==}
@@ -5850,16 +5724,10 @@ packages:
resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==}
engines: {node: '>=18'}
- run-parallel@1.2.0:
- resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
-
safe-array-concat@1.1.3:
resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
engines: {node: '>=0.4'}
- safe-buffer@5.1.2:
- resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
-
safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
@@ -5871,14 +5739,12 @@ packages:
resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
engines: {node: '>= 0.4'}
- sax@1.4.1:
- resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
+ sax@1.5.0:
+ resolution: {integrity: sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA==}
+ engines: {node: '>=11.0.0'}
- scheduler@0.23.2:
- resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
-
- scheduler@0.26.0:
- resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
+ scheduler@0.27.0:
+ resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
scslre@0.3.0:
resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
@@ -5897,32 +5763,33 @@ packages:
engines: {node: '>=10'}
hasBin: true
- semver@7.7.2:
- resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
+ semver@7.7.3:
+ resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
engines: {node: '>=10'}
hasBin: true
- send@0.19.0:
- resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
- engines: {node: '>= 0.8.0'}
+ semver@7.7.4:
+ resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
+ engines: {node: '>=10'}
+ hasBin: true
- send@0.19.1:
- resolution: {integrity: sha512-p4rRk4f23ynFEfcD9LA0xRYngj+IyGiEYyqqOak8kaN0TvNmuxC2dcVeBn62GpCeR2CpWqyHCNScTP91QbAVFg==}
+ send@0.19.2:
+ resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==}
engines: {node: '>= 0.8.0'}
serialize-error@2.1.0:
resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==}
engines: {node: '>=0.10.0'}
- serve-static@1.16.2:
- resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
+ serve-static@1.16.3:
+ resolution: {integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==}
engines: {node: '>= 0.8.0'}
server-only@0.0.1:
resolution: {integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==}
- set-cookie-parser@2.7.1:
- resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==}
+ set-cookie-parser@3.0.1:
+ resolution: {integrity: sha512-n7Z7dXZhJbwuAHhNzkTti6Aw9QDDjZtm3JTpTGATIdNzdQz5GuFs22w90BcvF4INfnrL5xrX3oGsuqO5Dx3A1Q==}
set-function-length@1.2.2:
resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
@@ -5942,8 +5809,8 @@ packages:
setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
- sf-symbols-typescript@2.1.0:
- resolution: {integrity: sha512-ezT7gu/SHTPIOEEoG6TF+O0m5eewl0ZDAO4AtdBi5HjsrUI6JdCG17+Q8+aKp0heM06wZKApRCn5olNbs0Wb/A==}
+ sf-symbols-typescript@2.2.0:
+ resolution: {integrity: sha512-TPbeg0b7ylrswdGCji8FRGFAKuqbpQlLbL8SOle3j1iHSs5Ob5mhvMAxWN2UItOjgALAB5Zp3fmMfj8mbWvXKw==}
engines: {node: '>=10'}
shallowequal@1.1.0:
@@ -5988,10 +5855,6 @@ packages:
signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- signal-exit@4.1.0:
- resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
- engines: {node: '>=14'}
-
simple-plist@1.3.1:
resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==}
@@ -6012,8 +5875,8 @@ packages:
snake-case@3.0.4:
resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==}
- sonner-native@0.21.1:
- resolution: {integrity: sha512-00RSmfVBd/XfQdRh7sqgFUjftx09HRgEMnZei4CVKcRKeqRcq9DXn5o1nJhz3aA4Cyf5k2+0kK4spdWtAtNqSA==}
+ sonner-native@0.23.1:
+ resolution: {integrity: sha512-p4WRxVoTjLTeuLcvuyMNzgd81tEUS0ayoqXEFhi5GNU1okbvBpqU5GiUjv14DgiLUYXPUQ0qq+OdrFJM2j4j+w==}
peerDependencies:
react: '*'
react-native: '*'
@@ -6038,6 +5901,9 @@ packages:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
+ sparse-bitfield@3.0.3:
+ resolution: {integrity: sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==}
+
spdx-correct@3.2.0:
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
@@ -6047,8 +5913,8 @@ packages:
spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
- spdx-license-ids@3.0.22:
- resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==}
+ spdx-license-ids@3.0.23:
+ resolution: {integrity: sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==}
split-on-first@1.1.0:
resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==}
@@ -6075,19 +5941,16 @@ packages:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
- statuses@2.0.1:
- resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
+ statuses@2.0.2:
+ resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
engines: {node: '>= 0.8'}
stop-iteration-iterator@1.1.0:
resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
engines: {node: '>= 0.4'}
- store2@2.14.4:
- resolution: {integrity: sha512-srTItn1GOvyvOycgxjAnPA63FZNwy0PTyUBFMHRM+hVFltAeoh0LmNBz9SZqUS9mMqGk8rfyWyXn3GH5ReJ8Zw==}
-
- storybook@9.1.10:
- resolution: {integrity: sha512-4+U7gF9hMpGilQmdVJwQaVZZEkD7XwC4ZDmBa51mobaPYelELEMoMfNM2hLyvB2x12gk1IJui1DnwOE4t+MXhw==}
+ storybook@10.2.17:
+ resolution: {integrity: sha512-yueTpl5YJqLzQqs3CanxNdAAfFU23iP0j+JVJURE4ghfEtRmWfWoZWLGkVcyjmgum7UmjwAlqRuOjQDNvH89kw==}
hasBin: true
peerDependencies:
prettier: ^2 || ^3
@@ -6103,17 +5966,13 @@ packages:
resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
engines: {node: '>=4'}
- string-ts@2.2.1:
- resolution: {integrity: sha512-Q2u0gko67PLLhbte5HmPfdOjNvUKbKQM+mCNQae6jE91DmoFHY6HH9GcdqCeNx87DZ2KKjiFxmA0R/42OneGWw==}
+ string-ts@2.3.1:
+ resolution: {integrity: sha512-xSJq+BS52SaFFAVxuStmx6n5aYZU571uYUnUrPXkPFCfdHyZMMlbP2v2Wx5sNBnAVzq/2+0+mcBLBa3Xa5ubYw==}
string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
- string-width@5.1.2:
- resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
- engines: {node: '>=12'}
-
string.prototype.matchall@4.0.12:
resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
engines: {node: '>= 0.4'}
@@ -6137,9 +5996,6 @@ packages:
resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
engines: {node: '>= 0.4'}
- string_decoder@1.1.1:
- resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
-
strip-ansi@5.2.0:
resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==}
engines: {node: '>=6'}
@@ -6148,30 +6004,18 @@ packages:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
- strip-ansi@7.1.2:
- resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
- engines: {node: '>=12'}
-
strip-bom@3.0.0:
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
- strip-final-newline@2.0.0:
- resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
- engines: {node: '>=6'}
-
strip-indent@3.0.0:
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
engines: {node: '>=8'}
- strip-indent@4.1.0:
- resolution: {integrity: sha512-OA95x+JPmL7kc7zCu+e+TeYxEiaIyndRx0OrBcK2QPPH09oAndr2ALvymxWA+Lx1PYYvFUm4O63pRkdJAaW96w==}
+ strip-indent@4.1.1:
+ resolution: {integrity: sha512-SlyRoSkdh1dYP0PzclLE7r0M9sgbFKKMFXpFRUMNuKhQSbC6VQIGzq3E0qsfvGJaUFJPGv6Ws1NZ/haTAjfbMA==}
engines: {node: '>=12'}
- strip-json-comments@2.0.1:
- resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
- engines: {node: '>=0.10.0'}
-
strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
@@ -6182,11 +6026,6 @@ packages:
styleq@0.1.3:
resolution: {integrity: sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==}
- sucrase@3.35.0:
- resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
- engines: {node: '>=16 || 14 >=14.17'}
- hasBin: true
-
supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
@@ -6210,25 +6049,35 @@ packages:
svg-parser@2.0.4:
resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==}
- svgo@3.3.2:
- resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==}
+ svgo@3.3.3:
+ resolution: {integrity: sha512-+wn7I4p7YgJhHs38k2TNjy1vCfPIfLIJWR5MnCStsN8WuuTcBnRKcMHQLMM2ijxGZmDoZwNv8ipl5aTTen62ng==}
engines: {node: '>=14.0.0'}
hasBin: true
- tar@7.5.1:
- resolution: {integrity: sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==}
- engines: {node: '>=18'}
+ tailwind-merge@3.5.0:
+ resolution: {integrity: sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==}
- temp-dir@2.0.0:
- resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
- engines: {node: '>=8'}
+ tailwindcss-animate@1.0.7:
+ resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
+ peerDependencies:
+ tailwindcss: '>=3.0.0 || insiders'
+
+ tailwindcss@4.1.17:
+ resolution: {integrity: sha512-j9Ee2YjuQqYT9bbRTfTZht9W/ytp5H+jJpZKiYdP/bpnXARAuELt9ofP0lPnmHjbga7SNQIxdTAXCmtKVYjN+Q==}
+
+ tailwindcss@4.2.1:
+ resolution: {integrity: sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==}
+
+ tapable@2.3.0:
+ resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
+ engines: {node: '>=6'}
terminal-link@2.1.1:
resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==}
engines: {node: '>=8'}
- terser@5.44.0:
- resolution: {integrity: sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==}
+ terser@5.46.0:
+ resolution: {integrity: sha512-jTwoImyr/QbOWFFso3YoU3ik0jBBDJ6JTOQiy/J2YxVJdZCc+5u7skhNwiOR3FQIygFqVUPHl7qbbxtjW2K3Qg==}
engines: {node: '>=10'}
hasBin: true
@@ -6236,30 +6085,18 @@ packages:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
- text-table@0.2.0:
- resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
-
- thenify-all@1.6.0:
- resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
- engines: {node: '>=0.8'}
-
- thenify@3.3.1:
- resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
-
throat@5.0.0:
resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==}
- through2@2.0.5:
- resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
-
tiny-invariant@1.3.3:
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
tinycolor2@1.6.0:
resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
- tinyexec@1.0.1:
- resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==}
+ tinyexec@1.0.2:
+ resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==}
+ engines: {node: '>=18'}
tinyglobby@0.2.15:
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
@@ -6284,11 +6121,18 @@ packages:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
+ toqr@0.1.1:
+ resolution: {integrity: sha512-FWAPzCIHZHnrE/5/w9MPk0kK25hSQSH2IKhYh9PyjS3SG/+IEMvlwIHbhz+oF7xl54I+ueZlVnMjyzdSwLmAwA==}
+
tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- ts-api-utils@2.1.0:
- resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
+ tr46@5.1.1:
+ resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==}
+ engines: {node: '>=18'}
+
+ ts-api-utils@2.4.0:
+ resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
engines: {node: '>=18.12'}
peerDependencies:
typescript: '>=4.8.4'
@@ -6302,11 +6146,8 @@ packages:
resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==}
engines: {node: '>=6.10'}
- ts-interface-checker@0.1.13:
- resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
-
- ts-pattern@5.8.0:
- resolution: {integrity: sha512-kIjN2qmWiHnhgr5DAkAafF9fwb0T5OhMVSWrm8XEdTFnX6+wfXwYOFjeF86UZ54vduqiR7BfqScFmXSzSaH8oA==}
+ ts-pattern@5.9.0:
+ resolution: {integrity: sha512-6s5V71mX8qBUmlgbrfL33xDUwO0fq48rxAu2LBE11WBeGdpCPOsXksQbZJHvHwhrd3QjUusd3mAOM5Gg0mFBLg==}
ts-plugin-sort-import-suggestions@1.0.4:
resolution: {integrity: sha512-85n5lm2OQQ+b7aRNK9omU1gmjMNXRsgeLwojm5u4OSY5sVBkAHTcgMQPEeHMNlyyfFW0uXnwgqAU0pNfhD96Bw==}
@@ -6314,16 +6155,9 @@ packages:
tsconfig-paths@3.15.0:
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
- tslib@1.14.1:
- resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
-
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
- tsyringe@4.10.0:
- resolution: {integrity: sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw==}
- engines: {node: '>= 6.0.0'}
-
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
@@ -6332,10 +6166,6 @@ packages:
resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
engines: {node: '>=4'}
- type-fest@0.20.2:
- resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
- engines: {node: '>=10'}
-
type-fest@0.21.3:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
@@ -6344,10 +6174,6 @@ packages:
resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
engines: {node: '>=8'}
- type-fest@2.19.0:
- resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
- engines: {node: '>=12.20'}
-
typed-array-buffer@1.0.3:
resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
engines: {node: '>= 0.4'}
@@ -6364,15 +6190,15 @@ packages:
resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
engines: {node: '>= 0.4'}
- typescript-eslint@8.44.1:
- resolution: {integrity: sha512-0ws8uWGrUVTjEeN2OM4K1pLKHK/4NiNP/vz6ns+LjT/6sqpaYzIVFajZb1fj/IDwpsrrHb3Jy0Qm5u9CPcKaeg==}
+ typescript-eslint@8.57.0:
+ resolution: {integrity: sha512-W8GcigEMEeB07xEZol8oJ26rigm3+bfPHxHvwbYUlu1fUDsGuQ7Hiskx5xGW/xM4USc9Ephe3jtv7ZYPQntHeA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.0.0'
- typescript@5.9.2:
- resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==}
+ typescript@5.9.3:
+ resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
engines: {node: '>=14.17'}
hasBin: true
@@ -6384,28 +6210,12 @@ packages:
resolution: {integrity: sha512-LbBDqdIC5s8iROCUjMbW1f5dJQTEFB1+KO9ogbvlb3nm9n4YHa5p4KTvFPWvh2Hs8gZMBuiB1/8+pdfe/tDPug==}
hasBin: true
- uglify-js@3.19.3:
- resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
- engines: {node: '>=0.8.0'}
- hasBin: true
-
unbox-primitive@1.1.0:
resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
engines: {node: '>= 0.4'}
- unc-path-regex@0.1.2:
- resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==}
- engines: {node: '>=0.10.0'}
-
- uncrypto@0.1.3:
- resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
-
- undici-types@7.13.0:
- resolution: {integrity: sha512-Ov2Rr9Sx+fRgagJ5AX0qvItZG/JKKoBRAVITs1zk7IqZGTJUwgUr7qoYBpWwakpWilTZFM98rG/AFRocu10iIQ==}
-
- undici@6.21.3:
- resolution: {integrity: sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==}
- engines: {node: '>=18.17'}
+ undici-types@7.18.2:
+ resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
unicode-canonical-property-names-ecmascript@2.0.1:
resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
@@ -6423,13 +6233,12 @@ packages:
resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==}
engines: {node: '>=4'}
- unique-string@2.0.0:
- resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
- engines: {node: '>=8'}
-
- universalify@2.0.1:
- resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
- engines: {node: '>= 10.0.0'}
+ uniwind@1.5.0:
+ resolution: {integrity: sha512-WmUXnGqVI2yf13DjWOj5XGBZDZphor44EbvSHEEuoNoROwIXUtRDrSyMbUvxE+F8dU8+IaugzgGlPSITVvjj/w==}
+ peerDependencies:
+ react: '>=19.0.0'
+ react-native: '>=0.81.0'
+ tailwindcss: '>=4'
unpipe@1.0.0:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
@@ -6438,8 +6247,8 @@ packages:
unrs-resolver@1.11.1:
resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==}
- update-browserslist-db@1.1.3:
- resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
+ update-browserslist-db@1.2.3:
+ resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -6457,13 +6266,8 @@ packages:
'@types/react':
optional: true
- use-latest-callback@0.1.11:
- resolution: {integrity: sha512-8nhb73STSD/z3GTHklvNjL8F9wMOo0bj0AFnulpIYuFTm6aQlT3ZcNbXF2YurKImIY8+kpSFSDHZZyQmurGrhw==}
- peerDependencies:
- react: '>=16.8'
-
- use-latest-callback@0.2.4:
- resolution: {integrity: sha512-LS2s2n1usUUnDq4oVh1ca6JFX9uSqUncTfAm44WMg0v6TxL7POUTk1B044NH8TeLkFbNajIsgDHcgNpNzZucdg==}
+ use-latest-callback@0.2.6:
+ resolution: {integrity: sha512-FvRG9i1HSo0wagmX63Vrm8SnlUU3LMM3WyZkQ76RnslpBrX694AdG4A0zQBx2B3ZifFA0yv/BaEHGBnEax5rZg==}
peerDependencies:
react: '>=16.8'
@@ -6477,17 +6281,11 @@ packages:
'@types/react':
optional: true
- use-sync-external-store@1.5.0:
- resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==}
+ use-sync-external-store@1.6.0:
+ resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- util-deprecate@1.0.2:
- resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
-
- util@0.12.5:
- resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
-
utils-merge@1.0.1:
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
@@ -6496,9 +6294,6 @@ packages:
resolution: {integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==}
hasBin: true
- validate-color@2.2.4:
- resolution: {integrity: sha512-Znolz+b6CwW6eBXYld7MFM3O7funcdyRfjKC/X9hqYV/0VcC5LB/L45mff7m3dIn9wdGdNOAQ/fybNuD5P/HDw==}
-
validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
@@ -6539,13 +6334,24 @@ packages:
resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==}
engines: {node: '>=8'}
+ webidl-conversions@7.0.0:
+ resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
+ engines: {node: '>=12'}
+
whatwg-fetch@3.6.20:
resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
+ whatwg-url-minimum@0.1.1:
+ resolution: {integrity: sha512-u2FNVjFVFZhdjb502KzXy1gKn1mEisQRJssmSJT8CPhZdZa0AP6VCbWlXERKyGu0l09t0k50FiDiralpGhBxgA==}
+
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@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
@@ -6561,8 +6367,8 @@ packages:
resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
engines: {node: '>= 0.4'}
- which-typed-array@1.1.19:
- resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==}
+ which-typed-array@1.1.20:
+ resolution: {integrity: sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==}
engines: {node: '>= 0.4'}
which@1.3.1:
@@ -6574,24 +6380,14 @@ packages:
engines: {node: '>= 8'}
hasBin: true
- wonka@6.3.5:
- resolution: {integrity: sha512-SSil+ecw6B4/Dm7Pf2sAshKQ5hWFvfyGlfPbEd6A14dOH6VDjrmbY86u6nZvy9omGwwIPFR8V41+of1EezgoUw==}
-
word-wrap@1.2.5:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
- wordwrap@1.0.0:
- resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
-
wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
- wrap-ansi@8.1.0:
- resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
- engines: {node: '>=12'}
-
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
@@ -6599,17 +6395,6 @@ packages:
resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- ws@6.2.3:
- resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
-
ws@7.5.10:
resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==}
engines: {node: '>=8.3.0'}
@@ -6622,8 +6407,8 @@ packages:
utf-8-validate:
optional: true
- ws@8.18.3:
- resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==}
+ ws@8.19.0:
+ resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -6634,6 +6419,14 @@ packages:
utf-8-validate:
optional: true
+ wsl-utils@0.1.0:
+ resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
+ engines: {node: '>=18'}
+
+ wsl-utils@0.3.1:
+ resolution: {integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==}
+ engines: {node: '>=20'}
+
xcode@3.0.1:
resolution: {integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==}
engines: {node: '>=10.0.0'}
@@ -6650,10 +6443,6 @@ packages:
resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==}
engines: {node: '>=8.0'}
- xtend@4.0.2:
- resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
- engines: {node: '>=0.4'}
-
y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
@@ -6661,27 +6450,15 @@ packages:
yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- yallist@5.0.0:
- resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
- engines: {node: '>=18'}
-
- yaml@2.8.1:
- resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==}
+ yaml@2.8.2:
+ resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
engines: {node: '>= 14.6'}
hasBin: true
- yargs-parser@20.2.9:
- resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
- engines: {node: '>=10'}
-
yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
- yargs@16.2.0:
- resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
- engines: {node: '>=10'}
-
yargs@17.7.2:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
@@ -6690,19 +6467,14 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- zod-to-json-schema@3.24.6:
- resolution: {integrity: sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==}
- peerDependencies:
- zod: ^3.24.1
-
zod@3.25.76:
resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
- zod@4.1.11:
- resolution: {integrity: sha512-WPsqwxITS2tzx1bzhIKsEs19ABD5vmCVa4xBo2tq/SrV4RNZtfws1EnCWQXM6yh8bD08a1idvkB5MZSBiZsjwg==}
+ zod@4.3.6:
+ resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==}
- zustand@5.0.8:
- resolution: {integrity: sha512-gyPKpIaxY9XcO2vSMrLbiER7QMAMGOQZVRdJ6Zi782jkbzZygq5GI9nG8g+sMgitRtndwaBSl7uiqC49o1SSiw==}
+ zustand@5.0.11:
+ resolution: {integrity: sha512-fdZY+dk7zn/vbWNCYmzZULHRrss0jx5pPFiOuMZ/5HJN6Yv3u+1Wswy/4MpZEkEGhtNH+pwxZB8OKgUBPzYAGg==}
engines: {node: '>=12.20.0'}
peerDependencies:
'@types/react': '>=18.0.0'
@@ -6721,39 +6493,27 @@ packages:
snapshots:
- '@0no-co/graphql.web@1.2.0': {}
-
'@adobe/css-tools@4.4.4': {}
- '@ark/schema@0.46.0':
- dependencies:
- '@ark/util': 0.46.0
-
- '@ark/util@0.46.0': {}
-
- '@babel/code-frame@7.10.4':
- dependencies:
- '@babel/highlight': 7.25.9
-
- '@babel/code-frame@7.27.1':
+ '@babel/code-frame@7.29.0':
dependencies:
- '@babel/helper-validator-identifier': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.28.4': {}
+ '@babel/compat-data@7.29.0': {}
- '@babel/core@7.28.4':
+ '@babel/core@7.29.0':
dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.3
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
- '@babel/helpers': 7.28.4
- '@babel/parser': 7.28.4
- '@babel/template': 7.27.2
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/code-frame': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
+ '@babel/helpers': 7.28.6
+ '@babel/parser': 7.29.0
+ '@babel/template': 7.28.6
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
'@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
debug: 4.4.3
@@ -6763,1180 +6523,951 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.28.3':
+ '@babel/generator@7.29.1':
dependencies:
- '@babel/parser': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
'@jridgewell/gen-mapping': 0.3.13
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
'@babel/helper-annotate-as-pure@7.27.3':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.29.0
- '@babel/helper-compilation-targets@7.27.2':
+ '@babel/helper-compilation-targets@7.28.6':
dependencies:
- '@babel/compat-data': 7.28.4
+ '@babel/compat-data': 7.29.0
'@babel/helper-validator-option': 7.27.1
- browserslist: 4.26.3
+ browserslist: 4.28.1
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.4)':
+ '@babel/helper-create-class-features-plugin@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-member-expression-to-functions': 7.27.1
+ '@babel/helper-member-expression-to-functions': 7.28.5
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
+ '@babel/helper-replace-supers': 7.28.6(@babel/core@7.29.0)
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.29.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.4)':
+ '@babel/helper-create-regexp-features-plugin@7.28.5(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
'@babel/helper-annotate-as-pure': 7.27.3
regexpu-core: 6.4.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.4)':
+ '@babel/helper-define-polyfill-provider@0.6.7(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
debug: 4.4.3
lodash.debounce: 4.0.8
- resolve: 1.22.10
+ resolve: 1.22.11
transitivePeerDependencies:
- supports-color
'@babel/helper-globals@7.28.0': {}
- '@babel/helper-member-expression-to-functions@7.27.1':
+ '@babel/helper-member-expression-to-functions@7.28.5':
dependencies:
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.27.1':
+ '@babel/helper-module-imports@7.28.6':
dependencies:
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)':
+ '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.4
+ '@babel/core': 7.29.0
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.27.1':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.29.0
- '@babel/helper-plugin-utils@7.27.1': {}
+ '@babel/helper-plugin-utils@7.28.6': {}
- '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.4)':
+ '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-wrap-function': 7.28.3
- '@babel/traverse': 7.28.4
+ '@babel/helper-wrap-function': 7.28.6
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.4)':
+ '@babel/helper-replace-supers@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-member-expression-to-functions': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-member-expression-to-functions': 7.28.5
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
transitivePeerDependencies:
- supports-color
'@babel/helper-string-parser@7.27.1': {}
- '@babel/helper-validator-identifier@7.27.1': {}
+ '@babel/helper-validator-identifier@7.28.5': {}
'@babel/helper-validator-option@7.27.1': {}
- '@babel/helper-wrap-function@7.28.3':
- dependencies:
- '@babel/template': 7.27.2
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helpers@7.28.4':
- dependencies:
- '@babel/template': 7.27.2
- '@babel/types': 7.28.4
-
- '@babel/highlight@7.25.9':
- dependencies:
- '@babel/helper-validator-identifier': 7.27.1
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.1.1
-
- '@babel/parser@7.28.4':
- dependencies:
- '@babel/types': 7.28.4
-
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.4)':
+ '@babel/helper-wrap-function@7.28.6':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.4
+ '@babel/template': 7.28.6
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.4)':
+ '@babel/helpers@7.28.6':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
- transitivePeerDependencies:
- - supports-color
+ '@babel/template': 7.28.6
+ '@babel/types': 7.29.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.28.4)':
+ '@babel/parser@7.29.0':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.4
- transitivePeerDependencies:
- - supports-color
+ '@babel/types': 7.29.0
- '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.28.4)':
+ '@babel/plugin-proposal-decorators@7.29.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.28.4)
+ '@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
+ '@babel/plugin-syntax-decorators': 7.28.6(@babel/core@7.29.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-export-default-from@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
-
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.4)':
+ '@babel/plugin-proposal-export-default-from@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-export-default-from@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-decorators@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-export-default-from@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-flow@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-import-attributes@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.4)':
+ '@babel/plugin-transform-async-generator-functions@7.29.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4)
- '@babel/traverse': 7.28.4
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.29.0)
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-async-to-generator@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4)
+ '@babel/core': 7.29.0
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.29.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-block-scoping@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-block-scoping@7.28.4(@babel/core@7.28.4)':
+ '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@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.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-class-properties@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@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-static-block@7.28.3(@babel/core@7.28.4)':
+ '@babel/plugin-transform-class-static-block@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@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-classes@7.28.4(@babel/core@7.28.4)':
+ '@babel/plugin-transform-classes@7.28.4(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-compilation-targets': 7.28.6
'@babel/helper-globals': 7.28.0
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
- '@babel/traverse': 7.28.4
+ '@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-computed-properties@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/template': 7.27.2
-
- '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.4)':
+ '@babel/plugin-transform-classes@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.4
+ '@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-dotall-regex@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-computed-properties@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/template': 7.28.6
- '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.4)':
+ '@babel/plugin-transform-destructuring@7.28.5(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.4)
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/plugin-syntax-flow': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@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-function-name@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.4
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-literals@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-logical-assignment-operators@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.4
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-modules-commonjs@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.29.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-numeric-separator@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.28.4)':
+ '@babel/plugin-transform-object-rest-spread@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4)
- '@babel/traverse': 7.28.4
+ '@babel/core': 7.29.0
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.29.0)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.29.0)
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-optional-catch-binding@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@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.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-optional-chaining@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@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-parameters@7.27.7(@babel/core@7.28.4)':
+ '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-private-methods@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@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-private-property-in-object@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-private-property-in-object@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@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-property-literals@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.28.4)':
+ '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.4)
+ '@babel/core': 7.29.0
+ '@babel/plugin-transform-react-jsx': 7.28.6(@babel/core@7.29.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-react-jsx@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4)
- '@babel/types': 7.28.4
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0)
+ '@babel/types': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.28.4)':
+ '@babel/plugin-transform-regenerator@7.29.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-runtime@7.29.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-runtime@7.28.3(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-plugin-utils': 7.27.1
- babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.4)
- babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.4)
- babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.4)
+ '@babel/core': 7.29.0
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
+ babel-plugin-polyfill-corejs2: 0.4.16(@babel/core@7.29.0)
+ babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.29.0)
+ babel-plugin-polyfill-regenerator: 0.6.7(@babel/core@7.29.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-spread@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@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-sticky-regex@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-strict-mode@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.4)':
+ '@babel/plugin-transform-typescript@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.4)':
+ '@babel/preset-react@7.28.5(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/preset-env@7.28.3(@babel/core@7.28.4)':
- dependencies:
- '@babel/compat-data': 7.28.4
- '@babel/core': 7.28.4
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.28.4)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4)
- '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.4)
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-block-scoping': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.4)
- '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4)
- '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.4)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.4)
- babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.4)
- babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.4)
- babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.4)
- core-js-compat: 3.45.1
- semver: 6.3.1
+ '@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)
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/types': 7.28.4
- esutils: 2.0.3
-
- '@babel/preset-react@7.27.1(@babel/core@7.28.4)':
+ '@babel/preset-typescript@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.28.4)
+ '@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.27.1(@babel/core@7.28.4)':
+ '@babel/preset-typescript@7.28.5(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4)
+ '@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/runtime@7.28.4': {}
+ '@babel/runtime@7.28.6': {}
- '@babel/template@7.27.2':
+ '@babel/template@7.28.6':
dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/parser': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/code-frame': 7.29.0
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
- '@babel/traverse@7.28.4':
+ '@babel/traverse@7.29.0':
dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.3
+ '@babel/code-frame': 7.29.0
+ '@babel/generator': 7.29.1
'@babel/helper-globals': 7.28.0
- '@babel/parser': 7.28.4
- '@babel/template': 7.27.2
- '@babel/types': 7.28.4
+ '@babel/parser': 7.29.0
+ '@babel/template': 7.28.6
+ '@babel/types': 7.29.0
debug: 4.4.3
transitivePeerDependencies:
- supports-color
- '@babel/types@7.28.4':
+ '@babel/types@7.29.0':
dependencies:
'@babel/helper-string-parser': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
+
+ '@bearstudio/ui-state@1.1.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ dependencies:
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+
+ '@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1)':
+ dependencies:
+ '@better-auth/utils': 0.3.1
+ '@better-fetch/fetch': 1.1.21
+ '@standard-schema/spec': 1.1.0
+ better-call: 1.3.2(zod@4.3.6)
+ jose: 6.2.1
+ kysely: 0.28.11
+ nanostores: 1.1.1
+ zod: 4.3.6
+
+ '@better-auth/drizzle-adapter@1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)':
+ dependencies:
+ '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1)
+ '@better-auth/utils': 0.3.1
- '@bearstudio/ui-state@1.0.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@better-auth/expo@1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1))(better-auth@1.5.5(mongodb@7.1.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(expo-constants@55.0.7)(expo-linking@55.0.7)(expo-network@55.0.8(expo@55.0.6)(react@19.2.0))(expo-web-browser@55.0.9(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)))':
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1)
+ '@better-fetch/fetch': 1.1.21
+ better-auth: 1.5.5(mongodb@7.1.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ better-call: 1.3.2(zod@4.3.6)
+ zod: 4.3.6
+ optionalDependencies:
+ expo-constants: 55.0.7(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(typescript@5.9.3)
+ expo-linking: 55.0.7(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ expo-network: 55.0.8(expo@55.0.6)(react@19.2.0)
+ expo-web-browser: 55.0.9(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))
- '@better-auth/core@1.3.27':
+ '@better-auth/kysely-adapter@1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(kysely@0.28.11)':
dependencies:
- better-call: 1.0.19
- zod: 4.1.11
+ '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1)
+ '@better-auth/utils': 0.3.1
+ kysely: 0.28.11
- '@better-auth/expo@1.3.27(better-auth@1.3.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(expo-constants@18.0.9)(expo-crypto@15.0.7(expo@54.0.15))(expo-linking@8.0.8)(expo-secure-store@15.0.7(expo@54.0.15))(expo-web-browser@15.0.8(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)))':
+ '@better-auth/memory-adapter@1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)':
dependencies:
- '@better-fetch/fetch': 1.1.18
- better-auth: 1.3.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- expo-constants: 18.0.9(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
- expo-crypto: 15.0.7(expo@54.0.15)
- expo-linking: 8.0.8(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- expo-secure-store: 15.0.7(expo@54.0.15)
- expo-web-browser: 15.0.8(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
- zod: 4.1.11
+ '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1)
+ '@better-auth/utils': 0.3.1
- '@better-auth/utils@0.3.0': {}
+ '@better-auth/mongo-adapter@1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(mongodb@7.1.0)':
+ dependencies:
+ '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1)
+ '@better-auth/utils': 0.3.1
+ mongodb: 7.1.0
- '@better-fetch/fetch@1.1.18': {}
+ '@better-auth/prisma-adapter@1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)':
+ dependencies:
+ '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1)
+ '@better-auth/utils': 0.3.1
- '@chakra-ui/utils@2.2.2(react@19.1.0)':
+ '@better-auth/telemetry@1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1))':
dependencies:
- '@types/lodash.mergewith': 4.6.9
- lodash.mergewith: 4.6.2
- react: 19.1.0
+ '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1)
+ '@better-auth/utils': 0.3.1
+ '@better-fetch/fetch': 1.1.21
+
+ '@better-auth/utils@0.3.1': {}
- '@dev-plugins/async-storage@0.4.0(@react-native-async-storage/async-storage@2.2.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)))(expo@54.0.15)(react@19.1.0)':
+ '@better-fetch/fetch@1.1.21': {}
+
+ '@dev-plugins/async-storage@0.4.0(@react-native-async-storage/async-storage@2.2.0(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)))(expo@55.0.6)(react@19.2.0)':
dependencies:
- '@react-native-async-storage/async-storage': 2.2.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react: 19.1.0
+ '@react-native-async-storage/async-storage': 2.2.0(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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
- '@dev-plugins/react-navigation@0.4.0(@react-navigation/core@7.12.4(react@19.1.0))(expo@54.0.15)(react@19.1.0)':
+ '@dev-plugins/react-navigation@0.4.0(@react-navigation/core@7.16.1(react@19.2.0))(expo@55.0.6)(react@19.2.0)':
dependencies:
- '@react-navigation/core': 7.12.4(react@19.1.0)
- '@react-navigation/devtools': 7.0.39(react@19.1.0)
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ '@react-navigation/core': 7.16.1(react@19.2.0)
+ '@react-navigation/devtools': 7.0.52(react@19.2.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
nanoid: 5.1.6
- react: 19.1.0
+ react: 19.2.0
- '@dev-plugins/react-query@0.4.0(@tanstack/react-query@5.90.2(react@19.1.0))(expo@54.0.15)(react@19.1.0)':
+ '@dev-plugins/react-query@0.4.0(@tanstack/react-query@5.90.21(react@19.2.0))(expo@55.0.6)(react@19.2.0)':
dependencies:
- '@tanstack/react-query': 5.90.2(react@19.1.0)
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- flatted: 3.3.3
- react: 19.1.0
+ '@tanstack/react-query': 5.90.21(react@19.2.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+ flatted: 3.4.1
+ react: 19.2.0
'@egjs/hammerjs@2.0.17':
dependencies:
'@types/hammerjs': 2.0.46
- '@emnapi/core@1.5.0':
+ '@emnapi/core@1.9.0':
dependencies:
- '@emnapi/wasi-threads': 1.1.0
+ '@emnapi/wasi-threads': 1.2.0
tslib: 2.8.1
optional: true
- '@emnapi/runtime@1.5.0':
+ '@emnapi/runtime@1.9.0':
dependencies:
tslib: 2.8.1
optional: true
- '@emnapi/wasi-threads@1.1.0':
+ '@emnapi/wasi-threads@1.2.0':
dependencies:
tslib: 2.8.1
optional: true
- '@esbuild/aix-ppc64@0.25.10':
+ '@esbuild/aix-ppc64@0.27.3':
optional: true
- '@esbuild/android-arm64@0.25.10':
+ '@esbuild/android-arm64@0.27.3':
optional: true
- '@esbuild/android-arm@0.25.10':
+ '@esbuild/android-arm@0.27.3':
optional: true
- '@esbuild/android-x64@0.25.10':
+ '@esbuild/android-x64@0.27.3':
optional: true
- '@esbuild/darwin-arm64@0.25.10':
+ '@esbuild/darwin-arm64@0.27.3':
optional: true
- '@esbuild/darwin-x64@0.25.10':
+ '@esbuild/darwin-x64@0.27.3':
optional: true
- '@esbuild/freebsd-arm64@0.25.10':
+ '@esbuild/freebsd-arm64@0.27.3':
optional: true
- '@esbuild/freebsd-x64@0.25.10':
+ '@esbuild/freebsd-x64@0.27.3':
optional: true
- '@esbuild/linux-arm64@0.25.10':
+ '@esbuild/linux-arm64@0.27.3':
optional: true
- '@esbuild/linux-arm@0.25.10':
+ '@esbuild/linux-arm@0.27.3':
optional: true
- '@esbuild/linux-ia32@0.25.10':
+ '@esbuild/linux-ia32@0.27.3':
optional: true
- '@esbuild/linux-loong64@0.25.10':
+ '@esbuild/linux-loong64@0.27.3':
optional: true
- '@esbuild/linux-mips64el@0.25.10':
+ '@esbuild/linux-mips64el@0.27.3':
optional: true
- '@esbuild/linux-ppc64@0.25.10':
+ '@esbuild/linux-ppc64@0.27.3':
optional: true
- '@esbuild/linux-riscv64@0.25.10':
+ '@esbuild/linux-riscv64@0.27.3':
optional: true
- '@esbuild/linux-s390x@0.25.10':
+ '@esbuild/linux-s390x@0.27.3':
optional: true
- '@esbuild/linux-x64@0.25.10':
+ '@esbuild/linux-x64@0.27.3':
optional: true
- '@esbuild/netbsd-arm64@0.25.10':
+ '@esbuild/netbsd-arm64@0.27.3':
optional: true
- '@esbuild/netbsd-x64@0.25.10':
+ '@esbuild/netbsd-x64@0.27.3':
optional: true
- '@esbuild/openbsd-arm64@0.25.10':
+ '@esbuild/openbsd-arm64@0.27.3':
optional: true
- '@esbuild/openbsd-x64@0.25.10':
+ '@esbuild/openbsd-x64@0.27.3':
optional: true
- '@esbuild/openharmony-arm64@0.25.10':
+ '@esbuild/openharmony-arm64@0.27.3':
optional: true
- '@esbuild/sunos-x64@0.25.10':
+ '@esbuild/sunos-x64@0.27.3':
optional: true
- '@esbuild/win32-arm64@0.25.10':
+ '@esbuild/win32-arm64@0.27.3':
optional: true
- '@esbuild/win32-ia32@0.25.10':
+ '@esbuild/win32-ia32@0.27.3':
optional: true
- '@esbuild/win32-x64@0.25.10':
+ '@esbuild/win32-x64@0.27.3':
optional: true
- '@eslint-community/eslint-utils@4.9.0(eslint@8.57.0)':
- dependencies:
- eslint: 8.57.0
- eslint-visitor-keys: 3.4.3
-
- '@eslint-community/eslint-utils@4.9.0(eslint@9.36.0(jiti@2.6.0))':
+ '@eslint-community/eslint-utils@4.9.1(eslint@9.39.4(jiti@2.6.1))':
dependencies:
- eslint: 9.36.0(jiti@2.6.0)
+ eslint: 9.39.4(jiti@2.6.1)
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.12.1': {}
+ '@eslint-community/regexpp@4.12.2': {}
- '@eslint-react/ast@1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)':
+ '@eslint-react/ast@2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@eslint-react/eff': 1.53.1
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/typescript-estree': 8.44.1(typescript@5.9.2)
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- string-ts: 2.2.1
- ts-pattern: 5.8.0
+ '@eslint-react/eff': 2.13.0
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.39.4(jiti@2.6.1)
+ string-ts: 2.3.1
+ typescript: 5.9.3
transitivePeerDependencies:
- - eslint
- supports-color
- - typescript
- '@eslint-react/core@1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)':
- dependencies:
- '@eslint-react/ast': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/eff': 1.53.1
- '@eslint-react/kit': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/shared': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/var': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/scope-manager': 8.44.1
- '@typescript-eslint/type-utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- birecord: 0.1.1
- ts-pattern: 5.8.0
+ '@eslint-react/core@2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
+ dependencies:
+ '@eslint-react/ast': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/eff': 2.13.0
+ '@eslint-react/shared': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/var': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.57.0
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.39.4(jiti@2.6.1)
+ ts-pattern: 5.9.0
+ typescript: 5.9.3
transitivePeerDependencies:
- - eslint
- supports-color
- - typescript
- '@eslint-react/eff@1.53.1': {}
-
- '@eslint-react/eslint-plugin@1.53.1(eslint@9.36.0(jiti@2.6.0))(ts-api-utils@2.1.0(typescript@5.9.2))(typescript@5.9.2)':
- dependencies:
- '@eslint-react/eff': 1.53.1
- '@eslint-react/kit': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/shared': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/scope-manager': 8.44.1
- '@typescript-eslint/type-utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint: 9.36.0(jiti@2.6.0)
- eslint-plugin-react-debug: 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint-plugin-react-dom: 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint-plugin-react-hooks-extra: 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint-plugin-react-naming-convention: 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint-plugin-react-web-api: 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint-plugin-react-x: 1.53.1(eslint@9.36.0(jiti@2.6.0))(ts-api-utils@2.1.0(typescript@5.9.2))(typescript@5.9.2)
- optionalDependencies:
- typescript: 5.9.2
- transitivePeerDependencies:
- - supports-color
- - ts-api-utils
+ '@eslint-react/eff@2.13.0': {}
- '@eslint-react/kit@1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)':
+ '@eslint-react/eslint-plugin@2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@eslint-react/eff': 1.53.1
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- ts-pattern: 5.8.0
- zod: 4.1.11
+ '@eslint-react/eff': 2.13.0
+ '@eslint-react/shared': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.57.0
+ '@typescript-eslint/type-utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.39.4(jiti@2.6.1)
+ eslint-plugin-react-dom: 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint-plugin-react-hooks-extra: 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint-plugin-react-naming-convention: 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint-plugin-react-rsc: 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint-plugin-react-web-api: 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint-plugin-react-x: 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ ts-api-utils: 2.4.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- - eslint
- supports-color
- - typescript
- '@eslint-react/shared@1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)':
+ '@eslint-react/shared@2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@eslint-react/eff': 1.53.1
- '@eslint-react/kit': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- ts-pattern: 5.8.0
- zod: 4.1.11
+ '@eslint-react/eff': 2.13.0
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.39.4(jiti@2.6.1)
+ ts-pattern: 5.9.0
+ typescript: 5.9.3
+ zod: 4.3.6
transitivePeerDependencies:
- - eslint
- supports-color
- - typescript
- '@eslint-react/var@1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)':
+ '@eslint-react/var@2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@eslint-react/ast': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/eff': 1.53.1
- '@typescript-eslint/scope-manager': 8.44.1
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- string-ts: 2.2.1
- ts-pattern: 5.8.0
+ '@eslint-react/ast': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/eff': 2.13.0
+ '@eslint-react/shared': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.57.0
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.39.4(jiti@2.6.1)
+ ts-pattern: 5.9.0
+ typescript: 5.9.3
transitivePeerDependencies:
- - eslint
- supports-color
- - typescript
- '@eslint/config-array@0.21.0':
+ '@eslint/config-array@0.21.2':
dependencies:
- '@eslint/object-schema': 2.1.6
+ '@eslint/object-schema': 2.1.7
debug: 4.4.3
- minimatch: 3.1.2
+ minimatch: 3.1.5
transitivePeerDependencies:
- supports-color
- '@eslint/config-helpers@0.3.1': {}
-
- '@eslint/core@0.15.2':
+ '@eslint/config-helpers@0.4.2':
dependencies:
- '@types/json-schema': 7.0.15
+ '@eslint/core': 0.17.0
- '@eslint/eslintrc@2.1.4':
+ '@eslint/core@0.17.0':
dependencies:
- ajv: 6.12.6
- debug: 4.4.3
- espree: 9.6.1
- globals: 13.24.0
- ignore: 5.3.2
- import-fresh: 3.3.1
- js-yaml: 4.1.0
- minimatch: 3.1.2
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - supports-color
+ '@types/json-schema': 7.0.15
- '@eslint/eslintrc@3.3.1':
+ '@eslint/eslintrc@3.3.5':
dependencies:
- ajv: 6.12.6
+ ajv: 6.14.0
debug: 4.4.3
espree: 10.4.0
globals: 14.0.0
ignore: 5.3.2
import-fresh: 3.3.1
- js-yaml: 4.1.0
- minimatch: 3.1.2
+ js-yaml: 4.1.1
+ minimatch: 3.1.5
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
- '@eslint/js@8.57.0': {}
-
- '@eslint/js@9.36.0': {}
+ '@eslint/js@9.39.4': {}
- '@eslint/object-schema@2.1.6': {}
+ '@eslint/object-schema@2.1.7': {}
- '@eslint/plugin-kit@0.3.5':
+ '@eslint/plugin-kit@0.4.1':
dependencies:
- '@eslint/core': 0.15.2
+ '@eslint/core': 0.17.0
levn: 0.4.1
- '@expo/cli@54.0.12(expo-router@6.0.13)(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))':
- dependencies:
- '@0no-co/graphql.web': 1.2.0
- '@expo/code-signing-certificates': 0.0.5
- '@expo/config': 12.0.10
- '@expo/config-plugins': 54.0.2
- '@expo/devcert': 1.2.0
- '@expo/env': 2.0.7
- '@expo/image-utils': 0.8.7
- '@expo/json-file': 10.0.7
- '@expo/mcp-tunnel': 0.0.8
- '@expo/metro': 54.1.0
- '@expo/metro-config': 54.0.7(expo@54.0.15)
- '@expo/osascript': 2.3.7
- '@expo/package-manager': 1.9.8
- '@expo/plist': 0.4.7
- '@expo/prebuild-config': 54.0.5(expo@54.0.15)
- '@expo/schema-utils': 0.1.7
+ '@expo-google-fonts/material-symbols@0.4.25': {}
+
+ '@expo/cli@55.0.16(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-constants@55.0.7)(expo-font@55.0.4)(expo-router@55.0.5)(expo@55.0.6)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)':
+ dependencies:
+ '@expo/code-signing-certificates': 0.0.6
+ '@expo/config': 55.0.8(typescript@5.9.3)
+ '@expo/config-plugins': 55.0.6
+ '@expo/devcert': 1.2.1
+ '@expo/env': 2.1.1
+ '@expo/image-utils': 0.8.12
+ '@expo/json-file': 10.0.12
+ '@expo/log-box': 55.0.7(@expo/dom-webview@55.0.3)(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@expo/metro': 54.2.0
+ '@expo/metro-config': 55.0.9(expo@55.0.6)(typescript@5.9.3)
+ '@expo/osascript': 2.4.2
+ '@expo/package-manager': 1.10.3
+ '@expo/plist': 0.5.2
+ '@expo/prebuild-config': 55.0.8(expo@55.0.6)(typescript@5.9.3)
+ '@expo/require-utils': 55.0.2(typescript@5.9.3)
+ '@expo/router-server': 55.0.10(@expo/metro-runtime@55.0.6)(expo-constants@55.0.7)(expo-font@55.0.4)(expo-router@55.0.5)(expo-server@55.0.6)(expo@55.0.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@expo/schema-utils': 55.0.2
'@expo/spawn-async': 1.7.2
'@expo/ws-tunnel': 1.0.6
- '@expo/xcpretty': 4.3.2
- '@react-native/dev-middleware': 0.81.4
- '@urql/core': 5.2.0
- '@urql/exchange-retry': 1.3.2(@urql/core@5.2.0)
+ '@expo/xcpretty': 4.4.1
+ '@react-native/dev-middleware': 0.83.2
accepts: 1.3.8
arg: 5.0.2
better-opn: 3.0.2
@@ -7947,135 +7478,135 @@ snapshots:
compression: 1.8.1
connect: 3.7.0
debug: 4.4.3
- env-editor: 0.4.2
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- expo-server: 1.0.2
- freeport-async: 2.0.0
+ dnssd-advertise: 1.1.3
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.6
+ fetch-nodeshim: 0.4.9
getenv: 2.0.0
- glob: 10.4.5
- lan-network: 0.1.7
- minimatch: 9.0.5
- node-forge: 1.3.1
+ glob: 13.0.6
+ lan-network: 0.2.0
+ multitars: 0.2.4
+ node-forge: 1.3.3
npm-package-arg: 11.0.3
ora: 3.4.0
- picomatch: 3.0.1
- pretty-bytes: 5.6.0
+ picomatch: 4.0.3
pretty-format: 29.7.0
progress: 2.0.3
prompts: 2.4.2
- qrcode-terminal: 0.11.0
- require-from-string: 2.0.2
- requireg: 0.2.2
- resolve: 1.22.10
resolve-from: 5.0.0
- resolve.exports: 2.0.3
- semver: 7.7.2
- send: 0.19.1
+ semver: 7.7.4
+ send: 0.19.2
slugify: 1.6.6
source-map-support: 0.5.21
stacktrace-parser: 0.1.11
structured-headers: 0.4.1
- tar: 7.5.1
terminal-link: 2.1.1
- undici: 6.21.3
+ toqr: 0.1.1
wrap-ansi: 7.0.0
- ws: 8.18.3
+ ws: 8.19.0
+ zod: 3.25.76
optionalDependencies:
- expo-router: 6.0.13(@expo/metro-runtime@6.1.2)(@types/react@19.1.13)(expo-constants@18.0.9)(expo-linking@8.0.8)(expo@54.0.15)(react-dom@19.1.0(react@19.1.0))(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ expo-router: 55.0.5(@expo/log-box@55.0.7)(@expo/metro-runtime@55.0.6)(@types/react@19.2.14)(expo-constants@55.0.7)(expo-font@55.0.4)(expo-linking@55.0.7)(expo@55.0.6)(react-dom@19.2.0(react@19.2.0))(react-native-gesture-handler@2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.2(react-native@0.83.2(@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.2(@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))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
transitivePeerDependencies:
- - '@modelcontextprotocol/sdk'
+ - '@expo/dom-webview'
+ - '@expo/metro-runtime'
- bufferutil
- - graphql
+ - expo-constants
+ - expo-font
+ - react
+ - react-dom
+ - react-server-dom-webpack
- supports-color
+ - typescript
- utf-8-validate
- '@expo/code-signing-certificates@0.0.5':
+ '@expo/code-signing-certificates@0.0.6':
dependencies:
- node-forge: 1.3.1
- nullthrows: 1.1.1
+ node-forge: 1.3.3
- '@expo/config-plugins@54.0.2':
+ '@expo/config-plugins@55.0.6':
dependencies:
- '@expo/config-types': 54.0.8
- '@expo/json-file': 10.0.7
- '@expo/plist': 0.4.7
+ '@expo/config-types': 55.0.5
+ '@expo/json-file': 10.0.12
+ '@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: 10.4.5
+ glob: 13.0.6
resolve-from: 5.0.0
- semver: 7.7.2
- slash: 3.0.0
+ semver: 7.7.4
slugify: 1.6.6
xcode: 3.0.1
xml2js: 0.6.0
transitivePeerDependencies:
- supports-color
- '@expo/config-types@54.0.8': {}
+ '@expo/config-types@55.0.5': {}
- '@expo/config@12.0.10':
+ '@expo/config@55.0.8(typescript@5.9.3)':
dependencies:
- '@babel/code-frame': 7.10.4
- '@expo/config-plugins': 54.0.2
- '@expo/config-types': 54.0.8
- '@expo/json-file': 10.0.7
+ '@expo/config-plugins': 55.0.6
+ '@expo/config-types': 55.0.5
+ '@expo/json-file': 10.0.12
+ '@expo/require-utils': 55.0.2(typescript@5.9.3)
deepmerge: 4.3.1
getenv: 2.0.0
- glob: 10.4.5
- require-from-string: 2.0.2
+ glob: 13.0.6
resolve-from: 5.0.0
- resolve-workspace-root: 2.0.0
- semver: 7.7.2
+ resolve-workspace-root: 2.0.1
+ semver: 7.7.4
slugify: 1.6.6
- sucrase: 3.35.0
transitivePeerDependencies:
- supports-color
+ - typescript
- '@expo/devcert@1.2.0':
+ '@expo/devcert@1.2.1':
dependencies:
'@expo/sudo-prompt': 9.3.2
debug: 3.2.7
- glob: 10.4.5
transitivePeerDependencies:
- supports-color
- '@expo/devtools@0.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)':
+ '@expo/devtools@55.0.2(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
dependencies:
chalk: 4.1.2
optionalDependencies:
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+
+ '@expo/dom-webview@55.0.3(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ dependencies:
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
- '@expo/env@2.0.7':
+ '@expo/env@2.1.1':
dependencies:
chalk: 4.1.2
debug: 4.4.3
- dotenv: 16.4.7
- dotenv-expand: 11.0.7
getenv: 2.0.0
transitivePeerDependencies:
- supports-color
- '@expo/fingerprint@0.15.2':
+ '@expo/fingerprint@0.16.6':
dependencies:
+ '@expo/env': 2.1.1
'@expo/spawn-async': 1.7.2
arg: 5.0.2
chalk: 4.1.2
debug: 4.4.3
getenv: 2.0.0
- glob: 10.4.5
+ glob: 13.0.6
ignore: 5.3.2
- minimatch: 9.0.5
- p-limit: 3.1.0
+ minimatch: 10.2.4
resolve-from: 5.0.0
- semver: 7.7.2
+ semver: 7.7.4
transitivePeerDependencies:
- supports-color
- '@expo/image-utils@0.8.7':
+ '@expo/image-utils@0.8.12':
dependencies:
'@expo/spawn-async': 1.7.2
chalk: 4.1.2
@@ -8083,123 +7614,157 @@ snapshots:
jimp-compact: 0.16.1
parse-png: 2.1.0
resolve-from: 5.0.0
- resolve-global: 1.0.0
- semver: 7.7.2
- temp-dir: 2.0.0
- unique-string: 2.0.0
+ semver: 7.7.4
- '@expo/json-file@10.0.7':
+ '@expo/json-file@10.0.12':
dependencies:
- '@babel/code-frame': 7.10.4
+ '@babel/code-frame': 7.29.0
json5: 2.2.3
- '@expo/mcp-tunnel@0.0.8':
+ '@expo/local-build-cache-provider@55.0.6(typescript@5.9.3)':
dependencies:
- ws: 8.18.3
- zod: 3.25.76
- zod-to-json-schema: 3.24.6(zod@3.25.76)
+ '@expo/config': 55.0.8(typescript@5.9.3)
+ chalk: 4.1.2
transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
+ - supports-color
+ - typescript
+
+ '@expo/log-box@55.0.7(@expo/dom-webview@55.0.3)(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ dependencies:
+ '@expo/dom-webview': 55.0.3(expo@55.0.6)(react-native@0.83.2(@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.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ stacktrace-parser: 0.1.11
- '@expo/metro-config@54.0.7(expo@54.0.15)':
+ '@expo/metro-config@55.0.9(expo@55.0.6)(typescript@5.9.3)':
dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/core': 7.28.4
- '@babel/generator': 7.28.3
- '@expo/config': 12.0.10
- '@expo/env': 2.0.7
- '@expo/json-file': 10.0.7
- '@expo/metro': 54.1.0
+ '@babel/code-frame': 7.29.0
+ '@babel/core': 7.29.0
+ '@babel/generator': 7.29.1
+ '@expo/config': 55.0.8(typescript@5.9.3)
+ '@expo/env': 2.1.1
+ '@expo/json-file': 10.0.12
+ '@expo/metro': 54.2.0
'@expo/spawn-async': 1.7.2
- browserslist: 4.26.3
+ browserslist: 4.28.1
chalk: 4.1.2
debug: 4.4.3
- dotenv: 16.4.7
- dotenv-expand: 11.0.7
getenv: 2.0.0
- glob: 10.4.5
- hermes-parser: 0.29.1
+ glob: 13.0.6
+ hermes-parser: 0.32.1
jsc-safe-url: 0.2.4
- lightningcss: 1.30.1
- minimatch: 9.0.5
+ lightningcss: 1.32.0
+ picomatch: 4.0.3
postcss: 8.4.49
resolve-from: 5.0.0
optionalDependencies:
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
transitivePeerDependencies:
- bufferutil
- supports-color
+ - typescript
- utf-8-validate
- '@expo/metro-runtime@6.1.2(expo@54.0.15)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)':
+ '@expo/metro-runtime@55.0.6(@expo/dom-webview@55.0.3)(expo@55.0.6)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
dependencies:
+ '@expo/log-box': 55.0.7(@expo/dom-webview@55.0.3)(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
anser: 1.4.10
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@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.1.0(react@19.1.0)
-
- '@expo/metro@54.1.0':
- dependencies:
- metro: 0.83.2
- metro-babel-transformer: 0.83.2
- metro-cache: 0.83.2
- metro-cache-key: 0.83.2
- metro-config: 0.83.2
- metro-core: 0.83.2
- metro-file-map: 0.83.2
- metro-resolver: 0.83.2
- metro-runtime: 0.83.2
- metro-source-map: 0.83.2
- metro-transform-plugins: 0.83.2
- metro-transform-worker: 0.83.2
+ react-dom: 19.2.0(react@19.2.0)
+ transitivePeerDependencies:
+ - '@expo/dom-webview'
+
+ '@expo/metro@54.2.0':
+ dependencies:
+ metro: 0.83.3
+ metro-babel-transformer: 0.83.3
+ metro-cache: 0.83.3
+ metro-cache-key: 0.83.3
+ metro-config: 0.83.3
+ metro-core: 0.83.3
+ metro-file-map: 0.83.3
+ metro-minify-terser: 0.83.3
+ metro-resolver: 0.83.3
+ metro-runtime: 0.83.3
+ metro-source-map: 0.83.3
+ metro-symbolicate: 0.83.3
+ metro-transform-plugins: 0.83.3
+ metro-transform-worker: 0.83.3
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- '@expo/osascript@2.3.7':
+ '@expo/osascript@2.4.2':
dependencies:
'@expo/spawn-async': 1.7.2
- exec-async: 2.2.0
- '@expo/package-manager@1.9.8':
+ '@expo/package-manager@1.10.3':
dependencies:
- '@expo/json-file': 10.0.7
+ '@expo/json-file': 10.0.12
'@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.0
+ resolve-workspace-root: 2.0.1
- '@expo/plist@0.4.7':
+ '@expo/plist@0.5.2':
dependencies:
'@xmldom/xmldom': 0.8.11
base64-js: 1.5.1
xmlbuilder: 15.1.1
- '@expo/prebuild-config@54.0.5(expo@54.0.15)':
+ '@expo/prebuild-config@55.0.8(expo@55.0.6)(typescript@5.9.3)':
dependencies:
- '@expo/config': 12.0.10
- '@expo/config-plugins': 54.0.2
- '@expo/config-types': 54.0.8
- '@expo/image-utils': 0.8.7
- '@expo/json-file': 10.0.7
- '@react-native/normalize-colors': 0.81.4
+ '@expo/config': 55.0.8(typescript@5.9.3)
+ '@expo/config-plugins': 55.0.6
+ '@expo/config-types': 55.0.5
+ '@expo/image-utils': 0.8.12
+ '@expo/json-file': 10.0.12
+ '@react-native/normalize-colors': 0.83.2
debug: 4.4.3
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.2
+ semver: 7.7.4
xml2js: 0.6.0
transitivePeerDependencies:
- supports-color
+ - typescript
+
+ '@expo/require-utils@55.0.2(typescript@5.9.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
+ transitivePeerDependencies:
+ - supports-color
+
+ '@expo/router-server@55.0.10(@expo/metro-runtime@55.0.6)(expo-constants@55.0.7)(expo-font@55.0.4)(expo-router@55.0.5)(expo-server@55.0.6)(expo@55.0.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ dependencies:
+ debug: 4.4.3
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.7(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(typescript@5.9.3)
+ expo-font: 55.0.4(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ expo-server: 55.0.6
+ react: 19.2.0
+ optionalDependencies:
+ '@expo/metro-runtime': 55.0.6(@expo/dom-webview@55.0.3)(expo@55.0.6)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ expo-router: 55.0.5(@expo/log-box@55.0.7)(@expo/metro-runtime@55.0.6)(@types/react@19.2.14)(expo-constants@55.0.7)(expo-font@55.0.4)(expo-linking@55.0.7)(expo@55.0.6)(react-dom@19.2.0(react@19.2.0))(react-native-gesture-handler@2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.2(react-native@0.83.2(@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.2(@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))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ react-dom: 19.2.0(react@19.2.0)
+ transitivePeerDependencies:
+ - supports-color
- '@expo/schema-utils@0.1.7': {}
+ '@expo/schema-utils@55.0.2': {}
'@expo/sdk-runtime-versions@1.0.0': {}
@@ -8209,77 +7774,83 @@ snapshots:
'@expo/sudo-prompt@9.3.2': {}
- '@expo/vector-icons@15.0.2(expo-font@14.0.9(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)':
+ '@expo/vector-icons@15.1.1(expo-font@55.0.4)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
dependencies:
- expo-font: 14.0.9(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ expo-font: 55.0.4(expo@55.0.6)(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
'@expo/ws-tunnel@1.0.6': {}
- '@expo/xcpretty@4.3.2':
+ '@expo/xcpretty@4.4.1':
dependencies:
- '@babel/code-frame': 7.10.4
+ '@babel/code-frame': 7.29.0
chalk: 4.1.2
- find-up: 5.0.0
- js-yaml: 4.1.0
+ js-yaml: 4.1.1
- '@gorhom/bottom-sheet@5.0.4(@types/react@19.1.13)(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)':
+ '@gorhom/bottom-sheet@5.2.8(@types/react@19.2.14)(react-native-gesture-handler@2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@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.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ '@gorhom/portal': 1.0.14(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
invariant: 2.2.4
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-gesture-handler: 2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ react-native-gesture-handler: 2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@gorhom/bottom-sheet@5.2.6(@types/react@19.1.13)(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@gorhom/portal': 1.0.14(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- invariant: 2.2.4
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-gesture-handler: 2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- optionalDependencies:
- '@types/react': 19.1.13
-
- '@gorhom/portal@1.0.14(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)':
+ '@gorhom/portal@1.0.14(react-native@0.83.2(@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.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
- '@hexagon/base64@1.1.28': {}
-
- '@hey-api/codegen-core@0.2.0(typescript@5.9.2)':
+ '@hey-api/codegen-core@0.7.1(typescript@5.9.3)':
dependencies:
- typescript: 5.9.2
+ '@hey-api/types': 0.1.3(typescript@5.9.3)
+ ansi-colors: 4.1.3
+ c12: 3.3.3
+ color-support: 1.1.3
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - magicast
- '@hey-api/json-schema-ref-parser@1.2.0':
+ '@hey-api/json-schema-ref-parser@1.3.1':
dependencies:
'@jsdevtools/ono': 7.1.3
'@types/json-schema': 7.0.15
- js-yaml: 4.1.0
- lodash: 4.17.21
+ js-yaml: 4.1.1
- '@hey-api/openapi-ts@0.85.1(typescript@5.9.2)':
+ '@hey-api/openapi-ts@0.94.0(typescript@5.9.3)':
dependencies:
- '@hey-api/codegen-core': 0.2.0(typescript@5.9.2)
- '@hey-api/json-schema-ref-parser': 1.2.0
+ '@hey-api/codegen-core': 0.7.1(typescript@5.9.3)
+ '@hey-api/json-schema-ref-parser': 1.3.1
+ '@hey-api/shared': 0.2.2(typescript@5.9.3)
+ '@hey-api/types': 0.1.3(typescript@5.9.3)
ansi-colors: 4.1.3
- c12: 3.3.0
color-support: 1.1.3
- commander: 13.0.0
- handlebars: 4.7.8
- open: 10.1.2
- semver: 7.7.2
- typescript: 5.9.2
+ commander: 14.0.3
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - magicast
+
+ '@hey-api/shared@0.2.2(typescript@5.9.3)':
+ dependencies:
+ '@hey-api/codegen-core': 0.7.1(typescript@5.9.3)
+ '@hey-api/json-schema-ref-parser': 1.3.1
+ '@hey-api/types': 0.1.3(typescript@5.9.3)
+ ansi-colors: 4.1.3
+ cross-spawn: 7.0.6
+ open: 11.0.0
+ semver: 7.7.3
+ typescript: 5.9.3
transitivePeerDependencies:
- magicast
+ '@hey-api/types@0.1.3(typescript@5.9.3)':
+ dependencies:
+ typescript: 5.9.3
+
'@humanfs/core@0.19.1': {}
'@humanfs/node@0.16.7':
@@ -8287,33 +7858,10 @@ snapshots:
'@humanfs/core': 0.19.1
'@humanwhocodes/retry': 0.4.3
- '@humanwhocodes/config-array@0.11.14':
- dependencies:
- '@humanwhocodes/object-schema': 2.0.3
- debug: 4.4.3
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
-
'@humanwhocodes/module-importer@1.0.1': {}
- '@humanwhocodes/object-schema@2.0.3': {}
-
'@humanwhocodes/retry@0.4.3': {}
- '@isaacs/cliui@8.0.2':
- dependencies:
- string-width: 5.1.2
- string-width-cjs: string-width@4.2.3
- strip-ansi: 7.1.2
- strip-ansi-cjs: strip-ansi@6.0.1
- wrap-ansi: 8.1.0
- wrap-ansi-cjs: wrap-ansi@7.0.0
-
- '@isaacs/fs-minipass@4.0.1':
- dependencies:
- minipass: 7.1.2
-
'@isaacs/ttlcache@1.4.1': {}
'@istanbuljs/load-nyc-config@1.1.0':
@@ -8321,7 +7869,7 @@ snapshots:
camelcase: 5.3.1
find-up: 4.1.0
get-package-type: 0.1.0
- js-yaml: 3.14.1
+ js-yaml: 3.14.2
resolve-from: 5.0.0
'@istanbuljs/schema@0.1.3': {}
@@ -8334,25 +7882,25 @@ snapshots:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 24.6.1
+ '@types/node': 25.4.0
jest-mock: 29.7.0
'@jest/fake-timers@29.7.0':
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 24.6.1
+ '@types/node': 25.4.0
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
'@jest/schemas@29.6.3':
dependencies:
- '@sinclair/typebox': 0.27.8
+ '@sinclair/typebox': 0.27.10
'@jest/transform@29.7.0':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.31
babel-plugin-istanbul: 6.1.1
@@ -8375,8 +7923,8 @@ snapshots:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 24.6.1
- '@types/yargs': 17.0.33
+ '@types/node': 25.4.0
+ '@types/yargs': 17.0.35
chalk: 4.1.2
'@jridgewell/gen-mapping@0.3.13':
@@ -8405,501 +7953,328 @@ snapshots:
'@jsdevtools/ono@7.1.3': {}
- '@levischuck/tiny-cbor@0.2.11': {}
+ '@mongodb-js/saslprep@1.4.6':
+ dependencies:
+ sparse-bitfield: 3.0.3
'@napi-rs/wasm-runtime@0.2.12':
dependencies:
- '@emnapi/core': 1.5.0
- '@emnapi/runtime': 1.5.0
+ '@emnapi/core': 1.9.0
+ '@emnapi/runtime': 1.9.0
'@tybys/wasm-util': 0.10.1
optional: true
- '@noble/ciphers@2.0.1': {}
+ '@noble/ciphers@2.1.1': {}
'@noble/hashes@2.0.1': {}
- '@nodelib/fs.scandir@2.1.5':
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- run-parallel: 1.2.0
-
- '@nodelib/fs.stat@2.0.5': {}
-
- '@nodelib/fs.walk@1.2.8':
- dependencies:
- '@nodelib/fs.scandir': 2.1.5
- fastq: 1.19.1
-
'@nolyfill/is-core-module@1.0.39': {}
- '@peculiar/asn1-android@2.5.0':
- dependencies:
- '@peculiar/asn1-schema': 2.5.0
- asn1js: 3.0.6
- tslib: 2.8.1
-
- '@peculiar/asn1-cms@2.5.0':
- dependencies:
- '@peculiar/asn1-schema': 2.5.0
- '@peculiar/asn1-x509': 2.5.0
- '@peculiar/asn1-x509-attr': 2.5.0
- asn1js: 3.0.6
- tslib: 2.8.1
-
- '@peculiar/asn1-csr@2.5.0':
- dependencies:
- '@peculiar/asn1-schema': 2.5.0
- '@peculiar/asn1-x509': 2.5.0
- asn1js: 3.0.6
- tslib: 2.8.1
-
- '@peculiar/asn1-ecc@2.5.0':
- dependencies:
- '@peculiar/asn1-schema': 2.5.0
- '@peculiar/asn1-x509': 2.5.0
- asn1js: 3.0.6
- tslib: 2.8.1
-
- '@peculiar/asn1-pfx@2.5.0':
- dependencies:
- '@peculiar/asn1-cms': 2.5.0
- '@peculiar/asn1-pkcs8': 2.5.0
- '@peculiar/asn1-rsa': 2.5.0
- '@peculiar/asn1-schema': 2.5.0
- asn1js: 3.0.6
- tslib: 2.8.1
-
- '@peculiar/asn1-pkcs8@2.5.0':
- dependencies:
- '@peculiar/asn1-schema': 2.5.0
- '@peculiar/asn1-x509': 2.5.0
- asn1js: 3.0.6
- tslib: 2.8.1
-
- '@peculiar/asn1-pkcs9@2.5.0':
- dependencies:
- '@peculiar/asn1-cms': 2.5.0
- '@peculiar/asn1-pfx': 2.5.0
- '@peculiar/asn1-pkcs8': 2.5.0
- '@peculiar/asn1-schema': 2.5.0
- '@peculiar/asn1-x509': 2.5.0
- '@peculiar/asn1-x509-attr': 2.5.0
- asn1js: 3.0.6
- tslib: 2.8.1
-
- '@peculiar/asn1-rsa@2.5.0':
- dependencies:
- '@peculiar/asn1-schema': 2.5.0
- '@peculiar/asn1-x509': 2.5.0
- asn1js: 3.0.6
- tslib: 2.8.1
-
- '@peculiar/asn1-schema@2.5.0':
- dependencies:
- asn1js: 3.0.6
- pvtsutils: 1.3.6
- tslib: 2.8.1
-
- '@peculiar/asn1-x509-attr@2.5.0':
- dependencies:
- '@peculiar/asn1-schema': 2.5.0
- '@peculiar/asn1-x509': 2.5.0
- asn1js: 3.0.6
- tslib: 2.8.1
-
- '@peculiar/asn1-x509@2.5.0':
- dependencies:
- '@peculiar/asn1-schema': 2.5.0
- asn1js: 3.0.6
- pvtsutils: 1.3.6
- tslib: 2.8.1
-
- '@peculiar/x509@1.14.0':
- dependencies:
- '@peculiar/asn1-cms': 2.5.0
- '@peculiar/asn1-csr': 2.5.0
- '@peculiar/asn1-ecc': 2.5.0
- '@peculiar/asn1-pkcs9': 2.5.0
- '@peculiar/asn1-rsa': 2.5.0
- '@peculiar/asn1-schema': 2.5.0
- '@peculiar/asn1-x509': 2.5.0
- pvtsutils: 1.3.6
- reflect-metadata: 0.2.2
- tslib: 2.8.1
- tsyringe: 4.10.0
-
- '@pkgjs/parseargs@0.11.0':
- optional: true
+ '@nozbe/microfuzz@1.0.0': {}
'@radix-ui/primitive@1.1.3': {}
- '@radix-ui/react-collection@1.1.7(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@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)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.1.13)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.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-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)
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.13)(react@19.1.0)':
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.14)(react@19.2.0)':
dependencies:
- react: 19.1.0
+ react: 19.2.0
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-context@1.1.2(@types/react@19.1.13)(react@19.1.0)':
+ '@radix-ui/react-context@1.1.2(@types/react@19.2.14)(react@19.2.0)':
dependencies:
- react: 19.1.0
+ react: 19.2.0
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-dialog@1.1.15(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@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)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-focus-scope': 1.1.7(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-portal': 1.1.9(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-presence': 1.1.5(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.13)(react@19.1.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-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)
aria-hidden: 1.2.6
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-remove-scroll: 2.7.1(@types/react@19.1.13)(react@19.1.0)
+ 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)
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-direction@1.1.1(@types/react@19.1.13)(react@19.1.0)':
+ '@radix-ui/react-direction@1.1.1(@types/react@19.2.14)(react@19.2.0)':
dependencies:
- react: 19.1.0
+ react: 19.2.0
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-dismissable-layer@1.1.11(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.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)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.13)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@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)
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-focus-guards@1.1.3(@types/react@19.1.13)(react@19.1.0)':
+ '@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.14)(react@19.2.0)':
dependencies:
- react: 19.1.0
+ react: 19.2.0
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-focus-scope@1.1.7(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.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)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.13)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@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)
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-id@1.1.1(@types/react@19.1.13)(react@19.1.0)':
+ '@radix-ui/react-id@1.1.1(@types/react@19.2.14)(react@19.2.0)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.13)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.0)
+ react: 19.2.0
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-portal@1.1.9(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.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)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.13)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.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-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)
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-presence@1.1.5(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.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)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.13)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@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)
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-primitive@2.1.3(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.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)':
dependencies:
- '@radix-ui/react-slot': 1.2.3(@types/react@19.1.13)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.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)
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-roving-focus@1.1.11(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.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)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-collection': 1.1.7(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.13)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@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)
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-slot@1.2.0(@types/react@19.1.13)(react@19.1.0)':
+ '@radix-ui/react-slot@1.2.3(@types/react@19.2.14)(react@19.2.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.13)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.0)
+ react: 19.2.0
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-slot@1.2.3(@types/react@19.1.13)(react@19.1.0)':
+ '@radix-ui/react-slot@1.2.4(@types/react@19.2.14)(react@19.2.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.13)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.0)
+ react: 19.2.0
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-tabs@1.1.13(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.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)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-presence': 1.1.5(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-roving-focus': 1.1.11(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.13)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.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-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)
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.13)(react@19.1.0)':
+ '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.14)(react@19.2.0)':
dependencies:
- react: 19.1.0
+ react: 19.2.0
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.13)(react@19.1.0)':
+ '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.14)(react@19.2.0)':
dependencies:
- '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.13)(react@19.1.0)
- react: 19.1.0
+ '@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
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.13)(react@19.1.0)':
+ '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.14)(react@19.2.0)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.13)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.0)
+ react: 19.2.0
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.13)(react@19.1.0)':
+ '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.14)(react@19.2.0)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.13)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.0)
+ react: 19.2.0
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.13)(react@19.1.0)':
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.14)(react@19.2.0)':
dependencies:
- react: 19.1.0
+ react: 19.2.0
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@react-native-async-storage/async-storage@2.2.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))':
+ '@react-native-async-storage/async-storage@2.2.0(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))':
dependencies:
merge-options: 3.0.4
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
- '@react-native-community/datetimepicker@8.4.5(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)':
+ '@react-native-community/datetimepicker@8.6.0(expo@55.0.6)(react-native@0.83.2(@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.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
optionalDependencies:
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
'@react-native-community/slider@5.0.1': {}
- '@react-native-picker/picker@2.11.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)':
- dependencies:
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
-
- '@react-native/assets-registry@0.81.4': {}
-
- '@react-native/babel-plugin-codegen@0.80.0(@babel/core@7.28.4)':
- dependencies:
- '@babel/traverse': 7.28.4
- '@react-native/codegen': 0.80.0(@babel/core@7.28.4)
- transitivePeerDependencies:
- - '@babel/core'
- - supports-color
+ '@react-native/assets-registry@0.83.2': {}
- '@react-native/babel-plugin-codegen@0.81.4(@babel/core@7.28.4)':
+ '@react-native/babel-plugin-codegen@0.83.2(@babel/core@7.29.0)':
dependencies:
- '@babel/traverse': 7.28.4
- '@react-native/codegen': 0.81.4(@babel/core@7.28.4)
+ '@babel/traverse': 7.29.0
+ '@react-native/codegen': 0.83.2(@babel/core@7.29.0)
transitivePeerDependencies:
- '@babel/core'
- supports-color
- '@react-native/babel-preset@0.80.0(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.28.4)
- '@babel/plugin-syntax-export-default-from': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.4)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.4)
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-block-scoping': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4)
- '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-runtime': 7.28.3(@babel/core@7.28.4)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4)
- '@babel/template': 7.27.2
- '@react-native/babel-plugin-codegen': 0.80.0(@babel/core@7.28.4)
- babel-plugin-syntax-hermes-parser: 0.28.1
- babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.4)
- react-refresh: 0.14.2
- transitivePeerDependencies:
- - supports-color
-
- '@react-native/babel-preset@0.81.4(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.28.4)
- '@babel/plugin-syntax-export-default-from': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.4)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.4)
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-block-scoping': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4)
- '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-runtime': 7.28.3(@babel/core@7.28.4)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4)
- '@babel/template': 7.27.2
- '@react-native/babel-plugin-codegen': 0.81.4(@babel/core@7.28.4)
- babel-plugin-syntax-hermes-parser: 0.29.1
- babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.4)
+ '@react-native/babel-preset@0.83.2(@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)
+ '@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-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)
+ '@babel/plugin-transform-react-jsx': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.29.0)
+ '@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.2(@babel/core@7.29.0)
+ babel-plugin-syntax-hermes-parser: 0.32.0
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.29.0)
react-refresh: 0.14.2
transitivePeerDependencies:
- supports-color
- '@react-native/codegen@0.80.0(@babel/core@7.28.4)':
+ '@react-native/codegen@0.83.2(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
+ '@babel/parser': 7.29.0
glob: 7.2.3
- hermes-parser: 0.28.1
- invariant: 2.2.4
- nullthrows: 1.1.1
- yargs: 17.7.2
-
- '@react-native/codegen@0.81.4(@babel/core@7.28.4)':
- dependencies:
- '@babel/core': 7.28.4
- '@babel/parser': 7.28.4
- glob: 7.2.3
- hermes-parser: 0.29.1
+ hermes-parser: 0.32.0
invariant: 2.2.4
nullthrows: 1.1.1
yargs: 17.7.2
- '@react-native/community-cli-plugin@0.81.4':
+ '@react-native/community-cli-plugin@0.83.2':
dependencies:
- '@react-native/dev-middleware': 0.81.4
+ '@react-native/dev-middleware': 0.83.2
debug: 4.4.3
invariant: 2.2.4
- metro: 0.83.2
- metro-config: 0.83.2
- metro-core: 0.83.2
- semver: 7.7.2
+ metro: 0.83.5
+ metro-config: 0.83.5
+ metro-core: 0.83.5
+ semver: 7.7.4
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- '@react-native/debugger-frontend@0.81.4': {}
+ '@react-native/debugger-frontend@0.83.2': {}
+
+ '@react-native/debugger-shell@0.83.2':
+ dependencies:
+ cross-spawn: 7.0.6
+ fb-dotslash: 0.5.8
- '@react-native/dev-middleware@0.81.4':
+ '@react-native/dev-middleware@0.83.2':
dependencies:
'@isaacs/ttlcache': 1.4.1
- '@react-native/debugger-frontend': 0.81.4
+ '@react-native/debugger-frontend': 0.83.2
+ '@react-native/debugger-shell': 0.83.2
chrome-launcher: 0.15.2
chromium-edge-launcher: 0.2.0
connect: 3.7.0
@@ -8907,119 +8282,142 @@ snapshots:
invariant: 2.2.4
nullthrows: 1.1.1
open: 7.4.2
- serve-static: 1.16.2
- ws: 6.2.3
+ serve-static: 1.16.3
+ ws: 7.5.10
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- '@react-native/gradle-plugin@0.81.4': {}
+ '@react-native/gradle-plugin@0.83.2': {}
- '@react-native/js-polyfills@0.81.4': {}
+ '@react-native/js-polyfills@0.83.2': {}
'@react-native/normalize-colors@0.74.89': {}
- '@react-native/normalize-colors@0.81.4': {}
+ '@react-native/normalize-colors@0.83.2': {}
- '@react-native/virtualized-lists@0.81.4(@types/react@19.1.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)':
+ '@react-native/virtualized-lists@0.83.2(@types/react@19.2.14)(react-native@0.83.2(@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.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- '@react-navigation/bottom-tabs@7.4.7(@react-navigation/native@7.1.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)':
+ '@react-navigation/bottom-tabs@7.15.5(@react-navigation/native@7.1.33(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.2(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
dependencies:
- '@react-navigation/elements': 2.6.4(@react-navigation/native@7.1.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- '@react-navigation/native': 7.1.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ '@react-navigation/elements': 2.9.10(@react-navigation/native@7.1.33(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.2(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@react-navigation/native': 7.1.33(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
color: 4.2.3
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ react-native-safe-area-context: 5.6.2(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ sf-symbols-typescript: 2.2.0
transitivePeerDependencies:
- '@react-native-masked-view/masked-view'
- '@react-navigation/core@7.12.4(react@19.1.0)':
+ '@react-navigation/core@7.16.1(react@19.2.0)':
dependencies:
- '@react-navigation/routers': 7.5.1
+ '@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.1.0
- react-is: 19.1.1
- use-latest-callback: 0.2.4(react@19.1.0)
- use-sync-external-store: 1.5.0(react@19.1.0)
+ react: 19.2.0
+ react-is: 19.2.4
+ use-latest-callback: 0.2.6(react@19.2.0)
+ use-sync-external-store: 1.6.0(react@19.2.0)
- '@react-navigation/devtools@7.0.39(react@19.1.0)':
+ '@react-navigation/devtools@7.0.52(react@19.2.0)':
dependencies:
fast-deep-equal: 3.1.3
nanoid: 3.3.11
- react: 19.1.0
+ react: 19.2.0
stacktrace-parser: 0.1.11
- '@react-navigation/elements@2.6.4(@react-navigation/native@7.1.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)':
+ '@react-navigation/elements@2.9.10(@react-navigation/native@7.1.33(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.2(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
dependencies:
- '@react-navigation/native': 7.1.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ '@react-navigation/native': 7.1.33(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
color: 4.2.3
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- use-latest-callback: 0.2.4(react@19.1.0)
- use-sync-external-store: 1.5.0(react@19.1.0)
-
- '@react-navigation/native-stack@7.3.26(@react-navigation/native@7.1.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-navigation/elements': 2.6.4(@react-navigation/native@7.1.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- '@react-navigation/native': 7.1.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ react-native-safe-area-context: 5.6.2(react-native@0.83.2(@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.4(@react-navigation/native@7.1.33(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.2(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ dependencies:
+ '@react-navigation/elements': 2.9.10(@react-navigation/native@7.1.33(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.2(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@react-navigation/native': 7.1.33(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ react-native-safe-area-context: 5.6.2(react-native@0.83.2(@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.2(@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-navigation/native@7.1.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)':
+ '@react-navigation/native@7.1.33(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
dependencies:
- '@react-navigation/core': 7.12.4(react@19.1.0)
+ '@react-navigation/core': 7.16.1(react@19.2.0)
escape-string-regexp: 4.0.0
fast-deep-equal: 3.1.3
nanoid: 3.3.11
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- use-latest-callback: 0.2.4(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@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-navigation/routers@7.5.1':
+ '@react-navigation/routers@7.5.3':
dependencies:
nanoid: 3.3.11
- '@rtsao/scc@1.1.0': {}
+ '@rn-primitives/avatar@1.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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ dependencies:
+ '@rn-primitives/hooks': 1.3.0(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@rn-primitives/slot': 1.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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@rn-primitives/types': 1.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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ react: 19.2.0
+ optionalDependencies:
+ react-native: 0.83.2(@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)
- '@shopify/flash-list@2.0.3(@babel/runtime@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)':
+ '@rn-primitives/hooks@1.3.0(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
dependencies:
- '@babel/runtime': 7.28.4
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- tslib: 2.8.1
+ '@rn-primitives/types': 1.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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ react: 19.2.0
+ optionalDependencies:
+ react-native: 0.83.2(@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)
+
+ '@rn-primitives/slot@1.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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ dependencies:
+ react: 19.2.0
+ optionalDependencies:
+ react-native: 0.83.2(@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)
+
+ '@rn-primitives/types@1.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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
+ dependencies:
+ react: 19.2.0
+ optionalDependencies:
+ react-native: 0.83.2(@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)
- '@simplewebauthn/browser@13.2.0': {}
+ '@rtsao/scc@1.1.0': {}
- '@simplewebauthn/server@13.2.1':
+ '@shopify/flash-list@2.0.2(@babel/runtime@7.28.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
dependencies:
- '@hexagon/base64': 1.1.28
- '@levischuck/tiny-cbor': 0.2.11
- '@peculiar/asn1-android': 2.5.0
- '@peculiar/asn1-ecc': 2.5.0
- '@peculiar/asn1-rsa': 2.5.0
- '@peculiar/asn1-schema': 2.5.0
- '@peculiar/asn1-x509': 2.5.0
- '@peculiar/x509': 1.14.0
+ '@babel/runtime': 7.28.6
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ tslib: 2.8.1
- '@sinclair/typebox@0.27.8': {}
+ '@sinclair/typebox@0.27.10': {}
'@sinonjs/commons@3.0.1':
dependencies:
@@ -9029,177 +8427,186 @@ snapshots:
dependencies:
'@sinonjs/commons': 3.0.1
- '@storybook/addon-ondevice-actions@9.1.4(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2))':
+ '@standard-schema/spec@1.1.0': {}
+
+ '@storybook/addon-ondevice-actions@10.2.3(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(storybook@10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))':
dependencies:
- '@storybook/global': 5.0.0
- fast-deep-equal: 2.0.1
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)
+ fast-deep-equal: 3.1.3
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ storybook: 10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@storybook/addon-ondevice-controls@9.1.4(@gorhom/bottom-sheet@5.2.6(@types/react@19.1.13)(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(@react-native-community/datetimepicker@8.4.5(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(@react-native-community/slider@5.0.1)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2))(typescript@5.9.2)':
+ '@storybook/addon-ondevice-controls@10.2.3(@gorhom/bottom-sheet@5.2.8(@types/react@19.2.14)(react-native-gesture-handler@2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@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(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(@react-native-community/slider@5.0.1)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(storybook@10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)':
dependencies:
- '@react-native-community/datetimepicker': 8.4.5(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ '@gorhom/portal': 1.0.14(react-native@0.83.2(@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(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
'@react-native-community/slider': 5.0.1
- '@storybook/react-native-theming': 9.1.4(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- '@storybook/react-native-ui-common': 9.1.4(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2))(typescript@5.9.2)
- deep-equal: 1.1.2
- prop-types: 15.8.1
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-modal-datetime-picker: 18.0.0(@react-native-community/datetimepicker@8.4.5(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
- storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)
+ '@storybook/react-native-theming': 10.2.3(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@storybook/react-native-ui-common': 10.2.3(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(storybook@10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
+ polished: 4.3.1
+ react: 19.2.0
+ react-native: 0.83.2(@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(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))
+ storybook: 10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
tinycolor2: 1.6.0
optionalDependencies:
- '@gorhom/bottom-sheet': 5.2.6(@types/react@19.1.13)(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ '@gorhom/bottom-sheet': 5.2.8(@types/react@19.2.14)(react-native-gesture-handler@2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
transitivePeerDependencies:
- react-dom
+ - supports-color
- typescript
'@storybook/global@5.0.0': {}
- '@storybook/react-dom-shim@9.1.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2))':
+ '@storybook/icons@2.0.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ dependencies:
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+
+ '@storybook/react-dom-shim@10.2.17(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))':
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ storybook: 10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@storybook/react-native-theming@9.1.4(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)':
+ '@storybook/react-native-theming@10.2.3(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
dependencies:
polished: 4.3.1
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
- '@storybook/react-native-ui-common@9.1.4(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2))(typescript@5.9.2)':
+ '@storybook/react-native-ui-common@10.2.3(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(storybook@10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)':
dependencies:
- '@storybook/react': 9.1.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2))(typescript@5.9.2)
- '@storybook/react-native-theming': 9.1.4(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- es-toolkit: 1.40.0
- fuse.js: 7.1.0
+ '@nozbe/microfuzz': 1.0.0
+ '@storybook/react': 10.2.17(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
+ '@storybook/react-native-theming': 10.2.3(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ es-toolkit: 1.45.1
memoizerific: 1.11.3
- polished: 4.3.1
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- store2: 2.14.4
- storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ storybook: 10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
ts-dedent: 2.2.0
transitivePeerDependencies:
- react-dom
+ - supports-color
- typescript
- '@storybook/react-native-ui@9.1.4(9fcd6d6e744a7cbfb1042062dad4162f)':
+ '@storybook/react-native-ui@10.2.3(c7f524c28dc2e70d96b6e3addb5c7530)':
dependencies:
- '@gorhom/bottom-sheet': 5.2.6(@types/react@19.1.13)(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- '@storybook/react': 9.1.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2))(typescript@5.9.2)
- '@storybook/react-native-theming': 9.1.4(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- '@storybook/react-native-ui-common': 9.1.4(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2))(typescript@5.9.2)
- es-toolkit: 1.40.0
- fuse.js: 7.1.0
- memoizerific: 1.11.3
+ '@gorhom/bottom-sheet': 5.2.8(@types/react@19.2.14)(react-native-gesture-handler@2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@nozbe/microfuzz': 1.0.0
+ '@storybook/react': 10.2.17(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
+ '@storybook/react-native-theming': 10.2.3(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@storybook/react-native-ui-common': 10.2.3(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(storybook@10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
polished: 4.3.1
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-gesture-handler: 2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-svg: 15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- store2: 2.14.4
- storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ react-native-gesture-handler: 2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ react-native-safe-area-context: 5.6.2(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ storybook: 10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
transitivePeerDependencies:
- react-dom
+ - supports-color
- typescript
- '@storybook/react-native@9.1.4(9fcd6d6e744a7cbfb1042062dad4162f)':
+ '@storybook/react-native@10.2.3(c950714389eb8b4b1b6c5d73162b9aff)':
dependencies:
- '@storybook/global': 5.0.0
- '@storybook/react': 9.1.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2))(typescript@5.9.2)
- '@storybook/react-native-theming': 9.1.4(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- '@storybook/react-native-ui': 9.1.4(9fcd6d6e744a7cbfb1042062dad4162f)
- '@storybook/react-native-ui-common': 9.1.4(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2))(typescript@5.9.2)
- commander: 8.3.0
- dedent: 1.7.0
+ '@storybook/react': 10.2.17(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
+ '@storybook/react-native-theming': 10.2.3(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@storybook/react-native-ui': 10.2.3(c7f524c28dc2e70d96b6e3addb5c7530)
+ '@storybook/react-native-ui-common': 10.2.3(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(storybook@10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)
+ commander: 14.0.3
+ dedent: 1.7.2
deepmerge: 4.3.1
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-url-polyfill: 2.0.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
+ esbuild-register: 3.6.0(esbuild@0.27.3)
+ glob: 13.0.6
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ react-native-url-polyfill: 3.0.0(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))
setimmediate: 1.0.5
- storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)
- type-fest: 2.19.0
- util: 0.12.5
- ws: 8.18.3
+ storybook: 10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ ws: 8.19.0
optionalDependencies:
- '@gorhom/bottom-sheet': 5.2.6(@types/react@19.1.13)(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-gesture-handler: 2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ '@gorhom/bottom-sheet': 5.2.8(@types/react@19.2.14)(react-native-gesture-handler@2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ react-native-gesture-handler: 2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ react-native-safe-area-context: 5.6.2(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
transitivePeerDependencies:
- babel-plugin-macros
- bufferutil
+ - esbuild
- react-dom
- react-native-svg
+ - supports-color
- typescript
- utf-8-validate
- '@storybook/react@9.1.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2))(typescript@5.9.2)':
+ '@storybook/react@10.2.17(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(typescript@5.9.3)':
dependencies:
'@storybook/global': 5.0.0
- '@storybook/react-dom-shim': 9.1.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2))
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)
+ '@storybook/react-dom-shim': 10.2.17(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))
+ react: 19.2.0
+ react-docgen: 8.0.2
+ react-dom: 19.2.0(react@19.2.0)
+ storybook: 10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
- '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.28.4)':
+ '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
- '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.28.4)':
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
- '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.28.4)':
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
- '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.28.4)':
+ '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
- '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.28.4)':
+ '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
- '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.28.4)':
+ '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
- '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.28.4)':
+ '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
- '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.28.4)':
+ '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
- '@svgr/babel-preset@8.1.0(@babel/core@7.28.4)':
+ '@svgr/babel-preset@8.1.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.4
- '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.28.4)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.28.4)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.28.4)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.28.4)
- '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.28.4)
- '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.28.4)
- '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.28.4)
- '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.28.4)
+ '@babel/core': 7.29.0
+ '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.29.0)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.29.0)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.29.0)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.29.0)
+ '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.29.0)
+ '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.29.0)
+ '@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/cli@8.1.0(typescript@5.9.2)':
+ '@svgr/cli@8.1.0(typescript@5.9.3)':
dependencies:
- '@svgr/core': 8.1.0(typescript@5.9.2)
- '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.9.2))
- '@svgr/plugin-prettier': 8.1.0(@svgr/core@8.1.0(typescript@5.9.2))
- '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.9.2))(typescript@5.9.2)
+ '@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-prettier': 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)
camelcase: 6.3.0
chalk: 4.1.2
commander: 9.5.0
@@ -9210,12 +8617,12 @@ snapshots:
- supports-color
- typescript
- '@svgr/core@8.1.0(typescript@5.9.2)':
+ '@svgr/core@8.1.0(typescript@5.9.3)':
dependencies:
- '@babel/core': 7.28.4
- '@svgr/babel-preset': 8.1.0(@babel/core@7.28.4)
+ '@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.2)
+ cosmiconfig: 8.3.6(typescript@5.9.3)
snake-case: 3.0.4
transitivePeerDependencies:
- supports-color
@@ -9223,79 +8630,142 @@ snapshots:
'@svgr/hast-util-to-babel-ast@8.0.0':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.29.0
entities: 4.5.0
- '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.9.2))':
+ '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.9.3))':
dependencies:
- '@babel/core': 7.28.4
- '@svgr/babel-preset': 8.1.0(@babel/core@7.28.4)
- '@svgr/core': 8.1.0(typescript@5.9.2)
+ '@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/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
transitivePeerDependencies:
- supports-color
- '@svgr/plugin-prettier@8.1.0(@svgr/core@8.1.0(typescript@5.9.2))':
+ '@svgr/plugin-prettier@8.1.0(@svgr/core@8.1.0(typescript@5.9.3))':
dependencies:
- '@svgr/core': 8.1.0(typescript@5.9.2)
+ '@svgr/core': 8.1.0(typescript@5.9.3)
deepmerge: 4.3.1
prettier: 2.8.8
- '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.9.2))(typescript@5.9.2)':
+ '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.9.3))(typescript@5.9.3)':
dependencies:
- '@svgr/core': 8.1.0(typescript@5.9.2)
- cosmiconfig: 8.3.6(typescript@5.9.2)
+ '@svgr/core': 8.1.0(typescript@5.9.3)
+ cosmiconfig: 8.3.6(typescript@5.9.3)
deepmerge: 4.3.1
- svgo: 3.3.2
+ svgo: 3.3.3
transitivePeerDependencies:
- typescript
- '@tanstack/devtools-event-client@0.3.2': {}
-
- '@tanstack/eslint-plugin-query@5.90.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)':
+ '@tailwindcss/node@4.1.17':
dependencies:
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint: 9.36.0(jiti@2.6.0)
+ '@jridgewell/remapping': 2.3.5
+ enhanced-resolve: 5.20.0
+ jiti: 2.6.1
+ lightningcss: 1.30.2
+ magic-string: 0.30.21
+ source-map-js: 1.2.1
+ tailwindcss: 4.1.17
+
+ '@tailwindcss/oxide-android-arm64@4.1.17':
+ optional: true
+
+ '@tailwindcss/oxide-darwin-arm64@4.1.17':
+ optional: true
+
+ '@tailwindcss/oxide-darwin-x64@4.1.17':
+ optional: true
+
+ '@tailwindcss/oxide-freebsd-x64@4.1.17':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.17':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.17':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.17':
+ optional: true
+
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.17':
+ optional: true
+
+ '@tailwindcss/oxide-linux-x64-musl@4.1.17':
+ optional: true
+
+ '@tailwindcss/oxide-wasm32-wasi@4.1.17':
+ optional: true
+
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.17':
+ optional: true
+
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.17':
+ optional: true
+
+ '@tailwindcss/oxide@4.1.17':
+ optionalDependencies:
+ '@tailwindcss/oxide-android-arm64': 4.1.17
+ '@tailwindcss/oxide-darwin-arm64': 4.1.17
+ '@tailwindcss/oxide-darwin-x64': 4.1.17
+ '@tailwindcss/oxide-freebsd-x64': 4.1.17
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.17
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.1.17
+ '@tailwindcss/oxide-linux-arm64-musl': 4.1.17
+ '@tailwindcss/oxide-linux-x64-gnu': 4.1.17
+ '@tailwindcss/oxide-linux-x64-musl': 4.1.17
+ '@tailwindcss/oxide-wasm32-wasi': 4.1.17
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.1.17
+ '@tailwindcss/oxide-win32-x64-msvc': 4.1.17
+
+ '@tanstack/devtools-event-client@0.4.3': {}
+
+ '@tanstack/eslint-plugin-query@5.91.4(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
+ dependencies:
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.39.4(jiti@2.6.1)
+ optionalDependencies:
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- - typescript
- '@tanstack/form-core@1.24.0':
+ '@tanstack/form-core@1.28.4':
dependencies:
- '@tanstack/devtools-event-client': 0.3.2
- '@tanstack/store': 0.7.7
+ '@tanstack/devtools-event-client': 0.4.3
+ '@tanstack/pacer-lite': 0.1.1
+ '@tanstack/store': 0.9.2
+
+ '@tanstack/pacer-lite@0.1.1': {}
- '@tanstack/query-core@5.90.2': {}
+ '@tanstack/query-core@5.90.20': {}
- '@tanstack/react-form@1.23.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@tanstack/react-form@1.28.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
- '@tanstack/form-core': 1.24.0
- '@tanstack/react-store': 0.7.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- decode-formdata: 0.9.0
- devalue: 5.3.2
- react: 19.1.0
+ '@tanstack/form-core': 1.28.4
+ '@tanstack/react-store': 0.9.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react: 19.2.0
transitivePeerDependencies:
- react-dom
- '@tanstack/react-query@5.90.2(react@19.1.0)':
+ '@tanstack/react-query@5.90.21(react@19.2.0)':
dependencies:
- '@tanstack/query-core': 5.90.2
- react: 19.1.0
+ '@tanstack/query-core': 5.90.20
+ react: 19.2.0
- '@tanstack/react-store@0.7.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@tanstack/react-store@0.9.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
- '@tanstack/store': 0.7.7
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- use-sync-external-store: 1.5.0(react@19.1.0)
+ '@tanstack/store': 0.9.2
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ use-sync-external-store: 1.6.0(react@19.2.0)
- '@tanstack/store@0.7.7': {}
+ '@tanstack/store@0.9.2': {}
'@testing-library/dom@10.4.1':
dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/runtime': 7.28.4
+ '@babel/code-frame': 7.29.0
+ '@babel/runtime': 7.28.6
'@types/aria-query': 5.0.4
aria-query: 5.3.0
dom-accessibility-api: 0.5.16
@@ -9316,20 +8786,6 @@ snapshots:
dependencies:
'@testing-library/dom': 10.4.1
- '@trivago/prettier-plugin-sort-imports@5.2.2(prettier@3.4.2)':
- dependencies:
- '@babel/generator': 7.28.3
- '@babel/parser': 7.28.4
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
- javascript-natural-sort: 0.7.1
- lodash: 4.17.21
- prettier: 3.4.2
- transitivePeerDependencies:
- - supports-color
-
- '@trysound/sax@0.2.0': {}
-
'@tybys/wasm-util@0.10.1':
dependencies:
tslib: 2.8.1
@@ -9339,36 +8795,39 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
'@types/babel__generator': 7.27.0
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.28.0
'@types/babel__generator@7.27.0':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.29.0
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
'@types/babel__traverse@7.28.0':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.29.0
- '@types/chai@5.2.2':
+ '@types/chai@5.2.3':
dependencies:
'@types/deep-eql': 4.0.2
+ assertion-error: 2.0.1
'@types/deep-eql@4.0.2': {}
+ '@types/doctrine@0.0.9': {}
+
'@types/estree@1.0.8': {}
'@types/graceful-fs@4.1.9':
dependencies:
- '@types/node': 24.6.1
+ '@types/node': 25.4.0
'@types/hammerjs@2.0.46': {}
@@ -9386,120 +8845,120 @@ snapshots:
'@types/json5@0.0.29': {}
- '@types/lodash.mergewith@4.6.9':
+ '@types/node@25.4.0':
dependencies:
- '@types/lodash': 4.17.20
-
- '@types/lodash@4.17.20': {}
+ undici-types: 7.18.2
- '@types/node@24.6.1':
+ '@types/react@19.2.14':
dependencies:
- undici-types: 7.13.0
+ csstype: 3.2.3
- '@types/react@19.1.13':
- dependencies:
- csstype: 3.1.3
+ '@types/resolve@1.20.6': {}
'@types/stack-utils@2.0.3': {}
+ '@types/webidl-conversions@7.0.3': {}
+
+ '@types/whatwg-url@13.0.0':
+ dependencies:
+ '@types/webidl-conversions': 7.0.3
+
'@types/yargs-parser@21.0.3': {}
- '@types/yargs@17.0.33':
+ '@types/yargs@17.0.35':
dependencies:
'@types/yargs-parser': 21.0.3
- '@typescript-eslint/eslint-plugin@8.44.1(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)':
+ '@typescript-eslint/eslint-plugin@8.57.0(@typescript-eslint/parser@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/scope-manager': 8.44.1
- '@typescript-eslint/type-utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/visitor-keys': 8.44.1
- eslint: 9.36.0(jiti@2.6.0)
- graphemer: 1.4.0
+ '@eslint-community/regexpp': 4.12.2
+ '@typescript-eslint/parser': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.57.0
+ '@typescript-eslint/type-utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.57.0
+ eslint: 9.39.4(jiti@2.6.1)
ignore: 7.0.5
natural-compare: 1.4.0
- ts-api-utils: 2.1.0(typescript@5.9.2)
- typescript: 5.9.2
+ ts-api-utils: 2.4.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)':
+ '@typescript-eslint/parser@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.44.1
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/typescript-estree': 8.44.1(typescript@5.9.2)
- '@typescript-eslint/visitor-keys': 8.44.1
+ '@typescript-eslint/scope-manager': 8.57.0
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.57.0
debug: 4.4.3
- eslint: 9.36.0(jiti@2.6.0)
- typescript: 5.9.2
+ eslint: 9.39.4(jiti@2.6.1)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.44.1(typescript@5.9.2)':
+ '@typescript-eslint/project-service@8.57.0(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.44.1(typescript@5.9.2)
- '@typescript-eslint/types': 8.44.1
+ '@typescript-eslint/tsconfig-utils': 8.57.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.57.0
debug: 4.4.3
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.44.1':
+ '@typescript-eslint/scope-manager@8.57.0':
dependencies:
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/visitor-keys': 8.44.1
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/visitor-keys': 8.57.0
- '@typescript-eslint/tsconfig-utils@8.44.1(typescript@5.9.2)':
+ '@typescript-eslint/tsconfig-utils@8.57.0(typescript@5.9.3)':
dependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
- '@typescript-eslint/type-utils@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)':
+ '@typescript-eslint/type-utils@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/typescript-estree': 8.44.1(typescript@5.9.2)
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
debug: 4.4.3
- eslint: 9.36.0(jiti@2.6.0)
- ts-api-utils: 2.1.0(typescript@5.9.2)
- typescript: 5.9.2
+ eslint: 9.39.4(jiti@2.6.1)
+ ts-api-utils: 2.4.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@8.44.1': {}
+ '@typescript-eslint/types@8.57.0': {}
- '@typescript-eslint/typescript-estree@8.44.1(typescript@5.9.2)':
+ '@typescript-eslint/typescript-estree@8.57.0(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/project-service': 8.44.1(typescript@5.9.2)
- '@typescript-eslint/tsconfig-utils': 8.44.1(typescript@5.9.2)
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/visitor-keys': 8.44.1
+ '@typescript-eslint/project-service': 8.57.0(typescript@5.9.3)
+ '@typescript-eslint/tsconfig-utils': 8.57.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/visitor-keys': 8.57.0
debug: 4.4.3
- fast-glob: 3.3.3
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.2
- ts-api-utils: 2.1.0(typescript@5.9.2)
- typescript: 5.9.2
+ minimatch: 10.2.4
+ semver: 7.7.4
+ tinyglobby: 0.2.15
+ ts-api-utils: 2.4.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)':
+ '@typescript-eslint/utils@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0))
- '@typescript-eslint/scope-manager': 8.44.1
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/typescript-estree': 8.44.1(typescript@5.9.2)
- eslint: 9.36.0(jiti@2.6.0)
- typescript: 5.9.2
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@2.6.1))
+ '@typescript-eslint/scope-manager': 8.57.0
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
+ eslint: 9.39.4(jiti@2.6.1)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.44.1':
+ '@typescript-eslint/visitor-keys@8.57.0':
dependencies:
- '@typescript-eslint/types': 8.44.1
- eslint-visitor-keys: 4.2.1
+ '@typescript-eslint/types': 8.57.0
+ eslint-visitor-keys: 5.0.1
'@ungap/structured-clone@1.3.0': {}
@@ -9562,32 +9021,14 @@ snapshots:
'@unrs/resolver-binding-win32-x64-msvc@1.11.1':
optional: true
- '@urql/core@5.2.0':
- dependencies:
- '@0no-co/graphql.web': 1.2.0
- wonka: 6.3.5
- transitivePeerDependencies:
- - graphql
-
- '@urql/exchange-retry@1.3.2(@urql/core@5.2.0)':
- dependencies:
- '@urql/core': 5.2.0
- wonka: 6.3.5
-
'@vitest/expect@3.2.4':
dependencies:
- '@types/chai': 5.2.2
+ '@types/chai': 5.2.3
'@vitest/spy': 3.2.4
'@vitest/utils': 3.2.4
chai: 5.3.3
tinyrainbow: 2.0.0
- '@vitest/mocker@3.2.4':
- dependencies:
- '@vitest/spy': 3.2.4
- estree-walker: 3.0.3
- magic-string: 0.30.19
-
'@vitest/pretty-format@3.2.4':
dependencies:
tinyrainbow: 2.0.0
@@ -9613,20 +9054,20 @@ snapshots:
mime-types: 2.1.35
negotiator: 0.6.3
- acorn-jsx@5.3.2(acorn@8.15.0):
+ accepts@2.0.0:
+ dependencies:
+ mime-types: 3.0.2
+ negotiator: 1.0.0
+
+ acorn-jsx@5.3.2(acorn@8.16.0):
dependencies:
- acorn: 8.15.0
+ acorn: 8.16.0
- acorn@8.15.0: {}
+ acorn@8.16.0: {}
agent-base@7.1.4: {}
- aggregate-error@3.1.0:
- dependencies:
- clean-stack: 2.2.0
- indent-string: 4.0.0
-
- ajv@6.12.6:
+ ajv@6.14.0:
dependencies:
fast-deep-equal: 3.1.3
fast-json-stable-stringify: 2.1.0
@@ -9645,8 +9086,6 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.2.2: {}
-
ansi-styles@3.2.1:
dependencies:
color-convert: 1.9.3
@@ -9657,16 +9096,12 @@ snapshots:
ansi-styles@5.2.0: {}
- ansi-styles@6.2.3: {}
-
- any-promise@1.3.0: {}
-
anymatch@3.1.3:
dependencies:
normalize-path: 3.0.0
picomatch: 2.3.1
- arg@4.1.0: {}
+ arg@4.1.3: {}
arg@5.0.2: {}
@@ -9686,11 +9121,6 @@ snapshots:
aria-query@5.3.2: {}
- arktype@2.1.20:
- dependencies:
- '@ark/schema': 0.46.0
- '@ark/util': 0.46.0
-
array-buffer-byte-length@1.0.2:
dependencies:
call-bound: 1.0.4
@@ -9701,19 +9131,17 @@ snapshots:
call-bind: 1.0.8
call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.24.1
es-object-atoms: 1.1.1
get-intrinsic: 1.3.0
is-string: 1.1.1
math-intrinsics: 1.1.0
- array-union@2.1.0: {}
-
array.prototype.findlast@1.2.5:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.24.1
es-errors: 1.3.0
es-object-atoms: 1.1.1
es-shim-unscopables: 1.1.0
@@ -9723,7 +9151,7 @@ snapshots:
call-bind: 1.0.8
call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.24.1
es-errors: 1.3.0
es-object-atoms: 1.1.1
es-shim-unscopables: 1.1.0
@@ -9732,21 +9160,21 @@ snapshots:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.24.1
es-shim-unscopables: 1.1.0
array.prototype.flatmap@1.3.3:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.24.1
es-shim-unscopables: 1.1.0
array.prototype.tosorted@1.1.4:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.24.1
es-errors: 1.3.0
es-shim-unscopables: 1.1.0
@@ -9755,19 +9183,13 @@ snapshots:
array-buffer-byte-length: 1.0.2
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.24.1
es-errors: 1.3.0
get-intrinsic: 1.3.0
is-array-buffer: 3.0.5
asap@2.0.6: {}
- asn1js@3.0.6:
- dependencies:
- pvtsutils: 1.3.6
- pvutils: 1.1.3
- tslib: 2.8.1
-
assertion-error@2.0.1: {}
ast-types@0.16.1:
@@ -9776,19 +9198,17 @@ snapshots:
async-function@1.0.0: {}
- async-limiter@1.0.1: {}
-
available-typed-arrays@1.0.7:
dependencies:
possible-typed-array-names: 1.1.0
- babel-jest@29.7.0(@babel/core@7.28.4):
+ babel-jest@29.7.0(@babel/core@7.29.0):
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
'@jest/transform': 29.7.0
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.28.4)
+ babel-preset-jest: 29.6.3(@babel/core@7.29.0)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -9797,7 +9217,7 @@ snapshots:
babel-plugin-istanbul@6.1.1:
dependencies:
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
@@ -9807,144 +9227,155 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
- '@babel/template': 7.27.2
- '@babel/types': 7.28.4
+ '@babel/template': 7.28.6
+ '@babel/types': 7.29.0
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.28.0
- babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.4):
+ babel-plugin-polyfill-corejs2@0.4.16(@babel/core@7.29.0):
dependencies:
- '@babel/compat-data': 7.28.4
- '@babel/core': 7.28.4
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
+ '@babel/compat-data': 7.29.0
+ '@babel/core': 7.29.0
+ '@babel/helper-define-polyfill-provider': 0.6.7(@babel/core@7.29.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.4):
+ babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.29.0):
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
- core-js-compat: 3.45.1
+ '@babel/core': 7.29.0
+ '@babel/helper-define-polyfill-provider': 0.6.7(@babel/core@7.29.0)
+ core-js-compat: 3.48.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.4):
+ babel-plugin-polyfill-regenerator@0.6.7(@babel/core@7.29.0):
dependencies:
- '@babel/core': 7.28.4
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
+ '@babel/core': 7.29.0
+ '@babel/helper-define-polyfill-provider': 0.6.7(@babel/core@7.29.0)
transitivePeerDependencies:
- supports-color
babel-plugin-react-compiler@1.0.0:
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.29.0
- babel-plugin-react-native-web@0.21.1: {}
+ babel-plugin-react-native-web@0.21.2: {}
- babel-plugin-syntax-hermes-parser@0.28.1:
+ babel-plugin-syntax-hermes-parser@0.32.0:
dependencies:
- hermes-parser: 0.28.1
+ hermes-parser: 0.32.0
- babel-plugin-syntax-hermes-parser@0.29.1:
+ babel-plugin-syntax-hermes-parser@0.32.1:
dependencies:
- hermes-parser: 0.29.1
+ hermes-parser: 0.32.1
- babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.28.4):
+ babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.29.0):
dependencies:
- '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-syntax-flow': 7.28.6(@babel/core@7.29.0)
transitivePeerDependencies:
- '@babel/core'
- babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.4):
- dependencies:
- '@babel/core': 7.28.4
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.4)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.4)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.4)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.4)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.4)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.4)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.4)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.4)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.4)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.4)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.4)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.4)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.4)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.4)
-
- babel-preset-expo@54.0.5(@babel/core@7.28.4)(@babel/runtime@7.28.4)(expo@54.0.15)(react-refresh@0.14.2):
- dependencies:
- '@babel/helper-module-imports': 7.27.1
- '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-syntax-export-default-from': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.4)
- '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4)
- '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-runtime': 7.28.3(@babel/core@7.28.4)
- '@babel/preset-react': 7.27.1(@babel/core@7.28.4)
- '@babel/preset-typescript': 7.27.1(@babel/core@7.28.4)
- '@react-native/babel-preset': 0.81.4(@babel/core@7.28.4)
+ babel-preset-current-node-syntax@1.2.0(@babel/core@7.29.0):
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.29.0)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.29.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.29.0)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.29.0)
+ '@babel/plugin-syntax-import-attributes': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.29.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.29.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.29.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.29.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.29.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.29.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.0)
+ '@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.11(@babel/core@7.29.0)(@babel/runtime@7.28.6)(expo@55.0.6)(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.2(@babel/core@7.29.0)
babel-plugin-react-compiler: 1.0.0
- babel-plugin-react-native-web: 0.21.1
- babel-plugin-syntax-hermes-parser: 0.29.1
- babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.4)
+ 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.28.4
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ '@babel/runtime': 7.28.6
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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-jest@29.6.3(@babel/core@7.28.4):
+ babel-preset-jest@29.6.3(@babel/core@7.29.0):
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.4)
+ babel-preset-current-node-syntax: 1.2.0(@babel/core@7.29.0)
balanced-match@1.0.2: {}
+ balanced-match@4.0.4: {}
+
base64-js@1.5.1: {}
- baseline-browser-mapping@2.8.16: {}
+ baseline-browser-mapping@2.10.0: {}
- better-auth@1.3.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ better-auth@1.5.5(mongodb@7.1.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
dependencies:
- '@better-auth/core': 1.3.27
- '@better-auth/utils': 0.3.0
- '@better-fetch/fetch': 1.1.18
- '@noble/ciphers': 2.0.1
+ '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1)
+ '@better-auth/drizzle-adapter': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)
+ '@better-auth/kysely-adapter': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(kysely@0.28.11)
+ '@better-auth/memory-adapter': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)
+ '@better-auth/mongo-adapter': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(mongodb@7.1.0)
+ '@better-auth/prisma-adapter': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)
+ '@better-auth/telemetry': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(better-call@1.3.2(zod@4.3.6))(jose@6.2.1)(kysely@0.28.11)(nanostores@1.1.1))
+ '@better-auth/utils': 0.3.1
+ '@better-fetch/fetch': 1.1.21
+ '@noble/ciphers': 2.1.1
'@noble/hashes': 2.0.1
- '@simplewebauthn/browser': 13.2.0
- '@simplewebauthn/server': 13.2.1
- better-call: 1.0.19
+ better-call: 1.3.2(zod@4.3.6)
defu: 6.1.4
- jose: 6.1.0
- kysely: 0.28.7
- nanostores: 1.0.1
- zod: 4.1.11
+ jose: 6.2.1
+ kysely: 0.28.11
+ nanostores: 1.1.1
+ zod: 4.3.6
optionalDependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ mongodb: 7.1.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ transitivePeerDependencies:
+ - '@cloudflare/workers-types'
- better-call@1.0.19:
+ better-call@1.3.2(zod@4.3.6):
dependencies:
- '@better-auth/utils': 0.3.0
- '@better-fetch/fetch': 1.1.18
- rou3: 0.5.1
- set-cookie-parser: 2.7.1
- uncrypto: 0.1.3
+ '@better-auth/utils': 0.3.1
+ '@better-fetch/fetch': 1.1.21
+ rou3: 0.7.12
+ set-cookie-parser: 3.0.1
+ optionalDependencies:
+ zod: 4.3.6
better-opn@3.0.2:
dependencies:
@@ -9977,22 +9408,28 @@ snapshots:
dependencies:
balanced-match: 1.0.2
+ brace-expansion@5.0.4:
+ dependencies:
+ balanced-match: 4.0.4
+
braces@3.0.3:
dependencies:
fill-range: 7.1.1
- browserslist@4.26.3:
+ browserslist@4.28.1:
dependencies:
- baseline-browser-mapping: 2.8.16
- caniuse-lite: 1.0.30001750
- electron-to-chromium: 1.5.234
- node-releases: 2.0.21
- update-browserslist-db: 1.1.3(browserslist@4.26.3)
+ baseline-browser-mapping: 2.10.0
+ caniuse-lite: 1.0.30001778
+ electron-to-chromium: 1.5.313
+ node-releases: 2.0.36
+ update-browserslist-db: 1.2.3(browserslist@4.28.1)
bser@2.1.1:
dependencies:
node-int64: 0.4.0
+ bson@7.2.0: {}
+
buffer-from@1.1.2: {}
buffer@5.7.1:
@@ -10010,18 +9447,18 @@ snapshots:
bytes@3.1.2: {}
- c12@3.3.0:
+ c12@3.3.3:
dependencies:
- chokidar: 4.0.3
- confbox: 0.2.2
+ chokidar: 5.0.0
+ confbox: 0.2.4
defu: 6.1.4
- dotenv: 17.2.2
- exsolve: 1.0.7
+ dotenv: 17.3.1
+ exsolve: 1.0.8
giget: 2.0.0
- jiti: 2.6.0
+ jiti: 2.6.1
ohash: 2.0.11
pathe: 2.0.3
- perfect-debounce: 2.0.0
+ perfect-debounce: 2.1.0
pkg-types: 2.3.0
rc9: 2.1.2
@@ -10037,20 +9474,10 @@ snapshots:
get-intrinsic: 1.3.0
set-function-length: 1.2.2
- call-bound@1.0.4:
- dependencies:
- call-bind-apply-helpers: 1.0.2
- get-intrinsic: 1.3.0
-
- caller-callsite@2.0.0:
- dependencies:
- callsites: 2.0.0
-
- caller-path@2.0.0:
+ call-bound@1.0.4:
dependencies:
- caller-callsite: 2.0.0
-
- callsites@2.0.0: {}
+ call-bind-apply-helpers: 1.0.2
+ get-intrinsic: 1.3.0
callsites@3.1.0: {}
@@ -10058,12 +9485,12 @@ snapshots:
camelcase@6.3.0: {}
- caniuse-lite@1.0.30001750: {}
+ caniuse-lite@1.0.30001778: {}
chai@5.3.3:
dependencies:
assertion-error: 2.0.1
- check-error: 2.1.1
+ check-error: 2.1.3
deep-eql: 5.0.2
loupe: 3.2.1
pathval: 2.0.1
@@ -10081,17 +9508,15 @@ snapshots:
change-case@5.4.4: {}
- check-error@2.1.1: {}
+ check-error@2.1.3: {}
- chokidar@4.0.3:
+ chokidar@5.0.0:
dependencies:
- readdirp: 4.1.2
-
- chownr@3.0.0: {}
+ readdirp: 5.0.0
chrome-launcher@0.15.2:
dependencies:
- '@types/node': 24.6.1
+ '@types/node': 25.4.0
escape-string-regexp: 4.0.0
is-wsl: 2.2.0
lighthouse-logger: 1.4.2
@@ -10100,7 +9525,7 @@ snapshots:
chromium-edge-launcher@0.2.0:
dependencies:
- '@types/node': 24.6.1
+ '@types/node': 25.4.0
escape-string-regexp: 4.0.0
is-wsl: 2.2.0
lighthouse-logger: 1.4.2
@@ -10113,18 +9538,22 @@ snapshots:
ci-info@3.9.0: {}
- ci-info@4.3.0: {}
+ ci-info@4.4.0: {}
citty@0.1.6:
dependencies:
consola: 3.4.2
+ citty@0.2.1: {}
+
+ class-variance-authority@0.7.1:
+ dependencies:
+ clsx: 2.1.1
+
clean-regexp@1.0.0:
dependencies:
escape-string-regexp: 1.0.5
- clean-stack@2.2.0: {}
-
cli-cursor@2.1.0:
dependencies:
restore-cursor: 2.0.0
@@ -10133,12 +9562,6 @@ snapshots:
client-only@0.0.1: {}
- cliui@7.0.4:
- dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 7.0.0
-
cliui@8.0.1:
dependencies:
string-width: 4.2.3
@@ -10147,6 +9570,8 @@ snapshots:
clone@1.0.4: {}
+ clsx@2.1.1: {}
+
color-convert@1.9.3:
dependencies:
color-name: 1.1.3
@@ -10166,8 +9591,6 @@ snapshots:
color-support@1.1.3: {}
- color2k@2.0.3: {}
-
color@4.2.3:
dependencies:
color-convert: 2.0.1
@@ -10175,16 +9598,12 @@ snapshots:
commander@12.1.0: {}
- commander@13.0.0: {}
+ commander@14.0.3: {}
commander@2.20.3: {}
- commander@4.1.1: {}
-
commander@7.2.0: {}
- commander@8.3.0: {}
-
commander@9.5.0: {}
compare-versions@6.1.1: {}
@@ -10207,7 +9626,7 @@ snapshots:
concat-map@0.0.1: {}
- confbox@0.2.2: {}
+ confbox@0.2.4: {}
connect@3.7.0:
dependencies:
@@ -10222,27 +9641,18 @@ snapshots:
convert-source-map@2.0.0: {}
- core-js-compat@3.45.1:
- dependencies:
- browserslist: 4.26.3
-
- core-util-is@1.0.3: {}
-
- cosmiconfig@5.2.1:
+ core-js-compat@3.48.0:
dependencies:
- import-fresh: 2.0.0
- is-directory: 0.3.1
- js-yaml: 3.14.1
- parse-json: 4.0.0
+ browserslist: 4.28.1
- cosmiconfig@8.3.6(typescript@5.9.2):
+ cosmiconfig@8.3.6(typescript@5.9.3):
dependencies:
import-fresh: 3.3.1
- js-yaml: 4.1.0
+ js-yaml: 4.1.1
parse-json: 5.2.0
path-type: 4.0.0
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
cross-fetch@3.2.0:
dependencies:
@@ -10264,8 +9674,6 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
- crypto-random-string@2.0.0: {}
-
css-in-js-utils@3.1.0:
dependencies:
hyphenate-style-name: 1.1.0
@@ -10301,7 +9709,9 @@ snapshots:
dependencies:
css-tree: 2.2.1
- csstype@3.1.3: {}
+ csstype@3.2.3: {}
+
+ culori@4.0.2: {}
dashify@2.0.0: {}
@@ -10323,7 +9733,7 @@ snapshots:
es-errors: 1.3.0
is-data-view: 1.0.2
- dayjs@1.11.18: {}
+ dayjs@1.11.19: {}
debug@2.6.9:
dependencies:
@@ -10337,39 +9747,22 @@ snapshots:
dependencies:
ms: 2.1.3
- decode-formdata@0.9.0: {}
-
decode-uri-component@0.2.2: {}
- dedent@0.7.0: {}
-
- dedent@1.7.0: {}
+ dedent@1.7.2: {}
deep-eql@5.0.2: {}
- deep-equal@1.1.2:
- dependencies:
- is-arguments: 1.2.0
- is-date-object: 1.1.0
- is-regex: 1.2.1
- object-is: 1.1.6
- object-keys: 1.1.1
- regexp.prototype.flags: 1.5.4
-
- deep-extend@0.6.0: {}
-
deep-is@0.1.4: {}
- deepmerge@4.2.2: {}
-
deepmerge@4.3.1: {}
- default-browser-id@5.0.0: {}
+ default-browser-id@5.0.1: {}
- default-browser@5.2.1:
+ default-browser@5.5.0:
dependencies:
bundle-name: 4.1.0
- default-browser-id: 5.0.0
+ default-browser-id: 5.0.1
defaults@1.0.4:
dependencies:
@@ -10393,19 +9786,6 @@ snapshots:
defu@6.1.4: {}
- del@6.1.1:
- dependencies:
- globby: 11.1.0
- graceful-fs: 4.2.11
- is-glob: 4.0.3
- is-path-cwd: 2.2.0
- is-path-inside: 3.0.3
- p-map: 4.0.0
- rimraf: 3.0.2
- slash: 3.0.0
-
- denodeify@1.2.1: {}
-
depd@2.0.0: {}
dequal@2.0.3: {}
@@ -10414,15 +9794,11 @@ snapshots:
destroy@1.2.0: {}
- detect-libc@2.1.1: {}
+ detect-libc@2.1.2: {}
detect-node-es@1.1.0: {}
- devalue@5.3.2: {}
-
- dir-glob@3.0.1:
- dependencies:
- path-type: 4.0.0
+ dnssd-advertise@1.1.3: {}
doctrine@2.1.0:
dependencies:
@@ -10459,22 +9835,20 @@ snapshots:
no-case: 3.0.4
tslib: 2.8.1
- dotenv-cli@10.0.0:
+ dotenv-cli@11.0.0:
dependencies:
cross-spawn: 7.0.6
- dotenv: 17.2.2
- dotenv-expand: 11.0.7
+ dotenv: 17.3.1
+ dotenv-expand: 12.0.3
minimist: 1.2.8
- dotenv-expand@11.0.7:
+ dotenv-expand@12.0.3:
dependencies:
dotenv: 16.6.1
- dotenv@16.4.7: {}
-
dotenv@16.6.1: {}
- dotenv@17.2.2: {}
+ dotenv@17.3.1: {}
dunder-proto@1.0.1:
dependencies:
@@ -10482,28 +9856,23 @@ snapshots:
es-errors: 1.3.0
gopd: 1.2.0
- eastasianwidth@0.2.0: {}
-
ee-first@1.1.1: {}
- electron-to-chromium@1.5.234: {}
+ electron-to-chromium@1.5.313: {}
emoji-regex@8.0.0: {}
- emoji-regex@9.2.2: {}
-
encodeurl@1.0.2: {}
encodeurl@2.0.0: {}
- end-of-stream@1.4.5:
+ enhanced-resolve@5.20.0:
dependencies:
- once: 1.4.0
+ graceful-fs: 4.2.11
+ tapable: 2.3.0
entities@4.5.0: {}
- env-editor@0.4.2: {}
-
error-ex@1.3.4:
dependencies:
is-arrayish: 0.2.1
@@ -10512,7 +9881,7 @@ snapshots:
dependencies:
stackframe: 1.3.4
- es-abstract@1.24.0:
+ es-abstract@1.24.1:
dependencies:
array-buffer-byte-length: 1.0.2
arraybuffer.prototype.slice: 1.0.4
@@ -10567,18 +9936,18 @@ snapshots:
typed-array-byte-offset: 1.0.4
typed-array-length: 1.0.7
unbox-primitive: 1.1.0
- which-typed-array: 1.1.19
+ which-typed-array: 1.1.20
es-define-property@1.0.1: {}
es-errors@1.3.0: {}
- es-iterator-helpers@1.2.1:
+ es-iterator-helpers@1.3.0:
dependencies:
call-bind: 1.0.8
call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.24.1
es-errors: 1.3.0
es-set-tostringtag: 2.1.0
function-bind: 1.1.2
@@ -10590,6 +9959,7 @@ snapshots:
has-symbols: 1.1.0
internal-slot: 1.1.0
iterator.prototype: 1.1.5
+ math-intrinsics: 1.1.0
safe-array-concat: 1.1.3
es-object-atoms@1.1.1:
@@ -10613,43 +9983,43 @@ snapshots:
is-date-object: 1.1.0
is-symbol: 1.1.1
- es-toolkit@1.40.0: {}
+ es-toolkit@1.45.1: {}
- esbuild-register@3.6.0(esbuild@0.25.10):
+ esbuild-register@3.6.0(esbuild@0.27.3):
dependencies:
debug: 4.4.3
- esbuild: 0.25.10
+ esbuild: 0.27.3
transitivePeerDependencies:
- supports-color
- esbuild@0.25.10:
+ esbuild@0.27.3:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.10
- '@esbuild/android-arm': 0.25.10
- '@esbuild/android-arm64': 0.25.10
- '@esbuild/android-x64': 0.25.10
- '@esbuild/darwin-arm64': 0.25.10
- '@esbuild/darwin-x64': 0.25.10
- '@esbuild/freebsd-arm64': 0.25.10
- '@esbuild/freebsd-x64': 0.25.10
- '@esbuild/linux-arm': 0.25.10
- '@esbuild/linux-arm64': 0.25.10
- '@esbuild/linux-ia32': 0.25.10
- '@esbuild/linux-loong64': 0.25.10
- '@esbuild/linux-mips64el': 0.25.10
- '@esbuild/linux-ppc64': 0.25.10
- '@esbuild/linux-riscv64': 0.25.10
- '@esbuild/linux-s390x': 0.25.10
- '@esbuild/linux-x64': 0.25.10
- '@esbuild/netbsd-arm64': 0.25.10
- '@esbuild/netbsd-x64': 0.25.10
- '@esbuild/openbsd-arm64': 0.25.10
- '@esbuild/openbsd-x64': 0.25.10
- '@esbuild/openharmony-arm64': 0.25.10
- '@esbuild/sunos-x64': 0.25.10
- '@esbuild/win32-arm64': 0.25.10
- '@esbuild/win32-ia32': 0.25.10
- '@esbuild/win32-x64': 0.25.10
+ '@esbuild/aix-ppc64': 0.27.3
+ '@esbuild/android-arm': 0.27.3
+ '@esbuild/android-arm64': 0.27.3
+ '@esbuild/android-x64': 0.27.3
+ '@esbuild/darwin-arm64': 0.27.3
+ '@esbuild/darwin-x64': 0.27.3
+ '@esbuild/freebsd-arm64': 0.27.3
+ '@esbuild/freebsd-x64': 0.27.3
+ '@esbuild/linux-arm': 0.27.3
+ '@esbuild/linux-arm64': 0.27.3
+ '@esbuild/linux-ia32': 0.27.3
+ '@esbuild/linux-loong64': 0.27.3
+ '@esbuild/linux-mips64el': 0.27.3
+ '@esbuild/linux-ppc64': 0.27.3
+ '@esbuild/linux-riscv64': 0.27.3
+ '@esbuild/linux-s390x': 0.27.3
+ '@esbuild/linux-x64': 0.27.3
+ '@esbuild/netbsd-arm64': 0.27.3
+ '@esbuild/netbsd-x64': 0.27.3
+ '@esbuild/openbsd-arm64': 0.27.3
+ '@esbuild/openbsd-x64': 0.27.3
+ '@esbuild/openharmony-arm64': 0.27.3
+ '@esbuild/sunos-x64': 0.27.3
+ '@esbuild/win32-arm64': 0.27.3
+ '@esbuild/win32-ia32': 0.27.3
+ '@esbuild/win32-x64': 0.27.3
escalade@3.2.0: {}
@@ -10661,19 +10031,17 @@ snapshots:
escape-string-regexp@4.0.0: {}
- escape-string-regexp@5.0.0: {}
-
- eslint-config-expo@10.0.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2):
+ eslint-config-expo@55.0.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.44.1(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/parser': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint: 9.36.0(jiti@2.6.0)
- eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.36.0(jiti@2.6.0))
- eslint-plugin-expo: 1.0.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@9.36.0(jiti@2.6.0))
- eslint-plugin-react: 7.37.5(eslint@9.36.0(jiti@2.6.0))
- eslint-plugin-react-hooks: 5.2.0(eslint@9.36.0(jiti@2.6.0))
- globals: 16.4.0
+ '@typescript-eslint/eslint-plugin': 8.57.0(@typescript-eslint/parser@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.39.4(jiti@2.6.1)
+ eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.4(jiti@2.6.1))
+ eslint-plugin-expo: 1.0.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@2.6.1))
+ eslint-plugin-react: 7.37.5(eslint@9.39.4(jiti@2.6.1))
+ eslint-plugin-react-hooks: 5.2.0(eslint@9.39.4(jiti@2.6.1))
+ globals: 16.5.0
transitivePeerDependencies:
- eslint-import-resolver-webpack
- eslint-plugin-import-x
@@ -10684,46 +10052,46 @@ snapshots:
dependencies:
debug: 3.2.7
is-core-module: 2.16.1
- resolve: 1.22.10
+ resolve: 1.22.11
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@9.36.0(jiti@2.6.0)):
+ eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.4(jiti@2.6.1)):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.4.3
- eslint: 9.36.0(jiti@2.6.0)
- get-tsconfig: 4.10.1
+ eslint: 9.39.4(jiti@2.6.1)
+ get-tsconfig: 4.13.6
is-bun-module: 2.0.0
stable-hash: 0.0.5
tinyglobby: 0.2.15
unrs-resolver: 1.11.1
optionalDependencies:
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@9.36.0(jiti@2.6.0))
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@2.6.1))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.1(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.36.0(jiti@2.6.0)):
+ eslint-module-utils@2.12.1(@typescript-eslint/parser@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@2.6.1)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint: 9.36.0(jiti@2.6.0)
+ '@typescript-eslint/parser': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.39.4(jiti@2.6.1)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.36.0(jiti@2.6.0))
+ eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.4(jiti@2.6.1))
transitivePeerDependencies:
- supports-color
- eslint-plugin-expo@1.0.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2):
+ eslint-plugin-expo@1.0.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3):
dependencies:
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint: 9.36.0(jiti@2.6.0)
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.39.4(jiti@2.6.1)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@9.36.0(jiti@2.6.0)):
+ eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@2.6.1)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -10732,13 +10100,13 @@ snapshots:
array.prototype.flatmap: 1.3.3
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.36.0(jiti@2.6.0)
+ eslint: 9.39.4(jiti@2.6.1)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.36.0(jiti@2.6.0))
+ eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@2.6.1))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
- minimatch: 3.1.2
+ minimatch: 3.1.5
object.fromentries: 2.0.8
object.groupby: 1.0.3
object.values: 1.2.1
@@ -10746,204 +10114,180 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
+ '@typescript-eslint/parser': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-react-debug@1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2):
- dependencies:
- '@eslint-react/ast': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/core': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/eff': 1.53.1
- '@eslint-react/kit': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/shared': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/var': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/scope-manager': 8.44.1
- '@typescript-eslint/type-utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint: 9.36.0(jiti@2.6.0)
- string-ts: 2.2.1
- ts-pattern: 5.8.0
- optionalDependencies:
- typescript: 5.9.2
- transitivePeerDependencies:
- - supports-color
-
- eslint-plugin-react-dom@1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2):
+ eslint-plugin-react-dom@2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3):
dependencies:
- '@eslint-react/ast': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/core': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/eff': 1.53.1
- '@eslint-react/kit': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/shared': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/var': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/scope-manager': 8.44.1
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
+ '@eslint-react/ast': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/core': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/eff': 2.13.0
+ '@eslint-react/shared': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/var': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.57.0
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
compare-versions: 6.1.1
- eslint: 9.36.0(jiti@2.6.0)
- string-ts: 2.2.1
- ts-pattern: 5.8.0
- optionalDependencies:
- typescript: 5.9.2
+ eslint: 9.39.4(jiti@2.6.1)
+ ts-pattern: 5.9.0
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-hooks-extra@1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2):
+ eslint-plugin-react-hooks-extra@2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3):
dependencies:
- '@eslint-react/ast': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/core': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/eff': 1.53.1
- '@eslint-react/kit': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/shared': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/var': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/scope-manager': 8.44.1
- '@typescript-eslint/type-utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint: 9.36.0(jiti@2.6.0)
- string-ts: 2.2.1
- ts-pattern: 5.8.0
- optionalDependencies:
- typescript: 5.9.2
+ '@eslint-react/ast': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/core': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/eff': 2.13.0
+ '@eslint-react/shared': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/var': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.57.0
+ '@typescript-eslint/type-utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.39.4(jiti@2.6.1)
+ ts-pattern: 5.9.0
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-hooks@5.2.0(eslint@9.36.0(jiti@2.6.0)):
+ eslint-plugin-react-hooks@5.2.0(eslint@9.39.4(jiti@2.6.1)):
dependencies:
- eslint: 9.36.0(jiti@2.6.0)
+ eslint: 9.39.4(jiti@2.6.1)
- eslint-plugin-react-naming-convention@1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2):
+ eslint-plugin-react-naming-convention@2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3):
dependencies:
- '@eslint-react/ast': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/core': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/eff': 1.53.1
- '@eslint-react/kit': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/shared': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/var': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/scope-manager': 8.44.1
- '@typescript-eslint/type-utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint: 9.36.0(jiti@2.6.0)
- string-ts: 2.2.1
- ts-pattern: 5.8.0
- optionalDependencies:
- typescript: 5.9.2
+ '@eslint-react/ast': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/core': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/eff': 2.13.0
+ '@eslint-react/shared': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/var': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.57.0
+ '@typescript-eslint/type-utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ compare-versions: 6.1.1
+ eslint: 9.39.4(jiti@2.6.1)
+ string-ts: 2.3.1
+ ts-pattern: 5.9.0
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-web-api@1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2):
+ eslint-plugin-react-rsc@2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3):
dependencies:
- '@eslint-react/ast': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/core': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/eff': 1.53.1
- '@eslint-react/kit': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/shared': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/var': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/scope-manager': 8.44.1
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint: 9.36.0(jiti@2.6.0)
- string-ts: 2.2.1
- ts-pattern: 5.8.0
- optionalDependencies:
- typescript: 5.9.2
+ '@eslint-react/ast': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/shared': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/var': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.39.4(jiti@2.6.1)
+ ts-pattern: 5.9.0
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
+ eslint-plugin-react-web-api@2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3):
+ dependencies:
+ '@eslint-react/ast': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/core': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/eff': 2.13.0
+ '@eslint-react/shared': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/var': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.57.0
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ birecord: 0.1.1
+ eslint: 9.39.4(jiti@2.6.1)
+ ts-pattern: 5.9.0
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-x@1.53.1(eslint@9.36.0(jiti@2.6.0))(ts-api-utils@2.1.0(typescript@5.9.2))(typescript@5.9.2):
+ eslint-plugin-react-x@2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3):
dependencies:
- '@eslint-react/ast': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/core': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/eff': 1.53.1
- '@eslint-react/kit': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/shared': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@eslint-react/var': 1.53.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/scope-manager': 8.44.1
- '@typescript-eslint/type-utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/types': 8.44.1
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
+ '@eslint-react/ast': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/core': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/eff': 2.13.0
+ '@eslint-react/shared': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@eslint-react/var': 2.13.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.57.0
+ '@typescript-eslint/type-utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
compare-versions: 6.1.1
- eslint: 9.36.0(jiti@2.6.0)
- is-immutable-type: 5.0.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- string-ts: 2.2.1
- ts-pattern: 5.8.0
- optionalDependencies:
- ts-api-utils: 2.1.0(typescript@5.9.2)
- typescript: 5.9.2
+ eslint: 9.39.4(jiti@2.6.1)
+ is-immutable-type: 5.0.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ ts-api-utils: 2.4.0(typescript@5.9.3)
+ ts-pattern: 5.9.0
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- eslint-plugin-react@7.37.5(eslint@9.36.0(jiti@2.6.0)):
+ eslint-plugin-react@7.37.5(eslint@9.39.4(jiti@2.6.1)):
dependencies:
array-includes: 3.1.9
array.prototype.findlast: 1.2.5
array.prototype.flatmap: 1.3.3
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
- es-iterator-helpers: 1.2.1
- eslint: 9.36.0(jiti@2.6.0)
+ es-iterator-helpers: 1.3.0
+ eslint: 9.39.4(jiti@2.6.1)
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
- minimatch: 3.1.2
+ minimatch: 3.1.5
object.entries: 1.1.9
object.fromentries: 2.0.8
object.values: 1.2.1
prop-types: 15.8.1
- resolve: 2.0.0-next.5
+ resolve: 2.0.0-next.6
semver: 6.3.1
string.prototype.matchall: 4.0.12
string.prototype.repeat: 1.0.0
- eslint-plugin-simple-import-sort@12.1.1(eslint@9.36.0(jiti@2.6.0)):
+ eslint-plugin-simple-import-sort@12.1.1(eslint@9.39.4(jiti@2.6.1)):
dependencies:
- eslint: 9.36.0(jiti@2.6.0)
+ eslint: 9.39.4(jiti@2.6.1)
- eslint-plugin-sonarjs@3.0.5(eslint@9.36.0(jiti@2.6.0)):
+ eslint-plugin-sonarjs@4.0.2(eslint@9.39.4(jiti@2.6.1)):
dependencies:
- '@eslint-community/regexpp': 4.12.1
+ '@eslint-community/regexpp': 4.12.2
builtin-modules: 3.3.0
bytes: 3.1.2
- eslint: 9.36.0(jiti@2.6.0)
+ eslint: 9.39.4(jiti@2.6.1)
functional-red-black-tree: 1.0.1
+ globals: 17.4.0
jsx-ast-utils-x: 0.1.0
lodash.merge: 4.6.2
- minimatch: 9.0.5
+ minimatch: 10.2.4
scslre: 0.3.0
- semver: 7.7.2
- typescript: 5.9.2
+ semver: 7.7.4
+ ts-api-utils: 2.4.0(typescript@5.9.3)
+ typescript: 5.9.3
- eslint-plugin-unicorn@61.0.2(eslint@9.36.0(jiti@2.6.0)):
+ eslint-plugin-unicorn@63.0.0(eslint@9.39.4(jiti@2.6.1)):
dependencies:
- '@babel/helper-validator-identifier': 7.27.1
- '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0))
- '@eslint/plugin-kit': 0.3.5
+ '@babel/helper-validator-identifier': 7.28.5
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@2.6.1))
change-case: 5.4.4
- ci-info: 4.3.0
+ ci-info: 4.4.0
clean-regexp: 1.0.0
- core-js-compat: 3.45.1
- eslint: 9.36.0(jiti@2.6.0)
- esquery: 1.6.0
+ core-js-compat: 3.48.0
+ eslint: 9.39.4(jiti@2.6.1)
find-up-simple: 1.0.1
- globals: 16.4.0
+ globals: 16.5.0
indent-string: 5.0.0
is-builtin-module: 5.0.0
jsesc: 3.1.0
pluralize: 8.0.0
regexp-tree: 0.1.27
- regjsparser: 0.12.0
- semver: 7.7.2
- strip-indent: 4.1.0
-
- eslint-scope@7.2.2:
- dependencies:
- esrecurse: 4.3.0
- estraverse: 5.3.0
+ regjsparser: 0.13.0
+ semver: 7.7.4
+ strip-indent: 4.1.1
eslint-scope@8.4.0:
dependencies:
@@ -10954,65 +10298,23 @@ snapshots:
eslint-visitor-keys@4.2.1: {}
- eslint@8.57.0:
- dependencies:
- '@eslint-community/eslint-utils': 4.9.0(eslint@8.57.0)
- '@eslint-community/regexpp': 4.12.1
- '@eslint/eslintrc': 2.1.4
- '@eslint/js': 8.57.0
- '@humanwhocodes/config-array': 0.11.14
- '@humanwhocodes/module-importer': 1.0.1
- '@nodelib/fs.walk': 1.2.8
- '@ungap/structured-clone': 1.3.0
- ajv: 6.12.6
- chalk: 4.1.2
- cross-spawn: 7.0.6
- debug: 4.4.3
- doctrine: 3.0.0
- escape-string-regexp: 4.0.0
- eslint-scope: 7.2.2
- eslint-visitor-keys: 3.4.3
- espree: 9.6.1
- esquery: 1.6.0
- esutils: 2.0.3
- fast-deep-equal: 3.1.3
- file-entry-cache: 6.0.1
- find-up: 5.0.0
- glob-parent: 6.0.2
- globals: 13.24.0
- graphemer: 1.4.0
- ignore: 5.3.2
- imurmurhash: 0.1.4
- is-glob: 4.0.3
- is-path-inside: 3.0.3
- js-yaml: 4.1.0
- json-stable-stringify-without-jsonify: 1.0.1
- levn: 0.4.1
- lodash.merge: 4.6.2
- minimatch: 3.1.2
- natural-compare: 1.4.0
- optionator: 0.9.4
- strip-ansi: 6.0.1
- text-table: 0.2.0
- transitivePeerDependencies:
- - supports-color
+ eslint-visitor-keys@5.0.1: {}
- eslint@9.36.0(jiti@2.6.0):
+ eslint@9.39.4(jiti@2.6.1):
dependencies:
- '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0))
- '@eslint-community/regexpp': 4.12.1
- '@eslint/config-array': 0.21.0
- '@eslint/config-helpers': 0.3.1
- '@eslint/core': 0.15.2
- '@eslint/eslintrc': 3.3.1
- '@eslint/js': 9.36.0
- '@eslint/plugin-kit': 0.3.5
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@2.6.1))
+ '@eslint-community/regexpp': 4.12.2
+ '@eslint/config-array': 0.21.2
+ '@eslint/config-helpers': 0.4.2
+ '@eslint/core': 0.17.0
+ '@eslint/eslintrc': 3.3.5
+ '@eslint/js': 9.39.4
+ '@eslint/plugin-kit': 0.4.1
'@humanfs/node': 0.16.7
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.4.3
'@types/estree': 1.0.8
- '@types/json-schema': 7.0.15
- ajv: 6.12.6
+ ajv: 6.14.0
chalk: 4.1.2
cross-spawn: 7.0.6
debug: 4.4.3
@@ -11020,7 +10322,7 @@ snapshots:
eslint-scope: 8.4.0
eslint-visitor-keys: 4.2.1
espree: 10.4.0
- esquery: 1.6.0
+ esquery: 1.7.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 8.0.0
@@ -11031,29 +10333,23 @@ snapshots:
is-glob: 4.0.3
json-stable-stringify-without-jsonify: 1.0.1
lodash.merge: 4.6.2
- minimatch: 3.1.2
+ minimatch: 3.1.5
natural-compare: 1.4.0
optionator: 0.9.4
optionalDependencies:
- jiti: 2.6.0
+ jiti: 2.6.1
transitivePeerDependencies:
- supports-color
espree@10.4.0:
dependencies:
- acorn: 8.15.0
- acorn-jsx: 5.3.2(acorn@8.15.0)
+ acorn: 8.16.0
+ acorn-jsx: 5.3.2(acorn@8.16.0)
eslint-visitor-keys: 4.2.1
- espree@9.6.1:
- dependencies:
- acorn: 8.15.0
- acorn-jsx: 5.3.2(acorn@8.15.0)
- eslint-visitor-keys: 3.4.3
-
esprima@4.0.1: {}
- esquery@1.6.0:
+ esquery@1.7.0:
dependencies:
estraverse: 5.3.0
@@ -11063,306 +10359,307 @@ snapshots:
estraverse@5.3.0: {}
- estree-walker@3.0.3:
- dependencies:
- '@types/estree': 1.0.8
-
esutils@2.0.3: {}
etag@1.8.1: {}
event-target-shim@5.0.1: {}
- exec-async@2.2.0: {}
-
- execa@4.1.0:
+ expo-application@55.0.9(expo@55.0.6):
dependencies:
- cross-spawn: 7.0.6
- get-stream: 5.2.0
- human-signals: 1.1.1
- is-stream: 2.0.1
- merge-stream: 2.0.0
- npm-run-path: 4.0.1
- onetime: 5.1.2
- signal-exit: 3.0.7
- strip-final-newline: 2.0.0
-
- expo-application@7.0.7(expo@54.0.15):
- dependencies:
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-asset@12.0.9(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ expo-asset@55.0.8(expo@55.0.6)(react-native@0.83.2(@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.7
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- expo-constants: 18.0.9(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ '@expo/image-utils': 0.8.12
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.7(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(typescript@5.9.3)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
transitivePeerDependencies:
- supports-color
+ - typescript
- expo-constants@18.0.9(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)):
+ expo-constants@55.0.7(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(typescript@5.9.3):
dependencies:
- '@expo/config': 12.0.10
- '@expo/env': 2.0.7
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ '@expo/config': 55.0.8(typescript@5.9.3)
+ '@expo/env': 2.1.1
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
transitivePeerDependencies:
- supports-color
+ - typescript
- expo-crypto@15.0.7(expo@54.0.15):
+ expo-crypto@55.0.9(expo@55.0.6):
dependencies:
- base64-js: 1.5.1
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-device@8.0.9(expo@54.0.15):
+ expo-device@55.0.9(expo@55.0.6):
dependencies:
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
ua-parser-js: 0.7.41
- expo-eas-client@1.0.7: {}
+ expo-eas-client@55.0.2: {}
- expo-file-system@19.0.17(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)):
+ expo-file-system@55.0.10(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)):
dependencies:
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
- expo-font@14.0.9(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ expo-font@55.0.4(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
dependencies:
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
- expo-haptics@15.0.7(expo@54.0.15):
+ expo-glass-effect@55.0.8(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
dependencies:
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
- expo-image@3.0.10(expo@54.0.15)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ expo-haptics@55.0.8(expo@55.0.6):
dependencies:
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
+
+ expo-image@55.0.6(expo@55.0.6)(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ dependencies:
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.2(@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.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react-native-web: 0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- expo-json-utils@0.15.0: {}
+ expo-json-utils@55.0.0: {}
- expo-keep-awake@15.0.7(expo@54.0.15)(react@19.1.0):
+ expo-keep-awake@55.0.4(expo@55.0.6)(react@19.2.0):
dependencies:
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react: 19.1.0
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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-linking@8.0.8(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ expo-linking@55.0.7(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3):
dependencies:
- expo-constants: 18.0.9(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
+ expo-constants: 55.0.7(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(typescript@5.9.3)
invariant: 2.2.4
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
transitivePeerDependencies:
- expo
- supports-color
+ - typescript
- expo-localization@17.0.7(expo@54.0.15)(react@19.1.0):
+ expo-localization@55.0.8(expo@55.0.6)(react@19.2.0):
dependencies:
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react: 19.1.0
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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
rtl-detect: 1.1.2
- expo-manifests@1.0.8(expo@54.0.15):
+ expo-manifests@55.0.9(expo@55.0.6)(typescript@5.9.3):
dependencies:
- '@expo/config': 12.0.10
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- expo-json-utils: 0.15.0
+ '@expo/config': 55.0.8(typescript@5.9.3)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.0
transitivePeerDependencies:
- supports-color
+ - typescript
- expo-modules-autolinking@3.0.16:
+ expo-modules-autolinking@55.0.9(typescript@5.9.3):
dependencies:
+ '@expo/require-utils': 55.0.2(typescript@5.9.3)
'@expo/spawn-async': 1.7.2
chalk: 4.1.2
commander: 7.2.0
- glob: 10.4.5
- require-from-string: 2.0.2
- resolve-from: 5.0.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
- expo-modules-core@3.0.22(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ expo-modules-core@55.0.15(react-native@0.83.2(@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.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
-
- expo-router@6.0.13(@expo/metro-runtime@6.1.2)(@types/react@19.1.13)(expo-constants@18.0.9)(expo-linking@8.0.8)(expo@54.0.15)(react-dom@19.1.0(react@19.1.0))(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
- dependencies:
- '@expo/metro-runtime': 6.1.2(expo@54.0.15)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- '@expo/schema-utils': 0.1.7
- '@radix-ui/react-slot': 1.2.0(@types/react@19.1.13)(react@19.1.0)
- '@radix-ui/react-tabs': 1.1.13(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-navigation/bottom-tabs': 7.4.7(@react-navigation/native@7.1.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- '@react-navigation/native': 7.1.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- '@react-navigation/native-stack': 7.3.26(@react-navigation/native@7.1.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+
+ expo-network@55.0.8(expo@55.0.6)(react@19.2.0):
+ dependencies:
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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-router@55.0.5(@expo/log-box@55.0.7)(@expo/metro-runtime@55.0.6)(@types/react@19.2.14)(expo-constants@55.0.7)(expo-font@55.0.4)(expo-linking@55.0.7)(expo@55.0.6)(react-dom@19.2.0(react@19.2.0))(react-native-gesture-handler@2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.2(react-native@0.83.2(@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.2(@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))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
+ dependencies:
+ '@expo/log-box': 55.0.7(@expo/dom-webview@55.0.3)(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@expo/metro-runtime': 55.0.6(@expo/dom-webview@55.0.3)(expo@55.0.6)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@expo/schema-utils': 55.0.2
+ '@radix-ui/react-slot': 1.2.4(@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.5(@react-navigation/native@7.1.33(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.2(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@react-navigation/native': 7.1.33(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@react-navigation/native-stack': 7.14.4(@react-navigation/native@7.1.33(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.2(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@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: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- expo-constants: 18.0.9(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
- expo-linking: 8.0.8(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- expo-server: 1.0.2
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.7(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(typescript@5.9.3)
+ expo-glass-effect: 55.0.8(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ expo-image: 55.0.6(expo@55.0.6)(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ expo-linking: 55.0.7(expo@55.0.6)(react-native@0.83.2(@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.6
+ expo-symbols: 55.0.5(expo-font@55.0.4)(expo@55.0.6)(react-native@0.83.2(@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.1.0
+ react: 19.2.0
react-fast-compare: 3.2.2
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-is-edge-to-edge: 1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ react-native: 0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ react-native-safe-area-context: 5.6.2(react-native@0.83.2(@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.2(@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.1.0
+ sf-symbols-typescript: 2.2.0
shallowequal: 1.1.0
- use-latest-callback: 0.2.4(react@19.1.0)
- vaul: 1.1.2(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.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.1.0(react@19.1.0)
- react-native-gesture-handler: 2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react-dom: 19.2.0(react@19.2.0)
+ react-native-gesture-handler: 2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@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)
transitivePeerDependencies:
- '@react-native-masked-view/masked-view'
- '@types/react'
- '@types/react-dom'
+ - expo-font
- supports-color
- expo-secure-store@15.0.7(expo@54.0.15):
+ expo-secure-store@55.0.8(expo@55.0.6):
dependencies:
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-server@1.0.2: {}
+ expo-server@55.0.6: {}
- expo-splash-screen@31.0.10(expo@54.0.15):
+ expo-splash-screen@55.0.10(expo@55.0.6)(typescript@5.9.3):
dependencies:
- '@expo/prebuild-config': 54.0.5(expo@54.0.15)
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ '@expo/prebuild-config': 55.0.8(expo@55.0.6)(typescript@5.9.3)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
transitivePeerDependencies:
- supports-color
+ - typescript
- expo-status-bar@3.0.8(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ expo-status-bar@55.0.4(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
dependencies:
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-is-edge-to-edge: 1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
- expo-structured-headers@5.0.0: {}
+ expo-structured-headers@55.0.0: {}
- expo-symbols@1.0.7(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)):
+ expo-symbols@55.0.5(expo-font@55.0.4)(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
dependencies:
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- sf-symbols-typescript: 2.1.0
+ '@expo-google-fonts/material-symbols': 0.4.25
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.4(expo@55.0.6)(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ sf-symbols-typescript: 2.2.0
- expo-system-ui@6.0.7(expo@54.0.15)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)):
+ expo-system-ui@55.0.9(expo@55.0.6)(react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)):
dependencies:
- '@react-native/normalize-colors': 0.81.4
+ '@react-native/normalize-colors': 0.83.2
debug: 4.4.3
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
optionalDependencies:
- react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react-native-web: 0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
transitivePeerDependencies:
- supports-color
- expo-updates-interface@2.0.0(expo@54.0.15):
+ expo-updates-interface@55.1.3(expo@55.0.6):
dependencies:
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
- expo-updates@29.0.12(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ expo-updates@55.0.13(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3):
dependencies:
- '@expo/code-signing-certificates': 0.0.5
- '@expo/plist': 0.4.7
+ '@expo/code-signing-certificates': 0.0.6
+ '@expo/plist': 0.5.2
'@expo/spawn-async': 1.7.2
- arg: 4.1.0
+ arg: 4.1.3
chalk: 4.1.2
debug: 4.4.3
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- expo-eas-client: 1.0.7
- expo-manifests: 1.0.8(expo@54.0.15)
- expo-structured-headers: 5.0.0
- expo-updates-interface: 2.0.0(expo@54.0.15)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.2
+ expo-manifests: 55.0.9(expo@55.0.6)(typescript@5.9.3)
+ expo-structured-headers: 55.0.0
+ expo-updates-interface: 55.1.3(expo@55.0.6)
getenv: 2.0.0
- glob: 10.4.5
+ glob: 13.0.6
ignore: 5.3.2
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
resolve-from: 5.0.0
transitivePeerDependencies:
- supports-color
+ - typescript
- expo-web-browser@15.0.8(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)):
+ expo-web-browser@55.0.9(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)):
dependencies:
- expo: 54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ expo: 55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
- expo@54.0.15(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ expo@55.0.6(@babel/core@7.29.0)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.28.4
- '@expo/cli': 54.0.12(expo-router@6.0.13)(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
- '@expo/config': 12.0.10
- '@expo/config-plugins': 54.0.2
- '@expo/devtools': 0.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- '@expo/fingerprint': 0.15.2
- '@expo/metro': 54.1.0
- '@expo/metro-config': 54.0.7(expo@54.0.15)
- '@expo/vector-icons': 15.0.2(expo-font@14.0.9(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ '@babel/runtime': 7.28.6
+ '@expo/cli': 55.0.16(@expo/dom-webview@55.0.3)(@expo/metro-runtime@55.0.6)(expo-constants@55.0.7)(expo-font@55.0.4)(expo-router@55.0.5)(expo@55.0.6)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.8(typescript@5.9.3)
+ '@expo/config-plugins': 55.0.6
+ '@expo/devtools': 55.0.2(react-native@0.83.2(@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.6(typescript@5.9.3)
+ '@expo/log-box': 55.0.7(@expo/dom-webview@55.0.3)(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@expo/metro': 54.2.0
+ '@expo/metro-config': 55.0.9(expo@55.0.6)(typescript@5.9.3)
+ '@expo/vector-icons': 15.1.1(expo-font@55.0.4)(react-native@0.83.2(@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: 54.0.5(@babel/core@7.28.4)(@babel/runtime@7.28.4)(expo@54.0.15)(react-refresh@0.14.2)
- expo-asset: 12.0.9(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- expo-constants: 18.0.9(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
- expo-file-system: 19.0.17(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))
- expo-font: 14.0.9(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- expo-keep-awake: 15.0.7(expo@54.0.15)(react@19.1.0)
- expo-modules-autolinking: 3.0.16
- expo-modules-core: 3.0.22(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ babel-preset-expo: 55.0.11(@babel/core@7.29.0)(@babel/runtime@7.28.6)(expo@55.0.6)(react-refresh@0.14.2)
+ expo-asset: 55.0.8(expo@55.0.6)(react-native@0.83.2(@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.7(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(typescript@5.9.3)
+ expo-file-system: 55.0.10(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))
+ expo-font: 55.0.4(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ expo-keep-awake: 55.0.4(expo@55.0.6)(react@19.2.0)
+ expo-modules-autolinking: 55.0.9(typescript@5.9.3)
+ expo-modules-core: 55.0.15(react-native@0.83.2(@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.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
react-refresh: 0.14.2
- whatwg-url-without-unicode: 8.0.0-3
+ whatwg-url-minimum: 0.1.1
optionalDependencies:
- '@expo/metro-runtime': 6.1.2(expo@54.0.15)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ '@expo/dom-webview': 55.0.3(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ '@expo/metro-runtime': 55.0.6(@expo/dom-webview@55.0.3)(expo@55.0.6)(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
transitivePeerDependencies:
- '@babel/core'
- - '@modelcontextprotocol/sdk'
- bufferutil
- expo-router
- - graphql
+ - expo-widgets
+ - react-dom
+ - react-server-dom-webpack
- supports-color
+ - typescript
- utf-8-validate
- exponential-backoff@3.1.2: {}
-
- exsolve@1.0.7: {}
+ exponential-backoff@3.1.3: {}
- fast-deep-equal@2.0.1: {}
+ exsolve@1.0.8: {}
fast-deep-equal@3.1.3: {}
- fast-glob@3.3.3:
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- '@nodelib/fs.walk': 1.2.8
- glob-parent: 5.1.2
- merge2: 1.4.1
- micromatch: 4.0.8
-
fast-json-stable-stringify@2.1.0: {}
fast-levenshtein@2.0.6: {}
- fastq@1.19.1:
- dependencies:
- reusify: 1.1.0
+ fb-dotslash@0.5.8: {}
fb-watchman@2.0.2:
dependencies:
@@ -11386,9 +10683,7 @@ snapshots:
optionalDependencies:
picomatch: 4.0.3
- file-entry-cache@6.0.1:
- dependencies:
- flat-cache: 3.2.0
+ fetch-nodeshim@0.4.9: {}
file-entry-cache@8.0.0:
dependencies:
@@ -11424,18 +10719,12 @@ snapshots:
locate-path: 6.0.0
path-exists: 4.0.0
- flat-cache@3.2.0:
- dependencies:
- flatted: 3.3.3
- keyv: 4.5.4
- rimraf: 3.0.2
-
flat-cache@4.0.1:
dependencies:
- flatted: 3.3.3
+ flatted: 3.4.1
keyv: 4.5.4
- flatted@3.3.3: {}
+ flatted@3.4.1: {}
flow-enums-runtime@0.0.6: {}
@@ -11445,21 +10734,8 @@ snapshots:
dependencies:
is-callable: 1.2.7
- foreground-child@3.3.1:
- dependencies:
- cross-spawn: 7.0.6
- signal-exit: 4.1.0
-
- freeport-async@2.0.0: {}
-
fresh@0.5.2: {}
- fs-extra@10.1.0:
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 6.2.0
- universalify: 2.0.1
-
fs.realpath@1.0.0: {}
fsevents@2.3.3:
@@ -11480,7 +10756,7 @@ snapshots:
functions-have-names@1.2.3: {}
- fuse.js@7.1.0: {}
+ generator-function@2.0.1: {}
gensync@1.0.0-beta.2: {}
@@ -11508,17 +10784,13 @@ snapshots:
dunder-proto: 1.0.1
es-object-atoms: 1.1.1
- get-stream@5.2.0:
- dependencies:
- pump: 3.0.3
-
get-symbol-description@1.1.0:
dependencies:
call-bound: 1.0.4
es-errors: 1.3.0
get-intrinsic: 1.3.0
- get-tsconfig@4.10.1:
+ get-tsconfig@4.13.6:
dependencies:
resolve-pkg-maps: 1.0.0
@@ -11530,32 +10802,25 @@ snapshots:
consola: 3.4.2
defu: 6.1.4
node-fetch-native: 1.6.7
- nypm: 0.6.2
+ nypm: 0.6.5
pathe: 2.0.3
- glob-parent@5.1.2:
- dependencies:
- is-glob: 4.0.3
-
glob-parent@6.0.2:
dependencies:
is-glob: 4.0.3
- glob@10.4.5:
+ glob@13.0.6:
dependencies:
- foreground-child: 3.3.1
- jackspeak: 3.4.3
- minimatch: 9.0.5
- minipass: 7.1.2
- package-json-from-dist: 1.0.1
- path-scurry: 1.11.1
+ minimatch: 10.2.4
+ minipass: 7.1.3
+ path-scurry: 2.0.2
glob@7.2.3:
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
- minimatch: 3.1.2
+ minimatch: 3.1.5
once: 1.4.0
path-is-absolute: 1.0.1
@@ -11564,50 +10829,24 @@ snapshots:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
- minimatch: 5.1.6
+ minimatch: 5.1.9
once: 1.4.0
- global-dirs@0.1.1:
- dependencies:
- ini: 1.3.8
-
- globals@13.24.0:
- dependencies:
- type-fest: 0.20.2
-
globals@14.0.0: {}
- globals@16.4.0: {}
+ globals@16.5.0: {}
+
+ globals@17.4.0: {}
globalthis@1.0.4:
dependencies:
define-properties: 1.2.1
gopd: 1.2.0
- globby@11.1.0:
- dependencies:
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.3.3
- ignore: 5.3.2
- merge2: 1.4.1
- slash: 3.0.0
-
gopd@1.2.0: {}
graceful-fs@4.2.11: {}
- graphemer@1.4.0: {}
-
- handlebars@4.7.8:
- dependencies:
- minimist: 1.2.8
- neo-async: 2.6.2
- source-map: 0.6.1
- wordwrap: 1.0.0
- optionalDependencies:
- uglify-js: 3.19.3
-
has-bigints@1.1.0: {}
has-flag@3.0.0: {}
@@ -11632,29 +10871,25 @@ snapshots:
dependencies:
function-bind: 1.1.2
- hermes-estree@0.23.1: {}
-
- hermes-estree@0.28.1: {}
-
- hermes-estree@0.29.1: {}
+ hermes-compiler@0.14.1: {}
hermes-estree@0.32.0: {}
- hermes-parser@0.23.1:
- dependencies:
- hermes-estree: 0.23.1
+ hermes-estree@0.32.1: {}
+
+ hermes-estree@0.33.3: {}
- hermes-parser@0.28.1:
+ hermes-parser@0.32.0:
dependencies:
- hermes-estree: 0.28.1
+ hermes-estree: 0.32.0
- hermes-parser@0.29.1:
+ hermes-parser@0.32.1:
dependencies:
- hermes-estree: 0.29.1
+ hermes-estree: 0.32.1
- hermes-parser@0.32.0:
+ hermes-parser@0.33.3:
dependencies:
- hermes-estree: 0.32.0
+ hermes-estree: 0.33.3
hoist-non-react-statics@3.3.2:
dependencies:
@@ -11670,12 +10905,12 @@ snapshots:
dependencies:
void-elements: 3.1.0
- http-errors@2.0.0:
+ http-errors@2.0.1:
dependencies:
depd: 2.0.0
inherits: 2.0.4
setprototypeof: 1.2.0
- statuses: 2.0.1
+ statuses: 2.0.2
toidentifier: 1.0.1
https-proxy-agent@7.0.6:
@@ -11685,15 +10920,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- human-signals@1.1.1: {}
-
hyphenate-style-name@1.1.0: {}
- i18next@25.5.3(typescript@5.9.2):
+ i18next@25.8.18(typescript@5.9.3):
dependencies:
- '@babel/runtime': 7.28.4
+ '@babel/runtime': 7.28.6
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
ieee754@1.2.1: {}
@@ -11705,11 +10938,6 @@ snapshots:
dependencies:
queue: 6.0.2
- import-fresh@2.0.0:
- dependencies:
- caller-path: 2.0.0
- resolve-from: 3.0.0
-
import-fresh@3.3.1:
dependencies:
parent-module: 1.0.1
@@ -11728,8 +10956,6 @@ snapshots:
inherits@2.0.4: {}
- ini@1.3.8: {}
-
inline-style-prefixer@7.0.1:
dependencies:
css-in-js-utils: 3.1.0
@@ -11744,16 +10970,6 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- is-absolute@1.0.0:
- dependencies:
- is-relative: 1.0.0
- is-windows: 1.0.2
-
- is-arguments@1.2.0:
- dependencies:
- call-bound: 1.0.4
- has-tostringtag: 1.0.2
-
is-array-buffer@3.0.5:
dependencies:
call-bind: 1.0.8
@@ -11787,7 +11003,7 @@ snapshots:
is-bun-module@2.0.0:
dependencies:
- semver: 7.7.2
+ semver: 7.7.4
is-callable@1.2.7: {}
@@ -11806,8 +11022,6 @@ snapshots:
call-bound: 1.0.4
has-tostringtag: 1.0.2
- is-directory@0.3.1: {}
-
is-docker@2.2.1: {}
is-docker@3.0.0: {}
@@ -11820,37 +11034,30 @@ snapshots:
is-fullwidth-code-point@3.0.0: {}
- is-generator-function@1.1.0:
+ is-generator-function@1.1.2:
dependencies:
call-bound: 1.0.4
+ generator-function: 2.0.1
get-proto: 1.0.1
has-tostringtag: 1.0.2
safe-regex-test: 1.1.0
- is-git-dirty@2.0.2:
- dependencies:
- execa: 4.1.0
- is-git-repository: 2.0.0
-
- is-git-repository@2.0.0:
- dependencies:
- execa: 4.1.0
- is-absolute: 1.0.0
-
is-glob@4.0.3:
dependencies:
is-extglob: 2.1.1
- is-immutable-type@5.0.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2):
+ is-immutable-type@5.0.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3):
dependencies:
- '@typescript-eslint/type-utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint: 9.36.0(jiti@2.6.0)
- ts-api-utils: 2.1.0(typescript@5.9.2)
- ts-declaration-location: 1.0.7(typescript@5.9.2)
- typescript: 5.9.2
+ '@typescript-eslint/type-utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.39.4(jiti@2.6.1)
+ ts-api-utils: 2.4.0(typescript@5.9.3)
+ ts-declaration-location: 1.0.7(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
+ is-in-ssh@1.0.0: {}
+
is-inside-container@1.0.0:
dependencies:
is-docker: 3.0.0
@@ -11866,10 +11073,6 @@ snapshots:
is-number@7.0.0: {}
- is-path-cwd@2.2.0: {}
-
- is-path-inside@3.0.3: {}
-
is-plain-obj@2.1.0: {}
is-regex@1.2.1:
@@ -11879,18 +11082,12 @@ snapshots:
has-tostringtag: 1.0.2
hasown: 2.0.2
- is-relative@1.0.0:
- dependencies:
- is-unc-path: 1.0.0
-
is-set@2.0.3: {}
is-shared-array-buffer@1.0.4:
dependencies:
call-bound: 1.0.4
- is-stream@2.0.1: {}
-
is-string@1.1.1:
dependencies:
call-bound: 1.0.4
@@ -11904,11 +11101,7 @@ snapshots:
is-typed-array@1.1.15:
dependencies:
- which-typed-array: 1.1.19
-
- is-unc-path@1.0.0:
- dependencies:
- unc-path-regex: 0.1.2
+ which-typed-array: 1.1.20
is-weakmap@2.0.2: {}
@@ -11921,18 +11114,14 @@ snapshots:
call-bound: 1.0.4
get-intrinsic: 1.3.0
- is-windows@1.0.2: {}
-
is-wsl@2.2.0:
dependencies:
is-docker: 2.2.1
- is-wsl@3.1.0:
+ is-wsl@3.1.1:
dependencies:
is-inside-container: 1.0.0
- isarray@1.0.0: {}
-
isarray@2.0.5: {}
isexe@2.0.0: {}
@@ -11941,8 +11130,8 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.28.4
- '@babel/parser': 7.28.4
+ '@babel/core': 7.29.0
+ '@babel/parser': 7.29.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -11958,20 +11147,12 @@ snapshots:
has-symbols: 1.1.0
set-function-name: 2.0.2
- jackspeak@3.4.3:
- dependencies:
- '@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
-
- javascript-natural-sort@0.7.1: {}
-
jest-environment-node@29.7.0:
dependencies:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 24.6.1
+ '@types/node': 25.4.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -11981,7 +11162,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
- '@types/node': 24.6.1
+ '@types/node': 25.4.0
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -11995,7 +11176,7 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.27.1
+ '@babel/code-frame': 7.29.0
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
@@ -12008,7 +11189,7 @@ snapshots:
jest-mock@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 24.6.1
+ '@types/node': 25.4.0
jest-util: 29.7.0
jest-regex-util@29.6.3: {}
@@ -12016,7 +11197,7 @@ snapshots:
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 24.6.1
+ '@types/node': 25.4.0
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -12033,32 +11214,30 @@ snapshots:
jest-worker@29.7.0:
dependencies:
- '@types/node': 24.6.1
+ '@types/node': 25.4.0
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
jimp-compact@0.16.1: {}
- jiti@2.6.0: {}
+ jiti@2.6.1: {}
- jose@6.1.0: {}
+ jose@6.2.1: {}
js-tokens@4.0.0: {}
- js-yaml@3.14.1:
+ js-yaml@3.14.2:
dependencies:
argparse: 1.0.10
esprima: 4.0.1
- js-yaml@4.1.0:
+ js-yaml@4.1.1:
dependencies:
argparse: 2.0.1
jsc-safe-url@0.2.4: {}
- jsesc@3.0.2: {}
-
jsesc@3.1.0: {}
json-buffer@3.0.1: {}
@@ -12077,12 +11256,6 @@ snapshots:
json5@2.2.3: {}
- jsonfile@6.2.0:
- dependencies:
- universalify: 2.0.1
- optionalDependencies:
- graceful-fs: 4.2.11
-
jsx-ast-utils-x@0.1.0: {}
jsx-ast-utils@3.3.5:
@@ -12098,54 +11271,52 @@ snapshots:
kleur@3.0.3: {}
- kleur@4.1.5: {}
+ kysely@0.28.11: {}
- kysely@0.28.7: {}
+ lan-network@0.2.0: {}
- lan-network@0.1.7: {}
-
- lefthook-darwin-arm64@1.13.4:
+ lefthook-darwin-arm64@2.1.4:
optional: true
- lefthook-darwin-x64@1.13.4:
+ lefthook-darwin-x64@2.1.4:
optional: true
- lefthook-freebsd-arm64@1.13.4:
+ lefthook-freebsd-arm64@2.1.4:
optional: true
- lefthook-freebsd-x64@1.13.4:
+ lefthook-freebsd-x64@2.1.4:
optional: true
- lefthook-linux-arm64@1.13.4:
+ lefthook-linux-arm64@2.1.4:
optional: true
- lefthook-linux-x64@1.13.4:
+ lefthook-linux-x64@2.1.4:
optional: true
- lefthook-openbsd-arm64@1.13.4:
+ lefthook-openbsd-arm64@2.1.4:
optional: true
- lefthook-openbsd-x64@1.13.4:
+ lefthook-openbsd-x64@2.1.4:
optional: true
- lefthook-windows-arm64@1.13.4:
+ lefthook-windows-arm64@2.1.4:
optional: true
- lefthook-windows-x64@1.13.4:
+ lefthook-windows-x64@2.1.4:
optional: true
- lefthook@1.13.4:
+ lefthook@2.1.4:
optionalDependencies:
- lefthook-darwin-arm64: 1.13.4
- lefthook-darwin-x64: 1.13.4
- lefthook-freebsd-arm64: 1.13.4
- lefthook-freebsd-x64: 1.13.4
- lefthook-linux-arm64: 1.13.4
- lefthook-linux-x64: 1.13.4
- lefthook-openbsd-arm64: 1.13.4
- lefthook-openbsd-x64: 1.13.4
- lefthook-windows-arm64: 1.13.4
- lefthook-windows-x64: 1.13.4
+ lefthook-darwin-arm64: 2.1.4
+ lefthook-darwin-x64: 2.1.4
+ lefthook-freebsd-arm64: 2.1.4
+ lefthook-freebsd-x64: 2.1.4
+ lefthook-linux-arm64: 2.1.4
+ lefthook-linux-x64: 2.1.4
+ lefthook-openbsd-arm64: 2.1.4
+ lefthook-openbsd-x64: 2.1.4
+ lefthook-windows-arm64: 2.1.4
+ lefthook-windows-x64: 2.1.4
leven@3.1.0: {}
@@ -12161,39 +11332,105 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ lightningcss-android-arm64@1.30.2:
+ optional: true
+
+ lightningcss-android-arm64@1.32.0:
+ optional: true
+
lightningcss-darwin-arm64@1.30.1:
optional: true
+ lightningcss-darwin-arm64@1.30.2:
+ optional: true
+
+ lightningcss-darwin-arm64@1.32.0:
+ optional: true
+
lightningcss-darwin-x64@1.30.1:
optional: true
+ lightningcss-darwin-x64@1.30.2:
+ optional: true
+
+ lightningcss-darwin-x64@1.32.0:
+ optional: true
+
lightningcss-freebsd-x64@1.30.1:
optional: true
+ lightningcss-freebsd-x64@1.30.2:
+ optional: true
+
+ lightningcss-freebsd-x64@1.32.0:
+ optional: true
+
lightningcss-linux-arm-gnueabihf@1.30.1:
optional: true
+ lightningcss-linux-arm-gnueabihf@1.30.2:
+ optional: true
+
+ lightningcss-linux-arm-gnueabihf@1.32.0:
+ optional: true
+
lightningcss-linux-arm64-gnu@1.30.1:
optional: true
+ lightningcss-linux-arm64-gnu@1.30.2:
+ optional: true
+
+ lightningcss-linux-arm64-gnu@1.32.0:
+ optional: true
+
lightningcss-linux-arm64-musl@1.30.1:
optional: true
+ lightningcss-linux-arm64-musl@1.30.2:
+ optional: true
+
+ lightningcss-linux-arm64-musl@1.32.0:
+ optional: true
+
lightningcss-linux-x64-gnu@1.30.1:
optional: true
+ lightningcss-linux-x64-gnu@1.30.2:
+ optional: true
+
+ lightningcss-linux-x64-gnu@1.32.0:
+ optional: true
+
lightningcss-linux-x64-musl@1.30.1:
optional: true
+ lightningcss-linux-x64-musl@1.30.2:
+ optional: true
+
+ lightningcss-linux-x64-musl@1.32.0:
+ optional: true
+
lightningcss-win32-arm64-msvc@1.30.1:
optional: true
+ lightningcss-win32-arm64-msvc@1.30.2:
+ optional: true
+
+ lightningcss-win32-arm64-msvc@1.32.0:
+ optional: true
+
lightningcss-win32-x64-msvc@1.30.1:
optional: true
+ lightningcss-win32-x64-msvc@1.30.2:
+ optional: true
+
+ lightningcss-win32-x64-msvc@1.32.0:
+ optional: true
+
lightningcss@1.30.1:
dependencies:
- detect-libc: 2.1.1
+ detect-libc: 2.1.2
optionalDependencies:
lightningcss-darwin-arm64: 1.30.1
lightningcss-darwin-x64: 1.30.1
@@ -12206,6 +11443,38 @@ snapshots:
lightningcss-win32-arm64-msvc: 1.30.1
lightningcss-win32-x64-msvc: 1.30.1
+ lightningcss@1.30.2:
+ dependencies:
+ detect-libc: 2.1.2
+ optionalDependencies:
+ lightningcss-android-arm64: 1.30.2
+ lightningcss-darwin-arm64: 1.30.2
+ lightningcss-darwin-x64: 1.30.2
+ lightningcss-freebsd-x64: 1.30.2
+ lightningcss-linux-arm-gnueabihf: 1.30.2
+ lightningcss-linux-arm64-gnu: 1.30.2
+ lightningcss-linux-arm64-musl: 1.30.2
+ lightningcss-linux-x64-gnu: 1.30.2
+ lightningcss-linux-x64-musl: 1.30.2
+ lightningcss-win32-arm64-msvc: 1.30.2
+ lightningcss-win32-x64-msvc: 1.30.2
+
+ lightningcss@1.32.0:
+ dependencies:
+ detect-libc: 2.1.2
+ optionalDependencies:
+ lightningcss-android-arm64: 1.32.0
+ lightningcss-darwin-arm64: 1.32.0
+ lightningcss-darwin-x64: 1.32.0
+ lightningcss-freebsd-x64: 1.32.0
+ lightningcss-linux-arm-gnueabihf: 1.32.0
+ lightningcss-linux-arm64-gnu: 1.32.0
+ lightningcss-linux-arm64-musl: 1.32.0
+ lightningcss-linux-x64-gnu: 1.32.0
+ lightningcss-linux-x64-musl: 1.32.0
+ lightningcss-win32-arm64-msvc: 1.32.0
+ lightningcss-win32-x64-msvc: 1.32.0
+
lines-and-columns@1.2.4: {}
load-json-file@4.0.0:
@@ -12225,18 +11494,10 @@ snapshots:
lodash.debounce@4.0.8: {}
- lodash.isequal@4.5.0: {}
-
- lodash.isobject@3.0.2: {}
-
lodash.merge@4.6.2: {}
- lodash.mergewith@4.6.2: {}
-
lodash.throttle@4.1.1: {}
- lodash@4.17.21: {}
-
log-symbols@2.2.0:
dependencies:
chalk: 2.4.2
@@ -12253,19 +11514,21 @@ snapshots:
lru-cache@10.4.3: {}
+ lru-cache@11.2.6: {}
+
lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
- lucide-react-native@0.545.0(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ lucide-react-native@0.577.0(react-native-svg@15.15.3(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
dependencies:
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-svg: 15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ react-native-svg: 15.15.3(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
lz-string@1.5.0: {}
- magic-string@0.30.19:
+ magic-string@0.30.21:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
@@ -12293,6 +11556,8 @@ snapshots:
dependencies:
map-or-similar: 1.5.0
+ memory-pager@1.5.0: {}
+
memorystream@0.3.1: {}
merge-options@3.0.4:
@@ -12301,110 +11566,107 @@ snapshots:
merge-stream@2.0.0: {}
- merge2@1.4.1: {}
-
- metro-babel-transformer@0.80.12:
+ metro-babel-transformer@0.83.3:
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
flow-enums-runtime: 0.0.6
- hermes-parser: 0.23.1
+ hermes-parser: 0.32.0
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- metro-babel-transformer@0.83.2:
+ metro-babel-transformer@0.83.5:
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
flow-enums-runtime: 0.0.6
- hermes-parser: 0.32.0
+ hermes-parser: 0.33.3
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- metro-cache-key@0.80.12:
+ metro-cache-key@0.83.3:
dependencies:
flow-enums-runtime: 0.0.6
- metro-cache-key@0.83.2:
+ metro-cache-key@0.83.5:
dependencies:
flow-enums-runtime: 0.0.6
- metro-cache@0.80.12:
+ metro-cache@0.83.3:
dependencies:
- exponential-backoff: 3.1.2
+ exponential-backoff: 3.1.3
flow-enums-runtime: 0.0.6
- metro-core: 0.80.12
+ https-proxy-agent: 7.0.6
+ metro-core: 0.83.3
+ transitivePeerDependencies:
+ - supports-color
- metro-cache@0.83.2:
+ metro-cache@0.83.5:
dependencies:
- exponential-backoff: 3.1.2
+ exponential-backoff: 3.1.3
flow-enums-runtime: 0.0.6
https-proxy-agent: 7.0.6
- metro-core: 0.83.2
+ metro-core: 0.83.5
transitivePeerDependencies:
- supports-color
- metro-config@0.80.12:
+ metro-config@0.83.3:
dependencies:
connect: 3.7.0
- cosmiconfig: 5.2.1
flow-enums-runtime: 0.0.6
jest-validate: 29.7.0
- metro: 0.80.12
- metro-cache: 0.80.12
- metro-core: 0.80.12
- metro-runtime: 0.80.12
+ metro: 0.83.3
+ metro-cache: 0.83.3
+ metro-core: 0.83.3
+ metro-runtime: 0.83.3
+ yaml: 2.8.2
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- metro-config@0.83.2:
+ metro-config@0.83.5:
dependencies:
connect: 3.7.0
flow-enums-runtime: 0.0.6
jest-validate: 29.7.0
- metro: 0.83.2
- metro-cache: 0.83.2
- metro-core: 0.83.2
- metro-runtime: 0.83.2
- yaml: 2.8.1
+ metro: 0.83.5
+ metro-cache: 0.83.5
+ metro-core: 0.83.5
+ metro-runtime: 0.83.5
+ yaml: 2.8.2
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- metro-core@0.80.12:
+ metro-core@0.83.3:
dependencies:
flow-enums-runtime: 0.0.6
lodash.throttle: 4.1.1
- metro-resolver: 0.80.12
+ metro-resolver: 0.83.3
- metro-core@0.83.2:
+ metro-core@0.83.5:
dependencies:
flow-enums-runtime: 0.0.6
lodash.throttle: 4.1.1
- metro-resolver: 0.83.2
+ metro-resolver: 0.83.5
- metro-file-map@0.80.12:
+ metro-file-map@0.83.3:
dependencies:
- anymatch: 3.1.3
- debug: 2.6.9
+ 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
- node-abort-controller: 3.1.1
nullthrows: 1.1.1
walker: 1.0.8
- optionalDependencies:
- fsevents: 2.3.3
transitivePeerDependencies:
- supports-color
- metro-file-map@0.83.2:
+ metro-file-map@0.83.5:
dependencies:
debug: 4.4.3
fb-watchman: 2.0.2
@@ -12418,189 +11680,186 @@ snapshots:
transitivePeerDependencies:
- supports-color
- metro-minify-terser@0.80.12:
+ metro-minify-terser@0.83.3:
dependencies:
flow-enums-runtime: 0.0.6
- terser: 5.44.0
+ terser: 5.46.0
- metro-minify-terser@0.83.2:
+ metro-minify-terser@0.83.5:
dependencies:
flow-enums-runtime: 0.0.6
- terser: 5.44.0
+ terser: 5.46.0
- metro-resolver@0.80.12:
+ metro-resolver@0.83.3:
dependencies:
flow-enums-runtime: 0.0.6
- metro-resolver@0.83.2:
+ metro-resolver@0.83.5:
dependencies:
flow-enums-runtime: 0.0.6
- metro-runtime@0.80.12:
+ metro-runtime@0.83.3:
dependencies:
- '@babel/runtime': 7.28.4
+ '@babel/runtime': 7.28.6
flow-enums-runtime: 0.0.6
- metro-runtime@0.83.2:
+ metro-runtime@0.83.5:
dependencies:
- '@babel/runtime': 7.28.4
+ '@babel/runtime': 7.28.6
flow-enums-runtime: 0.0.6
- metro-source-map@0.80.12:
+ metro-source-map@0.83.3:
dependencies:
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/traverse': 7.29.0
+ '@babel/traverse--for-generate-function-map': '@babel/traverse@7.29.0'
+ '@babel/types': 7.29.0
flow-enums-runtime: 0.0.6
invariant: 2.2.4
- metro-symbolicate: 0.80.12
+ metro-symbolicate: 0.83.3
nullthrows: 1.1.1
- ob1: 0.80.12
+ ob1: 0.83.3
source-map: 0.5.7
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
- metro-source-map@0.83.2:
+ metro-source-map@0.83.5:
dependencies:
- '@babel/traverse': 7.28.4
- '@babel/traverse--for-generate-function-map': '@babel/traverse@7.28.4'
- '@babel/types': 7.28.4
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
flow-enums-runtime: 0.0.6
invariant: 2.2.4
- metro-symbolicate: 0.83.2
+ metro-symbolicate: 0.83.5
nullthrows: 1.1.1
- ob1: 0.83.2
+ ob1: 0.83.5
source-map: 0.5.7
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
- metro-symbolicate@0.80.12:
+ metro-symbolicate@0.83.3:
dependencies:
flow-enums-runtime: 0.0.6
invariant: 2.2.4
- metro-source-map: 0.80.12
+ metro-source-map: 0.83.3
nullthrows: 1.1.1
source-map: 0.5.7
- through2: 2.0.5
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
- metro-symbolicate@0.83.2:
+ metro-symbolicate@0.83.5:
dependencies:
flow-enums-runtime: 0.0.6
invariant: 2.2.4
- metro-source-map: 0.83.2
+ metro-source-map: 0.83.5
nullthrows: 1.1.1
source-map: 0.5.7
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
- metro-transform-plugins@0.80.12:
+ metro-transform-plugins@0.83.3:
dependencies:
- '@babel/core': 7.28.4
- '@babel/generator': 7.28.3
- '@babel/template': 7.27.2
- '@babel/traverse': 7.28.4
+ '@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-plugins@0.83.2:
+ metro-transform-plugins@0.83.5:
dependencies:
- '@babel/core': 7.28.4
- '@babel/generator': 7.28.3
- '@babel/template': 7.27.2
- '@babel/traverse': 7.28.4
+ '@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.80.12:
+ metro-transform-worker@0.83.3:
dependencies:
- '@babel/core': 7.28.4
- '@babel/generator': 7.28.3
- '@babel/parser': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/core': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
flow-enums-runtime: 0.0.6
- metro: 0.80.12
- metro-babel-transformer: 0.80.12
- metro-cache: 0.80.12
- metro-cache-key: 0.80.12
- metro-minify-terser: 0.80.12
- metro-source-map: 0.80.12
- metro-transform-plugins: 0.80.12
+ metro: 0.83.3
+ metro-babel-transformer: 0.83.3
+ metro-cache: 0.83.3
+ metro-cache-key: 0.83.3
+ metro-minify-terser: 0.83.3
+ metro-source-map: 0.83.3
+ metro-transform-plugins: 0.83.3
nullthrows: 1.1.1
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- metro-transform-worker@0.83.2:
+ metro-transform-worker@0.83.5:
dependencies:
- '@babel/core': 7.28.4
- '@babel/generator': 7.28.3
- '@babel/parser': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/core': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
flow-enums-runtime: 0.0.6
- metro: 0.83.2
- metro-babel-transformer: 0.83.2
- metro-cache: 0.83.2
- metro-cache-key: 0.83.2
- metro-minify-terser: 0.83.2
- metro-source-map: 0.83.2
- metro-transform-plugins: 0.83.2
+ metro: 0.83.5
+ metro-babel-transformer: 0.83.5
+ metro-cache: 0.83.5
+ metro-cache-key: 0.83.5
+ metro-minify-terser: 0.83.5
+ metro-source-map: 0.83.5
+ metro-transform-plugins: 0.83.5
nullthrows: 1.1.1
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- metro@0.80.12:
+ metro@0.83.3:
dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/core': 7.28.4
- '@babel/generator': 7.28.3
- '@babel/parser': 7.28.4
- '@babel/template': 7.27.2
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/code-frame': 7.29.0
+ '@babel/core': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/parser': 7.29.0
+ '@babel/template': 7.28.6
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
accepts: 1.3.8
chalk: 4.1.2
ci-info: 2.0.0
connect: 3.7.0
- debug: 2.6.9
- denodeify: 1.2.1
+ debug: 4.4.3
error-stack-parser: 2.1.4
flow-enums-runtime: 0.0.6
graceful-fs: 4.2.11
- hermes-parser: 0.23.1
+ hermes-parser: 0.32.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.80.12
- metro-cache: 0.80.12
- metro-cache-key: 0.80.12
- metro-config: 0.80.12
- metro-core: 0.80.12
- metro-file-map: 0.80.12
- metro-resolver: 0.80.12
- metro-runtime: 0.80.12
- metro-source-map: 0.80.12
- metro-symbolicate: 0.80.12
- metro-transform-plugins: 0.80.12
- metro-transform-worker: 0.80.12
+ metro-babel-transformer: 0.83.3
+ metro-cache: 0.83.3
+ metro-cache-key: 0.83.3
+ metro-config: 0.83.3
+ metro-core: 0.83.3
+ metro-file-map: 0.83.3
+ metro-resolver: 0.83.3
+ metro-runtime: 0.83.3
+ metro-source-map: 0.83.3
+ metro-symbolicate: 0.83.3
+ metro-transform-plugins: 0.83.3
+ metro-transform-worker: 0.83.3
mime-types: 2.1.35
nullthrows: 1.1.1
serialize-error: 2.1.0
source-map: 0.5.7
- strip-ansi: 6.0.1
throat: 5.0.0
ws: 7.5.10
yargs: 17.7.2
@@ -12609,16 +11868,16 @@ snapshots:
- supports-color
- utf-8-validate
- metro@0.83.2:
+ metro@0.83.5:
dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/core': 7.28.4
- '@babel/generator': 7.28.3
- '@babel/parser': 7.28.4
- '@babel/template': 7.27.2
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
- accepts: 1.3.8
+ '@babel/code-frame': 7.29.0
+ '@babel/core': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/parser': 7.29.0
+ '@babel/template': 7.28.6
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
+ accepts: 2.0.0
chalk: 4.1.2
ci-info: 2.0.0
connect: 3.7.0
@@ -12626,25 +11885,25 @@ snapshots:
error-stack-parser: 2.1.4
flow-enums-runtime: 0.0.6
graceful-fs: 4.2.11
- hermes-parser: 0.32.0
+ hermes-parser: 0.33.3
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.2
- metro-cache: 0.83.2
- metro-cache-key: 0.83.2
- metro-config: 0.83.2
- metro-core: 0.83.2
- metro-file-map: 0.83.2
- metro-resolver: 0.83.2
- metro-runtime: 0.83.2
- metro-source-map: 0.83.2
- metro-symbolicate: 0.83.2
- metro-transform-plugins: 0.83.2
- metro-transform-worker: 0.83.2
- mime-types: 2.1.35
+ 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-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
+ mime-types: 3.0.2
nullthrows: 1.1.1
serialize-error: 2.1.0
source-map: 0.5.7
@@ -12669,53 +11928,58 @@ snapshots:
dependencies:
mime-db: 1.52.0
+ mime-types@3.0.2:
+ dependencies:
+ mime-db: 1.54.0
+
mime@1.6.0: {}
mimic-fn@1.2.0: {}
- mimic-fn@2.1.0: {}
-
min-indent@1.0.1: {}
- minimatch@3.1.2:
+ minimatch@10.2.4:
dependencies:
- brace-expansion: 1.1.12
+ brace-expansion: 5.0.4
- minimatch@5.1.6:
+ minimatch@3.1.5:
dependencies:
- brace-expansion: 2.0.2
+ brace-expansion: 1.1.12
- minimatch@9.0.5:
+ minimatch@5.1.9:
dependencies:
brace-expansion: 2.0.2
minimist@1.2.8: {}
- minipass@7.1.2: {}
+ minipass@7.1.3: {}
- minizlib@3.1.0:
+ mkdirp@1.0.4: {}
+
+ mongodb-connection-string-url@7.0.1:
dependencies:
- minipass: 7.1.2
+ '@types/whatwg-url': 13.0.0
+ whatwg-url: 14.2.0
- mkdirp@1.0.4: {}
+ mongodb@7.1.0:
+ dependencies:
+ '@mongodb-js/saslprep': 1.4.6
+ bson: 7.2.0
+ mongodb-connection-string-url: 7.0.1
ms@2.0.0: {}
ms@2.1.3: {}
- mz@2.7.0:
- dependencies:
- any-promise: 1.3.0
- object-assign: 4.1.1
- thenify-all: 1.6.0
+ multitars@0.2.4: {}
nanoid@3.3.11: {}
nanoid@5.1.6: {}
- nanostores@1.0.1: {}
+ nanostores@1.1.1: {}
- napi-postinstall@0.3.3: {}
+ napi-postinstall@0.3.4: {}
natural-compare@1.4.0: {}
@@ -12723,9 +11987,7 @@ snapshots:
negotiator@0.6.4: {}
- neo-async@2.6.2: {}
-
- nested-error-stacks@2.0.1: {}
+ negotiator@1.0.0: {}
nice-try@1.0.5: {}
@@ -12734,7 +11996,12 @@ snapshots:
lower-case: 2.0.2
tslib: 2.8.1
- node-abort-controller@3.1.1: {}
+ node-exports-info@1.6.0:
+ dependencies:
+ array.prototype.flatmap: 1.3.3
+ es-errors: 1.3.0
+ object.entries: 1.1.9
+ semver: 6.3.1
node-fetch-native@1.6.7: {}
@@ -12742,16 +12009,16 @@ snapshots:
dependencies:
whatwg-url: 5.0.0
- node-forge@1.3.1: {}
+ node-forge@1.3.3: {}
node-int64@0.4.0: {}
- node-releases@2.0.21: {}
+ node-releases@2.0.36: {}
normalize-package-data@2.5.0:
dependencies:
hosted-git-info: 2.8.9
- resolve: 1.22.10
+ resolve: 1.22.11
semver: 5.7.2
validate-npm-package-license: 3.0.4
@@ -12761,7 +12028,7 @@ snapshots:
dependencies:
hosted-git-info: 7.0.2
proc-log: 4.2.0
- semver: 7.7.2
+ semver: 7.7.4
validate-npm-package-name: 5.0.1
npm-run-all@4.1.5:
@@ -12770,35 +12037,29 @@ snapshots:
chalk: 2.4.2
cross-spawn: 6.0.6
memorystream: 0.3.1
- minimatch: 3.1.2
+ minimatch: 3.1.5
pidtree: 0.3.1
read-pkg: 3.0.0
shell-quote: 1.8.3
string.prototype.padend: 3.1.6
- npm-run-path@4.0.1:
- dependencies:
- path-key: 3.1.1
-
nth-check@2.1.1:
dependencies:
boolbase: 1.0.0
nullthrows@1.1.1: {}
- nypm@0.6.2:
+ nypm@0.6.5:
dependencies:
- citty: 0.1.6
- consola: 3.4.2
+ citty: 0.2.1
pathe: 2.0.3
- pkg-types: 2.3.0
- tinyexec: 1.0.1
+ tinyexec: 1.0.2
- ob1@0.80.12:
+ ob1@0.83.3:
dependencies:
flow-enums-runtime: 0.0.6
- ob1@0.83.2:
+ ob1@0.83.5:
dependencies:
flow-enums-runtime: 0.0.6
@@ -12806,11 +12067,6 @@ snapshots:
object-inspect@1.13.4: {}
- object-is@1.1.6:
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
-
object-keys@1.1.1: {}
object.assign@4.1.7:
@@ -12833,14 +12089,14 @@ snapshots:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.24.1
es-object-atoms: 1.1.1
object.groupby@1.0.3:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.24.1
object.values@1.2.1:
dependencies:
@@ -12869,16 +12125,21 @@ snapshots:
dependencies:
mimic-fn: 1.2.0
- onetime@5.1.2:
+ open@10.2.0:
dependencies:
- mimic-fn: 2.1.0
+ default-browser: 5.5.0
+ define-lazy-prop: 3.0.0
+ is-inside-container: 1.0.0
+ wsl-utils: 0.1.0
- open@10.1.2:
+ open@11.0.0:
dependencies:
- default-browser: 5.2.1
+ default-browser: 5.5.0
define-lazy-prop: 3.0.0
+ is-in-ssh: 1.0.0
is-inside-container: 1.0.0
- is-wsl: 3.1.0
+ powershell-utils: 0.1.0
+ wsl-utils: 0.3.1
open@7.4.2:
dependencies:
@@ -12931,14 +12192,8 @@ snapshots:
dependencies:
p-limit: 3.1.0
- p-map@4.0.0:
- dependencies:
- aggregate-error: 3.1.0
-
p-try@2.2.0: {}
- package-json-from-dist@1.0.1: {}
-
parent-module@1.0.1:
dependencies:
callsites: 3.1.0
@@ -12950,7 +12205,7 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.27.1
+ '@babel/code-frame': 7.29.0
error-ex: 1.3.4
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -12971,10 +12226,10 @@ snapshots:
path-parse@1.0.7: {}
- path-scurry@1.11.1:
+ path-scurry@2.0.2:
dependencies:
- lru-cache: 10.4.3
- minipass: 7.1.2
+ lru-cache: 11.2.6
+ minipass: 7.1.3
path-type@3.0.0:
dependencies:
@@ -12986,14 +12241,12 @@ snapshots:
pathval@2.0.1: {}
- perfect-debounce@2.0.0: {}
+ perfect-debounce@2.1.0: {}
picocolors@1.1.1: {}
picomatch@2.3.1: {}
- picomatch@3.0.1: {}
-
picomatch@4.0.3: {}
pidtree@0.3.1: {}
@@ -13004,8 +12257,8 @@ snapshots:
pkg-types@2.3.0:
dependencies:
- confbox: 0.2.2
- exsolve: 1.0.7
+ confbox: 0.2.4
+ exsolve: 1.0.8
pathe: 2.0.3
plist@3.1.0:
@@ -13020,7 +12273,7 @@ snapshots:
polished@4.3.1:
dependencies:
- '@babel/runtime': 7.28.4
+ '@babel/runtime': 7.28.6
possible-typed-array-names@1.1.0: {}
@@ -13032,15 +12285,17 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
- prelude-ls@1.2.1: {}
+ powershell-utils@0.1.0: {}
- prettier@2.8.8: {}
+ prelude-ls@1.2.1: {}
- prettier@3.4.2: {}
+ prettier-plugin-tailwindcss@0.7.2(prettier@3.8.1):
+ dependencies:
+ prettier: 3.8.1
- prettier@3.6.2: {}
+ prettier@2.8.8: {}
- pretty-bytes@5.6.0: {}
+ prettier@3.8.1: {}
pretty-format@27.5.1:
dependencies:
@@ -13056,8 +12311,6 @@ snapshots:
proc-log@4.2.0: {}
- process-nextick-args@2.0.1: {}
-
progress@2.0.3: {}
promise@7.3.1:
@@ -13079,21 +12332,8 @@ snapshots:
object-assign: 4.1.1
react-is: 16.13.1
- pump@3.0.3:
- dependencies:
- end-of-stream: 1.4.5
- once: 1.4.0
-
punycode@2.3.1: {}
- pvtsutils@1.3.6:
- dependencies:
- tslib: 2.8.1
-
- pvutils@1.1.3: {}
-
- qrcode-terminal@0.11.0: {}
-
query-string@7.1.3:
dependencies:
decode-uri-component: 0.2.2
@@ -13101,8 +12341,6 @@ snapshots:
split-on-first: 1.1.0
strict-uri-encode: 2.0.0
- queue-microtask@1.2.3: {}
-
queue@6.0.2:
dependencies:
inherits: 2.0.4
@@ -13114,13 +12352,6 @@ snapshots:
defu: 6.1.4
destr: 2.0.5
- rc@1.2.8:
- dependencies:
- deep-extend: 0.6.0
- ini: 1.3.8
- minimist: 1.2.8
- strip-json-comments: 2.0.1
-
react-devtools-core@6.1.5:
dependencies:
shell-quote: 1.8.3
@@ -13129,33 +12360,43 @@ snapshots:
- bufferutil
- utf-8-validate
- react-dom@18.3.1(react@19.1.0):
+ react-docgen@8.0.2:
dependencies:
- loose-envify: 1.4.0
- react: 19.1.0
- scheduler: 0.23.2
+ '@babel/core': 7.29.0
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
+ '@types/babel__core': 7.20.5
+ '@types/babel__traverse': 7.28.0
+ '@types/doctrine': 0.0.9
+ '@types/resolve': 1.20.6
+ doctrine: 3.0.0
+ resolve: 1.22.11
+ strip-indent: 4.1.1
+ transitivePeerDependencies:
+ - supports-color
- react-dom@19.1.0(react@19.1.0):
+ react-dom@19.2.0(react@19.2.0):
dependencies:
- react: 19.1.0
- scheduler: 0.26.0
+ react: 19.2.0
+ scheduler: 0.27.0
react-fast-compare@3.2.2: {}
- react-freeze@1.0.4(react@19.1.0):
+ react-freeze@1.0.4(react@19.2.0):
dependencies:
- react: 19.1.0
+ react: 19.2.0
- react-i18next@16.0.0(i18next@25.5.3(typescript@5.9.2))(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)(typescript@5.9.2):
+ react-i18next@16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.0(react@19.2.0))(react-native@0.83.2(@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.28.4
+ '@babel/runtime': 7.28.6
html-parse-stringify: 3.0.1
- i18next: 25.5.3(typescript@5.9.2)
- react: 19.1.0
+ i18next: 25.8.18(typescript@5.9.3)
+ react: 19.2.0
+ use-sync-external-store: 1.6.0(react@19.2.0)
optionalDependencies:
- react-dom: 19.1.0(react@19.1.0)
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- typescript: 5.9.2
+ react-dom: 19.2.0(react@19.2.0)
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ typescript: 5.9.3
react-is@16.13.1: {}
@@ -13163,260 +12404,144 @@ snapshots:
react-is@18.3.1: {}
- react-is@19.1.1: {}
-
- react-native-animatable@1.3.3:
- dependencies:
- prop-types: 15.8.1
-
- react-native-builder-bob@0.40.11:
- dependencies:
- '@babel/core': 7.28.4
- '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-strict-mode': 7.27.1(@babel/core@7.28.4)
- '@babel/preset-env': 7.28.3(@babel/core@7.28.4)
- '@babel/preset-react': 7.27.1(@babel/core@7.28.4)
- '@babel/preset-typescript': 7.27.1(@babel/core@7.28.4)
- arktype: 2.1.20
- babel-plugin-syntax-hermes-parser: 0.28.1
- browserslist: 4.26.3
- cross-spawn: 7.0.6
- dedent: 0.7.0
- del: 6.1.1
- escape-string-regexp: 4.0.0
- fs-extra: 10.1.0
- glob: 8.1.0
- is-git-dirty: 2.0.2
- json5: 2.2.3
- kleur: 4.1.5
- metro-config: 0.80.12
- prompts: 2.4.2
- react-native-monorepo-config: 0.1.10
- which: 2.0.2
- yargs: 17.7.2
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- react-native-confirmation-code-field@7.4.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
- optionalDependencies:
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
-
- react-native-ficus-ui@2.3.0(@babel/core@7.28.4)(@babel/runtime@7.28.4)(@types/react@19.1.13)(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
- dependencies:
- '@chakra-ui/utils': 2.2.2(react@19.1.0)
- '@gorhom/bottom-sheet': 5.0.4(@types/react@19.1.13)(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- '@react-native-community/slider': 5.0.1
- '@react-native-picker/picker': 2.11.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- '@react-native/babel-preset': 0.80.0(@babel/core@7.28.4)
- '@shopify/flash-list': 2.0.3(@babel/runtime@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- '@trivago/prettier-plugin-sort-imports': 5.2.2(prettier@3.4.2)
- color2k: 2.0.3
- deepmerge: 4.2.2
- eslint: 8.57.0
- prettier: 3.4.2
- react: 19.1.0
- react-dom: 18.3.1(react@19.1.0)
- react-fast-compare: 3.2.2
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-builder-bob: 0.40.11
- react-native-confirmation-code-field: 7.4.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-modal: 13.0.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-pager-view: 6.5.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-picker-select: 9.3.1(@react-native-picker/picker@2.11.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))
- react-native-tab-view: 3.5.2(react-native-pager-view@6.5.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-toast-message: 2.1.6(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-vector-icons: 10.2.0
- react-test-renderer: 18.2.0(react@19.1.0)
- validate-color: 2.2.4
- transitivePeerDependencies:
- - '@babel/core'
- - '@babel/runtime'
- - '@types/react'
- - '@types/react-native'
- - '@vue/compiler-sfc'
- - bufferutil
- - prettier-plugin-svelte
- - react-native-gesture-handler
- - react-native-reanimated
- - supports-color
- - svelte
- - utf-8-validate
+ react-is@19.2.4: {}
- react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ react-native-gesture-handler@2.30.0(react-native@0.83.2(@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.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@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.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ react-native-is-edge-to-edge@1.2.1(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
dependencies:
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@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.4.5(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)):
+ react-native-is-edge-to-edge@1.3.1(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
dependencies:
- '@react-native-community/datetimepicker': 8.4.5(expo@54.0.15)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- prop-types: 15.8.1
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
- react-native-modal@13.0.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ react-native-modal-datetime-picker@18.0.0(@react-native-community/datetimepicker@8.6.0(expo@55.0.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@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.6)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
prop-types: 15.8.1
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-animatable: 1.3.3
-
- react-native-monorepo-config@0.1.10:
- dependencies:
- escape-string-regexp: 5.0.0
- fast-glob: 3.3.3
-
- react-native-pager-view@6.5.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
- dependencies:
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
-
- react-native-pager-view@6.9.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
- dependencies:
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
- react-native-picker-select@9.3.1(@react-native-picker/picker@2.11.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)):
+ react-native-pager-view@8.0.0(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
dependencies:
- '@react-native-picker/picker': 2.11.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- lodash.isequal: 4.5.0
- lodash.isobject: 3.0.2
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
- react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ react-native-reanimated@4.2.1(react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
dependencies:
- '@babel/core': 7.28.4
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-is-edge-to-edge: 1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-worklets: 0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- semver: 7.7.2
+ react: 19.2.0
+ react-native: 0.83.2(@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.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ semver: 7.7.3
- react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ react-native-safe-area-context@5.6.2(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
dependencies:
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
- react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ react-native-screens@4.23.0(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
dependencies:
- react: 19.1.0
- react-freeze: 1.0.4(react@19.1.0)
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-is-edge-to-edge: 1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ react: 19.2.0
+ react-freeze: 1.0.4(react@19.2.0)
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
warn-once: 0.1.1
- react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ react-native-svg@15.15.3(react-native@0.83.2(@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.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
warn-once: 0.1.1
- react-native-tab-view@3.5.2(react-native-pager-view@6.5.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
- dependencies:
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-pager-view: 6.5.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- use-latest-callback: 0.1.11(react@19.1.0)
-
- react-native-toast-message@2.1.6(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
- dependencies:
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
-
- react-native-url-polyfill@2.0.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)):
+ react-native-url-polyfill@3.0.0(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)):
dependencies:
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
whatwg-url-without-unicode: 8.0.0-3
- react-native-vector-icons@10.2.0:
- dependencies:
- prop-types: 15.8.1
- yargs: 16.2.0
-
- react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-native-web@0.21.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
dependencies:
- '@babel/runtime': 7.28.4
+ '@babel/runtime': 7.28.6
'@react-native/normalize-colors': 0.74.89
fbjs: 3.0.5
inline-style-prefixer: 7.0.1
memoize-one: 6.0.0
nullthrows: 1.1.1
postcss-value-parser: 4.2.0
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
styleq: 0.1.3
transitivePeerDependencies:
- encoding
- react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
- dependencies:
- '@babel/core': 7.28.4
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4)
- '@babel/preset-typescript': 7.27.1(@babel/core@7.28.4)
+ react-native-worklets@0.7.2(@babel/core@7.29.0)(react-native@0.83.2(@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-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)
convert-source-map: 2.0.0
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- semver: 7.7.2
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ semver: 7.7.3
transitivePeerDependencies:
- supports-color
- react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0):
+ react-native@0.83.2(@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.81.4
- '@react-native/codegen': 0.81.4(@babel/core@7.28.4)
- '@react-native/community-cli-plugin': 0.81.4
- '@react-native/gradle-plugin': 0.81.4
- '@react-native/js-polyfills': 0.81.4
- '@react-native/normalize-colors': 0.81.4
- '@react-native/virtualized-lists': 0.81.4(@types/react@19.1.13)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ '@react-native/assets-registry': 0.83.2
+ '@react-native/codegen': 0.83.2(@babel/core@7.29.0)
+ '@react-native/community-cli-plugin': 0.83.2
+ '@react-native/gradle-plugin': 0.83.2
+ '@react-native/js-polyfills': 0.83.2
+ '@react-native/normalize-colors': 0.83.2
+ '@react-native/virtualized-lists': 0.83.2(@types/react@19.2.14)(react-native@0.83.2(@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
- babel-jest: 29.7.0(@babel/core@7.28.4)
- babel-plugin-syntax-hermes-parser: 0.29.1
+ babel-jest: 29.7.0(@babel/core@7.29.0)
+ babel-plugin-syntax-hermes-parser: 0.32.0
base64-js: 1.5.1
commander: 12.1.0
flow-enums-runtime: 0.0.6
glob: 7.2.3
+ hermes-compiler: 0.14.1
invariant: 2.2.4
jest-environment-node: 29.7.0
memoize-one: 5.2.1
- metro-runtime: 0.83.2
- metro-source-map: 0.83.2
+ metro-runtime: 0.83.5
+ metro-source-map: 0.83.5
nullthrows: 1.1.1
pretty-format: 29.7.0
promise: 8.3.0
- react: 19.1.0
+ react: 19.2.0
react-devtools-core: 6.1.5
react-refresh: 0.14.2
regenerator-runtime: 0.13.11
- scheduler: 0.26.0
- semver: 7.7.2
+ scheduler: 0.27.0
+ semver: 7.7.4
stacktrace-parser: 0.1.11
whatwg-fetch: 3.6.20
- ws: 6.2.3
+ ws: 7.5.10
yargs: 17.7.2
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
transitivePeerDependencies:
- '@babel/core'
- '@react-native-community/cli'
@@ -13427,47 +12552,34 @@ snapshots:
react-refresh@0.14.2: {}
- react-remove-scroll-bar@2.3.8(@types/react@19.1.13)(react@19.1.0):
+ react-remove-scroll-bar@2.3.8(@types/react@19.2.14)(react@19.2.0):
dependencies:
- react: 19.1.0
- react-style-singleton: 2.2.3(@types/react@19.1.13)(react@19.1.0)
+ react: 19.2.0
+ react-style-singleton: 2.2.3(@types/react@19.2.14)(react@19.2.0)
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.1.13
+ '@types/react': 19.2.14
- react-remove-scroll@2.7.1(@types/react@19.1.13)(react@19.1.0):
+ react-remove-scroll@2.7.2(@types/react@19.2.14)(react@19.2.0):
dependencies:
- react: 19.1.0
- react-remove-scroll-bar: 2.3.8(@types/react@19.1.13)(react@19.1.0)
- react-style-singleton: 2.2.3(@types/react@19.1.13)(react@19.1.0)
+ 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)
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@19.1.13)(react@19.1.0)
- use-sidecar: 1.1.3(@types/react@19.1.13)(react@19.1.0)
+ 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)
optionalDependencies:
- '@types/react': 19.1.13
-
- react-shallow-renderer@16.15.0(react@19.1.0):
- dependencies:
- object-assign: 4.1.1
- react: 19.1.0
- react-is: 18.3.1
+ '@types/react': 19.2.14
- react-style-singleton@2.2.3(@types/react@19.1.13)(react@19.1.0):
+ react-style-singleton@2.2.3(@types/react@19.2.14)(react@19.2.0):
dependencies:
get-nonce: 1.0.1
- react: 19.1.0
+ react: 19.2.0
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.1.13
-
- react-test-renderer@18.2.0(react@19.1.0):
- dependencies:
- react: 19.1.0
- react-is: 18.3.1
- react-shallow-renderer: 16.15.0(react@19.1.0)
- scheduler: 0.23.2
+ '@types/react': 19.2.14
- react@19.1.0: {}
+ react@19.2.0: {}
read-pkg@3.0.0:
dependencies:
@@ -13475,17 +12587,7 @@ snapshots:
normalize-package-data: 2.5.0
path-type: 3.0.0
- readable-stream@2.3.8:
- dependencies:
- core-util-is: 1.0.3
- inherits: 2.0.4
- isarray: 1.0.0
- process-nextick-args: 2.0.1
- safe-buffer: 5.1.2
- string_decoder: 1.1.1
- util-deprecate: 1.0.2
-
- readdirp@4.1.2: {}
+ readdirp@5.0.0: {}
recast@0.23.11:
dependencies:
@@ -13502,15 +12604,13 @@ snapshots:
refa@0.12.1:
dependencies:
- '@eslint-community/regexpp': 4.12.1
-
- reflect-metadata@0.2.2: {}
+ '@eslint-community/regexpp': 4.12.2
reflect.getprototypeof@1.0.10:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.24.1
es-errors: 1.3.0
es-object-atoms: 1.1.1
get-intrinsic: 1.3.0
@@ -13527,7 +12627,7 @@ snapshots:
regexp-ast-analysis@0.7.1:
dependencies:
- '@eslint-community/regexpp': 4.12.1
+ '@eslint-community/regexpp': 4.12.2
refa: 0.12.1
regexp-tree@0.1.27: {}
@@ -13552,53 +12652,34 @@ snapshots:
regjsgen@0.8.0: {}
- regjsparser@0.12.0:
- dependencies:
- jsesc: 3.0.2
-
regjsparser@0.13.0:
dependencies:
jsesc: 3.1.0
- require-directory@2.1.1: {}
-
- require-from-string@2.0.2: {}
-
- requireg@0.2.2:
- dependencies:
- nested-error-stacks: 2.0.1
- rc: 1.2.8
- resolve: 1.7.1
+ remeda@2.33.6: {}
- resolve-from@3.0.0: {}
+ require-directory@2.1.1: {}
resolve-from@4.0.0: {}
resolve-from@5.0.0: {}
- resolve-global@1.0.0:
- dependencies:
- global-dirs: 0.1.1
-
resolve-pkg-maps@1.0.0: {}
- resolve-workspace-root@2.0.0: {}
-
- resolve.exports@2.0.3: {}
+ resolve-workspace-root@2.0.1: {}
- resolve@1.22.10:
+ resolve@1.22.11:
dependencies:
is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- resolve@1.7.1:
- dependencies:
- path-parse: 1.0.7
-
- resolve@2.0.0-next.5:
+ resolve@2.0.0-next.6:
dependencies:
+ es-errors: 1.3.0
is-core-module: 2.16.1
+ node-exports-info: 1.6.0
+ object-keys: 1.1.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -13607,22 +12688,16 @@ snapshots:
onetime: 2.0.1
signal-exit: 3.0.7
- reusify@1.1.0: {}
-
rimraf@3.0.2:
dependencies:
glob: 7.2.3
- rou3@0.5.1: {}
+ rou3@0.7.12: {}
rtl-detect@1.1.2: {}
run-applescript@7.1.0: {}
- run-parallel@1.2.0:
- dependencies:
- queue-microtask: 1.2.3
-
safe-array-concat@1.1.3:
dependencies:
call-bind: 1.0.8
@@ -13631,8 +12706,6 @@ snapshots:
has-symbols: 1.1.0
isarray: 2.0.5
- safe-buffer@5.1.2: {}
-
safe-buffer@5.2.1: {}
safe-push-apply@1.0.0:
@@ -13646,17 +12719,13 @@ snapshots:
es-errors: 1.3.0
is-regex: 1.2.1
- sax@1.4.1: {}
-
- scheduler@0.23.2:
- dependencies:
- loose-envify: 1.4.0
+ sax@1.5.0: {}
- scheduler@0.26.0: {}
+ scheduler@0.27.0: {}
scslre@0.3.0:
dependencies:
- '@eslint-community/regexpp': 4.12.1
+ '@eslint-community/regexpp': 4.12.2
refa: 0.12.1
regexp-ast-analysis: 0.7.1
@@ -13666,27 +12735,11 @@ snapshots:
semver@7.6.3: {}
- semver@7.7.2: {}
+ semver@7.7.3: {}
- send@0.19.0:
- dependencies:
- debug: 2.6.9
- depd: 2.0.0
- destroy: 1.2.0
- encodeurl: 1.0.2
- escape-html: 1.0.3
- etag: 1.8.1
- fresh: 0.5.2
- http-errors: 2.0.0
- mime: 1.6.0
- ms: 2.1.3
- on-finished: 2.4.1
- range-parser: 1.2.1
- statuses: 2.0.1
- transitivePeerDependencies:
- - supports-color
+ semver@7.7.4: {}
- send@0.19.1:
+ send@0.19.2:
dependencies:
debug: 2.6.9
depd: 2.0.0
@@ -13695,29 +12748,29 @@ snapshots:
escape-html: 1.0.3
etag: 1.8.1
fresh: 0.5.2
- http-errors: 2.0.0
+ http-errors: 2.0.1
mime: 1.6.0
ms: 2.1.3
on-finished: 2.4.1
range-parser: 1.2.1
- statuses: 2.0.1
+ statuses: 2.0.2
transitivePeerDependencies:
- supports-color
serialize-error@2.1.0: {}
- serve-static@1.16.2:
+ serve-static@1.16.3:
dependencies:
encodeurl: 2.0.0
escape-html: 1.0.3
parseurl: 1.3.3
- send: 0.19.0
+ send: 0.19.2
transitivePeerDependencies:
- supports-color
server-only@0.0.1: {}
- set-cookie-parser@2.7.1: {}
+ set-cookie-parser@3.0.1: {}
set-function-length@1.2.2:
dependencies:
@@ -13745,7 +12798,7 @@ snapshots:
setprototypeof@1.2.0: {}
- sf-symbols-typescript@2.1.0: {}
+ sf-symbols-typescript@2.2.0: {}
shallowequal@1.1.0: {}
@@ -13793,8 +12846,6 @@ snapshots:
signal-exit@3.0.7: {}
- signal-exit@4.1.0: {}
-
simple-plist@1.3.1:
dependencies:
bplist-creator: 0.1.0
@@ -13816,15 +12867,15 @@ snapshots:
dot-case: 3.0.4
tslib: 2.8.1
- sonner-native@0.21.1(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0):
+ sonner-native@0.23.1(react-native-gesture-handler@2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.2(react-native@0.83.2(@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.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
dependencies:
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0)
- react-native-gesture-handler: 2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.5.1(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
- react-native-svg: 15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.13)(react@19.1.0))(react@19.1.0)
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ react-native-gesture-handler: 2.30.0(react-native@0.83.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
+ react-native-safe-area-context: 5.6.2(react-native@0.83.2(@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.2(@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.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
source-map-js@1.2.1: {}
@@ -13837,19 +12888,23 @@ snapshots:
source-map@0.6.1: {}
+ sparse-bitfield@3.0.3:
+ dependencies:
+ memory-pager: 1.5.0
+
spdx-correct@3.2.0:
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.22
+ spdx-license-ids: 3.0.23
spdx-exceptions@2.5.0: {}
spdx-expression-parse@3.0.1:
dependencies:
spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.22
+ spdx-license-ids: 3.0.23
- spdx-license-ids@3.0.22: {}
+ spdx-license-ids@3.0.23: {}
split-on-first@1.1.0: {}
@@ -13869,44 +12924,41 @@ snapshots:
statuses@1.5.0: {}
- statuses@2.0.1: {}
+ statuses@2.0.2: {}
stop-iteration-iterator@1.1.0:
dependencies:
es-errors: 1.3.0
internal-slot: 1.1.0
- store2@2.14.4: {}
-
- storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2):
+ storybook@10.2.17(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.0(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)
'@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/mocker': 3.2.4
'@vitest/spy': 3.2.4
- better-opn: 3.0.2
- esbuild: 0.25.10
- esbuild-register: 3.6.0(esbuild@0.25.10)
+ esbuild: 0.27.3
+ open: 10.2.0
recast: 0.23.11
- semver: 7.7.2
- ws: 8.18.3
+ semver: 7.7.4
+ use-sync-external-store: 1.6.0(react@19.2.0)
+ ws: 8.19.0
optionalDependencies:
- prettier: 3.6.2
+ prettier: 3.8.1
transitivePeerDependencies:
- '@testing-library/dom'
- bufferutil
- - msw
- - supports-color
+ - react
+ - react-dom
- utf-8-validate
- - vite
stream-buffers@2.2.0: {}
strict-uri-encode@2.0.0: {}
- string-ts@2.2.1: {}
+ string-ts@2.3.1: {}
string-width@4.2.3:
dependencies:
@@ -13914,18 +12966,12 @@ snapshots:
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- string-width@5.1.2:
- dependencies:
- eastasianwidth: 0.2.0
- emoji-regex: 9.2.2
- strip-ansi: 7.1.2
-
string.prototype.matchall@4.0.12:
dependencies:
call-bind: 1.0.8
call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.24.1
es-errors: 1.3.0
es-object-atoms: 1.1.1
get-intrinsic: 1.3.0
@@ -13940,13 +12986,13 @@ snapshots:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.24.1
es-object-atoms: 1.1.1
string.prototype.repeat@1.0.0:
dependencies:
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.24.1
string.prototype.trim@1.2.10:
dependencies:
@@ -13954,7 +13000,7 @@ snapshots:
call-bound: 1.0.4
define-data-property: 1.1.4
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.24.1
es-object-atoms: 1.1.1
has-property-descriptors: 1.0.2
@@ -13971,10 +13017,6 @@ snapshots:
define-properties: 1.2.1
es-object-atoms: 1.1.1
- string_decoder@1.1.1:
- dependencies:
- safe-buffer: 5.1.2
-
strip-ansi@5.2.0:
dependencies:
ansi-regex: 4.1.1
@@ -13983,21 +13025,13 @@ snapshots:
dependencies:
ansi-regex: 5.0.1
- strip-ansi@7.1.2:
- dependencies:
- ansi-regex: 6.2.2
-
strip-bom@3.0.0: {}
- strip-final-newline@2.0.0: {}
-
strip-indent@3.0.0:
dependencies:
min-indent: 1.0.1
- strip-indent@4.1.0: {}
-
- strip-json-comments@2.0.1: {}
+ strip-indent@4.1.1: {}
strip-json-comments@3.1.1: {}
@@ -14005,16 +13039,6 @@ snapshots:
styleq@0.1.3: {}
- sucrase@3.35.0:
- dependencies:
- '@jridgewell/gen-mapping': 0.3.13
- commander: 4.1.1
- glob: 10.4.5
- lines-and-columns: 1.2.4
- mz: 2.7.0
- pirates: 4.0.7
- ts-interface-checker: 0.1.13
-
supports-color@5.5.0:
dependencies:
has-flag: 3.0.0
@@ -14036,35 +13060,37 @@ snapshots:
svg-parser@2.0.4: {}
- svgo@3.3.2:
+ svgo@3.3.3:
dependencies:
- '@trysound/sax': 0.2.0
commander: 7.2.0
css-select: 5.2.2
css-tree: 2.3.1
css-what: 6.2.2
csso: 5.0.5
picocolors: 1.1.1
+ sax: 1.5.0
- tar@7.5.1:
+ tailwind-merge@3.5.0: {}
+
+ tailwindcss-animate@1.0.7(tailwindcss@4.2.1):
dependencies:
- '@isaacs/fs-minipass': 4.0.1
- chownr: 3.0.0
- minipass: 7.1.2
- minizlib: 3.1.0
- yallist: 5.0.0
+ tailwindcss: 4.2.1
+
+ tailwindcss@4.1.17: {}
- temp-dir@2.0.0: {}
+ tailwindcss@4.2.1: {}
+
+ tapable@2.3.0: {}
terminal-link@2.1.1:
dependencies:
ansi-escapes: 4.3.2
supports-hyperlinks: 2.3.0
- terser@5.44.0:
+ terser@5.46.0:
dependencies:
'@jridgewell/source-map': 0.3.11
- acorn: 8.15.0
+ acorn: 8.16.0
commander: 2.20.3
source-map-support: 0.5.21
@@ -14072,30 +13098,15 @@ snapshots:
dependencies:
'@istanbuljs/schema': 0.1.3
glob: 7.2.3
- minimatch: 3.1.2
-
- text-table@0.2.0: {}
-
- thenify-all@1.6.0:
- dependencies:
- thenify: 3.3.1
-
- thenify@3.3.1:
- dependencies:
- any-promise: 1.3.0
+ minimatch: 3.1.5
throat@5.0.0: {}
- through2@2.0.5:
- dependencies:
- readable-stream: 2.3.8
- xtend: 4.0.2
-
tiny-invariant@1.3.3: {}
tinycolor2@1.6.0: {}
- tinyexec@1.0.1: {}
+ tinyexec@1.0.2: {}
tinyglobby@0.2.15:
dependencies:
@@ -14114,22 +13125,26 @@ snapshots:
toidentifier@1.0.1: {}
+ toqr@0.1.1: {}
+
tr46@0.0.3: {}
- ts-api-utils@2.1.0(typescript@5.9.2):
+ tr46@5.1.1:
+ dependencies:
+ punycode: 2.3.1
+
+ ts-api-utils@2.4.0(typescript@5.9.3):
dependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
- ts-declaration-location@1.0.7(typescript@5.9.2):
+ ts-declaration-location@1.0.7(typescript@5.9.3):
dependencies:
picomatch: 4.0.3
- typescript: 5.9.2
+ typescript: 5.9.3
ts-dedent@2.2.0: {}
- ts-interface-checker@0.1.13: {}
-
- ts-pattern@5.8.0: {}
+ ts-pattern@5.9.0: {}
ts-plugin-sort-import-suggestions@1.0.4: {}
@@ -14140,28 +13155,18 @@ snapshots:
minimist: 1.2.8
strip-bom: 3.0.0
- tslib@1.14.1: {}
-
tslib@2.8.1: {}
- tsyringe@4.10.0:
- dependencies:
- tslib: 1.14.1
-
type-check@0.4.0:
dependencies:
prelude-ls: 1.2.1
type-detect@4.0.8: {}
- type-fest@0.20.2: {}
-
type-fest@0.21.3: {}
type-fest@0.7.1: {}
- type-fest@2.19.0: {}
-
typed-array-buffer@1.0.3:
dependencies:
call-bound: 1.0.4
@@ -14195,26 +13200,23 @@ snapshots:
possible-typed-array-names: 1.1.0
reflect.getprototypeof: 1.0.10
- typescript-eslint@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2):
+ typescript-eslint@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.44.1(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/parser': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- '@typescript-eslint/typescript-estree': 8.44.1(typescript@5.9.2)
- '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)
- eslint: 9.36.0(jiti@2.6.0)
- typescript: 5.9.2
+ '@typescript-eslint/eslint-plugin': 8.57.0(@typescript-eslint/parser@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.39.4(jiti@2.6.1)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- typescript@5.9.2: {}
+ typescript@5.9.3: {}
ua-parser-js@0.7.41: {}
ua-parser-js@1.0.41: {}
- uglify-js@3.19.3:
- optional: true
-
unbox-primitive@1.1.0:
dependencies:
call-bound: 1.0.4
@@ -14222,13 +13224,7 @@ snapshots:
has-symbols: 1.1.0
which-boxed-primitive: 1.1.1
- unc-path-regex@0.1.2: {}
-
- uncrypto@0.1.3: {}
-
- undici-types@7.13.0: {}
-
- undici@6.21.3: {}
+ undici-types@7.18.2: {}
unicode-canonical-property-names-ecmascript@2.0.1: {}
@@ -14241,17 +13237,21 @@ snapshots:
unicode-property-aliases-ecmascript@2.2.0: {}
- unique-string@2.0.0:
+ uniwind@1.5.0(react-native@0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(tailwindcss@4.2.1):
dependencies:
- crypto-random-string: 2.0.0
-
- universalify@2.0.1: {}
+ '@tailwindcss/node': 4.1.17
+ '@tailwindcss/oxide': 4.1.17
+ culori: 4.0.2
+ lightningcss: 1.30.1
+ react: 19.2.0
+ react-native: 0.83.2(@babel/core@7.29.0)(@types/react@19.2.14)(react@19.2.0)
+ tailwindcss: 4.2.1
unpipe@1.0.0: {}
unrs-resolver@1.11.1:
dependencies:
- napi-postinstall: 0.3.3
+ napi-postinstall: 0.3.4
optionalDependencies:
'@unrs/resolver-binding-android-arm-eabi': 1.11.1
'@unrs/resolver-binding-android-arm64': 1.11.1
@@ -14273,9 +13273,9 @@ snapshots:
'@unrs/resolver-binding-win32-ia32-msvc': 1.11.1
'@unrs/resolver-binding-win32-x64-msvc': 1.11.1
- update-browserslist-db@1.1.3(browserslist@4.26.3):
+ update-browserslist-db@1.2.3(browserslist@4.28.1):
dependencies:
- browserslist: 4.26.3
+ browserslist: 4.28.1
escalade: 3.2.0
picocolors: 1.1.1
@@ -14283,49 +13283,33 @@ snapshots:
dependencies:
punycode: 2.3.1
- use-callback-ref@1.3.3(@types/react@19.1.13)(react@19.1.0):
+ use-callback-ref@1.3.3(@types/react@19.2.14)(react@19.2.0):
dependencies:
- react: 19.1.0
+ react: 19.2.0
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.1.13
-
- use-latest-callback@0.1.11(react@19.1.0):
- dependencies:
- react: 19.1.0
+ '@types/react': 19.2.14
- use-latest-callback@0.2.4(react@19.1.0):
+ use-latest-callback@0.2.6(react@19.2.0):
dependencies:
- react: 19.1.0
+ react: 19.2.0
- use-sidecar@1.1.3(@types/react@19.1.13)(react@19.1.0):
+ use-sidecar@1.1.3(@types/react@19.2.14)(react@19.2.0):
dependencies:
detect-node-es: 1.1.0
- react: 19.1.0
+ react: 19.2.0
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.1.13
-
- use-sync-external-store@1.5.0(react@19.1.0):
- dependencies:
- react: 19.1.0
-
- util-deprecate@1.0.2: {}
+ '@types/react': 19.2.14
- util@0.12.5:
+ use-sync-external-store@1.6.0(react@19.2.0):
dependencies:
- inherits: 2.0.4
- is-arguments: 1.2.0
- is-generator-function: 1.1.0
- is-typed-array: 1.1.15
- which-typed-array: 1.1.19
+ react: 19.2.0
utils-merge@1.0.1: {}
uuid@7.0.3: {}
- validate-color@2.2.4: {}
-
validate-npm-package-license@3.0.4:
dependencies:
spdx-correct: 3.2.0
@@ -14335,11 +13319,11 @@ snapshots:
vary@1.1.2: {}
- vaul@1.1.2(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ vaul@1.1.2(@types/react@19.2.14)(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
dependencies:
- '@radix-ui/react-dialog': 1.1.15(@types/react@19.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@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)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
@@ -14362,14 +13346,23 @@ snapshots:
webidl-conversions@5.0.0: {}
+ webidl-conversions@7.0.0: {}
+
whatwg-fetch@3.6.20: {}
+ whatwg-url-minimum@0.1.1: {}
+
whatwg-url-without-unicode@8.0.0-3:
dependencies:
buffer: 5.7.1
punycode: 2.3.1
webidl-conversions: 5.0.0
+ whatwg-url@14.2.0:
+ dependencies:
+ tr46: 5.1.1
+ webidl-conversions: 7.0.0
+
whatwg-url@5.0.0:
dependencies:
tr46: 0.0.3
@@ -14391,13 +13384,13 @@ snapshots:
is-async-function: 2.1.1
is-date-object: 1.1.0
is-finalizationregistry: 1.1.1
- is-generator-function: 1.1.0
+ is-generator-function: 1.1.2
is-regex: 1.2.1
is-weakref: 1.1.1
isarray: 2.0.5
which-boxed-primitive: 1.1.1
which-collection: 1.0.2
- which-typed-array: 1.1.19
+ which-typed-array: 1.1.20
which-collection@1.0.2:
dependencies:
@@ -14406,7 +13399,7 @@ snapshots:
is-weakmap: 2.0.2
is-weakset: 2.0.4
- which-typed-array@1.1.19:
+ which-typed-array@1.1.20:
dependencies:
available-typed-arrays: 1.0.7
call-bind: 1.0.8
@@ -14424,24 +13417,14 @@ snapshots:
dependencies:
isexe: 2.0.0
- wonka@6.3.5: {}
-
word-wrap@1.2.5: {}
- wordwrap@1.0.0: {}
-
wrap-ansi@7.0.0:
dependencies:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
- wrap-ansi@8.1.0:
- dependencies:
- ansi-styles: 6.2.3
- string-width: 5.1.2
- strip-ansi: 7.1.2
-
wrappy@1.0.2: {}
write-file-atomic@4.0.2:
@@ -14449,13 +13432,18 @@ snapshots:
imurmurhash: 0.1.4
signal-exit: 3.0.7
- ws@6.2.3:
- dependencies:
- async-limiter: 1.0.1
-
ws@7.5.10: {}
- ws@8.18.3: {}
+ ws@8.19.0: {}
+
+ wsl-utils@0.1.0:
+ dependencies:
+ is-wsl: 3.1.1
+
+ wsl-utils@0.3.1:
+ dependencies:
+ is-wsl: 3.1.1
+ powershell-utils: 0.1.0
xcode@3.0.1:
dependencies:
@@ -14464,37 +13452,21 @@ snapshots:
xml2js@0.6.0:
dependencies:
- sax: 1.4.1
+ sax: 1.5.0
xmlbuilder: 11.0.1
xmlbuilder@11.0.1: {}
xmlbuilder@15.1.1: {}
- xtend@4.0.2: {}
-
y18n@5.0.8: {}
yallist@3.1.1: {}
- yallist@5.0.0: {}
-
- yaml@2.8.1: {}
-
- yargs-parser@20.2.9: {}
+ yaml@2.8.2: {}
yargs-parser@21.1.1: {}
- yargs@16.2.0:
- dependencies:
- cliui: 7.0.4
- escalade: 3.2.0
- get-caller-file: 2.0.5
- require-directory: 2.1.1
- string-width: 4.2.3
- y18n: 5.0.8
- yargs-parser: 20.2.9
-
yargs@17.7.2:
dependencies:
cliui: 8.0.1
@@ -14507,16 +13479,12 @@ snapshots:
yocto-queue@0.1.0: {}
- zod-to-json-schema@3.24.6(zod@3.25.76):
- dependencies:
- zod: 3.25.76
-
zod@3.25.76: {}
- zod@4.1.11: {}
+ zod@4.3.6: {}
- zustand@5.0.8(@types/react@19.1.13)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)):
+ zustand@5.0.11(@types/react@19.2.14)(react@19.2.0)(use-sync-external-store@1.6.0(react@19.2.0)):
optionalDependencies:
- '@types/react': 19.1.13
- react: 19.1.0
- use-sync-external-store: 1.5.0(react@19.1.0)
+ '@types/react': 19.2.14
+ react: 19.2.0
+ use-sync-external-store: 1.6.0(react@19.2.0)
diff --git a/src/app.css b/src/app.css
new file mode 100644
index 00000000..77926a74
--- /dev/null
+++ b/src/app.css
@@ -0,0 +1,200 @@
+@import 'tailwindcss';
+@import 'uniwind';
+
+@theme {
+ --font-sans:
+ 'Inter Variable', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji',
+ 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
+ --color-white: #fff;
+ --color-black: #000;
+
+ --color-neutral-50: oklch(0.985 0 0);
+ --color-neutral-100: oklch(0.967 0.001 286.375);
+ --color-neutral-200: oklch(0.92 0.004 286.32);
+ --color-neutral-300: oklch(0.871 0.006 286.286);
+ --color-neutral-400: oklch(0.705 0.015 286.067);
+ --color-neutral-500: oklch(0.552 0.016 285.938);
+ --color-neutral-600: oklch(0.442 0.017 285.786);
+ --color-neutral-700: oklch(0.37 0.013 285.805);
+ --color-neutral-800: oklch(0.274 0.006 286.033);
+ --color-neutral-900: oklch(0.21 0.006 285.885);
+ --color-neutral-950: oklch(0.141 0.005 285.823);
+
+ --color-negative-50: oklch(0.971 0.013 17.38);
+ --color-negative-100: oklch(0.936 0.032 17.717);
+ --color-negative-200: oklch(0.885 0.062 18.334);
+ --color-negative-300: oklch(0.808 0.114 19.571);
+ --color-negative-400: oklch(0.704 0.191 22.216);
+ --color-negative-500: oklch(0.637 0.237 25.331);
+ --color-negative-600: oklch(0.577 0.245 27.325);
+ --color-negative-700: oklch(0.505 0.213 27.518);
+ --color-negative-800: oklch(0.444 0.177 26.899);
+ --color-negative-900: oklch(0.396 0.141 25.723);
+ --color-negative-950: oklch(0.258 0.092 26.042);
+
+ --color-warning-50: oklch(0.987 0.022 95.277);
+ --color-warning-100: oklch(0.962 0.059 95.617);
+ --color-warning-200: oklch(0.924 0.12 95.746);
+ --color-warning-300: oklch(0.879 0.169 91.605);
+ --color-warning-400: oklch(0.828 0.189 84.429);
+ --color-warning-500: oklch(0.769 0.188 70.08);
+ --color-warning-600: oklch(0.666 0.179 58.318);
+ --color-warning-700: oklch(0.555 0.163 48.998);
+ --color-warning-800: oklch(0.473 0.137 46.201);
+ --color-warning-900: oklch(0.414 0.112 45.904);
+ --color-warning-950: oklch(0.279 0.077 45.635);
+
+ --color-positive-50: oklch(0.982 0.018 155.826);
+ --color-positive-100: oklch(0.962 0.044 156.743);
+ --color-positive-200: oklch(0.925 0.084 155.995);
+ --color-positive-300: oklch(0.871 0.15 154.449);
+ --color-positive-400: oklch(0.792 0.209 151.711);
+ --color-positive-500: oklch(0.723 0.219 149.579);
+ --color-positive-600: oklch(0.627 0.194 149.214);
+ --color-positive-700: oklch(0.527 0.154 150.069);
+ --color-positive-800: oklch(0.448 0.119 151.328);
+ --color-positive-900: oklch(0.393 0.095 152.535);
+ --color-positive-950: oklch(0.266 0.065 152.934);
+
+ --spacing-safe-top: env(safe-area-inset-top);
+ --spacing-safe-bottom: env(safe-area-inset-bottom);
+ --spacing-safe-left: env(safe-area-inset-left);
+ --spacing-safe-right: env(safe-area-inset-right);
+
+ --text-2xs: 0.625rem;
+ --text-3xs: 0.5rem;
+
+ --breakpoint-2xs: 24rem; /* 384px */
+ --breakpoint-xs: 32rem; /* 512px */
+ /* Tailwind --breakpoint-sm: 40rem; (640px) */
+
+ --container-6xs: 4rem; /* 64px */
+ --container-5xs: 8rem; /* 128px */
+ --container-4xs: 12rem; /* 192px */
+ /* Tailwind --container-3xs: 16rem; (256px) */
+
+ --radius: 0.625rem;
+ --radius-sm: calc(var(--radius) - 4px);
+ --radius-md: calc(var(--radius) - 2px);
+ --radius-lg: var(--radius);
+ --radius-xl: calc(var(--radius) + 4px);
+}
+
+@layer theme {
+ :root {
+ /* Use literal values in @variant — var() references may not resolve in Uniwind theme system */
+ @variant dark {
+ --color-background: oklch(0.141 0.005 285.823); /* --color-neutral-950 */
+ --color-foreground: oklch(0.985 0 0); /* --color-neutral-50 */
+ --color-card: oklch(0.21 0.006 285.885); /* --color-neutral-900 */
+ --color-card-foreground: oklch(0.985 0 0); /* --color-neutral-50 */
+ --color-popover: oklch(0.141 0.005 285.823); /* --color-neutral-950 */
+ --color-popover-foreground: oklch(0.985 0 0); /* --color-neutral-50 */
+ --color-primary: oklch(0.985 0 0); /* --color-neutral-50 */
+ --color-primary-foreground: oklch(
+ 0.21 0.006 285.885
+ ); /* --color-neutral-900 */
+ --color-secondary: oklch(0.274 0.006 286.033); /* --color-neutral-800 */
+ --color-secondary-foreground: oklch(0.985 0 0); /* --color-neutral-50 */
+ --color-muted: oklch(0.21 0.006 285.885); /* --color-neutral-900 */
+ --color-muted-foreground: oklch(
+ 0.705 0.015 286.067
+ ); /* --color-neutral-400 */
+ --color-accent: oklch(0.274 0.006 286.033); /* --color-neutral-800 */
+ --color-accent-foreground: oklch(0.985 0 0); /* --color-neutral-50 */
+ --color-destructive: oklch(0.505 0.213 27.518); /* --color-negative-700 */
+ --color-destructive-foreground: #fff; /* --color-white */
+ --color-border: oklch(0.274 0.006 286.033); /* --color-neutral-800 */
+ --color-input: oklch(0.274 0.006 286.033); /* --color-neutral-800 */
+ --color-ring: oklch(0.442 0.017 285.786); /* --color-neutral-600 */
+ --color-chart-1: oklch(0.488 0.243 264.376); /* custom */
+ --color-chart-2: oklch(0.696 0.17 162.48); /* custom */
+ --color-chart-3: oklch(0.769 0.188 70.08); /* --color-warning-500 */
+ --color-chart-4: oklch(0.627 0.265 303.9); /* custom */
+ --color-chart-5: oklch(0.645 0.246 16.439); /* custom */
+ --color-sidebar: oklch(0.21 0.006 285.885); /* --color-neutral-900 */
+ --color-sidebar-foreground: oklch(
+ 0.871 0.006 286.286
+ ); /* --color-neutral-300 */
+ --color-sidebar-primary: oklch(
+ 0.967 0.001 286.375
+ ); /* --color-neutral-100 */
+ --color-sidebar-primary-foreground: oklch(
+ 0.21 0.006 285.885
+ ); /* --color-neutral-900 */
+ --color-sidebar-accent: oklch(
+ 0.274 0.006 286.033
+ ); /* --color-neutral-800 */
+ --color-sidebar-accent-foreground: oklch(
+ 0.985 0 0
+ ); /* --color-neutral-50 */
+ --color-sidebar-border: oklch(
+ 0.274 0.006 286.033
+ ); /* --color-neutral-800 */
+ --color-sidebar-ring: oklch(
+ 0.442 0.017 285.786
+ ); /* --color-neutral-600 */
+ }
+
+ @variant light {
+ --color-background: #fff; /* --color-white */
+ --color-foreground: oklch(0.141 0.005 285.823); /* --color-neutral-950 */
+ --color-card: #fff; /* --color-white */
+ --color-card-foreground: oklch(
+ 0.141 0.005 285.823
+ ); /* --color-neutral-950 */
+ --color-popover: #fff; /* --color-white */
+ --color-popover-foreground: oklch(
+ 0.141 0.005 285.823
+ ); /* --color-neutral-950 */
+ --color-primary: oklch(0.21 0.006 285.885); /* --color-neutral-900 */
+ --color-primary-foreground: oklch(0.985 0 0); /* --color-neutral-50 */
+ --color-secondary: oklch(0.967 0.001 286.375); /* --color-neutral-100 */
+ --color-secondary-foreground: oklch(
+ 0.21 0.006 285.885
+ ); /* --color-neutral-900 */
+ --color-muted: oklch(0.967 0.001 286.375); /* --color-neutral-100 */
+ --color-muted-foreground: oklch(
+ 0.552 0.016 285.938
+ ); /* --color-neutral-500 */
+ --color-accent: oklch(0.967 0.001 286.375); /* --color-neutral-100 */
+ --color-accent-foreground: oklch(
+ 0.21 0.006 285.885
+ ); /* --color-neutral-900 */
+ --color-destructive: oklch(0.577 0.245 27.325); /* --color-negative-600 */
+ --color-destructive-foreground: oklch(
+ 0.971 0.013 17.38
+ ); /* --color-negative-50 */
+ --color-border: oklch(0.92 0.004 286.32); /* --color-neutral-200 */
+ --color-input: oklch(0.92 0.004 286.32); /* --color-neutral-200 */
+ --color-ring: oklch(0.871 0.006 286.286); /* --color-neutral-300 */
+ --color-chart-1: oklch(0.646 0.222 41.116); /* custom */
+ --color-chart-2: oklch(0.6 0.118 184.704); /* custom */
+ --color-chart-3: oklch(0.398 0.07 227.392); /* custom */
+ --color-chart-4: oklch(0.828 0.189 84.429); /* --color-warning-400 */
+ --color-chart-5: oklch(0.769 0.188 70.08); /* --color-warning-500 */
+ --color-sidebar: #fff; /* --color-white */
+ --color-sidebar-foreground: oklch(
+ 0.442 0.017 285.786
+ ); /* --color-neutral-600 */
+ --color-sidebar-primary: oklch(
+ 0.21 0.006 285.885
+ ); /* --color-neutral-900 */
+ --color-sidebar-primary-foreground: oklch(
+ 0.985 0 0
+ ); /* --color-neutral-50 */
+ --color-sidebar-accent: oklch(
+ 0.967 0.001 286.375
+ ); /* --color-neutral-100 */
+ --color-sidebar-accent-foreground: oklch(
+ 0.21 0.006 285.885
+ ); /* --color-neutral-900 */
+ --color-sidebar-border: oklch(
+ 0.92 0.004 286.32
+ ); /* --color-neutral-200 */
+ --color-sidebar-ring: oklch(
+ 0.871 0.006 286.286
+ ); /* --color-neutral-300 */
+ }
+ }
+}
diff --git a/src/app/(logged)/(tabs)/_layout.tsx b/src/app/(logged)/(tabs)/_layout.tsx
index b0b071f0..ff202d21 100644
--- a/src/app/(logged)/(tabs)/_layout.tsx
+++ b/src/app/(logged)/(tabs)/_layout.tsx
@@ -1,10 +1,6 @@
import { Tabs } from 'expo-router';
-import { Icon, Label, NativeTabs } from 'expo-router/unstable-native-tabs';
-import { ComponentProps } from 'react';
+import { NativeTabs } from 'expo-router/unstable-native-tabs';
import { useTranslation } from 'react-i18next';
-import { DynamicColorIOS } from 'react-native';
-
-import { useThemedStyle } from '@/hooks/use-themed-style';
import { HapticTab } from '@/components/haptic-tab';
import {
@@ -17,6 +13,7 @@ import {
} from '@/components/icons/generated';
import { isApple } from '@/constants/device';
+import { useThemedStyle } from '@/features/theme/use-themed-style';
export const WITH_NATIVE_TABS = isApple;
@@ -51,7 +48,7 @@ const TABS = [
icon: typeof IconHouseDuotone;
iconFocused: typeof IconHouseDuotone;
headerShown: boolean;
- iosIconSf: ComponentProps['sf'];
+ iosIconSf: string;
}[];
export default function TabLayout() {
@@ -61,17 +58,13 @@ export default function TabLayout() {
if (WITH_NATIVE_TABS) {
return (
-
+
{TABS.map((tab) => (
-
- {t(tab.translationKey)}
-
+
+
+ {t(tab.translationKey)}
+
+
))}
@@ -98,8 +91,14 @@ export default function TabLayout() {
title: t(tab.translationKey),
headerShown: tab.headerShown,
tabBarIcon: (props) => {
- const Icon = props.focused ? tab.iconFocused : tab.icon;
- return ;
+ const TabIcon = props.focused ? tab.iconFocused : tab.icon;
+ return (
+
+ );
},
}}
/>
diff --git a/src/app/(logged)/_layout.tsx b/src/app/(logged)/_layout.tsx
index 2070cc24..04be6c42 100644
--- a/src/app/(logged)/_layout.tsx
+++ b/src/app/(logged)/_layout.tsx
@@ -2,10 +2,9 @@ import { Stack, useRouter } from 'expo-router';
import { useEffect } from 'react';
import { useTranslation } from 'react-i18next';
-import { useThemedStyle } from '@/hooks/use-themed-style';
-
import { authClient } from '@/features/auth/client';
import { ViewAuthOnboarding } from '@/features/auth/view-auth-onboarding';
+import { useThemedStyle } from '@/features/theme/use-themed-style';
export default function LoggedLayout() {
const router = useRouter();
diff --git a/src/app/(public)/_layout.tsx b/src/app/(public)/_layout.tsx
index 64d3599b..d01dd7c2 100644
--- a/src/app/(public)/_layout.tsx
+++ b/src/app/(public)/_layout.tsx
@@ -1,9 +1,8 @@
import { Stack, useRouter } from 'expo-router';
import { useEffect } from 'react';
-import { useThemedStyle } from '@/hooks/use-themed-style';
-
import { authClient } from '@/features/auth/client';
+import { useThemedStyle } from '@/features/theme/use-themed-style';
export default function PublicLayout() {
const router = useRouter();
diff --git a/src/app/+not-found.tsx b/src/app/+not-found.tsx
index df9fac54..dd1df442 100644
--- a/src/app/+not-found.tsx
+++ b/src/app/+not-found.tsx
@@ -1,6 +1,9 @@
import { Link, usePathname } from 'expo-router';
import { useTranslation } from 'react-i18next';
-import { Box, Button, Center, Text } from 'react-native-ficus-ui';
+import { View } from 'react-native';
+
+import { Button } from '@/components/ui/button';
+import { Text } from '@/components/ui/text';
import { ViewSafeContent } from '@/layout/view-safe-content';
@@ -11,17 +14,17 @@ export default function NotFound() {
return (
-
- {t('layout:notFound.title')}
-
+
+ {t('layout:notFound.title')}
+
{t('layout:notFound.backInSafety')}
-
+
{process.env.NODE_ENV === 'development' && (
- {path}
+ {path}
)}
-
+
);
}
diff --git a/src/app/_layout.tsx b/src/app/_layout.tsx
index 519fa1db..9e9e1ad4 100644
--- a/src/app/_layout.tsx
+++ b/src/app/_layout.tsx
@@ -2,45 +2,49 @@ import { BottomSheetModalProvider } from '@gorhom/bottom-sheet';
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { Slot } from 'expo-router';
import * as SplashScreen from 'expo-splash-screen';
-import { FicusProvider } from 'react-native-ficus-ui';
import { GestureHandlerRootView } from 'react-native-gesture-handler';
-import {
- initialWindowMetrics,
- SafeAreaProvider,
-} from 'react-native-safe-area-context';
+import { SafeAreaListener } from 'react-native-safe-area-context';
+import { Uniwind } from 'uniwind';
import 'react-native-reanimated';
import '@/lib/i18n';
-import theme from '@/lib/ficus-ui/theme';
+import '../app.css';
-import { ThemeManager } from '@/components/theme-manager';
+import { ThemedStatusBar } from '@/components/themed-status-bar';
import { Sonner } from '@/components/ui/sonner';
import { DevTools } from '@/features/devtools/devtools';
+import { useThemeSync } from '@/features/theme/use-theme-sync';
import { SplashScreenManager } from '@/layout/splash-screen-manager';
export const queryClient = new QueryClient();
-// SplashScreen hide management in on src/app/index.tsx
+// SplashScreen hide management in splash-screen-manager.tsx
SplashScreen.preventAutoHideAsync();
export default function RootLayout() {
+ useThemeSync();
+
return (
-
-
-
-
-
-
-
-
-
- {process.env.NODE_ENV === 'development' && }
-
-
-
-
+ {
+ Uniwind.updateInsets(insets);
+ }}
+ >
+
+
+
+
+
+
+
+ {process.env.NODE_ENV === 'development' && (
+
+ )}
+
+
+
);
}
diff --git a/src/app/index.tsx b/src/app/index.tsx
index 5f08ade1..3b21cf6a 100644
--- a/src/app/index.tsx
+++ b/src/app/index.tsx
@@ -1,32 +1,12 @@
import Constants from 'expo-constants';
-import { Redirect, router, useFocusEffect } from 'expo-router';
-import { useCallback } from 'react';
+import { Redirect } from 'expo-router';
import { FullLoader } from '@/components/ui/full-loader';
-import { useOnboardingStore } from '@/features/app-onboarding/store';
-import { ViewOnboarding } from '@/features/app-onboarding/view-app-onboarding';
import { authClient } from '@/features/auth/client';
export default function Index() {
const session = authClient.useSession();
- const isOnboarded = useOnboardingStore((state) => state.done);
-
- // Manage first app redirection
- useFocusEffect(
- useCallback(() => {
- if (!isOnboarded || session.isPending) {
- return;
- }
- router.replace(
- session.data?.user?.id ? '/(logged)/(tabs)/home' : '/(public)/sign-in'
- );
- }, [session.data, session.isPending, isOnboarded])
- );
-
- if (!isOnboarded) {
- return ;
- }
if (Constants.expoConfig?.extra?.isStorybook) {
return ;
@@ -36,5 +16,11 @@ export default function Index() {
return ;
}
- return <>>;
+ return (
+
+ );
}
diff --git a/src/assets/images/android-icon-foreground-dev.png b/src/assets/images/android-icon-foreground-dev.png
new file mode 100644
index 00000000..19068c89
Binary files /dev/null and b/src/assets/images/android-icon-foreground-dev.png differ
diff --git a/src/assets/images/android-icon-foreground-staging.png b/src/assets/images/android-icon-foreground-staging.png
new file mode 100644
index 00000000..9801f2f2
Binary files /dev/null and b/src/assets/images/android-icon-foreground-staging.png differ
diff --git a/src/assets/images/android-icon-foreground.png b/src/assets/images/android-icon-foreground.png
index 62400f65..6eca30fe 100644
Binary files a/src/assets/images/android-icon-foreground.png and b/src/assets/images/android-icon-foreground.png differ
diff --git a/src/assets/images/android-icon-monochrome-dev.png b/src/assets/images/android-icon-monochrome-dev.png
new file mode 100644
index 00000000..19068c89
Binary files /dev/null and b/src/assets/images/android-icon-monochrome-dev.png differ
diff --git a/src/assets/images/android-icon-monochrome-staging.png b/src/assets/images/android-icon-monochrome-staging.png
new file mode 100644
index 00000000..9801f2f2
Binary files /dev/null and b/src/assets/images/android-icon-monochrome-staging.png differ
diff --git a/src/assets/images/android-icon-monochrome.png b/src/assets/images/android-icon-monochrome.png
index 62400f65..6eca30fe 100644
Binary files a/src/assets/images/android-icon-monochrome.png and b/src/assets/images/android-icon-monochrome.png differ
diff --git a/src/assets/images/icon-dev.png b/src/assets/images/icon-dev.png
new file mode 100644
index 00000000..139bc5f4
Binary files /dev/null and b/src/assets/images/icon-dev.png differ
diff --git a/src/assets/images/icon-staging.png b/src/assets/images/icon-staging.png
new file mode 100644
index 00000000..0dc863e0
Binary files /dev/null and b/src/assets/images/icon-staging.png differ
diff --git a/src/components/form/docs.stories.tsx b/src/components/form/docs.stories.tsx
index 1dd09292..f8f01ac8 100644
--- a/src/components/form/docs.stories.tsx
+++ b/src/components/form/docs.stories.tsx
@@ -1,4 +1,4 @@
-import { ScrollBox, Stack } from 'react-native-ficus-ui';
+import { ScrollView, View } from 'react-native';
import { useAppForm } from '@/lib/tanstack-form/config';
@@ -10,8 +10,8 @@ export const AllFields = () => {
const form = useAppForm({ defaultValues: { text: '', otp: '' } });
return (
-
-
+
+
{(field) => (
@@ -28,8 +28,8 @@ export const AllFields = () => {
)}
-
-
+
+
);
};
diff --git a/src/components/form/field-otp.tsx b/src/components/form/field-otp.tsx
index ef53b15c..91ed7120 100644
--- a/src/components/form/field-otp.tsx
+++ b/src/components/form/field-otp.tsx
@@ -1,27 +1,21 @@
import { useStore } from '@tanstack/react-form';
-import {
- ComponentProps,
- ComponentRef,
- useCallback,
- useEffect,
- useRef,
-} from 'react';
-import { Box, BoxProps, PinInput } from 'react-native-ficus-ui';
+import { View, type ViewProps } from 'react-native';
import { FormFieldError } from '@/lib/tanstack-form/components';
import { FieldContextMeta } from '@/lib/tanstack-form/components/form-field';
import { useFieldContext } from '@/lib/tanstack-form/context';
-export default function FieldOtp(
- props: Omit, 'children'> & {
- autoSubmit?: boolean;
- containerProps?: BoxProps;
- codeLength: number;
- }
-) {
+import { PinInput } from '@/components/ui/pin-input';
+
+type FieldOtpProps = React.ComponentProps & {
+ autoSubmit?: boolean;
+ containerProps?: ViewProps;
+ codeLength: number;
+};
+
+export default function FieldOtp(props: FieldOtpProps) {
const { containerProps, autoSubmit = true, codeLength, ...rest } = props;
- const containerRef = useRef>(null);
const field = useFieldContext();
const meta = useStore(field.store, (state) => {
@@ -34,23 +28,8 @@ export default function FieldOtp(
};
});
- const shouldAutoSubmit =
- autoSubmit && field.state.value?.length === codeLength;
-
- const submitForm = useCallback(() => {
- if (!field.form.state.isSubmitted) {
- field.form.handleSubmit();
- }
- }, [field.form]);
-
- useEffect(() => {
- if (shouldAutoSubmit) {
- submitForm();
- }
- }, [shouldAutoSubmit, submitForm]);
-
return (
-
+
{
- field.handleChange(value);
+ onChangeText={(text) => {
+ field.handleChange(text);
+ if (
+ autoSubmit &&
+ text.length === codeLength &&
+ !field.form.state.isSubmitted
+ ) {
+ field.form.handleSubmit();
+ }
}}
onBlur={(e) => {
field.handleBlur();
@@ -73,6 +59,6 @@ export default function FieldOtp(
}}
/>
-
+
);
}
diff --git a/src/components/form/field-text.tsx b/src/components/form/field-text.tsx
index 6c8e0fc8..81a398e5 100644
--- a/src/components/form/field-text.tsx
+++ b/src/components/form/field-text.tsx
@@ -3,15 +3,19 @@ import {
useBottomSheetInternal,
} from '@gorhom/bottom-sheet';
import { useStore } from '@tanstack/react-form';
-import { Box, BoxProps, Input, InputProps } from 'react-native-ficus-ui';
+import { View, type ViewProps } from 'react-native';
import { FormFieldError } from '@/lib/tanstack-form/components';
import { FieldContextMeta } from '@/lib/tanstack-form/components/form-field';
import { useFieldContext } from '@/lib/tanstack-form/context';
-export default function FieldText(
- props: InputProps & { containerProps?: BoxProps }
-) {
+import { Input } from '@/components/ui/input';
+
+type FieldTextProps = React.ComponentProps & {
+ containerProps?: ViewProps;
+};
+
+export default function FieldText(props: FieldTextProps) {
const field = useFieldContext();
const meta = useStore(field.store, (state) => {
@@ -29,7 +33,7 @@ export default function FieldText(
const isBottomSheet = useBottomSheetInternal(true);
return (
-
+
{
@@ -51,6 +55,6 @@ export default function FieldText(
}}
/>
-
+
);
}
diff --git a/src/components/icons/docs.stories.tsx b/src/components/icons/docs.stories.tsx
index 36ab5938..b22789e7 100644
--- a/src/components/icons/docs.stories.tsx
+++ b/src/components/icons/docs.stories.tsx
@@ -1,5 +1,7 @@
import { ReactElement } from 'react';
-import { Button, ScrollBox, Stack } from 'react-native-ficus-ui';
+import { ScrollView, View } from 'react-native';
+
+import { Button } from '@/components/ui/button';
import * as icons from './generated';
@@ -8,15 +10,15 @@ export default {
};
export const AllIcons = () => (
-
-
+
+
{Object.entries(icons).map(([name, Icon]) => (
))}
-
-
+
+
);
const CustomIcon = ({
@@ -27,7 +29,7 @@ const CustomIcon = ({
name: string;
}) => {
return (
-
+
{children}
{name}
diff --git a/src/components/icons/generated/IconAlertCircle.tsx b/src/components/icons/generated/IconAlertCircle.tsx
index 81b17c72..43d0910b 100644
--- a/src/components/icons/generated/IconAlertCircle.tsx
+++ b/src/components/icons/generated/IconAlertCircle.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconAlertCircle = (props: SvgProps) => (
(
/>
);
-const IconAlertCircle = ficus(_Svg);
export default IconAlertCircle;
diff --git a/src/components/icons/generated/IconAlertTriangle.tsx b/src/components/icons/generated/IconAlertTriangle.tsx
index 52c72c4e..cb6855dc 100644
--- a/src/components/icons/generated/IconAlertTriangle.tsx
+++ b/src/components/icons/generated/IconAlertTriangle.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconAlertTriangle = (props: SvgProps) => (
(
/>
);
-const IconAlertTriangle = ficus(_Svg);
export default IconAlertTriangle;
diff --git a/src/components/icons/generated/IconArrowDown.tsx b/src/components/icons/generated/IconArrowDown.tsx
index dd9fb63e..645d627e 100644
--- a/src/components/icons/generated/IconArrowDown.tsx
+++ b/src/components/icons/generated/IconArrowDown.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconArrowDown = (props: SvgProps) => (
(
/>
);
-const IconArrowDown = ficus(_Svg);
export default IconArrowDown;
diff --git a/src/components/icons/generated/IconArrowLeft.tsx b/src/components/icons/generated/IconArrowLeft.tsx
index 2ed470c1..bbbaaf24 100644
--- a/src/components/icons/generated/IconArrowLeft.tsx
+++ b/src/components/icons/generated/IconArrowLeft.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconArrowLeft = (props: SvgProps) => (
(
/>
);
-const IconArrowLeft = ficus(_Svg);
export default IconArrowLeft;
diff --git a/src/components/icons/generated/IconArrowRight.tsx b/src/components/icons/generated/IconArrowRight.tsx
index fc8a0388..c32cec0d 100644
--- a/src/components/icons/generated/IconArrowRight.tsx
+++ b/src/components/icons/generated/IconArrowRight.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconArrowRight = (props: SvgProps) => (
(
/>
);
-const IconArrowRight = ficus(_Svg);
export default IconArrowRight;
diff --git a/src/components/icons/generated/IconArrowUp.tsx b/src/components/icons/generated/IconArrowUp.tsx
index 0a8394ae..526dac44 100644
--- a/src/components/icons/generated/IconArrowUp.tsx
+++ b/src/components/icons/generated/IconArrowUp.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconArrowUp = (props: SvgProps) => (
(
/>
);
-const IconArrowUp = ficus(_Svg);
export default IconArrowUp;
diff --git a/src/components/icons/generated/IconBookOpen.tsx b/src/components/icons/generated/IconBookOpen.tsx
index 1598f2ef..a4df1ee0 100644
--- a/src/components/icons/generated/IconBookOpen.tsx
+++ b/src/components/icons/generated/IconBookOpen.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconBookOpen = (props: SvgProps) => (
(
/>
);
-const IconBookOpen = ficus(_Svg);
export default IconBookOpen;
diff --git a/src/components/icons/generated/IconBookOpenDuotone.tsx b/src/components/icons/generated/IconBookOpenDuotone.tsx
index e762394a..2d7bea54 100644
--- a/src/components/icons/generated/IconBookOpenDuotone.tsx
+++ b/src/components/icons/generated/IconBookOpenDuotone.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconBookOpenDuotone = (props: SvgProps) => (
(
/>
);
-const IconBookOpenDuotone = ficus(_Svg);
export default IconBookOpenDuotone;
diff --git a/src/components/icons/generated/IconBookOpenFill.tsx b/src/components/icons/generated/IconBookOpenFill.tsx
index 933eeb0d..ad12761b 100644
--- a/src/components/icons/generated/IconBookOpenFill.tsx
+++ b/src/components/icons/generated/IconBookOpenFill.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconBookOpenFill = (props: SvgProps) => (
(
/>
);
-const IconBookOpenFill = ficus(_Svg);
export default IconBookOpenFill;
diff --git a/src/components/icons/generated/IconCalendar.tsx b/src/components/icons/generated/IconCalendar.tsx
index 10e0057f..a9dffa2b 100644
--- a/src/components/icons/generated/IconCalendar.tsx
+++ b/src/components/icons/generated/IconCalendar.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconCalendar = (props: SvgProps) => (
(
/>
);
-const IconCalendar = ficus(_Svg);
export default IconCalendar;
diff --git a/src/components/icons/generated/IconCheck.tsx b/src/components/icons/generated/IconCheck.tsx
index 8e31e264..91da70a4 100644
--- a/src/components/icons/generated/IconCheck.tsx
+++ b/src/components/icons/generated/IconCheck.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconCheck = (props: SvgProps) => (
(
/>
);
-const IconCheck = ficus(_Svg);
export default IconCheck;
diff --git a/src/components/icons/generated/IconCheckCircle.tsx b/src/components/icons/generated/IconCheckCircle.tsx
index 3ee8137e..57cc73ac 100644
--- a/src/components/icons/generated/IconCheckCircle.tsx
+++ b/src/components/icons/generated/IconCheckCircle.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconCheckCircle = (props: SvgProps) => (
(
/>
);
-const IconCheckCircle = ficus(_Svg);
export default IconCheckCircle;
diff --git a/src/components/icons/generated/IconChevronDown.tsx b/src/components/icons/generated/IconChevronDown.tsx
index 7dab9f0a..2707637d 100644
--- a/src/components/icons/generated/IconChevronDown.tsx
+++ b/src/components/icons/generated/IconChevronDown.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconChevronDown = (props: SvgProps) => (
(
/>
);
-const IconChevronDown = ficus(_Svg);
export default IconChevronDown;
diff --git a/src/components/icons/generated/IconChevronLeft.tsx b/src/components/icons/generated/IconChevronLeft.tsx
index 90fadcea..636b0b37 100644
--- a/src/components/icons/generated/IconChevronLeft.tsx
+++ b/src/components/icons/generated/IconChevronLeft.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconChevronLeft = (props: SvgProps) => (
(
/>
);
-const IconChevronLeft = ficus(_Svg);
export default IconChevronLeft;
diff --git a/src/components/icons/generated/IconChevronRight.tsx b/src/components/icons/generated/IconChevronRight.tsx
index bc493244..b767c9f2 100644
--- a/src/components/icons/generated/IconChevronRight.tsx
+++ b/src/components/icons/generated/IconChevronRight.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconChevronRight = (props: SvgProps) => (
(
/>
);
-const IconChevronRight = ficus(_Svg);
export default IconChevronRight;
diff --git a/src/components/icons/generated/IconChevronUp.tsx b/src/components/icons/generated/IconChevronUp.tsx
index 3d665792..6ee64c45 100644
--- a/src/components/icons/generated/IconChevronUp.tsx
+++ b/src/components/icons/generated/IconChevronUp.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconChevronUp = (props: SvgProps) => (
(
/>
);
-const IconChevronUp = ficus(_Svg);
export default IconChevronUp;
diff --git a/src/components/icons/generated/IconChevronsLeft.tsx b/src/components/icons/generated/IconChevronsLeft.tsx
index cc2b6491..536da761 100644
--- a/src/components/icons/generated/IconChevronsLeft.tsx
+++ b/src/components/icons/generated/IconChevronsLeft.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconChevronsLeft = (props: SvgProps) => (
(
/>
);
-const IconChevronsLeft = ficus(_Svg);
export default IconChevronsLeft;
diff --git a/src/components/icons/generated/IconChevronsRight.tsx b/src/components/icons/generated/IconChevronsRight.tsx
index 18913426..6fd4ff21 100644
--- a/src/components/icons/generated/IconChevronsRight.tsx
+++ b/src/components/icons/generated/IconChevronsRight.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconChevronsRight = (props: SvgProps) => (
(
/>
);
-const IconChevronsRight = ficus(_Svg);
export default IconChevronsRight;
diff --git a/src/components/icons/generated/IconChevronsUpDown.tsx b/src/components/icons/generated/IconChevronsUpDown.tsx
index 19f1fd1b..f71146e3 100644
--- a/src/components/icons/generated/IconChevronsUpDown.tsx
+++ b/src/components/icons/generated/IconChevronsUpDown.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconChevronsUpDown = (props: SvgProps) => (
(
/>
);
-const IconChevronsUpDown = ficus(_Svg);
export default IconChevronsUpDown;
diff --git a/src/components/icons/generated/IconCircleUserRound.tsx b/src/components/icons/generated/IconCircleUserRound.tsx
index 9c87015d..31bebcd3 100644
--- a/src/components/icons/generated/IconCircleUserRound.tsx
+++ b/src/components/icons/generated/IconCircleUserRound.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconCircleUserRound = (props: SvgProps) => (
(
/>
);
-const IconCircleUserRound = ficus(_Svg);
export default IconCircleUserRound;
diff --git a/src/components/icons/generated/IconClock.tsx b/src/components/icons/generated/IconClock.tsx
index 96260330..5593bbdf 100644
--- a/src/components/icons/generated/IconClock.tsx
+++ b/src/components/icons/generated/IconClock.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconClock = (props: SvgProps) => (
(
/>
);
-const IconClock = ficus(_Svg);
export default IconClock;
diff --git a/src/components/icons/generated/IconCopy.tsx b/src/components/icons/generated/IconCopy.tsx
index 033e96c7..7c410408 100644
--- a/src/components/icons/generated/IconCopy.tsx
+++ b/src/components/icons/generated/IconCopy.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconCopy = (props: SvgProps) => (
(
/>
);
-const IconCopy = ficus(_Svg);
export default IconCopy;
diff --git a/src/components/icons/generated/IconCreditCard.tsx b/src/components/icons/generated/IconCreditCard.tsx
index 5e9f1511..5083e97a 100644
--- a/src/components/icons/generated/IconCreditCard.tsx
+++ b/src/components/icons/generated/IconCreditCard.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconCreditCard = (props: SvgProps) => (
(
/>
);
-const IconCreditCard = ficus(_Svg);
export default IconCreditCard;
diff --git a/src/components/icons/generated/IconDashboard.tsx b/src/components/icons/generated/IconDashboard.tsx
index 7adfe4d3..b6d0e5c6 100644
--- a/src/components/icons/generated/IconDashboard.tsx
+++ b/src/components/icons/generated/IconDashboard.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconDashboard = (props: SvgProps) => (
(
/>
);
-const IconDashboard = ficus(_Svg);
export default IconDashboard;
diff --git a/src/components/icons/generated/IconDatabase.tsx b/src/components/icons/generated/IconDatabase.tsx
index 296a7a1b..63adbcf3 100644
--- a/src/components/icons/generated/IconDatabase.tsx
+++ b/src/components/icons/generated/IconDatabase.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconDatabase = (props: SvgProps) => (
(
/>
);
-const IconDatabase = ficus(_Svg);
export default IconDatabase;
diff --git a/src/components/icons/generated/IconDevices.tsx b/src/components/icons/generated/IconDevices.tsx
index 9311e1e9..d6a087f5 100644
--- a/src/components/icons/generated/IconDevices.tsx
+++ b/src/components/icons/generated/IconDevices.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconDevices = (props: SvgProps) => (
(
/>
);
-const IconDevices = ficus(_Svg);
export default IconDevices;
diff --git a/src/components/icons/generated/IconDownload.tsx b/src/components/icons/generated/IconDownload.tsx
index bd028a17..75fc5bfd 100644
--- a/src/components/icons/generated/IconDownload.tsx
+++ b/src/components/icons/generated/IconDownload.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconDownload = (props: SvgProps) => (
(
/>
);
-const IconDownload = ficus(_Svg);
export default IconDownload;
diff --git a/src/components/icons/generated/IconEdit3.tsx b/src/components/icons/generated/IconEdit3.tsx
index 1e48f415..3a42151e 100644
--- a/src/components/icons/generated/IconEdit3.tsx
+++ b/src/components/icons/generated/IconEdit3.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconEdit3 = (props: SvgProps) => (
(
/>
);
-const IconEdit3 = ficus(_Svg);
export default IconEdit3;
diff --git a/src/components/icons/generated/IconExternalLink.tsx b/src/components/icons/generated/IconExternalLink.tsx
index 1638f617..34d77295 100644
--- a/src/components/icons/generated/IconExternalLink.tsx
+++ b/src/components/icons/generated/IconExternalLink.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconExternalLink = (props: SvgProps) => (
(
/>
);
-const IconExternalLink = ficus(_Svg);
export default IconExternalLink;
diff --git a/src/components/icons/generated/IconEye.tsx b/src/components/icons/generated/IconEye.tsx
index d61a5c61..7ef7efcf 100644
--- a/src/components/icons/generated/IconEye.tsx
+++ b/src/components/icons/generated/IconEye.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconEye = (props: SvgProps) => (
(
/>
);
-const IconEye = ficus(_Svg);
export default IconEye;
diff --git a/src/components/icons/generated/IconEyeClosed.tsx b/src/components/icons/generated/IconEyeClosed.tsx
index 2565e339..858ca284 100644
--- a/src/components/icons/generated/IconEyeClosed.tsx
+++ b/src/components/icons/generated/IconEyeClosed.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconEyeClosed = (props: SvgProps) => (
(
/>
);
-const IconEyeClosed = ficus(_Svg);
export default IconEyeClosed;
diff --git a/src/components/icons/generated/IconFile.tsx b/src/components/icons/generated/IconFile.tsx
index 1e292297..8c2b70af 100644
--- a/src/components/icons/generated/IconFile.tsx
+++ b/src/components/icons/generated/IconFile.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconFile = (props: SvgProps) => (
(
/>
);
-const IconFile = ficus(_Svg);
export default IconFile;
diff --git a/src/components/icons/generated/IconFolder.tsx b/src/components/icons/generated/IconFolder.tsx
index eaa4c827..12cc9c71 100644
--- a/src/components/icons/generated/IconFolder.tsx
+++ b/src/components/icons/generated/IconFolder.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconFolder = (props: SvgProps) => (
(
/>
);
-const IconFolder = ficus(_Svg);
export default IconFolder;
diff --git a/src/components/icons/generated/IconFolderGit2.tsx b/src/components/icons/generated/IconFolderGit2.tsx
index 5809cf87..447e543e 100644
--- a/src/components/icons/generated/IconFolderGit2.tsx
+++ b/src/components/icons/generated/IconFolderGit2.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconFolderGit2 = (props: SvgProps) => (
(
/>
);
-const IconFolderGit2 = ficus(_Svg);
export default IconFolderGit2;
diff --git a/src/components/icons/generated/IconGitBranch.tsx b/src/components/icons/generated/IconGitBranch.tsx
index ce31d124..8235e84e 100644
--- a/src/components/icons/generated/IconGitBranch.tsx
+++ b/src/components/icons/generated/IconGitBranch.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconGitBranch = (props: SvgProps) => (
(
/>
);
-const IconGitBranch = ficus(_Svg);
export default IconGitBranch;
diff --git a/src/components/icons/generated/IconGitBranchDuotone.tsx b/src/components/icons/generated/IconGitBranchDuotone.tsx
index 739ca558..cd73758f 100644
--- a/src/components/icons/generated/IconGitBranchDuotone.tsx
+++ b/src/components/icons/generated/IconGitBranchDuotone.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconGitBranchDuotone = (props: SvgProps) => (
(
/>
);
-const IconGitBranchDuotone = ficus(_Svg);
export default IconGitBranchDuotone;
diff --git a/src/components/icons/generated/IconGitBranchFill.tsx b/src/components/icons/generated/IconGitBranchFill.tsx
index d1730250..af76257a 100644
--- a/src/components/icons/generated/IconGitBranchFill.tsx
+++ b/src/components/icons/generated/IconGitBranchFill.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconGitBranchFill = (props: SvgProps) => (
(
/>
);
-const IconGitBranchFill = ficus(_Svg);
export default IconGitBranchFill;
diff --git a/src/components/icons/generated/IconGithub.tsx b/src/components/icons/generated/IconGithub.tsx
index 6e18ea44..d9ace045 100644
--- a/src/components/icons/generated/IconGithub.tsx
+++ b/src/components/icons/generated/IconGithub.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconGithub = (props: SvgProps) => (
(
/>
);
-const IconGithub = ficus(_Svg);
export default IconGithub;
diff --git a/src/components/icons/generated/IconHash.tsx b/src/components/icons/generated/IconHash.tsx
index 04b2fec7..5d1c3a71 100644
--- a/src/components/icons/generated/IconHash.tsx
+++ b/src/components/icons/generated/IconHash.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconHash = (props: SvgProps) => (
(
/>
);
-const IconHash = ficus(_Svg);
export default IconHash;
diff --git a/src/components/icons/generated/IconHome.tsx b/src/components/icons/generated/IconHome.tsx
index 508c1b43..6986767d 100644
--- a/src/components/icons/generated/IconHome.tsx
+++ b/src/components/icons/generated/IconHome.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconHome = (props: SvgProps) => (
(
/>
);
-const IconHome = ficus(_Svg);
export default IconHome;
diff --git a/src/components/icons/generated/IconHouse.tsx b/src/components/icons/generated/IconHouse.tsx
index d53d33c9..cf464520 100644
--- a/src/components/icons/generated/IconHouse.tsx
+++ b/src/components/icons/generated/IconHouse.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconHouse = (props: SvgProps) => (
(
/>
);
-const IconHouse = ficus(_Svg);
export default IconHouse;
diff --git a/src/components/icons/generated/IconHouseDuotone.tsx b/src/components/icons/generated/IconHouseDuotone.tsx
index a4c25609..9172f649 100644
--- a/src/components/icons/generated/IconHouseDuotone.tsx
+++ b/src/components/icons/generated/IconHouseDuotone.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconHouseDuotone = (props: SvgProps) => (
(
/>
);
-const IconHouseDuotone = ficus(_Svg);
export default IconHouseDuotone;
diff --git a/src/components/icons/generated/IconHouseFill.tsx b/src/components/icons/generated/IconHouseFill.tsx
index d5fc3bcb..71823ef4 100644
--- a/src/components/icons/generated/IconHouseFill.tsx
+++ b/src/components/icons/generated/IconHouseFill.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconHouseFill = (props: SvgProps) => (
(
/>
);
-const IconHouseFill = ficus(_Svg);
export default IconHouseFill;
diff --git a/src/components/icons/generated/IconKey.tsx b/src/components/icons/generated/IconKey.tsx
index 6a4a0fc8..a683c939 100644
--- a/src/components/icons/generated/IconKey.tsx
+++ b/src/components/icons/generated/IconKey.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconKey = (props: SvgProps) => (
(
/>
);
-const IconKey = ficus(_Svg);
export default IconKey;
diff --git a/src/components/icons/generated/IconLanguages.tsx b/src/components/icons/generated/IconLanguages.tsx
index a746466c..923f0f17 100644
--- a/src/components/icons/generated/IconLanguages.tsx
+++ b/src/components/icons/generated/IconLanguages.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconLanguages = (props: SvgProps) => (
(
/>
);
-const IconLanguages = ficus(_Svg);
export default IconLanguages;
diff --git a/src/components/icons/generated/IconLink.tsx b/src/components/icons/generated/IconLink.tsx
index beab9d44..f6bf2686 100644
--- a/src/components/icons/generated/IconLink.tsx
+++ b/src/components/icons/generated/IconLink.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconLink = (props: SvgProps) => (
(
/>
);
-const IconLink = ficus(_Svg);
export default IconLink;
diff --git a/src/components/icons/generated/IconLock.tsx b/src/components/icons/generated/IconLock.tsx
index 84ed9b4f..ec33a93a 100644
--- a/src/components/icons/generated/IconLock.tsx
+++ b/src/components/icons/generated/IconLock.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconLock = (props: SvgProps) => (
(
/>
);
-const IconLock = ficus(_Svg);
export default IconLock;
diff --git a/src/components/icons/generated/IconLogIn.tsx b/src/components/icons/generated/IconLogIn.tsx
index ad500658..52b886ed 100644
--- a/src/components/icons/generated/IconLogIn.tsx
+++ b/src/components/icons/generated/IconLogIn.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconLogIn = (props: SvgProps) => (
(
/>
);
-const IconLogIn = ficus(_Svg);
export default IconLogIn;
diff --git a/src/components/icons/generated/IconLogOut.tsx b/src/components/icons/generated/IconLogOut.tsx
index c9474589..2ca28011 100644
--- a/src/components/icons/generated/IconLogOut.tsx
+++ b/src/components/icons/generated/IconLogOut.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconLogOut = (props: SvgProps) => (
(
/>
);
-const IconLogOut = ficus(_Svg);
export default IconLogOut;
diff --git a/src/components/icons/generated/IconMail.tsx b/src/components/icons/generated/IconMail.tsx
index e2f27219..ed9e6976 100644
--- a/src/components/icons/generated/IconMail.tsx
+++ b/src/components/icons/generated/IconMail.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconMail = (props: SvgProps) => (
(
/>
);
-const IconMail = ficus(_Svg);
export default IconMail;
diff --git a/src/components/icons/generated/IconMoon.tsx b/src/components/icons/generated/IconMoon.tsx
index 63ede1cc..17170848 100644
--- a/src/components/icons/generated/IconMoon.tsx
+++ b/src/components/icons/generated/IconMoon.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconMoon = (props: SvgProps) => (
(
/>
);
-const IconMoon = ficus(_Svg);
export default IconMoon;
diff --git a/src/components/icons/generated/IconMoreVertical.tsx b/src/components/icons/generated/IconMoreVertical.tsx
index 14f5ef78..19bf9d06 100644
--- a/src/components/icons/generated/IconMoreVertical.tsx
+++ b/src/components/icons/generated/IconMoreVertical.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconMoreVertical = (props: SvgProps) => (
(
/>
);
-const IconMoreVertical = ficus(_Svg);
export default IconMoreVertical;
diff --git a/src/components/icons/generated/IconPanel.tsx b/src/components/icons/generated/IconPanel.tsx
index ac19ec40..35521b65 100644
--- a/src/components/icons/generated/IconPanel.tsx
+++ b/src/components/icons/generated/IconPanel.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconPanel = (props: SvgProps) => (
(
/>
);
-const IconPanel = ficus(_Svg);
export default IconPanel;
diff --git a/src/components/icons/generated/IconPlay.tsx b/src/components/icons/generated/IconPlay.tsx
index 75ab3a29..a2c6dd5e 100644
--- a/src/components/icons/generated/IconPlay.tsx
+++ b/src/components/icons/generated/IconPlay.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconPlay = (props: SvgProps) => (
(
/>
);
-const IconPlay = ficus(_Svg);
export default IconPlay;
diff --git a/src/components/icons/generated/IconPlus.tsx b/src/components/icons/generated/IconPlus.tsx
index 563f8636..8f38811f 100644
--- a/src/components/icons/generated/IconPlus.tsx
+++ b/src/components/icons/generated/IconPlus.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconPlus = (props: SvgProps) => (
(
/>
);
-const IconPlus = ficus(_Svg);
export default IconPlus;
diff --git a/src/components/icons/generated/IconPower.tsx b/src/components/icons/generated/IconPower.tsx
index a185c105..65180c36 100644
--- a/src/components/icons/generated/IconPower.tsx
+++ b/src/components/icons/generated/IconPower.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconPower = (props: SvgProps) => (
(
/>
);
-const IconPower = ficus(_Svg);
export default IconPower;
diff --git a/src/components/icons/generated/IconRefreshCw.tsx b/src/components/icons/generated/IconRefreshCw.tsx
index 0f75e1c9..096ea33e 100644
--- a/src/components/icons/generated/IconRefreshCw.tsx
+++ b/src/components/icons/generated/IconRefreshCw.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { ClipPath, Defs, G, Path, Rect } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconRefreshCw = (props: SvgProps) => (
(
);
-const IconRefreshCw = ficus(_Svg);
export default IconRefreshCw;
diff --git a/src/components/icons/generated/IconRepositories.tsx b/src/components/icons/generated/IconRepositories.tsx
index 5b4a736f..e5739416 100644
--- a/src/components/icons/generated/IconRepositories.tsx
+++ b/src/components/icons/generated/IconRepositories.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconRepositories = (props: SvgProps) => (
(
/>
);
-const IconRepositories = ficus(_Svg);
export default IconRepositories;
diff --git a/src/components/icons/generated/IconRepository.tsx b/src/components/icons/generated/IconRepository.tsx
index 970d3009..a5c4a139 100644
--- a/src/components/icons/generated/IconRepository.tsx
+++ b/src/components/icons/generated/IconRepository.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconRepository = (props: SvgProps) => (
(
/>
);
-const IconRepository = ficus(_Svg);
export default IconRepository;
diff --git a/src/components/icons/generated/IconSearch.tsx b/src/components/icons/generated/IconSearch.tsx
index 03a66214..779dabe3 100644
--- a/src/components/icons/generated/IconSearch.tsx
+++ b/src/components/icons/generated/IconSearch.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconSearch = (props: SvgProps) => (
(
/>
);
-const IconSearch = ficus(_Svg);
export default IconSearch;
diff --git a/src/components/icons/generated/IconShare.tsx b/src/components/icons/generated/IconShare.tsx
index 16c3620c..f62d4911 100644
--- a/src/components/icons/generated/IconShare.tsx
+++ b/src/components/icons/generated/IconShare.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconShare = (props: SvgProps) => (
(
/>
);
-const IconShare = ficus(_Svg);
export default IconShare;
diff --git a/src/components/icons/generated/IconShare2.tsx b/src/components/icons/generated/IconShare2.tsx
index cab741e1..15ac4812 100644
--- a/src/components/icons/generated/IconShare2.tsx
+++ b/src/components/icons/generated/IconShare2.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconShare2 = (props: SvgProps) => (
(
/>
);
-const IconShare2 = ficus(_Svg);
export default IconShare2;
diff --git a/src/components/icons/generated/IconShoppingCart.tsx b/src/components/icons/generated/IconShoppingCart.tsx
index eece7f7b..76f0c7e7 100644
--- a/src/components/icons/generated/IconShoppingCart.tsx
+++ b/src/components/icons/generated/IconShoppingCart.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { ClipPath, Defs, G, Path, Rect } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconShoppingCart = (props: SvgProps) => (
(
);
-const IconShoppingCart = ficus(_Svg);
export default IconShoppingCart;
diff --git a/src/components/icons/generated/IconSliders.tsx b/src/components/icons/generated/IconSliders.tsx
index f426debb..7e8a7f6b 100644
--- a/src/components/icons/generated/IconSliders.tsx
+++ b/src/components/icons/generated/IconSliders.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconSliders = (props: SvgProps) => (
(
/>
);
-const IconSliders = ficus(_Svg);
export default IconSliders;
diff --git a/src/components/icons/generated/IconSun.tsx b/src/components/icons/generated/IconSun.tsx
index c887e1ba..96fa8a93 100644
--- a/src/components/icons/generated/IconSun.tsx
+++ b/src/components/icons/generated/IconSun.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconSun = (props: SvgProps) => (
(
/>
);
-const IconSun = ficus(_Svg);
export default IconSun;
diff --git a/src/components/icons/generated/IconTag.tsx b/src/components/icons/generated/IconTag.tsx
index aca95330..35e6b69e 100644
--- a/src/components/icons/generated/IconTag.tsx
+++ b/src/components/icons/generated/IconTag.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconTag = (props: SvgProps) => (
(
/>
);
-const IconTag = ficus(_Svg);
export default IconTag;
diff --git a/src/components/icons/generated/IconTrash2.tsx b/src/components/icons/generated/IconTrash2.tsx
index 5f64b456..e16964d7 100644
--- a/src/components/icons/generated/IconTrash2.tsx
+++ b/src/components/icons/generated/IconTrash2.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconTrash2 = (props: SvgProps) => (
(
/>
);
-const IconTrash2 = ficus(_Svg);
export default IconTrash2;
diff --git a/src/components/icons/generated/IconUnlock.tsx b/src/components/icons/generated/IconUnlock.tsx
index 322ee9f7..b8e476f0 100644
--- a/src/components/icons/generated/IconUnlock.tsx
+++ b/src/components/icons/generated/IconUnlock.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconUnlock = (props: SvgProps) => (
(
/>
);
-const IconUnlock = ficus(_Svg);
export default IconUnlock;
diff --git a/src/components/icons/generated/IconUpload.tsx b/src/components/icons/generated/IconUpload.tsx
index 233a0331..78822fb0 100644
--- a/src/components/icons/generated/IconUpload.tsx
+++ b/src/components/icons/generated/IconUpload.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconUpload = (props: SvgProps) => (
(
/>
);
-const IconUpload = ficus(_Svg);
export default IconUpload;
diff --git a/src/components/icons/generated/IconUser.tsx b/src/components/icons/generated/IconUser.tsx
index 3c93dec6..14e4872b 100644
--- a/src/components/icons/generated/IconUser.tsx
+++ b/src/components/icons/generated/IconUser.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconUser = (props: SvgProps) => (
(
/>
);
-const IconUser = ficus(_Svg);
export default IconUser;
diff --git a/src/components/icons/generated/IconUserCircle.tsx b/src/components/icons/generated/IconUserCircle.tsx
index 7bce3ba5..aceb46c7 100644
--- a/src/components/icons/generated/IconUserCircle.tsx
+++ b/src/components/icons/generated/IconUserCircle.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconUserCircle = (props: SvgProps) => (
(
/>
);
-const IconUserCircle = ficus(_Svg);
export default IconUserCircle;
diff --git a/src/components/icons/generated/IconUserCircleDuotone.tsx b/src/components/icons/generated/IconUserCircleDuotone.tsx
index baafdf2c..d6aba117 100644
--- a/src/components/icons/generated/IconUserCircleDuotone.tsx
+++ b/src/components/icons/generated/IconUserCircleDuotone.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconUserCircleDuotone = (props: SvgProps) => (
(
/>
);
-const IconUserCircleDuotone = ficus(_Svg);
export default IconUserCircleDuotone;
diff --git a/src/components/icons/generated/IconUserCircleFill.tsx b/src/components/icons/generated/IconUserCircleFill.tsx
index ded7c94d..866a9e11 100644
--- a/src/components/icons/generated/IconUserCircleFill.tsx
+++ b/src/components/icons/generated/IconUserCircleFill.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconUserCircleFill = (props: SvgProps) => (
(
/>
);
-const IconUserCircleFill = ficus(_Svg);
export default IconUserCircleFill;
diff --git a/src/components/icons/generated/IconUsers.tsx b/src/components/icons/generated/IconUsers.tsx
index 773f3c7c..f9f9fbbb 100644
--- a/src/components/icons/generated/IconUsers.tsx
+++ b/src/components/icons/generated/IconUsers.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconUsers = (props: SvgProps) => (
(
/>
);
-const IconUsers = ficus(_Svg);
export default IconUsers;
diff --git a/src/components/icons/generated/IconX.tsx b/src/components/icons/generated/IconX.tsx
index c4ad5503..b685e894 100644
--- a/src/components/icons/generated/IconX.tsx
+++ b/src/components/icons/generated/IconX.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconX = (props: SvgProps) => (
(
/>
);
-const IconX = ficus(_Svg);
export default IconX;
diff --git a/src/components/icons/generated/IconXCircle.tsx b/src/components/icons/generated/IconXCircle.tsx
index 9fe06f41..c5845a7d 100644
--- a/src/components/icons/generated/IconXCircle.tsx
+++ b/src/components/icons/generated/IconXCircle.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const IconXCircle = (props: SvgProps) => (
(
/>
);
-const IconXCircle = ficus(_Svg);
export default IconXCircle;
diff --git a/src/components/icons/generated/Logo.tsx b/src/components/icons/generated/Logo.tsx
index 37b16760..a33b2104 100644
--- a/src/components/icons/generated/Logo.tsx
+++ b/src/components/icons/generated/Logo.tsx
@@ -1,9 +1,8 @@
// Autogenerated file, DO NOT MODIFY or it will be overwritten;
import * as React from 'react';
-import { ficus } from 'react-native-ficus-ui';
import type { SvgProps } from 'react-native-svg';
import Svg, { Path } from 'react-native-svg';
-const _Svg = (props: SvgProps) => (
+const Logo = (props: SvgProps) => (
(
/>
);
-const Logo = ficus(_Svg);
export default Logo;
diff --git a/src/components/icons/icon.tsx b/src/components/icons/icon.tsx
index 682b1d34..69136fc5 100644
--- a/src/components/icons/icon.tsx
+++ b/src/components/icons/icon.tsx
@@ -1,20 +1,31 @@
-import { LucideIcon } from 'lucide-react-native';
-import { ficus, StyleProps } from 'react-native-ficus-ui';
+import type { StyleProp, ViewStyle } from 'react-native';
+import { useResolveClassNames } from 'uniwind';
+
+import { cn } from '@/lib/tailwind/utils';
+
+type IconProps = {
+ icon: React.ComponentType<
+ {
+ style?: StyleProp;
+ width?: number;
+ height?: number;
+ } & Record
+ >;
+ className?: string;
+};
+
+export const Icon = ({ icon: IconComponent, className }: IconProps) => {
+ const resolved = useResolveClassNames(
+ cn('size-4 text-foreground', className)
+ ) as ViewStyle;
+
+ const { width, height, ...style } = resolved;
-export const Icon = ({
- icon,
- size,
- ...props
-}: StyleProps & {
- icon: LucideIcon | ReturnType;
- color?: string;
- size?: number;
-}) => {
- const FicusLucideIcon = ficus(icon);
return (
-
);
};
diff --git a/src/components/icons/svgr.config.cjs b/src/components/icons/svgr.config.cjs
index 2893ff08..138c6c2c 100644
--- a/src/components/icons/svgr.config.cjs
+++ b/src/components/icons/svgr.config.cjs
@@ -8,14 +8,11 @@ ${comment}
${variables.imports};
${variables.interfaces};
-import { ficus } from 'react-native-ficus-ui';
-const _Svg = (${variables.props}) => (
+const ${componentName} = (${variables.props}) => (
${variables.jsx}
);
-const ${componentName} = ficus(_Svg)
-
export default ${componentName};
`;
};
diff --git a/src/components/theme-manager.tsx b/src/components/theme-manager.tsx
deleted file mode 100644
index 463c1f19..00000000
--- a/src/components/theme-manager.tsx
+++ /dev/null
@@ -1,26 +0,0 @@
-import { StatusBar } from 'expo-status-bar';
-import { useEffect } from 'react';
-import { useColorScheme } from 'react-native';
-import { useColorMode } from 'react-native-ficus-ui';
-
-import { useThemeMode } from '@/hooks/use-theme-mode';
-
-export const ThemeManager = () => {
- const colorScheme = useColorScheme();
- const ficusColorMode = useColorMode();
-
- const setFicusColorMode = ficusColorMode.setColorMode;
-
- const themeQuery = useThemeMode();
- const currentTheme = themeQuery.data ?? 'system';
-
- useEffect(() => {
- if (colorScheme) {
- setFicusColorMode(currentTheme === 'system' ? colorScheme : currentTheme);
- }
- }, [currentTheme, colorScheme, setFicusColorMode]);
-
- return (
-
- );
-};
diff --git a/src/components/themed-status-bar.tsx b/src/components/themed-status-bar.tsx
new file mode 100644
index 00000000..d06fb304
--- /dev/null
+++ b/src/components/themed-status-bar.tsx
@@ -0,0 +1,7 @@
+import { StatusBar } from 'expo-status-bar';
+import { useUniwind } from 'uniwind';
+
+export const ThemedStatusBar = () => {
+ const { theme } = useUniwind();
+ return ;
+};
diff --git a/src/components/ui/avatar.tsx b/src/components/ui/avatar.tsx
new file mode 100644
index 00000000..37a4e208
--- /dev/null
+++ b/src/components/ui/avatar.tsx
@@ -0,0 +1,91 @@
+import * as AvatarPrimitive from '@rn-primitives/avatar';
+import { Text } from 'react-native';
+
+import { cn } from '@/lib/tailwind/utils';
+
+function getInitials(name: string): string {
+ return name
+ .split(/\s+/)
+ .map((part) => part[0])
+ .join('')
+ .toUpperCase()
+ .slice(0, 2);
+}
+
+const sizeClasses = {
+ xs: 'size-6',
+ sm: 'size-8',
+ md: 'size-10',
+ lg: 'size-12',
+} as const;
+
+type AvatarRootProps = AvatarPrimitive.RootProps &
+ React.RefAttributes;
+
+function Avatar({ className, ...props }: AvatarRootProps) {
+ return (
+
+ );
+}
+
+function AvatarImage({
+ className,
+ ...props
+}: AvatarPrimitive.ImageProps & React.RefAttributes) {
+ return (
+
+ );
+}
+
+function AvatarFallback({
+ className,
+ ...props
+}: AvatarPrimitive.FallbackProps &
+ React.RefAttributes) {
+ return (
+
+ );
+}
+
+type AvatarWithFallbackProps = Omit & {
+ name: string;
+ size?: keyof typeof sizeClasses;
+ image?: string | null;
+};
+
+function AvatarWithFallback({
+ name,
+ size = 'sm',
+ image,
+ className,
+ ...props
+}: AvatarWithFallbackProps) {
+ const sizeClass = sizeClasses[size];
+ return (
+
+ {image ? : null}
+
+
+ {getInitials(name)}
+
+
+
+ );
+}
+
+export { Avatar, AvatarFallback, AvatarImage, AvatarWithFallback };
diff --git a/src/components/ui/badge.tsx b/src/components/ui/badge.tsx
new file mode 100644
index 00000000..86e6231c
--- /dev/null
+++ b/src/components/ui/badge.tsx
@@ -0,0 +1,74 @@
+import * as Slot from '@rn-primitives/slot';
+import { cva, type VariantProps } from 'class-variance-authority';
+import { Platform, View, ViewProps } from 'react-native';
+
+import { cn } from '@/lib/tailwind/utils';
+
+import { TextClassContext } from '@/components/ui/text';
+
+const badgeVariants = cva(
+ cn(
+ 'group shrink-0 flex-row items-center justify-center gap-1 overflow-hidden rounded-full border border-border px-2 py-0.5',
+ Platform.select({
+ web: 'w-fit whitespace-nowrap transition-colors transition-shadow focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 aria-invalid:border-destructive aria-invalid:ring-destructive/30 [&>svg]:pointer-events-none [&>svg]:size-3',
+ })
+ ),
+ {
+ variants: {
+ variant: {
+ default: cn(
+ 'border-transparent bg-primary',
+ Platform.select({ web: '[a&]:hover:bg-primary/90' })
+ ),
+ secondary: cn(
+ 'border-transparent bg-secondary',
+ Platform.select({ web: '[a&]:hover:bg-secondary/90' })
+ ),
+ destructive: cn(
+ 'border-transparent bg-destructive',
+ Platform.select({ web: '[a&]:hover:bg-destructive/90' })
+ ),
+ outline: Platform.select({
+ web: '[a&]:hover:bg-accent [a&]:hover:text-accent-foreground',
+ }),
+ },
+ },
+ defaultVariants: {
+ variant: 'default',
+ },
+ }
+);
+
+const badgeTextVariants = cva('text-xs font-medium', {
+ variants: {
+ variant: {
+ default: 'text-primary-foreground',
+ secondary: 'text-secondary-foreground',
+ destructive: 'text-white',
+ outline: 'text-foreground',
+ },
+ },
+ defaultVariants: {
+ variant: 'default',
+ },
+});
+
+type BadgeProps = ViewProps &
+ React.RefAttributes & {
+ asChild?: boolean;
+ } & VariantProps;
+
+function Badge({ className, variant, asChild, ...props }: BadgeProps) {
+ const Component = asChild ? Slot.View : View;
+ return (
+
+
+
+ );
+}
+
+export { Badge, badgeTextVariants, badgeVariants };
+export type { BadgeProps };
diff --git a/src/components/ui/bottom-sheet.tsx b/src/components/ui/bottom-sheet.tsx
index e5b8e052..7e678ccc 100644
--- a/src/components/ui/bottom-sheet.tsx
+++ b/src/components/ui/bottom-sheet.tsx
@@ -1,25 +1,26 @@
import {
BottomSheetBackdrop,
BottomSheetBackdropProps,
+ BottomSheetHandle,
BottomSheetModal,
BottomSheetModalProps,
BottomSheetView,
} from '@gorhom/bottom-sheet';
import { useEffect, useMemo, useRef } from 'react';
-import { ficus, useColorModeValue, useDisclosure } from 'react-native-ficus-ui';
+import { withUniwind } from 'uniwind';
-import theme from '@/lib/ficus-ui/theme';
+import { cn } from '@/lib/tailwind/utils';
-const FicusBottomSheet = ficus(BottomSheetModal, {
- baseStyle: { flex: 1, borderRadius: 'md' },
-});
+const SheetBackdrop = withUniwind(BottomSheetBackdrop);
+const SheetModal = withUniwind(BottomSheetModal);
+const SheetView = withUniwind(BottomSheetView);
+const SheetHandle = withUniwind(BottomSheetHandle);
export const BottomSheet = ({
isOpen,
onClose,
...props
-}: BottomSheetModalProps &
- Pick, 'isOpen' | 'onClose'>) => {
+}: BottomSheetModalProps & { isOpen?: boolean; onClose?: () => void }) => {
const ref = useRef(null);
useEffect(() => {
@@ -40,15 +41,9 @@ export const BottomSheet = ({
}
};
- const backgroundColor = useColorModeValue('white', theme.colors.neutral[900]);
- const handleColor = useColorModeValue(
- theme.colors.neutral[200],
- theme.colors.neutral[500]
- );
-
const renderBackdrop = useMemo(
() => (backdropProps: BottomSheetBackdropProps) => (
-
);
};
-export const BottomSheetBox = ficus(BottomSheetView, {
- baseStyle: { flex: 1, px: 24, pt: 12, pb: 64, minH: 260 },
-});
+type BottomSheetContentProps = React.ComponentProps & {
+ className?: string;
+};
+
+export const BottomSheetContent = ({
+ className,
+ style,
+ ...props
+}: BottomSheetContentProps) => (
+
+);
diff --git a/src/components/ui/button.tsx b/src/components/ui/button.tsx
new file mode 100644
index 00000000..d3450519
--- /dev/null
+++ b/src/components/ui/button.tsx
@@ -0,0 +1,182 @@
+import { getUiState } from '@bearstudio/ui-state';
+import { cva, type VariantProps } from 'class-variance-authority';
+import * as React from 'react';
+import { Platform, Pressable } from 'react-native';
+
+import { cn } from '@/lib/tailwind/utils';
+
+import { Text, TextClassContext } from '@/components/ui/text';
+
+const buttonVariants = cva(
+ cn(
+ 'group shrink-0 flex-row items-center justify-center gap-2 rounded-md shadow-none',
+ Platform.select({
+ web: "whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none aria-invalid:border-destructive aria-invalid:ring-destructive/30 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
+ })
+ ),
+ {
+ variants: {
+ variant: {
+ default: cn(
+ 'bg-primary shadow-sm shadow-black/5 active:bg-primary/90',
+ Platform.select({ web: 'hover:bg-primary/90' })
+ ),
+ destructive: cn(
+ 'bg-destructive shadow-sm shadow-black/5 active:bg-destructive/90',
+ Platform.select({
+ web: 'hover:bg-destructive/90 focus-visible:ring-destructive/30',
+ })
+ ),
+ outline: cn(
+ 'border border-border bg-background shadow-sm shadow-black/5 active:bg-accent',
+ Platform.select({
+ web: 'hover:bg-accent',
+ })
+ ),
+ secondary: cn(
+ 'border border-border bg-background shadow-xs',
+ Platform.select({ web: 'hover:bg-accent' })
+ ),
+ ghost: cn(
+ 'active:bg-accent',
+ Platform.select({ web: 'hover:bg-accent' })
+ ),
+ link: '',
+ },
+ size: {
+ default: cn(
+ 'h-10 px-4 py-2 sm:h-9',
+ Platform.select({ web: 'has-[>svg]:px-3' })
+ ),
+ sm: cn(
+ 'h-9 gap-1.5 rounded-md px-3 sm:h-8',
+ Platform.select({ web: 'has-[>svg]:px-2.5' })
+ ),
+ lg: cn(
+ 'h-11 rounded-md px-6 sm:h-10',
+ Platform.select({ web: 'has-[>svg]:px-4' })
+ ),
+ icon: 'h-10 w-10 sm:h-9 sm:w-9',
+ },
+ },
+ defaultVariants: {
+ variant: 'default',
+ size: 'default',
+ },
+ }
+);
+
+const buttonTextVariants = cva(
+ cn(
+ 'text-sm font-medium text-foreground',
+ Platform.select({ web: 'pointer-events-none transition-colors' })
+ ),
+ {
+ variants: {
+ variant: {
+ default: 'text-primary-foreground',
+ destructive: 'text-white',
+ outline: cn(
+ 'group-active:text-accent-foreground',
+ Platform.select({ web: 'group-hover:text-accent-foreground' })
+ ),
+ secondary: cn(
+ 'text-secondary-foreground',
+ Platform.select({ web: 'hover:text-accent-foreground' })
+ ),
+ ghost: 'group-active:text-accent-foreground',
+ link: cn(
+ 'text-primary group-active:underline',
+ Platform.select({
+ web: 'underline-offset-4 group-hover:underline hover:underline',
+ })
+ ),
+ },
+ size: {
+ default: 'text-sm',
+ xs: 'text-xs',
+ sm: 'text-sm',
+ lg: 'text-sm',
+ icon: 'text-sm',
+ },
+ },
+ defaultVariants: {
+ variant: 'default',
+ size: 'default',
+ },
+ }
+);
+
+type ButtonProps = React.ComponentProps &
+ React.RefAttributes &
+ VariantProps;
+
+function Button({
+ className,
+ variant,
+ size,
+ children,
+ style,
+ ...props
+}: ButtonProps) {
+ const content = getUiState((set) => {
+ if (typeof children === 'function') return set('function', { children });
+ if (!children) return set('empty');
+ if (Array.isArray(children))
+ return set('array', {
+ children: children.map((child) =>
+ typeof child === 'string' || typeof child === 'number' ? (
+ {child}
+ ) : (
+ child
+ )
+ ),
+ });
+ if (typeof children === 'string' || typeof children === 'number')
+ return set('text', { children });
+
+ return set('default', { children });
+ });
+ return (
+
+ [
+ pressed && { opacity: 0.7 },
+ typeof style === 'function'
+ ? style({
+ pressed,
+ hovered: false,
+ })
+ : style,
+ ]}
+ role="button"
+ {...props}
+ >
+ {content
+ .match('function', ({ children }) => children)
+ .match('text', ({ children }) => {children} )
+ .match('array', ({ children }) =>
+ children.map((child, index) =>
+ typeof child === 'string' || typeof child === 'number' ? (
+ // eslint-disable-next-line @eslint-react/no-array-index-key
+ {child}
+ ) : (
+ child
+ )
+ )
+ )
+ .match('empty', () => null)
+ .match('default', ({ children }) => children)
+ .exhaustive()}
+
+
+ );
+}
+
+export { Button, buttonTextVariants, buttonVariants };
+export type { ButtonProps };
diff --git a/src/components/ui/card.stories.tsx b/src/components/ui/card.stories.tsx
index 3375905a..4300b023 100644
--- a/src/components/ui/card.stories.tsx
+++ b/src/components/ui/card.stories.tsx
@@ -1,35 +1,23 @@
import type { Meta, StoryObj } from '@storybook/react-native';
-import { Box, Button, HStack, Text, VStack } from 'react-native-ficus-ui';
+import { View } from 'react-native';
+
+import { Button } from '@/components/ui/button';
+import { Text } from '@/components/ui/text';
import { Card, CardBody, CardHeader, CardTitle } from './card';
const meta: Meta = {
title: 'UI/Card',
component: Card,
- argTypes: {
- borderRadius: {
- control: 'select',
- options: ['xs', 'sm', 'md', 'lg', 'xl', '2xl', 'full'],
- },
- borderWidth: { control: 'number' },
- borderColor: { control: 'text' },
- bg: { control: 'text' },
- },
- args: {
- borderRadius: 'md',
- borderWidth: 1,
- borderColor: 'pink.200',
- bg: 'white',
- },
parameters: {
notes:
- 'Card basique basé sur react-native-ficus-ui. Utilise `_dark` pour le thème sombre.',
+ 'Card component using View and Text. Supports dark mode via Tailwind.',
},
decorators: [
(Story) => (
-
+
-
+
),
],
};
@@ -56,28 +44,28 @@ export const WithHeaderAndBody: Story = {
Payment method
-
+
Edit
-
+
-
-
- Card holder
- Aziz Ouertani
-
-
- Number
- **** **** **** 4242
-
-
- Expires
- 12/27
-
-
+
+
+ Card holder
+ Aziz Ouertani
+
+
+ Number
+ **** **** **** 4242
+
+
+ Expires
+ 12/27
+
+
),
@@ -89,39 +77,39 @@ export const PressableHeaderActions: Story = {
Team
-
+
Invite
New
-
+
-
+
- Hugo Pérard
- Nicolas Troion
- Aziz Ouertani
- Omar Borji
-
+
),
};
export const DarkModeHint: Story = {
- name: 'Dark mode (via `_dark`)',
+ name: 'Dark mode',
render: (args) => (
-
-
+
+
- Dark mode preview
+ Dark mode preview
-
- Surround with a dark container to preview the `_dark` styles.
+
+ Surround with a dark container to preview dark styles.
-
+
),
};
diff --git a/src/components/ui/card.tsx b/src/components/ui/card.tsx
index 58718030..6f6a3ea0 100644
--- a/src/components/ui/card.tsx
+++ b/src/components/ui/card.tsx
@@ -1,33 +1,24 @@
-import {
- Box,
- BoxProps,
- HStack,
- StackProps,
- Text,
- TextProps,
-} from 'react-native-ficus-ui';
+import { View, type ViewProps } from 'react-native';
-export const Card = (props: BoxProps) => {
+import { Text } from '@/components/ui/text';
+
+export const Card = (props: ViewProps) => {
return (
-
);
};
-export const CardHeader = (props: StackProps) => {
- return ;
+export const CardHeader = (props: ViewProps) => {
+ return ;
};
-export const CardTitle = (props: TextProps) => {
- return ;
+export const CardTitle = (props: React.ComponentProps) => {
+ return ;
};
-export const CardBody = (props: BoxProps) => {
- return ;
+export const CardBody = (props: ViewProps) => {
+ return ;
};
diff --git a/src/components/ui/divider.tsx b/src/components/ui/divider.tsx
new file mode 100644
index 00000000..1a66885d
--- /dev/null
+++ b/src/components/ui/divider.tsx
@@ -0,0 +1,28 @@
+import * as React from 'react';
+import { View, type ViewProps } from 'react-native';
+
+import { cn } from '@/lib/tailwind/utils';
+
+export type DividerProps = ViewProps & {
+ className?: string;
+ orientation?: 'horizontal' | 'vertical';
+};
+
+export const Divider = ({
+ ref,
+ className,
+ orientation = 'horizontal',
+ ...props
+}: DividerProps & { ref?: React.RefObject }) => (
+
+);
+
+Divider.displayName = 'Divider';
diff --git a/src/components/ui/full-loader.tsx b/src/components/ui/full-loader.tsx
index 5ba8b934..2784d6de 100644
--- a/src/components/ui/full-loader.tsx
+++ b/src/components/ui/full-loader.tsx
@@ -1,10 +1,10 @@
import { ActivityIndicator } from 'react-native';
-import { Center } from 'react-native-ficus-ui';
+import { View } from 'react-native';
export const FullLoader = () => {
return (
-
+
-
+
);
};
diff --git a/src/components/ui/image.tsx b/src/components/ui/image.tsx
index 779231fa..4e170681 100644
--- a/src/components/ui/image.tsx
+++ b/src/components/ui/image.tsx
@@ -1,5 +1,10 @@
import { Image as ExpoImage, ImageProps } from 'expo-image';
+import { StyleSheet } from 'react-native';
+
+const imageStyles = StyleSheet.create({
+ flex: { flex: 1 },
+});
export const Image = (props: ImageProps) => {
- return ;
+ return ;
};
diff --git a/src/components/ui/input.tsx b/src/components/ui/input.tsx
new file mode 100644
index 00000000..0525d64f
--- /dev/null
+++ b/src/components/ui/input.tsx
@@ -0,0 +1,85 @@
+import * as React from 'react';
+import { Platform, TextInput, type TextInputProps } from 'react-native';
+import { useResolveClassNames } from 'uniwind';
+
+import { cn } from '@/lib/tailwind/utils';
+
+type InputProps = TextInputProps & {
+ /** Use BottomSheetTextInput when inside a bottom sheet for proper keyboard handling */
+ as?: React.ComponentType;
+ className?: string;
+ 'aria-invalid'?: boolean;
+};
+
+const Input = ({
+ ref,
+ className,
+ as: Component = TextInput,
+ 'aria-invalid': ariaInvalid,
+ onFocus,
+ onBlur,
+ ...props
+}: InputProps & { ref?: React.RefObject }) => {
+ const hasError = ariaInvalid === true;
+ const [isFocused, setIsFocused] = React.useState(false);
+ const resolvedForeground = useResolveClassNames('text-foreground') as {
+ color?: string;
+ };
+ const resolvedDestructive = useResolveClassNames('text-destructive') as {
+ color?: string;
+ };
+ const Comp = Component as React.ComponentType<
+ TextInputProps & React.RefAttributes
+ >;
+
+ const getFocusBorderColor = () => {
+ if (hasError) return resolvedDestructive.color;
+ return resolvedForeground.color;
+ };
+
+ const focusStyle =
+ Platform.OS !== 'web' && isFocused
+ ? { borderColor: getFocusBorderColor() }
+ : undefined;
+
+ return (
+ {
+ setIsFocused(true);
+ onFocus?.(e);
+ }}
+ onBlur={(e) => {
+ setIsFocused(false);
+ onBlur?.(e);
+ }}
+ className={cn(
+ 'flex h-10 w-full min-w-0 flex-row items-center rounded-md border border-input bg-background px-3 py-1 text-base leading-5 text-foreground shadow-sm shadow-black/5 sm:h-9',
+ props.editable === false &&
+ cn(
+ 'opacity-50',
+ Platform.select({
+ web: 'disabled:pointer-events-none disabled:cursor-not-allowed',
+ })
+ ),
+ hasError && 'border-destructive',
+ Platform.select({
+ web: cn(
+ 'transition-[color,box-shadow] outline-none selection:bg-primary selection:text-primary-foreground placeholder:text-muted-foreground md:text-sm',
+ 'focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50',
+ 'aria-invalid:ring-destructive/30'
+ ),
+ native: 'placeholder:text-muted-foreground/50',
+ }),
+ className
+ )}
+ style={focusStyle}
+ {...props}
+ />
+ );
+};
+
+Input.displayName = 'Input';
+
+export { Input };
diff --git a/src/components/ui/locale-switcher.tsx b/src/components/ui/locale-switcher.tsx
index 1650c440..e5398164 100644
--- a/src/components/ui/locale-switcher.tsx
+++ b/src/components/ui/locale-switcher.tsx
@@ -1,21 +1,18 @@
import { useTranslation } from 'react-i18next';
-import {
- Box,
- Button,
- HStack,
- Pressable,
- Text,
- useDisclosure,
-} from 'react-native-ficus-ui';
+import { Pressable, View } from 'react-native';
import { AVAILABLE_LANGUAGES } from '@/lib/i18n/constants';
+import { useDisclosure } from '@/hooks/use-disclosure';
import {
IconCheck,
IconChevronsUpDown,
IconLanguages,
} from '@/components/icons/generated';
-import { BottomSheet, BottomSheetBox } from '@/components/ui/bottom-sheet';
+import { Icon } from '@/components/icons/icon';
+import { BottomSheet, BottomSheetContent } from '@/components/ui/bottom-sheet';
+import { Button } from '@/components/ui/button';
+import { Text } from '@/components/ui/text';
export const LocaleSwitcher = () => {
const { t, i18n } = useTranslation(['common']);
@@ -23,43 +20,46 @@ export const LocaleSwitcher = () => {
return (
<>
-
-
+
+
{t(`common:languages.values.${i18n.language}`)}
-
+
-
-
+
+
{AVAILABLE_LANGUAGES.map((language) => (
- {
i18n.changeLanguage(language.key);
sheet.onClose();
}}
- py={4}
+ className="flex flex-row items-center py-1"
>
-
+
{language.key === i18n.language && (
-
+
)}
-
-
-
+
+
+
{t(`common:languages.values.${language.key}`)}
{language.key !== i18n.language && (
-
+
{t(`common:languages.values.${language.key}`, {
lng: language.key,
})}
)}
-
-
+
+
))}
-
+
>
);
diff --git a/src/components/ui/pin-input.tsx b/src/components/ui/pin-input.tsx
new file mode 100644
index 00000000..3d301326
--- /dev/null
+++ b/src/components/ui/pin-input.tsx
@@ -0,0 +1,112 @@
+import * as React from 'react';
+import { Platform, Pressable, TextInput, View } from 'react-native';
+import { useResolveClassNames } from 'uniwind';
+
+import { cn } from '@/lib/tailwind/utils';
+
+import { Input } from '@/components/ui/input';
+import { Text } from '@/components/ui/text';
+
+type PinInputProps = React.ComponentProps & {
+ /** Number of pin cells */
+ cellCount?: number;
+};
+
+const PinInput = ({
+ cellCount = 6,
+ className,
+ value = '',
+ onChangeText,
+ keyboardType = 'number-pad',
+ textContentType = 'oneTimeCode',
+ editable = true,
+ autoFocus,
+ ref,
+ ...props
+}: PinInputProps) => {
+ const innerRef = React.useRef(null);
+ const [isFocused, setIsFocused] = React.useState(false);
+ const resolvedForeground = useResolveClassNames('text-foreground') as {
+ color?: string;
+ };
+ const resolvedDestructive = useResolveClassNames('text-destructive') as {
+ color?: string;
+ };
+ const hasError = props['aria-invalid'] === true;
+
+ React.useImperativeHandle(ref, () => innerRef.current as TextInput, []);
+
+ const cells = React.useMemo(() => {
+ const digits = value.padEnd(cellCount, ' ').split('').slice(0, cellCount);
+ return digits.map((digit, i) => ({
+ id: `pin-cell-${i}` as const,
+ digit,
+ }));
+ }, [value, cellCount]);
+
+ const activeIndex = Math.min(value.length, cellCount - 1);
+
+ const getFocusBorderColor = () => {
+ if (hasError) return resolvedDestructive.color;
+ return resolvedForeground.color;
+ };
+
+ return (
+ {
+ innerRef.current?.blur();
+ setTimeout(() => innerRef.current?.focus(), 0);
+ }}
+ >
+ {cells.map(({ id, digit }, index) => (
+
+
+ {digit === ' ' ? '\u200B' : digit}
+
+
+ ))}
+ setIsFocused(true)}
+ onBlur={() => setIsFocused(false)}
+ onChangeText={(text) => {
+ const filtered = text.replace(/\D/g, '').slice(0, cellCount);
+ onChangeText?.(filtered);
+ }}
+ keyboardType={keyboardType}
+ textContentType={textContentType}
+ maxLength={cellCount}
+ editable={editable}
+ caretHidden
+ style={{
+ position: 'absolute',
+ opacity: 0,
+ width: 1,
+ height: 1,
+ }}
+ />
+
+ );
+};
+
+PinInput.displayName = 'PinInput';
+
+export { PinInput };
+export type { PinInputProps };
diff --git a/src/components/ui/skeleton.tsx b/src/components/ui/skeleton.tsx
new file mode 100644
index 00000000..b8b50b4b
--- /dev/null
+++ b/src/components/ui/skeleton.tsx
@@ -0,0 +1,42 @@
+'use no memo';
+
+import * as React from 'react';
+import { View } from 'react-native';
+import Animated, {
+ useAnimatedStyle,
+ useSharedValue,
+ withRepeat,
+ withTiming,
+} from 'react-native-reanimated';
+
+import { cn } from '@/lib/tailwind/utils';
+
+const duration = 1000;
+
+function useSkeletonPulse() {
+ const sv = useSharedValue(1);
+
+ React.useEffect(() => {
+ sv.value = withRepeat(withTiming(0.5, { duration }), -1, true);
+ // eslint-disable-next-line react-hooks/exhaustive-deps
+ }, []);
+ return useAnimatedStyle(() => ({ opacity: sv.value }), [sv]);
+}
+
+function Skeleton({
+ className,
+ style,
+ ...props
+}: React.ComponentProps & React.RefAttributes) {
+ const animatedStyle = useSkeletonPulse();
+
+ return (
+
+ );
+}
+
+export { Skeleton };
diff --git a/src/components/ui/sonner.tsx b/src/components/ui/sonner.tsx
index 2d04a181..f0a7e134 100644
--- a/src/components/ui/sonner.tsx
+++ b/src/components/ui/sonner.tsx
@@ -1,12 +1,14 @@
import { ComponentProps } from 'react';
-import { useColorScheme } from 'react-native';
import { Toaster } from 'sonner-native';
+import { useUniwind } from 'uniwind';
export const Sonner = ({ ...props }: ComponentProps) => {
- const scheme = useColorScheme();
+ const { theme, hasAdaptiveThemes } = useUniwind();
+ const toastTheme = hasAdaptiveThemes ? 'system' : (theme as 'light' | 'dark');
+
return (
;
+
+type TextVariant = NonNullable;
+
+const ROLE: Partial> = {
+ h1: 'heading',
+ h2: 'heading',
+ h3: 'heading',
+ h4: 'heading',
+ blockquote: Platform.select({ web: 'blockquote' as Role }),
+ code: Platform.select({ web: 'code' as Role }),
+};
+
+const ARIA_LEVEL: Partial> = {
+ h1: '1',
+ h2: '2',
+ h3: '3',
+ h4: '4',
+};
+
+const TextClassContext = React.createContext(undefined);
+
+function Text({
+ className,
+ asChild = false,
+ variant = 'default',
+ ...props
+}: React.ComponentProps &
+ TextVariantProps &
+ React.RefAttributes & {
+ asChild?: boolean;
+ }) {
+ const textClass = React.use(TextClassContext);
+ const Component = asChild ? Slot.Text : RNText;
+
+ return (
+
+ );
+}
+
+export { Text, TextClassContext };
diff --git a/src/components/ui/theme-switcher.tsx b/src/components/ui/theme-switcher.tsx
index 4ccf4e2b..867502b1 100644
--- a/src/components/ui/theme-switcher.tsx
+++ b/src/components/ui/theme-switcher.tsx
@@ -1,20 +1,10 @@
import AsyncStorage from '@react-native-async-storage/async-storage';
-import { useQueryClient } from '@tanstack/react-query';
import { LucideSunMoon } from 'lucide-react-native';
import { useTranslation } from 'react-i18next';
-import { Appearance } from 'react-native';
-import {
- Box,
- Button,
- HStack,
- IconButton,
- Pressable,
- Text,
- useDisclosure,
-} from 'react-native-ficus-ui';
+import { Pressable, View } from 'react-native';
+import { Uniwind, useResolveClassNames, useUniwind } from 'uniwind';
-import { STORAGE_KEY_THEME } from '@/lib/ficus-ui/theme';
-import { themeQueryKey, useThemeMode } from '@/hooks/use-theme-mode';
+import { useDisclosure } from '@/hooks/use-disclosure';
import {
IconCheck,
@@ -23,70 +13,87 @@ import {
IconSun,
} from '@/components/icons/generated';
import { Icon } from '@/components/icons/icon';
-import { BottomSheet, BottomSheetBox } from '@/components/ui/bottom-sheet';
+import { BottomSheet, BottomSheetContent } from '@/components/ui/bottom-sheet';
+import { Button } from '@/components/ui/button';
+import { Text } from '@/components/ui/text';
+
+import { STORAGE_KEY_THEME } from '@/features/theme/constants';
export const ThemeSwitcher = (props: { minimize?: boolean }) => {
const { t } = useTranslation(['common']);
- const queryClient = useQueryClient();
- const themeQuery = useThemeMode();
- const currentTheme = themeQuery.data ?? 'system';
+ const { theme, hasAdaptiveThemes } = useUniwind();
+ const mutedStyle = useResolveClassNames('text-muted-foreground');
+ const iconColor = mutedStyle.color;
const sheet = useDisclosure();
- const ColorModeIcon = currentTheme === 'light' ? IconSun : IconMoon;
- const DisplayIcon = currentTheme === 'system' ? LucideSunMoon : ColorModeIcon;
+ const ColorModeIcon = theme === 'light' ? IconSun : IconMoon;
+ const DisplayIcon = hasAdaptiveThemes ? LucideSunMoon : ColorModeIcon;
const updateColorMode = (value: 'light' | 'dark' | 'system') => {
AsyncStorage.setItem(STORAGE_KEY_THEME, value);
- queryClient.setQueryData(themeQueryKey, value);
- Appearance.setColorScheme(value === 'system' ? null : value);
+
+ Uniwind.setTheme(value);
};
return (
<>
{props.minimize ? (
- }
- variant="@ghost"
- color="neutral.500"
- onPress={sheet.onOpen}
- size="lg"
- />
+
+ {hasAdaptiveThemes ? (
+
+ ) : (
+
+ )}
+
) : (
-
-
- {t(`common:themes.values.${currentTheme}`)}
- {!!currentTheme && (
-
+
+ {hasAdaptiveThemes ? (
+
+ ) : (
+
+ )}
+
+ {t(`common:themes.values.${hasAdaptiveThemes ? 'system' : theme}`)}
+
+ {!!theme && (
+
)}
)}
-
-
+
+
{(['system', 'light', 'dark'] as const).map((mode) => (
- {
updateColorMode(mode);
sheet.onClose();
}}
- py={4}
+ className="flex flex-row items-center py-1"
>
-
- {mode === currentTheme && (
-
+
+ {((hasAdaptiveThemes && mode === 'system') ||
+ (!hasAdaptiveThemes && mode === theme)) && (
+
)}
-
-
-
+
+
+
{t(`common:themes.values.${mode}`)}
-
-
+
+
))}
-
+
>
);
diff --git a/src/components/version.tsx b/src/components/version.tsx
index c2178546..d7370fd6 100644
--- a/src/components/version.tsx
+++ b/src/components/version.tsx
@@ -1,9 +1,10 @@
import { nativeApplicationVersion, nativeBuildVersion } from 'expo-application';
-import { Text, TextProps } from 'react-native-ficus-ui';
-export const Version = (props: TextProps) => {
+import { Text } from '@/components/ui/text';
+
+export const Version = (props: React.ComponentProps) => {
return (
-
+
Version {nativeApplicationVersion} • {nativeBuildVersion}
);
diff --git a/src/constants/device.ts b/src/constants/device.ts
index dc5a9f5e..19e36d87 100644
--- a/src/constants/device.ts
+++ b/src/constants/device.ts
@@ -1,4 +1,10 @@
import * as Device from 'expo-device';
+import { Dimensions } from 'react-native';
+
+export const deviceScreen =
+ Device.deviceType === Device.DeviceType['DESKTOP']
+ ? Dimensions.get('window')
+ : Dimensions.get('screen');
export const isApple = Device.brand === 'Apple';
diff --git a/src/features/account/view-account.tsx b/src/features/account/view-account.tsx
index 3caa3c30..dcbf9a02 100644
--- a/src/features/account/view-account.tsx
+++ b/src/features/account/view-account.tsx
@@ -1,25 +1,23 @@
import { getUiState } from '@bearstudio/ui-state';
import { useQueryClient } from '@tanstack/react-query';
import { useTranslation } from 'react-i18next';
-import {
- Avatar,
- Button,
- Divider,
- HStack,
- Stack,
- Text,
- useDisclosure,
-} from 'react-native-ficus-ui';
+import { View } from 'react-native';
import { toast } from 'sonner-native';
import z from 'zod';
import { useAppForm } from '@/lib/tanstack-form/config';
+import { useDisclosure } from '@/hooks/use-disclosure';
import { IconEdit3, IconLogOut } from '@/components/icons/generated';
-import { BottomSheet, BottomSheetBox } from '@/components/ui/bottom-sheet';
+import { Icon } from '@/components/icons/icon';
+import { AvatarWithFallback } from '@/components/ui/avatar';
+import { BottomSheet, BottomSheetContent } from '@/components/ui/bottom-sheet';
+import { Button } from '@/components/ui/button';
import { Card, CardBody, CardHeader, CardTitle } from '@/components/ui/card';
+import { Divider } from '@/components/ui/divider';
import { FullLoader } from '@/components/ui/full-loader';
import { LocaleSwitcher } from '@/components/ui/locale-switcher';
+import { Text } from '@/components/ui/text';
import { ThemeSwitcher } from '@/components/ui/theme-switcher';
import { Version } from '@/components/version';
@@ -50,10 +48,15 @@ export const ViewAccount = () => {
},
}
);
- updateNameSheet.onClose();
+ handleCloseNameSheet();
},
});
+ const handleCloseNameSheet = () => {
+ updateNameForm.reset();
+ updateNameSheet.onClose();
+ };
+
const ui = getUiState((set) => {
if (session.isPending) return set('pending');
if (session.error) return set('error', { error: session.error });
@@ -67,7 +70,7 @@ export const ViewAccount = () => {
return (
-
+
{ui
.match('pending', () => )
.match('error', () => <>>)
@@ -75,34 +78,32 @@ export const ViewAccount = () => {
.match('default', ({ data }) => (
-
-
+
{data.user.name}
-
- signoutSheet.onOpen()}>
-
+
+ signoutSheet.onOpen()}>
+
{t('account:user.signOut')}
-
-
-
+
+
+
{t('auth:signOut.confirm.title')}
-
+
{t('auth:signOut.confirm.description')}
-
+
signoutSheet.onClose()}
>
{t('auth:signOut.confirm.cancel')}
@@ -112,37 +113,37 @@ export const ViewAccount = () => {
queryClient.clear();
authClient.signOut();
}}
- full
- gap={8}
>
-
+
{t('auth:signOut.confirm.signOut')}
-
+
-
-
+
+
{t('account:user.name')}
updateNameSheet.onOpen()}
+ className="-mx-3 self-start"
>
- {data.user.name}{' '}
-
+ {data.user.name}
+
-
-
+
+
{t('account:user.updateName.title')}
@@ -159,9 +160,9 @@ export const ViewAccount = () => {
updateNameSheet.onClose()}
+ variant="secondary"
+ className="w-full"
+ onPress={() => handleCloseNameSheet()}
>
{t('account:user.updateName.cancel')}
@@ -169,20 +170,18 @@ export const ViewAccount = () => {
{t('account:user.updateName.save')}
-
+
-
+
-
-
+
+
{t('account:user.email')}
-
- {data.user.email}
-
-
+ {data.user.email}
+
))
@@ -192,26 +191,26 @@ export const ViewAccount = () => {
{t('account:displayPreferences.title')}
-
-
-
+
+
+
{t('account:displayPreferences.theme')}
-
+
-
-
-
+
+
+
{t('account:displayPreferences.language')}
-
+
-
-
+
+
);
};
diff --git a/src/features/app-onboarding/app-onboarding-screens.tsx b/src/features/app-onboarding/app-onboarding-screens.tsx
index f7497f67..8b6caef5 100644
--- a/src/features/app-onboarding/app-onboarding-screens.tsx
+++ b/src/features/app-onboarding/app-onboarding-screens.tsx
@@ -1,25 +1,26 @@
import { PropsWithChildren } from 'react';
import { useTranslation } from 'react-i18next';
-import {
- Badge,
- Box,
- Center,
- HStack,
- Stack,
- Text,
- WINDOW_HEIGHT,
- WINDOW_WIDTH,
-} from 'react-native-ficus-ui';
+import { View } from 'react-native';
import { IconCheck } from '@/components/icons/generated';
import { Icon } from '@/components/icons/icon';
+import { Badge } from '@/components/ui/badge';
+import { Text } from '@/components/ui/text';
+
+import { deviceScreen } from '@/constants/device';
const OnboardingScreenContainer = (props: PropsWithChildren) => (
-
-
+
+
{props.children}
-
-
+
+
);
export const AppOnboardingScreenWelcome = () => {
@@ -27,15 +28,11 @@ export const AppOnboardingScreenWelcome = () => {
return (
-
+
{t('appOnboarding:welcome.title')}
-
- Start UI
-
-
- Native
-
+ Start UI
+ Native
);
};
@@ -53,32 +50,34 @@ export const AppOnboardingScreenFeatures = () => {
];
return (
-
-
-
+
+
+
{t('appOnboarding:features.titleOne')}
-
+
{t('appOnboarding:features.titleTwo')}
-
-
-
+
+
+
{features.map((feature) => (
-
-
-
-
-
- {t(`appOnboarding:features.${feature}`)}
+
+
+
+ {t(`appOnboarding:features.${feature}`)}
+
))}
-
-
+
+
{t('appOnboarding:features.more')}
-
-
+
+
);
};
diff --git a/src/features/app-onboarding/index.ts b/src/features/app-onboarding/index.ts
new file mode 100644
index 00000000..5e23affe
--- /dev/null
+++ b/src/features/app-onboarding/index.ts
@@ -0,0 +1,9 @@
+import {
+ AppOnboardingScreenFeatures,
+ AppOnboardingScreenWelcome,
+} from '@/features/app-onboarding/app-onboarding-screens';
+
+export const appOnboardingScreens = [
+ { name: 'welcome', Component: AppOnboardingScreenWelcome },
+ { name: 'features', Component: AppOnboardingScreenFeatures },
+];
diff --git a/src/features/app-onboarding/use-background-animated-style.tsx b/src/features/app-onboarding/use-background-animated-style.tsx
index 823aef08..683a6436 100644
--- a/src/features/app-onboarding/use-background-animated-style.tsx
+++ b/src/features/app-onboarding/use-background-animated-style.tsx
@@ -1,22 +1,22 @@
-import { WINDOW_WIDTH } from '@gorhom/bottom-sheet';
import {
interpolate,
SharedValue,
useAnimatedStyle,
} from 'react-native-reanimated';
-import { appOnboardingScreens } from '@/features/app-onboarding/view-app-onboarding';
+import { deviceScreen } from '@/constants/device';
+import { appOnboardingScreens } from '@/features/app-onboarding';
const backgroundImageSize = { width: 1536, height: 1024 };
export const useBackgroundAnimatedStyle = (scrollX: SharedValue) => {
return useAnimatedStyle(() => {
- const maxScrollX = WINDOW_WIDTH * (appOnboardingScreens.length - 1);
+ const maxScrollX = deviceScreen.width * (appOnboardingScreens.length - 1);
const right = interpolate(
scrollX.value,
[0, maxScrollX],
- [650, Math.min(750, backgroundImageSize.width - WINDOW_WIDTH)]
+ [650, Math.min(750, backgroundImageSize.width - deviceScreen.width)]
);
return { right };
diff --git a/src/features/app-onboarding/use-mascot-animated-style.tsx b/src/features/app-onboarding/use-mascot-animated-style.tsx
index 4b778247..99377c1d 100644
--- a/src/features/app-onboarding/use-mascot-animated-style.tsx
+++ b/src/features/app-onboarding/use-mascot-animated-style.tsx
@@ -1,18 +1,18 @@
-import { WINDOW_HEIGHT, WINDOW_WIDTH } from '@gorhom/bottom-sheet';
import {
interpolate,
SharedValue,
useAnimatedStyle,
} from 'react-native-reanimated';
-import { appOnboardingScreens } from '@/features/app-onboarding/view-app-onboarding';
+import { deviceScreen } from '@/constants/device';
+import { appOnboardingScreens } from '@/features/app-onboarding';
export const useMascotAnimatedStyle = (scrollX: SharedValue) => {
return useAnimatedStyle(() => {
- const maxScrollX = WINDOW_WIDTH * (appOnboardingScreens.length - 1);
+ const maxScrollX = deviceScreen.width * (appOnboardingScreens.length - 1);
- const leftStart = WINDOW_WIDTH / 3.5;
- const topStart = WINDOW_HEIGHT / 2.5;
+ const leftStart = deviceScreen.width / 3.5;
+ const topStart = deviceScreen.height / 2.5;
const left = interpolate(
scrollX.value,
diff --git a/src/features/app-onboarding/view-app-onboarding.tsx b/src/features/app-onboarding/view-app-onboarding.tsx
index 8ca23b46..d7607a96 100644
--- a/src/features/app-onboarding/view-app-onboarding.tsx
+++ b/src/features/app-onboarding/view-app-onboarding.tsx
@@ -1,26 +1,26 @@
+'use no memo';
+
import { StatusBar } from 'expo-status-bar';
-import { useRef, useState } from 'react';
+import { useCallback, useRef, useState } from 'react';
import { useTranslation } from 'react-i18next';
import { FlatList } from 'react-native';
-import {
- Box,
- Button,
- HStack,
- WINDOW_HEIGHT,
- WINDOW_WIDTH,
-} from 'react-native-ficus-ui';
+import { View } from 'react-native';
import Animated, {
+ interpolate,
useAnimatedScrollHandler,
+ useAnimatedStyle,
useSharedValue,
+ withTiming,
} from 'react-native-reanimated';
import { useSafeAreaInsets } from 'react-native-safe-area-context';
+import { scheduleOnRN } from 'react-native-worklets';
+import { ScopedTheme } from 'uniwind';
import { AnimatedStepIndicator } from '@/components/ui/animated-step-indicator';
+import { Button } from '@/components/ui/button';
-import {
- AppOnboardingScreenFeatures,
- AppOnboardingScreenWelcome,
-} from '@/features/app-onboarding/app-onboarding-screens';
+import { deviceScreen } from '@/constants/device';
+import { appOnboardingScreens } from '@/features/app-onboarding';
// @ts-expect-error fix image import
import backgroundImage from '@/features/app-onboarding/layout-login-image.jpg';
// @ts-expect-error fix image import
@@ -30,10 +30,32 @@ import { useBackgroundAnimatedStyle } from '@/features/app-onboarding/use-backgr
import { useMascotAnimatedStyle } from '@/features/app-onboarding/use-mascot-animated-style';
import { ViewSafeContent } from '@/layout/view-safe-content';
-export const appOnboardingScreens = [
- { name: 'welcome', Component: AppOnboardingScreenWelcome },
- { name: 'features', Component: AppOnboardingScreenFeatures },
-];
+function useScrollHandler() {
+ const scrollX = useSharedValue(0);
+
+ const scrollHandler = useAnimatedScrollHandler({
+ onScroll: (event) => {
+ scrollX.value = event.contentOffset.x;
+ },
+ });
+
+ return { scrollX, scrollHandler };
+}
+
+function useExitAnimation(doneOnboarding: () => void) {
+ const exitProgress = useSharedValue(0);
+ const exitAnimatedStyle = useAnimatedStyle(() => ({
+ opacity: interpolate(exitProgress.value, [0, 1], [1, 0]),
+ }));
+ const handleDone = useCallback(() => {
+ exitProgress.value = withTiming(1, { duration: 400 }, (finished) => {
+ if (finished) {
+ scheduleOnRN(doneOnboarding);
+ }
+ });
+ }, [doneOnboarding, exitProgress]);
+ return { exitAnimatedStyle, handleDone };
+}
export const ViewOnboarding = () => {
const { t } = useTranslation(['appOnboarding']);
@@ -43,111 +65,118 @@ export const ViewOnboarding = () => {
const listRef = useRef(null);
- const scrollX = useSharedValue(0);
- const scrollHandler = useAnimatedScrollHandler({
- onScroll: (event) => {
- scrollX.value = event.contentOffset.x;
- },
- });
-
+ const { scrollX, scrollHandler } = useScrollHandler();
const backgroundAnimatedStyle = useBackgroundAnimatedStyle(scrollX);
const mascotAnimatedStyle = useMascotAnimatedStyle(scrollX);
const doneOnboarding = useOnboardingStore((state) => state.setDone);
+ const { exitAnimatedStyle, handleDone } = useExitAnimation(doneOnboarding);
+
+ const onViewableItemsChanged = useCallback(
+ ({ viewableItems }: { viewableItems: { index: number | null }[] }) => {
+ const lastViewableIndex = viewableItems.at(-1)?.index;
+ if (lastViewableIndex !== undefined && lastViewableIndex !== null) {
+ setCurrentScreenIndex(lastViewableIndex);
+ }
+ },
+ []
+ );
+
+ const [viewabilityConfig] = useState({
+ viewAreaCoveragePercentThreshold: 30,
+ });
+
+ const renderItem = useCallback(
+ ({ item }: { item: (typeof appOnboardingScreens)[number] }) => (
+
+ ),
+ []
+ );
return (
- <>
-
-
-
-
-
-
- }
- showsHorizontalScrollIndicator={false}
- decelerationRate="fast"
- bounces={false}
- snapToAlignment="center"
- snapToOffsets={appOnboardingScreens.map(
- (_, index) => index * WINDOW_WIDTH
- )}
- viewabilityConfig={{
- viewAreaCoveragePercentThreshold: 30,
- }}
- onViewableItemsChanged={({ viewableItems }) => {
- const lastViewableIndex = viewableItems.at(-1)?.index;
- if (lastViewableIndex || lastViewableIndex === 0) {
- setCurrentScreenIndex(lastViewableIndex);
- }
- }}
- onScroll={scrollHandler}
- />
-
+
+
+
-
- {appOnboardingScreens.map((screen, index) => (
-
- ))}
-
- {
- if (currentScreenIndex === appOnboardingScreens.length - 1) {
- doneOnboarding();
- } else {
- listRef.current?.scrollToIndex({
- index: currentScreenIndex + 1,
- });
- }
+
- {t(
- `appOnboarding:${currentScreenIndex === appOnboardingScreens.length - 1 ? 'end' : 'continue'}`
+ />
+
+
+
+ index * deviceScreen.width
)}
-
-
-
- >
+ viewabilityConfig={viewabilityConfig}
+ onViewableItemsChanged={onViewableItemsChanged}
+ onScroll={scrollHandler}
+ />
+
+
+ {appOnboardingScreens.map((screen, index) => (
+
+ ))}
+
+ {
+ if (currentScreenIndex === appOnboardingScreens.length - 1) {
+ handleDone();
+ } else {
+ listRef.current?.scrollToIndex({
+ index: currentScreenIndex + 1,
+ });
+ }
+ }}
+ >
+ {t(
+ `appOnboarding:${currentScreenIndex === appOnboardingScreens.length - 1 ? 'end' : 'continue'}`
+ )}
+
+
+
+
+
);
};
diff --git a/src/features/auth/auth-header.tsx b/src/features/auth/auth-header.tsx
index ae5216c2..d442aa47 100644
--- a/src/features/auth/auth-header.tsx
+++ b/src/features/auth/auth-header.tsx
@@ -1,5 +1,6 @@
-import { HStack } from 'react-native-ficus-ui';
+import { View } from 'react-native';
import { useSafeAreaInsets } from 'react-native-safe-area-context';
+import { useResolveClassNames } from 'uniwind';
import { Logo } from '@/components/icons/generated';
import { LocaleSwitcher } from '@/components/ui/locale-switcher';
@@ -8,21 +9,19 @@ import { ThemeSwitcher } from '@/components/ui/theme-switcher';
export const AuthHeader = () => {
const insets = useSafeAreaInsets();
+ const mutedStyle = useResolveClassNames('text-primary');
+ const logoColor = mutedStyle.color;
+
return (
-
-
-
+
+
-
-
+
+
);
};
diff --git a/src/features/auth/view-auth-onboarding.tsx b/src/features/auth/view-auth-onboarding.tsx
index b039fbbc..4ef3b6cc 100644
--- a/src/features/auth/view-auth-onboarding.tsx
+++ b/src/features/auth/view-auth-onboarding.tsx
@@ -1,9 +1,11 @@
import { useTranslation } from 'react-i18next';
-import { Center, Stack, Text } from 'react-native-ficus-ui';
+import { View } from 'react-native';
import z from 'zod';
import { useAppForm } from '@/lib/tanstack-form/config';
+import { Text } from '@/components/ui/text';
+
import { AuthHeader } from '@/features/auth/auth-header';
import { authClient } from '@/features/auth/client';
import { ViewSafeContent } from '@/layout/view-safe-content';
@@ -26,19 +28,19 @@ export const ViewAuthOnboarding = () => {
return (
-
-
-
-
+
+
+
+
{t('auth:onboarding.title')}
-
+
{t('auth:onboarding.subtitle')}
-
+
-
-
+
+
{(field) => (
@@ -53,12 +55,12 @@ export const ViewAuthOnboarding = () => {
)}
-
+
{t('auth:onboarding.continue')}
-
+
-
-
+
+
);
};
diff --git a/src/features/auth/view-otp-verification.tsx b/src/features/auth/view-otp-verification.tsx
index 58decc70..0878d4b6 100644
--- a/src/features/auth/view-otp-verification.tsx
+++ b/src/features/auth/view-otp-verification.tsx
@@ -1,12 +1,15 @@
import { useLocalSearchParams, useRouter } from 'expo-router';
import { useTranslation } from 'react-i18next';
-import { Button, Center, Stack, Text } from 'react-native-ficus-ui';
+import { View } from 'react-native';
import { toast } from 'sonner-native';
import { z } from 'zod';
import { useAppForm } from '@/lib/tanstack-form/config';
import { IconArrowLeft } from '@/components/icons/generated';
+import { Icon } from '@/components/icons/icon';
+import { Button } from '@/components/ui/button';
+import { Text } from '@/components/ui/text';
import { AuthHeader } from '@/features/auth/auth-header';
import { authClient } from '@/features/auth/client';
@@ -48,45 +51,48 @@ export const ViewOtpVerification = () => {
return (
-
+
-
-
-
+
+
+
{t('auth:verification.back')}
-
-
+
+
{t('auth:verification.title')}
-
+
{t('auth:verification.description')}
- {email} .{' '}
+ {email} .{' '}
{t('auth:verification.enterItBelow')}
-
-
-
+
+
+
{(field) => (
{t('auth:verification.verificationCode.label')}
-
+
{t('auth:verification.expireHint')}
)}
-
+
{t('auth:verification.confirm')}
-
+
-
+
-
+
);
};
diff --git a/src/features/auth/view-sign-in.tsx b/src/features/auth/view-sign-in.tsx
index 36d4a4a7..3032e4a1 100644
--- a/src/features/auth/view-sign-in.tsx
+++ b/src/features/auth/view-sign-in.tsx
@@ -2,7 +2,7 @@ import { useMutation } from '@tanstack/react-query';
import appConfig from 'app.config';
import { useRouter } from 'expo-router';
import { useTranslation } from 'react-i18next';
-import { Center, HStack, Stack, Text } from 'react-native-ficus-ui';
+import { View } from 'react-native';
import { useSafeAreaInsets } from 'react-native-safe-area-context';
import { toast } from 'sonner-native';
import { z } from 'zod';
@@ -10,8 +10,11 @@ import { z } from 'zod';
import { Form } from '@/lib/tanstack-form/components';
import { useAppForm } from '@/lib/tanstack-form/config';
+import { Text } from '@/components/ui/text';
import { Version } from '@/components/version';
+import { useOnboardingStore } from '@/features/app-onboarding/store';
+import { ViewOnboarding } from '@/features/app-onboarding/view-app-onboarding';
import { AuthHeader } from '@/features/auth/auth-header';
import { authClient } from '@/features/auth/client';
import { LoginEmailHint } from '@/features/devtools/login-hint';
@@ -59,44 +62,46 @@ export const ViewSignIn = () => {
},
});
+ const isOnboarded = useOnboardingStore((state) => state.done);
+
return (
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
);
};
diff --git a/src/features/books/book-cover.tsx b/src/features/books/book-cover.tsx
index 6146aa3a..3a0a1b48 100644
--- a/src/features/books/book-cover.tsx
+++ b/src/features/books/book-cover.tsx
@@ -1,33 +1,36 @@
-import { Box, BoxProps, Text } from 'react-native-ficus-ui';
+import { View, type ViewProps } from 'react-native';
import { BookGetByIdResponse } from '@/lib/hey-api/generated';
+import { cn } from '@/lib/tailwind/utils';
-export type BookCoverProps = BoxProps & { book: BookGetByIdResponse };
+import { Text } from '@/components/ui/text';
-const COVER_HEIGHT = 240;
+export type BookCoverProps = ViewProps & {
+ book: BookGetByIdResponse;
+};
+
+export const COVER_HEIGHT = 240;
export const BookCover = ({
book,
- h = COVER_HEIGHT,
+ className,
+ style,
...props
}: BookCoverProps) => {
return (
-
-
- {book.title}
-
-
- {book.author}
-
-
+ {book.title}
+ {book.author}
+
);
};
diff --git a/src/features/books/view-book.tsx b/src/features/books/view-book.tsx
index 59252ffb..c4fba0c1 100644
--- a/src/features/books/view-book.tsx
+++ b/src/features/books/view-book.tsx
@@ -1,12 +1,14 @@
import { getUiState } from '@bearstudio/ui-state';
import { useQuery } from '@tanstack/react-query';
import { useTranslation } from 'react-i18next';
-import { Center, Divider, HStack, Stack, Text } from 'react-native-ficus-ui';
+import { View } from 'react-native';
import { api } from '@/lib/hey-api/api';
import { Card, CardBody } from '@/components/ui/card';
+import { Divider } from '@/components/ui/divider';
import { FullLoader } from '@/components/ui/full-loader';
+import { Text } from '@/components/ui/text';
import { BookCover } from '@/features/books/book-cover';
import { ViewTabContent } from '@/layout/view-tab-content';
@@ -31,70 +33,50 @@ export const ViewBook = (props: { bookId: string }) => {
.match('pending', () => )
.match('error', () => <>>)
.match('default', ({ data }) => (
-
+
-
-
-
+
+
+
{t('books:common.title')}
-
+
{data.title}
-
+
-
-
+
+
{t('books:common.author')}
-
+
{data.author}
-
+
-
-
+
+
{t('books:common.genre')}
-
+
{data.genre?.name ?? 'Unknown'}
-
+
-
-
+
+
{t('books:common.publisher')}
-
+
{data.publisher?.toString() ?? 'Unknown'}
-
+
-
-
-
-
+
+
+
+
))
.exhaustive()}
diff --git a/src/features/books/view-books.tsx b/src/features/books/view-books.tsx
index 6ced6737..04758e80 100644
--- a/src/features/books/view-books.tsx
+++ b/src/features/books/view-books.tsx
@@ -1,14 +1,17 @@
import { getUiState } from '@bearstudio/ui-state';
+import { FlashList } from '@shopify/flash-list';
import { useInfiniteQuery } from '@tanstack/react-query';
import { Link } from 'expo-router';
-import { ActivityIndicator } from 'react-native';
-import { FlashList, Text } from 'react-native-ficus-ui';
+import { useCallback } from 'react';
+import { ActivityIndicator, View } from 'react-native';
import { api } from '@/lib/hey-api/api';
+import { BookGetByIdResponse } from '@/lib/hey-api/generated';
-import { FullLoader } from '@/components/ui/full-loader';
+import { Skeleton } from '@/components/ui/skeleton';
+import { Text } from '@/components/ui/text';
-import { BookCover } from '@/features/books/book-cover';
+import { BookCover, COVER_HEIGHT } from '@/features/books/book-cover';
import { ViewTabContent } from '@/layout/view-tab-content';
export const ViewBooks = () => {
@@ -29,10 +32,39 @@ export const ViewBooks = () => {
});
});
+ const renderItem = useCallback(
+ ({ item }: { item: BookGetByIdResponse }) => (
+
+
+
+
+
+
+ ),
+ []
+ );
+
return (
{ui
- .match('pending', () => )
+ .match('pending', () => (
+
+ {Array.from({ length: 4 }, (_, i) => i).map((index) => (
+
+
+
+ ))}
+
+ ))
.match('error', () => <>>)
.match('empty', () => There is no books )
.match('default', ({ data }) => (
@@ -41,20 +73,7 @@ export const ViewBooks = () => {
keyExtractor={(item) => item.id}
numColumns={2}
horizontal={false}
- renderItem={({ item }) => (
-
-
-
-
-
-
- )}
+ renderItem={renderItem}
onEndReached={() => {
if (!books.hasNextPage) {
return;
diff --git a/src/features/devtools/devtools.tsx b/src/features/devtools/devtools.tsx
index 50acd8fa..94828815 100644
--- a/src/features/devtools/devtools.tsx
+++ b/src/features/devtools/devtools.tsx
@@ -1,12 +1,11 @@
import { useAsyncStorageDevTools } from '@dev-plugins/async-storage';
import { useReactNavigationDevTools } from '@dev-plugins/react-navigation';
import { useReactQueryDevTools } from '@dev-plugins/react-query';
+import { QueryClient } from '@tanstack/react-query';
import { useNavigationContainerRef } from 'expo-router';
-import { queryClient } from '@/app/_layout';
-
-export const DevTools = () => {
- useReactQueryDevTools(queryClient);
+export const DevTools = (props: { queryClient: QueryClient }) => {
+ useReactQueryDevTools(props.queryClient);
const navigationRef = useNavigationContainerRef();
useReactNavigationDevTools(navigationRef);
diff --git a/src/features/devtools/login-hint.tsx b/src/features/devtools/login-hint.tsx
index 1216415f..eddcb3a3 100644
--- a/src/features/devtools/login-hint.tsx
+++ b/src/features/devtools/login-hint.tsx
@@ -1,6 +1,6 @@
import { useQuery } from '@tanstack/react-query';
import { TerminalIcon } from 'lucide-react-native';
-import { Pressable, Text } from 'react-native-ficus-ui';
+import { Pressable } from 'react-native';
import { api } from '@/lib/hey-api/api';
import { ConfigEnvResponse } from '@/lib/hey-api/generated';
@@ -8,8 +8,9 @@ import { useFormContext } from '@/lib/tanstack-form/context';
import { Icon } from '@/components/icons/icon';
import { Card, CardBody, CardHeader, CardTitle } from '@/components/ui/card';
+import { Text } from '@/components/ui/text';
-const mockedEmail = 'admin@admin.com';
+const mockedEmail = 'user@user.com';
const mockedOtp = '000000';
const shouldDisplayLoginHints = (configEnv?: ConfigEnvResponse) =>
@@ -26,29 +27,18 @@ export const LoginEmailHint = () => {
return (
form.setFieldValue('email', mockedEmail)}>
-
+
-
+
{env.data?.isDev ? 'Dev mode' : 'Demo mode'}
-
-
+
+
You can login with{' '}
-
- {mockedEmail}
-
+ {mockedEmail}
@@ -67,29 +57,18 @@ export const LoginOtpHint = () => {
return (
form.setFieldValue('code', mockedOtp)}>
-
+
-
+
{env.data?.isDev ? 'Dev mode' : 'Demo mode'}
-
-
+
+
Use the code{' '}
-
- {mockedOtp}
-
+ {mockedOtp}
diff --git a/src/features/home/view-home.tsx b/src/features/home/view-home.tsx
index 446623d9..5841225d 100644
--- a/src/features/home/view-home.tsx
+++ b/src/features/home/view-home.tsx
@@ -1,11 +1,14 @@
import appConfig from 'app.config';
import { Link } from 'expo-router';
import { useTranslation } from 'react-i18next';
-import { Button, HStack, Stack, Text } from 'react-native-ficus-ui';
+import { View } from 'react-native';
import { useShare } from '@/hooks/use-share';
import { IconShare2 } from '@/components/icons/generated';
+import { Icon } from '@/components/icons/icon';
+import { Button } from '@/components/ui/button';
+import { Text } from '@/components/ui/text';
import { MarketingBento } from '@/features/marketing/marketing-bento';
import { ViewTabContent } from '@/layout/view-tab-content';
@@ -16,39 +19,41 @@ export const ViewHome = () => {
const share = useShare();
return (
-
-
-
+
+
+
{t('home:welcome.title')}
- {t('home:welcome.description')}
-
-
+
+ {t('home:welcome.description')}
+
+
+
-
+
GitHub
-
+
{t('home:welcome.openIssue')}
share.open({
title: 'Github • Start UI [native]',
message: appConfig.githubUrl,
})
}
- isLoading={share.isPending}
>
-
+
{t('home:welcome.share')}
-
+
);
diff --git a/src/features/marketing/marketing-bento.tsx b/src/features/marketing/marketing-bento.tsx
index 6a01019c..60b14ae1 100644
--- a/src/features/marketing/marketing-bento.tsx
+++ b/src/features/marketing/marketing-bento.tsx
@@ -1,7 +1,16 @@
-import { Linking, TouchableOpacity } from 'react-native';
-import { Box, Stack, Text } from 'react-native-ficus-ui';
+import { Linking, Pressable, StyleSheet, View } from 'react-native';
import { Image } from '@/components/ui/image';
+import { Text } from '@/components/ui/text';
+
+const tileStyles = StyleSheet.create({
+ base: {
+ width: '100%',
+ borderRadius: 8,
+ overflow: 'hidden',
+ backgroundColor: 'rgba(0,0,0,0.2)',
+ },
+});
const MarketingTile = ({
href,
@@ -21,34 +30,23 @@ const MarketingTile = ({
}
};
return (
- handleOpenUrl(href)}
accessibilityRole="link"
- style={{
- aspectRatio,
- width: '100%',
- borderRadius: 8,
- overflow: 'hidden',
- backgroundColor: 'rgba(0,0,0,0.2)',
- }}
+ style={[tileStyles.base, { aspectRatio }]}
>
-
-
+
+
);
};
export const MarketingBento = () => (
-
-
+
+
Shameless plug 😅 Remember that 🚀 Start UI is free and Open Source 😉
-
-
+
+
(
aspectRatio={1.45}
blurhash="L36kL=$|4TEQ~UxV4:NL=@oIIoWs"
/>
-
+
-
+
(
aspectRatio={0.7}
blurhash="SC8zlJs:0nxZ~6s,E2WB"
/>
-
-
-
-
-
-
+
+
+
);
diff --git a/src/features/theme/constants.ts b/src/features/theme/constants.ts
new file mode 100644
index 00000000..7e8170cc
--- /dev/null
+++ b/src/features/theme/constants.ts
@@ -0,0 +1,3 @@
+import appConfig from 'app.config';
+
+export const STORAGE_KEY_THEME = `${appConfig.scheme}-theme`;
diff --git a/src/features/theme/use-theme-sync.tsx b/src/features/theme/use-theme-sync.tsx
new file mode 100644
index 00000000..8477ceea
--- /dev/null
+++ b/src/features/theme/use-theme-sync.tsx
@@ -0,0 +1,22 @@
+import AsyncStorage from '@react-native-async-storage/async-storage';
+import { useEffect } from 'react';
+import { Uniwind } from 'uniwind';
+
+import { STORAGE_KEY_THEME } from '@/features/theme/constants';
+
+/**
+ * Sync the theme from the AsyncStorage to the Uniwind theme
+ * @returns void
+ */
+export const useThemeSync = () => {
+ useEffect(() => {
+ AsyncStorage.getItem(STORAGE_KEY_THEME).then((stored) => {
+ const theme = (
+ stored === 'light' || stored === 'dark' || stored === 'system'
+ ? stored
+ : 'system'
+ ) as 'light' | 'dark' | 'system';
+ Uniwind.setTheme(theme);
+ });
+ }, []);
+};
diff --git a/src/features/theme/use-themed-style.tsx b/src/features/theme/use-themed-style.tsx
new file mode 100644
index 00000000..8b01bb5e
--- /dev/null
+++ b/src/features/theme/use-themed-style.tsx
@@ -0,0 +1,16 @@
+import { useUniwind } from 'uniwind';
+
+const neutral50 = '#fafafa';
+const neutral900 = '#171717';
+const neutral950 = '#0a0a0a';
+
+export const useThemedStyle = () => {
+ const { theme } = useUniwind();
+ const isDark = theme === 'dark';
+
+ return {
+ backgroundColor: isDark ? neutral950 : 'white',
+ color: isDark ? 'white' : neutral950,
+ sceneBackgroundColor: isDark ? neutral900 : neutral50,
+ };
+};
diff --git a/src/hooks/use-browser/docs.stories.tsx b/src/hooks/use-browser/docs.stories.tsx
index a73cecd4..0f5f5f0d 100644
--- a/src/hooks/use-browser/docs.stories.tsx
+++ b/src/hooks/use-browser/docs.stories.tsx
@@ -1,7 +1,7 @@
-import { Button } from 'react-native-ficus-ui';
-
import { useBrowser } from '@/hooks/use-browser';
+import { Button } from '@/components/ui/button';
+
export default {
title: 'Hooks/useBrowser',
};
diff --git a/src/hooks/use-disclosure.ts b/src/hooks/use-disclosure.ts
new file mode 100644
index 00000000..bc51fc78
--- /dev/null
+++ b/src/hooks/use-disclosure.ts
@@ -0,0 +1,11 @@
+import { useCallback, useState } from 'react';
+
+export function useDisclosure(defaultIsOpen = false) {
+ const [isOpen, setIsOpen] = useState(defaultIsOpen);
+
+ const onOpen = useCallback(() => setIsOpen(true), []);
+ const onClose = useCallback(() => setIsOpen(false), []);
+ const onToggle = useCallback(() => setIsOpen((prev) => !prev), []);
+
+ return { isOpen, onOpen, onClose, onToggle };
+}
diff --git a/src/hooks/use-share/docs.stories.tsx b/src/hooks/use-share/docs.stories.tsx
index 094cae95..c85c35b4 100644
--- a/src/hooks/use-share/docs.stories.tsx
+++ b/src/hooks/use-share/docs.stories.tsx
@@ -1,7 +1,7 @@
-import { Button } from 'react-native-ficus-ui';
-
import { useShare } from '@/hooks/use-share';
+import { Button } from '@/components/ui/button';
+
export default {
title: 'Hooks/useShare',
};
diff --git a/src/hooks/use-theme-mode.tsx b/src/hooks/use-theme-mode.tsx
deleted file mode 100644
index 0447aef7..00000000
--- a/src/hooks/use-theme-mode.tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-import AsyncStorage from '@react-native-async-storage/async-storage';
-import { useQuery } from '@tanstack/react-query';
-import z from 'zod';
-
-import { STORAGE_KEY_THEME } from '@/lib/ficus-ui/theme';
-
-export const themeQueryKey = ['app-theme', STORAGE_KEY_THEME];
-
-const zTheme = () => z.enum(['system', 'light', 'dark']).default('system');
-
-export const useThemeMode = () => {
- return useQuery({
- queryKey: themeQueryKey,
- queryFn: () =>
- AsyncStorage.getItem(STORAGE_KEY_THEME).then((value) =>
- zTheme().parse(value)
- ),
- });
-};
diff --git a/src/hooks/use-themed-style.tsx b/src/hooks/use-themed-style.tsx
deleted file mode 100644
index 5f6f043c..00000000
--- a/src/hooks/use-themed-style.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import { useColorModeValue } from 'react-native-ficus-ui';
-
-import theme from '@/lib/ficus-ui/theme';
-
-export const useThemedStyle = () => {
- return useColorModeValue(
- {
- backgroundColor: 'white',
- color: theme.colors.neutral[950],
- sceneBackgroundColor: theme.colors.neutral[50],
- },
- {
- backgroundColor: theme.colors.neutral[950],
- color: 'white',
- sceneBackgroundColor: theme.colors.neutral[900],
- }
- );
-};
diff --git a/src/layout/view-safe-content.tsx b/src/layout/view-safe-content.tsx
index 493532c4..ffba395d 100644
--- a/src/layout/view-safe-content.tsx
+++ b/src/layout/view-safe-content.tsx
@@ -1,11 +1,15 @@
-import { ComponentProps } from 'react';
-import { ficus } from 'react-native-ficus-ui';
import { SafeAreaView } from 'react-native-safe-area-context';
+import { withUniwind } from 'uniwind';
-const FicusSafeAreaView = ficus(SafeAreaView);
+import { cn } from '@/lib/tailwind/utils';
-export const ViewSafeContent = (
- props: ComponentProps
-) => {
- return ;
+type ViewSafeContentProps = React.ComponentProps;
+
+const UniwindSafeAreaView = withUniwind(SafeAreaView);
+
+export const ViewSafeContent = ({
+ className,
+ ...props
+}: ViewSafeContentProps) => {
+ return ;
};
diff --git a/src/layout/view-tab-content.tsx b/src/layout/view-tab-content.tsx
index 23e8edec..2515709e 100644
--- a/src/layout/view-tab-content.tsx
+++ b/src/layout/view-tab-content.tsx
@@ -1,25 +1,38 @@
-import { Box, BoxProps, ScrollBox } from 'react-native-ficus-ui';
+import { ScrollView, type ScrollViewProps, View } from 'react-native';
import { useSafeAreaInsets } from 'react-native-safe-area-context';
import { WITH_NATIVE_TABS } from '@/app/(logged)/(tabs)/_layout';
import { isApple } from '@/constants/device';
+type ViewTabContentProps = Omit & {
+ withHeader?: boolean;
+ gap?: number;
+};
+
export const ViewTabContent = ({
withHeader = isApple && WITH_NATIVE_TABS,
children,
+ contentContainerStyle,
+ gap = 8,
...props
-}: BoxProps & { withHeader?: boolean }) => {
+}: ViewTabContentProps) => {
const insets = useSafeAreaInsets();
return (
-
{children}
-
-
+
+
);
};
diff --git a/src/lib/ficus-ui/components/badge.ts b/src/lib/ficus-ui/components/badge.ts
deleted file mode 100644
index ee939e44..00000000
--- a/src/lib/ficus-ui/components/badge.ts
+++ /dev/null
@@ -1,50 +0,0 @@
-import { BadgeProps, defineStyleConfig, Dict } from 'react-native-ficus-ui';
-
-export default defineStyleConfig<
- BadgeProps,
- Dict,
- Dict
->({
- defaultProps: { variant: '@primary', size: 'md' },
- sizes: {
- xs: { h: 16, fontSize: '2xs', fontWeight: 'medium' },
- sm: { h: 20, fontSize: 'xs', fontWeight: 'medium' },
- md: { h: 24, fontSize: 'sm', fontWeight: 'medium' },
- lg: { h: 32, fontSize: 'md', fontWeight: 'medium' },
- },
- baseStyle: {
- px: 8,
- textTransform: 'none',
- borderRadius: 'md',
- },
- variants: {
- '@primary': {
- backgroundColor: 'brand.900',
- color: 'white',
- _dark: {
- backgroundColor: 'brand.50',
- color: 'brand.900',
- },
- },
- '@secondary': {
- backgroundColor: 'white',
- color: 'brand.950',
- _dark: {
- backgroundColor: 'brand.800',
- color: 'brand.50',
- },
- },
- '@error': {
- backgroundColor: 'negative.100',
- color: 'negative.800',
- },
- '@warning': {
- backgroundColor: 'warning.100',
- color: 'warning.800',
- },
- '@success': {
- backgroundColor: 'positive.100',
- color: 'positive.600',
- },
- },
-});
diff --git a/src/lib/ficus-ui/components/button.ts b/src/lib/ficus-ui/components/button.ts
deleted file mode 100644
index 0a9b523e..00000000
--- a/src/lib/ficus-ui/components/button.ts
+++ /dev/null
@@ -1,58 +0,0 @@
-import { ButtonProps, defineStyleConfig, Dict } from 'react-native-ficus-ui';
-
-export default defineStyleConfig<
- ButtonProps,
- Dict,
- Dict
->({
- defaultProps: { variant: '@primary', size: 'lg' },
- sizes: {
- xs: { h: 28, fontSize: 'xs', fontWeight: 'medium' },
- sm: { h: 32, fontSize: 'sm', fontWeight: 'medium' },
- md: { h: 36, fontSize: 'sm', fontWeight: 'medium' },
- lg: { h: 40, fontSize: 'sm', fontWeight: 'medium' },
- },
- baseStyle: {
- gap: 4,
- borderRadius: 'md',
- borderColor: 'brand.200',
- _disabled: { opacity: 0.7 },
- _dark: {
- borderColor: 'brand.600',
- },
- },
- variants: {
- '@primary': {
- backgroundColor: 'brand.900',
- color: 'white',
- _dark: {
- backgroundColor: 'brand.50',
- color: 'brand.900',
- },
- },
- '@secondary': {
- backgroundColor: 'white',
- color: 'brand.950',
- borderWidth: 1,
- _dark: {
- backgroundColor: 'brand.800',
- color: 'brand.50',
- },
- },
- '@destructive': {
- backgroundColor: 'negative.600',
- color: 'white',
- },
- '@ghost': {
- backgroundColor: 'transparent',
- color: 'neutral.950',
- _dark: { color: 'neutral.100' },
- },
- '@link': {
- px: 0,
- backgroundColor: 'transparent',
- color: 'neutral.950',
- _dark: { color: 'neutral.100' },
- },
- },
-});
diff --git a/src/lib/ficus-ui/components/divider.ts b/src/lib/ficus-ui/components/divider.ts
deleted file mode 100644
index fe4f4856..00000000
--- a/src/lib/ficus-ui/components/divider.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import { defineStyleConfig, Dict, DividerProps } from 'react-native-ficus-ui';
-
-export default defineStyleConfig<
- DividerProps,
- Dict,
- Dict
->({
- baseStyle: { color: 'neutral.200', _dark: { color: 'neutral.800' } },
- defaultProps: {},
- variants: {},
- sizes: {},
-});
diff --git a/src/lib/ficus-ui/components/index.ts b/src/lib/ficus-ui/components/index.ts
deleted file mode 100644
index 036d343d..00000000
--- a/src/lib/ficus-ui/components/index.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import Badge from './badge';
-import Button from './button';
-import Divider from './divider';
-import Input from './input';
-import { pinInputFieldTheme, pinInputTheme } from './pin-input';
-import Text from './text';
-
-export default {
- Badge,
- Button,
- Divider,
- Input,
- Text,
- PinInput: pinInputTheme,
- PinInputField: pinInputFieldTheme,
-};
diff --git a/src/lib/ficus-ui/components/input.ts b/src/lib/ficus-ui/components/input.ts
deleted file mode 100644
index 5f94210d..00000000
--- a/src/lib/ficus-ui/components/input.ts
+++ /dev/null
@@ -1,28 +0,0 @@
-import { defineStyleConfig, Dict, InputProps } from 'react-native-ficus-ui';
-
-export default defineStyleConfig<
- InputProps,
- Dict,
- Dict
->({
- defaultProps: { variant: 'default', size: 'lg' },
- baseStyle: {
- borderRadius: 'md',
- _disabled: { opacity: 0.7 },
- _focused: { borderWidth: 2 },
- },
- sizes: { sm: { h: 32 }, md: { h: 36 }, lg: { h: 40 } },
- variants: {
- default: {
- borderWidth: 1,
- borderColor: 'neutral.300',
- placeholderTextColor: 'neutral.600',
- backgroundColor: 'white',
- _dark: {
- borderColor: 'neutral.600',
- backgroundColor: 'neutral.950',
- placeholderTextColor: 'neutral.300',
- },
- },
- },
-});
diff --git a/src/lib/ficus-ui/components/pin-input.ts b/src/lib/ficus-ui/components/pin-input.ts
deleted file mode 100644
index c9f05de4..00000000
--- a/src/lib/ficus-ui/components/pin-input.ts
+++ /dev/null
@@ -1,69 +0,0 @@
-import {
- defineStyle,
- defineStyleConfig,
- PinInputProps,
-} from 'react-native-ficus-ui';
-
-const baseStyle = defineStyle({
- alignSelf: 'flex-start',
- justifyContent: 'flex-start',
-});
-
-const variantOutline = defineStyle(() => {
- return {};
-});
-
-const variants = { outline: variantOutline };
-
-export const pinInputTheme = defineStyleConfig({
- baseStyle,
- variants,
- defaultProps: { variant: 'outline' },
-});
-
-const fieldBaseStyle = defineStyle({
- borderRadius: 'md',
- alignSelf: 'flex-start',
- fontWeight: 'bold',
- fontSize: 'md',
- bg: 'white',
- color: 'neutral.600',
- shadow: 0,
- mr: 'sm',
- justifyContent: 'center',
- alignItems: 'center',
- _disabled: { opacity: 0.6 },
- _dark: { bg: 'neutral.950', color: 'neutral.300' },
-});
-
-const fieldVariantOutline = defineStyle(() => {
- return {
- borderWidth: 1,
- borderStyle: 'solid',
- borderColor: 'neutral.300',
- colorScheme: 'neutral',
- _focused: {
- borderWidth: 2,
- borderStyle: 'solid',
- borderColor: 'neutral.300',
- _dark: { borderColor: 'neutral.600' },
- },
- _dark: { borderColor: 'neutral.600' },
- };
-});
-
-const fieldVariants = { outline: fieldVariantOutline };
-
-const sizes = {
- xs: defineStyle({ width: 24, height: 24 }),
- sm: defineStyle({ width: 32, height: 32 }),
- md: defineStyle({ width: 40, height: 40 }),
- lg: defineStyle({ width: 48, height: 48 }),
-};
-
-export const pinInputFieldTheme = defineStyleConfig({
- baseStyle: fieldBaseStyle,
- variants: fieldVariants,
- sizes,
- defaultProps: { variant: 'outline', size: 'md' },
-});
diff --git a/src/lib/ficus-ui/components/text.ts b/src/lib/ficus-ui/components/text.ts
deleted file mode 100644
index c0782414..00000000
--- a/src/lib/ficus-ui/components/text.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import { defineStyleConfig, Dict, TextProps } from 'react-native-ficus-ui';
-
-export default defineStyleConfig, Dict>({
- baseStyle: { color: 'neutral.900', _dark: { color: 'neutral.100' } },
- variants: {
- muted: {
- color: 'neutral.600',
- _dark: { color: 'neutral.400' },
- },
- },
-});
diff --git a/src/lib/ficus-ui/foundations/colors.ts b/src/lib/ficus-ui/foundations/colors.ts
deleted file mode 100644
index b71b76aa..00000000
--- a/src/lib/ficus-ui/foundations/colors.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import tailwindColors from './tailwind-colors';
-
-export default {
- // Update me with other Tailwind colors or with https://smart-swatch.netlify.app/
- brand: tailwindColors.neutral,
- neutral: tailwindColors.neutral,
- positive: tailwindColors.green,
- negative: tailwindColors.red,
- warning: tailwindColors.amber,
- info: tailwindColors.sky,
-};
diff --git a/src/lib/ficus-ui/foundations/font-sizes.ts b/src/lib/ficus-ui/foundations/font-sizes.ts
deleted file mode 100644
index 9af0ac4b..00000000
--- a/src/lib/ficus-ui/foundations/font-sizes.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-export default {
- '3xs': 8,
- '2xs': 10,
- xs: 12,
- sm: 14,
- md: 16,
- lg: 18,
- xl: 20,
- '2xl': 24,
- '3xl': 30,
- '4xl': 36,
- '5xl': 48,
- '6xl': 60,
-};
diff --git a/src/lib/ficus-ui/foundations/fonts.ts b/src/lib/ficus-ui/foundations/fonts.ts
deleted file mode 100644
index 3601abd2..00000000
--- a/src/lib/ficus-ui/foundations/fonts.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-export default {
- fontFamily: {},
- fontWeights: {
- hairline: 100,
- thin: 200,
- light: 300,
- normal: 400,
- medium: 500,
- semibold: 600,
- bold: 700,
- extrabold: 800,
- black: 900,
- },
-};
diff --git a/src/lib/ficus-ui/foundations/index.ts b/src/lib/ficus-ui/foundations/index.ts
deleted file mode 100644
index f6f5ab76..00000000
--- a/src/lib/ficus-ui/foundations/index.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import { Dict, Theme } from 'react-native-ficus-ui';
-
-import colors from '@/lib/ficus-ui/foundations/colors';
-import fontSizes from '@/lib/ficus-ui/foundations/font-sizes';
-import fonts from '@/lib/ficus-ui/foundations/fonts';
-
-export default {
- colors,
- fonts,
- fontSizes,
-} satisfies {
- colors: Dict;
- fonts: Theme['fonts'];
- fontSizes: Theme['fontSizes'];
-};
diff --git a/src/lib/ficus-ui/foundations/tailwind-colors.ts b/src/lib/ficus-ui/foundations/tailwind-colors.ts
deleted file mode 100644
index 89c676f6..00000000
--- a/src/lib/ficus-ui/foundations/tailwind-colors.ts
+++ /dev/null
@@ -1,288 +0,0 @@
-export default {
- rose: {
- '50': '#fff1f2',
- '100': '#ffe4e6',
- '200': '#ffccd3',
- '300': '#ffa1ad',
- '400': '#ff637e',
- '500': '#ff2056',
- '600': '#ec003f',
- '700': '#c70036',
- '800': '#a50036',
- '900': '#8b0836',
- '950': '#4d0218',
- },
- pink: {
- '50': '#fdf2f8',
- '100': '#fce7f3',
- '200': '#fccee8',
- '300': '#fda5d5',
- '400': '#fb64b6',
- '500': '#f6339a',
- '600': '#e60076',
- '700': '#c6005c',
- '800': '#a3004c',
- '900': '#861043',
- '950': '#510424',
- },
- fuchsia: {
- '50': '#fdf4ff',
- '100': '#fae8ff',
- '200': '#f6cfff',
- '300': '#f4a8ff',
- '400': '#ed6aff',
- '500': '#e12afb',
- '600': '#c800de',
- '700': '#a800b7',
- '800': '#8a0194',
- '900': '#721378',
- '950': '#4b004f',
- },
- purple: {
- '50': '#faf5ff',
- '100': '#f3e8ff',
- '200': '#e9d4ff',
- '300': '#dab2ff',
- '400': '#c27aff',
- '500': '#ad46ff',
- '600': '#9810fa',
- '700': '#8200db',
- '800': '#6e11b0',
- '900': '#59168b',
- '950': '#3c0366',
- },
- violet: {
- '50': '#f5f3ff',
- '100': '#ede9fe',
- '200': '#ddd6ff',
- '300': '#c4b4ff',
- '400': '#a684ff',
- '500': '#8e51ff',
- '600': '#7f22fe',
- '700': '#7008e7',
- '800': '#5d0ec0',
- '900': '#4d179a',
- '950': '#2f0d68',
- },
- indigo: {
- '50': '#eef2ff',
- '100': '#e0e7ff',
- '200': '#c6d2ff',
- '300': '#a3b3ff',
- '400': '#7c86ff',
- '500': '#615fff',
- '600': '#4f39f6',
- '700': '#432dd7',
- '800': '#372aac',
- '900': '#312c85',
- '950': '#1e1a4d',
- },
- blue: {
- '50': '#eff6ff',
- '100': '#dbeafe',
- '200': '#bedbff',
- '300': '#8ec5ff',
- '400': '#51a2ff',
- '500': '#2b7fff',
- '600': '#155dfc',
- '700': '#1447e6',
- '800': '#193cb8',
- '900': '#1c398e',
- '950': '#162456',
- },
- sky: {
- '50': '#f0f9ff',
- '100': '#dff2fe',
- '200': '#b8e6fe',
- '300': '#74d4ff',
- '400': '#00bcff',
- '500': '#00a6f4',
- '600': '#0084d1',
- '700': '#0069a8',
- '800': '#00598a',
- '900': '#024a70',
- '950': '#052f4a',
- },
- cyan: {
- '50': '#ecfeff',
- '100': '#cefafe',
- '200': '#a2f4fd',
- '300': '#53eafd',
- '400': '#00d3f2',
- '500': '#00b8db',
- '600': '#0092b8',
- '700': '#007595',
- '800': '#005f78',
- '900': '#104e64',
- '950': '#053345',
- },
- teal: {
- '50': '#f0fdfa',
- '100': '#cbfbf1',
- '200': '#96f7e4',
- '300': '#46ecd5',
- '400': '#00d5be',
- '500': '#00bba7',
- '600': '#009689',
- '700': '#00786f',
- '800': '#005f5a',
- '900': '#0b4f4a',
- '950': '#022f2e',
- },
- emerald: {
- '50': '#ecfdf5',
- '100': '#d0fae5',
- '200': '#a4f4cf',
- '300': '#5ee9b5',
- '400': '#00d492',
- '500': '#00bc7d',
- '600': '#009966',
- '700': '#007a55',
- '800': '#006045',
- '900': '#004f3b',
- '950': '#002c22',
- },
- green: {
- '50': '#f0fdf4',
- '100': '#dcfce7',
- '200': '#b9f8cf',
- '300': '#7bf1a8',
- '400': '#05df72',
- '500': '#00c950',
- '600': '#00a63e',
- '700': '#008236',
- '800': '#016630',
- '900': '#0d542b',
- '950': '#032e15',
- },
- lime: {
- '50': '#f7fee7',
- '100': '#ecfcca',
- '200': '#d8f999',
- '300': '#bbf451',
- '400': '#9ae600',
- '500': '#7ccf00',
- '600': '#5ea500',
- '700': '#497d00',
- '800': '#3c6300',
- '900': '#35530e',
- '950': '#192e03',
- },
- yellow: {
- '50': '#fefce8',
- '100': '#fef9c2',
- '200': '#fff085',
- '300': '#ffdf20',
- '400': '#fdc700',
- '500': '#f0b100',
- '600': '#d08700',
- '700': '#a65f00',
- '800': '#894b00',
- '900': '#733e0a',
- '950': '#432004',
- },
- amber: {
- '50': '#fffbeb',
- '100': '#fef3c6',
- '200': '#fee685',
- '300': '#ffd230',
- '400': '#ffb900',
- '500': '#fe9a00',
- '600': '#e17100',
- '700': '#bb4d00',
- '800': '#973c00',
- '900': '#7b3306',
- '950': '#461901',
- },
- orange: {
- '50': '#fff7ed',
- '100': '#ffedd4',
- '200': '#ffd6a7',
- '300': '#ffb86a',
- '400': '#ff8904',
- '500': '#ff6900',
- '600': '#f54900',
- '700': '#ca3500',
- '800': '#9f2d00',
- '900': '#7e2a0c',
- '950': '#441306',
- },
- red: {
- '50': '#fef2f2',
- '100': '#ffe2e2',
- '200': '#ffc9c9',
- '300': '#ffa2a2',
- '400': '#ff6467',
- '500': '#fb2c36',
- '600': '#e7000b',
- '700': '#c10007',
- '800': '#9f0712',
- '900': '#82181a',
- '950': '#460809',
- },
- slate: {
- '50': '#f8fafc',
- '100': '#f1f5f9',
- '200': '#e2e8f0',
- '300': '#cad5e2',
- '400': '#90a1b9',
- '500': '#62748e',
- '600': '#45556c',
- '700': '#314158',
- '800': '#1d293d',
- '900': '#0f172b',
- '950': '#020618',
- },
- gray: {
- '50': '#f9fafb',
- '100': '#f3f4f6',
- '200': '#e5e7eb',
- '300': '#d1d5dc',
- '400': '#99a1af',
- '500': '#6a7282',
- '600': '#4a5565',
- '700': '#364153',
- '800': '#1e2939',
- '900': '#101828',
- '950': '#030712',
- },
- zinc: {
- '50': '#fafafa',
- '100': '#f4f4f5',
- '200': '#e4e4e7',
- '300': '#d4d4d8',
- '400': '#9f9fa9',
- '500': '#71717b',
- '600': '#52525c',
- '700': '#3f3f46',
- '800': '#27272a',
- '900': '#18181b',
- '950': '#09090b',
- },
- neutral: {
- '50': '#fafafa',
- '100': '#f5f5f5',
- '200': '#e5e5e5',
- '300': '#d4d4d4',
- '400': '#a1a1a1',
- '500': '#737373',
- '600': '#525252',
- '700': '#404040',
- '800': '#262626',
- '900': '#171717',
- '950': '#0a0a0a',
- },
- stone: {
- '50': '#fafaf9',
- '100': '#f5f5f4',
- '200': '#e7e5e4',
- '300': '#d6d3d1',
- '400': '#a6a09b',
- '500': '#79716b',
- '600': '#57534d',
- '700': '#44403b',
- '800': '#292524',
- '900': '#1c1917',
- '950': '#0c0a09',
- },
-};
diff --git a/src/lib/ficus-ui/theme.ts b/src/lib/ficus-ui/theme.ts
deleted file mode 100644
index 4f2a4ecc..00000000
--- a/src/lib/ficus-ui/theme.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import appConfig from 'app.config';
-
-import components from '@/lib/ficus-ui/components';
-import foundations from '@/lib/ficus-ui/foundations';
-
-export const STORAGE_KEY_THEME = `${appConfig.scheme}-theme`;
-
-export default {
- name: STORAGE_KEY_THEME,
- ...foundations,
- components,
-};
diff --git a/src/lib/tailwind/utils.ts b/src/lib/tailwind/utils.ts
new file mode 100644
index 00000000..9ad0df42
--- /dev/null
+++ b/src/lib/tailwind/utils.ts
@@ -0,0 +1,6 @@
+import { type ClassValue, clsx } from 'clsx';
+import { twMerge } from 'tailwind-merge';
+
+export function cn(...inputs: ClassValue[]) {
+ return twMerge(clsx(inputs));
+}
diff --git a/src/lib/tanstack-form/components/form-field-error.tsx b/src/lib/tanstack-form/components/form-field-error.tsx
index ce3bf584..5de4178f 100644
--- a/src/lib/tanstack-form/components/form-field-error.tsx
+++ b/src/lib/tanstack-form/components/form-field-error.tsx
@@ -1,12 +1,14 @@
import { useStore } from '@tanstack/react-form';
-import { HStack, Text, TextProps } from 'react-native-ficus-ui';
+import { View } from 'react-native';
import { FieldContextMeta } from '@/lib/tanstack-form/components/form-field';
import { useFieldContext } from '@/lib/tanstack-form/context';
import { IconAlertCircle } from '@/components/icons/generated';
+import { Icon } from '@/components/icons/icon';
+import { Text } from '@/components/ui/text';
-export const FormFieldError = (props: TextProps) => {
+export const FormFieldError = (props: React.ComponentProps) => {
const field = useFieldContext();
const meta = useStore(field.store, (state) => {
@@ -22,18 +24,11 @@ export const FormFieldError = (props: TextProps) => {
}
return (
-
-
-
+
+
+
{meta.errorMessage}
-
+
);
};
diff --git a/src/lib/tanstack-form/components/form-field-helper.tsx b/src/lib/tanstack-form/components/form-field-helper.tsx
index f76393df..9684187e 100644
--- a/src/lib/tanstack-form/components/form-field-helper.tsx
+++ b/src/lib/tanstack-form/components/form-field-helper.tsx
@@ -1,13 +1,7 @@
-import { Text, TextProps } from 'react-native-ficus-ui';
+import { Text } from '@/components/ui/text';
-export const FormFieldHelper = (props: TextProps) => {
+export const FormFieldHelper = (props: React.ComponentProps) => {
return (
-
+
);
};
diff --git a/src/lib/tanstack-form/components/form-field-label.tsx b/src/lib/tanstack-form/components/form-field-label.tsx
index 1b7c5515..b6295acf 100644
--- a/src/lib/tanstack-form/components/form-field-label.tsx
+++ b/src/lib/tanstack-form/components/form-field-label.tsx
@@ -1,15 +1,7 @@
-import { Text, TextProps } from 'react-native-ficus-ui';
+import { Text } from '@/components/ui/text';
-type FormFieldLabelProps = TextProps;
+type FormFieldLabelProps = React.ComponentProps;
export const FormFieldLabel = (props: FormFieldLabelProps) => {
- return (
-
- );
+ return ;
};
diff --git a/src/lib/tanstack-form/components/form-field.tsx b/src/lib/tanstack-form/components/form-field.tsx
index ae5ccd16..e879f272 100644
--- a/src/lib/tanstack-form/components/form-field.tsx
+++ b/src/lib/tanstack-form/components/form-field.tsx
@@ -1,5 +1,5 @@
import { ReactNode, useEffect, useId } from 'react';
-import { Box } from 'react-native-ficus-ui';
+import { View } from 'react-native';
import { useFieldContext } from '@/lib/tanstack-form/context';
@@ -19,8 +19,8 @@ export const FormField = (props: {
size?: FormFieldSize;
children?: ReactNode;
}) => {
- const _id = useId();
- const id = props.id ?? _id;
+ const defaultId = useId();
+ const id = props.id ?? defaultId;
const field = useFieldContext();
@@ -36,5 +36,5 @@ export const FormField = (props: {
}));
}, [setFieldMeta, id, props.size]);
- return {props.children} ;
+ return {props.children} ;
};
diff --git a/src/lib/tanstack-form/components/form-submit.tsx b/src/lib/tanstack-form/components/form-submit.tsx
index 9ca14363..f57968ec 100644
--- a/src/lib/tanstack-form/components/form-submit.tsx
+++ b/src/lib/tanstack-form/components/form-submit.tsx
@@ -1,16 +1,21 @@
import { ActivityIndicator } from 'react-native';
-import { Button, ButtonProps } from 'react-native-ficus-ui';
+import { cn } from '@/lib/tailwind/utils';
import { useFormContext } from '@/lib/tanstack-form/context';
+import { Button, type ButtonProps } from '@/components/ui/button';
+
export default function FormSubmit({
submitting,
children,
+ full,
+ className,
...props
}: Readonly<
ButtonProps & {
submitting?: React.ReactElement;
children: React.ReactNode;
+ full?: boolean;
}
>) {
const form = useFormContext();
@@ -18,10 +23,10 @@ export default function FormSubmit({
[state.canSubmit, state.isSubmitting]}>
{([canSubmit, isSubmitting]) => (
form.handleSubmit()}
+ {...props}
>
{isSubmitting ? (submitting ?? ) : children}
diff --git a/src/locales/en/auth.json b/src/locales/en/auth.json
index ec24b957..891dbbef 100644
--- a/src/locales/en/auth.json
+++ b/src/locales/en/auth.json
@@ -3,7 +3,7 @@
"title": "Login to your account",
"subtitle": "Enter your email to login to your account",
"email": { "placeholder": "Email" },
- "loginWithEmail": "Login with email",
+ "loginWithEmail": "Continue with email",
"or": "or",
"loginWithGithub": "Login with GitHub"
},
diff --git a/tailwind.config.ts b/tailwind.config.ts
new file mode 100644
index 00000000..5a6afb61
--- /dev/null
+++ b/tailwind.config.ts
@@ -0,0 +1,5 @@
+/** @type {import('tailwindcss').Config} */
+module.exports = {
+ content: ['./src/**/*.{js,jsx,ts,tsx}'],
+ plugins: [],
+};
diff --git a/tsconfig.json b/tsconfig.json
index 258eb210..34faa577 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -18,7 +18,8 @@
"plugins": [
{
"name": "ts-plugin-sort-import-suggestions",
- "moveUpPatterns": ["@/", "\\.{1,2}/"]
+ "moveUpPatterns": ["@/", "\\.{1,2}/"],
+ "moveDownPatterns": ["lucide-react-native"]
}
]
},
diff --git a/uniwind-types.d.ts b/uniwind-types.d.ts
new file mode 100644
index 00000000..cc099419
--- /dev/null
+++ b/uniwind-types.d.ts
@@ -0,0 +1,10 @@
+// NOTE: This file is generated by uniwind and it should not be edited manually.
+///
+
+declare module 'uniwind' {
+ export interface UniwindConfig {
+ themes: readonly ['light', 'dark']
+ }
+}
+
+export {}