diff --git a/.github/workflows/build-and-publish-alpha.yaml b/.github/workflows/build-and-publish-alpha.yaml
index 440f627168..ab597786bf 100644
--- a/.github/workflows/build-and-publish-alpha.yaml
+++ b/.github/workflows/build-and-publish-alpha.yaml
@@ -67,7 +67,7 @@ jobs:
- name: Build
run: |
- pnpm --filter @factorialco/f0-react-core build
+ pnpm --filter @factorialco/f0-core build
pnpm --filter @factorialco/f0-react-native build
- name: Publish to release branch npm/alpha-pr-${{ github.event.pull_request.number }}-react-native
@@ -100,7 +100,7 @@ jobs:
- name: Build
run: |
- pnpm --filter @factorialco/f0-react-core build
+ pnpm --filter @factorialco/f0-core build
- name: Publish to release branch npm/alpha-pr-${{ github.event.pull_request.number }}-core
uses: ./.github/actions/publish-release-branch
diff --git a/.npmrc b/.npmrc
index 07d48bf64c..bf4cd20407 100644
--- a/.npmrc
+++ b/.npmrc
@@ -1 +1,2 @@
-side-effects-cache = false
\ No newline at end of file
+side-effects-cache = false
+node-linker=hoisted
\ No newline at end of file
diff --git a/.tool-versions b/.tool-versions
index 877b26309a..604be079d3 100644
--- a/.tool-versions
+++ b/.tool-versions
@@ -1 +1 @@
-nodejs 22.5.1 v22.5.1
+nodejs 22.14.0
diff --git a/lefthook.yml b/lefthook.yml
index a1c6db36f1..0abd36c5a5 100644
--- a/lefthook.yml
+++ b/lefthook.yml
@@ -1,11 +1,11 @@
# Validate commit messages
commit-msg:
commands:
- "lint commit message":
+ 'lint commit message':
run: pnpm exec commitlint --edit {1}
pre-commit:
commands:
format:
- glob: "**/*.{js,jsx,ts,tsx,json,css,md,yml,yaml,md}"
+ glob: '**/*.{js,jsx,ts,tsx,json,css,md,yml,yaml,md}'
run: pnpm exec prettier {staged_files} --write
stage_fixed: true
diff --git a/package.json b/package.json
index 5f4d6de3a4..2b8d885f5f 100644
--- a/package.json
+++ b/package.json
@@ -27,7 +27,10 @@
},
"pnpm": {
"overrides": {
- "esm-env": "npm:esm-env-runtime@^0.1.1"
+ "esm-env": "npm:esm-env-runtime@^0.1.1",
+ "@types/react": "19.0.14",
+ "react": "19.0.0",
+ "react-dom": "19.0.0"
}
}
}
diff --git a/packages/react-native-playground/.gitignore b/packages/react-native-playground/.gitignore
deleted file mode 100644
index 0b37b6eb4f..0000000000
--- a/packages/react-native-playground/.gitignore
+++ /dev/null
@@ -1,41 +0,0 @@
-# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
-
-# dependencies
-node_modules/
-
-# Expo
-.expo/
-dist/
-web-build/
-
-# Native
-*.orig.*
-*.jks
-*.p8
-*.p12
-*.key
-*.mobileprovision
-
-# Metro
-.metro-health-check*
-
-# debug
-npm-debug.*
-yarn-debug.*
-yarn-error.*
-
-# macOS
-.DS_Store
-*.pem
-
-# local env files
-.env*.local
-
-# typescript
-*.tsbuildinfo
-
-# @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb
-# The following patterns were generated by expo-cli
-
-expo-env.d.ts
-# @end expo-cli
\ No newline at end of file
diff --git a/packages/react-native-playground/.npmrc b/packages/react-native-playground/.npmrc
deleted file mode 100644
index d279723f45..0000000000
--- a/packages/react-native-playground/.npmrc
+++ /dev/null
@@ -1,2 +0,0 @@
-node-linker=hoisted
-enable-pre-post-scripts=true
\ No newline at end of file
diff --git a/packages/react-native-playground/.storybook/index.ts b/packages/react-native-playground/.storybook/index.ts
deleted file mode 100644
index 6eea760617..0000000000
--- a/packages/react-native-playground/.storybook/index.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import AsyncStorage from '@react-native-async-storage/async-storage';
-import { view } from './storybook.requires';
-
-const StorybookUIRoot = view.getStorybookUI({
- storage: {
- getItem: AsyncStorage.getItem,
- setItem: AsyncStorage.setItem,
- },
-});
-
-export default StorybookUIRoot;
diff --git a/packages/react-native-playground/.storybook/stories/ExampleComponent/ExampleComponent.stories.tsx b/packages/react-native-playground/.storybook/stories/ExampleComponent/ExampleComponent.stories.tsx
deleted file mode 100644
index 6cfae4c8f7..0000000000
--- a/packages/react-native-playground/.storybook/stories/ExampleComponent/ExampleComponent.stories.tsx
+++ /dev/null
@@ -1,40 +0,0 @@
-import React from "react";
-import { View } from "react-native";
-import type { Meta, StoryObj } from "@storybook/react";
-import { ExampleComponent } from "@factorialco/f0-react-native";
-
-const meta = {
- title: "Components/ExampleComponent",
- component: ExampleComponent,
- argTypes: {
- text: { control: "text" },
- },
- args: {
- text: "Hello World",
- },
- decorators: [
- (Story) => (
-
-
-
- ),
- ],
-} satisfies Meta;
-
-export default meta;
-
-type Story = StoryObj;
-
-export const Default: Story = {};
-
-export const CustomText: Story = {
- args: {
- text: "Hello from F0!",
- },
-};
-
-export const LongText: Story = {
- args: {
- text: "This is a much longer text that demonstrates how the component handles text that might wrap to multiple lines.",
- },
-};
diff --git a/packages/react-native-playground/README.md b/packages/react-native-playground/README.md
deleted file mode 100644
index 44d05e0042..0000000000
--- a/packages/react-native-playground/README.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Starter base
-
-A starting point to help you set up your project quickly and use the common components provided by `react-native-reusables`. The idea is to make it easier for you to get started.
-
-## Features
-
-- NativeWind v4
-- Dark and light mode
- - Android Navigation Bar matches mode
- - Persistent mode
-- Common components
- - ThemeToggle, Avatar, Button, Card, Progress, Text, Tooltip
-
-
diff --git a/packages/react-native-playground/app/+not-found.tsx b/packages/react-native-playground/app/+not-found.tsx
deleted file mode 100644
index 08c97b6bbf..0000000000
--- a/packages/react-native-playground/app/+not-found.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import { Link, Stack } from 'expo-router';
-import { View } from 'react-native';
-import { Text } from '~/components/ui/text';
-
-export default function NotFoundScreen() {
- return (
- <>
-
-
- This screen doesn't exist.
-
-
- Go to home screen!
-
-
- >
- );
-}
diff --git a/packages/react-native-playground/assets/images/icon.png b/packages/react-native-playground/assets/images/icon.png
deleted file mode 100644
index a0b1526fc7..0000000000
Binary files a/packages/react-native-playground/assets/images/icon.png and /dev/null differ
diff --git a/packages/react-native-playground/babel.config.js b/packages/react-native-playground/babel.config.js
deleted file mode 100644
index 1d9669800a..0000000000
--- a/packages/react-native-playground/babel.config.js
+++ /dev/null
@@ -1,10 +0,0 @@
-module.exports = function (api) {
- api.cache(true);
- return {
- presets: [
- ["babel-preset-expo", { jsxImportSource: "nativewind" }],
- "nativewind/babel",
- ],
- plugins: ["react-native-reanimated/plugin"],
- };
-};
diff --git a/packages/react-native-playground/components/Avatars/ModuleAvatar/ModuleAvatar.mdx b/packages/react-native-playground/components/Avatars/ModuleAvatar/ModuleAvatar.mdx
deleted file mode 100644
index ca4b8bb481..0000000000
--- a/packages/react-native-playground/components/Avatars/ModuleAvatar/ModuleAvatar.mdx
+++ /dev/null
@@ -1,59 +0,0 @@
-import { Meta, Primary, Controls, Story, Canvas } from "@storybook/blocks";
-import * as ModuleAvatarStories from "./ModuleAvatar.stories";
-
-
-
-# ModuleAvatar
-
-The ModuleAvatar component is used to display a module icon with a consistent background shape and styling.
-It's commonly used in navigation and module identification throughout the application.
-
-## Features
-
-- Three size variants: small (sm), medium (md), and large (lg)
-- Consistent squircle background shape with gradient
-- Supports all module icons from the design system
-- Accessible with proper ARIA roles
-
-## Usage
-
-```tsx
-import { ModuleAvatar, ModuleIcons } from "@factorialco/f0-react-native";
-
-function MyComponent() {
- return ;
-}
-```
-
-## Examples
-
-### Default
-
-The default ModuleAvatar uses the medium size and requires an icon prop.
-
-
-
-
-### Size Variants
-
-ModuleAvatar comes in three sizes to accommodate different use cases:
-
-
-
-### All Available Modules
-
-Here's a showcase of all available module icons that can be used with ModuleAvatar:
-
-
-
-## Props
-
-- `icon` (required): A module icon from the ModuleIcons collection
-- `size` (optional): "sm" | "md" | "lg" (defaults to "md")
-
-## Accessibility
-
-The component includes proper accessibility attributes:
-
-- Uses accessibilityRole="image"
-- Maintains good color contrast for icon visibility
diff --git a/packages/react-native-playground/components/Icon/index.stories.tsx b/packages/react-native-playground/components/Icon/index.stories.tsx
deleted file mode 100644
index 11246d6be5..0000000000
--- a/packages/react-native-playground/components/Icon/index.stories.tsx
+++ /dev/null
@@ -1,260 +0,0 @@
-import React, { useState, useEffect } from "react";
-import { ScrollView } from "react-native";
-import { View } from "react-native";
-import { Text } from "react-native";
-import { TextInput } from "react-native";
-import { TouchableOpacity } from "react-native";
-import type { Meta, StoryObj } from "@storybook/react";
-import { Icon, AppIcons, ModuleIcons } from "@factorialco/f0-react-native";
-import { type IconColorName } from "@factorialco/f0-react-native/src/lib/colors";
-
-const meta = {
- title: "Components/Icon",
- component: Icon,
- argTypes: {
- size: {
- control: "select",
- options: ["xs", "sm", "md", "lg", "xl"],
- },
- },
- args: {
- size: "md",
- icon: AppIcons.ChevronDown,
- },
- decorators: [
- (Story) => (
-
-
-
- ),
- ],
-} satisfies Meta;
-
-export default meta;
-
-type Story = StoryObj;
-
-// Helper components with proper TypeScript types
-interface IconDisplayProps {
- icon: any; // Using any to avoid import errors
- name: string;
-}
-
-interface SizeVariantProps extends IconDisplayProps {
- size: "xs" | "sm" | "md" | "lg" | "xl";
-}
-
-interface StyledIconDisplayProps extends IconDisplayProps {
- color: IconColorName;
-}
-
-const IconDisplay = ({ icon, name }: IconDisplayProps) => (
-
-
- {name}
-
-);
-
-const SizeVariant = ({ icon, name, size }: SizeVariantProps) => (
-
-
- {name}
-
-);
-
-const StyledIconDisplay = ({ icon, name, color }: StyledIconDisplayProps) => (
-
-
- {name}
-
-);
-
-type IconType = "app" | "module";
-
-export const IconsShowcase: Story = {
- args: {
- icon: AppIcons.Archive,
- },
- render: () => {
- const [searchTerm, setSearchTerm] = useState("");
- const [selectedType, setSelectedType] = useState("app");
- const [appIconList, setAppIconList] = useState<
- Array<{ name: string; icon: any }>
- >([]);
- const [moduleIconList, setModuleIconList] = useState<
- Array<{ name: string; icon: any }>
- >([]);
-
- // Generate icon lists on component mount
- useEffect(() => {
- // Create array of app icons
- const appIcons = Object.entries(AppIcons).map(([name, icon]) => ({
- name,
- icon,
- }));
-
- // Create array of module icons
- const modIcons = Object.entries(ModuleIcons).map(([name, icon]) => ({
- name,
- icon,
- }));
-
- setAppIconList(appIcons);
- setModuleIconList(modIcons);
- }, []);
-
- // Filter icons based on search term and selected type
- const filteredIcons = (
- selectedType === "app" ? appIconList : moduleIconList
- ).filter((item) =>
- item.name.toLowerCase().includes(searchTerm.toLowerCase()),
- );
-
- const TabButton = ({
- type,
- label,
- count,
- }: {
- type: IconType;
- label: string;
- count: number;
- }) => (
-
- setSelectedType(type)}
- className={`py-2 px-4 ${
- selectedType === type ? "bg-f1-icon-info" : "bg-f1-icon-secondary"
- }`}
- >
-
- {label} ({count})
-
-
- {selectedType === type && }
-
- );
-
- return (
-
-
-
- Search Icons
-
-
-
-
-
- item.name.toLowerCase().includes(searchTerm.toLowerCase()),
- ).length
- }
- />
-
- item.name.toLowerCase().includes(searchTerm.toLowerCase()),
- ).length
- }
- />
-
-
-
- {filteredIcons.length > 0 ? (
-
- {filteredIcons.map((item) => (
-
- ))}
-
- ) : (
-
-
- No icons found matching "{searchTerm}"
-
-
- )}
-
- );
- },
-};
-
-export const SizeVariants: Story = {
- args: {
- icon: AppIcons.ChevronDown,
- },
- render: () => (
-
- Size Variants
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ),
-};
-
-export const Styling: Story = {
- args: {
- icon: AppIcons.Heart,
- className: "text-f1-icon-critical",
- },
- render: () => (
-
- Styling Icons
-
-
-
-
-
-
-
- ),
-};
diff --git a/packages/react-native-playground/components/OneChip/index.stories.tsx b/packages/react-native-playground/components/OneChip/index.stories.tsx
deleted file mode 100644
index 936e789d82..0000000000
--- a/packages/react-native-playground/components/OneChip/index.stories.tsx
+++ /dev/null
@@ -1,119 +0,0 @@
-import { OneChip } from "@factorialco/f0-react-native";
-import type { Meta, StoryFn, StoryObj } from "@storybook/react";
-import { useState } from "react";
-import { AppIcons } from "@factorialco/f0-react-native";
-import { View } from "react-native";
-
-const meta = {
- component: OneChip,
- title: "Components/Chip",
- parameters: {
- layout: "centered",
- },
- decorators: [
- (Story: StoryFn) => (
-
-
-
- ),
- ],
- argTypes: {
- label: {
- description: "The label of the chip",
- },
- variant: {
- description: "The variant of the chip",
- options: ["default", "selected"],
- control: { type: "select" },
- },
- icon: {
- control: "select",
- options: Object.keys(AppIcons),
- mapping: AppIcons,
- description: "If defined, an icon will be displayed in the chip",
- },
- onClose: {
- description:
- "If defined, the close icon will be displayed and the chip will be clickable",
- },
- },
-} satisfies Meta;
-
-export default meta;
-type Story = StoryObj;
-
-export const Default: Story = {
- args: {
- label: "Label",
- variant: "default",
- },
-};
-
-export const WithClose: Story = {
- args: {
- label: "Label",
- variant: "default",
- },
- render: () => {
- const [chips, setChips] = useState([
- { id: 1, label: "First Chip" },
- { id: 2, label: "Second Chip" },
- { id: 3, label: "Third Chip" },
- ]);
-
- const handleClose = (id: number) => {
- setChips((prevChips) => prevChips.filter((chip) => chip.id !== id));
- };
-
- return (
-
- {chips.map((chip) => (
- handleClose(chip.id)}
- />
- ))}
-
- );
- },
-};
-
-export const WithIcon: Story = {
- args: {
- label: "Label",
- icon: AppIcons.Placeholder,
- },
-};
-
-export const SelectedWithClose: Story = {
- args: {
- label: "Label",
- variant: "selected",
- },
- render: () => {
- const [chips, setChips] = useState([
- { id: 1, label: "First Chip" },
- { id: 2, label: "Second Chip" },
- { id: 3, label: "Third Chip" },
- ]);
-
- const handleClose = (id: number) => {
- setChips((prevChips) => prevChips.filter((chip) => chip.id !== id));
- };
-
- return (
-
- {chips.map((chip) => (
- handleClose(chip.id)}
- />
- ))}
-
- );
- },
-};
diff --git a/packages/react-native-playground/components/ThemeToggle.tsx b/packages/react-native-playground/components/ThemeToggle.tsx
deleted file mode 100644
index c89471f9cb..0000000000
--- a/packages/react-native-playground/components/ThemeToggle.tsx
+++ /dev/null
@@ -1,38 +0,0 @@
-import { Pressable, View } from 'react-native';
-import { setAndroidNavigationBar } from '~/lib/android-navigation-bar';
-import { MoonStar } from '~/lib/icons/MoonStar';
-import { Sun } from '~/lib/icons/Sun';
-import { useColorScheme } from '~/lib/useColorScheme';
-import { cn } from '~/lib/utils';
-
-export function ThemeToggle() {
- const { isDarkColorScheme, setColorScheme } = useColorScheme();
-
- function toggleColorScheme() {
- const newTheme = isDarkColorScheme ? 'light' : 'dark';
- setColorScheme(newTheme);
- setAndroidNavigationBar(newTheme);
- }
-
- return (
-
- {({ pressed }) => (
-
- {isDarkColorScheme ? (
-
- ) : (
-
- )}
-
- )}
-
- );
-}
diff --git a/packages/react-native-playground/components/ui/avatar.tsx b/packages/react-native-playground/components/ui/avatar.tsx
deleted file mode 100644
index b2343d7155..0000000000
--- a/packages/react-native-playground/components/ui/avatar.tsx
+++ /dev/null
@@ -1,45 +0,0 @@
-import * as AvatarPrimitive from '@rn-primitives/avatar';
-import * as React from 'react';
-import { cn } from '~/lib/utils';
-
-const AvatarPrimitiveRoot = AvatarPrimitive.Root;
-const AvatarPrimitiveImage = AvatarPrimitive.Image;
-const AvatarPrimitiveFallback = AvatarPrimitive.Fallback;
-
-const Avatar = React.forwardRef(
- ({ className, ...props }, ref) => (
-
- )
-);
-Avatar.displayName = AvatarPrimitiveRoot.displayName;
-
-const AvatarImage = React.forwardRef(
- ({ className, ...props }, ref) => (
-
- )
-);
-AvatarImage.displayName = AvatarPrimitiveImage.displayName;
-
-const AvatarFallback = React.forwardRef(
- ({ className, ...props }, ref) => (
-
- )
-);
-AvatarFallback.displayName = AvatarPrimitiveFallback.displayName;
-
-export { Avatar, AvatarFallback, AvatarImage };
diff --git a/packages/react-native-playground/components/ui/button.tsx b/packages/react-native-playground/components/ui/button.tsx
deleted file mode 100644
index 5e0e4a0975..0000000000
--- a/packages/react-native-playground/components/ui/button.tsx
+++ /dev/null
@@ -1,88 +0,0 @@
-import { cva, type VariantProps } from 'class-variance-authority';
-import * as React from 'react';
-import { Pressable } from 'react-native';
-import { TextClassContext } from '~/components/ui/text';
-import { cn } from '~/lib/utils';
-
-const buttonVariants = cva(
- 'group flex items-center justify-center rounded-md web:ring-offset-background web:transition-colors web:focus-visible:outline-none web:focus-visible:ring-2 web:focus-visible:ring-ring web:focus-visible:ring-offset-2',
- {
- variants: {
- variant: {
- default: 'bg-primary web:hover:opacity-90 active:opacity-90',
- destructive: 'bg-destructive web:hover:opacity-90 active:opacity-90',
- outline:
- 'border border-input bg-background web:hover:bg-accent web:hover:text-accent-foreground active:bg-accent',
- secondary: 'bg-secondary web:hover:opacity-80 active:opacity-80',
- ghost: 'web:hover:bg-accent web:hover:text-accent-foreground active:bg-accent',
- link: 'web:underline-offset-4 web:hover:underline web:focus:underline ',
- },
- size: {
- default: 'h-10 px-4 py-2 native:h-12 native:px-5 native:py-3',
- sm: 'h-9 rounded-md px-3',
- lg: 'h-11 rounded-md px-8 native:h-14',
- icon: 'h-10 w-10',
- },
- },
- defaultVariants: {
- variant: 'default',
- size: 'default',
- },
- }
-);
-
-const buttonTextVariants = cva(
- 'web:whitespace-nowrap text-sm native:text-base font-medium text-foreground web:transition-colors',
- {
- variants: {
- variant: {
- default: 'text-primary-foreground',
- destructive: 'text-destructive-foreground',
- outline: 'group-active:text-accent-foreground',
- secondary: 'text-secondary-foreground group-active:text-secondary-foreground',
- ghost: 'group-active:text-accent-foreground',
- link: 'text-primary group-active:underline',
- },
- size: {
- default: '',
- sm: '',
- lg: 'native:text-lg',
- icon: '',
- },
- },
- defaultVariants: {
- variant: 'default',
- size: 'default',
- },
- }
-);
-
-type ButtonProps = React.ComponentPropsWithoutRef &
- VariantProps;
-
-const Button = React.forwardRef, ButtonProps>(
- ({ className, variant, size, ...props }, ref) => {
- return (
-
-
-
- );
- }
-);
-Button.displayName = 'Button';
-
-export { Button, buttonTextVariants, buttonVariants };
-export type { ButtonProps };
diff --git a/packages/react-native-playground/components/ui/card.tsx b/packages/react-native-playground/components/ui/card.tsx
deleted file mode 100644
index 9f190c290e..0000000000
--- a/packages/react-native-playground/components/ui/card.tsx
+++ /dev/null
@@ -1,57 +0,0 @@
-import type { TextRef, ViewRef } from '@rn-primitives/types';
-import * as React from 'react';
-import { Text, TextProps, View, ViewProps } from 'react-native';
-import { TextClassContext } from '~/components/ui/text';
-import { cn } from '~/lib/utils';
-
-const Card = React.forwardRef(({ className, ...props }, ref) => (
-
-));
-Card.displayName = 'Card';
-
-const CardHeader = React.forwardRef(({ className, ...props }, ref) => (
-
-));
-CardHeader.displayName = 'CardHeader';
-
-const CardTitle = React.forwardRef>(
- ({ className, ...props }, ref) => (
-
- )
-);
-CardTitle.displayName = 'CardTitle';
-
-const CardDescription = React.forwardRef(({ className, ...props }, ref) => (
-
-));
-CardDescription.displayName = 'CardDescription';
-
-const CardContent = React.forwardRef(({ className, ...props }, ref) => (
-
-
-
-));
-CardContent.displayName = 'CardContent';
-
-const CardFooter = React.forwardRef(({ className, ...props }, ref) => (
-
-));
-CardFooter.displayName = 'CardFooter';
-
-export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle };
diff --git a/packages/react-native-playground/lib/android-navigation-bar.ts b/packages/react-native-playground/lib/android-navigation-bar.ts
deleted file mode 100644
index 78187e6b16..0000000000
--- a/packages/react-native-playground/lib/android-navigation-bar.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import * as NavigationBar from 'expo-navigation-bar';
-import { Platform } from 'react-native';
-import { NAV_THEME } from '~/lib/constants';
-
-export async function setAndroidNavigationBar(theme: 'light' | 'dark') {
- if (Platform.OS !== 'android') return;
- await NavigationBar.setButtonStyleAsync(theme === 'dark' ? 'light' : 'dark');
- await NavigationBar.setBackgroundColorAsync(
- theme === 'dark' ? NAV_THEME.dark.background : NAV_THEME.light.background
- );
-}
diff --git a/packages/react-native-playground/lib/constants.ts b/packages/react-native-playground/lib/constants.ts
deleted file mode 100644
index 7c3d02fbc6..0000000000
--- a/packages/react-native-playground/lib/constants.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-export const NAV_THEME = {
- light: {
- background: 'hsl(0 0% 100%)', // background
- border: 'hsl(240 5.9% 90%)', // border
- card: 'hsl(0 0% 100%)', // card
- notification: 'hsl(0 84.2% 60.2%)', // destructive
- primary: 'hsl(240 5.9% 10%)', // primary
- text: 'hsl(240 10% 3.9%)', // foreground
- },
- dark: {
- background: 'hsl(240 10% 3.9%)', // background
- border: 'hsl(240 3.7% 15.9%)', // border
- card: 'hsl(240 10% 3.9%)', // card
- notification: 'hsl(0 72% 51%)', // destructive
- primary: 'hsl(0 0% 98%)', // primary
- text: 'hsl(0 0% 98%)', // foreground
- },
-};
diff --git a/packages/react-native-playground/lib/icons/Info.tsx b/packages/react-native-playground/lib/icons/Info.tsx
deleted file mode 100644
index 70282e4b0a..0000000000
--- a/packages/react-native-playground/lib/icons/Info.tsx
+++ /dev/null
@@ -1,4 +0,0 @@
-import { Info } from 'lucide-react-native';
-import { iconWithClassName } from './iconWithClassName';
-iconWithClassName(Info);
-export { Info };
\ No newline at end of file
diff --git a/packages/react-native-playground/lib/icons/MoonStar.tsx b/packages/react-native-playground/lib/icons/MoonStar.tsx
deleted file mode 100644
index c884cd1a3f..0000000000
--- a/packages/react-native-playground/lib/icons/MoonStar.tsx
+++ /dev/null
@@ -1,4 +0,0 @@
-import { MoonStar } from 'lucide-react-native';
-import { iconWithClassName } from './iconWithClassName';
-iconWithClassName(MoonStar);
-export { MoonStar };
\ No newline at end of file
diff --git a/packages/react-native-playground/lib/icons/Sun.tsx b/packages/react-native-playground/lib/icons/Sun.tsx
deleted file mode 100644
index 3e2a642db2..0000000000
--- a/packages/react-native-playground/lib/icons/Sun.tsx
+++ /dev/null
@@ -1,4 +0,0 @@
-import { Sun } from 'lucide-react-native';
-import { iconWithClassName } from './iconWithClassName';
-iconWithClassName(Sun);
-export { Sun };
\ No newline at end of file
diff --git a/packages/react-native-playground/lib/useColorScheme.tsx b/packages/react-native-playground/lib/useColorScheme.tsx
deleted file mode 100644
index 8e171b6e4d..0000000000
--- a/packages/react-native-playground/lib/useColorScheme.tsx
+++ /dev/null
@@ -1,11 +0,0 @@
-import { useColorScheme as useNativewindColorScheme } from 'nativewind';
-
-export function useColorScheme() {
- const { colorScheme, setColorScheme, toggleColorScheme } = useNativewindColorScheme();
- return {
- colorScheme: colorScheme ?? 'dark',
- isDarkColorScheme: colorScheme === 'dark',
- setColorScheme,
- toggleColorScheme,
- };
-}
diff --git a/packages/react-native-playground/lib/utils.ts b/packages/react-native-playground/lib/utils.ts
deleted file mode 100644
index 2819a830d2..0000000000
--- a/packages/react-native-playground/lib/utils.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-import { clsx, type ClassValue } from 'clsx';
-import { twMerge } from 'tailwind-merge';
-
-export function cn(...inputs: ClassValue[]) {
- return twMerge(clsx(inputs));
-}
diff --git a/packages/react-native-playground/nativewind-env.d.ts b/packages/react-native-playground/nativewind-env.d.ts
deleted file mode 100644
index a13e3136bb..0000000000
--- a/packages/react-native-playground/nativewind-env.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-///
diff --git a/packages/react-native-playground/package.json b/packages/react-native-playground/package.json
deleted file mode 100644
index fcd5298c40..0000000000
--- a/packages/react-native-playground/package.json
+++ /dev/null
@@ -1,68 +0,0 @@
-{
- "name": "react-native-playground",
- "main": "index.js",
- "version": "1.0.0",
- "scripts": {
- "dev": "expo start -c",
- "dev:web": "expo start -c --web",
- "dev:android": "expo start -c --android",
- "dev:storybook": "STORYBOOK_ENABLED=true expo start -c",
- "dev:app": "STORYBOOK_ENABLED=false expo start -c",
- "android": "expo start -c --android",
- "ios": "expo start -c --ios",
- "web": "expo start -c --web",
- "clean": "rm -rf .expo node_modules",
- "postinstall": "npx tailwindcss -i ./global.css -o ./node_modules/.cache/nativewind/global.css",
- "storybook-generate": "sb-rn-get-stories"
- },
- "dependencies": {
- "@factorialco/f0-core": "workspace:*",
- "@factorialco/f0-react-native": "workspace:*",
- "@react-navigation/native": "^7.0.0",
- "@rn-primitives/avatar": "~1.1.0",
- "@rn-primitives/portal": "~1.1.0",
- "@rn-primitives/progress": "~1.1.0",
- "@rn-primitives/slot": "~1.1.0",
- "@rn-primitives/tooltip": "~1.1.0",
- "@rn-primitives/types": "~1.1.0",
- "class-variance-authority": "^0.7.0",
- "clsx": "^2.1.0",
- "expo": "^52.0.25",
- "expo-clipboard": "^7.1.4",
- "expo-linking": "~7.0.4",
- "expo-navigation-bar": "~4.0.7",
- "expo-splash-screen": "~0.29.20",
- "expo-status-bar": "~2.0.1",
- "expo-system-ui": "~4.0.7",
- "lucide-react-native": "^0.378.0",
- "nativewind": "^4.1.23",
- "react": "18.3.1",
- "react-dom": "18.3.1",
- "react-native": "0.76.9",
- "react-native-reanimated": "~3.16.1",
- "react-native-safe-area-context": "4.12.0",
- "react-native-screens": "^4.4.0",
- "react-native-svg": "15.8.0",
- "react-native-web": "~0.19.13",
- "tailwind-merge": "^2.2.1",
- "tailwindcss": "3.3.5",
- "tailwindcss-animate": "^1.0.7",
- "zustand": "^4.4.7"
- },
- "devDependencies": {
- "@babel/core": "^7.26.0",
- "@gorhom/bottom-sheet": "^5.1.2",
- "@react-native-async-storage/async-storage": "^2.1.2",
- "@react-native-community/datetimepicker": "^8.3.0",
- "@react-native-community/slider": "^4.5.6",
- "@storybook/addon-ondevice-actions": "^8.6.4",
- "@storybook/addon-ondevice-controls": "^8.6.4",
- "@storybook/addon-ondevice-notes": "^8.6.4",
- "@storybook/react-native": "^8.6.4",
- "@types/react": "~18.3.12",
- "babel-loader": "^8.4.1",
- "react-native-gesture-handler": "^2.25.0",
- "typescript": "^5.3.3"
- },
- "private": true
-}
diff --git a/packages/react-native-playground/tailwind.config.ts b/packages/react-native-playground/tailwind.config.ts
deleted file mode 100644
index 6214166a83..0000000000
--- a/packages/react-native-playground/tailwind.config.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-const baseConfig = require("@factorialco/f0-react-native/tailwind.config");
-
-/** @type {import("tailwindcss").Config} */
-module.exports = {
- ...baseConfig,
- content: [
- "./app/**/*.{ts,tsx}",
- "./components/**/*.{ts,tsx}",
- "./node_modules/@factorialco/f0-react-native/**/*.{ts,tsx}",
- ],
-};
diff --git a/packages/react-native-playground/tsconfig.json b/packages/react-native-playground/tsconfig.json
deleted file mode 100644
index 92a863d0b0..0000000000
--- a/packages/react-native-playground/tsconfig.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "extends": "expo/tsconfig.base",
- "compilerOptions": {
- "strict": true,
- "baseUrl": ".",
- "paths": {
- "@factorialco/f0-core": ["../core/src"],
- "~/*": ["*"]
- }
- },
- "include": [
- "**/*.ts",
- "**/*.tsx",
- ".expo/types/**/*.ts",
- "expo-env.d.ts",
- "nativewind-env.d.ts"
- ]
-}
diff --git a/packages/react-native/.gitignore b/packages/react-native/.gitignore
new file mode 100644
index 0000000000..d1f35cd341
--- /dev/null
+++ b/packages/react-native/.gitignore
@@ -0,0 +1,15 @@
+
+# @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb
+# The following patterns were generated by expo-cli
+
+expo-env.d.ts
+# @end expo-cli
+
+# Expo
+.expo/
+*.expo.*
+
+# Distribution
+dist/
+package/
+*.tgz
\ No newline at end of file
diff --git a/packages/react-native/.npmrc b/packages/react-native/.npmrc
new file mode 100644
index 0000000000..2a5df88336
--- /dev/null
+++ b/packages/react-native/.npmrc
@@ -0,0 +1,3 @@
+# Monorepo configuration for React Native package
+shamefully-hoist=true
+strict-peer-dependencies=false
diff --git a/packages/react-native/.storybook/index.ts b/packages/react-native/.storybook/index.ts
new file mode 100644
index 0000000000..93fedd5e43
--- /dev/null
+++ b/packages/react-native/.storybook/index.ts
@@ -0,0 +1,19 @@
+import AsyncStorage from "@react-native-async-storage/async-storage";
+import { view } from "./storybook.requires";
+
+const StorybookUIRoot = view.getStorybookUI({
+ storage: {
+ getItem: AsyncStorage.getItem,
+ setItem: AsyncStorage.setItem,
+ },
+ // Enable tab mode instead of drawer - much better for Android
+ enableWebsockets: true,
+ // Start with the navigator closed
+ isUIHidden: false,
+ // Use bottom tabs instead of sidebar
+ shouldDisableKeyboardAvoidingView: true,
+ // Make sure gestures work
+ shouldPersistSelection: true,
+});
+
+export default StorybookUIRoot;
diff --git a/packages/react-native-playground/.storybook/main.ts b/packages/react-native/.storybook/main.ts
similarity index 76%
rename from packages/react-native-playground/.storybook/main.ts
rename to packages/react-native/.storybook/main.ts
index f306f71de7..8a1686fc03 100644
--- a/packages/react-native-playground/.storybook/main.ts
+++ b/packages/react-native/.storybook/main.ts
@@ -2,8 +2,8 @@ import { StorybookConfig } from "@storybook/react-native";
const main: StorybookConfig = {
stories: [
- "../components/**/*.stories.?(ts|tsx)",
- "../modules/**/*.stories.?(ts|tsx)",
+ "../src/components/**/*.stories.?(ts|tsx)",
+ "../src/experimental/**/*.stories.?(ts|tsx)",
"./stories/**/*.stories.?(ts|tsx|js|jsx)",
],
addons: [
diff --git a/packages/react-native-playground/.storybook/preview.tsx b/packages/react-native/.storybook/preview.tsx
similarity index 92%
rename from packages/react-native-playground/.storybook/preview.tsx
rename to packages/react-native/.storybook/preview.tsx
index e3c8d77dd5..a8920322f6 100644
--- a/packages/react-native-playground/.storybook/preview.tsx
+++ b/packages/react-native/.storybook/preview.tsx
@@ -1,6 +1,7 @@
import React from "react";
import type { Preview } from "@storybook/react";
import { View } from "react-native";
+import "../playground/global.css";
const preview: Preview = {
decorators: [
diff --git a/packages/react-native-playground/.storybook/storybook.requires.ts b/packages/react-native/.storybook/storybook.requires.ts
similarity index 93%
rename from packages/react-native-playground/.storybook/storybook.requires.ts
rename to packages/react-native/.storybook/storybook.requires.ts
index e09a9f2422..cbdade90bf 100644
--- a/packages/react-native-playground/.storybook/storybook.requires.ts
+++ b/packages/react-native/.storybook/storybook.requires.ts
@@ -9,26 +9,26 @@ import "@storybook/addon-ondevice-actions/register";
const normalizedStories = [
{
titlePrefix: "",
- directory: "./components",
+ directory: "./src/components",
files: "**/*.stories.?(ts|tsx)",
importPathMatcher:
/^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.(?:ts|tsx)?)$/,
// @ts-ignore
req: require.context(
- "../components",
+ "../src/components",
true,
/^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.(?:ts|tsx)?)$/,
),
},
{
titlePrefix: "",
- directory: "./modules",
+ directory: "./src/experimental",
files: "**/*.stories.?(ts|tsx)",
importPathMatcher:
/^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.(?:ts|tsx)?)$/,
// @ts-ignore
req: require.context(
- "../modules",
+ "../src/experimental",
true,
/^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.(?:ts|tsx)?)$/,
),
diff --git a/packages/react-native-playground/app.json b/packages/react-native/app.json
similarity index 51%
rename from packages/react-native-playground/app.json
rename to packages/react-native/app.json
index 39cd38c81f..25ca4ea9db 100644
--- a/packages/react-native-playground/app.json
+++ b/packages/react-native/app.json
@@ -1,15 +1,13 @@
{
"expo": {
- "name": "react-native-playground",
- "slug": "react-native-playground",
+ "name": "F0 React Native Storybook",
+ "slug": "f0-react-native-storybook",
"version": "1.0.0",
"orientation": "portrait",
- "icon": "./assets/images/icon.png",
- "scheme": "myapp",
- "userInterfaceStyle": "automatic",
- "newArchEnabled": true,
+ "icon": "./playground/assets/icon.svg",
+ "userInterfaceStyle": "light",
"splash": {
- "image": "./assets/images/splash.png",
+ "image": "./playground/assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
@@ -19,14 +17,13 @@
},
"android": {
"adaptiveIcon": {
- "foregroundImage": "./assets/images/adaptive-icon.png",
+ "foregroundImage": "./playground/assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
- "bundler": "metro",
- "output": "static",
- "favicon": "./assets/images/favicon.png"
+ "favicon": "./playground/assets/favicon.png",
+ "bundler": "metro"
},
"plugins": ["expo-router"],
"experiments": {
diff --git a/packages/react-native/babel.config.cjs b/packages/react-native/babel.config.cjs
deleted file mode 100644
index 2138e6a917..0000000000
--- a/packages/react-native/babel.config.cjs
+++ /dev/null
@@ -1,3 +0,0 @@
-module.exports = {
- presets: ["babel-preset-expo", "@babel/preset-typescript"],
-};
diff --git a/packages/react-native/babel.config.js b/packages/react-native/babel.config.js
new file mode 100644
index 0000000000..565fb74b60
--- /dev/null
+++ b/packages/react-native/babel.config.js
@@ -0,0 +1,23 @@
+module.exports = function (api) {
+ api.cache(true);
+ return {
+ presets: [
+ ["babel-preset-expo", { jsxImportSource: "nativewind" }],
+ "nativewind/babel",
+ ],
+ plugins: [
+ [
+ "module-resolver",
+ {
+ root: ["./src", "./playground"],
+ alias: {
+ "@": "./src",
+ lib: "./playground/lib",
+ ui: "./playground/ui",
+ },
+ },
+ ],
+ "react-native-reanimated/plugin",
+ ],
+ };
+};
diff --git a/packages/react-native/eslint.config.mjs b/packages/react-native/eslint.config.mjs
index d205bda366..cf522c415a 100644
--- a/packages/react-native/eslint.config.mjs
+++ b/packages/react-native/eslint.config.mjs
@@ -23,7 +23,12 @@ const reactSettings = {
export default [
// Ignore dist and other config files
{
- ignores: ["**/dist", "**/.eslintrc.cjs", "**/babel.config.cjs"],
+ ignores: [
+ "**/dist",
+ "**/.eslintrc.cjs",
+ "**/babel.config.cjs",
+ ".storybook/storybook.requires.ts",
+ ],
},
// Main React Native configuration
diff --git a/packages/react-native-playground/index.js b/packages/react-native/index.js
similarity index 77%
rename from packages/react-native-playground/index.js
rename to packages/react-native/index.js
index b39b2bfa35..5f5c11de71 100644
--- a/packages/react-native-playground/index.js
+++ b/packages/react-native/index.js
@@ -1,7 +1,14 @@
+// Import side effects first and services
+
+// Initialize services
+
+// Register app entry through Expo Router
+import "expo-router/entry";
+
import { registerRootComponent } from "expo";
import { ExpoRoot } from "expo-router";
import StorybookUIRoot from "./.storybook";
-import "./global.css";
+import "./playground/global.css";
// Check for STORYBOOK_ENABLED environment variable
// This allows using:
@@ -14,7 +21,7 @@ const SHOW_STORYBOOK = process.env.STORYBOOK_ENABLED === "true" || true;
// Must be exported or Fast Refresh won't update the context
export function App() {
- const ctx = require.context("./app");
+ const ctx = require.context("./playground/app");
return ;
}
diff --git a/packages/react-native-playground/metro.config.js b/packages/react-native/metro.config.js
similarity index 75%
rename from packages/react-native-playground/metro.config.js
rename to packages/react-native/metro.config.js
index 0439e8eb03..00efdb38a0 100644
--- a/packages/react-native-playground/metro.config.js
+++ b/packages/react-native/metro.config.js
@@ -5,11 +5,12 @@ const withStorybook = require("@storybook/react-native/metro/withStorybook");
const config = getDefaultConfig(__dirname);
-config.resolver.disableHierarchicalLookup = true;
+// Since SDK 52+, Expo automatically configures Metro for monorepos
+// No need for manual watchFolders, resolver.nodeModulesPath, or disableHierarchicalLookup
// First apply NativeWind
const nativeWindConfig = withNativeWind(config, {
- input: "./global.css",
+ input: "./playground/global.css",
inlineRem: 16,
});
diff --git a/packages/react-native/package.json b/packages/react-native/package.json
index a817c83f90..a6bdfdd823 100644
--- a/packages/react-native/package.json
+++ b/packages/react-native/package.json
@@ -1,49 +1,34 @@
{
"name": "@factorialco/f0-react-native",
"version": "0.20.1",
- "type": "module",
"description": "React Native components for F0 Design System",
- "main": "src/index.ts",
- "module": "src/index.ts",
- "exports": {
- ".": {
- "import": "./src/index.ts",
- "require": "./src/index.ts",
- "react-native": "./src/index.ts",
- "default": "./src/index.ts"
- },
- "./icons": {
- "import": "./src/icons/index.ts",
- "require": "./src/icons/index.ts",
- "react-native": "./src/icons/index.ts",
- "default": "./src/icons/index.ts"
- },
- "./icons/app": {
- "import": "./src/icons/app/index.ts",
- "require": "./src/icons/app/index.ts",
- "react-native": "./src/icons/app/index.ts",
- "default": "./src/icons/app/index.ts"
- },
- "./icons/modules": {
- "import": "./src/icons/modules/index.ts",
- "require": "./src/icons/modules/index.ts",
- "react-native": "./src/icons/modules/index.ts",
- "default": "./src/icons/modules/index.ts"
- },
- "./tailwind.config": "./tailwind.config.ts"
- },
+ "module": "./dist/index.mjs",
+ "types": "./dist/index.d.ts",
"files": [
- "src",
+ "dist",
"tailwind.config.ts"
],
"scripts": {
- "build": "echo 'we ship source code as is'; exit 0",
+ "build": "tsup",
+ "build:watch": "tsup --watch",
+ "dev": "tsup --watch",
+ "clean": "rm -rf dist",
+ "compile-css": "npx tailwindcss -i ./playground/global.css -o ./node_modules/.cache/nativewind/global.css",
+ "dev:storybook": "pnpm compile-css && STORYBOOK_ENABLED=true expo start -c",
+ "dev:app": "pnpm compile-css && STORYBOOK_ENABLED=false expo start -c",
+ "type-check": "tsc --noEmit",
"lint": "eslint -c eslint.config.mjs . --report-unused-disable-directives --max-warnings 0",
"lint-fix": "pnpm run lint -- --fix",
"test": "jest",
"generate-icons": "rm -fR src/icons/app/* src/icons/modules/* && run-p generate-app-icons generate-module-icons && find src/icons -name '*.tsx' -exec sed -i '' 's/SVGSVGElement/Svg/g; s/ xmlns=\"http:\\/\\/www.w3.org\\/2000\\/svg\"//g; s/ strokeWidth={[^}]*}//g; s/ strokeWidth=\"[^\"]*\"//g' {} +",
"generate-app-icons": "npx @svgr/cli --out-dir src/icons/app --native --svg-props className={props.className} ../../packages/core/assets/icons/app",
- "generate-module-icons": "npx @svgr/cli --out-dir src/icons/modules --native --svg-props className={props.className} ../../packages/core/assets/icons/modules"
+ "generate-module-icons": "npx @svgr/cli --out-dir src/icons/modules --native --svg-props className={props.className} ../../packages/core/assets/icons/modules",
+ "storybook-generate": "sb-rn-get-stories",
+ "start": "expo start",
+ "start:storybook": "expo start --dev-client",
+ "android": "expo start --android",
+ "ios": "expo start --ios",
+ "web": "expo start --web"
},
"keywords": [
"factorial",
@@ -56,42 +41,71 @@
"peerDependencies": {
"date-fns": "^3.6.0",
"nativewind": "^4.1.23",
- "react": "^18.2.0",
- "react-native": "^0.76.6",
+ "react": "19.0.0",
+ "react-native": "0.79.5",
"react-native-svg": "^15.8.0",
"tailwindcss": "^3.4.3",
- "twemoji-parser": "^14.0.0",
- "typescript": "^5.7.2"
+ "twemoji-parser": "^14.0.0"
},
"dependencies": {
"@factorialco/f0-core": "workspace:*",
"clsx": "^2.1.1",
"cva": "1.0.0-beta.3",
"expo-clipboard": "^7.1.4",
- "lodash": "^4.17.21",
- "react-native-safe-area-context": "4.12.0",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
+ "@babel/preset-env": "^7.28.3",
+ "@babel/runtime": "^7.28.4",
+ "@react-native-async-storage/async-storage": "^2.1.2",
+ "@react-native-community/datetimepicker": "^8.4.1",
+ "@react-native-community/slider": "^4.5.6",
+ "@rn-primitives/avatar": "~1.1.0",
+ "@rn-primitives/portal": "~1.1.0",
+ "@rn-primitives/progress": "~1.1.0",
+ "@rn-primitives/slot": "~1.1.0",
+ "@rn-primitives/tooltip": "~1.1.0",
+ "@rn-primitives/types": "~1.1.0",
+ "@storybook/addon-ondevice-actions": "^8.6.4",
+ "@storybook/addon-ondevice-controls": "^8.6.4",
+ "@storybook/addon-ondevice-notes": "^8.6.4",
+ "@storybook/react-native": "^8.6.4",
"@svgr/cli": "^8.1.0",
"@testing-library/react-native": "^12.9.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
- "@types/react": "^18.2.0",
- "@types/react-native": "^0.73.0",
+ "@types/react": "^19.0.14",
"@types/twemoji-parser": "^13.1.4",
+ "babel-jest": "^29.7.0",
+ "babel-plugin-module-resolver": "^5.0.0",
+ "date-fns": "^3.6.0",
+ "expo": "^53.0.23",
+ "expo-constants": "^17.1.7",
+ "expo-linking": "~7.1.7",
+ "expo-modules-core": "~2.5.0",
+ "expo-navigation-bar": "~4.2.8",
+ "expo-router": "^5.1.7",
+ "expo-status-bar": "~2.2.3",
+ "glob": "^11.0.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
+ "lucide-react-native": "^0.378.0",
"nativewind": "^4.1.23",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.2",
"prettier-plugin-tailwindcss": "^0.6.10",
- "react": "^18.2.0",
- "react-native": "^0.76.6",
- "react-native-svg": "^15.8.0",
+ "react": "^19.0.0",
+ "react-native": "^0.79.5",
+ "react-native-gesture-handler": "^2.24.0",
+ "react-native-reanimated": "~3.17.5",
+ "react-native-safe-area-context": "5.4.0",
+ "react-native-screens": "^4.11.1",
+ "react-native-svg": "^15.11.2",
+ "react-native-worklets": "^0.6.1",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
- "typescript": "^5.7.2",
- "babel-jest": "^29.7.0"
+ "tsup": "^8.3.5",
+ "twemoji-parser": "^14.0.0",
+ "typescript": "^5.8.3"
}
}
diff --git a/packages/react-native/playground/app/+not-found.tsx b/packages/react-native/playground/app/+not-found.tsx
new file mode 100644
index 0000000000..dec4d7c927
--- /dev/null
+++ b/packages/react-native/playground/app/+not-found.tsx
@@ -0,0 +1,18 @@
+import { Link, Stack, type Href } from "expo-router";
+import { View } from "react-native";
+import { Text } from "../ui/text";
+
+export default function NotFoundScreen() {
+ return (
+ <>
+
+
+ This screen doesn't exist.
+
+
+ Go to home screen!
+
+
+ >
+ );
+}
diff --git a/packages/react-native-playground/app/_layout.tsx b/packages/react-native/playground/app/_layout.tsx
similarity index 55%
rename from packages/react-native-playground/app/_layout.tsx
rename to packages/react-native/playground/app/_layout.tsx
index c9f8d3c642..20b3efeb9f 100644
--- a/packages/react-native-playground/app/_layout.tsx
+++ b/packages/react-native/playground/app/_layout.tsx
@@ -1,15 +1,20 @@
-import '../global.css';
+import "../global.css";
-import { DarkTheme, DefaultTheme, Theme, ThemeProvider } from '@react-navigation/native';
-import { Stack } from 'expo-router';
-import { StatusBar } from 'expo-status-bar';
-import * as React from 'react';
-import { Platform } from 'react-native';
-import { NAV_THEME } from '~/lib/constants';
-import { useColorScheme } from '~/lib/useColorScheme';
-import { PortalHost } from '@rn-primitives/portal';
-import { ThemeToggle } from '~/components/ThemeToggle';
-import { setAndroidNavigationBar } from '~/lib/android-navigation-bar';
+import {
+ DarkTheme,
+ DefaultTheme,
+ Theme,
+ ThemeProvider,
+} from "@react-navigation/native";
+import { Stack } from "expo-router";
+import { StatusBar } from "expo-status-bar";
+import * as React from "react";
+import { Platform } from "react-native";
+import { NAV_THEME } from "../lib/constants";
+import { useColorScheme } from "../lib/useColorScheme";
+import { setAndroidNavigationBar } from "../lib/android-navigation-bar";
+import { PortalHost } from "@rn-primitives/portal";
+import { ThemeToggle } from "../ui/ThemeToggle";
const LIGHT_THEME: Theme = {
...DefaultTheme,
@@ -23,7 +28,7 @@ const DARK_THEME: Theme = {
export {
// Catch any errors thrown by the Layout component.
ErrorBoundary,
-} from 'expo-router';
+} from "expo-router";
export default function RootLayout() {
const hasMounted = React.useRef(false);
@@ -35,9 +40,9 @@ export default function RootLayout() {
return;
}
- if (Platform.OS === 'web') {
+ if (Platform.OS === "web") {
// Adds the background color to the html element to prevent white background on overscroll.
- document.documentElement.classList.add('bg-background');
+ document.documentElement.classList.add("bg-background");
}
setAndroidNavigationBar(colorScheme);
setIsColorSchemeLoaded(true);
@@ -50,12 +55,12 @@ export default function RootLayout() {
return (
-
+
,
}}
/>
@@ -66,4 +71,6 @@ export default function RootLayout() {
}
const useIsomorphicLayoutEffect =
- Platform.OS === 'web' && typeof window === 'undefined' ? React.useEffect : React.useLayoutEffect;
+ Platform.OS === "web" && typeof window === "undefined"
+ ? React.useEffect
+ : React.useLayoutEffect;
diff --git a/packages/react-native-playground/app/index.tsx b/packages/react-native/playground/app/index.tsx
similarity index 65%
rename from packages/react-native-playground/app/index.tsx
rename to packages/react-native/playground/app/index.tsx
index c8faf106da..6cc466cb1e 100644
--- a/packages/react-native-playground/app/index.tsx
+++ b/packages/react-native/playground/app/index.tsx
@@ -5,9 +5,10 @@ import Animated, {
FadeOutDown,
LayoutAnimationConfig,
} from "react-native-reanimated";
-import { Info } from "~/lib/icons/Info";
-import { Avatar, AvatarFallback, AvatarImage } from "~/components/ui/avatar";
-import { Button } from "~/components/ui/button";
+import { Info } from "../lib/icons/Info";
+
+import { Text } from "../ui/text";
+import { Tooltip, TooltipContent, TooltipTrigger } from "../ui/tooltip";
import {
Card,
CardContent,
@@ -15,15 +16,10 @@ import {
CardFooter,
CardHeader,
CardTitle,
-} from "~/components/ui/card";
-import { Progress } from "~/components/ui/progress";
-import { Text } from "~/components/ui/text";
-import {
- Tooltip,
- TooltipContent,
- TooltipTrigger,
-} from "~/components/ui/tooltip";
-import { ExampleComponent } from "@factorialco/f0-react-native";
+} from "../ui/card";
+import { Avatar, AvatarImage, AvatarFallback } from "../ui/avatar";
+import { Progress } from "../ui/progress";
+import { Button } from "../../src/components/Button";
const GITHUB_AVATAR_URI =
"https://i.pinimg.com/originals/ef/a2/8d/efa28d18a04e7fa40ed49eeb0ab660db.jpg";
@@ -36,33 +32,28 @@ export default function Screen() {
}
return (
-
-
+
+
-
+
RS
-
+
Rick Sanchez
-
Scientist
-
+
-
+
Freelance
@@ -71,22 +62,22 @@ export default function Screen() {
- Hoooo
+ Hoooo
C-137
- Age
+ Age
70
- Species
+ Species
Human
- Productivity:
+ Productivity:
-
+
{progress}%
@@ -108,11 +99,10 @@ export default function Screen() {
+ />
diff --git a/packages/react-native-playground/assets/images/adaptive-icon.png b/packages/react-native/playground/assets/adaptive-icon.png
similarity index 100%
rename from packages/react-native-playground/assets/images/adaptive-icon.png
rename to packages/react-native/playground/assets/adaptive-icon.png
diff --git a/packages/react-native-playground/assets/images/favicon.png b/packages/react-native/playground/assets/favicon.png
similarity index 100%
rename from packages/react-native-playground/assets/images/favicon.png
rename to packages/react-native/playground/assets/favicon.png
diff --git a/packages/react-native/playground/assets/icon.svg b/packages/react-native/playground/assets/icon.svg
new file mode 100644
index 0000000000..181c2cc41c
--- /dev/null
+++ b/packages/react-native/playground/assets/icon.svg
@@ -0,0 +1,4 @@
+
diff --git a/packages/react-native-playground/assets/images/splash.png b/packages/react-native/playground/assets/splash.png
similarity index 100%
rename from packages/react-native-playground/assets/images/splash.png
rename to packages/react-native/playground/assets/splash.png
diff --git a/packages/react-native-playground/global.css b/packages/react-native/playground/global.css
similarity index 100%
rename from packages/react-native-playground/global.css
rename to packages/react-native/playground/global.css
diff --git a/packages/react-native/playground/lib/android-navigation-bar.ts b/packages/react-native/playground/lib/android-navigation-bar.ts
new file mode 100644
index 0000000000..37d6aecd46
--- /dev/null
+++ b/packages/react-native/playground/lib/android-navigation-bar.ts
@@ -0,0 +1,11 @@
+import * as NavigationBar from "expo-navigation-bar";
+import { Platform } from "react-native";
+import { NAV_THEME } from "./constants";
+
+export async function setAndroidNavigationBar(theme: "light" | "dark") {
+ if (Platform.OS !== "android") return;
+ await NavigationBar.setButtonStyleAsync(theme === "dark" ? "light" : "dark");
+ await NavigationBar.setBackgroundColorAsync(
+ theme === "dark" ? NAV_THEME.dark.background : NAV_THEME.light.background,
+ );
+}
diff --git a/packages/react-native/playground/lib/constants.ts b/packages/react-native/playground/lib/constants.ts
new file mode 100644
index 0000000000..b2030fdf12
--- /dev/null
+++ b/packages/react-native/playground/lib/constants.ts
@@ -0,0 +1,18 @@
+export const NAV_THEME = {
+ light: {
+ background: "hsl(0 0% 100%)", // background
+ border: "hsl(240 5.9% 90%)", // border
+ card: "hsl(0 0% 100%)", // card
+ notification: "hsl(0 84.2% 60.2%)", // destructive
+ primary: "hsl(240 5.9% 10%)", // primary
+ text: "hsl(240 10% 3.9%)", // foreground
+ },
+ dark: {
+ background: "hsl(240 10% 3.9%)", // background
+ border: "hsl(240 3.7% 15.9%)", // border
+ card: "hsl(240 10% 3.9%)", // card
+ notification: "hsl(0 72% 51%)", // destructive
+ primary: "hsl(0 0% 98%)", // primary
+ text: "hsl(0 0% 98%)", // foreground
+ },
+};
diff --git a/packages/react-native/playground/lib/icons/Info.tsx b/packages/react-native/playground/lib/icons/Info.tsx
new file mode 100644
index 0000000000..68176e0546
--- /dev/null
+++ b/packages/react-native/playground/lib/icons/Info.tsx
@@ -0,0 +1,4 @@
+import { Info } from "lucide-react-native";
+import { iconWithClassName } from "./iconWithClassName";
+iconWithClassName(Info);
+export { Info };
diff --git a/packages/react-native/playground/lib/icons/MoonStar.tsx b/packages/react-native/playground/lib/icons/MoonStar.tsx
new file mode 100644
index 0000000000..29b65181f8
--- /dev/null
+++ b/packages/react-native/playground/lib/icons/MoonStar.tsx
@@ -0,0 +1,4 @@
+import { MoonStar } from "lucide-react-native";
+import { iconWithClassName } from "./iconWithClassName";
+iconWithClassName(MoonStar);
+export { MoonStar };
diff --git a/packages/react-native/playground/lib/icons/Sun.tsx b/packages/react-native/playground/lib/icons/Sun.tsx
new file mode 100644
index 0000000000..8b2ddfaa0f
--- /dev/null
+++ b/packages/react-native/playground/lib/icons/Sun.tsx
@@ -0,0 +1,4 @@
+import { Sun } from "lucide-react-native";
+import { iconWithClassName } from "./iconWithClassName";
+iconWithClassName(Sun);
+export { Sun };
diff --git a/packages/react-native-playground/lib/icons/iconWithClassName.ts b/packages/react-native/playground/lib/icons/iconWithClassName.ts
similarity index 61%
rename from packages/react-native-playground/lib/icons/iconWithClassName.ts
rename to packages/react-native/playground/lib/icons/iconWithClassName.ts
index c475ed1133..bf73d7eb47 100644
--- a/packages/react-native-playground/lib/icons/iconWithClassName.ts
+++ b/packages/react-native/playground/lib/icons/iconWithClassName.ts
@@ -1,10 +1,10 @@
-import type { LucideIcon } from 'lucide-react-native';
-import { cssInterop } from 'nativewind';
+import type { LucideIcon } from "lucide-react-native";
+import { cssInterop } from "nativewind";
export function iconWithClassName(icon: LucideIcon) {
cssInterop(icon, {
className: {
- target: 'style',
+ target: "style",
nativeStyleToProp: {
color: true,
opacity: true,
diff --git a/packages/react-native/playground/lib/useColorScheme.tsx b/packages/react-native/playground/lib/useColorScheme.tsx
new file mode 100644
index 0000000000..df75499f1e
--- /dev/null
+++ b/packages/react-native/playground/lib/useColorScheme.tsx
@@ -0,0 +1,12 @@
+import { useColorScheme as useNativewindColorScheme } from "nativewind";
+
+export function useColorScheme() {
+ const { colorScheme, setColorScheme, toggleColorScheme } =
+ useNativewindColorScheme();
+ return {
+ colorScheme: colorScheme ?? "dark",
+ isDarkColorScheme: colorScheme === "dark",
+ setColorScheme,
+ toggleColorScheme,
+ };
+}
diff --git a/packages/react-native/playground/lib/utils.ts b/packages/react-native/playground/lib/utils.ts
new file mode 100644
index 0000000000..a5ef193506
--- /dev/null
+++ b/packages/react-native/playground/lib/utils.ts
@@ -0,0 +1,6 @@
+import { clsx, type ClassValue } from "clsx";
+import { twMerge } from "tailwind-merge";
+
+export function cn(...inputs: ClassValue[]) {
+ return twMerge(clsx(inputs));
+}
diff --git a/packages/react-native/playground/ui/ThemeToggle.tsx b/packages/react-native/playground/ui/ThemeToggle.tsx
new file mode 100644
index 0000000000..1fd635b204
--- /dev/null
+++ b/packages/react-native/playground/ui/ThemeToggle.tsx
@@ -0,0 +1,42 @@
+import { Pressable, View } from "react-native";
+import { setAndroidNavigationBar } from "../lib/android-navigation-bar";
+import { MoonStar } from "../lib/icons/MoonStar";
+import { Sun } from "../lib/icons/Sun";
+import { useColorScheme } from "../lib/useColorScheme";
+import { cn } from "../lib/utils";
+
+export function ThemeToggle() {
+ const { isDarkColorScheme, setColorScheme } = useColorScheme();
+
+ function toggleColorScheme() {
+ const newTheme = isDarkColorScheme ? "light" : "dark";
+ setColorScheme(newTheme);
+ setAndroidNavigationBar(newTheme);
+ }
+
+ return (
+
+ {({ pressed }) => (
+
+ {isDarkColorScheme ? (
+
+ ) : (
+
+ )}
+
+ )}
+
+ );
+}
diff --git a/packages/react-native/playground/ui/avatar.tsx b/packages/react-native/playground/ui/avatar.tsx
new file mode 100644
index 0000000000..abb8814b71
--- /dev/null
+++ b/packages/react-native/playground/ui/avatar.tsx
@@ -0,0 +1,51 @@
+import * as AvatarPrimitive from "@rn-primitives/avatar";
+import * as React from "react";
+import { cn } from "../lib/utils";
+
+const AvatarPrimitiveRoot = AvatarPrimitive.Root;
+const AvatarPrimitiveImage = AvatarPrimitive.Image;
+const AvatarPrimitiveFallback = AvatarPrimitive.Fallback;
+
+const Avatar = React.forwardRef<
+ AvatarPrimitive.RootRef,
+ AvatarPrimitive.RootProps
+>(({ className, ...props }, ref) => (
+
+));
+Avatar.displayName = AvatarPrimitiveRoot.displayName;
+
+const AvatarImage = React.forwardRef<
+ AvatarPrimitive.ImageRef,
+ AvatarPrimitive.ImageProps
+>(({ className, ...props }, ref) => (
+
+));
+AvatarImage.displayName = AvatarPrimitiveImage.displayName;
+
+const AvatarFallback = React.forwardRef<
+ AvatarPrimitive.FallbackRef,
+ AvatarPrimitive.FallbackProps
+>(({ className, ...props }, ref) => (
+
+));
+AvatarFallback.displayName = AvatarPrimitiveFallback.displayName;
+
+export { Avatar, AvatarFallback, AvatarImage };
diff --git a/packages/react-native/playground/ui/button.tsx b/packages/react-native/playground/ui/button.tsx
new file mode 100644
index 0000000000..bca4baa806
--- /dev/null
+++ b/packages/react-native/playground/ui/button.tsx
@@ -0,0 +1,87 @@
+import { cva, type VariantProps } from "cva";
+import * as React from "react";
+import { Pressable } from "react-native";
+import { TextClassContext } from "./text";
+import { cn } from "../lib/utils";
+
+const buttonVariants = cva({
+ base: "group flex items-center justify-center rounded-md web:ring-offset-background web:transition-colors web:focus-visible:outline-none web:focus-visible:ring-2 web:focus-visible:ring-ring web:focus-visible:ring-offset-2",
+ variants: {
+ variant: {
+ default: "bg-primary web:hover:opacity-90 active:opacity-90",
+ destructive: "bg-destructive web:hover:opacity-90 active:opacity-90",
+ outline:
+ "border border-input bg-background web:hover:bg-accent web:hover:text-accent-foreground active:bg-accent",
+ secondary: "bg-secondary web:hover:opacity-80 active:opacity-80",
+ ghost:
+ "web:hover:bg-accent web:hover:text-accent-foreground active:bg-accent",
+ link: "web:underline-offset-4 web:hover:underline web:focus:underline ",
+ },
+ size: {
+ default: "h-10 px-4 py-2 native:h-12 native:px-5 native:py-3",
+ sm: "h-9 rounded-md px-3",
+ lg: "h-11 rounded-md px-8 native:h-14",
+ icon: "h-10 w-10",
+ },
+ },
+ defaultVariants: {
+ variant: "default",
+ size: "default",
+ },
+});
+
+const buttonTextVariants = cva({
+ base: "web:whitespace-nowrap text-sm native:text-base font-medium text-foreground web:transition-colors",
+ variants: {
+ variant: {
+ default: "text-primary-foreground",
+ destructive: "text-destructive-foreground",
+ outline: "group-active:text-accent-foreground",
+ secondary:
+ "text-secondary-foreground group-active:text-secondary-foreground",
+ ghost: "group-active:text-accent-foreground",
+ link: "text-primary group-active:underline",
+ },
+ size: {
+ default: "",
+ sm: "",
+ lg: "native:text-lg",
+ icon: "",
+ },
+ },
+ defaultVariants: {
+ variant: "default",
+ size: "default",
+ },
+});
+
+type ButtonProps = React.ComponentPropsWithoutRef &
+ VariantProps;
+
+const Button = React.forwardRef<
+ React.ElementRef,
+ ButtonProps
+>(({ className, variant, size, ...props }, ref) => {
+ return (
+
+
+
+ );
+});
+Button.displayName = "Button";
+
+export { Button, buttonTextVariants, buttonVariants };
+export type { ButtonProps };
diff --git a/packages/react-native/playground/ui/card.tsx b/packages/react-native/playground/ui/card.tsx
new file mode 100644
index 0000000000..dcead0f0cf
--- /dev/null
+++ b/packages/react-native/playground/ui/card.tsx
@@ -0,0 +1,87 @@
+import type { TextRef, ViewRef } from "@rn-primitives/types";
+import * as React from "react";
+import { Text, TextProps, View, ViewProps } from "react-native";
+import { TextClassContext } from "./text";
+import { cn } from "../lib/utils";
+
+const Card = React.forwardRef(
+ ({ className, ...props }, ref) => (
+
+ ),
+);
+Card.displayName = "Card";
+
+const CardHeader = React.forwardRef(
+ ({ className, ...props }, ref) => (
+
+ ),
+);
+CardHeader.displayName = "CardHeader";
+
+const CardTitle = React.forwardRef<
+ TextRef,
+ React.ComponentPropsWithoutRef
+>(({ className, ...props }, ref) => (
+
+));
+CardTitle.displayName = "CardTitle";
+
+const CardDescription = React.forwardRef(
+ ({ className, ...props }, ref) => (
+
+ ),
+);
+CardDescription.displayName = "CardDescription";
+
+const CardContent = React.forwardRef(
+ ({ className, ...props }, ref) => (
+
+
+
+ ),
+);
+CardContent.displayName = "CardContent";
+
+const CardFooter = React.forwardRef(
+ ({ className, ...props }, ref) => (
+
+ ),
+);
+CardFooter.displayName = "CardFooter";
+
+export {
+ Card,
+ CardContent,
+ CardDescription,
+ CardFooter,
+ CardHeader,
+ CardTitle,
+};
diff --git a/packages/react-native-playground/components/ui/progress.tsx b/packages/react-native/playground/ui/progress.tsx
similarity index 55%
rename from packages/react-native-playground/components/ui/progress.tsx
rename to packages/react-native/playground/ui/progress.tsx
index f73bf40bd6..7fb286ab2f 100644
--- a/packages/react-native-playground/components/ui/progress.tsx
+++ b/packages/react-native/playground/ui/progress.tsx
@@ -1,14 +1,14 @@
-import * as ProgressPrimitive from '@rn-primitives/progress';
-import * as React from 'react';
-import { Platform, View } from 'react-native';
+import * as ProgressPrimitive from "@rn-primitives/progress";
+import * as React from "react";
+import { Platform, View } from "react-native";
import Animated, {
Extrapolation,
interpolate,
useAnimatedStyle,
useDerivedValue,
withSpring,
-} from 'react-native-reanimated';
-import { cn } from '~/lib/utils';
+} from "react-native-reanimated";
+import { cn } from "../lib/utils";
const Progress = React.forwardRef<
ProgressPrimitive.RootRef,
@@ -19,7 +19,10 @@ const Progress = React.forwardRef<
return (
@@ -30,32 +33,46 @@ Progress.displayName = ProgressPrimitive.Root.displayName;
export { Progress };
-function Indicator({ value, className }: { value: number | undefined | null; className?: string }) {
+function Indicator({
+ value,
+ className,
+}: {
+ value: number | undefined | null;
+ className?: string;
+}) {
const progress = useDerivedValue(() => value ?? 0);
const indicator = useAnimatedStyle(() => {
return {
width: withSpring(
`${interpolate(progress.value, [0, 100], [1, 100], Extrapolation.CLAMP)}%`,
- { overshootClamping: true }
+ { overshootClamping: true },
),
};
});
- if (Platform.OS === 'web') {
+ if (Platform.OS === "web") {
return (
-
+
);
}
return (
-
+
);
}
diff --git a/packages/react-native-playground/components/ui/text.tsx b/packages/react-native/playground/ui/text.tsx
similarity index 51%
rename from packages/react-native-playground/components/ui/text.tsx
rename to packages/react-native/playground/ui/text.tsx
index 0d7af0f9ee..2b430f91ac 100644
--- a/packages/react-native-playground/components/ui/text.tsx
+++ b/packages/react-native/playground/ui/text.tsx
@@ -1,8 +1,8 @@
-import * as Slot from '@rn-primitives/slot';
-import type { SlottableTextProps, TextRef } from '@rn-primitives/types';
-import * as React from 'react';
-import { Text as RNText } from 'react-native';
-import { cn } from '~/lib/utils';
+import * as Slot from "@rn-primitives/slot";
+import type { SlottableTextProps, TextRef } from "@rn-primitives/types";
+import * as React from "react";
+import { Text as RNText } from "react-native";
+import { cn } from "../lib/utils";
const TextClassContext = React.createContext(undefined);
@@ -12,13 +12,17 @@ const Text = React.forwardRef(
const Component = asChild ? Slot.Text : RNText;
return (
);
- }
+ },
);
-Text.displayName = 'Text';
+Text.displayName = "Text";
export { Text, TextClassContext };
diff --git a/packages/react-native-playground/components/ui/tooltip.tsx b/packages/react-native/playground/ui/tooltip.tsx
similarity index 52%
rename from packages/react-native-playground/components/ui/tooltip.tsx
rename to packages/react-native/playground/ui/tooltip.tsx
index 82b65a985e..396eaf9906 100644
--- a/packages/react-native-playground/components/ui/tooltip.tsx
+++ b/packages/react-native/playground/ui/tooltip.tsx
@@ -1,9 +1,9 @@
-import * as TooltipPrimitive from '@rn-primitives/tooltip';
-import * as React from 'react';
-import { Platform, StyleSheet } from 'react-native';
-import Animated, { FadeIn, FadeOut } from 'react-native-reanimated';
-import { TextClassContext } from '~/components/ui/text';
-import { cn } from '~/lib/utils';
+import * as TooltipPrimitive from "@rn-primitives/tooltip";
+import * as React from "react";
+import { Platform, StyleSheet } from "react-native";
+import Animated, { FadeIn, FadeOut } from "react-native-reanimated";
+import { TextClassContext } from "./text";
+import { cn } from "../lib/utils";
const Tooltip = TooltipPrimitive.Root;
@@ -14,18 +14,20 @@ const TooltipContent = React.forwardRef<
TooltipPrimitive.ContentProps & { portalHost?: string }
>(({ className, sideOffset = 4, portalHost, ...props }, ref) => (
-
+
-
+
diff --git a/packages/react-native-playground/components/Activity/ActivityItem/index.stories.tsx b/packages/react-native/src/components/Activity/ActivityItem/index.stories.tsx
similarity index 94%
rename from packages/react-native-playground/components/Activity/ActivityItem/index.stories.tsx
rename to packages/react-native/src/components/Activity/ActivityItem/index.stories.tsx
index 2acf496e19..1b9b642549 100644
--- a/packages/react-native-playground/components/Activity/ActivityItem/index.stories.tsx
+++ b/packages/react-native/src/components/Activity/ActivityItem/index.stories.tsx
@@ -1,13 +1,10 @@
import React from "react";
import { ScrollView, View, Text } from "react-native";
import type { Meta, StoryObj } from "@storybook/react";
-import {
- ActivityItem,
- ActivityItemSkeleton,
-} from "@factorialco/f0-react-native";
-import { AppIcons } from "@factorialco/f0-react-native";
+import { ActivityItem, ActivityItemSkeleton } from "./index";
+import { AppIcons } from "../../../icons";
-const meta = {
+const meta: Meta = {
title: "Components/ActivityItem",
component: ActivityItem,
argTypes: {
@@ -126,7 +123,7 @@ export const ActivityItemList: Story = {
return (
-
+
Activity Feed
diff --git a/packages/react-native/src/components/Avatars/BaseAvatar/utils.ts b/packages/react-native/src/components/Avatars/BaseAvatar/utils.ts
index 2c30376d57..fbd91059f8 100644
--- a/packages/react-native/src/components/Avatars/BaseAvatar/utils.ts
+++ b/packages/react-native/src/components/Avatars/BaseAvatar/utils.ts
@@ -17,7 +17,7 @@ export function getInitials(
const isSmall = size === "xsmall" || size === "small";
const minChar = isFile ? 3 : 2;
- if (isSmall) return (nameArray[0][0] ?? "").toUpperCase();
+ if (isSmall) return (nameArray[0]?.[0] ?? "").toUpperCase();
if (!Array.isArray(name)) return name.slice(0, minChar).toUpperCase();
return nameArray
diff --git a/packages/react-native-playground/components/Avatars/CompanyAvatar/index.stories.tsx b/packages/react-native/src/components/Avatars/CompanyAvatar/index.stories.tsx
similarity index 88%
rename from packages/react-native-playground/components/Avatars/CompanyAvatar/index.stories.tsx
rename to packages/react-native/src/components/Avatars/CompanyAvatar/index.stories.tsx
index 47b75cba31..2ef477b96b 100644
--- a/packages/react-native-playground/components/Avatars/CompanyAvatar/index.stories.tsx
+++ b/packages/react-native/src/components/Avatars/CompanyAvatar/index.stories.tsx
@@ -1,8 +1,8 @@
import React from "react";
import { View } from "react-native";
import type { Meta, StoryObj } from "@storybook/react";
-import { CompanyAvatar } from "@factorialco/f0-react-native";
-import { Check } from "@factorialco/f0-react-native/src/icons/app";
+import { CompanyAvatar } from "./index";
+import { Check } from "../../../icons/app";
export const sizes = ["xsmall", "small", "medium", "large", "xlarge"] as const;
diff --git a/packages/react-native-playground/components/Avatars/DateAvatar/index.stories.tsx b/packages/react-native/src/components/Avatars/DateAvatar/index.stories.tsx
similarity index 90%
rename from packages/react-native-playground/components/Avatars/DateAvatar/index.stories.tsx
rename to packages/react-native/src/components/Avatars/DateAvatar/index.stories.tsx
index b1a44815a0..6338dec5a2 100644
--- a/packages/react-native-playground/components/Avatars/DateAvatar/index.stories.tsx
+++ b/packages/react-native/src/components/Avatars/DateAvatar/index.stories.tsx
@@ -1,4 +1,4 @@
-import { DateAvatar } from "@factorialco/f0-react-native";
+import { DateAvatar } from "./index";
import type { Meta, StoryObj } from "@storybook/react";
import { View } from "react-native";
diff --git a/packages/react-native-playground/components/Avatars/EmojiAvatar/index.stories.tsx b/packages/react-native/src/components/Avatars/EmojiAvatar/index.stories.tsx
similarity index 81%
rename from packages/react-native-playground/components/Avatars/EmojiAvatar/index.stories.tsx
rename to packages/react-native/src/components/Avatars/EmojiAvatar/index.stories.tsx
index ad2382a85b..a2e071d621 100644
--- a/packages/react-native-playground/components/Avatars/EmojiAvatar/index.stories.tsx
+++ b/packages/react-native/src/components/Avatars/EmojiAvatar/index.stories.tsx
@@ -1,9 +1,9 @@
import React from "react";
import { ScrollView, View, Text } from "react-native";
import type { Meta, StoryObj } from "@storybook/react";
-import { EmojiAvatar } from "@factorialco/f0-react-native";
+import { EmojiAvatar } from "./index";
-const meta = {
+const meta: Meta = {
title: "Components/Avatars/EmojiAvatar",
component: EmojiAvatar,
argTypes: {
@@ -37,7 +37,7 @@ type EmojiAvatarProps = {
};
const EmojiAvatarDisplay = ({ emoji, size, className }: EmojiAvatarProps) => (
-
+
);
@@ -52,10 +52,10 @@ export const Basic: Story = {
export const SizeVariants: Story = {
render: () => (
-
+
Size Variants
-
+
diff --git a/packages/react-native-playground/components/Avatars/FileAvatar/index.stories.tsx b/packages/react-native/src/components/Avatars/FileAvatar/index.stories.tsx
similarity index 91%
rename from packages/react-native-playground/components/Avatars/FileAvatar/index.stories.tsx
rename to packages/react-native/src/components/Avatars/FileAvatar/index.stories.tsx
index a2459e3139..391b2544b7 100644
--- a/packages/react-native-playground/components/Avatars/FileAvatar/index.stories.tsx
+++ b/packages/react-native/src/components/Avatars/FileAvatar/index.stories.tsx
@@ -1,9 +1,9 @@
-import { FileAvatar } from "@factorialco/f0-react-native";
-import { Check } from "@factorialco/f0-react-native/src/icons/app";
+import { FileAvatar } from "./index";
+import { Check } from "../../../icons/app";
import type { Meta, StoryObj } from "@storybook/react";
import { View } from "react-native";
-const meta = {
+const meta: Meta = {
component: FileAvatar,
decorators: [
(Story) => (
@@ -45,7 +45,7 @@ export const AllFileTypesGrid = (): React.ReactElement => {
];
return (
-
+
{fileTypes.map((fileType, index) => (
{
);
if (matchedMimeKey) {
- return FILE_TYPE_MAP[MIME_MATCH_MAP[matchedMimeKey]];
+ const fileTypeKey = MIME_MATCH_MAP[matchedMimeKey];
+ if (fileTypeKey && FILE_TYPE_MAP[fileTypeKey]) {
+ return FILE_TYPE_MAP[fileTypeKey];
+ }
}
const extension = file.name.toLowerCase().split(".").pop();
if (extension && EXTENSION_MAP[extension]) {
- return FILE_TYPE_MAP[EXTENSION_MAP[extension]];
+ const fileTypeKey = EXTENSION_MAP[extension];
+ if (fileTypeKey && FILE_TYPE_MAP[fileTypeKey]) {
+ return FILE_TYPE_MAP[fileTypeKey];
+ }
}
- return FILE_TYPE_MAP.default;
+ return FILE_TYPE_MAP.default!;
};
export { getFileTypeInfo };
diff --git a/packages/react-native/src/components/Avatars/IconAvatar/__snapshots__/index.spec.tsx.snap b/packages/react-native/src/components/Avatars/IconAvatar/__snapshots__/index.spec.tsx.snap
index 9241a5a97b..dae114d895 100644
--- a/packages/react-native/src/components/Avatars/IconAvatar/__snapshots__/index.spec.tsx.snap
+++ b/packages/react-native/src/components/Avatars/IconAvatar/__snapshots__/index.spec.tsx.snap
@@ -8,7 +8,6 @@ exports[`IconAvatar Snapshot - different sizes 1`] = `
align="xMidYMid"
bbHeight="100%"
bbWidth="100%"
- className="shrink-0 w-4 h-4 stroke-sm text-f1-foreground-secondary"
fill="none"
focusable={false}
meetOrSlice={0}
@@ -93,7 +92,6 @@ exports[`IconAvatar Snapshot - different sizes 2`] = `
align="xMidYMid"
bbHeight="100%"
bbWidth="100%"
- className="shrink-0 w-5 h-5 stroke-md text-f1-foreground-secondary"
fill="none"
focusable={false}
meetOrSlice={0}
@@ -178,7 +176,6 @@ exports[`IconAvatar Snapshot - different sizes 3`] = `
align="xMidYMid"
bbHeight="100%"
bbWidth="100%"
- className="shrink-0 w-6 h-6 stroke-lg text-f1-foreground-secondary"
fill="none"
focusable={false}
meetOrSlice={0}
diff --git a/packages/react-native-playground/components/Avatars/IconAvatar/index.stories.tsx b/packages/react-native/src/components/Avatars/IconAvatar/index.stories.tsx
similarity index 78%
rename from packages/react-native-playground/components/Avatars/IconAvatar/index.stories.tsx
rename to packages/react-native/src/components/Avatars/IconAvatar/index.stories.tsx
index e183cd46d8..2877887aef 100644
--- a/packages/react-native-playground/components/Avatars/IconAvatar/index.stories.tsx
+++ b/packages/react-native/src/components/Avatars/IconAvatar/index.stories.tsx
@@ -1,9 +1,11 @@
import React from "react";
import { ScrollView, View, Text } from "react-native";
import type { Meta, StoryObj } from "@storybook/react";
-import { IconAvatar, AppIcons } from "@factorialco/f0-react-native";
+import { IconAvatar } from "./index";
+import { AppIcons } from "../../../icons";
+import { IconType } from "../../Icon";
-const meta = {
+const meta: Meta = {
title: "Components/Avatars/IconAvatar",
component: IconAvatar,
argTypes: {
@@ -31,7 +33,7 @@ export default meta;
type Story = StoryObj;
interface AvatarDisplayProps {
- icon: any;
+ icon: IconType;
size: "sm" | "md" | "lg";
className?: string;
label?: string;
@@ -43,10 +45,10 @@ const AvatarDisplay = ({
className,
label,
}: AvatarDisplayProps) => (
-
+
{label && (
-
+
{label}
)}
@@ -63,10 +65,10 @@ export const Basic: Story = {
export const SizeVariants: Story = {
render: () => (
-
+
Size Variants
-
+
@@ -78,10 +80,10 @@ export const SizeVariants: Story = {
export const Styling: Story = {
render: () => (
-
+
Custom Styling
-
+
(
-
+
Different Icons
-
+
= {
title: "Components/Avatars/ModuleAvatar",
component: ModuleAvatar,
argTypes: {
@@ -32,59 +34,59 @@ export default meta;
type Story = StoryObj;
interface SizeVariantProps {
- icon: any;
+ icon: IconType;
name: string;
size: "sm" | "md" | "lg" | "xl";
}
interface IconDisplayProps {
- icon: any;
+ icon: IconType;
name: string;
}
const SizeVariant = ({ icon, name, size }: SizeVariantProps) => (
- {name}
+ {name}
);
const IconDisplay = ({ icon, name }: IconDisplayProps) => (
-
+
- {name}
+ {name}
);
export const Default: Story = {
args: {
- icon: ModuleIcons.Home,
+ module: "home",
size: "md",
},
};
export const SizeVariants: Story = {
args: {
- icon: ModuleIcons.Home,
+ module: "home",
},
render: () => (
- Size Variants
-
+ Size Variants
+
-
+
-
+
@@ -95,12 +97,15 @@ export const SizeVariants: Story = {
};
export const AllModules: Story = {
+ args: {
+ module: "home",
+ },
render: () => {
const moduleEntries = Object.entries(ModuleIcons);
return (
-
+
All Module Avatar Icons
diff --git a/packages/react-native-playground/components/Avatars/PersonAvatar/index.stories.tsx b/packages/react-native/src/components/Avatars/PersonAvatar/index.stories.tsx
similarity index 89%
rename from packages/react-native-playground/components/Avatars/PersonAvatar/index.stories.tsx
rename to packages/react-native/src/components/Avatars/PersonAvatar/index.stories.tsx
index ed5ee14bb0..25116dffb9 100644
--- a/packages/react-native-playground/components/Avatars/PersonAvatar/index.stories.tsx
+++ b/packages/react-native/src/components/Avatars/PersonAvatar/index.stories.tsx
@@ -1,8 +1,8 @@
import React from "react";
import { View } from "react-native";
import type { Meta, StoryObj } from "@storybook/react";
-import { PersonAvatar, PersonAvatarProps } from "@factorialco/f0-react-native";
-import { Check } from "@factorialco/f0-react-native/src/icons/app";
+import { PersonAvatar, PersonAvatarProps } from "./index";
+import { Check } from "../../../icons/app";
export const sizes = ["xsmall", "small", "medium", "large", "xlarge"] as const;
@@ -11,7 +11,7 @@ const PersonAvatarExample = (
) => {
return ;
};
-const meta = {
+const meta: Meta = {
title: "Components/Avatars/PersonAvatar",
component: PersonAvatarExample,
argTypes: {
diff --git a/packages/react-native-playground/components/Avatars/TeamAvatar/index.stories.tsx b/packages/react-native/src/components/Avatars/TeamAvatar/index.stories.tsx
similarity index 88%
rename from packages/react-native-playground/components/Avatars/TeamAvatar/index.stories.tsx
rename to packages/react-native/src/components/Avatars/TeamAvatar/index.stories.tsx
index a9c351443b..f425a032e2 100644
--- a/packages/react-native-playground/components/Avatars/TeamAvatar/index.stories.tsx
+++ b/packages/react-native/src/components/Avatars/TeamAvatar/index.stories.tsx
@@ -1,8 +1,9 @@
import React from "react";
import { View } from "react-native";
import type { Meta, StoryObj } from "@storybook/react";
-import { TeamAvatar } from "@factorialco/f0-react-native";
-import { Check } from "@factorialco/f0-react-native/src/icons/app";
+
+import { Check } from "../../../icons/app";
+import { TeamAvatar } from ".";
export const sizes = ["xsmall", "small", "medium", "large", "xlarge"] as const;
diff --git a/packages/react-native-playground/components/Avatars/index.stories.tsx b/packages/react-native/src/components/Avatars/index.stories.tsx
similarity index 75%
rename from packages/react-native-playground/components/Avatars/index.stories.tsx
rename to packages/react-native/src/components/Avatars/index.stories.tsx
index de42e852ec..f2c178ab08 100644
--- a/packages/react-native-playground/components/Avatars/index.stories.tsx
+++ b/packages/react-native/src/components/Avatars/index.stories.tsx
@@ -1,17 +1,13 @@
-import {
- AppIcons,
- CompanyAvatar,
- DateAvatar,
- FileAvatar,
- IconAvatar,
- ModuleAvatar,
- ModuleIcons,
- PersonAvatar,
-} from "@factorialco/f0-react-native";
-import { Check } from "@factorialco/f0-react-native/src/icons/app";
+import { Check } from "../../icons/app";
import type { Meta, StoryFn } from "@storybook/react";
-import { icons } from "lucide-react-native";
import { ScrollView, View, Text } from "react-native";
+import { PersonAvatar } from "./PersonAvatar";
+import { DateAvatar } from "./DateAvatar";
+import { FileAvatar } from "./FileAvatar";
+import { ModuleAvatar } from "./ModuleAvatar";
+import { IconAvatar } from "./IconAvatar";
+import { AppIcons, ModuleIcons } from "../../icons";
+import { CompanyAvatar } from "./CompanyAvatar";
const meta: Meta = {
title: "Components/Avatars",
@@ -21,6 +17,7 @@ const meta: Meta = {
decorators: [
(Story: StoryFn) => (
+ {/* @ts-expect-error - Storybook type issue with Story component */}
),
@@ -59,10 +56,10 @@ export const AvatarsShowCase = () => {
];
return (
-
+
PersonAvatar
-
+
{
badge={{ icon: Check, type: "positive" }}
/>
-
+
DateAvatar
-
+
-
+
FileAvatar
-
+
{fileTypes.map((fileType, index) => (
{
/>
))}
-
+
ModuleAvatar
-
+
{moduleEntries.map(([name, icon]) => (
))}
-
+
IconAvatar
-
+
@@ -123,10 +120,10 @@ export const AvatarsShowCase = () => {
-
+
CompanyAvatar
-
+
(
+ {/* @ts-expect-error - Storybook type issue with Story component */}
),
@@ -37,10 +38,10 @@ export const ButtonShowcase = () => {
return (
{/* Basic Variants */}
-
+
Default Variants
-
+
{/* With Icons */}
-
+
With Icons
-
+
{/* Icon Only */}
-
+
Icon Only
-
+
{/* Sizes */}
- Sizes
-
+ Sizes
+
{/* States */}
- States
-
+ States
+
{/* Icon Button Groups */}
-
+
Icon Button Groups
-
+
{/* Icon Only Sizes */}
-
+
Icon Only Sizes
-
+
-
+
{/* Emoji Buttons */}
-
+
Emoji Buttons
-
+
{/* Notification Badge */}
-
+
With Notification Badge
-
+
{/* Async Example */}
-
+
Async Action
diff --git a/packages/react-native-playground/components/Counter/index.stories.tsx b/packages/react-native/src/components/Counter/index.stories.tsx
similarity index 67%
rename from packages/react-native-playground/components/Counter/index.stories.tsx
rename to packages/react-native/src/components/Counter/index.stories.tsx
index 21047cd442..c5417ae6ef 100644
--- a/packages/react-native-playground/components/Counter/index.stories.tsx
+++ b/packages/react-native/src/components/Counter/index.stories.tsx
@@ -1,5 +1,5 @@
import type { StoryFn } from "@storybook/react";
-import { Counter } from "@factorialco/f0-react-native";
+import { Counter } from "./index";
import { ScrollView, View, Text } from "react-native";
const meta = {
@@ -11,6 +11,7 @@ const meta = {
decorators: [
(Story: StoryFn) => (
+ {/* @ts-expect-error - Storybook type issue with Story component */}
),
@@ -22,42 +23,42 @@ export default meta;
export const CounterShowcase = () => {
return (
-
+
Variants by types
-
+
-
+
default
-
+
bold
-
+
selected
-
+
Variants by size
-
+
-
+
md
-
+
sm
diff --git a/packages/react-native/src/components/Icon/index.stories.tsx b/packages/react-native/src/components/Icon/index.stories.tsx
new file mode 100644
index 0000000000..3fe51bd100
--- /dev/null
+++ b/packages/react-native/src/components/Icon/index.stories.tsx
@@ -0,0 +1,263 @@
+import React, { useState, useEffect } from "react";
+import { ScrollView } from "react-native";
+import { View } from "react-native";
+import { Text } from "react-native";
+import { TextInput } from "react-native";
+import { TouchableOpacity } from "react-native";
+import type { Meta, StoryObj } from "@storybook/react";
+import { Icon, IconType } from "./index";
+import { AppIcons, ModuleIcons } from "../../icons";
+// import { type IconColorName } from "../../lib/colors";
+
+const meta: Meta = {
+ title: "Components/Icon",
+ component: Icon,
+ argTypes: {
+ size: {
+ control: "select",
+ options: ["xs", "sm", "md", "lg", "xl"],
+ },
+ },
+ args: {
+ size: "md",
+ icon: AppIcons.ChevronDown,
+ },
+ decorators: [
+ (Story) => (
+
+
+
+ ),
+ ],
+} satisfies Meta;
+
+export default meta;
+
+type Story = StoryObj;
+
+// Helper components with proper TypeScript types
+interface IconDisplayProps {
+ icon: IconType;
+ name: string;
+}
+
+interface SizeVariantProps extends IconDisplayProps {
+ size: "xs" | "sm" | "md" | "lg" | "xl";
+}
+
+interface StyledIconDisplayProps extends IconDisplayProps {
+ color: string;
+}
+
+const IconDisplay = ({ icon, name }: IconDisplayProps) => (
+
+
+ {name}
+
+);
+
+const SizeVariant = ({ icon, name, size }: SizeVariantProps) => (
+
+
+ {name}
+
+);
+
+const StyledIconDisplay = ({ icon, name, color }: StyledIconDisplayProps) => (
+
+
+ {name}
+
+);
+
+type IconCategory = "app" | "module";
+
+const IconsShowcaseComponent = () => {
+ const [searchTerm, setSearchTerm] = useState("");
+ const [selectedType, setSelectedType] = useState("app");
+ const [appIconList, setAppIconList] = useState<
+ Array<{ name: string; icon: IconType }>
+ >([]);
+ const [moduleIconList, setModuleIconList] = useState<
+ Array<{ name: string; icon: IconType }>
+ >([]);
+
+ // Generate icon lists on component mount
+ useEffect(() => {
+ // Create array of app icons
+ const appIcons = Object.entries(AppIcons).map(([name, icon]) => ({
+ name,
+ icon,
+ }));
+
+ // Create array of module icons
+ const modIcons = Object.entries(ModuleIcons).map(([name, icon]) => ({
+ name,
+ icon,
+ }));
+
+ setAppIconList(appIcons);
+ setModuleIconList(modIcons);
+ }, []);
+
+ // Filter icons based on search term and selected type
+ const filteredIcons = (
+ selectedType === "app" ? appIconList : moduleIconList
+ ).filter((item) =>
+ item.name.toLowerCase().includes(searchTerm.toLowerCase()),
+ );
+
+ const TabButton = ({
+ type,
+ label,
+ count,
+ }: {
+ type: IconCategory;
+ label: string;
+ count: number;
+ }) => (
+
+ setSelectedType(type)}
+ className={`px-4 py-2 ${
+ selectedType === type ? "bg-f1-icon-info" : "bg-f1-icon-secondary"
+ }`}
+ >
+
+ {label} ({count})
+
+
+ {selectedType === type && }
+
+ );
+
+ return (
+
+
+
+ Search Icons
+
+
+
+
+
+ item.name.toLowerCase().includes(searchTerm.toLowerCase()),
+ ).length
+ }
+ />
+
+ item.name.toLowerCase().includes(searchTerm.toLowerCase()),
+ ).length
+ }
+ />
+
+
+
+ {filteredIcons.length > 0 ? (
+
+ {filteredIcons.map((item) => (
+
+ ))}
+
+ ) : (
+
+
+ No icons found matching "{searchTerm}"
+
+
+ )}
+
+ );
+};
+
+export const IconsShowcase: Story = {
+ args: {
+ icon: AppIcons.Archive,
+ },
+ render: () => ,
+};
+
+export const SizeVariants: Story = {
+ args: {
+ icon: AppIcons.ChevronDown,
+ },
+ render: () => (
+
+ Size Variants
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ),
+};
+
+export const Styling: Story = {
+ args: {
+ icon: AppIcons.Heart,
+ className: "text-f1-icon-critical",
+ },
+ render: () => (
+
+ Styling Icons
+
+
+
+
+
+
+
+ ),
+};
diff --git a/packages/react-native/src/components/Navigation/PageHeader/__snapshots__/index.spec.tsx.snap b/packages/react-native/src/components/Navigation/PageHeader/__snapshots__/index.spec.tsx.snap
index e432c82b5e..9fc7b4c057 100644
--- a/packages/react-native/src/components/Navigation/PageHeader/__snapshots__/index.spec.tsx.snap
+++ b/packages/react-native/src/components/Navigation/PageHeader/__snapshots__/index.spec.tsx.snap
@@ -52,7 +52,6 @@ exports[`PageHeader Snapshot - renders correctly with multiple actions 1`] = `
Icon:
- Bell
Badge
@@ -98,7 +97,6 @@ exports[`PageHeader Snapshot - renders correctly with multiple actions 1`] = `
Icon:
- Bell
@@ -157,7 +155,6 @@ exports[`PageHeader Snapshot - renders correctly with one action 1`] = `
Icon:
- Bell
@@ -216,7 +213,6 @@ exports[`PageHeader Snapshot - renders correctly with one action with a badge 1`
Icon:
- Bell
Badge
diff --git a/packages/react-native-playground/components/Navigation/PageHeader/index.stories.tsx b/packages/react-native/src/components/Navigation/PageHeader/index.stories.tsx
similarity index 77%
rename from packages/react-native-playground/components/Navigation/PageHeader/index.stories.tsx
rename to packages/react-native/src/components/Navigation/PageHeader/index.stories.tsx
index f7ff60796a..71fb8e4ba8 100644
--- a/packages/react-native-playground/components/Navigation/PageHeader/index.stories.tsx
+++ b/packages/react-native/src/components/Navigation/PageHeader/index.stories.tsx
@@ -1,7 +1,7 @@
import React from "react";
import { ScrollView, View, Text } from "react-native";
import type { Meta, StoryFn } from "@storybook/react";
-import { PageHeader } from "@factorialco/f0-react-native";
+import { PageHeader } from "./index";
const meta: Meta = {
title: "Components/Navigation/PageHeader",
@@ -12,6 +12,7 @@ const meta: Meta = {
decorators: [
(Story: StoryFn) => (
+ {/* @ts-expect-error - Storybook type issue with Story component */}
),
@@ -23,12 +24,12 @@ export default meta;
export const Showcase = () => {
return (
-
+
Default
-
+
With action
{
]}
/>
-
+
With action and badge
(
+
+ {/* @ts-expect-error - Storybook type issue with Story component */}
+
+
+ ),
+ ],
+ argTypes: {
+ label: {
+ description: "The label of the chip",
+ },
+ variant: {
+ description: "The variant of the chip",
+ options: ["default", "selected"],
+ control: { type: "select" },
+ },
+ icon: {
+ control: "select",
+ options: Object.keys(AppIcons),
+ mapping: AppIcons,
+ description: "If defined, an icon will be displayed in the chip",
+ },
+ onClose: {
+ description:
+ "If defined, the close icon will be displayed and the chip will be clickable",
+ },
+ },
+} satisfies Meta;
+
+export default meta;
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ label: "Label",
+ variant: "default",
+ },
+};
+
+const WithCloseComponent = () => {
+ const [chips, setChips] = useState([
+ { id: 1, label: "First Chip" },
+ { id: 2, label: "Second Chip" },
+ { id: 3, label: "Third Chip" },
+ ]);
+
+ const handleClose = (id: number) => {
+ setChips((prevChips) => prevChips.filter((chip) => chip.id !== id));
+ };
+
+ return (
+
+ {chips.map((chip) => (
+ handleClose(chip.id)}
+ />
+ ))}
+
+ );
+};
+
+export const WithClose: Story = {
+ args: {
+ label: "Label",
+ variant: "default",
+ },
+ render: () => ,
+};
+
+export const WithIcon: Story = {
+ args: {
+ label: "Label",
+ icon: AppIcons.Placeholder,
+ },
+};
+
+const SelectedWithCloseComponent = () => {
+ const [chips, setChips] = useState([
+ { id: 1, label: "First Chip" },
+ { id: 2, label: "Second Chip" },
+ { id: 3, label: "Third Chip" },
+ ]);
+
+ const handleClose = (id: number) => {
+ setChips((prevChips) => prevChips.filter((chip) => chip.id !== id));
+ };
+
+ return (
+
+ {chips.map((chip) => (
+ handleClose(chip.id)}
+ />
+ ))}
+
+ );
+};
+
+export const SelectedWithClose: Story = {
+ args: {
+ label: "Label",
+ variant: "selected",
+ },
+ render: () => ,
+};
diff --git a/packages/react-native/src/components/OneChip/index.tsx b/packages/react-native/src/components/OneChip/index.tsx
index e3411f6edc..95b4cd592c 100644
--- a/packages/react-native/src/components/OneChip/index.tsx
+++ b/packages/react-native/src/components/OneChip/index.tsx
@@ -30,7 +30,7 @@ export const chipTextVariants = cva({
},
});
-interface ChipProps extends VariantProps {
+export interface ChipProps extends VariantProps {
label: string;
icon?: IconType;
onClick?: () => void;
diff --git a/packages/react-native-playground/components/OnePreset/index.stories.tsx b/packages/react-native/src/components/OnePreset/index.stories.tsx
similarity index 71%
rename from packages/react-native-playground/components/OnePreset/index.stories.tsx
rename to packages/react-native/src/components/OnePreset/index.stories.tsx
index 29be70793d..e53b558de7 100644
--- a/packages/react-native-playground/components/OnePreset/index.stories.tsx
+++ b/packages/react-native/src/components/OnePreset/index.stories.tsx
@@ -1,5 +1,5 @@
import type { StoryFn } from "@storybook/react";
-import { OnePreset } from "@factorialco/f0-react-native";
+import { OnePreset } from "./index";
import { ScrollView, View, Text } from "react-native";
import { useState } from "react";
@@ -12,6 +12,7 @@ const meta = {
decorators: [
(Story: StoryFn) => (
+ {/* @ts-expect-error - Storybook type issue with Story component */}
),
@@ -26,9 +27,9 @@ export const OnePresetShowcase = () => {
return (
-
-
-
+
+
+
Default
{
onClick={() => setIsSelectedDefault(!isSelectedDefault)}
/>
-
-
+
+
No number
{
onClick={() => setIsSelectedNoNumber(!isSelectedNoNumber)}
/>
-
-
+
+
No interactive
diff --git a/packages/react-native/src/components/OnePreset/index.tsx b/packages/react-native/src/components/OnePreset/index.tsx
index 83cb22b556..cddc7f50c3 100644
--- a/packages/react-native/src/components/OnePreset/index.tsx
+++ b/packages/react-native/src/components/OnePreset/index.tsx
@@ -2,7 +2,7 @@ import { Text, Pressable, View } from "react-native";
import { Counter } from "../Counter";
import { cn } from "../../lib/utils";
-interface PresetProps {
+export interface PresetProps {
label: string;
number?: number;
onClick?: () => void;
diff --git a/packages/react-native/src/components/Tags/AlertTab/__snapshots__/index.spec.tsx.snap b/packages/react-native/src/components/Tags/AlertTab/__snapshots__/index.spec.tsx.snap
index 67b423e206..d2b4912397 100644
--- a/packages/react-native/src/components/Tags/AlertTab/__snapshots__/index.spec.tsx.snap
+++ b/packages/react-native/src/components/Tags/AlertTab/__snapshots__/index.spec.tsx.snap
@@ -41,7 +41,6 @@ exports[`AlertTag Snapshot Critical level 1`] = `
aria-hidden={true}
bbHeight="100%"
bbWidth="100%"
- className="shrink-0 w-5 h-5 stroke-md text-f1-foreground-critical"
fill="none"
focusable={false}
meetOrSlice={0}
@@ -136,7 +135,6 @@ exports[`AlertTag Snapshot Ingo level 1`] = `
aria-hidden={true}
bbHeight="100%"
bbWidth="100%"
- className="shrink-0 w-5 h-5 stroke-md text-f1-foreground-info"
fill="none"
focusable={false}
meetOrSlice={0}
@@ -234,7 +232,6 @@ exports[`AlertTag Snapshot Warning level 1`] = `
aria-hidden={true}
bbHeight="100%"
bbWidth="100%"
- className="shrink-0 w-5 h-5 stroke-md text-f1-foreground-warning"
fill="none"
focusable={false}
meetOrSlice={0}
diff --git a/packages/react-native/src/components/Tags/RawTag/__snapshots__/index.spec.tsx.snap b/packages/react-native/src/components/Tags/RawTag/__snapshots__/index.spec.tsx.snap
index e8a41d864f..284e18e46b 100644
--- a/packages/react-native/src/components/Tags/RawTag/__snapshots__/index.spec.tsx.snap
+++ b/packages/react-native/src/components/Tags/RawTag/__snapshots__/index.spec.tsx.snap
@@ -131,7 +131,6 @@ exports[`RawTag Snapshot with icon 1`] = `
aria-hidden={true}
bbHeight="100%"
bbWidth="100%"
- className="shrink-0 w-4 h-4 stroke-sm text-f1-icon"
fill="none"
focusable={false}
meetOrSlice={0}
diff --git a/packages/react-native-playground/components/Tags/index.stories.tsx b/packages/react-native/src/components/Tags/index.stories.tsx
similarity index 64%
rename from packages/react-native-playground/components/Tags/index.stories.tsx
rename to packages/react-native/src/components/Tags/index.stories.tsx
index 2b41d8bd8f..948cf4c33e 100644
--- a/packages/react-native-playground/components/Tags/index.stories.tsx
+++ b/packages/react-native/src/components/Tags/index.stories.tsx
@@ -1,12 +1,9 @@
-import {
- AlertTag,
- DotTag,
- dotTagColors,
- AppIcons,
- RawTag,
-} from "@factorialco/f0-react-native";
+import { DotTag, dotTagColors } from "./DotTag";
import type { Meta, StoryFn } from "@storybook/react";
import { ScrollView, View, Text } from "react-native";
+import { AlertTag } from "./AlertTab";
+import { RawTag } from "./RawTag";
+import { AppIcons } from "src/icons";
const meta: Meta = {
title: "Components/Tags",
@@ -16,6 +13,7 @@ const meta: Meta = {
decorators: [
(Story: StoryFn) => (
+ {/* @ts-expect-error - Storybook type issue with Story component */}
),
@@ -26,22 +24,22 @@ export default meta;
export const TagsShowcase = () => (
- AlertTag
-
+ AlertTag
+
- DotTag
-
+ DotTag
+
{dotTagColors.map((color) => (
))}
- RawTag
-
+ RawTag
+
diff --git a/packages/react-native-playground/components/List/DataList/index.stories.tsx b/packages/react-native/src/components/experimental/Lists/DataList/index.stories.tsx
similarity index 94%
rename from packages/react-native-playground/components/List/DataList/index.stories.tsx
rename to packages/react-native/src/components/experimental/Lists/DataList/index.stories.tsx
index 9386c06cf4..805948ff7e 100644
--- a/packages/react-native-playground/components/List/DataList/index.stories.tsx
+++ b/packages/react-native/src/components/experimental/Lists/DataList/index.stories.tsx
@@ -1,7 +1,8 @@
-import { DataList } from "@factorialco/f0-react-native";
-import { Check } from "@factorialco/f0-react-native/src/icons/app";
+import { DataList } from "./index";
+
import type { Meta, StoryObj } from "@storybook/react";
import { View } from "react-native";
+import Check from "src/icons/app/Check";
const meta: Meta = {
title: "List/DataList",
diff --git a/packages/react-native/src/components/experimental/Lists/DetailsItem/__snapshots__/index.spec.tsx.snap b/packages/react-native/src/components/experimental/Lists/DetailsItem/__snapshots__/index.spec.tsx.snap
index 4f50f0a871..08e0e42bd1 100644
--- a/packages/react-native/src/components/experimental/Lists/DetailsItem/__snapshots__/index.spec.tsx.snap
+++ b/packages/react-native/src/components/experimental/Lists/DetailsItem/__snapshots__/index.spec.tsx.snap
@@ -101,7 +101,6 @@ exports[`DetailsItem Snapshot type company 1`] = `
aria-hidden={true}
bbHeight="100%"
bbWidth="100%"
- className="shrink-0 w-5 h-5 stroke-md col-start-1 col-end-2 row-start-1 row-end-2 text-f1-icon-bold"
fill="none"
focusable={false}
meetOrSlice={0}
@@ -328,7 +327,6 @@ exports[`DetailsItem Snapshot type item 1`] = `
aria-hidden={true}
bbHeight="100%"
bbWidth="100%"
- className="shrink-0 w-5 h-5 stroke-md col-start-1 col-end-2 row-start-1 row-end-2 text-f1-icon-bold"
fill="none"
focusable={false}
meetOrSlice={0}
@@ -501,7 +499,6 @@ exports[`DetailsItem Snapshot type person 1`] = `
aria-hidden={true}
bbHeight="100%"
bbWidth="100%"
- className="shrink-0 w-5 h-5 stroke-md col-start-1 col-end-2 row-start-1 row-end-2 text-f1-icon-bold"
fill="none"
focusable={false}
meetOrSlice={0}
@@ -674,7 +671,6 @@ exports[`DetailsItem Snapshot type team 1`] = `
aria-hidden={true}
bbHeight="100%"
bbWidth="100%"
- className="shrink-0 w-5 h-5 stroke-md col-start-1 col-end-2 row-start-1 row-end-2 text-f1-icon-bold"
fill="none"
focusable={false}
meetOrSlice={0}
diff --git a/packages/react-native-playground/components/List/DetailsItem/index.stories.tsx b/packages/react-native/src/components/experimental/Lists/DetailsItem/index.stories.tsx
similarity index 92%
rename from packages/react-native-playground/components/List/DetailsItem/index.stories.tsx
rename to packages/react-native/src/components/experimental/Lists/DetailsItem/index.stories.tsx
index 40ce282e8c..b5a11049e1 100644
--- a/packages/react-native-playground/components/List/DetailsItem/index.stories.tsx
+++ b/packages/react-native/src/components/experimental/Lists/DetailsItem/index.stories.tsx
@@ -1,5 +1,5 @@
-import { DetailsItem } from "@factorialco/f0-react-native";
-import type { Meta, StoryObj } from "@storybook/react-vite";
+import { DetailsItem } from "./index";
+import type { Meta, StoryObj } from "@storybook/react";
import { View } from "react-native";
const meta: Meta = {
diff --git a/packages/react-native/src/components/experimental/Lists/DetailsItemsList/__snapshots__/index.spec.tsx.snap b/packages/react-native/src/components/experimental/Lists/DetailsItemsList/__snapshots__/index.spec.tsx.snap
index 31e79fe8cb..0b903eea14 100644
--- a/packages/react-native/src/components/experimental/Lists/DetailsItemsList/__snapshots__/index.spec.tsx.snap
+++ b/packages/react-native/src/components/experimental/Lists/DetailsItemsList/__snapshots__/index.spec.tsx.snap
@@ -79,7 +79,6 @@ exports[`DetailsItemsList Snapshot 1`] = `
aria-hidden={true}
bbHeight="100%"
bbWidth="100%"
- className="shrink-0 w-5 h-5 stroke-md col-start-1 col-end-2 row-start-1 row-end-2 text-f1-icon-bold"
fill="none"
focusable={false}
meetOrSlice={0}
@@ -259,7 +258,6 @@ exports[`DetailsItemsList Snapshot 1`] = `
aria-hidden={true}
bbHeight="100%"
bbWidth="100%"
- className="shrink-0 w-5 h-5 stroke-md text-f1-foreground"
fill="none"
focusable={false}
meetOrSlice={0}
@@ -405,7 +403,6 @@ exports[`DetailsItemsList Snapshot 1`] = `
aria-hidden={true}
bbHeight="100%"
bbWidth="100%"
- className="shrink-0 w-5 h-5 stroke-md text-f1-foreground"
fill="none"
focusable={false}
meetOrSlice={0}
@@ -534,7 +531,6 @@ exports[`DetailsItemsList Snapshot 1`] = `
aria-hidden={true}
bbHeight="100%"
bbWidth="100%"
- className="shrink-0 w-5 h-5 stroke-md text-f1-foreground"
fill="none"
focusable={false}
meetOrSlice={0}
diff --git a/packages/react-native-playground/components/List/DetailsItemsList/index.stories.tsx b/packages/react-native/src/components/experimental/Lists/DetailsItemsList/index.stories.tsx
similarity index 93%
rename from packages/react-native-playground/components/List/DetailsItemsList/index.stories.tsx
rename to packages/react-native/src/components/experimental/Lists/DetailsItemsList/index.stories.tsx
index 9c5a0d5ac0..8f78872ceb 100644
--- a/packages/react-native-playground/components/List/DetailsItemsList/index.stories.tsx
+++ b/packages/react-native/src/components/experimental/Lists/DetailsItemsList/index.stories.tsx
@@ -1,5 +1,5 @@
-import { DetailsItemsList } from "@factorialco/f0-react-native";
-import type { Meta, StoryObj } from "@storybook/react-vite";
+import { DetailsItemsList } from "./index";
+import type { Meta, StoryObj } from "@storybook/react";
import { View } from "react-native";
const meta: Meta = {
diff --git a/packages/react-native/src/lib/date.ts b/packages/react-native/src/lib/date.ts
index 69993f270f..2e10b4ba3f 100644
--- a/packages/react-native/src/lib/date.ts
+++ b/packages/react-native/src/lib/date.ts
@@ -79,7 +79,11 @@ export const categorizeItemsByDate = <
} else if (diffDays <= 30) {
groups.lastMonth.push(item);
} else {
- groups[date.getFullYear()].push(item);
+ const year = date.getFullYear();
+ if (!groups[year]) {
+ groups[year] = [];
+ }
+ groups[year].push(item);
}
});
diff --git a/packages/react-native/src/ui/avatar.tsx b/packages/react-native/src/ui/avatar.tsx
index ad2b8f7b35..8f9ee71032 100644
--- a/packages/react-native/src/ui/avatar.tsx
+++ b/packages/react-native/src/ui/avatar.tsx
@@ -68,6 +68,7 @@ type AvatarProps = React.ComponentPropsWithoutRef & {
size?: (typeof sizes)[number];
type?: (typeof type)[number];
color?: (typeof color)[number];
+ className?: string;
};
const Avatar = ({ size, type, color, className, ...props }: AvatarProps) => (
diff --git a/packages/react-native/tailwind.config.ts b/packages/react-native/tailwind.config.ts
index 7d3448fdb9..5eb2e7eb02 100644
--- a/packages/react-native/tailwind.config.ts
+++ b/packages/react-native/tailwind.config.ts
@@ -4,7 +4,11 @@ const { hairlineWidth } = require("nativewind/theme");
/** @type {import("tailwindcss").Config} */
module.exports = {
...baseConfig,
- content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}"],
+ content: [
+ "./playground/**/*.{ts,tsx}",
+ "./src/**/*.{ts,tsx}",
+ ".storybook/**/*.{ts,tsx}",
+ ],
presets: [require("nativewind/preset")],
darkMode: "false",
theme: {
diff --git a/packages/react-native/tsconfig.build.json b/packages/react-native/tsconfig.build.json
new file mode 100644
index 0000000000..bf0dc406d6
--- /dev/null
+++ b/packages/react-native/tsconfig.build.json
@@ -0,0 +1,32 @@
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "allowSyntheticDefaultImports": true,
+ "lib": ["dom", "esnext"],
+ "moduleResolution": "bundler",
+ "emitDeclarationOnly": true,
+ "skipLibCheck": true,
+ "resolveJsonModule": true,
+ "strict": true,
+ "noUncheckedIndexedAccess": true,
+ "outDir": "dist",
+ "declaration": true,
+ "declarationMap": true,
+ "sourceMap": true,
+ "removeComments": false,
+ "jsx": "react-jsx",
+ "paths": {
+ "@factorialco/f0-core/*": ["../core/src/*"]
+ }
+ },
+ "include": ["src/**/*"],
+ "exclude": [
+ "**/*.test.*",
+ "**/*.spec.*",
+ "**/*.stories.*",
+ "**/__tests__/**",
+ "**/__snapshots__/**",
+ "**/node_modules/**",
+ "**/dist/**"
+ ]
+}
diff --git a/packages/react-native/tsconfig.json b/packages/react-native/tsconfig.json
index 65b6fcd0f6..e3b9a84f69 100644
--- a/packages/react-native/tsconfig.json
+++ b/packages/react-native/tsconfig.json
@@ -1,20 +1,43 @@
{
"compilerOptions": {
+ "allowJs": true,
+ "lib": ["DOM", "ESNext"],
+ "noEmit": true,
"target": "ESNext",
"module": "ESNext",
- "moduleResolution": "node",
+ "moduleResolution": "bundler",
"jsx": "react-native",
"esModuleInterop": true,
"strict": true,
"declaration": true,
"outDir": "dist",
+ "rootDir": ".",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
+ "baseUrl": ".",
"paths": {
- "@factorialco/f0-core": ["../core/src"]
+ "@factorialco/f0-core/*": ["../core/src/*"],
+ "lib/*": ["./lib/*"],
+ "ui/*": ["./ui/*"],
+ "src/*": ["./src/*"]
},
"types": ["nativewind/types", "jest"]
},
- "include": ["src", "nativewind-env.d.ts"],
- "exclude": ["node_modules", "dist"]
+ "include": [
+ "src",
+ "playground",
+ "nativewind-env.d.ts",
+ ".expo/types/**/*.ts",
+ "expo-env.d.ts"
+ ],
+ "exclude": [
+ "node_modules",
+ "dist",
+ ".storybook/storybook.requires.ts",
+ "**/*.test.*",
+ "**/*.spec.*",
+ "**/__tests__/**",
+ "**/__snapshots__/**"
+ ],
+ "extends": "expo/tsconfig.base"
}
diff --git a/packages/react-native/tsup.config.ts b/packages/react-native/tsup.config.ts
new file mode 100644
index 0000000000..38e3003cac
--- /dev/null
+++ b/packages/react-native/tsup.config.ts
@@ -0,0 +1,64 @@
+import { defineConfig } from "tsup";
+import { glob } from "glob";
+
+// Get all source files excluding tests, stories, and snapshots
+const getEntryPoints = () => {
+ const patterns = [
+ "src/index.ts",
+ "src/components/**/*.tsx",
+ "src/components/**/*.ts",
+ "src/icons/**/*.ts",
+ "src/icons/**/*.tsx",
+ "src/lib/**/*.ts",
+ "src/lib/**/*.tsx",
+ "src/ui/**/*.tsx",
+ ];
+
+ const ignore = [
+ "**/*.spec.ts",
+ "**/*.spec.tsx",
+ "**/*.test.ts",
+ "**/*.test.tsx",
+ "**/*.stories.ts",
+ "**/*.stories.tsx",
+ "**/__tests__/**",
+ "**/__snapshots__/**",
+ ];
+
+ return glob.sync(patterns, { ignore });
+};
+
+export default defineConfig({
+ entry: getEntryPoints(),
+ format: ["esm", "cjs"],
+ dts: true,
+ splitting: false,
+ sourcemap: true,
+ clean: true,
+ outDir: "dist",
+ tsconfig: "tsconfig.build.json",
+ external: [
+ "react",
+ "react-native",
+ "react-dom",
+ "react-native-web",
+ "@factorialco/f0-core",
+ "expo-font",
+ "expo-haptics",
+ "expo-linking",
+ "react-native-svg",
+ "nativewind",
+ "tailwindcss",
+ "clsx",
+ "cva",
+ "tailwind-merge",
+ "lodash",
+ "date-fns",
+ "twemoji-parser",
+ ],
+ treeshake: true,
+ minify: false, // Keep readable for debugging
+ esbuildOptions(options) {
+ options.jsx = "automatic";
+ },
+});
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 7d76149143..212e466de4 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -6,6 +6,9 @@ settings:
overrides:
esm-env: npm:esm-env-runtime@^0.1.1
+ '@types/react': 19.0.14
+ react: 19.0.0
+ react-dom: 19.0.0
importers:
@@ -13,98 +16,98 @@ importers:
devDependencies:
'@commitlint/cli':
specifier: ^19.7.1
- version: 19.8.0(@types/node@22.15.21)(typescript@5.8.2)
+ version: 19.8.1(@types/node@22.18.9)(typescript@5.9.3)
'@commitlint/config-conventional':
specifier: ^19.7.1
- version: 19.8.0
+ version: 19.8.1
eslint:
specifier: ^9.27.0
- version: 9.27.0(jiti@2.4.2)
+ version: 9.37.0(jiti@2.6.1)
eslint-plugin-react:
specifier: ^7.37.5
- version: 7.37.5(eslint@9.27.0(jiti@2.4.2))
+ version: 7.37.5(eslint@9.37.0(jiti@2.6.1))
eslint-plugin-react-hooks:
specifier: ^5.2.0
- version: 5.2.0(eslint@9.27.0(jiti@2.4.2))
+ version: 5.2.0(eslint@9.37.0(jiti@2.6.1))
eslint-plugin-react-refresh:
specifier: ^0.4.20
- version: 0.4.20(eslint@9.27.0(jiti@2.4.2))
+ version: 0.4.23(eslint@9.37.0(jiti@2.6.1))
eslint-plugin-storybook:
specifier: ^9.1.3
- version: 9.1.3(eslint@9.27.0(jiti@2.4.2))(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))(typescript@5.8.2)
+ version: 9.1.10(eslint@9.37.0(jiti@2.6.1))(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.9.3)
lefthook:
specifier: ^1.11.3
- version: 1.11.3
+ version: 1.13.6
npm-run-all:
specifier: ^4.1.5
version: 4.1.5
prettier:
specifier: ^3.5.2
- version: 3.5.2
+ version: 3.6.2
prettier-plugin-organize-imports:
specifier: ^4.1.0
- version: 4.1.0(prettier@3.5.2)(typescript@5.8.2)
+ version: 4.3.0(prettier@3.6.2)(typescript@5.9.3)
prettier-plugin-tailwindcss:
specifier: ^0.6.10
- version: 0.6.11(prettier-plugin-organize-imports@4.1.0(prettier@3.5.2)(typescript@5.8.2))(prettier@3.5.2)
+ version: 0.6.14(prettier-plugin-organize-imports@4.3.0(prettier@3.6.2)(typescript@5.9.3))(prettier@3.6.2)
packages/core:
dependencies:
'@tailwindcss/container-queries':
specifier: ^0.1.1
- version: 0.1.1(tailwindcss@3.4.17)
+ version: 0.1.1(tailwindcss@3.4.18(yaml@2.8.1))
tailwindcss:
specifier: ^3.4.3
- version: 3.4.17
+ version: 3.4.18(yaml@2.8.1)
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@3.4.17)
+ version: 1.0.7(tailwindcss@3.4.18(yaml@2.8.1))
typescript:
specifier: ^5.7.2
- version: 5.8.2
+ version: 5.9.3
devDependencies:
prettier:
specifier: ^3.5.2
- version: 3.5.2
+ version: 3.6.2
tsup:
specifier: ^8.3.5
- version: 8.3.6(@microsoft/api-extractor@7.52.8(@types/node@22.15.21))(@swc/core@1.11.13(@swc/helpers@0.5.17))(jiti@2.4.2)(postcss@8.5.3)(typescript@5.8.2)(yaml@2.7.0)
+ version: 8.5.0(@microsoft/api-extractor@7.52.8(@types/node@22.18.9))(@swc/core@1.13.5(@swc/helpers@0.5.17))(jiti@1.21.7)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.1)
packages/react:
dependencies:
'@atlaskit/pragmatic-drag-and-drop':
specifier: ^1.7.4
- version: 1.7.4
+ version: 1.7.7
'@atlaskit/pragmatic-drag-and-drop-flourish':
specifier: ^2.0.4
- version: 2.0.4(@types/react@18.3.18)(react@18.3.1)
+ version: 2.0.7(@types/react@19.0.14)(react@19.0.0)
'@atlaskit/pragmatic-drag-and-drop-hitbox':
specifier: ^1.1.0
version: 1.1.0
'@atlaskit/pragmatic-drag-and-drop-react-drop-indicator':
specifier: ^3.2.5
- version: 3.2.5(@types/react@18.3.18)(react@18.3.1)
+ version: 3.2.7(@types/react@19.0.14)(react@19.0.0)
'@copilotkit/react-core':
specifier: ^1.10.2
- version: 1.10.2(@types/react@18.3.18)(graphql@16.11.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.10.6(@types/react@19.0.14)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@copilotkit/react-ui':
specifier: ^1.10.2
- version: 1.10.2(@types/react@18.3.18)(graphql@16.11.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.10.6(@types/react@19.0.14)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@copilotkit/runtime':
specifier: ^1.10.2
- version: 1.10.2(@ag-ui/client@0.0.35)(@ag-ui/core@0.0.35)(@ag-ui/encoder@0.0.35)(@ag-ui/proto@0.0.35)(@aws-crypto/sha256-js@5.2.0)(@aws-sdk/client-bedrock-agent-runtime@3.844.0)(@aws-sdk/client-bedrock-runtime@3.844.0)(@aws-sdk/client-kendra@3.844.0)(@aws-sdk/credential-provider-node@3.844.0)(@browserbasehq/sdk@2.6.0)(@browserbasehq/stagehand@1.14.0(@playwright/test@1.52.0)(deepmerge@4.3.1)(dotenv@16.4.7)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(zod@3.25.76))(@ibm-cloud/watsonx-ai@1.6.8)(@smithy/util-utf8@2.3.0)(axios@1.8.4)(fast-xml-parser@5.2.5)(google-auth-library@8.9.0)(ibm-cloud-sdk-core@5.4.0)(ignore@5.3.2)(jsdom@26.0.0)(jsonwebtoken@9.0.2)(lodash@4.17.21)(playwright@1.52.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(weaviate-client@3.6.2)(ws@8.18.3)
+ version: 1.10.6(@ag-ui/client@0.0.40)(@ag-ui/core@0.0.39)(@ag-ui/encoder@0.0.39)(@ag-ui/langgraph@0.0.18(@ag-ui/client@0.0.40)(@ag-ui/core@0.0.39)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@ag-ui/proto@0.0.39)(@aws-crypto/sha256-js@5.2.0)(@aws-sdk/client-bedrock-agent-runtime@3.907.0)(@aws-sdk/client-bedrock-runtime@3.907.0)(@aws-sdk/client-kendra@3.907.0)(@aws-sdk/credential-provider-node@3.907.0)(@browserbasehq/sdk@2.6.0)(@browserbasehq/stagehand@1.14.0(@playwright/test@1.56.0)(deepmerge@4.3.1)(dotenv@16.6.1)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(zod@3.25.76))(@ibm-cloud/watsonx-ai@1.6.13)(@smithy/util-utf8@2.3.0)(axios@1.12.2)(fast-xml-parser@5.2.5)(google-auth-library@8.9.0)(ibm-cloud-sdk-core@5.4.3)(ignore@5.3.2)(jsdom@26.1.0)(jsonwebtoken@9.0.2)(lodash@4.17.21)(playwright@1.56.0)(react@19.0.0)(weaviate-client@3.9.0)(ws@8.18.3)
'@copilotkit/shared':
specifier: ^1.10.2
- version: 1.10.2
+ version: 1.10.6
'@factorialco/f0-core':
specifier: workspace:*
version: link:../core
'@hookform/resolvers':
specifier: ^3.9.0
- version: 3.10.0(react-hook-form@7.54.2(react@18.3.1))
+ version: 3.10.0(react-hook-form@7.64.0(react@19.0.0))
'@number-flow/react':
specifier: ^0.5.10
- version: 0.5.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 0.5.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/number':
specifier: ^1.1.1
version: 1.1.1
@@ -113,193 +116,193 @@ importers:
version: 1.1.3
'@radix-ui/react-accordion':
specifier: ^1.1.2
- version: 1.2.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.2.12(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-avatar':
specifier: ^1.0.4
- version: 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.10(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-checkbox':
specifier: ^1.0.4
- version: 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.3.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-collapsible':
specifier: ^1.1.2
- version: 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.12(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-collection':
specifier: ^1.1.7
- version: 1.1.7(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-compose-refs':
specifier: ^1.1.2
- version: 1.1.2(@types/react@18.3.18)(react@18.3.1)
+ version: 1.1.2(@types/react@19.0.14)(react@19.0.0)
'@radix-ui/react-context':
specifier: ^1.1.2
- version: 1.1.2(@types/react@18.3.18)(react@18.3.1)
+ version: 1.1.2(@types/react@19.0.14)(react@19.0.0)
'@radix-ui/react-dialog':
specifier: ^1.1.4
- version: 1.1.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.15(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-direction':
specifier: ^1.1.1
- version: 1.1.1(@types/react@18.3.18)(react@18.3.1)
+ version: 1.1.1(@types/react@19.0.14)(react@19.0.0)
'@radix-ui/react-dismissable-layer':
specifier: ^1.1.10
- version: 1.1.11(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.11(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-dropdown-menu':
specifier: ^2.0.6
- version: 2.1.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.1.16(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-focus-guards':
specifier: ^1.1.2
- version: 1.1.3(@types/react@18.3.18)(react@18.3.1)
+ version: 1.1.3(@types/react@19.0.14)(react@19.0.0)
'@radix-ui/react-focus-scope':
specifier: ^1.1.7
- version: 1.1.7(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-hover-card':
specifier: ^1.1.15
- version: 1.1.15(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.15(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-id':
specifier: ^1.1.1
- version: 1.1.1(@types/react@18.3.18)(react@18.3.1)
+ version: 1.1.1(@types/react@19.0.14)(react@19.0.0)
'@radix-ui/react-label':
specifier: ^2.1.0
- version: 2.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-navigation-menu':
specifier: ^1.2.0
- version: 1.2.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.2.14(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-popover':
specifier: ^1.0.7
- version: 1.1.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.15(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-popper':
specifier: ^1.2.7
- version: 1.2.8(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.2.8(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-portal':
specifier: ^1.1.9
- version: 1.1.9(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.9(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-primitive':
specifier: ^2.1.3
- version: 2.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-progress':
specifier: ^1.1.0
- version: 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-scroll-area':
specifier: ^1.0.5
- version: 1.2.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.2.10(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-select':
specifier: ^2.0.0
- version: 2.1.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.2.6(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-slot':
specifier: ^1.1.0
- version: 1.2.0(@types/react@18.3.18)(react@18.3.1)
+ version: 1.2.3(@types/react@19.0.14)(react@19.0.0)
'@radix-ui/react-switch':
specifier: ^1.2.6
- version: 1.2.6(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.2.6(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-tabs':
specifier: ^1.0.4
- version: 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.13(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-toggle':
specifier: ^1.1.0
- version: 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.10(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-toggle-group':
specifier: ^1.1.0
- version: 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.11(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-tooltip':
specifier: ^1.0.7
- version: 1.1.7(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.2.8(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-use-callback-ref':
specifier: ^1.1.1
- version: 1.1.1(@types/react@18.3.18)(react@18.3.1)
+ version: 1.1.1(@types/react@19.0.14)(react@19.0.0)
'@radix-ui/react-use-controllable-state':
specifier: ^1.2.2
- version: 1.2.2(@types/react@18.3.18)(react@18.3.1)
+ version: 1.2.2(@types/react@19.0.14)(react@19.0.0)
'@radix-ui/react-use-layout-effect':
specifier: ^1.1.1
- version: 1.1.1(@types/react@18.3.18)(react@18.3.1)
+ version: 1.1.1(@types/react@19.0.14)(react@19.0.0)
'@radix-ui/react-use-previous':
specifier: ^1.1.1
- version: 1.1.1(@types/react@18.3.18)(react@18.3.1)
+ version: 1.1.1(@types/react@19.0.14)(react@19.0.0)
'@radix-ui/react-visually-hidden':
specifier: ^1.2.3
- version: 1.2.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.2.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@tailwindcss/container-queries':
specifier: ^0.1.1
- version: 0.1.1(tailwindcss@3.4.17)
+ version: 0.1.1(tailwindcss@3.4.18(yaml@2.8.1))
'@tanstack/react-virtual':
specifier: ^3.13.2
- version: 3.13.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 3.13.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@tiptap/core':
specifier: ^2.24.0
- version: 2.24.0(@tiptap/pm@2.24.0)
+ version: 2.26.3(@tiptap/pm@2.26.3)
'@tiptap/extension-bubble-menu':
specifier: ^2.11.5
- version: 2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
'@tiptap/extension-character-count':
specifier: ^2.11.5
- version: 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
'@tiptap/extension-collaboration':
specifier: ^2.24.0
- version: 2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(y-prosemirror@1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(y-prosemirror@1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))
'@tiptap/extension-color':
specifier: ^2.11.5
- version: 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/extension-text-style@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0)))
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/extension-text-style@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3)))
'@tiptap/extension-details':
specifier: ^2.23.0
- version: 2.23.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/extension-text-style@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0)))
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/extension-text-style@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3)))
'@tiptap/extension-details-content':
specifier: ^2.23.0
- version: 2.23.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/extension-text-style@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0)))
+ version: 2.26.2(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/extension-text-style@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3)))
'@tiptap/extension-details-summary':
specifier: ^2.23.0
- version: 2.23.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/extension-text-style@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0)))
+ version: 2.26.2(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/extension-text-style@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3)))
'@tiptap/extension-drag-handle':
specifier: ^2.24.0
- version: 2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/extension-collaboration@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(y-prosemirror@1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/extension-node-range@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(y-prosemirror@1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/extension-collaboration@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(y-prosemirror@1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/extension-node-range@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(y-prosemirror@1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))
'@tiptap/extension-drag-handle-react':
specifier: ^2.24.0
- version: 2.24.0(@tiptap/extension-drag-handle@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/extension-collaboration@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(y-prosemirror@1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/extension-node-range@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(y-prosemirror@1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/pm@2.24.0)(@tiptap/react@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.26.3(@tiptap/extension-drag-handle@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/extension-collaboration@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(y-prosemirror@1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/extension-node-range@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(y-prosemirror@1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/pm@2.26.3)(@tiptap/react@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@tiptap/extension-highlight':
specifier: ^2.11.5
- version: 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
'@tiptap/extension-link':
specifier: ^2.11.5
- version: 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
'@tiptap/extension-mention':
specifier: ^2.11.5
- version: 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(@tiptap/suggestion@2.12.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0))
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(@tiptap/suggestion@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3))
'@tiptap/extension-node-range':
specifier: ^2.24.0
- version: 2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
'@tiptap/extension-placeholder':
specifier: ^2.11.5
- version: 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
'@tiptap/extension-task-item':
specifier: ^2.11.5
- version: 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
'@tiptap/extension-task-list':
specifier: ^2.11.5
- version: 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
'@tiptap/extension-text-align':
specifier: ^2.11.5
- version: 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
'@tiptap/extension-text-style':
specifier: ^2.11.5
- version: 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
'@tiptap/extension-typography':
specifier: ^2.11.5
- version: 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
'@tiptap/extension-underline':
specifier: ^2.11.5
- version: 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
'@tiptap/pm':
specifier: ^2.24.0
- version: 2.24.0
+ version: 2.26.3
'@tiptap/react':
specifier: ^2.24.0
- version: 2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@tiptap/starter-kit':
specifier: ^2.11.5
- version: 2.11.7
+ version: 2.26.3
'@tiptap/suggestion':
specifier: ^2.12.0
- version: 2.12.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
'@vueless/storybook-dark-mode':
specifier: ^9.0.7
- version: 9.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 9.0.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
aria-hidden:
specifier: ^1.2.6
version: 1.2.6
@@ -311,58 +314,58 @@ importers:
version: 2.1.1
cva:
specifier: 1.0.0-beta.3
- version: 1.0.0-beta.3(typescript@5.8.2)
+ version: 1.0.0-beta.3(typescript@5.9.3)
date-fns:
specifier: ^3.6.0
version: 3.6.0
dompurify:
specifier: ^3.2.6
- version: 3.2.6
+ version: 3.2.7
embla-carousel-autoplay:
specifier: ^8.5.2
- version: 8.5.2(embla-carousel@8.6.0)
+ version: 8.6.0(embla-carousel@8.6.0)
embla-carousel-react:
specifier: ^8.6.0
- version: 8.6.0(react@18.3.1)
+ version: 8.6.0(react@19.0.0)
embla-carousel-wheel-gestures:
specifier: ^8.0.1
- version: 8.0.1(embla-carousel@8.6.0)
+ version: 8.1.0(embla-carousel@8.6.0)
lucide-react:
specifier: ^0.383.0
- version: 0.383.0(react@18.3.1)
+ version: 0.383.0(react@19.0.0)
motion:
specifier: ^12
- version: 12.17.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 12.23.24(@emotion/is-prop-valid@1.4.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
nanoid:
specifier: ^5.0.7
- version: 5.0.9
+ version: 5.1.6
prosemirror-state:
specifier: ^1.4.3
version: 1.4.3
prosemirror-view:
specifier: ^1.38.1
- version: 1.38.1
+ version: 1.41.3
react:
- specifier: 18.3.1
- version: 18.3.1
+ specifier: 19.0.0
+ version: 19.0.0
react-day-picker:
specifier: ^8.10.1
- version: 8.10.1(date-fns@3.6.0)(react@18.3.1)
+ version: 8.10.1(date-fns@3.6.0)(react@19.0.0)
react-dom:
- specifier: 18.3.1
- version: 18.3.1(react@18.3.1)
+ specifier: 19.0.0
+ version: 19.0.0(react@19.0.0)
react-hook-form:
specifier: ^7.52.1
- version: 7.54.2(react@18.3.1)
+ version: 7.64.0(react@19.0.0)
react-masonry:
specifier: ^1.0.7
version: 1.0.7
react-remove-scroll:
specifier: ^2.7.1
- version: 2.7.1(@types/react@18.3.18)(react@18.3.1)
+ version: 2.7.1(@types/react@19.0.14)(react@19.0.0)
recharts:
specifier: ^2.12.7
- version: 2.15.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.15.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
rehype-stringify:
specifier: ^10.0.1
version: 10.0.1
@@ -380,10 +383,10 @@ importers:
version: 2.6.0
tailwindcss:
specifier: ^3.4.3
- version: 3.4.17
+ version: 3.4.18(yaml@2.8.1)
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@3.4.17)
+ version: 1.0.7(tailwindcss@3.4.18(yaml@2.8.1))
twemoji-parser:
specifier: ^14.0.0
version: 14.0.0
@@ -392,13 +395,13 @@ importers:
version: 11.0.5
usehooks-ts:
specifier: ^3.1.0
- version: 3.1.0(react@18.3.1)
+ version: 3.1.1(react@19.0.0)
vaul:
specifier: ^1.1.2
- version: 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.2(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
y-prosemirror:
specifier: ^1.3.6
- version: 1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)
+ version: 1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)
y-protocols:
specifier: ^1.0.6
version: 1.0.6(yjs@13.6.27)
@@ -414,41 +417,41 @@ importers:
optionalDependencies:
'@rollup/rollup-linux-x64-gnu':
specifier: ^4.34
- version: 4.40.2
+ version: 4.52.4
devDependencies:
'@chromatic-com/storybook':
specifier: ^4.1.1
- version: 4.1.1(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))
+ version: 4.1.1(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))
'@commitlint/cli':
specifier: ^19.7.1
- version: 19.8.0(@types/node@22.15.21)(typescript@5.8.2)
+ version: 19.8.1(@types/node@22.18.9)(typescript@5.9.3)
'@commitlint/config-conventional':
specifier: ^19.7.1
- version: 19.8.0
+ version: 19.8.1
'@emoji-mart/data':
specifier: ^1.2.1
version: 1.2.1
'@emoji-mart/react':
specifier: ^1.1.1
- version: 1.1.1(emoji-mart@5.6.0)(react@18.3.1)
+ version: 1.1.1(emoji-mart@5.6.0)(react@19.0.0)
'@emotion/is-prop-valid':
specifier: ^1.3.1
- version: 1.3.1
+ version: 1.4.0
'@eslint/compat':
specifier: ^1.2.9
- version: 1.2.9(eslint@9.27.0(jiti@2.4.2))
+ version: 1.4.0(eslint@9.37.0(jiti@2.6.1))
'@eslint/eslintrc':
specifier: ^3.3.1
version: 3.3.1
'@eslint/js':
specifier: ^9.27.0
- version: 9.27.0
+ version: 9.37.0
'@microsoft/api-extractor':
specifier: 7.52.8
- version: 7.52.8(@types/node@22.15.21)
+ version: 7.52.8(@types/node@22.18.9)
'@playwright/test':
specifier: ^1.52.0
- version: 1.52.0
+ version: 1.56.0
'@size-limit/esbuild':
specifier: ^11.2.0
version: 11.2.0(size-limit@11.2.0)
@@ -460,34 +463,34 @@ importers:
version: 11.2.0(size-limit@11.2.0)
'@storybook/addon-a11y':
specifier: ^9.1.3
- version: 9.1.3(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))
+ version: 9.1.10(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))
'@storybook/addon-docs':
specifier: ^9.1.3
- version: 9.1.3(@types/react@18.3.18)(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))
+ version: 9.1.10(@types/react@19.0.14)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))
'@storybook/addon-links':
specifier: ^9.1.3
- version: 9.1.3(react@18.3.1)(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))
+ version: 9.1.10(react@19.0.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))
'@storybook/addon-themes':
specifier: ^9.1.3
- version: 9.1.3(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))
+ version: 9.1.10(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))
'@storybook/react-vite':
specifier: ^9.1.3
- version: 9.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.40.2)(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))(typescript@5.8.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ version: 9.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(rollup@4.52.4)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.9.3)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
'@storybook/test-runner':
specifier: ^0.23.0
- version: 0.23.0(@swc/helpers@0.5.17)(@types/node@22.15.21)(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))
+ version: 0.23.0(@swc/helpers@0.5.17)(@types/node@22.18.9)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))
'@svgr/cli':
specifier: ^8.1.0
- version: 8.1.0(typescript@5.8.2)
+ version: 8.1.0(typescript@5.9.3)
'@testing-library/dom':
specifier: ^10.4.1
version: 10.4.1
'@testing-library/jest-dom':
specifier: ^6.6.3
- version: 6.6.3
+ version: 6.9.1
'@testing-library/react':
specifier: ^16.1.0
- version: 16.2.0(@testing-library/dom@10.4.1)(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@testing-library/user-event':
specifier: ^14.6.1
version: 14.6.1(@testing-library/dom@10.4.1)
@@ -496,82 +499,82 @@ importers:
version: 1.9.0
'@types/lodash':
specifier: ^4.17.16
- version: 4.17.16
+ version: 4.17.20
'@types/node':
specifier: ^22.13.9
- version: 22.15.21
+ version: 22.18.9
'@types/react':
- specifier: ^18.3.18
- version: 18.3.18
+ specifier: 19.0.14
+ version: 19.0.14
'@types/react-dom':
specifier: ^18.3.1
- version: 18.3.5(@types/react@18.3.18)
+ version: 18.3.7(@types/react@19.0.14)
'@types/twemoji-parser':
specifier: ^13.1.4
version: 13.1.4
'@typescript-eslint/eslint-plugin':
specifier: ^8.32.1
- version: 8.32.1(@typescript-eslint/parser@8.32.1(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.2)
+ version: 8.46.0(@typescript-eslint/parser@8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/parser':
specifier: ^8.32.1
- version: 8.32.1(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.2)
+ version: 8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
'@vitejs/plugin-react':
specifier: ^4.3.4
- version: 4.3.4(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ version: 4.7.0(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
'@vitest/coverage-v8':
specifier: ^3.2.4
- version: 3.2.4(vitest@3.0.7)
+ version: 3.2.4(vitest@3.2.4)
'@vitest/ui':
specifier: 3.0.7
- version: 3.0.7(vitest@3.0.7)
+ version: 3.0.7(vitest@3.2.4)
autoprefixer:
specifier: ^10.4.21
- version: 10.4.21(postcss@8.5.3)
+ version: 10.4.21(postcss@8.5.6)
axe-playwright:
specifier: ^2.1.0
- version: 2.1.0(playwright@1.52.0)
+ version: 2.2.2(playwright@1.56.0)
chalk:
specifier: ^5.4.1
- version: 5.4.1
+ version: 5.6.2
chromatic:
specifier: ^11.28.0
- version: 11.28.0
+ version: 11.29.0
consola:
specifier: ^3.4.0
- version: 3.4.0
+ version: 3.4.2
dotenv:
specifier: ^16.4.7
- version: 16.4.7
+ version: 16.6.1
emoji-mart:
specifier: ^5.6.0
version: 5.6.0
eslint:
specifier: ^9.27.0
- version: 9.27.0(jiti@2.4.2)
+ version: 9.37.0(jiti@2.6.1)
eslint-plugin-react:
specifier: ^7.37.5
- version: 7.37.5(eslint@9.27.0(jiti@2.4.2))
+ version: 7.37.5(eslint@9.37.0(jiti@2.6.1))
eslint-plugin-react-hooks:
specifier: ^5.2.0
- version: 5.2.0(eslint@9.27.0(jiti@2.4.2))
+ version: 5.2.0(eslint@9.37.0(jiti@2.6.1))
eslint-plugin-react-refresh:
specifier: ^0.4.20
- version: 0.4.20(eslint@9.27.0(jiti@2.4.2))
+ version: 0.4.23(eslint@9.37.0(jiti@2.6.1))
eslint-plugin-storybook:
specifier: ^9.1.3
- version: 9.1.3(eslint@9.27.0(jiti@2.4.2))(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))(typescript@5.8.2)
+ version: 9.1.10(eslint@9.37.0(jiti@2.6.1))(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.9.3)
globals:
specifier: ^16.0.0
- version: 16.0.0
+ version: 16.4.0
http-server:
specifier: ^14.1.1
version: 14.1.1
jsdom:
specifier: ^26.0.0
- version: 26.0.0
+ version: 26.1.0
lefthook:
specifier: ^1.11.3
- version: 1.11.3
+ version: 1.13.6
lodash:
specifier: ^4.17.21
version: 4.17.21
@@ -583,58 +586,58 @@ importers:
version: 4.1.5
postcss:
specifier: ^8.5.3
- version: 8.5.3
+ version: 8.5.6
postcss-import:
specifier: ^16.1.0
- version: 16.1.0(postcss@8.5.3)
+ version: 16.1.1(postcss@8.5.6)
prettier:
specifier: ^3.5.2
- version: 3.5.2
+ version: 3.6.2
prettier-plugin-organize-imports:
specifier: ^4.1.0
- version: 4.1.0(prettier@3.5.2)(typescript@5.8.2)
+ version: 4.3.0(prettier@3.6.2)(typescript@5.9.3)
prettier-plugin-tailwindcss:
specifier: ^0.6.10
- version: 0.6.11(prettier-plugin-organize-imports@4.1.0(prettier@3.5.2)(typescript@5.8.2))(prettier@3.5.2)
+ version: 0.6.14(prettier-plugin-organize-imports@4.3.0(prettier@3.6.2)(typescript@5.9.3))(prettier@3.6.2)
react-syntax-highlighter:
specifier: ^15.6.1
- version: 15.6.1(react@18.3.1)
+ version: 15.6.6(react@19.0.0)
remark-gfm:
specifier: ^4.0.1
version: 4.0.1
rollup-plugin-jsx-remove-attributes:
specifier: ^3.1.1
- version: 3.1.1(@rollup/pluginutils@5.1.4(rollup@4.40.2))(astring@1.9.0)(estree-walker@3.0.3)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ version: 3.1.1(@rollup/pluginutils@5.3.0(rollup@4.52.4))(astring@1.9.0)(estree-walker@3.0.3)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
size-limit:
specifier: ^11.2.0
version: 11.2.0
storybook:
specifier: ^9.1.3
- version: 9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ version: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
storybook-addon-tag-badges:
specifier: ^2.0.2
- version: 2.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))
+ version: 2.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))
tsup:
specifier: ^8.3.5
- version: 8.3.6(@microsoft/api-extractor@7.52.8(@types/node@22.15.21))(@swc/core@1.11.13(@swc/helpers@0.5.17))(jiti@2.4.2)(postcss@8.5.3)(typescript@5.8.2)(yaml@2.7.0)
+ version: 8.5.0(@microsoft/api-extractor@7.52.8(@types/node@22.18.9))(@swc/core@1.13.5(@swc/helpers@0.5.17))(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.1)
typescript:
specifier: ^5.7.2
- version: 5.8.2
+ version: 5.9.3
user-agent-data-types:
specifier: ^0.4.2
version: 0.4.2
vite:
specifier: ^6.3.5
- version: 6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)
+ version: 6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)
vite-plugin-dts:
specifier: 4.3.0
- version: 4.3.0(@types/node@22.15.21)(rollup@4.40.2)(typescript@5.8.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ version: 4.3.0(@types/node@22.18.9)(rollup@4.52.4)(typescript@5.9.3)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
vite-plugin-lib-inject-css:
specifier: ^2.2.1
- version: 2.2.1(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ version: 2.2.2(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
vitest:
specifier: ^3.0.7
- version: 3.0.7(@types/debug@4.1.12)(@types/node@22.15.21)(@vitest/ui@3.0.7)(jiti@2.4.2)(jsdom@26.0.0)(lightningcss@1.29.2)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(terser@5.43.1)(yaml@2.7.0)
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(@vitest/ui@3.0.7)(jiti@2.6.1)(jsdom@26.1.0)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)
packages/react-native:
dependencies:
@@ -646,256 +649,204 @@ importers:
version: 2.1.1
cva:
specifier: 1.0.0-beta.3
- version: 1.0.0-beta.3(typescript@5.8.2)
- date-fns:
- specifier: ^3.6.0
- version: 3.6.0
+ version: 1.0.0-beta.3(typescript@5.9.3)
expo-clipboard:
specifier: ^7.1.4
- version: 7.1.4(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- lodash:
- specifier: ^4.17.21
- version: 4.17.21
- react-native-safe-area-context:
- specifier: 4.12.0
- version: 4.12.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ version: 7.1.5(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
tailwind-merge:
specifier: ^2.6.0
version: 2.6.0
- twemoji-parser:
- specifier: ^14.0.0
- version: 14.0.0
devDependencies:
+ '@babel/preset-env':
+ specifier: ^7.28.3
+ version: 7.28.3(@babel/core@7.28.4)
+ '@babel/runtime':
+ specifier: ^7.28.4
+ version: 7.28.4
+ '@react-native-async-storage/async-storage':
+ specifier: ^2.1.2
+ version: 2.2.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))
+ '@react-native-community/datetimepicker':
+ specifier: ^8.4.1
+ version: 8.4.5(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@react-native-community/slider':
+ specifier: ^4.5.6
+ version: 4.5.7
+ '@rn-primitives/avatar':
+ specifier: ~1.1.0
+ version: 1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@rn-primitives/portal':
+ specifier: ~1.1.0
+ version: 1.1.0(@types/react@19.0.14)(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@rn-primitives/progress':
+ specifier: ~1.1.0
+ version: 1.1.0(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@rn-primitives/slot':
+ specifier: ~1.1.0
+ version: 1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@rn-primitives/tooltip':
+ specifier: ~1.1.0
+ version: 1.1.0(@rn-primitives/portal@1.1.0(@types/react@19.0.14)(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@rn-primitives/types':
+ specifier: ~1.1.0
+ version: 1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@storybook/addon-ondevice-actions':
+ specifier: ^8.6.4
+ version: 8.6.4(prettier@3.6.2)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(storybook@8.6.14(prettier@3.6.2))
+ '@storybook/addon-ondevice-controls':
+ specifier: ^8.6.4
+ version: 8.6.4(gp66nu6xxnyqkxpox7xqyrbl4y)
+ '@storybook/addon-ondevice-notes':
+ specifier: ^8.6.4
+ version: 8.6.4(prettier@3.6.2)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(storybook@8.6.14(prettier@3.6.2))
+ '@storybook/react-native':
+ specifier: ^8.6.4
+ version: 8.6.4(dlkmro4qwrbvwwytn2ancbcv2u)
'@svgr/cli':
specifier: ^8.1.0
- version: 8.1.0(typescript@5.8.2)
+ version: 8.1.0(typescript@5.9.3)
'@testing-library/react-native':
specifier: ^12.9.0
- version: 12.9.0(jest@29.7.0(@types/node@22.15.21))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react-test-renderer@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 12.9.0(jest@29.7.0(@types/node@22.18.9))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react-test-renderer@19.2.0(react@19.0.0))(react@19.0.0)
'@types/jest':
specifier: ^29.5.14
version: 29.5.14
'@types/lodash':
specifier: ^4.17.16
- version: 4.17.16
+ version: 4.17.20
'@types/react':
- specifier: ^18.2.0
- version: 18.3.18
- '@types/react-native':
- specifier: ^0.73.0
- version: 0.73.0(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ specifier: 19.0.14
+ version: 19.0.14
'@types/twemoji-parser':
specifier: ^13.1.4
version: 13.1.4
babel-jest:
specifier: ^29.7.0
- version: 29.7.0(@babel/core@7.26.10)
+ version: 29.7.0(@babel/core@7.28.4)
+ babel-plugin-module-resolver:
+ specifier: ^5.0.0
+ version: 5.0.2
+ date-fns:
+ specifier: ^3.6.0
+ version: 3.6.0
+ expo:
+ specifier: ^53.0.23
+ version: 53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ expo-constants:
+ specifier: ^17.1.7
+ version: 17.1.7(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))
+ expo-linking:
+ specifier: ~7.1.7
+ version: 7.1.7(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ expo-modules-core:
+ specifier: ~2.5.0
+ version: 2.5.0
+ expo-navigation-bar:
+ specifier: ~4.2.8
+ version: 4.2.8(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ expo-router:
+ specifier: ^5.1.7
+ version: 5.1.7(yi4e7yepueo23q3rdc5ruvdh3q)
+ expo-status-bar:
+ specifier: ~2.2.3
+ version: 2.2.3(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ glob:
+ specifier: ^11.0.0
+ version: 11.0.3
globals:
specifier: ^16.0.0
- version: 16.0.0
+ version: 16.4.0
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@22.15.21)
+ version: 29.7.0(@types/node@22.18.9)
+ lucide-react-native:
+ specifier: ^0.378.0
+ version: 0.378.0(react-native-svg@15.11.2(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
nativewind:
specifier: ^4.1.23
- version: 4.1.23(react-native-reanimated@3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.12.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-svg@15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.17)
+ version: 4.2.1(react-native-reanimated@3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.18(yaml@2.8.1))
npm-run-all:
specifier: ^4.1.5
version: 4.1.5
prettier:
specifier: ^3.5.2
- version: 3.5.2
+ version: 3.6.2
prettier-plugin-tailwindcss:
specifier: ^0.6.10
- version: 0.6.11(prettier-plugin-organize-imports@4.1.0(prettier@3.5.2)(typescript@5.8.2))(prettier@3.5.2)
+ version: 0.6.14(prettier-plugin-organize-imports@4.3.0(prettier@3.6.2)(typescript@5.9.3))(prettier@3.6.2)
react:
- specifier: ^18.2.0
- version: 18.3.1
+ specifier: 19.0.0
+ version: 19.0.0
react-native:
- specifier: ^0.76.6
- version: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-svg:
- specifier: ^15.8.0
- version: 15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- tailwindcss:
- specifier: ^3.4.3
- version: 3.4.17
- tailwindcss-animate:
- specifier: ^1.0.7
- version: 1.0.7(tailwindcss@3.4.17)
- typescript:
- specifier: ^5.7.2
- version: 5.8.2
-
- packages/react-native-playground:
- dependencies:
- '@factorialco/f0-core':
- specifier: workspace:*
- version: link:../core
- '@factorialco/f0-react-native':
- specifier: workspace:*
- version: link:../react-native
- '@react-navigation/native':
- specifier: ^7.0.0
- version: 7.0.15(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@rn-primitives/avatar':
- specifier: ~1.1.0
- version: 1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@rn-primitives/portal':
- specifier: ~1.1.0
- version: 1.1.0(@types/react@18.3.18)(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@rn-primitives/progress':
- specifier: ~1.1.0
- version: 1.1.0(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@rn-primitives/slot':
- specifier: ~1.1.0
- version: 1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@rn-primitives/tooltip':
- specifier: ~1.1.0
- version: 1.1.0(@rn-primitives/portal@1.1.0(@types/react@18.3.18)(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@rn-primitives/types':
- specifier: ~1.1.0
- version: 1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- class-variance-authority:
- specifier: ^0.7.0
- version: 0.7.1
- clsx:
- specifier: ^2.1.0
- version: 2.1.1
- expo:
- specifier: ^52.0.25
- version: 52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- expo-clipboard:
- specifier: ^7.1.4
- version: 7.1.4(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- expo-linking:
- specifier: ~7.0.4
- version: 7.0.5(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- expo-navigation-bar:
- specifier: ~4.0.7
- version: 4.0.9(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- expo-splash-screen:
- specifier: ~0.29.20
- version: 0.29.22(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))
- expo-status-bar:
- specifier: ~2.0.1
- version: 2.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- expo-system-ui:
- specifier: ~4.0.7
- version: 4.0.9(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))
- lucide-react-native:
- specifier: ^0.378.0
- version: 0.378.0(react-native-svg@15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- nativewind:
- specifier: ^4.1.23
- version: 4.1.23(react-native-reanimated@3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.12.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-svg@15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)(tailwindcss@3.3.5)
- react:
- specifier: 18.3.1
- version: 18.3.1
- react-dom:
- specifier: 18.3.1
- version: 18.3.1(react@18.3.1)
- react-native:
- specifier: 0.76.9
- version: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ specifier: ^0.79.5
+ version: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-gesture-handler:
+ specifier: ^2.24.0
+ version: 2.28.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
react-native-reanimated:
- specifier: ~3.16.1
- version: 3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ specifier: ~3.17.5
+ version: 3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
react-native-safe-area-context:
- specifier: 4.12.0
- version: 4.12.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ specifier: 5.4.0
+ version: 5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
react-native-screens:
- specifier: ^4.4.0
- version: 4.4.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ specifier: ^4.11.1
+ version: 4.16.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
react-native-svg:
- specifier: 15.8.0
- version: 15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react-native-web:
- specifier: ~0.19.13
- version: 0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- tailwind-merge:
- specifier: ^2.2.1
- version: 2.6.0
+ specifier: ^15.11.2
+ version: 15.11.2(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-worklets:
+ specifier: ^0.6.1
+ version: 0.6.1(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
tailwindcss:
- specifier: 3.3.5
- version: 3.3.5
+ specifier: ^3.4.3
+ version: 3.4.18(yaml@2.8.1)
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@3.3.5)
- zustand:
- specifier: ^4.4.7
- version: 4.5.6(@types/react@18.3.18)(react@18.3.1)
- devDependencies:
- '@babel/core':
- specifier: ^7.26.0
- version: 7.26.10
- '@gorhom/bottom-sheet':
- specifier: ^5.1.2
- version: 5.1.2(@types/react-native@0.73.0(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(@types/react@18.3.18)(react-native-gesture-handler@2.25.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-reanimated@3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@react-native-async-storage/async-storage':
- specifier: ^2.1.2
- version: 2.1.2(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))
- '@react-native-community/datetimepicker':
- specifier: ^8.3.0
- version: 8.3.0(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@react-native-community/slider':
- specifier: ^4.5.6
- version: 4.5.6
- '@storybook/addon-ondevice-actions':
- specifier: ^8.6.4
- version: 8.6.4(prettier@2.8.8)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@2.8.8))
- '@storybook/addon-ondevice-controls':
- specifier: ^8.6.4
- version: 8.6.4(akqf54yop62has7symzcxhkwre)
- '@storybook/addon-ondevice-notes':
- specifier: ^8.6.4
- version: 8.6.4(prettier@2.8.8)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@2.8.8))
- '@storybook/react-native':
- specifier: ^8.6.4
- version: 8.6.4(ljn62ie5eiwiedljgqima6enqq)
- '@types/react':
- specifier: ~18.3.12
- version: 18.3.18
- babel-loader:
- specifier: ^8.4.1
- version: 8.4.1(@babel/core@7.26.10)(webpack@5.99.5(esbuild@0.25.4))
- react-native-gesture-handler:
- specifier: ^2.25.0
- version: 2.25.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ version: 1.0.7(tailwindcss@3.4.18(yaml@2.8.1))
+ tsup:
+ specifier: ^8.3.5
+ version: 8.5.0(@microsoft/api-extractor@7.52.8(@types/node@22.18.9))(@swc/core@1.13.5(@swc/helpers@0.5.17))(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.1)
+ twemoji-parser:
+ specifier: ^14.0.0
+ version: 14.0.0
typescript:
- specifier: ^5.3.3
- version: 5.8.2
+ specifier: ^5.8.3
+ version: 5.9.3
packages:
- '@0no-co/graphql.web@1.1.2':
- resolution: {integrity: sha512-N2NGsU5FLBhT8NZ+3l2YrzZSHITjNXNuDhC4iDiikv0IujaJ0Xc6xIxQZ/Ek3Cb+rgPjnLHYyJm11tInuJn+cw==}
+ '@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.3':
- resolution: {integrity: sha512-VQKMkwriZbaOgVCby1UDY/LDk5fIjhQicCvVPFqfe+69fWaPWydbWJ3wRt59/YzIwda1I81loas3oCoHxnqvdA==}
+ '@adobe/css-tools@4.4.4':
+ resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==}
- '@ag-ui/client@0.0.35':
- resolution: {integrity: sha512-rHtMQSU232dZeVx9qAGt1+j4ar4RWqwFanXcyNxAwbAh0XrY7VZeXFBDUeazy1LtBoViS7xehX8V1Ssf1a+bUw==}
+ '@ag-ui/client@0.0.40':
+ resolution: {integrity: sha512-4ftyZgMN7DIAX64k7Mdex/KGq7lfz8yxEKzniqosD6TE/xk65k4Z0v3bxTzPk2iS2+Cj2uVBgFkb5lC7k5Loqg==}
- '@ag-ui/core@0.0.30':
- resolution: {integrity: sha512-cBukbc2O0qMKi/BKix6Exld5zSqGKR72376KA6NZNQz/xYAiPNhmK40VX77d/hyblhtXT3BlBGrYmda9V4ETlw==}
+ '@ag-ui/core@0.0.37':
+ resolution: {integrity: sha512-7bmjPn1Ol0Zo00F+MrPr0eOwH4AFZbhmq/ZMhCsrMILtVYBiBLcLU9QFBpBL3Zm9MCHha8b79N7JE2FzwcMaVA==}
- '@ag-ui/core@0.0.35':
- resolution: {integrity: sha512-YAqrln3S3fdo+Hs5FFQPODXiBttyilv/E3xSSHCuxqC0Y/Fp3+VqyDx97BorO3NVp2VKZ9cG2nsO3cbmcTwkQw==}
+ '@ag-ui/core@0.0.39':
+ resolution: {integrity: sha512-T5Hp4oFkQ+H5MynWAvSwrX/rNYJOD+PJ4qPQ0o771oSZQAxoIvDDft47Cx5wRyBNNLXAe1RWqJjfWUUwJFNKqA==}
- '@ag-ui/encoder@0.0.35':
- resolution: {integrity: sha512-Ym0h0ZKIiD1Ld3+e3v/WQSogY62xs72ysoEBW1kt+dDs79QazBsW5ZlcBBj2DelEs9NrczQLxTVEvrkcvhrHqA==}
+ '@ag-ui/encoder@0.0.39':
+ resolution: {integrity: sha512-6fsoFwPWkStK7Uyj3pwBn7+aQjUWf7pbDTSI43cD53sBLvTr5oEFNnoKOzRfC5UqvHc4JjUIuLKPQyjHRwWg4g==}
- '@ag-ui/langgraph@0.0.8':
- resolution: {integrity: sha512-p7oXmbnei6y8wOyASKp1CHT/6VolXiGFC3H9GwnAr8w1uM49bzWoJ7GP6iQBkexQFToc8jfaNEg28PSVGynm6A==}
+ '@ag-ui/langgraph@0.0.18':
+ resolution: {integrity: sha512-soWSV8+xR91jMArZUJoRv85UCgTi3Zt3u3gTMZhvs1t6fGFpAi6+hEQ4AqP13Rgvg90IlmIU8MTWo2k0OZDnoA==}
+ peerDependencies:
+ '@ag-ui/client': '>=0.0.38'
+ '@ag-ui/core': '>=0.0.38'
- '@ag-ui/proto@0.0.35':
- resolution: {integrity: sha512-+rz3LAYHcR3D2xVgRKa7QE5mp+cwmZs6j+1XxG5dT7HNdg51uKea12L57EVY2bxE3JzpAvCIgOjFEmQCNH82pw==}
+ '@ag-ui/proto@0.0.39':
+ resolution: {integrity: sha512-xlj/PzZHkJ3CgoQC5QP9g7DEl/78wUK1+A2rdkoLKoNAMOkM2g6jKw0N88iFIh5GZhtiCNN2wb8XwRWPYx9XQQ==}
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
@@ -912,111 +863,111 @@ packages:
resolution: {integrity: sha512-z5LMy0MWu0+w2hflUgj4RlJr1R+0BxKXL7ldXTO8FasU8fu599STghO+QKwId2dAD0d464aHtU+ChWuRHw4FNw==}
hasBin: true
- '@asamuzakjp/css-color@2.8.3':
- resolution: {integrity: sha512-GIc76d9UI1hCvOATjZPyHFmE5qhRccp3/zGfMPapK3jBi+yocEzp6BBB0UnfRYP9NP4FANqUZYb0hnfs3TM3hw==}
+ '@asamuzakjp/css-color@3.2.0':
+ resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==}
- '@ast-grep/napi-darwin-arm64@0.32.3':
- resolution: {integrity: sha512-Ifh25Ra38+5TGvO48NVcJsRarBSqJ2ppN6J+Qc8Z19rKALYb61tsWj6oh0W1CTbsYQ/HJbIff//WkUDkY0wMMg==}
+ '@ast-grep/napi-darwin-arm64@0.36.3':
+ resolution: {integrity: sha512-uM0Hrm5gcHqaBL64ktmPBFMTorTlPKWsUfi0E2Cg09GJfeYWvZmicCqgd7qVtjURmQvFQdb4JSqHIkJvws6Uqw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@ast-grep/napi-darwin-x64@0.32.3':
- resolution: {integrity: sha512-jkuXgdvBTK7aTV7IojqMCUbHE4bzJzJ/adR0segW+BpU/uh/pxNuCZAal7E7KmWgSWVSS56UCOjS0OyibZKb7Q==}
+ '@ast-grep/napi-darwin-x64@0.36.3':
+ resolution: {integrity: sha512-wEMeQw8lRL66puG2m8m0kDRQDtubygj59HA/cmut2V5SPx/13BN3wuEk6JPv97gqGUCUGhG2+5Z6UZ/Ll2q01Q==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@ast-grep/napi-linux-arm64-gnu@0.32.3':
- resolution: {integrity: sha512-Kso32W1K/+guK1Jkk33MpvVHhulaGF7lf6HW9Bc4VxRHWyZBXuhwwPOtf7+89qa2nEb0YyUxgQTnMUXbCKyYAQ==}
+ '@ast-grep/napi-linux-arm64-gnu@0.36.3':
+ resolution: {integrity: sha512-sMsTMaUjW7SM8KPbLviCSBuM4zgJcwvie1yZI92HKSlFzC7ABe7X7UvyUREB+JwqccDVEL5yOJAjqB8eFSCizw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@ast-grep/napi-linux-arm64-musl@0.32.3':
- resolution: {integrity: sha512-7+u7F5rzaV0/N5WdP2q+kGl3v+l8iGFRx4p7NUcbNumYqGDS2mkfRkaesRDSd7BH94ZulGtJnpmu3imX7spolQ==}
+ '@ast-grep/napi-linux-arm64-musl@0.36.3':
+ resolution: {integrity: sha512-2XRmNYuovZu0Pa4J3or4PKMkQZnXXfpVcCrPwWB/2ytX7XUo+TWLgYE8rPVnJOyw5zujkveFb0XUrro9mQgLzw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@ast-grep/napi-linux-x64-gnu@0.32.3':
- resolution: {integrity: sha512-XwUjw+W1QWDAPjx+Hsa8ZwONN3MDPINdRkRM6Q1vV3pl0p9YrMpwL72xrWQA1G7r7ej9BI1fLiXWB4YEOeYzJw==}
+ '@ast-grep/napi-linux-x64-gnu@0.36.3':
+ resolution: {integrity: sha512-mTwPRbBi1feGqR2b5TWC5gkEDeRi8wfk4euF5sKNihfMGHj6pdfINHQ3QvLVO4C7z0r/wgWLAvditFA0b997dg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@ast-grep/napi-linux-x64-musl@0.32.3':
- resolution: {integrity: sha512-894fQNqBDUfCP/qYbrPcK6+tMTEskc+vV2IKOKqgCfDryeptaiJJTJL9+Vbj38rO1LWhY8MIZ8W5ZyjxuhDRBA==}
+ '@ast-grep/napi-linux-x64-musl@0.36.3':
+ resolution: {integrity: sha512-tMGPrT+zuZzJK6n1cD1kOii7HYZE9gUXjwtVNE/uZqXEaWP6lmkfoTMbLjnxEe74VQbmaoDGh1/cjrDBnqC6Uw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@ast-grep/napi-win32-arm64-msvc@0.32.3':
- resolution: {integrity: sha512-T8nrZm3E+h2VgHuQ3THQLvqhou4MkSbNcyIOgLZ0l2NatHIckeHuly5fmnkd6KQsGP/AqAEGxZBoOVYvoDl7DA==}
+ '@ast-grep/napi-win32-arm64-msvc@0.36.3':
+ resolution: {integrity: sha512-7pFyr9+dyV+4cBJJ1I57gg6PDXP3GBQeVAsEEitzEruxx4Hb4cyNro54gGtlsS+6ty+N0t004tPQxYO2VrsPIg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@ast-grep/napi-win32-ia32-msvc@0.32.3':
- resolution: {integrity: sha512-40RdPWWgVLCx6gRSXfVXt3TuV6dZQE8K74whq56+nliJqA4TA1QCrNtbX9keFvb1JDc/iOUKc4PKA3A7TGHANQ==}
+ '@ast-grep/napi-win32-ia32-msvc@0.36.3':
+ resolution: {integrity: sha512-MPAgccH9VscRaFuEBMzDGPS+3c4cKNVGIVJ7WSNa1nZtLQ0eFEaPJ7pyDnCezgVSxfNFVYBvKyyF/vcm7Qc9+A==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- '@ast-grep/napi-win32-x64-msvc@0.32.3':
- resolution: {integrity: sha512-4VKmBFhT0M8s1LbAXemPDnHyAjEi5owkqkz85akvic9u6vRI0evRk8j2sHmgEBXwyySLUHf0NfI0XqwZ0mAl7g==}
+ '@ast-grep/napi-win32-x64-msvc@0.36.3':
+ resolution: {integrity: sha512-TIVtuSbXhty9kaSEfr4ULWx5PAuUeGgUkFaR60lmOs7sGTWgpig+suwKfTmevoAblFknCW/aMHOwziwJoUZA6A==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@ast-grep/napi@0.32.3':
- resolution: {integrity: sha512-EdgX3gnDGkKMeofSYQlmPccjnxmGGQoEKL7pVQUmenLrsUBXXcjY//6J0LJApfIzNCknjQkfWpj1IbWDkl66Iw==}
+ '@ast-grep/napi@0.36.3':
+ resolution: {integrity: sha512-ExypohE8L7FvKBHxu7UpwcV9XVfyS+AqNZKyKIfxYwJyD9l7Gw6pmMYd7J2uopJsPEIUf44/emEFds6nFUx/dw==}
engines: {node: '>= 10'}
- '@atlaskit/atlassian-context@0.5.0':
- resolution: {integrity: sha512-ui8J50lnr7I8i8yq+nqupZqEQ3awJzWa3PsGUR+BY/vuM/A/UzNMA3EQApBItyeOPv49nov8lOIidtU0VnzLxw==}
+ '@atlaskit/atlassian-context@0.6.0':
+ resolution: {integrity: sha512-TjaV1OIjP8DaOyaqzPI5OkYvVckn3hYwE92v8RcdnpOiMKI0taedg1sLXD7x0nPx5MtXPmCJNNVJJprDN7pmxQ==}
peerDependencies:
- react: ^18.2.0
+ react: 19.0.0
- '@atlaskit/css@0.12.2':
- resolution: {integrity: sha512-9JCMv+eS9wKupeqtSnNmiOXPV92torqNZVjd3XInyX867dvqksbgAkg74GgKxRrflw2hjsZuOhG57ffdJQ1F/g==}
+ '@atlaskit/css@0.14.4':
+ resolution: {integrity: sha512-0RViwbSzefiKhVgSrnUKY7Gd/Qyi11wUpL0cam0y2zuu4XM2uZnUC4rDppTIwOkU+WaugczQ3YWLKP8gIjx4gQ==}
peerDependencies:
- react: ^18.2.0
+ react: 19.0.0
- '@atlaskit/ds-lib@5.0.0':
- resolution: {integrity: sha512-Bd0/D5Q2Sg/Z1kg/Qst+2VfiVoVuGwEvrWKSt63QgDaCizl30j2EtqLLF9U978mzl1JHMmi3KQeYf3ROjhoACA==}
+ '@atlaskit/ds-lib@5.1.1':
+ resolution: {integrity: sha512-vwRSTKH5+C4Gi/Vtrmla4vfQwyRQZxcgzAYC4NJoMjcpf8heAgmyfCAIfcdpMgkKdQlF4LLi5tjOfDf0gLnv4Q==}
peerDependencies:
- react: ^18.2.0
+ react: 19.0.0
- '@atlaskit/feature-gate-js-client@5.5.5':
- resolution: {integrity: sha512-uuF/gK35LZoyEUtoVcjxXtbls9fb0RiF5kxp9kYfVwuT6XkZxrYAGuQMPq8tnHKpZE3m70tdMuANyIlMddLzqw==}
+ '@atlaskit/feature-gate-js-client@5.5.7':
+ resolution: {integrity: sha512-m2ATuJChdHLJdFxpfm5HPnBzjtg8yJFLdZmZguP24oFJI1562y7JbOSEmrRtbzyOIuuqjSUrcNA/el3+srkjrw==}
- '@atlaskit/motion@5.3.0':
- resolution: {integrity: sha512-gCRs7DCc2LVFMDVkQfmvBCd7j4EIq2wJV5brGkKyJ2EeOUeB2GKVktBVecsfYh2WPEF5XbFw1Wt+QG27r31fTw==}
+ '@atlaskit/motion@5.3.7':
+ resolution: {integrity: sha512-0P2EKOyKHdR8F4F2cdL0BRylkDrEsGUErtWS12NUTvFQXQaO5/yCcbv66Vg2EvFtJx6xUvdCakJXtXBUQf8N/g==}
peerDependencies:
- react: ^18.2.0
+ react: 19.0.0
- '@atlaskit/platform-feature-flags@1.1.1':
- resolution: {integrity: sha512-YKuy3RsqCEoNALiMHVma0GGHkzZMSIBsEgZlV/2TPw65QRzOWJvKA3ZIKucmXzr3m7AUqg1XHwXvVlUuNZhUgg==}
+ '@atlaskit/platform-feature-flags@1.1.2':
+ resolution: {integrity: sha512-PM+fVkV4Yn4/0keiN6ioAap2Y+odTyw1Z4uf+TA0zMmg3/lp/rVNJEc4a24dvd8DfVs5m9bxa/hbO1qJarhCBw==}
- '@atlaskit/pragmatic-drag-and-drop-flourish@2.0.4':
- resolution: {integrity: sha512-qyNfe4fyiaToqrbSfPETx8LPjpDZgxC/kyrFQMZdVx9rLVZ9wEhm3wuWsaJZ2fBnKtge0LMAPHclk55FKYLcRQ==}
+ '@atlaskit/pragmatic-drag-and-drop-flourish@2.0.7':
+ resolution: {integrity: sha512-rlm0HJJzWRYvpBgDaRQexYtmOuXvZsZdVs9kQ4AB/+zpGdmAPAD1QDwoFktMpjU82Q3BifqR+jpXsJZMYSPHig==}
'@atlaskit/pragmatic-drag-and-drop-hitbox@1.1.0':
resolution: {integrity: sha512-JWt6eVp6Br2FPHRM8s0dUIHQk/jFInGP1f3ti5CdtM1Ji5/pt8Akm44wDC063Gv2i5RGseixtbW0z/t6RYtbdg==}
- '@atlaskit/pragmatic-drag-and-drop-react-drop-indicator@3.2.5':
- resolution: {integrity: sha512-XNpZH0m1k9PiXAmm49NZqCAalsLc0VIFsUAjKkwoRfzNlCmHObv/B9vbwAVX+Zf7afUvBwi1RBEWjdjRHcYpNA==}
+ '@atlaskit/pragmatic-drag-and-drop-react-drop-indicator@3.2.7':
+ resolution: {integrity: sha512-QdJJuBnERhnR/iG9TDXJEc1HudIsPVjP3BKuFE14NSVVs8fnSkFsfUrpVxVQPJT6fYZdfEHXREoU+DdLtEI7Fg==}
peerDependencies:
- react: ^18.2.0 || ^19.0.0
+ react: 19.0.0
- '@atlaskit/pragmatic-drag-and-drop@1.7.4':
- resolution: {integrity: sha512-lZHnO9BJdHPKnwB0uvVUCyDnIhL+WAHzXQ2EXX0qacogOsnvIUiCgY0BLKhBqTCWln3/f/Ox5jU54MKO6ayh9A==}
+ '@atlaskit/pragmatic-drag-and-drop@1.7.7':
+ resolution: {integrity: sha512-jX+68AoSTqO/fhCyJDTZ38Ey6/wyL2Iq+J/moanma0YyktpnoHxevjY1UNJHYp0NCburdQDZSL1ZFac1mO1osQ==}
- '@atlaskit/tokens@6.0.0':
- resolution: {integrity: sha512-KofyBwF86HsQPoldfihaukihE9tPqe4cbjgYDmSl8KOXDdAQDpGg9TnUAGknxu3p8EsLZpViG53HfwWvLjs+pQ==}
+ '@atlaskit/tokens@6.4.3':
+ resolution: {integrity: sha512-r+ycP7uEew17DH4DEjNBSog0+THKC0qibdyO0hwanJboUeny8zP6Wqbdif1JzBBoi/Om+YHjjDTGX9qfB1NHBg==}
peerDependencies:
- react: ^18.2.0
+ react: 19.0.0
'@aws-crypto/crc32@5.2.0':
resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==}
@@ -1035,115 +986,115 @@ packages:
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
- '@aws-sdk/client-bedrock-agent-runtime@3.844.0':
- resolution: {integrity: sha512-611WfWgjPC+bsPhnz3GTPUDQR0Mm8dumA6BYimIKLfU1HiZdxzegGR14mH5udtdO0dOuevwk8UocK7FciVopJQ==}
+ '@aws-sdk/client-bedrock-agent-runtime@3.907.0':
+ resolution: {integrity: sha512-3DqbJW/46RhWI51rPoDWyDhNB+ucWLKVo0xTacGJNgGfcfq99x2RJ4nLEu4aOAbbG3589Y3mlGGYRJB8s1kpEw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/client-bedrock-runtime@3.844.0':
- resolution: {integrity: sha512-aKaHY0ZxSubE3mHC34fDSQsclwNM3tWCEJdjEFJ7qjYXQ5zyMr4A0gV/GKDuufX5gh4riRp0R/EaR6cDbG4ApA==}
+ '@aws-sdk/client-bedrock-runtime@3.907.0':
+ resolution: {integrity: sha512-H5tNkxnZOLzUc6WvoqDr5WxkXXOerRk6eTdLLe4dFE49h5CvoX1ngjY17mIA6rddB5FclRD2FI4MbXLfLYmTuA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/client-kendra@3.844.0':
- resolution: {integrity: sha512-71suLErYSP7CT9dB5vuNVtV64xVKw1lSFWUYdtaN746Cujq/i3jSEZLj+HkzGJ6Uebvrwm8flwNEpa4PYmbLXg==}
+ '@aws-sdk/client-kendra@3.907.0':
+ resolution: {integrity: sha512-g1S489tYosiSlLAp0InxdacwthmSN9lIKwHnQYiFKMDi0nLCAdMhqGt29Rf3be7ISaPiWE8vk0jP7MpriYl/ig==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/client-sso@3.844.0':
- resolution: {integrity: sha512-FktodSx+pfUfIqMjoNwZ6t1xqq/G3cfT7I4JJ0HKHoIIZdoCHQB52x0OzKDtHDJAnEQPInasdPS8PorZBZtHmg==}
+ '@aws-sdk/client-sso@3.907.0':
+ resolution: {integrity: sha512-ANuu0duNTcQHv0g5YrEuWImT8o9t6li3A+MtAaKxIbTA3eFQnl6xHDxyrbsrU19FtKPg3CWhvfY04j6DaDvR8g==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/core@3.844.0':
- resolution: {integrity: sha512-pfpI54bG5Xf2NkqrDBC2REStXlDXNCw/whORhkEs+Tp5exU872D5QKguzjPA6hH+8Pvbq1qgt5zXMbduISTHJw==}
+ '@aws-sdk/core@3.907.0':
+ resolution: {integrity: sha512-vuIHL8qUcA5oNi7IWSZauCMaXstWTcSsnK1iHcvg92ddGDo1LMd2kQNo0G9UANa8vOfc908+8xKO40gfL8+M7w==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-env@3.844.0':
- resolution: {integrity: sha512-WB94Ox86MqcZ4CnRjKgopzaSuZH4hMP0GqdOxG4s1it1lRWOIPOHOC1dPiM0Zbj1uqITIhbXUQVXyP/uaJeNkw==}
+ '@aws-sdk/credential-provider-env@3.907.0':
+ resolution: {integrity: sha512-orqT6djon57y09Ci5q0kezisrEvr78Z+7WvZbq0ZC0Ncul4RgJfCmhcgmzNPaWA18NEI0wGytaxYh3YFE7kIBQ==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-http@3.844.0':
- resolution: {integrity: sha512-e+efVqfkhpM8zxYeiLNgTUlX+tmtXzVm3bw1A02U9Z9cWBHyQNb8pi90M7QniLoqRURY1B0C2JqkOE61gd4KNg==}
+ '@aws-sdk/credential-provider-http@3.907.0':
+ resolution: {integrity: sha512-CKG/0hT4o8K2aQKOe+xwGP3keSNOyryhZNmKuHPuMRVlsJfO6wNxlu37HcUPzihJ+S2pOmTVGUbeVMCxJVUJmw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-ini@3.844.0':
- resolution: {integrity: sha512-jc5ArGz2HfAx5QPXD+Ep36+QWyCKzl2TG6Vtl87/vljfLhVD0gEHv8fRsqWEp3Rc6hVfKnCjLW5ayR2HYcow9w==}
+ '@aws-sdk/credential-provider-ini@3.907.0':
+ resolution: {integrity: sha512-Clz1YdXrgQ5WIlcRE7odHbgM/INBxy49EA3csDITafHaDPtPRL39zkQtB5+Lwrrt/Gg0xBlyTbvP5Snan+0lqA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-node@3.844.0':
- resolution: {integrity: sha512-pUqB0StTNyW0R03XjTA3wrQZcie/7FJKSXlYHue921ZXuhLOZpzyDkLNfdRsZTcEoYYWVPSmyS+Eu/g5yVsBNA==}
+ '@aws-sdk/credential-provider-node@3.907.0':
+ resolution: {integrity: sha512-w6Hhc4rV/CFaBliIh9Ph/T59xdGcTF6WmPGzzpykjl68+jcJyUem82hbTVIGaMCpvhx8VRqEr5AEXCXdbDbojw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-process@3.844.0':
- resolution: {integrity: sha512-VCI8XvIDt2WBfk5Gi/wXKPcWTS3OkAbovB66oKcNQalllH8ESDg4SfLNhchdnN8A5sDGj6tIBJ19nk+dQ6GaqQ==}
+ '@aws-sdk/credential-provider-process@3.907.0':
+ resolution: {integrity: sha512-MBWpZqZtKkpM/LOGD5quXvlHJJN8YIP4GKo2ad8y1fEEVydwI8cggyXuauMPV7GllW8d0u3kQUs+4rxm1VaS4w==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-sso@3.844.0':
- resolution: {integrity: sha512-UNp/uWufGlb5nWa4dpc6uQnDOB/9ysJJFG95ACowNVL9XWfi1LJO7teKrqNkVhq0CzSJS1tCt3FvX4UfM+aN1g==}
+ '@aws-sdk/credential-provider-sso@3.907.0':
+ resolution: {integrity: sha512-F8I7xwIt0mhdg8NrC70HDmhDRx3ValBvmWH3YkWsjZltWIFozhQCCDISRPhanMkXVhSFmZY0FJ5Lo+B/SZvAAA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-web-identity@3.844.0':
- resolution: {integrity: sha512-iDmX4pPmatjttIScdspZRagaFnCjpHZIEEwTyKdXxUaU0iAOSXF8ecrCEvutETvImPOC86xdrq+MPacJOnMzUA==}
+ '@aws-sdk/credential-provider-web-identity@3.907.0':
+ resolution: {integrity: sha512-1CmRE/M8LJ/joXm5vUsKkQS35MoWA4xvUH9J1jyCuL3J9A8M+bnTe6ER8fnNLgmEs6ikdmYEIdfijPpBjBpFig==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/eventstream-handler-node@3.840.0':
- resolution: {integrity: sha512-m/zVrSSAEHq+6h4sy0JUEBScB1pGgs/1+iRVhfzfbnf+/gTr4ut2jRq4tDiNEX9pQ1oFVvw+ntPua5qfquQeRQ==}
+ '@aws-sdk/eventstream-handler-node@3.901.0':
+ resolution: {integrity: sha512-Rx9QJekdXAEuMGnPFesYTdX1UNkhos69Vqxf6BBKdvnWELCQGQhz5SPBNNda7BIzw7gMMo8Dsp+leTxUTt1dgg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-eventstream@3.840.0':
- resolution: {integrity: sha512-4khgf7AjJ4llh3aiNmZ+x4PGl4vkKNxRHn0xTgi6Iw1J3SChsF2mnNaLXK8hoXeydx756rw+JhqOuZH91i5l4w==}
+ '@aws-sdk/middleware-eventstream@3.901.0':
+ resolution: {integrity: sha512-C6xMUuxAk7Vyz3btglhgBYj+DOr+osBeaYTcgHjmrVYOi6xAMFLzC14jTOAuRML9uu+3eIMmFg9tN2wuyKvChQ==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-host-header@3.840.0':
- resolution: {integrity: sha512-ub+hXJAbAje94+Ya6c6eL7sYujoE8D4Bumu1NUI8TXjUhVVn0HzVWQjpRLshdLsUp1AW7XyeJaxyajRaJQ8+Xg==}
+ '@aws-sdk/middleware-host-header@3.901.0':
+ resolution: {integrity: sha512-yWX7GvRmqBtbNnUW7qbre3GvZmyYwU0WHefpZzDTYDoNgatuYq6LgUIQ+z5C04/kCRoFkAFrHag8a3BXqFzq5A==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-logger@3.840.0':
- resolution: {integrity: sha512-lSV8FvjpdllpGaRspywss4CtXV8M7NNNH+2/j86vMH+YCOZ6fu2T/TyFd/tHwZ92vDfHctWkRbQxg0bagqwovA==}
+ '@aws-sdk/middleware-logger@3.901.0':
+ resolution: {integrity: sha512-UoHebjE7el/tfRo8/CQTj91oNUm+5Heus5/a4ECdmWaSCHCS/hXTsU3PTTHAY67oAQR8wBLFPfp3mMvXjB+L2A==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-recursion-detection@3.840.0':
- resolution: {integrity: sha512-Gu7lGDyfddyhIkj1Z1JtrY5NHb5+x/CRiB87GjaSrKxkDaydtX2CU977JIABtt69l9wLbcGDIQ+W0uJ5xPof7g==}
+ '@aws-sdk/middleware-recursion-detection@3.901.0':
+ resolution: {integrity: sha512-Wd2t8qa/4OL0v/oDpCHHYkgsXJr8/ttCxrvCKAt0H1zZe2LlRhY9gpDVKqdertfHrHDj786fOvEQA28G1L75Dg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-user-agent@3.844.0':
- resolution: {integrity: sha512-SIbDNUL6ZYXPj5Tk0qEz05sW9kNS1Gl3/wNWEmH+AuUACipkyIeKKWzD6z5433MllETh73vtka/JQF3g7AuZww==}
+ '@aws-sdk/middleware-user-agent@3.907.0':
+ resolution: {integrity: sha512-j/h3lk4X6AAXvusx/h8rr0zlo7G0l0quZM4k4rS/9jzatI53HCsrMaiGu6YXbxuVqtfMqv0MAj0MVhaMsAIs4A==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-websocket@3.844.0':
- resolution: {integrity: sha512-5ZtntUZ9ZMdUbQZ3kI5e5tpiZPN/O57h6fnGZ+GHB+wpSVSOQS78TBt0qYZW+CoZr8iyRsVkJheGETajFCMaUg==}
+ '@aws-sdk/middleware-websocket@3.901.0':
+ resolution: {integrity: sha512-prfva238P9uEmQNi64Ert4DvYraKHg0szRlGb1LfhE8QrE8m+3oVPPQyNSi/wOrBHwzlOp1rLI9i+LT1fxurDA==}
engines: {node: '>= 14.0.0'}
- '@aws-sdk/nested-clients@3.844.0':
- resolution: {integrity: sha512-p2XILWc7AcevUSpBg2VtQrk79eWQC4q2JsCSY7HxKpFLZB4mMOfmiTyYkR1gEA6AttK/wpCOtfz+hi1/+z2V1A==}
+ '@aws-sdk/nested-clients@3.907.0':
+ resolution: {integrity: sha512-LycXsdC5sMIc+Az5z1Mo2eYShr2kLo2gUgx7Rja3udG0GdqgdR/NNJ6ArmDCeKk2O5RFS5EgEg89bT55ecl5Uw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/region-config-resolver@3.840.0':
- resolution: {integrity: sha512-Qjnxd/yDv9KpIMWr90ZDPtRj0v75AqGC92Lm9+oHXZ8p1MjG5JE2CW0HL8JRgK9iKzgKBL7pPQRXI8FkvEVfrA==}
+ '@aws-sdk/region-config-resolver@3.901.0':
+ resolution: {integrity: sha512-7F0N888qVLHo4CSQOsnkZ4QAp8uHLKJ4v3u09Ly5k4AEStrSlFpckTPyUx6elwGL+fxGjNE2aakK8vEgzzCV0A==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/token-providers@3.844.0':
- resolution: {integrity: sha512-Kh728FEny0fil+LeH8U1offPJCTd/EDh8liBAvLtViLHt2WoX2xC8rk98D38Q5p79aIUhHb3Pf4n9IZfTu/Kog==}
+ '@aws-sdk/token-providers@3.907.0':
+ resolution: {integrity: sha512-HjPbNft1Ad8X1lHQG21QXy9pitdXA+OKH6NtcXg57A31002tM+SkyUmU6ty1jbsRBEScxziIVe5doI1NmkHheA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/types@3.840.0':
- resolution: {integrity: sha512-xliuHaUFZxEx1NSXeLLZ9Dyu6+EJVQKEoD+yM+zqUo3YDZ7medKJWY6fIOKiPX/N7XbLdBYwajb15Q7IL8KkeA==}
+ '@aws-sdk/types@3.901.0':
+ resolution: {integrity: sha512-FfEM25hLEs4LoXsLXQ/q6X6L4JmKkKkbVFpKD4mwfVHtRVQG6QxJiCPcrkcPISquiy6esbwK2eh64TWbiD60cg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/util-endpoints@3.844.0':
- resolution: {integrity: sha512-1DHh0WTUmxlysz3EereHKtKoxVUG9UC5BsfAw6Bm4/6qDlJiqtY3oa2vebkYN23yltKdfsCK65cwnBRU59mWVg==}
+ '@aws-sdk/util-endpoints@3.901.0':
+ resolution: {integrity: sha512-5nZP3hGA8FHEtKvEQf4Aww5QZOkjLW1Z+NixSd+0XKfHvA39Ah5sZboScjLx0C9kti/K3OGW1RCx5K9Zc3bZqg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/util-format-url@3.840.0':
- resolution: {integrity: sha512-VB1PWyI1TQPiPvg4w7tgUGGQER1xxXPNUqfh3baxUSFi1Oh8wHrDnFywkxLm3NMmgDmnLnSZ5Q326qAoyqKLSg==}
+ '@aws-sdk/util-format-url@3.901.0':
+ resolution: {integrity: sha512-GGUnJKrh3OF1F3YRSWtwPLbN904Fcfxf03gujyq1rcrDRPEkzoZB+2BzNkB27SsU6lAlwNq+4aRlZRVUloPiag==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/util-locate-window@3.804.0':
- resolution: {integrity: sha512-zVoRfpmBVPodYlnMjgVjfGoEZagyRF5IPn3Uo6ZvOZp24chnW/FRstH7ESDHDDRga4z3V+ElUQHKpFDXWyBW5A==}
+ '@aws-sdk/util-locate-window@3.893.0':
+ resolution: {integrity: sha512-T89pFfgat6c8nMmpI8eKjBcDcgJq36+m9oiXbcUzeU55MP9ZuGgBomGjGnHaEyF36jenW9gmg3NfZDm0AO2XPg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/util-user-agent-browser@3.840.0':
- resolution: {integrity: sha512-JdyZM3EhhL4PqwFpttZu1afDpPJCCc3eyZOLi+srpX11LsGj6sThf47TYQN75HT1CarZ7cCdQHGzP2uy3/xHfQ==}
+ '@aws-sdk/util-user-agent-browser@3.907.0':
+ resolution: {integrity: sha512-Hus/2YCQmtCEfr4Ls88d07Q99Ex59uvtktiPTV963Q7w7LHuIT/JBjrbwNxtSm2KlJR9PHNdqxwN+fSuNsMGMQ==}
- '@aws-sdk/util-user-agent-node@3.844.0':
- resolution: {integrity: sha512-0eTpURp9Gxbyyeqr78ogARZMSWS5KUMZuN+XMHxNpQLmn2S+J3g+MAyoklCcwhKXlbdQq2aMULEiy0mqIWytuw==}
+ '@aws-sdk/util-user-agent-node@3.907.0':
+ resolution: {integrity: sha512-r2Bc8VCU6ymkuem+QWT6oDdGvaYnK0YHg77SGUF47k+JsztSt1kZR0Y0q8jRH97bOsXldThyEcYsNbqDERa1Uw==}
engines: {node: '>=18.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
@@ -1151,8 +1102,12 @@ packages:
aws-crt:
optional: true
- '@aws-sdk/xml-builder@3.821.0':
- resolution: {integrity: sha512-DIIotRnefVL6DiaHtO6/21DhJ4JZnnIwdNbpwiAhdt/AVbttcE4yw925gsjur0OGv5BTYXQXU3YnANBYnZjuQA==}
+ '@aws-sdk/xml-builder@3.901.0':
+ resolution: {integrity: sha512-pxFCkuAP7Q94wMTNPAwi6hEtNrp/BdFf+HOrIEeFQsk4EoOmpKY3I6S+u6A9Wg295J80Kh74LqDWM22ux3z6Aw==}
+ engines: {node: '>=18.0.0'}
+
+ '@aws/lambda-invoke-store@0.0.1':
+ resolution: {integrity: sha512-ORHRQ2tmvnBXc8t/X9Z8IcSbBA4xTLKuN873FopzklHMeqBst7YG0d+AX97inkvDX+NChYtSr+qGfcqGFaI8Zw==}
engines: {node: '>=18.0.0'}
'@babel/code-frame@7.10.4':
@@ -1162,16 +1117,16 @@ packages:
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.28.0':
- resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==}
+ '@babel/compat-data@7.28.4':
+ resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.26.10':
- resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
+ '@babel/core@7.28.4':
+ resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.28.0':
- resolution: {integrity: sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==}
+ '@babel/generator@7.28.3':
+ resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.27.3':
@@ -1182,8 +1137,8 @@ packages:
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.27.1':
- resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==}
+ '@babel/helper-create-class-features-plugin@7.28.3':
+ resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1211,8 +1166,8 @@ packages:
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.27.3':
- resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==}
+ '@babel/helper-module-transforms@7.28.3':
+ resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1253,20 +1208,20 @@ packages:
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.27.1':
- resolution: {integrity: sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==}
+ '@babel/helper-wrap-function@7.28.3':
+ resolution: {integrity: sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.27.0':
- resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==}
+ '@babel/helpers@7.28.4':
+ resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.25.9':
resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.28.0':
- resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==}
+ '@babel/parser@7.28.4':
+ resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -1294,45 +1249,24 @@ packages:
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1':
- resolution: {integrity: sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw==}
+ '@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-class-properties@7.18.6':
- resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
+ '@babel/plugin-proposal-decorators@7.28.0':
+ resolution: {integrity: sha512-zOiZqvANjWDUaUS9xMxbMcK/Zccztbe/6ikvUXaG9nsPH3w6qh5UaPGAnirI/WhIbZ8m3OHU0ReyPrknG+ZKeg==}
engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-decorators@7.25.9':
- resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
+ '@babel/plugin-proposal-export-default-from@7.27.1':
+ resolution: {integrity: sha512-hjlsMBl1aJc5lp8MoCDEZCiYzlgdRAShOjAfRw6X+GlpLpUPU7c3XNLsKFZbQk/1cRzBlJ7CXg3xJAJMrFa1Uw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-export-default-from@7.25.9':
- resolution: {integrity: sha512-ykqgwNfSnNOB+C8fV5X4mG3AVmvu+WVxcaU9xHHtBb7PCrPeweMmPjGsn8eMaeJg6SJuoUuZENeeSWaarWqonQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6':
- resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-optional-chaining@7.21.0':
- resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
- 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'}
@@ -1360,8 +1294,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-decorators@7.25.9':
- resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
+ '@babel/plugin-syntax-decorators@7.27.1':
+ resolution: {integrity: sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1371,14 +1305,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-export-default-from@7.25.9':
- resolution: {integrity: sha512-9MhJ/SMTsVqsd69GyQg89lYR4o9T+oDGv5F6IsigxxqFVOyR/IflDLYP8WDI1l8fkhNGGktqkvL5qwNCtGEpgQ==}
+ '@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.26.0':
- resolution: {integrity: sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==}
+ '@babel/plugin-syntax-flow@7.27.1':
+ resolution: {integrity: sha512-p9OkPbZ5G7UT1MofwYFigGebnrzGJacoBSQM0/6bi/PUMVE+qlWDD/OalvQKbwgQzU6dl0xAv6r4X7Jme0RYxA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1405,8 +1339,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.25.9':
- resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
+ '@babel/plugin-syntax-jsx@7.27.1':
+ resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1453,8 +1387,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.25.9':
- resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
+ '@babel/plugin-syntax-typescript@7.27.1':
+ resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1489,8 +1423,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.28.0':
- resolution: {integrity: sha512-gKKnwjpdx5sER/wl0WN0efUBFzF/56YZO0RJrSYP4CljXnP31ByY7fol89AzomdlLNzI36AvOTmYHsnZTCkq8Q==}
+ '@babel/plugin-transform-block-scoping@7.28.4':
+ resolution: {integrity: sha512-1yxmvN0MJHOhPVmAsmoW5liWwoILobu/d/ShymZmj867bAdxGbehIrew1DuLpw2Ukv+qDSSPQdYW1dLNE7t11A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1501,14 +1435,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.27.1':
- resolution: {integrity: sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA==}
+ '@babel/plugin-transform-class-static-block@7.28.3':
+ resolution: {integrity: sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.28.0':
- resolution: {integrity: sha512-IjM1IoJNw72AZFlj33Cu8X0q2XK/6AaVC3jQu+cgQ5lThWD5ajnuUAml80dqRmOhmPkTH8uAwnpMu9Rvj0LTRA==}
+ '@babel/plugin-transform-classes@7.28.4':
+ resolution: {integrity: sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1549,6 +1483,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-explicit-resource-management@7.28.0':
+ resolution: {integrity: sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==}
+ 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==}
engines: {node: '>=6.9.0'}
@@ -1561,8 +1501,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-flow-strip-types@7.26.5':
- resolution: {integrity: sha512-eGK26RsbIkYUns3Y8qKl362juDDYK+wEdPGHGrhzUl6CewZFo55VZ7hg+CyMFU4dd5QQakBN86nBMpRsFpRvbQ==}
+ '@babel/plugin-transform-flow-strip-types@7.27.1':
+ resolution: {integrity: sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1651,8 +1591,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.28.0':
- resolution: {integrity: sha512-9VNGikXxzu5eCiQjdE4IZn8sb9q7Xsk5EXLDBKUYg1e/Tve8/05+KJEtcxGxAgCY5t/BpKQM+JEL/yT4tvgiUA==}
+ '@babel/plugin-transform-object-rest-spread@7.28.4':
+ resolution: {integrity: sha512-373KA2HQzKhQCYiRVIRr+3MjpCObqzDlyrM6u4I201wL8Mp2wHf7uB8GhDwis03k2ti8Zr65Zyyqs1xOxUF/Ew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1699,44 +1639,44 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-display-name@7.25.9':
- resolution: {integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==}
+ '@babel/plugin-transform-react-display-name@7.28.0':
+ resolution: {integrity: sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-development@7.25.9':
- resolution: {integrity: sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==}
+ '@babel/plugin-transform-react-jsx-development@7.27.1':
+ resolution: {integrity: sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-self@7.25.9':
- resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
+ '@babel/plugin-transform-react-jsx-self@7.27.1':
+ resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-source@7.25.9':
- resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
+ '@babel/plugin-transform-react-jsx-source@7.27.1':
+ resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx@7.25.9':
- resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==}
+ '@babel/plugin-transform-react-jsx@7.27.1':
+ resolution: {integrity: sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-pure-annotations@7.25.9':
- resolution: {integrity: sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==}
+ '@babel/plugin-transform-react-pure-annotations@7.27.1':
+ resolution: {integrity: sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.28.0':
- resolution: {integrity: sha512-LOAozRVbqxEVjSKfhGnuLoE4Kz4Oc5UJzuvFUhSsQzdCdaAQu06mG8zDv2GFSerM62nImUZ7K92vxnQcLSDlCQ==}
+ '@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
@@ -1753,8 +1693,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.26.10':
- resolution: {integrity: sha512-NWaL2qG6HRpONTnj4JvDU6th4jYeZOJgu3QhmFTCihib0ermtOJqktA5BduGm3suhhVe9EMP9c9+mfJ/I9slqw==}
+ '@babel/plugin-transform-runtime@7.28.3':
+ resolution: {integrity: sha512-Y6ab1kGqZ0u42Zv/4a7l0l72n9DKP/MKoKWaUSBylrhNZO2prYuqFOLbn5aW5SIFXwSH93yfjbgllL8lxuGKLg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1789,8 +1729,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.26.8':
- resolution: {integrity: sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==}
+ '@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
@@ -1819,14 +1759,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.26.9':
- resolution: {integrity: sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/preset-flow@7.25.9':
- resolution: {integrity: sha512-EASHsAhE+SSlEzJ4bzfusnXSHiU+JfAYzj+jbw2vgQKgq5HrUr8qs+vgtiEL5dOH6sEweI+PNt2D7AqrDSHyqQ==}
+ '@babel/preset-env@7.28.3':
+ resolution: {integrity: sha512-ROiDcM+GbYVPYBOeCR6uBXKkQpBExLl8k9HO1ygXEyds39j+vCCsjmj7S8GOniZQlEs81QlkdJZe76IpLSiqpg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1836,38 +1770,32 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/preset-react@7.26.3':
- resolution: {integrity: sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/preset-typescript@7.26.0':
- resolution: {integrity: sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==}
+ '@babel/preset-react@7.27.1':
+ resolution: {integrity: sha512-oJHWh2gLhU9dW9HHr42q0cI0/iHHXTLGe39qvpAZZzagHy0MzYLCnCVV0symeRvzmjHyVU7mw2K06E6u/JwbhA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/register@7.25.9':
- resolution: {integrity: sha512-8D43jXtGsYmEeDvm4MWHYUpWf8iiXgWYx3fW7E7Wb7Oe6FWqJPl5K6TuFW0dOwNZzEE5rjlaSJYH9JjrUKJszA==}
+ '@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/runtime@7.27.6':
- resolution: {integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==}
+ '@babel/runtime@7.28.4':
+ resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
engines: {node: '>=6.9.0'}
'@babel/template@7.27.2':
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.28.0':
- resolution: {integrity: sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==}
+ '@babel/traverse@7.28.4':
+ resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.28.0':
- resolution: {integrity: sha512-jYnje+JyZG5YThjHiF28oT4SIZLnYOcSBb6+SDaFIyzDVSkXQmQQYclJ2R+YxcdmK0AX6x1E5OQNtuh3jHDrUg==}
+ '@babel/types@7.28.4':
+ resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==}
engines: {node: '>=6.9.0'}
'@bcoe/v8-coverage@0.2.3':
@@ -1889,17 +1817,8 @@ packages:
openai: ^4.62.1
zod: ^3.23.8
- '@bufbuild/protobuf@2.6.0':
- resolution: {integrity: sha512-6cuonJVNOIL7lTj5zgo/Rc2bKAo4/GvN+rKCrUj7GdEHRzCk8zKOfFwUsL9nAVk5rSIsRmlgcpLzTRysopEeeg==}
-
- '@bundled-es-modules/cookie@2.0.1':
- resolution: {integrity: sha512-8o+5fRPLNbjbdGRRmJj3h6Hh1AQJf2dk3qQ/5ZFb+PXkRNiSoMGGUKlsgLfrxneb72axVJyIYji64E2+nNfYyw==}
-
- '@bundled-es-modules/statuses@1.0.1':
- resolution: {integrity: sha512-yn7BklA5acgcBr+7w064fGV+SGIFySjCKpqjcWgBAIfrAkY+4GQTJJHQMeT3V/sgz23VTEVV8TtOmkvJAhFVfg==}
-
- '@bundled-es-modules/tough-cookie@0.1.6':
- resolution: {integrity: sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==}
+ '@bufbuild/protobuf@2.9.0':
+ resolution: {integrity: sha512-rnJenoStJ8nvmt9Gzye8nkYd6V22xUAnu4086ER7h1zJ508vStko4pMvDeQ446ilDTFpV5wnoc5YS7XvMwwMqA==}
'@cfworker/json-schema@4.1.1':
resolution: {integrity: sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og==}
@@ -1910,133 +1829,134 @@ packages:
peerDependencies:
storybook: ^0.0.0-0 || ^9.0.0 || ^9.1.0-0 || ^9.2.0-0 || ^10.0.0-0
- '@commitlint/cli@19.8.0':
- resolution: {integrity: sha512-t/fCrLVu+Ru01h0DtlgHZXbHV2Y8gKocTR5elDOqIRUzQd0/6hpt2VIWOj9b3NDo7y4/gfxeR2zRtXq/qO6iUg==}
+ '@commitlint/cli@19.8.1':
+ resolution: {integrity: sha512-LXUdNIkspyxrlV6VDHWBmCZRtkEVRpBKxi2Gtw3J54cGWhLCTouVD/Q6ZSaSvd2YaDObWK8mDjrz3TIKtaQMAA==}
engines: {node: '>=v18'}
hasBin: true
- '@commitlint/config-conventional@19.8.0':
- resolution: {integrity: sha512-9I2kKJwcAPwMoAj38hwqFXG0CzS2Kj+SAByPUQ0SlHTfb7VUhYVmo7G2w2tBrqmOf7PFd6MpZ/a1GQJo8na8kw==}
+ '@commitlint/config-conventional@19.8.1':
+ resolution: {integrity: sha512-/AZHJL6F6B/G959CsMAzrPKKZjeEiAVifRyEwXxcT6qtqbPwGw+iQxmNS+Bu+i09OCtdNRW6pNpBvgPrtMr9EQ==}
engines: {node: '>=v18'}
- '@commitlint/config-validator@19.8.0':
- resolution: {integrity: sha512-+r5ZvD/0hQC3w5VOHJhGcCooiAVdynFlCe2d6I9dU+PvXdV3O+fU4vipVg+6hyLbQUuCH82mz3HnT/cBQTYYuA==}
+ '@commitlint/config-validator@19.8.1':
+ resolution: {integrity: sha512-0jvJ4u+eqGPBIzzSdqKNX1rvdbSU1lPNYlfQQRIFnBgLy26BtC0cFnr7c/AyuzExMxWsMOte6MkTi9I3SQ3iGQ==}
engines: {node: '>=v18'}
- '@commitlint/ensure@19.8.0':
- resolution: {integrity: sha512-kNiNU4/bhEQ/wutI1tp1pVW1mQ0QbAjfPRo5v8SaxoVV+ARhkB8Wjg3BSseNYECPzWWfg/WDqQGIfV1RaBFQZg==}
+ '@commitlint/ensure@19.8.1':
+ resolution: {integrity: sha512-mXDnlJdvDzSObafjYrOSvZBwkD01cqB4gbnnFuVyNpGUM5ijwU/r/6uqUmBXAAOKRfyEjpkGVZxaDsCVnHAgyw==}
engines: {node: '>=v18'}
- '@commitlint/execute-rule@19.8.0':
- resolution: {integrity: sha512-fuLeI+EZ9x2v/+TXKAjplBJWI9CNrHnyi5nvUQGQt4WRkww/d95oVRsc9ajpt4xFrFmqMZkd/xBQHZDvALIY7A==}
+ '@commitlint/execute-rule@19.8.1':
+ resolution: {integrity: sha512-YfJyIqIKWI64Mgvn/sE7FXvVMQER/Cd+s3hZke6cI1xgNT/f6ZAz5heND0QtffH+KbcqAwXDEE1/5niYayYaQA==}
engines: {node: '>=v18'}
- '@commitlint/format@19.8.0':
- resolution: {integrity: sha512-EOpA8IERpQstxwp/WGnDArA7S+wlZDeTeKi98WMOvaDLKbjptuHWdOYYr790iO7kTCif/z971PKPI2PkWMfOxg==}
+ '@commitlint/format@19.8.1':
+ resolution: {integrity: sha512-kSJj34Rp10ItP+Eh9oCItiuN/HwGQMXBnIRk69jdOwEW9llW9FlyqcWYbHPSGofmjsqeoxa38UaEA5tsbm2JWw==}
engines: {node: '>=v18'}
- '@commitlint/is-ignored@19.8.0':
- resolution: {integrity: sha512-L2Jv9yUg/I+jF3zikOV0rdiHUul9X3a/oU5HIXhAJLE2+TXTnEBfqYP9G5yMw/Yb40SnR764g4fyDK6WR2xtpw==}
+ '@commitlint/is-ignored@19.8.1':
+ resolution: {integrity: sha512-AceOhEhekBUQ5dzrVhDDsbMaY5LqtN8s1mqSnT2Kz1ERvVZkNihrs3Sfk1Je/rxRNbXYFzKZSHaPsEJJDJV8dg==}
engines: {node: '>=v18'}
- '@commitlint/lint@19.8.0':
- resolution: {integrity: sha512-+/NZKyWKSf39FeNpqhfMebmaLa1P90i1Nrb1SrA7oSU5GNN/lksA4z6+ZTnsft01YfhRZSYMbgGsARXvkr/VLQ==}
+ '@commitlint/lint@19.8.1':
+ resolution: {integrity: sha512-52PFbsl+1EvMuokZXLRlOsdcLHf10isTPlWwoY1FQIidTsTvjKXVXYb7AvtpWkDzRO2ZsqIgPK7bI98x8LRUEw==}
engines: {node: '>=v18'}
- '@commitlint/load@19.8.0':
- resolution: {integrity: sha512-4rvmm3ff81Sfb+mcWT5WKlyOa+Hd33WSbirTVUer0wjS1Hv/Hzr07Uv1ULIV9DkimZKNyOwXn593c+h8lsDQPQ==}
+ '@commitlint/load@19.8.1':
+ resolution: {integrity: sha512-9V99EKG3u7z+FEoe4ikgq7YGRCSukAcvmKQuTtUyiYPnOd9a2/H9Ak1J9nJA1HChRQp9OA/sIKPugGS+FK/k1A==}
engines: {node: '>=v18'}
- '@commitlint/message@19.8.0':
- resolution: {integrity: sha512-qs/5Vi9bYjf+ZV40bvdCyBn5DvbuelhR6qewLE8Bh476F7KnNyLfdM/ETJ4cp96WgeeHo6tesA2TMXS0sh5X4A==}
+ '@commitlint/message@19.8.1':
+ resolution: {integrity: sha512-+PMLQvjRXiU+Ae0Wc+p99EoGEutzSXFVwQfa3jRNUZLNW5odZAyseb92OSBTKCu+9gGZiJASt76Cj3dLTtcTdg==}
engines: {node: '>=v18'}
- '@commitlint/parse@19.8.0':
- resolution: {integrity: sha512-YNIKAc4EXvNeAvyeEnzgvm1VyAe0/b3Wax7pjJSwXuhqIQ1/t2hD3OYRXb6D5/GffIvaX82RbjD+nWtMZCLL7Q==}
+ '@commitlint/parse@19.8.1':
+ resolution: {integrity: sha512-mmAHYcMBmAgJDKWdkjIGq50X4yB0pSGpxyOODwYmoexxxiUCy5JJT99t1+PEMK7KtsCtzuWYIAXYAiKR+k+/Jw==}
engines: {node: '>=v18'}
- '@commitlint/read@19.8.0':
- resolution: {integrity: sha512-6ywxOGYajcxK1y1MfzrOnwsXO6nnErna88gRWEl3qqOOP8MDu/DTeRkGLXBFIZuRZ7mm5yyxU5BmeUvMpNte5w==}
+ '@commitlint/read@19.8.1':
+ resolution: {integrity: sha512-03Jbjb1MqluaVXKHKRuGhcKWtSgh3Jizqy2lJCRbRrnWpcM06MYm8th59Xcns8EqBYvo0Xqb+2DoZFlga97uXQ==}
engines: {node: '>=v18'}
- '@commitlint/resolve-extends@19.8.0':
- resolution: {integrity: sha512-CLanRQwuG2LPfFVvrkTrBR/L/DMy3+ETsgBqW1OvRxmzp/bbVJW0Xw23LnnExgYcsaFtos967lul1CsbsnJlzQ==}
+ '@commitlint/resolve-extends@19.8.1':
+ resolution: {integrity: sha512-GM0mAhFk49I+T/5UCYns5ayGStkTt4XFFrjjf0L4S26xoMTSkdCf9ZRO8en1kuopC4isDFuEm7ZOm/WRVeElVg==}
engines: {node: '>=v18'}
- '@commitlint/rules@19.8.0':
- resolution: {integrity: sha512-IZ5IE90h6DSWNuNK/cwjABLAKdy8tP8OgGVGbXe1noBEX5hSsu00uRlLu6JuruiXjWJz2dZc+YSw3H0UZyl/mA==}
+ '@commitlint/rules@19.8.1':
+ resolution: {integrity: sha512-Hnlhd9DyvGiGwjfjfToMi1dsnw1EXKGJNLTcsuGORHz6SS9swRgkBsou33MQ2n51/boIDrbsg4tIBbRpEWK2kw==}
engines: {node: '>=v18'}
- '@commitlint/to-lines@19.8.0':
- resolution: {integrity: sha512-3CKLUw41Cur8VMjh16y8LcsOaKbmQjAKCWlXx6B0vOUREplp6em9uIVhI8Cv934qiwkbi2+uv+mVZPnXJi1o9A==}
+ '@commitlint/to-lines@19.8.1':
+ resolution: {integrity: sha512-98Mm5inzbWTKuZQr2aW4SReY6WUukdWXuZhrqf1QdKPZBCCsXuG87c+iP0bwtD6DBnmVVQjgp4whoHRVixyPBg==}
engines: {node: '>=v18'}
- '@commitlint/top-level@19.8.0':
- resolution: {integrity: sha512-Rphgoc/omYZisoNkcfaBRPQr4myZEHhLPx2/vTXNLjiCw4RgfPR1wEgUpJ9OOmDCiv5ZyIExhprNLhteqH4FuQ==}
+ '@commitlint/top-level@19.8.1':
+ resolution: {integrity: sha512-Ph8IN1IOHPSDhURCSXBz44+CIu+60duFwRsg6HqaISFHQHbmBtxVw4ZrFNIYUzEP7WwrNPxa2/5qJ//NK1FGcw==}
engines: {node: '>=v18'}
- '@commitlint/types@19.8.0':
- resolution: {integrity: sha512-LRjP623jPyf3Poyfb0ohMj8I3ORyBDOwXAgxxVPbSD0unJuW2mJWeiRfaQinjtccMqC5Wy1HOMfa4btKjbNxbg==}
+ '@commitlint/types@19.8.1':
+ resolution: {integrity: sha512-/yCrWGCoA1SVKOks25EGadP9Pnj0oAIHGpl2wH2M2Y46dPM2ueb8wyCVOD7O3WCTkaJ0IkKvzhl1JY7+uCT2Dw==}
engines: {node: '>=v18'}
'@compiled/react@0.18.6':
resolution: {integrity: sha512-Mt6sJOwykeoToEBFbOUNR4xABi2gOr/+X5QSGqGEYiCBMh+XPDAclG2UX94zveiYJXO4AUJIQBCVwa4/lwPMBA==}
peerDependencies:
- react: '>= 16.12.0'
+ react: 19.0.0
- '@copilotkit/react-core@1.10.2':
- resolution: {integrity: sha512-D9KenEFK378yV/yH0InrliBsTJigjjBCNqibTf+OmO36EL/CdmNLRZxfqb8xlPrYZThYNRlYW6Eg1tGDRjh+fQ==}
+ '@copilotkit/react-core@1.10.6':
+ resolution: {integrity: sha512-sdojpntwgOxP8lWRzaFEiWr0g2wDefjQHtve5GPPie+otseFonV88FZjSqIq5LN+q5BIwDOEhCmDjALsGjXvuQ==}
peerDependencies:
- react: ^18 || ^19 || ^19.0.0-rc
- react-dom: ^18 || ^19 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
- '@copilotkit/react-ui@1.10.2':
- resolution: {integrity: sha512-i8o/t96KvRGhph065I2+y7S3GVrjKCYAzIomhzrbiINeei3C1okRa1wUzVKfgtTiUFAWL+EXNZgW65gHXA5lJw==}
+ '@copilotkit/react-ui@1.10.6':
+ resolution: {integrity: sha512-eNIbZKMvBVZqlAR4fqkmZRIYIt8WhwZOxfVJVwMD9nfmWdtatmxrOLecyDiPk/hkq2o/8s2/rubaZSMK6m+GHQ==}
peerDependencies:
- react: ^18 || ^19 || ^19.0.0-rc
+ react: 19.0.0
- '@copilotkit/runtime-client-gql@1.10.2':
- resolution: {integrity: sha512-XxTzRiNhp+o2tt5MuDoJyLjjWw50uI0PzYh4iGfkck2mMsSes1MAJW70PmKtPKMNLTdbbU4ZvWlKCkTLGlrutQ==}
+ '@copilotkit/runtime-client-gql@1.10.6':
+ resolution: {integrity: sha512-oLX8mjppVvQCWfquW9A0500hYVNxM4X/mtt76SEvfGUb2KsNQ4j2HOCzpmtm85MeLproC+f9738wLwRueLliZg==}
peerDependencies:
- react: ^18 || ^19 || ^19.0.0-rc
+ react: 19.0.0
- '@copilotkit/runtime@1.10.2':
- resolution: {integrity: sha512-CaEd9zDaR9fmCVHFQgCdu+5pRBMoUnUA2+sxjQOelIhdl/nN5A6fuuXmlXy0u4S7rz/D8ngZmoluYO7K3FrSEg==}
+ '@copilotkit/runtime@1.10.6':
+ resolution: {integrity: sha512-35MdJ6nutC+spgHRJURbanLxBoQCNvVBYD0CBIk4Rv3/Ck8XgZA4lcc+5aGteuERXOPBsYEQjGD4xEPy3QXmGg==}
peerDependencies:
- '@ag-ui/client': '>=0.0.34'
- '@ag-ui/core': '>=0.0.34'
- '@ag-ui/encoder': '>=0.0.34'
- '@ag-ui/proto': '>=0.0.34'
+ '@ag-ui/client': '>=0.0.39'
+ '@ag-ui/core': '>=0.0.39'
+ '@ag-ui/encoder': '>=0.0.39'
+ '@ag-ui/langgraph': '>=0.0.18'
+ '@ag-ui/proto': '>=0.0.39'
- '@copilotkit/shared@1.10.2':
- resolution: {integrity: sha512-hUtdoqbFQLq3NFAlNPOGrSjvC5fuwpYFp1zzSN/yPuNXYqxS/QL5RG9pnA/pxq1ax+8Fgb9RFOI0aif+uIF7/A==}
+ '@copilotkit/shared@1.10.6':
+ resolution: {integrity: sha512-56Rltf4fDBqCpl1ZXARypt5NdE4LTg3tGPPLurZpgPmm31Lv5EAHpfjC7I55vt9A0mXWlTCHtCrpiaAlTyzGJw==}
- '@csstools/color-helpers@5.0.1':
- resolution: {integrity: sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==}
+ '@csstools/color-helpers@5.1.0':
+ resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==}
engines: {node: '>=18'}
- '@csstools/css-calc@2.1.1':
- resolution: {integrity: sha512-rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag==}
+ '@csstools/css-calc@2.1.4':
+ resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==}
engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^3.0.4
- '@csstools/css-tokenizer': ^3.0.3
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
- '@csstools/css-color-parser@3.0.7':
- resolution: {integrity: sha512-nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA==}
+ '@csstools/css-color-parser@3.1.0':
+ resolution: {integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==}
engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^3.0.4
- '@csstools/css-tokenizer': ^3.0.3
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
- '@csstools/css-parser-algorithms@3.0.4':
- resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==}
+ '@csstools/css-parser-algorithms@3.0.5':
+ resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==}
engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-tokenizer': ^3.0.3
+ '@csstools/css-tokenizer': ^3.0.4
- '@csstools/css-tokenizer@3.0.3':
- resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==}
+ '@csstools/css-tokenizer@3.0.4':
+ resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==}
engines: {node: '>=18'}
'@egjs/hammerjs@2.0.17':
@@ -2050,16 +1970,16 @@ packages:
resolution: {integrity: sha512-NMlFNeWgv1//uPsvLxvGQoIerPuVdXwK/EUek8OOkJ6wVOWPUizRBJU0hDqWZCOROVpfBgCemaC3m6jDOXi03g==}
peerDependencies:
emoji-mart: ^5.2
- react: ^16.8 || ^17 || ^18
+ react: 19.0.0
- '@emotion/is-prop-valid@1.3.1':
- resolution: {integrity: sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==}
+ '@emotion/is-prop-valid@1.4.0':
+ resolution: {integrity: sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw==}
'@emotion/memoize@0.9.0':
resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
- '@envelop/core@5.3.0':
- resolution: {integrity: sha512-xvUkOWXI8JsG2OOnqiI2tOkEc52wbmIqWORr7yGc8B8E53Oh1MMGGGck4mbR80s25LnHVzfNIiIlNkuDgZRuuA==}
+ '@envelop/core@5.3.2':
+ resolution: {integrity: sha512-06Mu7fmyKzk09P2i2kHpGfItqLLgCq7uO5/nX4fc/iHMplWPNuAx4iYR+WXUQoFHDnP6EUbceQNQ5iyeMz9f3g==}
engines: {node: '>=18.0.0'}
'@envelop/instrumentation@1.0.0':
@@ -2070,308 +1990,164 @@ packages:
resolution: {integrity: sha512-CsFmA3u3c2QoLDTfEpGr4t25fjMU31nyvse7IzWTvb0ZycuPjMjb0fjlheh+PbhBYb9YLugnT2uY6Mwcg1o+Zg==}
engines: {node: '>=18.0.0'}
- '@esbuild/aix-ppc64@0.24.2':
- resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [aix]
-
- '@esbuild/aix-ppc64@0.25.4':
- resolution: {integrity: sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==}
+ '@esbuild/aix-ppc64@0.25.10':
+ resolution: {integrity: sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.24.2':
- resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [android]
-
- '@esbuild/android-arm64@0.25.4':
- resolution: {integrity: sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==}
+ '@esbuild/android-arm64@0.25.10':
+ resolution: {integrity: sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.24.2':
- resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
+ '@esbuild/android-arm@0.25.10':
+ resolution: {integrity: sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.25.4':
- resolution: {integrity: sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [android]
-
- '@esbuild/android-x64@0.24.2':
- resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [android]
-
- '@esbuild/android-x64@0.25.4':
- resolution: {integrity: sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==}
+ '@esbuild/android-x64@0.25.10':
+ resolution: {integrity: sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.24.2':
- resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [darwin]
-
- '@esbuild/darwin-arm64@0.25.4':
- resolution: {integrity: sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==}
+ '@esbuild/darwin-arm64@0.25.10':
+ resolution: {integrity: sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.24.2':
- resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
+ '@esbuild/darwin-x64@0.25.10':
+ resolution: {integrity: sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.25.4':
- resolution: {integrity: sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [darwin]
-
- '@esbuild/freebsd-arm64@0.24.2':
- resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [freebsd]
-
- '@esbuild/freebsd-arm64@0.25.4':
- resolution: {integrity: sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==}
+ '@esbuild/freebsd-arm64@0.25.10':
+ resolution: {integrity: sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.24.2':
- resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
+ '@esbuild/freebsd-x64@0.25.10':
+ resolution: {integrity: sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.25.4':
- resolution: {integrity: sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [freebsd]
-
- '@esbuild/linux-arm64@0.24.2':
- resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
+ '@esbuild/linux-arm64@0.25.10':
+ resolution: {integrity: sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.25.4':
- resolution: {integrity: sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [linux]
-
- '@esbuild/linux-arm@0.24.2':
- resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
+ '@esbuild/linux-arm@0.25.10':
+ resolution: {integrity: sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.25.4':
- resolution: {integrity: sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [linux]
-
- '@esbuild/linux-ia32@0.24.2':
- resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [linux]
-
- '@esbuild/linux-ia32@0.25.4':
- resolution: {integrity: sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==}
+ '@esbuild/linux-ia32@0.25.10':
+ resolution: {integrity: sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.24.2':
- resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
+ '@esbuild/linux-loong64@0.25.10':
+ resolution: {integrity: sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.25.4':
- resolution: {integrity: sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==}
- engines: {node: '>=18'}
- cpu: [loong64]
- os: [linux]
-
- '@esbuild/linux-mips64el@0.24.2':
- resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
+ '@esbuild/linux-mips64el@0.25.10':
+ resolution: {integrity: sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.25.4':
- resolution: {integrity: sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==}
- engines: {node: '>=18'}
- cpu: [mips64el]
- os: [linux]
-
- '@esbuild/linux-ppc64@0.24.2':
- resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
+ '@esbuild/linux-ppc64@0.25.10':
+ resolution: {integrity: sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.25.4':
- resolution: {integrity: sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [linux]
-
- '@esbuild/linux-riscv64@0.24.2':
- resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
+ '@esbuild/linux-riscv64@0.25.10':
+ resolution: {integrity: sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.25.4':
- resolution: {integrity: sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==}
- engines: {node: '>=18'}
- cpu: [riscv64]
- os: [linux]
-
- '@esbuild/linux-s390x@0.24.2':
- resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
+ '@esbuild/linux-s390x@0.25.10':
+ resolution: {integrity: sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.25.4':
- resolution: {integrity: sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==}
- engines: {node: '>=18'}
- cpu: [s390x]
- os: [linux]
-
- '@esbuild/linux-x64@0.24.2':
- resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [linux]
-
- '@esbuild/linux-x64@0.25.4':
- resolution: {integrity: sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==}
+ '@esbuild/linux-x64@0.25.10':
+ resolution: {integrity: sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.24.2':
- resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [netbsd]
-
- '@esbuild/netbsd-arm64@0.25.4':
- resolution: {integrity: sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==}
+ '@esbuild/netbsd-arm64@0.25.10':
+ resolution: {integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.24.2':
- resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [netbsd]
-
- '@esbuild/netbsd-x64@0.25.4':
- resolution: {integrity: sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==}
+ '@esbuild/netbsd-x64@0.25.10':
+ resolution: {integrity: sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.24.2':
- resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
+ '@esbuild/openbsd-arm64@0.25.10':
+ resolution: {integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-arm64@0.25.4':
- resolution: {integrity: sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [openbsd]
-
- '@esbuild/openbsd-x64@0.24.2':
- resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [openbsd]
-
- '@esbuild/openbsd-x64@0.25.4':
- resolution: {integrity: sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==}
+ '@esbuild/openbsd-x64@0.25.10':
+ resolution: {integrity: sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.24.2':
- resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
+ '@esbuild/openharmony-arm64@0.25.10':
+ resolution: {integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==}
engines: {node: '>=18'}
- cpu: [x64]
- os: [sunos]
+ cpu: [arm64]
+ os: [openharmony]
- '@esbuild/sunos-x64@0.25.4':
- resolution: {integrity: sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==}
+ '@esbuild/sunos-x64@0.25.10':
+ resolution: {integrity: sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.24.2':
- resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [win32]
-
- '@esbuild/win32-arm64@0.25.4':
- resolution: {integrity: sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==}
+ '@esbuild/win32-arm64@0.25.10':
+ resolution: {integrity: sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.24.2':
- resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [win32]
-
- '@esbuild/win32-ia32@0.25.4':
- resolution: {integrity: sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==}
+ '@esbuild/win32-ia32@0.25.10':
+ resolution: {integrity: sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.24.2':
- resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
+ '@esbuild/win32-x64@0.25.10':
+ resolution: {integrity: sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.25.4':
- resolution: {integrity: sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [win32]
-
- '@eslint-community/eslint-utils@4.7.0':
- resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
+ '@eslint-community/eslint-utils@4.9.0':
+ resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
@@ -2380,113 +2156,121 @@ packages:
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/compat@1.2.9':
- resolution: {integrity: sha512-gCdSY54n7k+driCadyMNv8JSPzYLeDVM/ikZRtvtROBpRdFSkS8W9A82MqsaY7lZuwL0wiapgD0NT1xT0hyJsA==}
+ '@eslint/compat@1.4.0':
+ resolution: {integrity: sha512-DEzm5dKeDBPm3r08Ixli/0cmxr8LkRdwxMRUIJBlSCpAwSrvFEJpVBzV+66JhDxiaqKxnRzCXhtiMiczF7Hglg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^9.10.0
+ eslint: ^8.40 || 9
peerDependenciesMeta:
eslint:
optional: true
- '@eslint/config-array@0.20.0':
- resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==}
+ '@eslint/config-array@0.21.0':
+ resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/config-helpers@0.2.1':
- resolution: {integrity: sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==}
+ '@eslint/config-helpers@0.4.0':
+ resolution: {integrity: sha512-WUFvV4WoIwW8Bv0KeKCIIEgdSiFOsulyN0xrMu+7z43q/hkOLXjvb5u7UC9jDxvRzcrbEmuZBX5yJZz1741jog==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.14.0':
- resolution: {integrity: sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg==}
+ '@eslint/core@0.16.0':
+ resolution: {integrity: sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.3.1':
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.27.0':
- resolution: {integrity: sha512-G5JD9Tu5HJEu4z2Uo4aHY2sLV64B7CDMXxFzqzjl3NKd6RVzSXNoE80jk7Y0lJkTTkjiIhBAqmlYwjuBY3tvpA==}
+ '@eslint/js@9.37.0':
+ resolution: {integrity: sha512-jaS+NJ+hximswBG6pjNX0uEJZkrT0zwpVi3BA3vX22aFGjJjmgSTSmPpZCRKmoBL5VY/M6p0xsSJx7rk7sy5gg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.6':
resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/plugin-kit@0.3.1':
- resolution: {integrity: sha512-0J+zgWxHN+xXONWIyPWKFMgVuJoZuGiIFu8yxk7RJjxkzpGmyja5wRFqZIVtjDVOQpV+Rw0iOAjYPE2eQyjr0w==}
+ '@eslint/plugin-kit@0.4.0':
+ resolution: {integrity: sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@expo/bunyan@4.0.1':
- resolution: {integrity: sha512-+Lla7nYSiHZirgK+U/uYzsLv/X+HaJienbD5AKX1UQZHYfWaP+9uuQluRB4GrEVWF0GZ7vEVp/jzaOT9k/SQlg==}
- engines: {node: '>=0.10.0'}
-
- '@expo/cli@0.22.24':
- resolution: {integrity: sha512-lhdenxBC8/x/vL39j79eXE09mOaqNNLmiSDdY/PblnI+UNzGgsQ48hBTYa/MQhd0ioXXVKurZL2941dLKwcxJw==}
+ '@expo/cli@0.24.22':
+ resolution: {integrity: sha512-cEg6/F8ZWjoVkEwm0rXKReWbsCUROFbLFBYht+d5RzHnDwJoTX4QWJKx4m+TGNDPamRUIGw36U4z41Fvev0XmA==}
hasBin: true
'@expo/code-signing-certificates@0.0.5':
resolution: {integrity: sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==}
- '@expo/config-plugins@9.0.17':
- resolution: {integrity: sha512-m24F1COquwOm7PBl5wRbkT9P9DviCXe0D7S7nQsolfbhdCWuvMkfXeoWmgjtdhy7sDlOyIgBrAdnB6MfsWKqIg==}
+ '@expo/config-plugins@10.1.2':
+ resolution: {integrity: sha512-IMYCxBOcnuFStuK0Ay+FzEIBKrwW8OVUMc65+v0+i7YFIIe8aL342l7T4F8lR4oCfhXn7d6M5QPgXvjtc/gAcw==}
- '@expo/config-types@52.0.5':
- resolution: {integrity: sha512-AMDeuDLHXXqd8W+0zSjIt7f37vUd/BP8p43k68NHpyAvQO+z8mbQZm3cNQVAMySeayK2XoPigAFB1JF2NFajaA==}
+ '@expo/config-types@53.0.5':
+ resolution: {integrity: sha512-kqZ0w44E+HEGBjy+Lpyn0BVL5UANg/tmNixxaRMLS6nf37YsDrLk2VMAmeKMMk5CKG0NmOdVv3ngeUjRQMsy9g==}
- '@expo/config@10.0.11':
- resolution: {integrity: sha512-nociJ4zr/NmbVfMNe9j/+zRlt7wz/siISu7PjdWE4WE+elEGxWWxsGzltdJG0llzrM+khx8qUiFK5aiVcdMBww==}
+ '@expo/config@11.0.13':
+ resolution: {integrity: sha512-TnGb4u/zUZetpav9sx/3fWK71oCPaOjZHoVED9NaEncktAd0Eonhq5NUghiJmkUGt3gGSjRAEBXiBbbY9/B1LA==}
- '@expo/devcert@1.1.4':
- resolution: {integrity: sha512-fqBODr8c72+gBSX5Ty3SIzaY4bXainlpab78+vEYEKL3fXmsOswMLf0+KE36mUEAa36BYabX7K3EiXOXX5OPMw==}
+ '@expo/devcert@1.2.0':
+ resolution: {integrity: sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==}
- '@expo/env@0.4.2':
- resolution: {integrity: sha512-TgbCgvSk0Kq0e2fLoqHwEBL4M0ztFjnBEz0YCDm5boc1nvkV1VMuIMteVdeBwnTh8Z0oPJTwHCD49vhMEt1I6A==}
+ '@expo/env@1.0.7':
+ resolution: {integrity: sha512-qSTEnwvuYJ3umapO9XJtrb1fAqiPlmUUg78N0IZXXGwQRt+bkp0OBls+Y5Mxw/Owj8waAM0Z3huKKskRADR5ow==}
- '@expo/fingerprint@0.11.11':
- resolution: {integrity: sha512-gNyn1KnAOpEa8gSNsYqXMTcq0fSwqU/vit6fP5863vLSKxHm/dNt/gm/uZJxrRZxKq71KUJWF6I7d3z8qIfq5g==}
+ '@expo/fingerprint@0.13.4':
+ resolution: {integrity: sha512-MYfPYBTMfrrNr07DALuLhG6EaLVNVrY/PXjEzsjWdWE4ZFn0yqI0IdHNkJG7t1gePT8iztHc7qnsx+oo/rDo6w==}
hasBin: true
- '@expo/image-utils@0.6.5':
- resolution: {integrity: sha512-RsS/1CwJYzccvlprYktD42KjyfWZECH6PPIEowvoSmXfGLfdViwcUEI4RvBfKX5Jli6P67H+6YmHvPTbGOboew==}
+ '@expo/image-utils@0.7.6':
+ resolution: {integrity: sha512-GKnMqC79+mo/1AFrmAcUcGfbsXXTRqOMNS1umebuevl3aaw+ztsYEFEiuNhHZW7PQ3Xs3URNT513ZxKhznDscw==}
+
+ '@expo/json-file@10.0.7':
+ resolution: {integrity: sha512-z2OTC0XNO6riZu98EjdNHC05l51ySeTto6GP7oSQrCvQgG9ARBwD1YvMQaVZ9wU7p/4LzSf1O7tckL3B45fPpw==}
- '@expo/json-file@9.0.2':
- resolution: {integrity: sha512-yAznIUrybOIWp3Uax7yRflB0xsEpvIwIEqIjao9SGi2Gaa+N0OamWfe0fnXBSWF+2zzF4VvqwT4W5zwelchfgw==}
+ '@expo/json-file@9.1.5':
+ resolution: {integrity: sha512-prWBhLUlmcQtvN6Y7BpW2k9zXGd3ySa3R6rAguMJkp1z22nunLN64KYTUWfijFlprFoxm9r2VNnGkcbndAlgKA==}
- '@expo/metro-config@0.19.12':
- resolution: {integrity: sha512-fhT3x1ikQWHpZgw7VrEghBdscFPz1laRYa8WcVRB18nTTqorF6S8qPYslkJu1faEziHZS7c2uyDzTYnrg/CKbg==}
+ '@expo/metro-config@0.20.17':
+ resolution: {integrity: sha512-lpntF2UZn5bTwrPK6guUv00Xv3X9mkN3YYla+IhEHiYXWyG7WKOtDU0U4KR8h3ubkZ6SPH3snDyRyAzMsWtZFA==}
- '@expo/metro-runtime@4.0.1':
- resolution: {integrity: sha512-CRpbLvdJ1T42S+lrYa1iZp1KfDeBp4oeZOK3hdpiS5n0vR0nhD6sC1gGF0sTboCTp64tLteikz5Y3j53dvgOIw==}
+ '@expo/metro-runtime@5.0.5':
+ resolution: {integrity: sha512-P8UFTi+YsmiD1BmdTdiIQITzDMcZgronsA3RTQ4QKJjHM3bas11oGzLQOnFaIZnlEV8Rrr3m1m+RHxvnpL+t/A==}
peerDependencies:
react-native: '*'
- '@expo/osascript@2.1.6':
- resolution: {integrity: sha512-SbMp4BUwDAKiFF4zZEJf32rRYMeNnLK9u4FaPo0lQRer60F+SKd20NTSys0wgssiVeQyQz2OhGLRx3cxYowAGw==}
+ '@expo/osascript@2.3.7':
+ resolution: {integrity: sha512-IClSOXxR0YUFxIriUJVqyYki7lLMIHrrzOaP01yxAL1G8pj2DWV5eW1y5jSzIcIfSCNhtGsshGd1tU/AYup5iQ==}
engines: {node: '>=12'}
- '@expo/package-manager@1.7.2':
- resolution: {integrity: sha512-wT/qh9ebNjl6xr00bYkSh93b6E/78J3JPlT6WzGbxbsnv5FIZKB/nr522oWqVe1E+ML7BpXs8WugErWDN9kOFg==}
+ '@expo/package-manager@1.9.8':
+ resolution: {integrity: sha512-4/I6OWquKXYnzo38pkISHCOCOXxfeEmu4uDoERq1Ei/9Ur/s9y3kLbAamEkitUkDC7gHk1INxRWEfFNzGbmOrA==}
- '@expo/plist@0.2.2':
- resolution: {integrity: sha512-ZZGvTO6vEWq02UAPs3LIdja+HRO18+LRI5QuDl6Hs3Ps7KX7xU6Y6kjahWKY37Rx2YjNpX07dGpBFzzC+vKa2g==}
+ '@expo/plist@0.3.5':
+ resolution: {integrity: sha512-9RYVU1iGyCJ7vWfg3e7c/NVyMFs8wbl+dMWZphtFtsqyN9zppGREU3ctlD3i8KUE0sCUTVnLjCWr+VeUIDep2g==}
- '@expo/prebuild-config@8.0.31':
- resolution: {integrity: sha512-YTuS5ic9KolD/WA3GqgLcZytHQU1dpitlZ/cbDq8ZqkY+1ae5YWX+GkYEZf2VyECPaWnHYuDGddaTQVw5miTRg==}
+ '@expo/prebuild-config@9.0.12':
+ resolution: {integrity: sha512-AKH5Scf+gEMgGxZZaimrJI2wlUJlRoqzDNn7/rkhZa5gUTnO4l6slKak2YdaH+nXlOWCNfAQWa76NnpQIfmv6Q==}
- '@expo/rudder-sdk-node@1.1.1':
- resolution: {integrity: sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==}
- engines: {node: '>=12'}
+ '@expo/schema-utils@0.1.7':
+ resolution: {integrity: sha512-jWHoSuwRb5ZczjahrychMJ3GWZu54jK9ulNdh1d4OzAEq672K9E5yOlnlBsfIHWHGzUAT+0CL7Yt1INiXTz68g==}
'@expo/sdk-runtime-versions@1.0.0':
resolution: {integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==}
+ '@expo/server@0.6.3':
+ resolution: {integrity: sha512-Ea7NJn9Xk1fe4YeJ86rObHSv/bm3u/6WiQPXEqXJ2GrfYpVab2Swoh9/PnSM3KjR64JAgKjArDn1HiPjITCfHA==}
+
'@expo/spawn-async@1.7.2':
resolution: {integrity: sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==}
engines: {node: '>=12'}
- '@expo/vector-icons@14.0.4':
- resolution: {integrity: sha512-+yKshcbpDfbV4zoXOgHxCwh7lkE9VVTT5T03OUlBsqfze1PLy6Hi4jp1vSb1GVbY6eskvMIivGVc9SKzIv0oEQ==}
+ '@expo/sudo-prompt@9.3.2':
+ resolution: {integrity: sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==}
+
+ '@expo/vector-icons@14.1.0':
+ resolution: {integrity: sha512-7T09UE9h8QDTsUeMGymB4i+iqvtEeaO5VvUjryFB4tugDTG/bkzViWA74hm5pfjjDEhYMXWaX112mcvhccmIwQ==}
+ peerDependencies:
+ expo-font: '*'
+ react: 19.0.0
+ react-native: '*'
'@expo/ws-tunnel@1.0.6':
resolution: {integrity: sha512-nDRbLmSrJar7abvUjp3smDwH8HcbZcoOEa5jVPUv9/9CajgmWw20JNRwTuBRzWIWIkEJDkz20GoNA+tSwUqk0Q==}
@@ -2495,39 +2279,39 @@ packages:
resolution: {integrity: sha512-ReZxZ8pdnoI3tP/dNnJdnmAk7uLT4FjsKDGW7YeDdvdOMz2XCQSmSCM9IWlrXuWtMF9zeSB6WJtEhCQ41gQOfw==}
hasBin: true
- '@fastify/busboy@3.1.1':
- resolution: {integrity: sha512-5DGmA8FTdB2XbDeEwc/5ZXBl6UbBAyBOOLlPuBnZ/N1SwdH9Ii+cOX3tBROlDgcTXxjOYnLMVoKk9+FXAw0CJw==}
+ '@fastify/busboy@3.2.0':
+ resolution: {integrity: sha512-m9FVDXU3GT2ITSe0UaMA5rU3QkfC/UXtCU8y0gSN/GugTqtVldOBWIB5V6V3sbmenVZUIpU6f+mPEO2+m5iTaA==}
- '@floating-ui/core@1.6.9':
- resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
+ '@floating-ui/core@1.7.3':
+ resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
- '@floating-ui/dom@1.6.13':
- resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
+ '@floating-ui/dom@1.7.4':
+ resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
- '@floating-ui/react-dom@2.1.2':
- resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
+ '@floating-ui/react-dom@2.1.6':
+ resolution: {integrity: sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==}
peerDependencies:
- react: '>=16.8.0'
- react-dom: '>=16.8.0'
+ react: 19.0.0
+ react-dom: 19.0.0
'@floating-ui/react@0.26.28':
resolution: {integrity: sha512-yORQuuAtVpiRjpMhdc0wJj06b9JFjrYF4qp96j++v2NBpbi6SEGF7donUJ3TMieerQ6qVkAv1tgr7L4r5roTqw==}
peerDependencies:
- react: '>=16.8.0'
- react-dom: '>=16.8.0'
+ react: 19.0.0
+ react-dom: 19.0.0
- '@floating-ui/utils@0.2.9':
- resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
+ '@floating-ui/utils@0.2.10':
+ resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
- '@gorhom/bottom-sheet@5.1.2':
- resolution: {integrity: sha512-5np8oL2krqAsVKLRE4YmtkZkyZeFiitoki72bEpVhZb8SRTNuAEeSbP3noq5srKpcRsboCr7uI+xmMyrWUd9kw==}
+ '@gorhom/bottom-sheet@5.2.6':
+ resolution: {integrity: sha512-vmruJxdiUGDg+ZYcDmS30XDhq/h/+QkINOI5LY/uGjx8cPGwgJW0H6AB902gNTKtccbiKe/rr94EwdmIEz+LAQ==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-native': '*'
- react: '*'
+ react: 19.0.0
react-native: '*'
react-native-gesture-handler: '>=2.16.1'
- react-native-reanimated: '>=3.16.0'
+ react-native-reanimated: '>=3.16.0 || >=4.0.0-'
peerDependenciesMeta:
'@types/react':
optional: true
@@ -2537,29 +2321,29 @@ packages:
'@gorhom/portal@1.0.14':
resolution: {integrity: sha512-MXyL4xvCjmgaORr/rtryDNFy3kU4qUbKlwtQqqsygd0xX3mhKjOLn6mQK8wfu0RkoE0pBE0nAasRoHua+/QZ7A==}
peerDependencies:
- react: '*'
+ react: 19.0.0
react-native: '*'
- '@graphql-tools/executor@1.4.7':
- resolution: {integrity: sha512-U0nK9jzJRP9/9Izf1+0Gggd6K6RNRsheFo1gC/VWzfnsr0qjcOSS9qTjY0OTC5iTPt4tQ+W5Zpw/uc7mebI6aA==}
+ '@graphql-tools/executor@1.4.9':
+ resolution: {integrity: sha512-SAUlDT70JAvXeqV87gGzvDzUGofn39nvaVcVhNf12Dt+GfWHtNNO/RCn/Ea4VJaSLGzraUd41ObnN3i80EBU7w==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/merge@9.0.24':
- resolution: {integrity: sha512-NzWx/Afl/1qHT3Nm1bghGG2l4jub28AdvtG11PoUlmjcIjnFBJMv4vqL0qnxWe8A82peWo4/TkVdjJRLXwgGEw==}
+ '@graphql-tools/merge@9.1.1':
+ resolution: {integrity: sha512-BJ5/7Y7GOhTuvzzO5tSBFL4NGr7PVqTJY3KeIDlVTT8YLcTXtBR+hlrC3uyEym7Ragn+zyWdHeJ9ev+nRX1X2w==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/schema@10.0.23':
- resolution: {integrity: sha512-aEGVpd1PCuGEwqTXCStpEkmheTHNdMayiIKH1xDWqYp9i8yKv9FRDgkGrY4RD8TNxnf7iII+6KOBGaJ3ygH95A==}
+ '@graphql-tools/schema@10.0.25':
+ resolution: {integrity: sha512-/PqE8US8kdQ7lB9M5+jlW8AyVjRGCKU7TSktuW3WNKSKmDO0MK1wakvb5gGdyT49MjAIb4a3LWxIpwo5VygZuw==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/utils@10.8.6':
- resolution: {integrity: sha512-Alc9Vyg0oOsGhRapfL3xvqh1zV8nKoFUdtLhXX7Ki4nClaIJXckrA86j+uxEuG3ic6j4jlM1nvcWXRn/71AVLQ==}
+ '@graphql-tools/utils@10.9.1':
+ resolution: {integrity: sha512-B1wwkXk9UvU7LCBkPs8513WxOQ2H8Fo5p8HR1+Id9WmYE5+bd51vqN+MbrqvWczHCH2gwkREgHJN88tE0n1FCw==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -2573,12 +2357,12 @@ packages:
resolution: {integrity: sha512-Nv0BoDGLMg9QBKy9cIswQ3/6aKaKjlTh87x3GiBg2Z4RrjyrM48DvOOK0pJh1C1At+b0mUIM67cwZcFTDLN4sA==}
engines: {node: '>=18.0.0'}
- '@graphql-yoga/plugin-defer-stream@3.15.1':
- resolution: {integrity: sha512-SsZ77Xsg4zNfuoNOcGDqmeCfFiX/e0NTkj8vhAOboXhOq21vDB49zyVTfPfLr9NaAgqq4WyIrD0c6veIalCTow==}
+ '@graphql-yoga/plugin-defer-stream@3.16.0':
+ resolution: {integrity: sha512-LGn8DSSIB4iWT/EgeXR+rIvl80LOlZqIZrnK4slNJLgnXyMyvXMSlIcE/NnzH4zQq1YRixZtshXNOtekrVH9+g==}
engines: {node: '>=18.0.0'}
peerDependencies:
graphql: ^15.2.0 || ^16.0.0
- graphql-yoga: ^5.15.1
+ graphql-yoga: ^5.16.0
'@graphql-yoga/subscription@5.0.5':
resolution: {integrity: sha512-oCMWOqFs6QV96/NZRt/ZhTQvzjkGB4YohBOpKM4jH/lDT4qb7Lex/aGCxpi/JD9njw3zBBtMqxbaC22+tFHVvw==}
@@ -2588,12 +2372,12 @@ packages:
resolution: {integrity: sha512-ZpJxMqB+Qfe3rp6uszCQoag4nSw42icURnBRfFYSOmTgEeOe4rD0vYlbA8spvCu2TlCesNTlEN9BLWtQqLxabA==}
engines: {node: '>=18.0.0'}
- '@grpc/grpc-js@1.13.4':
- resolution: {integrity: sha512-GsFaMXCkMqkKIvwCQjCrwH+GHbPKBjhwo/8ZuUkWHqbI73Kky9I+pQltrlT0+MWpedCoosda53lgjYfyEPgxBg==}
+ '@grpc/grpc-js@1.14.0':
+ resolution: {integrity: sha512-N8Jx6PaYzcTRNzirReJCtADVoq4z7+1KQ4E70jTg/koQiMoUSN1kbNjPOqpPbhMFhfU1/l7ixspPl8dNY+FoUg==}
engines: {node: '>=12.10.0'}
- '@grpc/proto-loader@0.7.15':
- resolution: {integrity: sha512-tMXdRCfYVixjuFK+Hk0Q1s38gV9zDiDJfWL3h1rv4Qc39oILCu1TRTDt7+fGUI8K4G1Fj125Hx/ru3azECWTyQ==}
+ '@grpc/proto-loader@0.8.0':
+ resolution: {integrity: sha512-rc1hOQtjIWGxcxpb9aHAfLpIctjEnsDehj0DAiVfBlmT84uvR0uUtN2hEi/ecvWVjXUGf5qPF4qEgiLOx1YIMQ==}
engines: {node: '>=6'}
hasBin: true
@@ -2603,12 +2387,12 @@ packages:
'@hapi/topo@5.1.0':
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
- '@headlessui/react@2.2.4':
- resolution: {integrity: sha512-lz+OGcAH1dK93rgSMzXmm1qKOJkBUqZf1L4M8TWLNplftQD3IkoEDdUFNfAn4ylsN6WOTVtWaLmvmaHOUk1dTA==}
+ '@headlessui/react@2.2.9':
+ resolution: {integrity: sha512-Mb+Un58gwBn0/yWZfyrCh0TJyurtT+dETj7YHleylHk5od3dv2XqETPGWMyQ5/7sYN7oWdyM1u9MvC0OC8UmzQ==}
engines: {node: '>=10'}
peerDependencies:
- react: ^18 || ^19 || ^19.0.0-rc
- react-dom: ^18 || ^19 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
'@hookform/resolvers@3.10.0':
resolution: {integrity: sha512-79Dv+3mDF7i+2ajj7SkypSKHhl1cbln1OGavqrsF7p6mbUv11xpqpacPsGDCTRvCSjEEIez2ef1NveSVL3b0Ag==}
@@ -2619,61 +2403,38 @@ packages:
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
engines: {node: '>=18.18.0'}
- '@humanfs/node@0.16.6':
- resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
+ '@humanfs/node@0.16.7':
+ resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
engines: {node: '>=18.18.0'}
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- '@humanwhocodes/retry@0.3.1':
- resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
- engines: {node: '>=18.18'}
-
- '@humanwhocodes/retry@0.4.2':
- resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
+ '@humanwhocodes/retry@0.4.3':
+ resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
engines: {node: '>=18.18'}
- '@ibm-cloud/watsonx-ai@1.6.8':
- resolution: {integrity: sha512-Ip5bLDM40rQRYauRmmIIpxLO57wI3+F59Njmp0hexnVr+uKroV+O9+eAGQkdE2c9d17R16Q77ueAGheZrzqgWA==}
+ '@ibm-cloud/watsonx-ai@1.6.13':
+ resolution: {integrity: sha512-INaaD7EKpycwQg/tsLm3QM5uvDF5mWLPQCj6GTk44gEZhgx1depvVG5bxwjfqkx1tbJMFuozz2p6VHOE21S+8g==}
engines: {node: '>=18.0.0'}
- '@inquirer/confirm@5.1.14':
- resolution: {integrity: sha512-5yR4IBfe0kXe59r1YCTG8WXkUbl7Z35HK87Sw+WUyGD8wNUx7JvY7laahzeytyE1oLn74bQnL7hstctQxisQ8Q==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
-
- '@inquirer/core@10.1.15':
- resolution: {integrity: sha512-8xrp836RZvKkpNbVvgWUlxjT4CraKk2q+I3Ksy+seI2zkcE+y6wNs1BVhgcv8VyImFecUhdQrYLdW32pAjwBdA==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
+ '@isaacs/balanced-match@4.0.1':
+ resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==}
+ engines: {node: 20 || >=22}
- '@inquirer/figures@1.0.13':
- resolution: {integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==}
- engines: {node: '>=18'}
-
- '@inquirer/type@3.0.8':
- resolution: {integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
+ '@isaacs/brace-expansion@5.0.0':
+ resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==}
+ engines: {node: 20 || >=22}
'@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'}
@@ -2703,6 +2464,10 @@ packages:
resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@jest/create-cache-key-function@30.2.0':
+ resolution: {integrity: sha512-44F4l4Enf+MirJN8X/NhdGkl71k5rBYiwdVlo4HxOwbu0sHV8QKrGEedb1VUU4K3W7fBKE0HGfbn7eZm0Ti3zg==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
'@jest/environment@29.7.0':
resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -2723,6 +2488,10 @@ packages:
resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@jest/pattern@30.0.1':
+ resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
'@jest/reporters@29.7.0':
resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -2736,6 +2505,10 @@ packages:
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@jest/schemas@30.0.5':
+ resolution: {integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
'@jest/source-map@29.6.3':
resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -2756,6 +2529,10 @@ packages:
resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@jest/types@30.2.0':
+ resolution: {integrity: sha512-H9xg1/sfVvyfU7o3zMfBEjQ1gcsdeTMgqHoYdN79tuLqfTtuu7WckRA1R5whDwOzxaZAeMKTYWqP+WCAi0CHsg==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
'@joshwooding/vite-plugin-react-docgen-typescript@0.6.1':
resolution: {integrity: sha512-J4BaTocTOYFkMHIra1JDWrMWpNmBl4EkplIwHEsV8aeUOtdWjwSnln9U7twjMFTAEB7mptNtSKyVi1Y2W9sDJw==}
peerDependencies:
@@ -2765,33 +2542,36 @@ packages:
typescript:
optional: true
- '@jridgewell/gen-mapping@0.3.12':
- resolution: {integrity: sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==}
+ '@jridgewell/gen-mapping@0.3.13':
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
+
+ '@jridgewell/remapping@2.3.5':
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
- '@jridgewell/source-map@0.3.10':
- resolution: {integrity: sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==}
+ '@jridgewell/source-map@0.3.11':
+ resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==}
- '@jridgewell/sourcemap-codec@1.5.4':
- resolution: {integrity: sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==}
+ '@jridgewell/sourcemap-codec@1.5.5':
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
- '@jridgewell/trace-mapping@0.3.29':
- resolution: {integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==}
+ '@jridgewell/trace-mapping@0.3.31':
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
'@js-sdsl/ordered-map@4.4.2':
resolution: {integrity: sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==}
- '@langchain/aws@0.1.11':
- resolution: {integrity: sha512-JNnEmJaJB5TzcniPYGZi6dlpmZyzeyVsS+Za0Ye1DhCpcNmEiWRy514gVcTPQUEl5EcpIR51B/YyowI7zUzVvg==}
+ '@langchain/aws@0.1.15':
+ resolution: {integrity: sha512-oyOMhTHP0rxdSCVI/g5KXYCOs9Kq/FpXMZbOk1JSIUoaIzUg4p6d98lsHu7erW//8NSaT+SX09QRbVDAgt7pNA==}
engines: {node: '>=18'}
peerDependencies:
'@langchain/core': '>=0.3.58 <0.4.0'
- '@langchain/community@0.3.48':
- resolution: {integrity: sha512-0KceBKSx34lL5cnbKybWIMQAFTgkZJMOzcZ1YdcagIwgoDa5a4MsJdtTABxaY0gu+87Uo3KqMj+GXx2wQqnZWA==}
+ '@langchain/community@0.3.57':
+ resolution: {integrity: sha512-xUe5UIlh1yZjt/cMtdSVlCoC5xm/RMN/rp+KZGLbquvjQeONmQ2rvpCqWjAOgQ6SPLqKiXvoXaKSm20r+LHISw==}
engines: {node: '>=18'}
peerDependencies:
'@arcjet/redact': ^v1.0.0-alpha.23
@@ -2825,7 +2605,7 @@ packages:
'@huggingface/inference': ^4.0.5
'@huggingface/transformers': ^3.5.2
'@ibm-cloud/watsonx-ai': '*'
- '@lancedb/lancedb': ^0.12.0
+ '@lancedb/lancedb': ^0.19.1
'@langchain/core': '>=0.3.58 <0.4.0'
'@layerup/layerup-security': ^1.5.12
'@libsql/client': ^0.14.0
@@ -2838,7 +2618,7 @@ packages:
'@pinecone-database/pinecone': '*'
'@planetscale/database': ^1.8.0
'@premai/prem-sdk': ^0.3.25
- '@qdrant/js-client-rest': ^1.8.2
+ '@qdrant/js-client-rest': ^1.15.0
'@raycast/api': ^1.55.2
'@rockset/client': ^0.9.1
'@smithy/eventstream-codec': ^2.0.5
@@ -2874,11 +2654,10 @@ packages:
crypto-js: ^4.2.0
d3-dsv: ^2.0.0
discord.js: ^14.14.1
- dria: ^0.0.3
duck-duck-scrape: ^2.2.5
epub2: ^3.0.1
fast-xml-parser: '*'
- firebase-admin: ^11.9.0 || ^12.0.0
+ firebase-admin: ^11.9.0 || ^12.0.0 || ^13.0.0
google-auth-library: '*'
googleapis: '*'
hnswlib-node: ^3.0.0
@@ -3078,8 +2857,6 @@ packages:
optional: true
discord.js:
optional: true
- dria:
- optional: true
duck-duck-scrape:
optional: true
epub2:
@@ -3173,12 +2950,8 @@ packages:
youtubei.js:
optional: true
- '@langchain/core@0.3.62':
- resolution: {integrity: sha512-GqRTcoUPnozGRMUcA6QkP7LHL/OvanGdB51Jgb0w7IIPDI3wFugxMHZ4gphnGDtxsD1tQY5ykyEpYNxFK8kl1w==}
- engines: {node: '>=18'}
-
- '@langchain/core@0.3.72':
- resolution: {integrity: sha512-WsGWVZYnlKffj2eEfDocPNiaTRoxyYiLSQdQ7oxZvxGZBqo/90vpjbC33UGK1uPNBM4kT+pkdaol/MnvKUh8TQ==}
+ '@langchain/core@0.3.78':
+ resolution: {integrity: sha512-Nn0x9erQlK3zgtRU1Z8NUjLuyW0gzdclMsvLQ6wwLeDqV91pE+YKl6uQb+L2NUDs4F0N7c2Zncgz46HxrvPzuA==}
engines: {node: '>=18'}
'@langchain/google-common@0.1.8':
@@ -3193,30 +2966,30 @@ packages:
peerDependencies:
'@langchain/core': '>=0.2.21 <0.4.0'
- '@langchain/langgraph-sdk@0.0.105':
- resolution: {integrity: sha512-3DD1W1wnbP48807qq+5gY248mFcwwNGqKdmZt05P3zeLpfP5Sfm6ELzVvqHGpr+qumP0yGRZs/7qArYGXRRfcQ==}
+ '@langchain/langgraph-sdk@0.0.70':
+ resolution: {integrity: sha512-O8I12bfeMVz5fOrXnIcK4IdRf50IqyJTO458V56wAIHLNoi4H8/JHM+2M+Y4H2PtslXIGnvomWqlBd0eY5z/Og==}
peerDependencies:
'@langchain/core': '>=0.2.31 <0.4.0'
- react: ^18 || ^19
- react-dom: ^18 || ^19
+ react: 19.0.0
peerDependenciesMeta:
'@langchain/core':
optional: true
react:
optional: true
- react-dom:
- optional: true
- '@langchain/langgraph-sdk@0.0.70':
- resolution: {integrity: sha512-O8I12bfeMVz5fOrXnIcK4IdRf50IqyJTO458V56wAIHLNoi4H8/JHM+2M+Y4H2PtslXIGnvomWqlBd0eY5z/Og==}
+ '@langchain/langgraph-sdk@0.1.9':
+ resolution: {integrity: sha512-7WEDHtbI3pYPUiiHq+dPaF92ZN2W7lqObdpK0X+roa8zPdHUjve/HiqYuKNWS12u1N+L5QIuQWqZvVNvUA7BfQ==}
peerDependencies:
- '@langchain/core': '>=0.2.31 <0.4.0'
- react: ^18 || ^19
+ '@langchain/core': '>=0.2.31 <0.4.0 || ^1.0.0-alpha'
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@langchain/core':
optional: true
react:
optional: true
+ react-dom:
+ optional: true
'@langchain/openai@0.4.9':
resolution: {integrity: sha512-NAsaionRHNdqaMjVLPkFCyjUDze+OqRHghA1Cn4fPoAafz+FXcl9c7LlEl9Xo0FH6/8yiCl7Rw2t780C/SBVxQ==}
@@ -3230,8 +3003,8 @@ packages:
peerDependencies:
'@langchain/core': '>=0.2.21 <0.4.0'
- '@langchain/weaviate@0.2.1':
- resolution: {integrity: sha512-rlfAKF+GB0A5MUrol34oDrBkl4q6AefARk9KDW+LfzhV/74pZZLZyIPYPxvE4XwI3gvpwp024DNsDxK/4UW0/g==}
+ '@langchain/weaviate@0.2.3':
+ resolution: {integrity: sha512-WqNGn1eSrI+ZigJd7kZjCj3fvHBYicKr054qts2nNJ+IyO5dWmY3oFTaVHFq1OLFVZJJxrFeDnxSEOC3JnfP0w==}
engines: {node: '>=18'}
peerDependencies:
'@langchain/core': '>=0.2.21 <0.4.0'
@@ -3244,11 +3017,11 @@ packages:
resolution: {integrity: sha512-qC72D4+CDdjGqJvkFMMEAtancHUQ7/d/tAiHf64z8MopFDmcrtbcJuerDtFceuAfQJ2pDSfCKCtbqoGBNnwg0w==}
engines: {node: '>=8'}
- '@mdx-js/react@3.1.0':
- resolution: {integrity: sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==}
+ '@mdx-js/react@3.1.1':
+ resolution: {integrity: sha512-f++rKLQgUVYDAtECQ6fn/is15GkEH9+nZPM3MS0RcxVqoTfawHvDlSCH7JbMhAM6uJ32v3eXLvLmLvjGu7PTQw==}
peerDependencies:
- '@types/react': '>=16'
- react: '>=16'
+ '@types/react': 19.0.14
+ react: 19.0.0
'@microsoft/api-extractor-model@7.30.6':
resolution: {integrity: sha512-znmFn69wf/AIrwHya3fxX6uB5etSIn6vg4Q4RB/tb5VDDs1rqREc+AvMC/p19MUN13CZ7+V/8pkYPTj7q8tftg==}
@@ -3263,10 +3036,6 @@ packages:
'@microsoft/tsdoc@0.15.1':
resolution: {integrity: sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw==}
- '@mswjs/interceptors@0.39.3':
- resolution: {integrity: sha512-9bw/wBL7pblsnOCIqvn1788S9o4h+cC5HWXg0Xhh0dOzsZ53IyfmBM+FYqpDDPbm0xjCqEqvCITloF3Dm4TXRQ==}
- engines: {node: '>=18'}
-
'@neoconfetti/react@1.0.0':
resolution: {integrity: sha512-klcSooChXXOzIm+SE5IISIAn3bYzYfPjbX7D7HoqZL84oAfgREeSg5vSIaSFH+DaGzzvImTyWe1OyrJ67vik4A==}
@@ -3282,31 +3051,18 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- '@npmcli/fs@3.1.1':
- resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
'@number-flow/react@0.5.10':
resolution: {integrity: sha512-a8Wh5eNITn7Km4xbddAH7QH8eNmnduR6k34ER1hkHSGO4H2yU1DDnuAWLQM99vciGInFODemSc0tdxrXkJEpbA==}
peerDependencies:
- react: ^18 || ^19
- react-dom: ^18 || ^19
-
- '@open-draft/deferred-promise@2.2.0':
- resolution: {integrity: sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==}
-
- '@open-draft/logger@0.3.0':
- resolution: {integrity: sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==}
-
- '@open-draft/until@2.1.0':
- resolution: {integrity: sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==}
+ react: 19.0.0
+ react-dom: 19.0.0
'@pkgjs/parseargs@0.11.0':
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
- '@playwright/test@1.52.0':
- resolution: {integrity: sha512-uh6W7sb55hl7D6vsAeA+V2p5JnlAqzhqFyF0VcJkKZXkgnFcVG9PziERRHQfPLfNGx1C292a4JqbWzhR8L4R1g==}
+ '@playwright/test@1.56.0':
+ resolution: {integrity: sha512-Tzh95Twig7hUwwNe381/K3PggZBZblKUe2wv25oIpzWLr6Z0m4KgV1ZVIjnR6GM9ANEqjZD7XsZEa6JL/7YEgg==}
engines: {node: '>=18'}
hasBin: true
@@ -3316,6 +3072,10 @@ packages:
'@popperjs/core@2.11.8':
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
+ '@protobuf-ts/protoc@2.11.1':
+ resolution: {integrity: sha512-mUZJaV0daGO6HUX90o/atzQ6A7bbN2RSuHtdwo8SSF2Qoe3zHwa4IHyCN1evftTeHfLmdz+45qo47sL+5P8nyg==}
+ hasBin: true
+
'@protobufjs/aspromise@1.1.2':
resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==}
@@ -3346,43 +3106,24 @@ packages:
'@protobufjs/utf8@1.1.0':
resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==}
- '@puppeteer/browsers@2.10.6':
- resolution: {integrity: sha512-pHUn6ZRt39bP3698HFQlu2ZHCkS/lPcpv7fVQcGBSzNNygw171UXAKrCUhy+TEMw4lEttOKDgNpb04hwUAJeiQ==}
+ '@puppeteer/browsers@2.10.10':
+ resolution: {integrity: sha512-3ZG500+ZeLql8rE0hjfhkycJjDj0pI/btEh3L9IkWUYcOrgP0xCNRq3HbtbqOPbvDhFaAWD88pDFtlLv8ns8gA==}
engines: {node: '>=18'}
hasBin: true
- '@radix-ui/number@1.1.0':
- resolution: {integrity: sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==}
-
'@radix-ui/number@1.1.1':
resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
- '@radix-ui/primitive@1.1.1':
- resolution: {integrity: sha512-SJ31y+Q/zAyShtXJc8x83i9TYdbAfHZ++tUZnvjJJqFjzsdUnKsxPL6IEtBlxKkU7yzer//GQtZSV4GbldL3YA==}
-
'@radix-ui/primitive@1.1.3':
resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
- '@radix-ui/react-accordion@1.2.2':
- resolution: {integrity: sha512-b1oh54x4DMCdGsB4/7ahiSrViXxaBwRPotiZNnYXjLha9vfuURSAZErki6qjDoSIV0eXx5v57XnTGVtGwnfp2g==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
- '@radix-ui/react-arrow@1.1.1':
- resolution: {integrity: sha512-NaVpZfmv8SKeZbn4ijN2V3jlHA9ngBG16VnIIm22nUR0Yk8KUALyBxT3KYEUnNuch9sTE8UTsS3whzBgKOL30w==}
+ '@radix-ui/react-accordion@1.2.12':
+ resolution: {integrity: sha512-T4nygeh9YE9dLRPhAHSeOZi7HBXo+0kYIPJXayZfvWOWA0+n3dESrZbjfDPUABkUNym6Hd+f2IR113To8D2GPA==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -3392,62 +3133,49 @@ packages:
'@radix-ui/react-arrow@1.1.7':
resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==}
peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
- '@radix-ui/react-avatar@1.1.2':
- resolution: {integrity: sha512-GaC7bXQZ5VgZvVvsJ5mu/AEbjYLnhhkoidOboC50Z6FFlLA03wG2ianUoH+zgDQ31/9gCF59bE4+2bBgTyMiig==}
- peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-checkbox@1.1.3':
- resolution: {integrity: sha512-HD7/ocp8f1B3e6OHygH0n7ZKjONkhciy1Nh0yuBgObqThc3oyx+vuMfFHKAknXRHHWVE9XvXStxJFyjUmB8PIw==}
+ '@radix-ui/react-avatar@1.1.10':
+ resolution: {integrity: sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-collapsible@1.1.2':
- resolution: {integrity: sha512-PliMB63vxz7vggcyq0IxNYk8vGDrLXVWw4+W4B8YnwI1s18x7YZYqlG9PLX7XxAJUi0g2DxP4XKJMFHh/iVh9A==}
+ '@radix-ui/react-checkbox@1.3.3':
+ resolution: {integrity: sha512-wBbpv+NQftHDdG86Qc0pIyXk5IR3tM8Vd0nWLKDcX8nNn4nXFOFwsKuqw2okA/1D/mpaAkmuyndrPJTYDNZtFw==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-collection@1.1.1':
- resolution: {integrity: sha512-LwT3pSho9Dljg+wY2KN2mrrh6y3qELfftINERIzBUO9e0N+t0oMTyn3k9iv+ZqgrwGkRnLpNJrsMv9BZlt2yuA==}
+ '@radix-ui/react-collapsible@1.1.12':
+ resolution: {integrity: sha512-Uu+mSh4agx2ib1uIGPP4/CKNULyajb3p92LsVXmH2EHVMTfZWpll88XJ0j4W0z3f8NK1eYl1+Mf/szHPmcHzyA==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -3457,39 +3185,21 @@ packages:
'@radix-ui/react-collection@1.1.7':
resolution: {integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-compose-refs@1.1.1':
- resolution: {integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
'@radix-ui/react-compose-refs@1.1.2':
resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-context@1.1.1':
- resolution: {integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -3497,39 +3207,30 @@ packages:
'@radix-ui/react-context@1.1.2':
resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@radix-ui/react-dialog@1.1.5':
- resolution: {integrity: sha512-LaO3e5h/NOEL4OfXjxD43k9Dx+vn+8n+PCFt6uhX/BADFflllyv3WJG6rgvvSVBxpTch938Qq/LGc2MMxipXPw==}
+ '@radix-ui/react-dialog@1.1.15':
+ resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-direction@1.1.0':
- resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
'@radix-ui/react-direction@1.1.1':
resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==}
peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -3537,80 +3238,45 @@ packages:
'@radix-ui/react-dismissable-layer@1.1.11':
resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==}
peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
- '@radix-ui/react-dismissable-layer@1.1.4':
- resolution: {integrity: sha512-XDUI0IVYVSwjMXxM6P4Dfti7AH+Y4oS/TB+sglZ/EXc7cqLwGAmp1NlMrcUjj7ks6R5WTZuWKv44FBbLpwU3sA==}
- peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-dropdown-menu@2.1.5':
- resolution: {integrity: sha512-50ZmEFL1kOuLalPKHrLWvPFMons2fGx9TqQCWlPwDVpbAnaUJ1g4XNcKqFNMQymYU0kKWR4MDDi+9vUQBGFgcQ==}
+ '@radix-ui/react-dropdown-menu@2.1.16':
+ resolution: {integrity: sha512-1PLGQEynI/3OX/ftV54COn+3Sud/Mn8vALg2rWnBLnRaGtJDduNW/22XjlGgPdpcIbiQxjKtb7BkcjP00nqfJw==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-focus-guards@1.1.1':
- resolution: {integrity: sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
'@radix-ui/react-focus-guards@1.1.3':
resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-focus-scope@1.1.1':
- resolution: {integrity: sha512-01omzJAYRxXdG2/he/+xy+c8a8gCydoQ1yOxnWNcRhrrBW5W+RQJ22EK1SaO8tb3WoUsuEw7mJjBozPzihDFjA==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@types/react-dom':
- optional: true
'@radix-ui/react-focus-scope@1.1.7':
resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -3620,93 +3286,71 @@ packages:
'@radix-ui/react-hover-card@1.1.15':
resolution: {integrity: sha512-qgTkjNT1CfKMoP0rcasmlH2r1DAiYicWsDsufxl940sT2wHNEWWv6FMWIQXWhVdmC1d/HYfbhQx60KYyAtKxjg==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-id@1.1.0':
- resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
'@radix-ui/react-id@1.1.1':
resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@radix-ui/react-label@2.1.1':
- resolution: {integrity: sha512-UUw5E4e/2+4kFMH7+YxORXGWggtY6sM8WIwh5RZchhLuUg2H1hc98Py+pr8HMz6rdaYrK2t296ZEjYLOCO5uUw==}
+ '@radix-ui/react-label@2.1.7':
+ resolution: {integrity: sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-menu@2.1.5':
- resolution: {integrity: sha512-uH+3w5heoMJtqVCgYOtYVMECk1TOrkUn0OG0p5MqXC0W2ppcuVeESbou8PTHoqAjbdTEK19AGXBWcEtR5WpEQg==}
+ '@radix-ui/react-menu@2.1.16':
+ resolution: {integrity: sha512-72F2T+PLlphrqLcAotYPp0uJMr5SjP5SL01wfEspJbru5Zs5vQaSHb4VB3ZMJPimgHHCHG7gMOeOB9H3Hdmtxg==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-navigation-menu@1.2.4':
- resolution: {integrity: sha512-wUi01RrTDTOoGtjEPHsxlzPtVzVc3R/AZ5wfh0dyqMAqolhHAHvG5iQjBCTi2AjQqa77FWWbA3kE3RkD+bDMgQ==}
+ '@radix-ui/react-navigation-menu@1.2.14':
+ resolution: {integrity: sha512-YB9mTFQvCOAQMHU+C/jVl96WmuWeltyUEpRJJky51huhds5W2FQr1J8D/16sQlf0ozxkPK8uF3niQMdUwZPv5w==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-popover@1.1.5':
- resolution: {integrity: sha512-YXkTAftOIW2Bt3qKH8vYr6n9gCkVrvyvfiTObVjoHVTHnNj26rmvO87IKa3VgtgCjb8FAQ6qOjNViwl+9iIzlg==}
+ '@radix-ui/react-popover@1.1.15':
+ resolution: {integrity: sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
- '@radix-ui/react-popper@1.2.1':
- resolution: {integrity: sha512-3kn5Me69L+jv82EKRuQCXdYyf1DqHwD2U/sxoNgBGCB7K9TRc3bQamQ+5EPM9EvyPdli0W41sROd+ZU1dTCztw==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -3716,23 +3360,10 @@ packages:
'@radix-ui/react-popper@1.2.8':
resolution: {integrity: sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==}
peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
- '@radix-ui/react-portal@1.1.3':
- resolution: {integrity: sha512-NciRqhXnGojhT93RPyDaMPfLH3ZSl4jjIFbZQ1b/vxvZEdHsBZ49wP9w8L3HzUQwep01LcWtkUvm0OVB5JAHTw==}
- peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -3742,23 +3373,10 @@ packages:
'@radix-ui/react-portal@1.1.9':
resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
- '@radix-ui/react-presence@1.1.2':
- resolution: {integrity: sha512-18TFr80t5EVgL9x1SwF/YGtfG+l0BS0PRAlCWBDoBEiDQjeKgnNZRVJp/oVBl24sr3Gbfwc/Qpj4OcWTQMsAEg==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -3768,23 +3386,10 @@ packages:
'@radix-ui/react-presence@1.1.5':
resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
- '@radix-ui/react-primitive@2.0.1':
- resolution: {integrity: sha512-sHCWTtxwNn3L3fH8qAfnF3WbUZycW93SM1j3NFDzXBiz8D6F5UTTy8G1+WFEaiCdvCVRJWj6N2R4Xq6HdiHmDg==}
- peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -3794,82 +3399,73 @@ packages:
'@radix-ui/react-primitive@2.1.3':
resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-progress@1.1.1':
- resolution: {integrity: sha512-6diOawA84f/eMxFHcWut0aE1C2kyE9dOyCTQOMRR2C/qPiXz/X0SaiA/RLbapQaXUCmy0/hLMf9meSccD1N0pA==}
+ '@radix-ui/react-progress@1.1.7':
+ resolution: {integrity: sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-roving-focus@1.1.1':
- resolution: {integrity: sha512-QE1RoxPGJ/Nm8Qmk0PxP8ojmoaS67i0s7hVssS7KuI2FQoc/uzVlZsqKfQvxPE6D8hICCPHJ4D88zNhT3OOmkw==}
+ '@radix-ui/react-roving-focus@1.1.11':
+ resolution: {integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-scroll-area@1.2.2':
- resolution: {integrity: sha512-EFI1N/S3YxZEW/lJ/H1jY3njlvTd8tBmgKEn4GHi51+aMm94i6NmAJstsm5cu3yJwYqYc93gpCPm21FeAbFk6g==}
+ '@radix-ui/react-scroll-area@1.2.10':
+ resolution: {integrity: sha512-tAXIa1g3sM5CGpVT0uIbUx/U3Gs5N8T52IICuCtObaos1S8fzsrPXG5WObkQN3S6NVl6wKgPhAIiBGbWnvc97A==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-select@2.1.5':
- resolution: {integrity: sha512-eVV7N8jBXAXnyrc+PsOF89O9AfVgGnbLxUtBb0clJ8y8ENMWLARGMI/1/SBRLz7u4HqxLgN71BJ17eono3wcjA==}
+ '@radix-ui/react-select@2.2.6':
+ resolution: {integrity: sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-slot@1.1.1':
- resolution: {integrity: sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
'@radix-ui/react-slot@1.2.0':
resolution: {integrity: sha512-ujc+V6r0HNDviYqIK3rW4ffgYiZ8g5DEHrGJVk4x7kTlLXRDILnKX9vAUYeIsLOoDpDJ0ujpqMkjH4w2ofuo6w==}
peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -3877,8 +3473,8 @@ packages:
'@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
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -3886,91 +3482,73 @@ packages:
'@radix-ui/react-switch@1.2.6':
resolution: {integrity: sha512-bByzr1+ep1zk4VubeEVViV592vu2lHE2BZY5OnzehZqOOgogN80+mNtCqPkhn2gklJqOpxWgPoYTSnhBCqpOXQ==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-tabs@1.1.2':
- resolution: {integrity: sha512-9u/tQJMcC2aGq7KXpGivMm1mgq7oRJKXphDwdypPd/j21j/2znamPU8WkXgnhUaTrSFNIt8XhOyCAupg8/GbwQ==}
+ '@radix-ui/react-tabs@1.1.13':
+ resolution: {integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-toggle-group@1.1.1':
- resolution: {integrity: sha512-OgDLZEA30Ylyz8YSXvnGqIHtERqnUt1KUYTKdw/y8u7Ci6zGiJfXc02jahmcSNK3YcErqioj/9flWC9S1ihfwg==}
+ '@radix-ui/react-toggle-group@1.1.11':
+ resolution: {integrity: sha512-5umnS0T8JQzQT6HbPyO7Hh9dgd82NmS36DQr+X/YJ9ctFNCiiQd6IJAYYZ33LUwm8M+taCz5t2ui29fHZc4Y6Q==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-toggle@1.1.1':
- resolution: {integrity: sha512-i77tcgObYr743IonC1hrsnnPmszDRn8p+EGUsUt+5a/JFn28fxaM88Py6V2mc8J5kELMWishI0rLnuGLFD/nnQ==}
+ '@radix-ui/react-toggle@1.1.10':
+ resolution: {integrity: sha512-lS1odchhFTeZv3xwHH31YPObmJn8gOg7Lq12inrr0+BH/l3Tsq32VfjqH1oh80ARM3mlkfMic15n0kg4sD1poQ==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-tooltip@1.1.7':
- resolution: {integrity: sha512-ss0s80BC0+g0+Zc53MvilcnTYSOi4mSuFWBPYPuTOFGjx+pUU+ZrmamMNwS56t8MTFlniA5ocjd4jYm/CdhbOg==}
+ '@radix-ui/react-tooltip@1.2.8':
+ resolution: {integrity: sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-use-callback-ref@1.1.0':
- resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
'@radix-ui/react-use-callback-ref@1.1.1':
resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-use-controllable-state@1.1.0':
- resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -3978,8 +3556,8 @@ packages:
'@radix-ui/react-use-controllable-state@1.2.2':
resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -3987,17 +3565,8 @@ packages:
'@radix-ui/react-use-effect-event@0.0.2':
resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-use-escape-keydown@1.1.0':
- resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -4005,17 +3574,17 @@ packages:
'@radix-ui/react-use-escape-keydown@1.1.1':
resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@radix-ui/react-use-layout-effect@1.1.0':
- resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
+ '@radix-ui/react-use-is-hydrated@0.1.0':
+ resolution: {integrity: sha512-U+UORVEq+cTnRIaostJv9AGdV3G6Y+zbVd+12e18jQ5A3c0xL03IhnHuiU4UV69wolOQp5GfR58NW/EgdQhwOA==}
peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -4023,17 +3592,8 @@ packages:
'@radix-ui/react-use-layout-effect@1.1.1':
resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-use-previous@1.1.0':
- resolution: {integrity: sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -4041,17 +3601,8 @@ packages:
'@radix-ui/react-use-previous@1.1.1':
resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==}
peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-use-rect@1.1.0':
- resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -4059,17 +3610,8 @@ packages:
'@radix-ui/react-use-rect@1.1.1':
resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==}
peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-use-size@1.1.0':
- resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -4077,78 +3619,62 @@ packages:
'@radix-ui/react-use-size@1.1.1':
resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==}
peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-visually-hidden@1.1.1':
- resolution: {integrity: sha512-vVfA2IZ9q/J+gEamvj761Oq1FpWgCDaNOOIfbPVp2MVPLEomUr5+Vf7kJGwQ24YxZSlQVar7Bes8kyTo5Dshpg==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@types/react-dom':
- optional: true
'@radix-ui/react-visually-hidden@1.2.3':
resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': 19.0.14
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/rect@1.1.0':
- resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==}
-
'@radix-ui/rect@1.1.1':
resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==}
- '@react-aria/focus@3.20.5':
- resolution: {integrity: sha512-JpFtXmWQ0Oca7FcvkqgjSyo6xEP7v3oQOLUId6o0xTvm4AD5W0mU2r3lYrbhsJ+XxdUUX4AVR5473sZZ85kU4A==}
+ '@react-aria/focus@3.21.2':
+ resolution: {integrity: sha512-JWaCR7wJVggj+ldmM/cb/DXFg47CXR55lznJhZBh4XVqJjMKwaOOqpT5vNN7kpC1wUpXicGNuDnJDN1S/+6dhQ==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react: 19.0.0
+ react-dom: 19.0.0
- '@react-aria/interactions@3.25.3':
- resolution: {integrity: sha512-J1bhlrNtjPS/fe5uJQ+0c7/jiXniwa4RQlP+Emjfc/iuqpW2RhbF9ou5vROcLzWIyaW8tVMZ468J68rAs/aZ5A==}
+ '@react-aria/interactions@3.25.6':
+ resolution: {integrity: sha512-5UgwZmohpixwNMVkMvn9K1ceJe6TzlRlAfuYoQDUuOkk62/JVJNDLAPKIf5YMRc7d2B0rmfgaZLMtbREb0Zvkw==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react: 19.0.0
+ react-dom: 19.0.0
- '@react-aria/ssr@3.9.9':
- resolution: {integrity: sha512-2P5thfjfPy/np18e5wD4WPt8ydNXhij1jwA8oehxZTFqlgVMGXzcWKxTb4RtJrLFsqPO7RUQTiY8QJk0M4Vy2g==}
+ '@react-aria/ssr@3.9.10':
+ resolution: {integrity: sha512-hvTm77Pf+pMBhuBm760Li0BVIO38jv1IBws1xFm1NoL26PU+fe+FMW5+VZWyANR6nYL65joaJKZqOdTQMkO9IQ==}
engines: {node: '>= 12'}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react: 19.0.0
- '@react-aria/utils@3.29.1':
- resolution: {integrity: sha512-yXMFVJ73rbQ/yYE/49n5Uidjw7kh192WNN9PNQGV0Xoc7EJUlSOxqhnpHmYTyO0EotJ8fdM1fMH8durHjUSI8g==}
+ '@react-aria/utils@3.31.0':
+ resolution: {integrity: sha512-ABOzCsZrWzf78ysswmguJbx3McQUja7yeGj6/vZo4JVsZNlxAN+E9rs381ExBRI0KzVo6iBTeX5De8eMZPJXig==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react: 19.0.0
+ react-dom: 19.0.0
- '@react-native-async-storage/async-storage@2.1.2':
- resolution: {integrity: sha512-dvlNq4AlGWC+ehtH12p65+17V0Dx7IecOWl6WanF2ja38O1Dcjjvn7jVzkUHJ5oWkQBlyASurTPlTHgKXyYiow==}
+ '@react-native-async-storage/async-storage@2.2.0':
+ resolution: {integrity: sha512-gvRvjR5JAaUZF8tv2Kcq/Gbt3JHwbKFYfmb445rhOj6NUMx3qPLixmDx5pZAyb9at1bYvJ4/eTUipU5aki45xw==}
peerDependencies:
react-native: ^0.0.0-0 || >=0.65 <1.0
- '@react-native-community/datetimepicker@8.3.0':
- resolution: {integrity: sha512-K/KgaJbLtjMpx4PaG4efrVIcSe6+DbLufeX1lwPB5YY8i3sq9dOh6WcAcMTLbaRTUpurebQTkl7puHPFm9GalA==}
+ '@react-native-community/datetimepicker@8.4.5':
+ resolution: {integrity: sha512-vvVOJAHjU8TFBzTUjQzANCL6C3pZSE2zjfutCATk790uz7ASEc2tOBD+EIG4BTelWtP2G9jqvXp2L7XGdhEBRg==}
peerDependencies:
- expo: '>=50.0.0'
- react: '*'
+ expo: '>=52.0.0'
+ react: 19.0.0
react-native: '*'
react-native-windows: '*'
peerDependenciesMeta:
@@ -4157,31 +3683,37 @@ packages:
react-native-windows:
optional: true
- '@react-native-community/slider@4.5.6':
- resolution: {integrity: sha512-UhLPFeqx0YfPLrEz8ffT3uqAyXWu6iqFjohNsbp4cOU7hnJwg2RXtDnYHoHMr7MOkZDVdlLMdrSrAuzY6KGqrg==}
+ '@react-native-community/slider@4.5.7':
+ resolution: {integrity: sha512-WMDDZjNF2Bd8M8TrSqKf5xhM9ikdfCHtSPur64Ow3bB/OVrKufUQZ59NmYdNZNeGPvcHHTsafuYTY8zfZfbchQ==}
- '@react-native/assets-registry@0.76.9':
- resolution: {integrity: sha512-pN0Ws5xsjWOZ8P37efh0jqHHQmq+oNGKT4AyAoKRpxBDDDmlAmpaYjer9Qz7PpDKF+IUyRjF/+rBsM50a8JcUg==}
+ '@react-native/assets-registry@0.79.5':
+ resolution: {integrity: sha512-N4Kt1cKxO5zgM/BLiyzuuDNquZPiIgfktEQ6TqJ/4nKA8zr4e8KJgU6Tb2eleihDO4E24HmkvGc73naybKRz/w==}
engines: {node: '>=18'}
- '@react-native/babel-plugin-codegen@0.76.9':
- resolution: {integrity: sha512-vxL/vtDEIYHfWKm5oTaEmwcnNGsua/i9OjIxBDBFiJDu5i5RU3bpmDiXQm/bJxrJNPRp5lW0I0kpGihVhnMAIQ==}
+ '@react-native/babel-plugin-codegen@0.79.6':
+ resolution: {integrity: sha512-CS5OrgcMPixOyUJ/Sk/HSsKsKgyKT5P7y3CojimOQzWqRZBmoQfxdST4ugj7n1H+ebM2IKqbgovApFbqXsoX0g==}
engines: {node: '>=18'}
- '@react-native/babel-preset@0.76.9':
- resolution: {integrity: sha512-TbSeCplCM6WhL3hR2MjC/E1a9cRnMLz7i767T7mP90oWkklEjyPxWl+0GGoVGnJ8FC/jLUupg/HvREKjjif6lw==}
+ '@react-native/babel-preset@0.79.6':
+ resolution: {integrity: sha512-H+FRO+r2Ql6b5IwfE0E7D52JhkxjeGSBSUpCXAI5zQ60zSBJ54Hwh2bBJOohXWl4J+C7gKYSAd2JHMUETu+c/A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@babel/core': '*'
+
+ '@react-native/codegen@0.79.5':
+ resolution: {integrity: sha512-FO5U1R525A1IFpJjy+KVznEinAgcs3u7IbnbRJUG9IH/MBXi2lEU2LtN+JarJ81MCfW4V2p0pg6t/3RGHFRrlQ==}
engines: {node: '>=18'}
peerDependencies:
'@babel/core': '*'
- '@react-native/codegen@0.76.9':
- resolution: {integrity: sha512-AzlCHMTKrAVC2709V4ZGtBXmGVtWTpWm3Ruv5vXcd3/anH4mGucfJ4rjbWKdaYQJMpXa3ytGomQrsIsT/s8kgA==}
+ '@react-native/codegen@0.79.6':
+ resolution: {integrity: sha512-iRBX8Lgbqypwnfba7s6opeUwVyaR23mowh9ILw7EcT2oLz3RqMmjJdrbVpWhGSMGq2qkPfqAH7bhO8C7O+xfjQ==}
engines: {node: '>=18'}
peerDependencies:
- '@babel/preset-env': ^7.1.6
+ '@babel/core': '*'
- '@react-native/community-cli-plugin@0.76.9':
- resolution: {integrity: sha512-08jx8ixCjjd4jNQwNpP8yqrjrDctN2qvPPlf6ebz1OJQk8e1sbUl3wVn1zhhMvWrYcaraDnatPb5uCPq+dn3NQ==}
+ '@react-native/community-cli-plugin@0.79.5':
+ resolution: {integrity: sha512-ApLO1ARS8JnQglqS3JAHk0jrvB+zNW3dvNJyXPZPoygBpZVbf8sjvqeBiaEYpn8ETbFWddebC4HoQelDndnrrA==}
engines: {node: '>=18'}
peerDependencies:
'@react-native-community/cli': '*'
@@ -4189,74 +3721,106 @@ packages:
'@react-native-community/cli':
optional: true
- '@react-native/debugger-frontend@0.76.9':
- resolution: {integrity: sha512-0Ru72Bm066xmxFuOXhhvrryxvb57uI79yDSFf+hxRpktkC98NMuRenlJhslMrbJ6WjCu1vOe/9UjWNYyxXTRTA==}
+ '@react-native/debugger-frontend@0.79.5':
+ resolution: {integrity: sha512-WQ49TRpCwhgUYo5/n+6GGykXmnumpOkl4Lr2l2o2buWU9qPOwoiBqJAtmWEXsAug4ciw3eLiVfthn5ufs0VB0A==}
engines: {node: '>=18'}
- '@react-native/dev-middleware@0.76.9':
- resolution: {integrity: sha512-xkd3C3dRcmZLjFTEAOvC14q3apMLouIvJViCZY/p1EfCMrNND31dgE1dYrLTiI045WAWMt5bD15i6f7dE2/QWA==}
+ '@react-native/debugger-frontend@0.79.6':
+ resolution: {integrity: sha512-lIK/KkaH7ueM22bLO0YNaQwZbT/oeqhaghOvmZacaNVbJR1Cdh/XAqjT8FgCS+7PUnbxA8B55NYNKGZG3O2pYw==}
engines: {node: '>=18'}
- '@react-native/gradle-plugin@0.76.9':
- resolution: {integrity: sha512-uGzp3dL4GfNDz+jOb8Nik1Vrfq1LHm0zESizrGhHACFiFlUSflVAnWuUAjlZlz5XfLhzGVvunG4Vdrpw8CD2ng==}
+ '@react-native/dev-middleware@0.79.5':
+ resolution: {integrity: sha512-U7r9M/SEktOCP/0uS6jXMHmYjj4ESfYCkNAenBjFjjsRWekiHE+U/vRMeO+fG9gq4UCcBAUISClkQCowlftYBw==}
engines: {node: '>=18'}
- '@react-native/js-polyfills@0.76.9':
- resolution: {integrity: sha512-s6z6m8cK4SMjIX1hm8LT187aQ6//ujLrjzDBogqDCYXRbfjbAYovw5as/v2a2rhUIyJbS3UjokZm3W0H+Oh/RQ==}
+ '@react-native/dev-middleware@0.79.6':
+ resolution: {integrity: sha512-BK3GZBa9c7XSNR27EDRtxrgyyA3/mf1j3/y+mPk7Ac0Myu85YNrXnC9g3mL5Ytwo0g58TKrAIgs1fF2Q5Mn6mQ==}
engines: {node: '>=18'}
- '@react-native/metro-babel-transformer@0.76.9':
- resolution: {integrity: sha512-HGq11347UHNiO/NvVbAO35hQCmH8YZRs7in7nVq7SL99pnpZK4WXwLdAXmSuwz5uYqOuwnKYDlpadz8fkE94Mg==}
+ '@react-native/gradle-plugin@0.79.5':
+ resolution: {integrity: sha512-K3QhfFNKiWKF3HsCZCEoWwJPSMcPJQaeqOmzFP4RL8L3nkpgUwn74PfSCcKHxooVpS6bMvJFQOz7ggUZtNVT+A==}
+ engines: {node: '>=18'}
+
+ '@react-native/js-polyfills@0.79.5':
+ resolution: {integrity: sha512-a2wsFlIhvd9ZqCD5KPRsbCQmbZi6KxhRN++jrqG0FUTEV5vY7MvjjUqDILwJd2ZBZsf7uiDuClCcKqA+EEdbvw==}
engines: {node: '>=18'}
- peerDependencies:
- '@babel/core': '*'
'@react-native/normalize-colors@0.74.89':
resolution: {integrity: sha512-qoMMXddVKVhZ8PA1AbUCk83trpd6N+1nF2A6k1i6LsQObyS92fELuk8kU/lQs6M7BsMHwqyLCpQJ1uFgNvIQXg==}
- '@react-native/normalize-colors@0.76.8':
- resolution: {integrity: sha512-FRjRvs7RgsXjkbGSOjYSxhX5V70c0IzA/jy3HXeYpATMwD9fOR1DbveLW497QGsVdCa0vThbJUtR8rIzAfpHQA==}
+ '@react-native/normalize-colors@0.79.5':
+ resolution: {integrity: sha512-nGXMNMclZgzLUxijQQ38Dm3IAEhgxuySAWQHnljFtfB0JdaMwpe0Ox9H7Tp2OgrEA+EMEv+Od9ElKlHwGKmmvQ==}
- '@react-native/normalize-colors@0.76.9':
- resolution: {integrity: sha512-TUdMG2JGk72M9d8DYbubdOlrzTYjw+YMe/xOnLU4viDgWRHsCbtRS9x0IAxRjs3amj/7zmK3Atm8jUPvdAc8qw==}
+ '@react-native/normalize-colors@0.79.6':
+ resolution: {integrity: sha512-0v2/ruY7eeKun4BeKu+GcfO+SHBdl0LJn4ZFzTzjHdWES0Cn+ONqKljYaIv8p9MV2Hx/kcdEvbY4lWI34jC/mQ==}
- '@react-native/virtualized-lists@0.76.9':
- resolution: {integrity: sha512-2neUfZKuqMK2LzfS8NyOWOyWUJOWgDym5fUph6fN9qF+LNPjAvnc4Zr9+o+59qjNu/yXwQgVMWNU4+8WJuPVWw==}
+ '@react-native/virtualized-lists@0.79.5':
+ resolution: {integrity: sha512-EUPM2rfGNO4cbI3olAbhPkIt3q7MapwCwAJBzUfWlZ/pu0PRNOnMQ1IvaXTf3TpeozXV52K1OdprLEI/kI5eUA==}
engines: {node: '>=18'}
peerDependencies:
- '@types/react': ^18.2.6
- react: '*'
+ '@types/react': 19.0.14
+ react: 19.0.0
react-native: '*'
peerDependenciesMeta:
'@types/react':
optional: true
- '@react-navigation/core@7.4.0':
- resolution: {integrity: sha512-URiDluFl7cLA7GtOAsEvRqPmEMlSSXadqQ3wi9+Dl43dNRMqnoF76WQ9BCXeUPLydJq4yVte9XeMPyD6a0lY1g==}
+ '@react-navigation/bottom-tabs@7.4.8':
+ resolution: {integrity: sha512-W85T9f5sPA2zNnkxBO0PF0Jg9CRAMYqD9hY20dAhuVM5I+qiCqhW7qLveK59mlbtdXuGmieit6FK3inKmXzL7A==}
+ peerDependencies:
+ '@react-navigation/native': ^7.1.18
+ react: 19.0.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==}
+ peerDependencies:
+ react: 19.0.0
+
+ '@react-navigation/elements@2.6.5':
+ resolution: {integrity: sha512-HOaekvFeoqKyaSKP2hakL7OUnw0jIhk/1wMjcovUKblT76LMTumZpriqsc30m/Vnyy1a8zgp4VsuA1xftcalgQ==}
+ peerDependencies:
+ '@react-native-masked-view/masked-view': '>= 0.2.0'
+ '@react-navigation/native': ^7.1.18
+ react: 19.0.0
+ react-native: '*'
+ react-native-safe-area-context: '>= 4.0.0'
+ peerDependenciesMeta:
+ '@react-native-masked-view/masked-view':
+ optional: true
+
+ '@react-navigation/native-stack@7.3.27':
+ resolution: {integrity: sha512-bbbud0pT63tGh706hQD/A3Z9gF1O2HtQ0dJqaiYzHzPy9wSOi82i721530tJkmccevAemUrZbEeEC5mxVo1DzQ==}
peerDependencies:
- react: '>= 18.2.0'
+ '@react-navigation/native': ^7.1.18
+ react: 19.0.0
+ react-native: '*'
+ react-native-safe-area-context: '>= 4.0.0'
+ react-native-screens: '>= 4.0.0'
- '@react-navigation/native@7.0.15':
- resolution: {integrity: sha512-72PabJJ8VY3GM8i/DCutFW+ATED96ZV6NH+bW+ry1EL0ZFGHoie96H+KzTqktsrUbBw1rd9KXbEQhBQgo0N7iQ==}
+ '@react-navigation/native@7.1.18':
+ resolution: {integrity: sha512-DZgd6860dxcq3YX7UzIXeBr6m3UgXvo9acxp5jiJyIZXdR00Br9JwVkO7e0bUeTA2d3Z8dsmtAR84Y86NnH64Q==}
peerDependencies:
- react: '>= 18.2.0'
+ react: 19.0.0
react-native: '*'
- '@react-navigation/routers@7.2.0':
- resolution: {integrity: sha512-lMyib39H4a//u+eiyt162U6TwCfI8zJbjl9ovjKtDddQ4/Vf7b8/OhyimnJH09N2CBfm4pv0gCV6Q0WnZcfaJg==}
+ '@react-navigation/routers@7.5.1':
+ resolution: {integrity: sha512-pxipMW/iEBSUrjxz2cDD7fNwkqR4xoi0E/PcfTQGCcdJwLoaxzab5kSadBLj1MTJyT0YRrOXL9umHpXtp+Dv4w==}
'@react-stately/flags@3.1.2':
resolution: {integrity: sha512-2HjFcZx1MyQXoPqcBGALwWWmgFVUk2TuKVIQxCbRq7fPyWXIl6VHcakCLurdtYC2Iks7zizvz0Idv48MQ38DWg==}
- '@react-stately/utils@3.10.7':
- resolution: {integrity: sha512-cWvjGAocvy4abO9zbr6PW6taHgF24Mwy/LbQ4TC4Aq3tKdKDntxyD+sh7AkSRfJRT2ccMVaHVv2+FfHThd3PKQ==}
+ '@react-stately/utils@3.10.8':
+ resolution: {integrity: sha512-SN3/h7SzRsusVQjQ4v10LaVsDc81jyyR0DD5HnsQitm/I5WDpaSr2nRHtyloPFU48jlql1XX/S04T2DLQM7Y3g==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react: 19.0.0
- '@react-types/shared@3.30.0':
- resolution: {integrity: sha512-COIazDAx1ncDg046cTJ8SFYsX8aS3lB/08LDnbkH/SkdYrFPWDlXMrO/sUam8j1WWM+PJ+4d1mj7tODIKNiFog==}
+ '@react-types/shared@3.32.1':
+ resolution: {integrity: sha512-famxyD5emrGGpFuUlgOP6fVW2h/ZaF405G5KDi3zPHzyjAWys/8W6NAVJtNbkCkhedmvL0xOhvt8feGXyXaw5w==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react: 19.0.0
'@remirror/core-constants@3.0.0':
resolution: {integrity: sha512-42aWfPrimMfDKDi4YegyS7x+/0tlzaqwPQCULLanv3DMIlu96KTJR0fM5isWX2UViOqlGnX6YFgqWepcX+XMNg==}
@@ -4267,7 +3831,7 @@ packages:
'@rn-primitives/avatar@1.1.0':
resolution: {integrity: sha512-GqhsQHeY7OP9oe3MZkl1Z0IbhIiuQX4+FxafoRK/Aes2m5386nMGK0NBaZBJy06WnFQBN52C8yq+LYv27sA86A==}
peerDependencies:
- react: '*'
+ react: 19.0.0
react-native: '*'
react-native-web: '*'
peerDependenciesMeta:
@@ -4279,7 +3843,7 @@ packages:
'@rn-primitives/hooks@1.1.0':
resolution: {integrity: sha512-+WP4i395UDXZueL6PE0PiyLgheD4EbZ0ONgVaHjbrWjGKalfXuCyVNeaN79y3Aw9sY+SYQm7P9RckBAgi0C5xQ==}
peerDependencies:
- react: '*'
+ react: 19.0.0
react-native: '*'
react-native-web: '*'
peerDependenciesMeta:
@@ -4291,7 +3855,7 @@ packages:
'@rn-primitives/portal@1.1.0':
resolution: {integrity: sha512-raSNRIG/oP+ARzlw9yeOKz7R4xlDS77r2oJys6LtzIAneivrd4w6S+tTkv8/RbOVgkUhIy9a3mXmnvj+nB1xPA==}
peerDependencies:
- react: '*'
+ react: 19.0.0
react-native: '*'
react-native-web: '*'
peerDependenciesMeta:
@@ -4303,7 +3867,7 @@ packages:
'@rn-primitives/progress@1.1.0':
resolution: {integrity: sha512-TeiQQhH983UkueOybjia4qy3JAI9qsx2s3Tge3ldQpe7K00ql8mDDhand+LR4/uEHtQHjLI6Z/rIGrh7Xdld/Q==}
peerDependencies:
- react: '*'
+ react: 19.0.0
react-native: '*'
react-native-web: '*'
peerDependenciesMeta:
@@ -4315,7 +3879,7 @@ packages:
'@rn-primitives/slot@1.1.0':
resolution: {integrity: sha512-/6LkEPMoGGyJiCAYo3MTCy9letbH6SIm5Dw6wal/ypq3Jvar9llYJstIP2KSZNhx3PmZMN1a581KVgNZ2Jyt5g==}
peerDependencies:
- react: '*'
+ react: 19.0.0
react-native: '*'
react-native-web: '*'
peerDependenciesMeta:
@@ -4328,7 +3892,7 @@ packages:
resolution: {integrity: sha512-uNMLCqDOueYv2//nh19RiYqYRdytn86K+2rmBStz1u7PFbsqfUJE1Q3FxKm/yvFXK2loHJAoHkzRQCClqA3InA==}
peerDependencies:
'@rn-primitives/portal': '*'
- react: '*'
+ react: 19.0.0
react-native: '*'
react-native-web: '*'
peerDependenciesMeta:
@@ -4340,7 +3904,7 @@ packages:
'@rn-primitives/types@1.1.0':
resolution: {integrity: sha512-duS4La965KsVVAeytcSFDJUafw6ZScvejgxlFkwqzW06pDBRMxwfunmZmf3JZ82P/2xaEVPIGseeyblertC/+g==}
peerDependencies:
- react: '*'
+ react: 19.0.0
react-native: '*'
react-native-web: '*'
peerDependenciesMeta:
@@ -4349,8 +3913,11 @@ packages:
react-native-web:
optional: true
- '@rollup/pluginutils@5.1.4':
- resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==}
+ '@rolldown/pluginutils@1.0.0-beta.27':
+ resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
+
+ '@rollup/pluginutils@5.3.0':
+ resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -4358,103 +3925,113 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.40.2':
- resolution: {integrity: sha512-JkdNEq+DFxZfUwxvB58tHMHBHVgX23ew41g1OQinthJ+ryhdRk67O31S7sYw8u2lTjHUPFxwar07BBt1KHp/hg==}
+ '@rollup/rollup-android-arm-eabi@4.52.4':
+ resolution: {integrity: sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.40.2':
- resolution: {integrity: sha512-13unNoZ8NzUmnndhPTkWPWbX3vtHodYmy+I9kuLxN+F+l+x3LdVF7UCu8TWVMt1POHLh6oDHhnOA04n8oJZhBw==}
+ '@rollup/rollup-android-arm64@4.52.4':
+ resolution: {integrity: sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.40.2':
- resolution: {integrity: sha512-Gzf1Hn2Aoe8VZzevHostPX23U7N5+4D36WJNHK88NZHCJr7aVMG4fadqkIf72eqVPGjGc0HJHNuUaUcxiR+N/w==}
+ '@rollup/rollup-darwin-arm64@4.52.4':
+ resolution: {integrity: sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.40.2':
- resolution: {integrity: sha512-47N4hxa01a4x6XnJoskMKTS8XZ0CZMd8YTbINbi+w03A2w4j1RTlnGHOz/P0+Bg1LaVL6ufZyNprSg+fW5nYQQ==}
+ '@rollup/rollup-darwin-x64@4.52.4':
+ resolution: {integrity: sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.40.2':
- resolution: {integrity: sha512-8t6aL4MD+rXSHHZUR1z19+9OFJ2rl1wGKvckN47XFRVO+QL/dUSpKA2SLRo4vMg7ELA8pzGpC+W9OEd1Z/ZqoQ==}
+ '@rollup/rollup-freebsd-arm64@4.52.4':
+ resolution: {integrity: sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.40.2':
- resolution: {integrity: sha512-C+AyHBzfpsOEYRFjztcYUFsH4S7UsE9cDtHCtma5BK8+ydOZYgMmWg1d/4KBytQspJCld8ZIujFMAdKG1xyr4Q==}
+ '@rollup/rollup-freebsd-x64@4.52.4':
+ resolution: {integrity: sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.40.2':
- resolution: {integrity: sha512-de6TFZYIvJwRNjmW3+gaXiZ2DaWL5D5yGmSYzkdzjBDS3W+B9JQ48oZEsmMvemqjtAFzE16DIBLqd6IQQRuG9Q==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.52.4':
+ resolution: {integrity: sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.40.2':
- resolution: {integrity: sha512-urjaEZubdIkacKc930hUDOfQPysezKla/O9qV+O89enqsqUmQm8Xj8O/vh0gHg4LYfv7Y7UsE3QjzLQzDYN1qg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.52.4':
+ resolution: {integrity: sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.40.2':
- resolution: {integrity: sha512-KlE8IC0HFOC33taNt1zR8qNlBYHj31qGT1UqWqtvR/+NuCVhfufAq9fxO8BMFC22Wu0rxOwGVWxtCMvZVLmhQg==}
+ '@rollup/rollup-linux-arm64-gnu@4.52.4':
+ resolution: {integrity: sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.40.2':
- resolution: {integrity: sha512-j8CgxvfM0kbnhu4XgjnCWJQyyBOeBI1Zq91Z850aUddUmPeQvuAy6OiMdPS46gNFgy8gN1xkYyLgwLYZG3rBOg==}
+ '@rollup/rollup-linux-arm64-musl@4.52.4':
+ resolution: {integrity: sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.40.2':
- resolution: {integrity: sha512-Ybc/1qUampKuRF4tQXc7G7QY9YRyeVSykfK36Y5Qc5dmrIxwFhrOzqaVTNoZygqZ1ZieSWTibfFhQ5qK8jpWxw==}
+ '@rollup/rollup-linux-loong64-gnu@4.52.4':
+ resolution: {integrity: sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.2':
- resolution: {integrity: sha512-3FCIrnrt03CCsZqSYAOW/k9n625pjpuMzVfeI+ZBUSDT3MVIFDSPfSUgIl9FqUftxcUXInvFah79hE1c9abD+Q==}
+ '@rollup/rollup-linux-ppc64-gnu@4.52.4':
+ resolution: {integrity: sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.40.2':
- resolution: {integrity: sha512-QNU7BFHEvHMp2ESSY3SozIkBPaPBDTsfVNGx3Xhv+TdvWXFGOSH2NJvhD1zKAT6AyuuErJgbdvaJhYVhVqrWTg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.52.4':
+ resolution: {integrity: sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.40.2':
- resolution: {integrity: sha512-5W6vNYkhgfh7URiXTO1E9a0cy4fSgfE4+Hl5agb/U1sa0kjOLMLC1wObxwKxecE17j0URxuTrYZZME4/VH57Hg==}
+ '@rollup/rollup-linux-riscv64-musl@4.52.4':
+ resolution: {integrity: sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.40.2':
- resolution: {integrity: sha512-B7LKIz+0+p348JoAL4X/YxGx9zOx3sR+o6Hj15Y3aaApNfAshK8+mWZEf759DXfRLeL2vg5LYJBB7DdcleYCoQ==}
+ '@rollup/rollup-linux-s390x-gnu@4.52.4':
+ resolution: {integrity: sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.40.2':
- resolution: {integrity: sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng==}
+ '@rollup/rollup-linux-x64-gnu@4.52.4':
+ resolution: {integrity: sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.40.2':
- resolution: {integrity: sha512-tD46wKHd+KJvsmije4bUskNuvWKFcTOIM9tZ/RrmIvcXnbi0YK/cKS9FzFtAm7Oxi2EhV5N2OpfFB348vSQRXA==}
+ '@rollup/rollup-linux-x64-musl@4.52.4':
+ resolution: {integrity: sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.40.2':
- resolution: {integrity: sha512-Bjv/HG8RRWLNkXwQQemdsWw4Mg+IJ29LK+bJPW2SCzPKOUaMmPEppQlu/Fqk1d7+DX3V7JbFdbkh/NMmurT6Pg==}
+ '@rollup/rollup-openharmony-arm64@4.52.4':
+ resolution: {integrity: sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@rollup/rollup-win32-arm64-msvc@4.52.4':
+ resolution: {integrity: sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.40.2':
- resolution: {integrity: sha512-dt1llVSGEsGKvzeIO76HToiYPNPYPkmjhMHhP00T9S4rDern8P2ZWvWAQUEJ+R1UdMWJ/42i/QqJ2WV765GZcA==}
+ '@rollup/rollup-win32-ia32-msvc@4.52.4':
+ resolution: {integrity: sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.40.2':
- resolution: {integrity: sha512-bwspbWB04XJpeElvsp+DCylKfF4trJDa2Y9Go8O6A7YLX2LIKGcNK/CYImJN6ZP4DcuOHB4Utl3iCbnR62DudA==}
+ '@rollup/rollup-win32-x64-gnu@4.52.4':
+ resolution: {integrity: sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==}
+ cpu: [x64]
+ os: [win32]
+
+ '@rollup/rollup-win32-x64-msvc@4.52.4':
+ resolution: {integrity: sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==}
cpu: [x64]
os: [win32]
@@ -4493,9 +4070,6 @@ packages:
resolution: {integrity: sha512-fOXLL8uY0uAWw/sTLmezze80hj8YGgXXlAfvSS6TUmivk4D/SP0C0sxnbpFdkUzWg2zT64qWIZj26afEtSnxUA==}
engines: {node: '>=20'}
- '@segment/loosely-validate-event@2.0.0':
- resolution: {integrity: sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==}
-
'@sideway/address@4.1.5':
resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
@@ -4508,6 +4082,9 @@ packages:
'@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
+ '@sinclair/typebox@0.34.41':
+ resolution: {integrity: sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==}
+
'@sinonjs/commons@3.0.1':
resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
@@ -4536,226 +4113,229 @@ packages:
peerDependencies:
size-limit: 11.2.0
- '@smithy/abort-controller@4.0.4':
- resolution: {integrity: sha512-gJnEjZMvigPDQWHrW3oPrFhQtkrgqBkyjj3pCIdF3A5M6vsZODG93KNlfJprv6bp4245bdT32fsHK4kkH3KYDA==}
+ '@smithy/abort-controller@4.2.0':
+ resolution: {integrity: sha512-PLUYa+SUKOEZtXFURBu/CNxlsxfaFGxSBPcStL13KpVeVWIfdezWyDqkz7iDLmwnxojXD0s5KzuB5HGHvt4Aeg==}
engines: {node: '>=18.0.0'}
- '@smithy/config-resolver@4.1.4':
- resolution: {integrity: sha512-prmU+rDddxHOH0oNcwemL+SwnzcG65sBF2yXRO7aeXIn/xTlq2pX7JLVbkBnVLowHLg4/OL4+jBmv9hVrVGS+w==}
+ '@smithy/config-resolver@4.3.0':
+ resolution: {integrity: sha512-9oH+n8AVNiLPK/iK/agOsoWfrKZ3FGP3502tkksd6SRsKMYiu7AFX0YXo6YBADdsAj7C+G/aLKdsafIJHxuCkQ==}
engines: {node: '>=18.0.0'}
- '@smithy/core@3.7.0':
- resolution: {integrity: sha512-7ov8hu/4j0uPZv8b27oeOFtIBtlFmM3ibrPv/Omx1uUdoXvcpJ00U+H/OWWC/keAguLlcqwtyL2/jTlSnApgNQ==}
+ '@smithy/core@3.15.0':
+ resolution: {integrity: sha512-VJWncXgt+ExNn0U2+Y7UywuATtRYaodGQKFo9mDyh70q+fJGedfrqi2XuKU1BhiLeXgg6RZrW7VEKfeqFhHAJA==}
engines: {node: '>=18.0.0'}
- '@smithy/credential-provider-imds@4.0.6':
- resolution: {integrity: sha512-hKMWcANhUiNbCJouYkZ9V3+/Qf9pteR1dnwgdyzR09R4ODEYx8BbUysHwRSyex4rZ9zapddZhLFTnT4ZijR4pw==}
+ '@smithy/credential-provider-imds@4.2.0':
+ resolution: {integrity: sha512-SOhFVvFH4D5HJZytb0bLKxCrSnwcqPiNlrw+S4ZXjMnsC+o9JcUQzbZOEQcA8yv9wJFNhfsUiIUKiEnYL68Big==}
engines: {node: '>=18.0.0'}
- '@smithy/eventstream-codec@4.0.4':
- resolution: {integrity: sha512-7XoWfZqWb/QoR/rAU4VSi0mWnO2vu9/ltS6JZ5ZSZv0eovLVfDfu0/AX4ub33RsJTOth3TiFWSHS5YdztvFnig==}
+ '@smithy/eventstream-codec@4.2.0':
+ resolution: {integrity: sha512-XE7CtKfyxYiNZ5vz7OvyTf1osrdbJfmUy+rbh+NLQmZumMGvY0mT0Cq1qKSfhrvLtRYzMsOBuRpi10dyI0EBPg==}
engines: {node: '>=18.0.0'}
- '@smithy/eventstream-serde-browser@4.0.4':
- resolution: {integrity: sha512-3fb/9SYaYqbpy/z/H3yIi0bYKyAa89y6xPmIqwr2vQiUT2St+avRt8UKwsWt9fEdEasc5d/V+QjrviRaX1JRFA==}
+ '@smithy/eventstream-serde-browser@4.2.0':
+ resolution: {integrity: sha512-U53p7fcrk27k8irLhOwUu+UYnBqsXNLKl1XevOpsxK3y1Lndk8R7CSiZV6FN3fYFuTPuJy5pP6qa/bjDzEkRvA==}
engines: {node: '>=18.0.0'}
- '@smithy/eventstream-serde-config-resolver@4.1.2':
- resolution: {integrity: sha512-JGtambizrWP50xHgbzZI04IWU7LdI0nh/wGbqH3sJesYToMi2j/DcoElqyOcqEIG/D4tNyxgRuaqBXWE3zOFhQ==}
+ '@smithy/eventstream-serde-config-resolver@4.3.0':
+ resolution: {integrity: sha512-uwx54t8W2Yo9Jr3nVF5cNnkAAnMCJ8Wrm+wDlQY6rY/IrEgZS3OqagtCu/9ceIcZFQ1zVW/zbN9dxb5esuojfA==}
engines: {node: '>=18.0.0'}
- '@smithy/eventstream-serde-node@4.0.4':
- resolution: {integrity: sha512-RD6UwNZ5zISpOWPuhVgRz60GkSIp0dy1fuZmj4RYmqLVRtejFqQ16WmfYDdoSoAjlp1LX+FnZo+/hkdmyyGZ1w==}
+ '@smithy/eventstream-serde-node@4.2.0':
+ resolution: {integrity: sha512-yjM2L6QGmWgJjVu/IgYd6hMzwm/tf4VFX0lm8/SvGbGBwc+aFl3hOzvO/e9IJ2XI+22Tx1Zg3vRpFRs04SWFcg==}
engines: {node: '>=18.0.0'}
- '@smithy/eventstream-serde-universal@4.0.4':
- resolution: {integrity: sha512-UeJpOmLGhq1SLox79QWw/0n2PFX+oPRE1ZyRMxPIaFEfCqWaqpB7BU9C8kpPOGEhLF7AwEqfFbtwNxGy4ReENA==}
+ '@smithy/eventstream-serde-universal@4.2.0':
+ resolution: {integrity: sha512-C3jxz6GeRzNyGKhU7oV656ZbuHY93mrfkT12rmjDdZch142ykjn8do+VOkeRNjSGKw01p4g+hdalPYPhmMwk1g==}
engines: {node: '>=18.0.0'}
- '@smithy/fetch-http-handler@5.1.0':
- resolution: {integrity: sha512-mADw7MS0bYe2OGKkHYMaqarOXuDwRbO6ArD91XhHcl2ynjGCFF+hvqf0LyQcYxkA1zaWjefSkU7Ne9mqgApSgQ==}
+ '@smithy/fetch-http-handler@5.3.1':
+ resolution: {integrity: sha512-3AvYYbB+Dv5EPLqnJIAgYw/9+WzeBiUYS8B+rU0pHq5NMQMvrZmevUROS4V2GAt0jEOn9viBzPLrZE+riTNd5Q==}
engines: {node: '>=18.0.0'}
- '@smithy/hash-node@4.0.4':
- resolution: {integrity: sha512-qnbTPUhCVnCgBp4z4BUJUhOEkVwxiEi1cyFM+Zj6o+aY8OFGxUQleKWq8ltgp3dujuhXojIvJWdoqpm6dVO3lQ==}
+ '@smithy/hash-node@4.2.0':
+ resolution: {integrity: sha512-ugv93gOhZGysTctZh9qdgng8B+xO0cj+zN0qAZ+Sgh7qTQGPOJbMdIuyP89KNfUyfAqFSNh5tMvC+h2uCpmTtA==}
engines: {node: '>=18.0.0'}
- '@smithy/invalid-dependency@4.0.4':
- resolution: {integrity: sha512-bNYMi7WKTJHu0gn26wg8OscncTt1t2b8KcsZxvOv56XA6cyXtOAAAaNP7+m45xfppXfOatXF3Sb1MNsLUgVLTw==}
+ '@smithy/invalid-dependency@4.2.0':
+ resolution: {integrity: sha512-ZmK5X5fUPAbtvRcUPtk28aqIClVhbfcmfoS4M7UQBTnDdrNxhsrxYVv0ZEl5NaPSyExsPWqL4GsPlRvtlwg+2A==}
engines: {node: '>=18.0.0'}
'@smithy/is-array-buffer@2.2.0':
resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
engines: {node: '>=14.0.0'}
- '@smithy/is-array-buffer@4.0.0':
- resolution: {integrity: sha512-saYhF8ZZNoJDTvJBEWgeBccCg+yvp1CX+ed12yORU3NilJScfc6gfch2oVb4QgxZrGUx3/ZJlb+c/dJbyupxlw==}
+ '@smithy/is-array-buffer@4.2.0':
+ resolution: {integrity: sha512-DZZZBvC7sjcYh4MazJSGiWMI2L7E0oCiRHREDzIxi/M2LY79/21iXt6aPLHge82wi5LsuRF5A06Ds3+0mlh6CQ==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-content-length@4.0.4':
- resolution: {integrity: sha512-F7gDyfI2BB1Kc+4M6rpuOLne5LOcEknH1n6UQB69qv+HucXBR1rkzXBnQTB2q46sFy1PM/zuSJOB532yc8bg3w==}
+ '@smithy/middleware-content-length@4.2.0':
+ resolution: {integrity: sha512-6ZAnwrXFecrA4kIDOcz6aLBhU5ih2is2NdcZtobBDSdSHtE9a+MThB5uqyK4XXesdOCvOcbCm2IGB95birTSOQ==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-endpoint@4.1.14':
- resolution: {integrity: sha512-+BGLpK5D93gCcSEceaaYhUD/+OCGXM1IDaq/jKUQ+ujB0PTWlWN85noodKw/IPFZhIKFCNEe19PGd/reUMeLSQ==}
+ '@smithy/middleware-endpoint@4.3.1':
+ resolution: {integrity: sha512-JtM4SjEgImLEJVXdsbvWHYiJ9dtuKE8bqLlvkvGi96LbejDL6qnVpVxEFUximFodoQbg0Gnkyff9EKUhFhVJFw==}
engines: {node: '>=18.0.0'}
- deprecated: Please upgrade to @smithy/middleware-endpoint@4.1.15 or higher to fix a bug preventing the resolution of ENV and config file custom endpoints https://github.com/smithy-lang/smithy-typescript/issues/1645
- '@smithy/middleware-retry@4.1.15':
- resolution: {integrity: sha512-iKYUJpiyTQ33U2KlOZeUb0GwtzWR3C0soYcKuCnTmJrvt6XwTPQZhMfsjJZNw7PpQ3TU4Ati1qLSrkSJxnnSMQ==}
+ '@smithy/middleware-retry@4.4.1':
+ resolution: {integrity: sha512-wXxS4ex8cJJteL0PPQmWYkNi9QKDWZIpsndr0wZI2EL+pSSvA/qqxXU60gBOJoIc2YgtZSWY/PE86qhKCCKP1w==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-serde@4.0.8':
- resolution: {integrity: sha512-iSSl7HJoJaGyMIoNn2B7czghOVwJ9nD7TMvLhMWeSB5vt0TnEYyRRqPJu/TqW76WScaNvYYB8nRoiBHR9S1Ddw==}
+ '@smithy/middleware-serde@4.2.0':
+ resolution: {integrity: sha512-rpTQ7D65/EAbC6VydXlxjvbifTf4IH+sADKg6JmAvhkflJO2NvDeyU9qsWUNBelJiQFcXKejUHWRSdmpJmEmiw==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-stack@4.0.4':
- resolution: {integrity: sha512-kagK5ggDrBUCCzI93ft6DjteNSfY8Ulr83UtySog/h09lTIOAJ/xUSObutanlPT0nhoHAkpmW9V5K8oPyLh+QA==}
+ '@smithy/middleware-stack@4.2.0':
+ resolution: {integrity: sha512-G5CJ//eqRd9OARrQu9MK1H8fNm2sMtqFh6j8/rPozhEL+Dokpvi1Og+aCixTuwDAGZUkJPk6hJT5jchbk/WCyg==}
engines: {node: '>=18.0.0'}
- '@smithy/node-config-provider@4.1.3':
- resolution: {integrity: sha512-HGHQr2s59qaU1lrVH6MbLlmOBxadtzTsoO4c+bF5asdgVik3I8o7JIOzoeqWc5MjVa+vD36/LWE0iXKpNqooRw==}
+ '@smithy/node-config-provider@4.3.0':
+ resolution: {integrity: sha512-5QgHNuWdT9j9GwMPPJCKxy2KDxZ3E5l4M3/5TatSZrqYVoEiqQrDfAq8I6KWZw7RZOHtVtCzEPdYz7rHZixwcA==}
engines: {node: '>=18.0.0'}
- '@smithy/node-http-handler@4.1.0':
- resolution: {integrity: sha512-vqfSiHz2v8b3TTTrdXi03vNz1KLYYS3bhHCDv36FYDqxT7jvTll1mMnCrkD+gOvgwybuunh/2VmvOMqwBegxEg==}
+ '@smithy/node-http-handler@4.3.0':
+ resolution: {integrity: sha512-RHZ/uWCmSNZ8cneoWEVsVwMZBKy/8123hEpm57vgGXA3Irf/Ja4v9TVshHK2ML5/IqzAZn0WhINHOP9xl+Qy6Q==}
engines: {node: '>=18.0.0'}
- '@smithy/property-provider@4.0.4':
- resolution: {integrity: sha512-qHJ2sSgu4FqF4U/5UUp4DhXNmdTrgmoAai6oQiM+c5RZ/sbDwJ12qxB1M6FnP+Tn/ggkPZf9ccn4jqKSINaquw==}
+ '@smithy/property-provider@4.2.0':
+ resolution: {integrity: sha512-rV6wFre0BU6n/tx2Ztn5LdvEdNZ2FasQbPQmDOPfV9QQyDmsCkOAB0osQjotRCQg+nSKFmINhyda0D3AnjSBJw==}
engines: {node: '>=18.0.0'}
- '@smithy/protocol-http@5.1.2':
- resolution: {integrity: sha512-rOG5cNLBXovxIrICSBm95dLqzfvxjEmuZx4KK3hWwPFHGdW3lxY0fZNXfv2zebfRO7sJZ5pKJYHScsqopeIWtQ==}
+ '@smithy/protocol-http@5.3.0':
+ resolution: {integrity: sha512-6POSYlmDnsLKb7r1D3SVm7RaYW6H1vcNcTWGWrF7s9+2noNYvUsm7E4tz5ZQ9HXPmKn6Hb67pBDRIjrT4w/d7Q==}
engines: {node: '>=18.0.0'}
- '@smithy/querystring-builder@4.0.4':
- resolution: {integrity: sha512-SwREZcDnEYoh9tLNgMbpop+UTGq44Hl9tdj3rf+yeLcfH7+J8OXEBaMc2kDxtyRHu8BhSg9ADEx0gFHvpJgU8w==}
+ '@smithy/querystring-builder@4.2.0':
+ resolution: {integrity: sha512-Q4oFD0ZmI8yJkiPPeGUITZj++4HHYCW3pYBYfIobUCkYpI6mbkzmG1MAQQ3lJYYWj3iNqfzOenUZu+jqdPQ16A==}
engines: {node: '>=18.0.0'}
- '@smithy/querystring-parser@4.0.4':
- resolution: {integrity: sha512-6yZf53i/qB8gRHH/l2ZwUG5xgkPgQF15/KxH0DdXMDHjesA9MeZje/853ifkSY0x4m5S+dfDZ+c4x439PF0M2w==}
+ '@smithy/querystring-parser@4.2.0':
+ resolution: {integrity: sha512-BjATSNNyvVbQxOOlKse0b0pSezTWGMvA87SvoFoFlkRsKXVsN3bEtjCxvsNXJXfnAzlWFPaT9DmhWy1vn0sNEA==}
engines: {node: '>=18.0.0'}
- '@smithy/service-error-classification@4.0.6':
- resolution: {integrity: sha512-RRoTDL//7xi4tn5FrN2NzH17jbgmnKidUqd4KvquT0954/i6CXXkh1884jBiunq24g9cGtPBEXlU40W6EpNOOg==}
+ '@smithy/service-error-classification@4.2.0':
+ resolution: {integrity: sha512-Ylv1ttUeKatpR0wEOMnHf1hXMktPUMObDClSWl2TpCVT4DwtJhCeighLzSLbgH3jr5pBNM0LDXT5yYxUvZ9WpA==}
engines: {node: '>=18.0.0'}
- '@smithy/shared-ini-file-loader@4.0.4':
- resolution: {integrity: sha512-63X0260LoFBjrHifPDs+nM9tV0VMkOTl4JRMYNuKh/f5PauSjowTfvF3LogfkWdcPoxsA9UjqEOgjeYIbhb7Nw==}
+ '@smithy/shared-ini-file-loader@4.3.0':
+ resolution: {integrity: sha512-VCUPPtNs+rKWlqqntX0CbVvWyjhmX30JCtzO+s5dlzzxrvSfRh5SY0yxnkirvc1c80vdKQttahL71a9EsdolSQ==}
engines: {node: '>=18.0.0'}
- '@smithy/signature-v4@5.1.2':
- resolution: {integrity: sha512-d3+U/VpX7a60seHziWnVZOHuEgJlclufjkS6zhXvxcJgkJq4UWdH5eOBLzHRMx6gXjsdT9h6lfpmLzbrdupHgQ==}
+ '@smithy/signature-v4@5.3.0':
+ resolution: {integrity: sha512-MKNyhXEs99xAZaFhm88h+3/V+tCRDQ+PrDzRqL0xdDpq4gjxcMmf5rBA3YXgqZqMZ/XwemZEurCBQMfxZOWq/g==}
engines: {node: '>=18.0.0'}
- '@smithy/smithy-client@4.4.6':
- resolution: {integrity: sha512-3wfhywdzB/CFszP6moa5L3lf5/zSfQoH0kvVSdkyK2az5qZet0sn2PAHjcTDiq296Y4RP5yxF7B6S6+3oeBUCQ==}
+ '@smithy/smithy-client@4.7.1':
+ resolution: {integrity: sha512-WXVbiyNf/WOS/RHUoFMkJ6leEVpln5ojCjNBnzoZeMsnCg3A0BRhLK3WYc4V7PmYcYPZh9IYzzAg9XcNSzYxYQ==}
engines: {node: '>=18.0.0'}
- '@smithy/types@4.3.1':
- resolution: {integrity: sha512-UqKOQBL2x6+HWl3P+3QqFD4ncKq0I8Nuz9QItGv5WuKuMHuuwlhvqcZCoXGfc+P1QmfJE7VieykoYYmrOoFJxA==}
+ '@smithy/types@4.6.0':
+ resolution: {integrity: sha512-4lI9C8NzRPOv66FaY1LL1O/0v0aLVrq/mXP/keUa9mJOApEeae43LsLd2kZRUJw91gxOQfLIrV3OvqPgWz1YsA==}
engines: {node: '>=18.0.0'}
- '@smithy/url-parser@4.0.4':
- resolution: {integrity: sha512-eMkc144MuN7B0TDA4U2fKs+BqczVbk3W+qIvcoCY6D1JY3hnAdCuhCZODC+GAeaxj0p6Jroz4+XMUn3PCxQQeQ==}
+ '@smithy/url-parser@4.2.0':
+ resolution: {integrity: sha512-AlBmD6Idav2ugmoAL6UtR6ItS7jU5h5RNqLMZC7QrLCoITA9NzIN3nx9GWi8g4z1pfWh2r9r96SX/jHiNwPJ9A==}
engines: {node: '>=18.0.0'}
- '@smithy/util-base64@4.0.0':
- resolution: {integrity: sha512-CvHfCmO2mchox9kjrtzoHkWHxjHZzaFojLc8quxXY7WAAMAg43nuxwv95tATVgQFNDwd4M9S1qFzj40Ul41Kmg==}
+ '@smithy/util-base64@4.3.0':
+ resolution: {integrity: sha512-GkXZ59JfyxsIwNTWFnjmFEI8kZpRNIBfxKjv09+nkAWPt/4aGaEWMM04m4sxgNVWkbt2MdSvE3KF/PfX4nFedQ==}
engines: {node: '>=18.0.0'}
- '@smithy/util-body-length-browser@4.0.0':
- resolution: {integrity: sha512-sNi3DL0/k64/LO3A256M+m3CDdG6V7WKWHdAiBBMUN8S3hK3aMPhwnPik2A/a2ONN+9doY9UxaLfgqsIRg69QA==}
+ '@smithy/util-body-length-browser@4.2.0':
+ resolution: {integrity: sha512-Fkoh/I76szMKJnBXWPdFkQJl2r9SjPt3cMzLdOB6eJ4Pnpas8hVoWPYemX/peO0yrrvldgCUVJqOAjUrOLjbxg==}
engines: {node: '>=18.0.0'}
- '@smithy/util-body-length-node@4.0.0':
- resolution: {integrity: sha512-q0iDP3VsZzqJyje8xJWEJCNIu3lktUGVoSy1KB0UWym2CL1siV3artm+u1DFYTLejpsrdGyCSWBdGNjJzfDPjg==}
+ '@smithy/util-body-length-node@4.2.1':
+ resolution: {integrity: sha512-h53dz/pISVrVrfxV1iqXlx5pRg3V2YWFcSQyPyXZRrZoZj4R4DeWRDo1a7dd3CPTcFi3kE+98tuNyD2axyZReA==}
engines: {node: '>=18.0.0'}
'@smithy/util-buffer-from@2.2.0':
resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==}
engines: {node: '>=14.0.0'}
- '@smithy/util-buffer-from@4.0.0':
- resolution: {integrity: sha512-9TOQ7781sZvddgO8nxueKi3+yGvkY35kotA0Y6BWRajAv8jjmigQ1sBwz0UX47pQMYXJPahSKEKYFgt+rXdcug==}
+ '@smithy/util-buffer-from@4.2.0':
+ resolution: {integrity: sha512-kAY9hTKulTNevM2nlRtxAG2FQ3B2OR6QIrPY3zE5LqJy1oxzmgBGsHLWTcNhWXKchgA0WHW+mZkQrng/pgcCew==}
engines: {node: '>=18.0.0'}
- '@smithy/util-config-provider@4.0.0':
- resolution: {integrity: sha512-L1RBVzLyfE8OXH+1hsJ8p+acNUSirQnWQ6/EgpchV88G6zGBTDPdXiiExei6Z1wR2RxYvxY/XLw6AMNCCt8H3w==}
+ '@smithy/util-config-provider@4.2.0':
+ resolution: {integrity: sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q==}
engines: {node: '>=18.0.0'}
- '@smithy/util-defaults-mode-browser@4.0.22':
- resolution: {integrity: sha512-hjElSW18Wq3fUAWVk6nbk7pGrV7ZT14DL1IUobmqhV3lxcsIenr5FUsDe2jlTVaS8OYBI3x+Og9URv5YcKb5QA==}
+ '@smithy/util-defaults-mode-browser@4.3.0':
+ resolution: {integrity: sha512-H4MAj8j8Yp19Mr7vVtGgi7noJjvjJbsKQJkvNnLlrIFduRFT5jq5Eri1k838YW7rN2g5FTnXpz5ktKVr1KVgPQ==}
engines: {node: '>=18.0.0'}
- '@smithy/util-defaults-mode-node@4.0.22':
- resolution: {integrity: sha512-7B8mfQBtwwr2aNRRmU39k/bsRtv9B6/1mTMrGmmdJFKmLAH+KgIiOuhaqfKOBGh9sZ/VkZxbvm94rI4MMYpFjQ==}
+ '@smithy/util-defaults-mode-node@4.2.1':
+ resolution: {integrity: sha512-PuDcgx7/qKEMzV1QFHJ7E4/MMeEjaA7+zS5UNcHCLPvvn59AeZQ0DSDGMpqC2xecfa/1cNGm4l8Ec/VxCuY7Ug==}
engines: {node: '>=18.0.0'}
- '@smithy/util-endpoints@3.0.6':
- resolution: {integrity: sha512-YARl3tFL3WgPuLzljRUnrS2ngLiUtkwhQtj8PAL13XZSyUiNLQxwG3fBBq3QXFqGFUXepIN73pINp3y8c2nBmA==}
+ '@smithy/util-endpoints@3.2.0':
+ resolution: {integrity: sha512-TXeCn22D56vvWr/5xPqALc9oO+LN+QpFjrSM7peG/ckqEPoI3zaKZFp+bFwfmiHhn5MGWPaLCqDOJPPIixk9Wg==}
engines: {node: '>=18.0.0'}
- '@smithy/util-hex-encoding@4.0.0':
- resolution: {integrity: sha512-Yk5mLhHtfIgW2W2WQZWSg5kuMZCVbvhFmC7rV4IO2QqnZdbEFPmQnCcGMAX2z/8Qj3B9hYYNjZOhWym+RwhePw==}
+ '@smithy/util-hex-encoding@4.2.0':
+ resolution: {integrity: sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw==}
engines: {node: '>=18.0.0'}
- '@smithy/util-middleware@4.0.4':
- resolution: {integrity: sha512-9MLKmkBmf4PRb0ONJikCbCwORACcil6gUWojwARCClT7RmLzF04hUR4WdRprIXal7XVyrddadYNfp2eF3nrvtQ==}
+ '@smithy/util-middleware@4.2.0':
+ resolution: {integrity: sha512-u9OOfDa43MjagtJZ8AapJcmimP+K2Z7szXn8xbty4aza+7P1wjFmy2ewjSbhEiYQoW1unTlOAIV165weYAaowA==}
engines: {node: '>=18.0.0'}
- '@smithy/util-retry@4.0.6':
- resolution: {integrity: sha512-+YekoF2CaSMv6zKrA6iI/N9yva3Gzn4L6n35Luydweu5MMPYpiGZlWqehPHDHyNbnyaYlz/WJyYAZnC+loBDZg==}
+ '@smithy/util-retry@4.2.0':
+ resolution: {integrity: sha512-BWSiuGbwRnEE2SFfaAZEX0TqaxtvtSYPM/J73PFVm+A29Fg1HTPiYFb8TmX1DXp4hgcdyJcNQmprfd5foeORsg==}
engines: {node: '>=18.0.0'}
- '@smithy/util-stream@4.2.3':
- resolution: {integrity: sha512-cQn412DWHHFNKrQfbHY8vSFI3nTROY1aIKji9N0tpp8gUABRilr7wdf8fqBbSlXresobM+tQFNk6I+0LXK/YZg==}
+ '@smithy/util-stream@4.5.0':
+ resolution: {integrity: sha512-0TD5M5HCGu5diEvZ/O/WquSjhJPasqv7trjoqHyWjNh/FBeBl7a0ztl9uFMOsauYtRfd8jvpzIAQhDHbx+nvZw==}
engines: {node: '>=18.0.0'}
- '@smithy/util-uri-escape@4.0.0':
- resolution: {integrity: sha512-77yfbCbQMtgtTylO9itEAdpPXSog3ZxMe09AEhm0dU0NLTalV70ghDZFR+Nfi1C60jnJoh/Re4090/DuZh2Omg==}
+ '@smithy/util-uri-escape@4.2.0':
+ resolution: {integrity: sha512-igZpCKV9+E/Mzrpq6YacdTQ0qTiLm85gD6N/IrmyDvQFA4UnU3d5g3m8tMT/6zG/vVkWSU+VxeUyGonL62DuxA==}
engines: {node: '>=18.0.0'}
'@smithy/util-utf8@2.3.0':
resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==}
engines: {node: '>=14.0.0'}
- '@smithy/util-utf8@4.0.0':
- resolution: {integrity: sha512-b+zebfKCfRdgNJDknHCob3O7FpeYQN6ZG6YLExMcasDHsCXlsXCEuiPZeLnJLpwa5dvPetGlnGCiMHuLwGvFow==}
+ '@smithy/util-utf8@4.2.0':
+ resolution: {integrity: sha512-zBPfuzoI8xyBtR2P6WQj63Rz8i3AmfAaJLuNG8dWsfvPe8lO4aCPYLn879mEgHndZH1zQ2oXmG8O1GGzzaoZiw==}
engines: {node: '>=18.0.0'}
- '@statsig/client-core@3.24.4':
- resolution: {integrity: sha512-MnECJMfcl/OxBwzRZc/qM5tD2STdKI48gj4JPinqqXxhR6+XY0g+a7XPKU5J+D9RdgoDjnSmy+B9PYThQFH0kQ==}
+ '@smithy/uuid@1.1.0':
+ resolution: {integrity: sha512-4aUIteuyxtBUhVdiQqcDhKFitwfd9hqoSDYY2KRXiWtgoWJ9Bmise+KfEPDiVHWeJepvF8xJO9/9+WDIciMFFw==}
+ engines: {node: '>=18.0.0'}
+
+ '@statsig/client-core@3.26.0':
+ resolution: {integrity: sha512-n6ctSSTAcz7Jcu27nH3T4mPmyTqYrHhToka3/ma+eXN3WHEyeZnthrecCyGyPkT+yhOVBhpaoFhVRPRqROIsKg==}
- '@statsig/js-client@3.24.4':
- resolution: {integrity: sha512-H7OdO/KvXp63hFAYNdfNfkaiH6RGMJ6TyDlQrltoHHWJS6WLTEuJJfljzwRvausjEetcLcU35P0osLSTBRQWrg==}
+ '@statsig/js-client@3.26.0':
+ resolution: {integrity: sha512-4qGRvt0J8TZ67GYe/ZZ6n55lf51eqCSaOhnrW5MG1zjczuVfjWd+9fScXnEB5zBXun6SEF8KiM7lrBIOYV6PJQ==}
- '@storybook/addon-a11y@9.1.3':
- resolution: {integrity: sha512-U+In40S6HCvRN2at+/wn1ECmqFfLa7vPePkR5c9b+Zh2aVNfv+3JbjXfbp29FocTj4ooYsPRYFq7cdzXBjXZ1A==}
+ '@storybook/addon-a11y@9.1.10':
+ resolution: {integrity: sha512-RhYYtk8nePxVNfP/voW8vS7AiQxWWBgOLNMTeDr9Anjh06mpSWZ/U/zEUNC9TrId5BxnyZJW5Lkg0JUMwvyfjw==}
peerDependencies:
- storybook: ^9.1.3
+ storybook: ^9.1.10
'@storybook/addon-actions@8.6.14':
resolution: {integrity: sha512-mDQxylxGGCQSK7tJPkD144J8jWh9IU9ziJMHfB84PKpI/V5ZgqMDnpr2bssTrUaGDqU5e1/z8KcRF+Melhs9pQ==}
peerDependencies:
storybook: ^8.6.14
- '@storybook/addon-controls@8.6.12':
- resolution: {integrity: sha512-9VSRPJWQVb9wLp21uvpxDGNctYptyUX0gbvxIWOHMH3R2DslSoq41lsC/oQ4l4zSHVdL+nq8sCTkhBxIsjKqdQ==}
+ '@storybook/addon-controls@8.6.14':
+ resolution: {integrity: sha512-IiQpkNJdiRyA4Mq9mzjZlvQugL/aE7hNgVxBBGPiIZG6wb6Ht9hNnBYpap5ZXXFKV9p2qVI0FZK445ONmAa+Cw==}
peerDependencies:
- storybook: ^8.6.12
+ storybook: ^8.6.14
- '@storybook/addon-docs@9.1.3':
- resolution: {integrity: sha512-iCzuHRyUgir2+ExqPO4ouxm90zW+6dkNuB4lyyFwNU10slJhVT8yGPk8PVOT6LhXMIii+7Hqc4dB0tj+kLOW/A==}
+ '@storybook/addon-docs@9.1.10':
+ resolution: {integrity: sha512-LYK3oXy/0PgY39FhkYVd9D0bzatLGTsMhaPPwSjBOmZgK0f0yBLqaePy7urUFeHYm/rjwAaRmDJNBqUnGTVoig==}
peerDependencies:
- storybook: ^9.1.3
+ storybook: ^9.1.10
- '@storybook/addon-links@9.1.3':
- resolution: {integrity: sha512-zLpOf9UYtxEaCQgbpOqOAW0f/puumwzTNA/AHDkqwe/BAOtBXyS/bocQIO6Oxj8z4kp+bYqxW6c2OA0/EyII0Q==}
+ '@storybook/addon-links@9.1.10':
+ resolution: {integrity: sha512-MG0vktKX/qH+hSRnX2/TfEtSpO87G++H5D95PaBtPYwV+JqgZI5Qpq+ikC+s0wvCxlRgm3qy+NkeoHGze29T0g==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^9.1.3
+ react: 19.0.0
+ storybook: ^9.1.10
peerDependenciesMeta:
react:
optional: true
@@ -4763,7 +4343,7 @@ packages:
'@storybook/addon-ondevice-actions@8.6.4':
resolution: {integrity: sha512-jDS9lcz5z0gDCptQ8kqTMUkQrug0KdTOyr25Ri8zftmvnT0Zph2/IsEPPendqyoszzYfDvsoW3kQ6VDONEX7tg==}
peerDependencies:
- react: '*'
+ react: 19.0.0
react-native: '*'
'@storybook/addon-ondevice-controls@8.6.4':
@@ -4772,24 +4352,24 @@ packages:
'@gorhom/bottom-sheet': '>=4'
'@react-native-community/datetimepicker': '*'
'@react-native-community/slider': '*'
- react: '*'
+ react: 19.0.0
react-native: '*'
'@storybook/addon-ondevice-notes@8.6.4':
resolution: {integrity: sha512-nsFRUvPo4fYbjvlrLe0J7lVFkdPX9BHDOmZstn9WyZMrOBXJ6b6H3zg942I5xIVOKFKBuZCOtbLQFQNxnf+gtg==}
peerDependencies:
- react: '*'
+ react: 19.0.0
react-native: '*'
- '@storybook/addon-themes@9.1.3':
- resolution: {integrity: sha512-uXmS45pa3jE83THZSgXSvvSSWC7LuXN6Wjqm/mmjLEbq2InS9L0JTfvX+WBEBI6DInqh3kUekiXgF7kljLNV6A==}
+ '@storybook/addon-themes@9.1.10':
+ resolution: {integrity: sha512-COBofdSDHDyms256l4nsLPkhYwQneSJNir3YtcRThkfdyP3clgNkUICClU3VlGwr3d9tFJNjs4A8P0xFTo7byw==}
peerDependencies:
- storybook: ^9.1.3
+ storybook: ^9.1.10
- '@storybook/builder-vite@9.1.3':
- resolution: {integrity: sha512-bstS/GsVJ5zVkRKAJociocA2omxU4CaNAP58fxS280JiRYgcrRaydDd7vwk6iGJ3xWbzwV0wH8SP54LVNyRY6Q==}
+ '@storybook/builder-vite@9.1.10':
+ resolution: {integrity: sha512-0ogI+toZJYaFptcFpRcRPOZ9/NrFUYhiaI09ggeEB1FF9ygHMVsobp4eaj4HjZI6V3x7cQwkd2ZmxAMQDBQuMA==}
peerDependencies:
- storybook: ^9.1.3
+ storybook: ^9.1.10
vite: ^5.0.0 || ^6.0.0 || ^7.0.0
'@storybook/components@8.6.14':
@@ -4805,10 +4385,10 @@ packages:
prettier:
optional: true
- '@storybook/csf-plugin@9.1.3':
- resolution: {integrity: sha512-wqh+tTCX2WZqVDVjhk/a6upsyYj/Kc85Wf6ywPx4pcFYxQZxiKF/wtuM9yzEpZC6fZHNvlKkzXWvP4wJOnm+zg==}
+ '@storybook/csf-plugin@9.1.10':
+ resolution: {integrity: sha512-247F/JU0Naxm/RIUnQYpqXeCL0wG8UNJkZe+/GkLjdqzsyML0lb+8OwBsWFfG8zfj6fkjmRU2mF44TnNkzoQcg==}
peerDependencies:
- storybook: ^9.1.3
+ storybook: ^9.1.10
'@storybook/csf@0.1.13':
resolution: {integrity: sha512-7xOOwCLGB3ebM87eemep89MYRFTko+D8qE7EdAAq74lgdqRR5cOUtYWJLjO2dLtP94nqoOdHJo6MdLLKzg412Q==}
@@ -4816,17 +4396,12 @@ packages:
'@storybook/global@5.0.0':
resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
- '@storybook/icons@1.4.0':
- resolution: {integrity: sha512-Td73IeJxOyalzvjQL+JXx72jlIYHgs+REaHiREOqfpo3A2AYYG71AUbcv+lg7mEDIweKVCxsMQ0UKo634c8XeA==}
+ '@storybook/icons@1.6.0':
+ resolution: {integrity: sha512-hcFZIjW8yQz8O8//2WTIXylm5Xsgc+lW9ISLgUk1xGmptIJQRdlhVIXCpSyLrQaaRiyhQRaVg7l3BD9S216BHw==}
engines: {node: '>=14.0.0'}
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/instrumenter@8.6.14':
- resolution: {integrity: sha512-iG4MlWCcz1L7Yu8AwgsnfVAmMbvyRSk700Mfy2g4c8y5O+Cv1ejshE1LBBsCwHgkuqU0H4R0qu4g23+6UnUemQ==}
- peerDependencies:
- storybook: ^8.6.14
+ react: 19.0.0
+ react-dom: 19.0.0
'@storybook/manager-api@8.6.14':
resolution: {integrity: sha512-ez0Zihuy17udLbfHZQXkGqwtep0mSGgHcNzGN7iZrMP1m+VmNo+7aGCJJdvXi7+iU3yq8weXSQFWg5DqWgLS7g==}
@@ -4841,21 +4416,21 @@ packages:
'@storybook/react-dom-shim@8.6.14':
resolution: {integrity: sha512-0hixr3dOy3f3M+HBofp3jtMQMS+sqzjKNgl7Arfuj3fvjmyXOks/yGjDImySR4imPtEllvPZfhiQNlejheaInw==}
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
+ react: 19.0.0
+ react-dom: 19.0.0
storybook: ^8.6.14
- '@storybook/react-dom-shim@9.1.3':
- resolution: {integrity: sha512-zIgFwZqV8cvE+lzJDcD13rItxoWyYNUWu7eJQAnHz5RnyHhpu6rFgQej7i6J3rPmy9xVe+Rq6XsXgDNs6pIekQ==}
+ '@storybook/react-dom-shim@9.1.10':
+ resolution: {integrity: sha512-cxy8GTj73RMJIFPrgqdnMXePGX5iFohM5pDCZ63Te5m5GtzKqsILRXtBBLO6Ouexm/ZYRVznkKiwNKX/Fu24fQ==}
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.3
+ react: 19.0.0
+ react-dom: 19.0.0
+ storybook: ^9.1.10
'@storybook/react-native-theming@8.6.4':
resolution: {integrity: sha512-3CI1yXO59eX5Jf1cd8Q+cvStocdJw8QxrzY5j0nbcj872SHzNtIh/kt0bR60O2AioaBYtSweZK1LuIQqTl58SQ==}
peerDependencies:
- react: '*'
+ react: 19.0.0
react-native: '>=0.57.0'
'@storybook/react-native-ui@8.6.4':
@@ -4863,7 +4438,7 @@ packages:
engines: {node: '>=18.0.0'}
peerDependencies:
'@gorhom/bottom-sheet': '>=4'
- react: '*'
+ react: 19.0.0
react-native: '>=0.57.0'
react-native-gesture-handler: '>=2'
react-native-reanimated: '>=3'
@@ -4876,18 +4451,18 @@ packages:
hasBin: true
peerDependencies:
'@gorhom/bottom-sheet': '>=4'
- react: '*'
+ react: 19.0.0
react-native: '>=0.72.0'
react-native-gesture-handler: '>=2'
react-native-safe-area-context: '*'
- '@storybook/react-vite@9.1.3':
- resolution: {integrity: sha512-iNRRxA5G9Yaw5etbRdCMnJtjI1VkzA7juc+/caVhKKut25sI8cOF4GRPLCbotLz9xmitQR2X7beZMPPVIYk86A==}
+ '@storybook/react-vite@9.1.10':
+ resolution: {integrity: sha512-k0wWlfoWakoHL3NZ1+38oxRH3WYyprFFX+WUb/4W8axrvpKogvdnxKCul/YB1HH5FcTagIfguamsPjKwB1ZkJg==}
engines: {node: '>=20.0.0'}
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.3
+ react: 19.0.0
+ react-dom: 19.0.0
+ storybook: ^9.1.10
vite: ^5.0.0 || ^6.0.0 || ^7.0.0
'@storybook/react@8.6.14':
@@ -4895,8 +4470,8 @@ packages:
engines: {node: '>=18.0.0'}
peerDependencies:
'@storybook/test': 8.6.14
- 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
+ react: 19.0.0
+ react-dom: 19.0.0
storybook: ^8.6.14
typescript: '>= 4.2.x'
peerDependenciesMeta:
@@ -4905,13 +4480,13 @@ packages:
typescript:
optional: true
- '@storybook/react@9.1.3':
- resolution: {integrity: sha512-CgJMk4Y8EfoFxWiTB53QxnN+nQbAkw+NBaNjsaaeDNOE1R0ximP/fn5b2jcLvM+b5ojjJiJL1QCzFyoPWImHIQ==}
+ '@storybook/react@9.1.10':
+ resolution: {integrity: sha512-flG3Gn3EHZnxn92C7vrA2U4aGqpOKdf85fL43+J/2k9HF5AIyOFGlcv4LGVyKZ3LOAow/nGBVSXL9961h+ICRA==}
engines: {node: '>=20.0.0'}
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.3
+ react: 19.0.0
+ react-dom: 19.0.0
+ storybook: ^9.1.10
typescript: '>= 4.9.x'
peerDependenciesMeta:
typescript:
@@ -4924,11 +4499,6 @@ packages:
peerDependencies:
storybook: ^0.0.0-0 || ^8.2.0 || ^9.0.0 || ^9.1.0-0
- '@storybook/test@8.6.14':
- resolution: {integrity: sha512-GkPNBbbZmz+XRdrhMtkxPotCLOQ1BaGNp/gFZYdGDk2KmUWBKmvc5JxxOhtoXM2703IzNFlQHSSNnhrDZYuLlw==}
- peerDependencies:
- storybook: ^8.6.14
-
'@storybook/theming@8.6.14':
resolution: {integrity: sha512-r4y+LsiB37V5hzpQo+BM10PaCsp7YlZ0YcZzQP1OCkPlYXmUAFy2VvDKaFRpD8IeNPKug2u4iFm/laDEbs03dg==}
peerDependencies:
@@ -5019,71 +4589,71 @@ packages:
peerDependencies:
'@svgr/core': '*'
- '@swc/core-darwin-arm64@1.11.13':
- resolution: {integrity: sha512-loSERhLaQ9XDS+5Kdx8cLe2tM1G0HLit8MfehipAcsdctpo79zrRlkW34elOf3tQoVPKUItV0b/rTuhjj8NtHg==}
+ '@swc/core-darwin-arm64@1.13.5':
+ resolution: {integrity: sha512-lKNv7SujeXvKn16gvQqUQI5DdyY8v7xcoO3k06/FJbHJS90zEwZdQiMNRiqpYw/orU543tPaWgz7cIYWhbopiQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
- '@swc/core-darwin-x64@1.11.13':
- resolution: {integrity: sha512-uSA4UwgsDCIysUPfPS8OrQTH2h9spO7IYFd+1NB6dJlVGUuR6jLKuMBOP1IeLeax4cGHayvkcwSJ3OvxHwgcZQ==}
+ '@swc/core-darwin-x64@1.13.5':
+ resolution: {integrity: sha512-ILd38Fg/w23vHb0yVjlWvQBoE37ZJTdlLHa8LRCFDdX4WKfnVBiblsCU9ar4QTMNdeTBEX9iUF4IrbNWhaF1Ng==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
- '@swc/core-linux-arm-gnueabihf@1.11.13':
- resolution: {integrity: sha512-boVtyJzS8g30iQfe8Q46W5QE/cmhKRln/7NMz/5sBP/am2Lce9NL0d05NnFwEWJp1e2AMGHFOdRr3Xg1cDiPKw==}
+ '@swc/core-linux-arm-gnueabihf@1.13.5':
+ resolution: {integrity: sha512-Q6eS3Pt8GLkXxqz9TAw+AUk9HpVJt8Uzm54MvPsqp2yuGmY0/sNaPPNVqctCX9fu/Nu8eaWUen0si6iEiCsazQ==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
- '@swc/core-linux-arm64-gnu@1.11.13':
- resolution: {integrity: sha512-+IK0jZ84zHUaKtwpV+T+wT0qIUBnK9v2xXD03vARubKF+eUqCsIvcVHXmLpFuap62dClMrhCiwW10X3RbXNlHw==}
+ '@swc/core-linux-arm64-gnu@1.13.5':
+ resolution: {integrity: sha512-aNDfeN+9af+y+M2MYfxCzCy/VDq7Z5YIbMqRI739o8Ganz6ST+27kjQFd8Y/57JN/hcnUEa9xqdS3XY7WaVtSw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-arm64-musl@1.11.13':
- resolution: {integrity: sha512-+ukuB8RHD5BHPCUjQwuLP98z+VRfu+NkKQVBcLJGgp0/+w7y0IkaxLY/aKmrAS5ofCNEGqKL+AOVyRpX1aw+XA==}
+ '@swc/core-linux-arm64-musl@1.13.5':
+ resolution: {integrity: sha512-9+ZxFN5GJag4CnYnq6apKTnnezpfJhCumyz0504/JbHLo+Ue+ZtJnf3RhyA9W9TINtLE0bC4hKpWi8ZKoETyOQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-x64-gnu@1.11.13':
- resolution: {integrity: sha512-q9H3WI3U3dfJ34tdv60zc8oTuWvSd5fOxytyAO9Pc5M82Hic3jjWaf2xBekUg07ubnMZpyfnv+MlD+EbUI3Llw==}
+ '@swc/core-linux-x64-gnu@1.13.5':
+ resolution: {integrity: sha512-WD530qvHrki8Ywt/PloKUjaRKgstQqNGvmZl54g06kA+hqtSE2FTG9gngXr3UJxYu/cNAjJYiBifm7+w4nbHbA==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-linux-x64-musl@1.11.13':
- resolution: {integrity: sha512-9aaZnnq2pLdTbAzTSzy/q8dr7Woy3aYIcQISmw1+Q2/xHJg5y80ZzbWSWKYca/hKonDMjIbGR6dp299I5J0aeA==}
+ '@swc/core-linux-x64-musl@1.13.5':
+ resolution: {integrity: sha512-Luj8y4OFYx4DHNQTWjdIuKTq2f5k6uSXICqx+FSabnXptaOBAbJHNbHT/06JZh6NRUouaf0mYXN0mcsqvkhd7Q==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-win32-arm64-msvc@1.11.13':
- resolution: {integrity: sha512-n3QZmDewkHANcoHvtwvA6yJbmS4XJf0MBMmwLZoKDZ2dOnC9D/jHiXw7JOohEuzYcpLoL5tgbqmjxa3XNo9Oow==}
+ '@swc/core-win32-arm64-msvc@1.13.5':
+ resolution: {integrity: sha512-cZ6UpumhF9SDJvv4DA2fo9WIzlNFuKSkZpZmPG1c+4PFSEMy5DFOjBSllCvnqihCabzXzpn6ykCwBmHpy31vQw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
- '@swc/core-win32-ia32-msvc@1.11.13':
- resolution: {integrity: sha512-wM+Nt4lc6YSJFthCx3W2dz0EwFNf++j0/2TQ0Js9QLJuIxUQAgukhNDVCDdq8TNcT0zuA399ALYbvj5lfIqG6g==}
+ '@swc/core-win32-ia32-msvc@1.13.5':
+ resolution: {integrity: sha512-C5Yi/xIikrFUzZcyGj9L3RpKljFvKiDMtyDzPKzlsDrKIw2EYY+bF88gB6oGY5RGmv4DAX8dbnpRAqgFD0FMEw==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
- '@swc/core-win32-x64-msvc@1.11.13':
- resolution: {integrity: sha512-+X5/uW3s1L5gK7wAo0E27YaAoidJDo51dnfKSfU7gF3mlEUuWH8H1bAy5OTt2mU4eXtfsdUMEVXSwhDlLtQkuA==}
+ '@swc/core-win32-x64-msvc@1.13.5':
+ resolution: {integrity: sha512-YrKdMVxbYmlfybCSbRtrilc6UA8GF5aPmGKBdPvjrarvsmf4i7ZHGCEnLtfOMd3Lwbs2WUZq3WdMbozYeLU93Q==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
- '@swc/core@1.11.13':
- resolution: {integrity: sha512-9BXdYz12Wl0zWmZ80PvtjBWeg2ncwJ9L5WJzjhN6yUTZWEV/AwAdVdJnIEp4pro3WyKmAaMxcVOSbhuuOZco5g==}
+ '@swc/core@1.13.5':
+ resolution: {integrity: sha512-WezcBo8a0Dg2rnR82zhwoR6aRNxeTGfK5QCD6TQ+kg3xx/zNT02s/0o+81h/3zhvFSB24NtqEr8FTw88O5W/JQ==}
engines: {node: '>=10'}
peerDependencies:
- '@swc/helpers': '*'
+ '@swc/helpers': '>=0.5.17'
peerDependenciesMeta:
'@swc/helpers':
optional: true
@@ -5094,14 +4664,14 @@ packages:
'@swc/helpers@0.5.17':
resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==}
- '@swc/jest@0.2.37':
- resolution: {integrity: sha512-CR2BHhmXKGxTiFr21DYPRHQunLkX3mNIFGFkxBGji6r9uyIR5zftTOVYj1e0sFNMV2H7mf/+vpaglqaryBtqfQ==}
+ '@swc/jest@0.2.39':
+ resolution: {integrity: sha512-eyokjOwYd0Q8RnMHri+8/FS1HIrIUKK/sRrFp8c1dThUOfNeCWbLmBP1P5VsKdvmkd25JaH+OKYwEYiAYg9YAA==}
engines: {npm: '>= 7.0.0'}
peerDependencies:
'@swc/core': '*'
- '@swc/types@0.1.20':
- resolution: {integrity: sha512-/rlIpxwKrhz4BIplXf6nsEHtqlhzuNN34/k3kMAXH4/lvVoA3cdq+60aqVNnyvw2uITEaCi0WV3pxBe4dQqoXQ==}
+ '@swc/types@0.1.25':
+ resolution: {integrity: sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g==}
'@tailwindcss/container-queries@0.1.1':
resolution: {integrity: sha512-p18dswChx6WnTSaJCSGx6lTmrGzNNvm2FtXmiO6AuA1V4U5REyoqwmT6kgAsIMdjo07QdAfYXHJ4hnMtfHzWgA==}
@@ -5111,156 +4681,142 @@ packages:
'@tanstack/react-virtual@3.13.12':
resolution: {integrity: sha512-Gd13QdxPSukP8ZrkbgS2RwoZseTTbQPLnQEn7HY/rqtM+8Zt95f7xKC7N0EsKs7aoz0WzZ+fditZux+F8EzYxA==}
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
+ react: 19.0.0
+ react-dom: 19.0.0
'@tanstack/virtual-core@3.13.12':
resolution: {integrity: sha512-1YBOJfRHV4sXUmWsFSf5rQor4Ss82G8dQWLRbnk3GA4jeP8hQt1hxXh0tmflpC0dz3VgEv/1+qwPyLeWkQuPFA==}
- '@testing-library/dom@10.4.0':
- resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
- engines: {node: '>=18'}
-
'@testing-library/dom@10.4.1':
resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==}
engines: {node: '>=18'}
- '@testing-library/jest-dom@6.5.0':
- resolution: {integrity: sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==}
- engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
-
- '@testing-library/jest-dom@6.6.3':
- resolution: {integrity: sha512-IteBhl4XqYNkM54f4ejhLRJiZNqcSCoXUOG2CPK7qbD322KjQozM4kHQOfkG2oln9b9HTYqs+Sae8vBATubxxA==}
+ '@testing-library/jest-dom@6.9.1':
+ resolution: {integrity: sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
'@testing-library/react-native@12.9.0':
resolution: {integrity: sha512-wIn/lB1FjV2N4Q7i9PWVRck3Ehwq5pkhAef5X5/bmQ78J/NoOsGbVY2/DG5Y9Lxw+RfE+GvSEh/fe5Tz6sKSvw==}
peerDependencies:
jest: '>=28.0.0'
- react: '>=16.8.0'
+ react: 19.0.0
react-native: '>=0.59'
react-test-renderer: '>=16.8.0'
peerDependenciesMeta:
jest:
optional: true
- '@testing-library/react@16.2.0':
- resolution: {integrity: sha512-2cSskAvA1QNtKc8Y9VJQRv0tm3hLVgxRGDB+KYhIaPQJ1I+RHbhIXcM+zClKXzMes/wshsMVzf4B9vS4IZpqDQ==}
+ '@testing-library/react@16.3.0':
+ resolution: {integrity: sha512-kFSyxiEDwv1WLl2fgsq6pPBbw5aWKrsY2/noi1Id0TK0UParSF62oFQFGHXIyaG4pp2tEub/Zlel+fjjZILDsw==}
engines: {node: '>=18'}
peerDependencies:
'@testing-library/dom': ^10.0.0
- '@types/react': ^18.0.0 || ^19.0.0
+ '@types/react': 19.0.14
'@types/react-dom': ^18.0.0 || ^19.0.0
- react: ^18.0.0 || ^19.0.0
- react-dom: ^18.0.0 || ^19.0.0
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@testing-library/user-event@14.5.2':
- resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==}
- engines: {node: '>=12', npm: '>=6'}
- peerDependencies:
- '@testing-library/dom': '>=7.21.4'
-
'@testing-library/user-event@14.6.1':
resolution: {integrity: sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==}
engines: {node: '>=12', npm: '>=6'}
peerDependencies:
'@testing-library/dom': '>=7.21.4'
- '@tiptap/core@2.24.0':
- resolution: {integrity: sha512-DDFd4jKN2xx7i7GL7FYVweQudXGhHDPErjnKNwaEh0togBVQtvNcGQGV0pW31oTUItzc29DgvEGjyb5z9zOZUQ==}
+ '@tiptap/core@2.26.3':
+ resolution: {integrity: sha512-TaOJzu2v5ufsOx+yu94NqXE504zmupVdFCxH1g3hk5fzZ3gT57Lh9R/27OjwM4e6o+Z3DXDl8yfFMHIcR3zUkg==}
peerDependencies:
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-blockquote@2.11.7':
- resolution: {integrity: sha512-liD8kWowl3CcYCG9JQlVx1eSNc/aHlt6JpVsuWvzq6J8APWX693i3+zFqyK2eCDn0k+vW62muhSBe3u09hA3Zw==}
+ '@tiptap/extension-blockquote@2.26.3':
+ resolution: {integrity: sha512-brz8+wh03TuMevNUztTSC9BzZEsLCNakPJCCicD8FRpBJoLj4benT6T3GYVdMhkk4BmhpruSFZB0FPY+rxCVlA==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-bold@2.11.7':
- resolution: {integrity: sha512-VTR3JlldBixXbjpLTFme/Bxf1xeUgZZY3LTlt5JDlCW3CxO7k05CIa+kEZ8LXpog5annytZDUVtWqxrNjmsuHQ==}
+ '@tiptap/extension-bold@2.26.3':
+ resolution: {integrity: sha512-ssXKQxSwQ+Webv65emK/A1d13iTvnfbw8I2wlzuxsrMChyb4wH2HyqI5N4g0FpLqCpkXFumforoY+0XKktve+w==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-bubble-menu@2.24.0':
- resolution: {integrity: sha512-/YEayojvKC4571g/eQTkqJiXHlTpL3mRmg7E0ulnW8TuEVDbc+V64nit4xI4fgTUR5NppPEoSzVuy2XHORg6rg==}
+ '@tiptap/extension-bubble-menu@2.26.3':
+ resolution: {integrity: sha512-vliC5bv/md4qkguqqL8w7LW8jnXBD1FLdSMDavHRVwdRaRnEfLRAIY7Oxtc1Voy3+762tfn912TuwDlCOPsNSQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-bullet-list@2.11.7':
- resolution: {integrity: sha512-WbPogE2/Q3e3/QYgbT1Sj4KQUfGAJNc5pvb7GrUbvRQsAh7HhtuO8hqdDwH8dEdD/cNUehgt17TO7u8qV6qeBw==}
+ '@tiptap/extension-bullet-list@2.26.3':
+ resolution: {integrity: sha512-pfBMOup1JbXgf2aVTtG1A5t7qFZJrpD+wNPuypjF2YWmCl/pAlwbPFz9hNuWyZq14+QoQg5tML1/G1M7cgrrtw==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-character-count@2.11.7':
- resolution: {integrity: sha512-gcVbKou+uxzg8N0BBKceLwtpWvN8g2TIjTuCdyAcAPukX63DqVWOkofFHn1RqZbstJmtF4pTGZs9OH/GJrp27Q==}
+ '@tiptap/extension-character-count@2.26.3':
+ resolution: {integrity: sha512-H4SCHB68tRLEvgsdFhpdse4W3sbThw/KYDE3zv17xRvR4uP82zIYpXHCwpmHewCdI4oirWK+u50vK5UrIaPQHQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-code-block@2.11.7':
- resolution: {integrity: sha512-To/y/2H04VWqiANy53aXjV7S6fA86c2759RsH1hTIe57jA1KyE7I5tlAofljOLZK/covkGmPeBddSPHGJbz++Q==}
+ '@tiptap/extension-code-block@2.26.3':
+ resolution: {integrity: sha512-3DbzKRfMqw9EGS7mGkpyopbRWTO+qpV52Mby4Ll2+OfhvGnHzSN4Q7xOsp+VeZr14GMEmua5Oq2e/gRypqXatQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-code@2.11.7':
- resolution: {integrity: sha512-VpPO1Uy/eF4hYOpohS/yMOcE1C07xmMj0/D989D9aS1x95jWwUVrSkwC+PlWMUBx9PbY2NRsg1ZDwVvlNKZ6yQ==}
+ '@tiptap/extension-code@2.26.3':
+ resolution: {integrity: sha512-bAkUNzV+tA1J1RYbtbAGTFqkRw9+yRpAd+d3S9jy/dAD+uOe1ZD1EIngyEf2GTonnoy4bpDYtytbCjUt9PozoA==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-collaboration@2.24.0':
- resolution: {integrity: sha512-xR04clJcB7eQ/+07u3Nj2ys/YCKmjatpZtAArBT6WK5sRt+KIFndA8LelLsKP9gpiYUN/gudkqSO2oBnF8DSTg==}
+ '@tiptap/extension-collaboration@2.26.3':
+ resolution: {integrity: sha512-GunFZf851Z15odBBEY0IUhOmg81wyNfM0ld54+Yncqbl5wOfqxlYwCCpeCMdLMjZ/7ZnEMqZz6gcC1ZZk4P7lg==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
y-prosemirror: ^1.2.11
- '@tiptap/extension-color@2.11.7':
- resolution: {integrity: sha512-2CWb0Qnh8Crf9OwnnWB+M1QJtWrbn6IMSwuOzk+tSzdWSazjN8h6XAZVemr0qMdAA/SyUigzorStiPxN6o3/vQ==}
+ '@tiptap/extension-color@2.26.3':
+ resolution: {integrity: sha512-ijwfLpLWXDi797aKtQLPnMYrIQuC2g/Sqw+1k+tDNCfAgqK1LaALGiqf8j1vAcdE0tHdl37PIjud3Qv0hh6J5w==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-text-style': ^2.7.0
- '@tiptap/extension-details-content@2.23.0':
- resolution: {integrity: sha512-DZFbC1cjrAJ1d7uvySzs+ZgGXV81QYAt9ZXf/HYDoEaHrtUodkL2svglTPhAzMX2NXuQmwigVOr4SvD3eh/iHg==}
+ '@tiptap/extension-details-content@2.26.2':
+ resolution: {integrity: sha512-2Ia2KqwYucuv7dcTpA/PhytUuDhotzi8uZPXBHlGJLHVI9rAmJsSvID9cX/YWRTvCvAxyNqDp0sBH+Qx8QcloQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-text-style': ^2.7.0
- '@tiptap/extension-details-summary@2.23.0':
- resolution: {integrity: sha512-afZJloo3ABlVnnf/AOv2trVGu7btRADWEg7lkf6WKLyUmWQgpUmX4TUjG+RHFWxuUl8/Vsg7k4K5nHRV7nCb7g==}
+ '@tiptap/extension-details-summary@2.26.2':
+ resolution: {integrity: sha512-rbRq6f56HKvzIuSpPHt513Ubglq728pz8Jx7WBRVqjpYF5/sTpYu9hZpbrIfLfjb2UakXI/LVU8vS50VwTwCnw==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-text-style': ^2.7.0
- '@tiptap/extension-details@2.23.0':
- resolution: {integrity: sha512-DA3GThDPvmpMeaEaHF0GPe5MfYuogWuVkN2fXC+zPKL3rnSxY7dGz9fUvbMWOGZ3LtrxWKGo7Tvwxs2GJWNCbA==}
+ '@tiptap/extension-details@2.26.3':
+ resolution: {integrity: sha512-0ehFKYdPcwOPXzgguaKl2MekR1o+fUGE4V4lQon4k7JLcZusgZFPvop0vTG9uuphdeJdIXcl+kU3xaWzQjGjgQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-text-style': ^2.7.0
- '@tiptap/extension-document@2.11.7':
- resolution: {integrity: sha512-95ouJXPjdAm9+VBRgFo4lhDoMcHovyl/awORDI8gyEn0Rdglt+ZRZYoySFzbVzer9h0cre+QdIwr9AIzFFbfdA==}
+ '@tiptap/extension-document@2.26.3':
+ resolution: {integrity: sha512-gcJg4Otchilr4eSUwhPNwbhPUkEYvXhkUZ/1MAhVGD40Ovq2P8ZWkJipA3tKOCJinL5MJK59ccZBstnKSTw+JA==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-drag-handle-react@2.24.0':
- resolution: {integrity: sha512-VKf2xAHzCg0Ygh9MqpGXfdl+RlQIHXWP2YSuztYbkqrhtJaOcz7spDnn+G2utKfHg0cHKE+8jKrbiBEBEKybxA==}
+ '@tiptap/extension-drag-handle-react@2.26.3':
+ resolution: {integrity: sha512-DD5Hwc3rfXikp5jKawryKRKFT19KoGnQeKtdphtO0dGffE+j3vfCDzsQb+5FPCbWLlCJkYMcUCGwEFsPGdv4Gw==}
peerDependencies:
'@tiptap/extension-drag-handle': ^2.14.0
'@tiptap/pm': ^2.7.0
'@tiptap/react': ^2.7.0
- react: ^16.8 || ^17 || ^18 || ^19
- react-dom: ^16.8 || ^17 || ^18 || ^19
+ react: 19.0.0
+ react-dom: 19.0.0
- '@tiptap/extension-drag-handle@2.24.0':
- resolution: {integrity: sha512-z+/GnR3eSvqVyL47Tzyw3+12KvT+zzIuoyk/RIPoRvd9RmMu6GwR+BMiJraQb9SIVhpnJVlxzKZj6Qc/GjyK4g==}
+ '@tiptap/extension-drag-handle@2.26.3':
+ resolution: {integrity: sha512-PS/Wl8Dn/SPr0fvNQxOkLwm2a6/iRRc35HWa1zNi5xgFLixuhMb3+QtQpNgLleIHFCPnhq7WggB5DRULVprCiw==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-collaboration': ^2.7.0
@@ -5268,153 +4824,153 @@ packages:
'@tiptap/pm': ^2.7.0
y-prosemirror: ^1.2.5
- '@tiptap/extension-dropcursor@2.11.7':
- resolution: {integrity: sha512-63mL+nxQILizsr5NbmgDeOjFEWi34BLt7evwL6UUZEVM15K8V1G8pD9Y0kCXrZYpHWz0tqFRXdrhDz0Ppu8oVw==}
+ '@tiptap/extension-dropcursor@2.26.3':
+ resolution: {integrity: sha512-54rgDTmRStVmXZR7KdCvSOCAbumh5luXgticUkRM8OM8PBe1c0T9X8jfV7+XEFGugRVl8mtCZZpgUt5vhuxHog==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-floating-menu@2.24.0':
- resolution: {integrity: sha512-08T7cA6ILk9byvI0IMHv7MgINNx4fMUjn+1h4mX7k06rUR9P3nXEVQDQWcRZdqQ9orMdL44NtW8e+hGBZRHDQA==}
+ '@tiptap/extension-floating-menu@2.26.3':
+ resolution: {integrity: sha512-i2dsIMa0L6vjCPnTiXjPZXZqUu3sIIIAI+E1T4p0FsGYjjPTmN+AgkJqeO3bbe5XHmWcWKtgQevNCMF0kmU5rQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-gapcursor@2.11.7':
- resolution: {integrity: sha512-EceesmPG7FyjXZ8EgeJPUov9G1mAf2AwdypxBNH275g6xd5dmU/KvjoFZjmQ0X1ve7mS+wNupVlGxAEUYoveew==}
+ '@tiptap/extension-gapcursor@2.26.3':
+ resolution: {integrity: sha512-ZDNSkpz7ik2PJOjrys27rwko5Ufe6GtLjaAxjvkWmyzcgAOTadDeth9NaRdBVMDGgSLBKbXihYZZXLkiAP9RLA==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-hard-break@2.11.7':
- resolution: {integrity: sha512-zTkZSA6q+F5sLOdCkiC2+RqJQN0zdsJqvFIOVFL/IDVOnq6PZO5THzwRRLvOSnJJl3edRQCl/hUgS0L5sTInGQ==}
+ '@tiptap/extension-hard-break@2.26.3':
+ resolution: {integrity: sha512-KJWUi+2KOZejVRb2KI0NM3LgCpNimxcunbOCKsZKygV/UByzhUl7UaCAIa+ySMM+kbu/Ec3hkTzafGfaU9ZkLg==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-heading@2.11.7':
- resolution: {integrity: sha512-8kWh7y4Rd2fwxfWOhFFWncHdkDkMC1Z60yzIZWjIu72+6yQxvo8w3yeb7LI7jER4kffbMmadgcfhCHC/fkObBA==}
+ '@tiptap/extension-heading@2.26.3':
+ resolution: {integrity: sha512-bp7YildFOustuGJGl8TInG26h7xbcpBKskm49TjwyBjUqRHPGH4V11554afStAr+bsTlPN4TDXt7extvq3UYLA==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-highlight@2.11.7':
- resolution: {integrity: sha512-c/NH4kIpNOWCUQv8RkFNDyOcgt+2pYFpDf0QBJmzhAuv4BIeS2bDmDtuNS7VgoWRZH+xxCNXfvm2BG+kjtipEg==}
+ '@tiptap/extension-highlight@2.26.3':
+ resolution: {integrity: sha512-cW5V+9es7UPLUQgU4I9gqj9w4G4PgWwJMxB107ChCAsFEb2IvC2fDcwRCHY+xiLJGPq0xZag/kvtx0uZkovITw==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-history@2.11.7':
- resolution: {integrity: sha512-Cu5x3aS13I040QSRoLdd+w09G4OCVfU+azpUqxufZxeNs9BIJC+0jowPLeOxKDh6D5GGT2A8sQtxc6a/ssbs8g==}
+ '@tiptap/extension-history@2.26.3':
+ resolution: {integrity: sha512-Qg4+WWf/hDgiBspxLbrhrIFUy7lzi2eBKPSoF/haEYFw/t/FeN60NXYYYtpLimUNpUzyJSOSIwsngFcVJO5X+g==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-horizontal-rule@2.11.7':
- resolution: {integrity: sha512-uVmQwD2dzZ5xwmvUlciy0ItxOdOfQjH6VLmu80zyJf8Yu7mvwP8JyxoXUX0vd1xHpwAhgQ9/ozjIWYGIw79DPQ==}
+ '@tiptap/extension-horizontal-rule@2.26.3':
+ resolution: {integrity: sha512-NhlJEDj0b/P1Rj4UOMgt4CjS4IXEhXQFsdiXmsYZxchfr4J72HrsOfZs4vAqIQbkrLgUlYEr/DGMNWzME78FrA==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-italic@2.11.7':
- resolution: {integrity: sha512-r985bkQfG0HMpmCU0X0p/Xe7U1qgRm2mxvcp6iPCuts2FqxaCoyfNZ8YnMsgVK1mRhM7+CQ5SEg2NOmQNtHvPw==}
+ '@tiptap/extension-italic@2.26.3':
+ resolution: {integrity: sha512-DJX31JQsyerqoNM+hAtbjHoJ42W/EpnMMCtQr/gRS8ssEdrVtcDDhSO2tkaP6dNjhG8zH2hKYsXpLCCFdDgvwg==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-link@2.11.7':
- resolution: {integrity: sha512-qKIowE73aAUrnQCIifYP34xXOHOsZw46cT/LBDlb0T60knVfQoKVE4ku08fJzAV+s6zqgsaaZ4HVOXkQYLoW7g==}
+ '@tiptap/extension-link@2.26.3':
+ resolution: {integrity: sha512-cNYqAeiaG/65ctVEUOHt1MQnTF1JcdZqBkN9pLf3grzcmkmdr3w1/JbKOphZc84vOB2rxuhGZx9NFV2lrC5Qwg==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-list-item@2.11.7':
- resolution: {integrity: sha512-6ikh7Y+qAbkSuIHXPIINqfzmWs5uIGrylihdZ9adaIyvrN1KSnWIqrZIk/NcZTg5YFIJlXrnGSRSjb/QM3WUhw==}
+ '@tiptap/extension-list-item@2.26.3':
+ resolution: {integrity: sha512-9qU0SoC+tDSKYhfdWFS3dkioEk3ml1ycBeRmOxh7h+w0ezmTomiT5yvc9t3KM30ps8n1p78sIPo19GF65u1dFQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-mention@2.11.7':
- resolution: {integrity: sha512-Q/fkceDOug4VjiqrCRLzBnOL9Oj+XugWwDgwfucJJMBOJxZ3++3eZGZ54dri/xK39A4ZD+xuMBF7PrJIy+Z5dw==}
+ '@tiptap/extension-mention@2.26.3':
+ resolution: {integrity: sha512-VZi4Qrg8Q8Lg2v/YfuYuTjmyEtpO3cuy2racIIyXw11LhQSQ5rflHK+0mWKo00bhx2mPxxod4DYIR31DqSfvPA==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
'@tiptap/suggestion': ^2.7.0
- '@tiptap/extension-node-range@2.24.0':
- resolution: {integrity: sha512-/vuvpiHOyZWGksyYw9AKBNiJcM4EORPM3LYw99+ZPCLKTOMR5VIPS623unuCxM8fjx3AP9tVNqZrNGLJlyIRBA==}
+ '@tiptap/extension-node-range@2.26.3':
+ resolution: {integrity: sha512-PWk7ToTVqQlm8FX785VtTn2s8W/CagNDJlg2Bn/KMCOM14TF+uaJUQxh7lJMCR5lKeo5w/j+51Zs6H288KLNFg==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-ordered-list@2.11.7':
- resolution: {integrity: sha512-bLGCHDMB0vbJk7uu8bRg8vES3GsvxkX7Cgjgm/6xysHFbK98y0asDtNxkW1VvuRreNGz4tyB6vkcVCfrxl4jKw==}
+ '@tiptap/extension-ordered-list@2.26.3':
+ resolution: {integrity: sha512-x6G0qA7dAvSq+kphA7P64m+ScoVEAW8s9pl7o3jIJzcIW/LrbL1xkyOjbgCvGEvwyQVsgyqtLQDQ2oeloosDBw==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-paragraph@2.11.7':
- resolution: {integrity: sha512-Pl3B4q6DJqTvvAdraqZaNP9Hh0UWEHL5nNdxhaRNuhKaUo7lq8wbDSIxIW3lvV0lyCs0NfyunkUvSm1CXb6d4Q==}
+ '@tiptap/extension-paragraph@2.26.3':
+ resolution: {integrity: sha512-eBC5UsaTJRUMhePtK1dcCAfes0CpqqFiewpIM0lWk4XMtpG2aoczVVVkImybbFKfqsvEEo3vgHJ2YiE5YZFCSg==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-placeholder@2.11.7':
- resolution: {integrity: sha512-/06zXV4HIjYoiaUq1fVJo/RcU8pHbzx21evOpeG/foCfNpMI4xLU/vnxdUi6/SQqpZMY0eFutDqod1InkSOqsg==}
+ '@tiptap/extension-placeholder@2.26.3':
+ resolution: {integrity: sha512-HDF4FZj8CmQQvbSyXb/G+Ujqoue7TMQPMAe1h1OMJAXq856Y0AsVLXYKiBojUTfI11I7zVwYe08D8atIXHLZZw==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-strike@2.11.7':
- resolution: {integrity: sha512-D6GYiW9F24bvAY7XMOARNZbC8YGPzdzWdXd8VOOJABhf4ynMi/oW4NNiko+kZ67jn3EGaKoz32VMJzNQgYi1HA==}
+ '@tiptap/extension-strike@2.26.3':
+ resolution: {integrity: sha512-Po3al5hP0IwvHHIHYy3DbUvCD/kbYTsi3sWTjPAB9QgqaoJGl+jyhIyha8FsR+U3MCIIJIekMktI5o1+ySMGpg==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-task-item@2.11.7':
- resolution: {integrity: sha512-m+UyE85nnqhQ4epLMYqdwaQj6DoqGGUNE0gyJOtJB1qhBi7GM7yPEDoiX82ByaQetWjoZIduRuQSRfgkD0MEeA==}
+ '@tiptap/extension-task-item@2.26.3':
+ resolution: {integrity: sha512-Pe2B/57qNPW1XlH44qdwYeKyBGYKw6TiPXg1pvdhu9zyUglu4J4gbvvn224Z5D9IHlSbPSxr4ss6DNm5S64I/w==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-task-list@2.11.7':
- resolution: {integrity: sha512-rgpkLvKxeSWibMpZazR5PkISSwz90Wnpe/KqIWLu/s3UuRE0Sc5kA8ZOva4ZAvcpSWEJ1cNn1OqllwHsj0NxwQ==}
+ '@tiptap/extension-task-list@2.26.3':
+ resolution: {integrity: sha512-VSQlU9m3uQ9ReJ4CYM6+IOepLdvNHBA6P/ti/bArb0vUseDfkx0KsQINTmxnXLPF+NLQnk1uXVk5/TJg1+OdMg==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-text-align@2.11.7':
- resolution: {integrity: sha512-3M8zd9ROADXazVNpgR6Ejs1evSvBveN36qN4GgV71GqrNlTcjqYgQcXFLQrsd2hnE+aXir8/8bLJ+aaJXDninA==}
+ '@tiptap/extension-text-align@2.26.3':
+ resolution: {integrity: sha512-5PU2vMUKt53EVdxFqiuPockKKGeZxipwEq6fT5OZeqz3TUWiF61bO/xkwlXzfWSNm1ZkEmrkebtaeKrH4Wu22g==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-text-style@2.11.7':
- resolution: {integrity: sha512-LHO6DBg/9SkCQFdWlVfw9nolUmw+Cid94WkTY+7IwrpyG2+ZGQxnKpCJCKyeaFNbDoYAtvu0vuTsSXeCkgShcA==}
+ '@tiptap/extension-text-style@2.26.3':
+ resolution: {integrity: sha512-B+t6k41xtmlIxyi0r+g8MAShGMCK6kmz8EdxoLAUVrlCxYWVk6qvzoojZbjQKlb2sE+idIo4X5yCcKpdkxFe0w==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-text@2.11.7':
- resolution: {integrity: sha512-wObCn8qZkIFnXTLvBP+X8KgaEvTap/FJ/i4hBMfHBCKPGDx99KiJU6VIbDXG8d5ZcFZE0tOetK1pP5oI7qgMlQ==}
+ '@tiptap/extension-text@2.26.3':
+ resolution: {integrity: sha512-sGRbX96ss4jQeKw9d0iphuAWja8Dv4w4ryTDKfxD7Lizx3UaIxQB/y+Wna89tM3kfbi/qJcrD3AF7NJgfc/tEA==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-typography@2.11.7':
- resolution: {integrity: sha512-qyYROxuXuMAMw30RXFYjr9mfZv+7avD3BW+fVEIa3lwnUMFNExHj6j2HMgYvrPVByGXlQU/4uHWcB0uiG0Bf1w==}
+ '@tiptap/extension-typography@2.26.3':
+ resolution: {integrity: sha512-GgWICb2FFCFzd2JJ+ECrFubcEwEtTsFcKR71jvnvVw22pgKHIp0C7PTmpzJTBVynoha+MgIweWMzC2ZtvUNNqQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-underline@2.11.7':
- resolution: {integrity: sha512-NtoQw6PGijOAtXC6G+0Aq0/Z5wwEjPhNHs8nsjXogfWIgaj/aI4/zfBnA06eI3WT+emMYQTl0fTc4CUPnLVU8g==}
+ '@tiptap/extension-underline@2.26.3':
+ resolution: {integrity: sha512-FXQUiHjvKDIpU9Bg+fV7UqQnEjhGvVQUnrf9VOI1/9hm+GWWxAfV2asRiZgV6jeBvNJWYzUGzvQUN6vFzmVbdw==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/pm@2.24.0':
- resolution: {integrity: sha512-rjvy3LmNweyDU/ttqQd+fi4A29KbcqNiQ/oWvzv7JNPS9bh4WmuSeWvlNfivo39hHXe46OQhzRVJrSAvyKp+wQ==}
+ '@tiptap/pm@2.26.3':
+ resolution: {integrity: sha512-8gUmdxWlUevmgq2mNvGxvf2CpDW097tVKECMWKEn8sf846kXv3CoqaGRhI3db4kfR+09uWZeRM7rtrjRBmUThg==}
- '@tiptap/react@2.24.0':
- resolution: {integrity: sha512-SHSfVPF3GvquImHNJGRk2bUppxAe8jSd1cUmUdc3s6eGGtU7hy4YjwF/aD6azGDT00K7bP/6/hbaMVe9fp5btg==}
+ '@tiptap/react@2.26.3':
+ resolution: {integrity: sha512-4g7pbdyawIO5YZXJQMwNv0dptblV4QUa7T/BYHe+PjAm4H+OeQbo7UmbxU427u8hPt1PhXZjbvT7D5i3r/MXCw==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- react: ^17.0.0 || ^18.0.0 || ^19.0.0
- react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: 19.0.0
+ react-dom: 19.0.0
- '@tiptap/starter-kit@2.11.7':
- resolution: {integrity: sha512-K+q51KwNU/l0kqRuV5e1824yOLVftj6kGplGQLvJG56P7Rb2dPbM/JeaDbxQhnHT/KDGamG0s0Po0M3pPY163A==}
+ '@tiptap/starter-kit@2.26.3':
+ resolution: {integrity: sha512-hznj/j+mFIuKfNB0ToaZVcVjdtpSOHoBoX3ocSz9BaYCtK+nX1c0gTlfbJ1BcpYUZNtqG+tpUeIfvXifRkq/OQ==}
- '@tiptap/suggestion@2.12.0':
- resolution: {integrity: sha512-bsXLoZbjUo1oOF1Z+XSfoGzbcnrTcYtJdfylM/FerMLU9T12dhsM/Ri2SKLX4IR5D0HJ07FcsEHCrGEy8Y5y0A==}
+ '@tiptap/suggestion@2.26.3':
+ resolution: {integrity: sha512-kcyiyKEEDnqFImGQQEEuRa6N/N+/vU/OrI99wRfJnDnN8c3dP6UHJ4wr2qX6bUpx3Z0QTu6GGCpMpaqwtHTtJg==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
@@ -5438,14 +4994,14 @@ packages:
'@types/babel__core@7.20.5':
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
- '@types/babel__generator@7.6.8':
- resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
+ '@types/babel__generator@7.27.0':
+ resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
'@types/babel__template@7.4.4':
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
- '@types/babel__traverse@7.20.7':
- resolution: {integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==}
+ '@types/babel__traverse@7.28.0':
+ resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
'@types/canvas-confetti@1.9.0':
resolution: {integrity: sha512-aBGj/dULrimR1XDZLtG9JwxX1b4HPRF6CX9Yfwh3NvstZEm1ZL7RBnel4keCPSqs1ANRu1u2Aoz9R+VmtjYuTg==}
@@ -5456,11 +5012,8 @@ packages:
'@types/conventional-commits-parser@5.0.1':
resolution: {integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==}
- '@types/cookie@0.6.0':
- resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
-
- '@types/d3-array@3.2.1':
- resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==}
+ '@types/d3-array@3.2.2':
+ resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==}
'@types/d3-color@3.1.3':
resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
@@ -5471,11 +5024,11 @@ packages:
'@types/d3-interpolate@3.0.4':
resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
- '@types/d3-path@3.1.0':
- resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==}
+ '@types/d3-path@3.1.1':
+ resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==}
- '@types/d3-scale@4.0.8':
- resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==}
+ '@types/d3-scale@4.0.9':
+ resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==}
'@types/d3-shape@3.1.7':
resolution: {integrity: sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==}
@@ -5495,18 +5048,9 @@ packages:
'@types/doctrine@0.0.9':
resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
- '@types/eslint-scope@3.7.7':
- resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
-
- '@types/eslint@9.6.1':
- resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
-
'@types/estree-jsx@1.0.5':
resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
- '@types/estree@1.0.7':
- resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
-
'@types/estree@1.0.8':
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
@@ -5546,8 +5090,8 @@ packages:
'@types/linkify-it@5.0.0':
resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==}
- '@types/lodash@4.17.16':
- resolution: {integrity: sha512-HX7Em5NYQAXKW+1T+FiuG27NGwzJfCX3s1GjOa7ujxZa52kjJLOr4FUxT+giF6Tgxv1e+/czV/iTtBw27WTU9g==}
+ '@types/lodash@4.17.20':
+ resolution: {integrity: sha512-H3MHACvFUEiujabxhaI/ImO6gUrd8oOurg7LQtS7mbwIXA/cUqWrvBsaeJ23aZEPk1TAYkurjfMbSELfoCXlGA==}
'@types/markdown-it@14.1.2':
resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==}
@@ -5567,32 +5111,29 @@ packages:
'@types/ms@2.1.0':
resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
- '@types/node-fetch@2.6.12':
- resolution: {integrity: sha512-8nneRWKCg3rMtF69nLQJnOYUcbafYeFSjqkw3jCRLsqkWFlHaoQrr5mXmofFGOx3DKn7UfmBMyov8ySvLRVldA==}
-
- '@types/node-forge@1.3.11':
- resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
+ '@types/node-fetch@2.6.13':
+ resolution: {integrity: sha512-QGpRVpzSaUs30JBSGPjOg4Uveu384erbHBoT1zeONvyCfwQxIkUshLAOqN/k9EjGviPRmWTTe6aH2qySWKTVSw==}
- '@types/node@18.19.118':
- resolution: {integrity: sha512-hIPK0hSrrcaoAu/gJMzN3QClXE4QdCdFvaenJ0JsjIbExP1JFFVH+RHcBt25c9n8bx5dkIfqKE+uw6BmBns7ug==}
+ '@types/node@18.19.130':
+ resolution: {integrity: sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg==}
- '@types/node@22.15.21':
- resolution: {integrity: sha512-EV/37Td6c+MgKAbkcLG6vqZ2zEYHD7bvSrzqqs2RIhbA6w3x+Dqz8MZM3sP6kGTeLrdoOgKZe+Xja7tUB2DNkQ==}
+ '@types/node@22.18.9':
+ resolution: {integrity: sha512-5yBtK0k/q8PjkMXbTfeIEP/XVYnz1R9qZJ3yUicdEW7ppdDJfe+MqXEhpqDL3mtn4Wvs1u0KLEG0RXzCgNpsSg==}
- '@types/prop-types@15.7.14':
- resolution: {integrity: sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==}
+ '@types/prop-types@15.7.15':
+ resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==}
- '@types/react-dom@18.3.5':
- resolution: {integrity: sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==}
+ '@types/react-dom@18.3.7':
+ resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==}
peerDependencies:
- '@types/react': ^18.0.0
+ '@types/react': 19.0.14
'@types/react-native@0.73.0':
resolution: {integrity: sha512-6ZRPQrYM72qYKGWidEttRe6M5DZBEV5F+MHMHqd4TTYx0tfkcdrUFGdef6CCxY0jXU7wldvd/zA/b0A/kTeJmA==}
deprecated: This is a stub types definition. react-native provides its own type definitions, so you do not need this installed.
- '@types/react@18.3.18':
- resolution: {integrity: sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==}
+ '@types/react@19.0.14':
+ resolution: {integrity: sha512-ixLZ7zG7j1fM0DijL9hDArwhwcCb4vqmePgwtV0GfnkHRSCUEv4LvzarcTdhoqgyMznUx/EhoTUv31CKZzkQlw==}
'@types/resolve@1.20.6':
resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==}
@@ -5600,15 +5141,12 @@ packages:
'@types/retry@0.12.0':
resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
- '@types/semver@7.7.0':
- resolution: {integrity: sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==}
+ '@types/semver@7.7.1':
+ resolution: {integrity: sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==}
'@types/stack-utils@2.0.3':
resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
- '@types/statuses@2.0.6':
- resolution: {integrity: sha512-xMAgYwceFhRA2zY+XbEA7mxYbA093wdiW8Vu6gZPGWy9cmOyU9XesH1tNcEWsKFd5Vzrqx5T3D38PWx1FIIXkA==}
-
'@types/tough-cookie@4.0.5':
resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
@@ -5633,8 +5171,8 @@ packages:
'@types/uuid@9.0.8':
resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
- '@types/validator@13.15.2':
- resolution: {integrity: sha512-y7pa/oEJJ4iGYBxOpfAKn5b9+xuihvzDVnC/OSvlVnGxVg0pOqmjiMafiJ1KVNQEaPZf9HsEp5icEwGg8uIe5Q==}
+ '@types/validator@13.15.3':
+ resolution: {integrity: sha512-7bcUmDyS6PN3EuD9SlGGOxM77F8WLVsrwkxyWxKnxzmXoequ6c7741QBrANq6htVRGOITJ7z72mTP6Z4XyuG+Q==}
'@types/wait-on@5.3.4':
resolution: {integrity: sha512-EBsPjFMrFlMbbUFf9D1Fp+PAB2TwmUn7a3YtHyD9RLuTIk1jDd8SxXVAoez2Ciy+8Jsceo2MYEYZzJ/DvorOKw==}
@@ -5651,69 +5189,81 @@ packages:
'@types/zen-observable@0.8.3':
resolution: {integrity: sha512-fbF6oTd4sGGy0xjHPKAt+eS2CrxJ3+6gQ3FGcBoIJR2TLAyCkCyI8JqZNy+FeON0AhVgNJoUumVoZQjBFUqHkw==}
- '@typescript-eslint/eslint-plugin@8.32.1':
- resolution: {integrity: sha512-6u6Plg9nP/J1GRpe/vcjjabo6Uc5YQPAMxsgQyGC/I0RuukiG1wIe3+Vtg3IrSCVJDmqK3j8adrtzXSENRtFgg==}
+ '@typescript-eslint/eslint-plugin@8.46.0':
+ resolution: {integrity: sha512-hA8gxBq4ukonVXPy0OKhiaUh/68D0E88GSmtC1iAEnGaieuDi38LhS7jdCHRLi6ErJBNDGCzvh5EnzdPwUc0DA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
+ '@typescript-eslint/parser': ^8.46.0
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/parser@8.32.1':
- resolution: {integrity: sha512-LKMrmwCPoLhM45Z00O1ulb6jwyVr2kr3XJp+G+tSEZcbauNnScewcQwtJqXDhXeYPDEjZ8C1SjXm015CirEmGg==}
+ '@typescript-eslint/parser@8.46.0':
+ resolution: {integrity: sha512-n1H6IcDhmmUEG7TNVSspGmiHHutt7iVKtZwRppD7e04wha5MrkV1h3pti9xQLcCMt6YWsncpoT0HMjkH1FNwWQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/project-service@8.46.0':
+ resolution: {integrity: sha512-OEhec0mH+U5Je2NZOeK1AbVCdm0ChyapAyTeXVIYTPXDJ3F07+cu87PPXcGoYqZ7M9YJVvFnfpGg1UmCIqM+QQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/scope-manager@8.46.0':
+ resolution: {integrity: sha512-lWETPa9XGcBes4jqAMYD9fW0j4n6hrPtTJwWDmtqgFO/4HF4jmdH/Q6wggTw5qIT5TXjKzbt7GsZUBnWoO3dqw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/scope-manager@8.32.1':
- resolution: {integrity: sha512-7IsIaIDeZn7kffk7qXC3o6Z4UblZJKV3UBpkvRNpr5NSyLji7tvTcvmnMNYuYLyh26mN8W723xpo3i4MlD33vA==}
+ '@typescript-eslint/tsconfig-utils@8.46.0':
+ resolution: {integrity: sha512-WrYXKGAHY836/N7zoK/kzi6p8tXFhasHh8ocFL9VZSAkvH956gfeRfcnhs3xzRy8qQ/dq3q44v1jvQieMFg2cw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/type-utils@8.32.1':
- resolution: {integrity: sha512-mv9YpQGA8iIsl5KyUPi+FGLm7+bA4fgXaeRcFKRDRwDMu4iwrSHeDPipwueNXhdIIZltwCJv+NkxftECbIZWfA==}
+ '@typescript-eslint/type-utils@8.46.0':
+ resolution: {integrity: sha512-hy+lvYV1lZpVs2jRaEYvgCblZxUoJiPyCemwbQZ+NGulWkQRy0HRPYAoef/CNSzaLt+MLvMptZsHXHlkEilaeg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/types@8.32.1':
- resolution: {integrity: sha512-YmybwXUJcgGqgAp6bEsgpPXEg6dcCyPyCSr0CAAueacR/CCBi25G3V8gGQ2kRzQRBNol7VQknxMs9HvVa9Rvfg==}
+ '@typescript-eslint/types@8.46.0':
+ resolution: {integrity: sha512-bHGGJyVjSE4dJJIO5yyEWt/cHyNwga/zXGJbJJ8TiO01aVREK6gCTu3L+5wrkb1FbDkQ+TKjMNe9R/QQQP9+rA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.32.1':
- resolution: {integrity: sha512-Y3AP9EIfYwBb4kWGb+simvPaqQoT5oJuzzj9m0i6FCY6SPvlomY2Ei4UEMm7+FXtlNJbor80ximyslzaQF6xhg==}
+ '@typescript-eslint/typescript-estree@8.46.0':
+ resolution: {integrity: sha512-ekDCUfVpAKWJbRfm8T1YRrCot1KFxZn21oV76v5Fj4tr7ELyk84OS+ouvYdcDAwZL89WpEkEj2DKQ+qg//+ucg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/utils@8.32.1':
- resolution: {integrity: sha512-DsSFNIgLSrc89gpq1LJB7Hm1YpuhK086DRDJSNrewcGvYloWW1vZLHBTIvarKZDcAORIy/uWNx8Gad+4oMpkSA==}
+ '@typescript-eslint/utils@8.46.0':
+ resolution: {integrity: sha512-nD6yGWPj1xiOm4Gk0k6hLSZz2XkNXhuYmyIrOWcHoPuAhjT9i5bAG+xbWPgFeNR8HPHHtpNKdYUXJl/D3x7f5g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/visitor-keys@8.32.1':
- resolution: {integrity: sha512-ar0tjQfObzhSaW3C3QNmTc5ofj0hDoNQ5XWrCy6zDyabdr0TWhCkClp+rywGNj/odAFBVzzJrK4tEq5M4Hmu4w==}
+ '@typescript-eslint/visitor-keys@8.46.0':
+ resolution: {integrity: sha512-FrvMpAK+hTbFy7vH5j1+tMYHMSKLE6RzluFJlkFNKD0p9YsUT75JlBSmr5so3QRzvMwU5/bIEdeNrxm8du8l3Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.3.0':
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
- '@urql/core@5.1.1':
- resolution: {integrity: sha512-aGh024z5v2oINGD/In6rAtVKTm4VmQ2TxKQBAtk2ZSME5dunZFcjltw4p5ENQg+5CBhZ3FHMzl0Oa+rwqiWqlg==}
+ '@urql/core@5.2.0':
+ resolution: {integrity: sha512-/n0ieD0mvvDnVAXEQgX/7qJiVcvYvNkOHeBvkwtylfjydar123caCXcl58PXFY11oU1oquJocVXHxLAbtv4x1A==}
- '@urql/exchange-retry@1.3.1':
- resolution: {integrity: sha512-EEmtFu8JTuwsInqMakhLq+U3qN8ZMd5V3pX44q0EqD2imqTDsa8ikZqJ1schVrN8HljOdN+C08cwZ1/r5uIgLw==}
+ '@urql/exchange-retry@1.3.2':
+ resolution: {integrity: sha512-TQMCz2pFJMfpNxmSfX1VSfTjwUIFx/mL+p1bnfM1xjjdla7Z+KnGMW/EhFbpckp3LyWAH4PgOsMwOMnIN+MBFg==}
peerDependencies:
'@urql/core': ^5.0.0
- '@vitejs/plugin-react@4.3.4':
- resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==}
+ '@vitejs/plugin-react@4.7.0':
+ resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
- vite: ^4.2.0 || ^5.0.0 || ^6.0.0
+ vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
'@vitest/coverage-v8@3.2.4':
resolution: {integrity: sha512-EyF9SXU6kS5Ku/U82E259WSnvg6c8KTjppUncuNdm5QHpe17mwREHnjDzozC8x9MZ0xfBUFSaLkRv4TMA75ALQ==}
@@ -5724,26 +5274,9 @@ packages:
'@vitest/browser':
optional: true
- '@vitest/expect@2.0.5':
- resolution: {integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==}
-
- '@vitest/expect@3.0.7':
- resolution: {integrity: sha512-QP25f+YJhzPfHrHfYHtvRn+uvkCFCqFtW9CktfBxmB+25QqWsx7VB2As6f4GmwllHLDhXNHvqedwhvMmSnNmjw==}
-
'@vitest/expect@3.2.4':
resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==}
- '@vitest/mocker@3.0.7':
- resolution: {integrity: sha512-qui+3BLz9Eonx4EAuR/i+QlCX6AUZ35taDQgwGkK/Tw6/WgwodSrjN1X2xf69IA/643ZX5zNKIn2svvtZDrs4w==}
- peerDependencies:
- msw: ^2.4.9
- vite: ^5.0.0 || ^6.0.0
- peerDependenciesMeta:
- msw:
- optional: true
- vite:
- optional: true
-
'@vitest/mocker@3.2.4':
resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==}
peerDependencies:
@@ -5755,29 +5288,17 @@ packages:
vite:
optional: true
- '@vitest/pretty-format@2.0.5':
- resolution: {integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==}
-
- '@vitest/pretty-format@2.1.9':
- resolution: {integrity: sha512-KhRIdGV2U9HOUzxfiHmY8IFHTdqtOhIzCpd8WRdJiE7D/HUcZVD0EgQCVjm+Q9gkUXWgBvMmTtZgIG48wq7sOQ==}
-
'@vitest/pretty-format@3.0.7':
resolution: {integrity: sha512-CiRY0BViD/V8uwuEzz9Yapyao+M9M008/9oMOSQydwbwb+CMokEq3XVaF3XK/VWaOK0Jm9z7ENhybg70Gtxsmg==}
'@vitest/pretty-format@3.2.4':
resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==}
- '@vitest/runner@3.0.7':
- resolution: {integrity: sha512-WeEl38Z0S2ZcuRTeyYqaZtm4e26tq6ZFqh5y8YD9YxfWuu0OFiGFUbnxNynwLjNRHPsXyee2M9tV7YxOTPZl2g==}
-
- '@vitest/snapshot@3.0.7':
- resolution: {integrity: sha512-eqTUryJWQN0Rtf5yqCGTQWsCFOQe4eNz5Twsu21xYEcnFJtMU5XvmG0vgebhdLlrHQTSq5p8vWHJIeJQV8ovsA==}
+ '@vitest/runner@3.2.4':
+ resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==}
- '@vitest/spy@2.0.5':
- resolution: {integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==}
-
- '@vitest/spy@3.0.7':
- resolution: {integrity: sha512-4T4WcsibB0B6hrKdAZTM37ekuyFZt2cGbEGd2+L0P8ov15J1/HUsUaqkXEQPNAWr4BtPPe1gI+FYfMHhEKfR8w==}
+ '@vitest/snapshot@3.2.4':
+ resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==}
'@vitest/spy@3.2.4':
resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==}
@@ -5787,32 +5308,26 @@ packages:
peerDependencies:
vitest: 3.0.7
- '@vitest/utils@2.0.5':
- resolution: {integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==}
-
- '@vitest/utils@2.1.9':
- resolution: {integrity: sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ==}
-
'@vitest/utils@3.0.7':
resolution: {integrity: sha512-xePVpCRfooFX3rANQjwoditoXgWb1MaFbzmGuPP59MK6i13mrnDw/yEIyJudLeW6/38mCNcwCiJIGmpDPibAIg==}
'@vitest/utils@3.2.4':
resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==}
- '@volar/language-core@2.4.11':
- resolution: {integrity: sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==}
+ '@volar/language-core@2.4.23':
+ resolution: {integrity: sha512-hEEd5ET/oSmBC6pi1j6NaNYRWoAiDhINbT8rmwtINugR39loROSlufGdYMF9TaKGfz+ViGs1Idi3mAhnuPcoGQ==}
- '@volar/source-map@2.4.11':
- resolution: {integrity: sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==}
+ '@volar/source-map@2.4.23':
+ resolution: {integrity: sha512-Z1Uc8IB57Lm6k7q6KIDu/p+JWtf3xsXJqAX/5r18hYOTpJyBn0KXUR8oTJ4WFYOcDzWC9n3IflGgHowx6U6z9Q==}
- '@volar/typescript@2.4.11':
- resolution: {integrity: sha512-2DT+Tdh88Spp5PyPbqhyoYavYCPDsqbHLFwcUI9K1NlY1YgUJvujGdrqUp0zWxnW7KWNTr3xSpMuv2WnaTKDAw==}
+ '@volar/typescript@2.4.23':
+ resolution: {integrity: sha512-lAB5zJghWxVPqfcStmAP1ZqQacMpe90UrP5RJ3arDyrhy4aCUQqmxPPLB2PWDKugvylmO41ljK7vZ+t6INMTag==}
- '@vue/compiler-core@3.5.13':
- resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
+ '@vue/compiler-core@3.5.22':
+ resolution: {integrity: sha512-jQ0pFPmZwTEiRNSb+i9Ow/I/cHv2tXYqsnHKKyCQ08irI2kdF5qmYedmF8si8mA7zepUFmJ2hqzS8CQmNOWOkQ==}
- '@vue/compiler-dom@3.5.13':
- resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
+ '@vue/compiler-dom@3.5.22':
+ resolution: {integrity: sha512-W8RknzUM1BLkypvdz10OVsGxnMAuSIZs9Wdx1vzA3mL5fNMN15rhrSCLiTm6blWeACwUwizzPVqGJgOGBEN/hA==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
@@ -5825,58 +5340,13 @@ packages:
typescript:
optional: true
- '@vue/shared@3.5.13':
- resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
+ '@vue/shared@3.5.22':
+ resolution: {integrity: sha512-F4yc6palwq3TT0u+FYf0Ns4Tfl9GRFURDN2gWG7L1ecIaS/4fCIuFOjMTnCyjsu/OK6vaDKLCrGAa+KvvH+h4w==}
- '@vueless/storybook-dark-mode@9.0.7':
- resolution: {integrity: sha512-GwCSHCeFoOX+XVH7oQ+GLzUDp5gAvF6DSziSN9rUqVPUmBFZoE121uFwkn3CB/Pj7PU/Gz7zpxPqjxE5E5Y8Ew==}
+ '@vueless/storybook-dark-mode@9.0.9':
+ resolution: {integrity: sha512-wXy4O/qgqxiPywKgyXDxYgIyP5r0lBRes+uJCCcEtcpNVISzUFieNEojFGz32oSOLLTk6EGGgYiwwy82OH4ylg==}
engines: {node: '>=20'}
- '@webassemblyjs/ast@1.14.1':
- resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
-
- '@webassemblyjs/floating-point-hex-parser@1.13.2':
- resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==}
-
- '@webassemblyjs/helper-api-error@1.13.2':
- resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==}
-
- '@webassemblyjs/helper-buffer@1.14.1':
- resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==}
-
- '@webassemblyjs/helper-numbers@1.13.2':
- resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==}
-
- '@webassemblyjs/helper-wasm-bytecode@1.13.2':
- resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==}
-
- '@webassemblyjs/helper-wasm-section@1.14.1':
- resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==}
-
- '@webassemblyjs/ieee754@1.13.2':
- resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==}
-
- '@webassemblyjs/leb128@1.13.2':
- resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==}
-
- '@webassemblyjs/utf8@1.13.2':
- resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==}
-
- '@webassemblyjs/wasm-edit@1.14.1':
- resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==}
-
- '@webassemblyjs/wasm-gen@1.14.1':
- resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==}
-
- '@webassemblyjs/wasm-opt@1.14.1':
- resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==}
-
- '@webassemblyjs/wasm-parser@1.14.1':
- resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==}
-
- '@webassemblyjs/wast-printer@1.14.1':
- resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
-
'@whatwg-node/disposablestack@0.0.6':
resolution: {integrity: sha512-LOtTn+JgJvX8WfBVJtF08TGrdjuFzGJc4mkP8EdDI8ADbvO7kiexYep1o8dwnt0okb0jYclCDXF13xU7Ge4zSw==}
engines: {node: '>=18.0.0'}
@@ -5885,36 +5355,25 @@ packages:
resolution: {integrity: sha512-ApcWxkrs1WmEMS2CaLLFUEem/49erT3sxIVjpzU5f6zmVcnijtDSrhoK2zVobOIikZJdH63jdAXOrvjf6eOUNQ==}
engines: {node: '>=18.0.0'}
- '@whatwg-node/fetch@0.10.8':
- resolution: {integrity: sha512-Rw9z3ctmeEj8QIB9MavkNJqekiu9usBCSMZa+uuAvM0lF3v70oQVCXNppMIqaV6OTZbdaHF1M2HLow58DEw+wg==}
+ '@whatwg-node/fetch@0.10.11':
+ resolution: {integrity: sha512-eR8SYtf9Nem1Tnl0IWrY33qJ5wCtIWlt3Fs3c6V4aAaTFLtkEQErXu3SSZg/XCHrj9hXSJ8/8t+CdMk5Qec/ZA==}
engines: {node: '>=18.0.0'}
- '@whatwg-node/node-fetch@0.7.21':
- resolution: {integrity: sha512-QC16IdsEyIW7kZd77aodrMO7zAoDyyqRCTLg+qG4wqtP4JV9AA+p7/lgqMdD29XyiYdVvIdFrfI9yh7B1QvRvw==}
+ '@whatwg-node/node-fetch@0.8.1':
+ resolution: {integrity: sha512-cQmQEo7IsI0EPX9VrwygXVzrVlX43Jb7/DBZSmpnC7xH4xkyOnn/HykHpTaQk7TUs7zh59A5uTGqx3p2Ouzffw==}
engines: {node: '>=18.0.0'}
'@whatwg-node/promise-helpers@1.3.2':
resolution: {integrity: sha512-Nst5JdK47VIl9UcGwtv2Rcgyn5lWtZ0/mhRQ4G8NN2isxpq2TO30iqHzmwoJycjWuyUfg3GFXqP/gFHXeV57IA==}
engines: {node: '>=16.0.0'}
- '@whatwg-node/server@0.10.10':
- resolution: {integrity: sha512-GwpdMgUmwIp0jGjP535YtViP/nnmETAyHpGPWPZKdX++Qht/tSLbGXgFUMSsQvEACmZAR1lAPNu2CnYL1HpBgg==}
+ '@whatwg-node/server@0.10.13':
+ resolution: {integrity: sha512-Otmxo+0mp8az3B48pLI1I4msNOXPIoP7TLm6h5wOEQmynqHt8oP9nR6NJUeJk6iI5OtFpQtkbJFwfGkmplvc3Q==}
engines: {node: '>=18.0.0'}
- '@xmldom/xmldom@0.7.13':
- resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==}
+ '@xmldom/xmldom@0.8.11':
+ resolution: {integrity: sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw==}
engines: {node: '>=10.0.0'}
- deprecated: this version is no longer supported, please update to at least 0.8.*
-
- '@xmldom/xmldom@0.8.10':
- resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==}
- engines: {node: '>=10.0.0'}
-
- '@xtuc/ieee754@1.2.0':
- resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
-
- '@xtuc/long@4.2.2':
- resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
JSONStream@1.3.5:
resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==}
@@ -5945,8 +5404,8 @@ packages:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
- agent-base@7.1.3:
- resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==}
+ agent-base@7.1.4:
+ resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
engines: {node: '>= 14'}
agentkeepalive@4.6.0:
@@ -5965,14 +5424,6 @@ packages:
ajv:
optional: true
- ajv-formats@2.1.1:
- resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
- peerDependencies:
- ajv: ^8.0.0
- peerDependenciesMeta:
- ajv:
- optional: true
-
ajv-formats@3.0.1:
resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
peerDependencies:
@@ -5981,16 +5432,6 @@ packages:
ajv:
optional: true
- ajv-keywords@3.5.2:
- resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
- peerDependencies:
- ajv: ^6.9.1
-
- ajv-keywords@5.1.0:
- resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
- peerDependencies:
- ajv: ^8.8.2
-
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
@@ -6022,8 +5463,8 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.1.0:
- resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
+ ansi-regex@6.2.2:
+ resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
engines: {node: '>=12'}
ansi-styles@3.2.1:
@@ -6038,8 +5479,8 @@ packages:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
- ansi-styles@6.2.1:
- resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
+ ansi-styles@6.2.3:
+ resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
engines: {node: '>=12'}
any-promise@1.3.0:
@@ -6053,9 +5494,6 @@ packages:
resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==}
engines: {node: '>=8'}
- application-config-path@0.1.1:
- resolution: {integrity: sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==}
-
archy@1.0.0:
resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==}
@@ -6089,17 +5527,13 @@ packages:
array-ify@1.0.0:
resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
- array-includes@3.1.8:
- resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
+ array-includes@3.1.9:
+ resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==}
engines: {node: '>= 0.4'}
array-timsort@1.0.3:
resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==}
- 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'}
@@ -6135,16 +5569,12 @@ packages:
resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
engines: {node: '>=4'}
- ast-types@0.15.2:
- resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==}
- engines: {node: '>=4'}
-
ast-types@0.16.1:
resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
engines: {node: '>=4'}
- ast-v8-to-istanbul@0.3.4:
- resolution: {integrity: sha512-cxrAnZNLBnQwBPByK4CeDaw5sWZtMilJE/Q3iDA0aamgaIVNDF9T6K2/8DfYDZEejZ2jNnDrG9m8MY72HFd0KA==}
+ ast-v8-to-istanbul@0.3.5:
+ resolution: {integrity: sha512-9SdXjNheSiE8bALAQCQQuT6fgQaoxJh7IRYrRGZ8/9nv8WhJeC1aXAwN8TbaOssGOukUvyvnkgD9+Yuykvl1aA==}
astring@1.9.0:
resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==}
@@ -6157,16 +5587,12 @@ packages:
async-limiter@1.0.1:
resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
- async@2.6.4:
- resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
+ async@3.2.6:
+ resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
- at-least-node@1.0.0:
- resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
- engines: {node: '>= 4.0.0'}
-
atomic-sleep@1.0.0:
resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==}
engines: {node: '>=8.0.0'}
@@ -6182,8 +5608,8 @@ packages:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
- axe-core@4.10.3:
- resolution: {integrity: sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==}
+ axe-core@4.11.0:
+ resolution: {integrity: sha512-ilYanEU8vxxBexpJd8cWM4ElSQq4QctCLKih0TSfjIfCQTeyH/6zVrmIJfLPrKTKJRbiG+cfnZbQIjAlJmF1jQ==}
engines: {node: '>=4'}
axe-html-reporter@2.2.11:
@@ -6192,39 +5618,27 @@ packages:
peerDependencies:
axe-core: '>=3'
- axe-playwright@2.1.0:
- resolution: {integrity: sha512-tY48SX56XaAp16oHPyD4DXpybz8Jxdz9P7exTjF/4AV70EGUavk+1fUPWirM0OYBR+YyDx6hUeDvuHVA6fB9YA==}
+ axe-playwright@2.2.2:
+ resolution: {integrity: sha512-h350/grzDCPgpuWV7eEOqr/f61Xn07Gi9f9B3Ew4rW6/nFtpdEJYW6jgRATorgAGXjEAYFTnaY3sEys39wDw4A==}
peerDependencies:
playwright: '>1.0.0'
- axios@1.8.4:
- resolution: {integrity: sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw==}
+ axios@1.12.2:
+ resolution: {integrity: sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==}
- b4a@1.7.1:
- resolution: {integrity: sha512-ZovbrBV0g6JxK5cGUF1Suby1vLfKjv4RWi8IxoaO/Mon8BDD9I21RxjHFtgQ+kskJqLAVyQZly3uMBui+vhc8Q==}
+ b4a@1.7.3:
+ resolution: {integrity: sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==}
peerDependencies:
react-native-b4a: '*'
peerDependenciesMeta:
react-native-b4a:
optional: true
- babel-core@7.0.0-bridge.0:
- resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
babel-jest@29.7.0:
resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
- '@babel/core': ^7.8.0
-
- babel-loader@8.4.1:
- resolution: {integrity: sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==}
- engines: {node: '>= 8.9'}
- peerDependencies:
- '@babel/core': ^7.0.0
- webpack: '>=2'
+ '@babel/core': ^7.8.0
babel-plugin-istanbul@6.1.1:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
@@ -6234,13 +5648,16 @@ packages:
resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ babel-plugin-module-resolver@5.0.2:
+ resolution: {integrity: sha512-9KtaCazHee2xc0ibfqsDeamwDps6FZNo5S0Q81dUqEuFzVwPhcT4J5jOqIVvgCA3Q/wO9hKYxN/Ds3tIsp5ygg==}
+
babel-plugin-polyfill-corejs2@0.4.14:
resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-corejs3@0.11.1:
- resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==}
+ babel-plugin-polyfill-corejs3@0.13.0:
+ resolution: {integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -6252,30 +5669,24 @@ packages:
babel-plugin-react-native-web@0.19.13:
resolution: {integrity: sha512-4hHoto6xaN23LCyZgL9LJZc3olmAxd7b6jDzlZnKXAh4rRAbZRKNBJoOOdp46OBqgy+K0t0guTj5/mhA8inymQ==}
- babel-plugin-syntax-hermes-parser@0.23.1:
- resolution: {integrity: sha512-uNLD0tk2tLUjGFdmCk+u/3FEw2o+BAwW4g+z2QVlxJrzZYOOPADroEcNtTPt5lNiScctaUmnsTkVEnOwZUOLhA==}
-
babel-plugin-syntax-hermes-parser@0.25.1:
resolution: {integrity: sha512-IVNpGzboFLfXZUAwkLFcI/bnqVbwky0jP3eBno4HKtqvQJAHBLdgxiG6lQ4to0+Q/YCN3PO0od5NZwIKyY4REQ==}
babel-plugin-transform-flow-enums@0.0.2:
resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==}
- babel-preset-current-node-syntax@1.1.0:
- resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==}
+ babel-preset-current-node-syntax@1.2.0:
+ resolution: {integrity: sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.0.0 || ^8.0.0-0
- babel-preset-expo@12.0.11:
- resolution: {integrity: sha512-4m6D92nKEieg+7DXa8uSvpr0GjfuRfM/G0t0I/Q5hF8HleEv5ms3z4dJ+p52qXSJsm760tMqLdO93Ywuoi7cCQ==}
+ babel-preset-expo@13.2.4:
+ resolution: {integrity: sha512-3IKORo3KR+4qtLdCkZNDj8KeA43oBn7RRQejFGWfiZgu/NeaRUSri8YwYjZqybm7hn3nmMv9OLahlvXBX23o5Q==}
peerDependencies:
- babel-plugin-react-compiler: ^19.0.0-beta-9ee70a1-20241017
- react-compiler-runtime: ^19.0.0-beta-8a03594-20241020
+ babel-plugin-react-compiler: ^19.0.0-beta-e993439-20250405
peerDependenciesMeta:
babel-plugin-react-compiler:
optional: true
- react-compiler-runtime:
- optional: true
babel-preset-jest@29.6.3:
resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
@@ -6289,11 +5700,16 @@ packages:
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- bare-events@2.6.1:
- resolution: {integrity: sha512-AuTJkq9XmE6Vk0FJVNq5QxETrSA/vKHarWVBG5l/JbdCL1prJemiyJqUS0jrlXO0MftuPq4m3YVYhoNc5+aE/g==}
+ bare-events@2.8.0:
+ resolution: {integrity: sha512-AOhh6Bg5QmFIXdViHbMc2tLDsBIRxdkIaIddPslJF9Z5De3APBScuqGP2uThXnIpqFrgoxMNC6km7uXNIMLHXA==}
+ peerDependencies:
+ bare-abort-controller: '*'
+ peerDependenciesMeta:
+ bare-abort-controller:
+ optional: true
- bare-fs@4.4.4:
- resolution: {integrity: sha512-Q8yxM1eLhJfuM7KXVP3zjhBvtMJCYRByoTT+wHXjpdMELv0xICFJX+1w4c7csa+WZEOsq4ItJ4RGwvzid6m/dw==}
+ bare-fs@4.4.9:
+ resolution: {integrity: sha512-sh8UV8OvXBZa3Yg5rhF1LNH3U4DfHniexdqyUXelC1thQUxO9TCF37yvd1/7Ir+cgeSg/6YrXyH67xvRr7yaOg==}
engines: {bare: '>=1.16.0'}
peerDependencies:
bare-buffer: '*'
@@ -6325,6 +5741,10 @@ packages:
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==}
+ hasBin: true
+
basic-auth@2.0.1:
resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==}
engines: {node: '>= 0.8'}
@@ -6341,9 +5761,6 @@ packages:
resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
engines: {node: '>=0.6'}
- big.js@5.2.2:
- resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
-
bignumber.js@9.3.1:
resolution: {integrity: sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==}
@@ -6361,11 +5778,8 @@ packages:
boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
- bowser@2.11.0:
- resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==}
-
- bplist-creator@0.0.7:
- resolution: {integrity: sha512-xp/tcaV3T5PCiaY04mXga7o/TE+t95gqeLmADeBI1CvZtdWTbgBt3uLpvh4UWtenKeBhCV6oVxGk38yZr2uYEA==}
+ bowser@2.12.1:
+ resolution: {integrity: sha512-z4rE2Gxh7tvshQ4hluIT7XcFrgLIQaw9X3A+kTTRdovCz5PMukm/0QC/BKSYPj3omF5Qfypn9O/c5kgpmvYUCw==}
bplist-creator@0.1.0:
resolution: {integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==}
@@ -6378,11 +5792,11 @@ packages:
resolution: {integrity: sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==}
engines: {node: '>= 5.10.0'}
- brace-expansion@1.1.11:
- resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
+ brace-expansion@1.1.12:
+ resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
- brace-expansion@2.0.1:
- resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
+ brace-expansion@2.0.2:
+ resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
@@ -6391,29 +5805,20 @@ packages:
browser-assert@1.2.1:
resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==}
- browserslist@4.25.1:
- resolution: {integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==}
+ browserslist@4.26.3:
+ resolution: {integrity: sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==}
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==}
- buffer-alloc-unsafe@1.1.0:
- resolution: {integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==}
-
- buffer-alloc@1.2.0:
- resolution: {integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==}
-
buffer-crc32@0.2.13:
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
buffer-equal-constant-time@1.0.1:
resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==}
- buffer-fill@1.0.0:
- resolution: {integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==}
-
buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
@@ -6441,10 +5846,6 @@ packages:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- cacache@18.0.4:
- resolution: {integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
caching-transform@4.0.0:
resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==}
engines: {node: '>=8'}
@@ -6492,8 +5893,8 @@ packages:
camelize@1.0.1:
resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
- caniuse-lite@1.0.30001726:
- resolution: {integrity: sha512-VQAUIUzBiZ/UnlM28fSp2CRF3ivUn1BWEvxMcVTNwpw91Py1pGbPIyIKtd+tzct9C3ouceCVdGAXxZOpZAsgdw==}
+ caniuse-lite@1.0.30001749:
+ resolution: {integrity: sha512-0rw2fJOmLfnzCRbkm8EyHL8SvI2Apu5UbnQuTsJ0ClgrH8hcwFooJ1s5R0EP8o8aVrFu8++ae29Kt9/gZAZp/Q==}
canvas-confetti@1.9.3:
resolution: {integrity: sha512-rFfTURMvmVEX1gyXFgn5QMn81bYk70qa0HLzcIOSVEyl57n6o9ItHeBtUSWdvKAPY0xlvBHno4/v3QPrT83q9g==}
@@ -6501,24 +5902,20 @@ packages:
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chai@5.2.0:
- resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==}
- engines: {node: '>=12'}
+ chai@5.3.3:
+ resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==}
+ engines: {node: '>=18'}
chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
- chalk@3.0.0:
- resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==}
- engines: {node: '>=8'}
-
chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
- chalk@5.4.1:
- resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
+ chalk@5.6.2:
+ resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
char-regex@1.0.2:
@@ -6550,9 +5947,6 @@ packages:
character-reference-invalid@2.0.1:
resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
- charenc@0.0.2:
- resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
-
check-error@2.1.1:
resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==}
engines: {node: '>= 16'}
@@ -6565,12 +5959,12 @@ packages:
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
engines: {node: '>= 14.16.0'}
- chownr@2.0.0:
- resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
- engines: {node: '>=10'}
+ chownr@3.0.0:
+ resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
+ engines: {node: '>=18'}
- chromatic@11.28.0:
- resolution: {integrity: sha512-Xy3907MXY5UP7LoMksmsT02xCUsoLZpcC6sRITjd+KiXBteOxPF7J+QsFqy/VzQCEN6fpt/R2bOIpE+PwPfcZA==}
+ chromatic@11.29.0:
+ resolution: {integrity: sha512-yisBlntp9hHVj19lIQdpTlcYIXuU9H/DbFuu6tyWHmj6hWT2EtukCCcxYXL78XdQt1vm2GfIrtgtKpj/Rzmo4A==}
hasBin: true
peerDependencies:
'@chromatic-com/cypress': ^0.*.* || ^1.0.0
@@ -6598,12 +5992,8 @@ packages:
engines: {node: '>=12.13.0'}
hasBin: true
- chrome-trace-event@1.0.4:
- resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
- engines: {node: '>=6.0'}
-
- chromium-bidi@7.2.0:
- resolution: {integrity: sha512-gREyhyBstermK+0RbcJLbFhcQctg92AGgDe/h/taMJEOLRdtSswBAO9KmvltFSQWgM2LrwWu5SIuEUbdm3JsyQ==}
+ chromium-bidi@8.0.0:
+ resolution: {integrity: sha512-d1VmE0FD7lxZQHzcDUCKZSNRtRwISXDsdg4HjdTR5+Ll5nQ/vzU12JeNmupD6VWffrPSlrnGhEWlLESKH3VO+g==}
peerDependencies:
devtools-protocol: '*'
@@ -6626,9 +6016,6 @@ packages:
class-validator@0.14.2:
resolution: {integrity: sha512-3kMVRF2io8N8pY1IFIXlho9r8IPUUIfHe2hYVtiebvAzU2XeQFXTv+XI4WX+TnXmtwXMDcjngcpkiPM0O9PvLw==}
- class-variance-authority@0.7.1:
- resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
-
clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
@@ -6641,9 +6028,8 @@ packages:
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
engines: {node: '>=6'}
- cli-width@4.1.0:
- resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
- engines: {node: '>= 12'}
+ client-only@0.0.1:
+ resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
cliui@6.0.0:
resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
@@ -6652,10 +6038,6 @@ packages:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
- clone-deep@4.0.1:
- resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
- engines: {node: '>=6'}
-
clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
@@ -6684,6 +6066,13 @@ packages:
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+ color-string@1.9.1:
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+
+ color@4.2.3:
+ resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
+ engines: {node: '>=12.5.0'}
+
colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
@@ -6697,9 +6086,6 @@ packages:
comma-separated-tokens@2.0.3:
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
- command-exists@1.2.9:
- resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==}
-
commander@12.0.0:
resolution: {integrity: sha512-MwVNWlYjDTtOjX5PiD7o5pK0UrFU/OYgcJfjjK4RaHZETNtjJqrZa9Y9ds88+A+f+d5lv+561eZ+yCKoS3gbAA==}
engines: {node: '>=18'}
@@ -6730,8 +6116,8 @@ packages:
resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
engines: {node: ^12.20.0 || >=14}
- comment-json@4.2.5:
- resolution: {integrity: sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==}
+ comment-json@4.4.1:
+ resolution: {integrity: sha512-r1To31BQD5060QdkC+Iheai7gHwoSZobzunqkf2/kQ6xIAfJyrKNAFUwdKvkK7Qgu7pVTKQEa7ok7Ed3ycAJgg==}
engines: {node: '>= 6'}
commondir@1.0.1:
@@ -6743,15 +6129,12 @@ packages:
compare-versions@6.1.1:
resolution: {integrity: sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg==}
- component-type@1.2.2:
- resolution: {integrity: sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==}
-
compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
- compression@1.8.0:
- resolution: {integrity: sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==}
+ compression@1.8.1:
+ resolution: {integrity: sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==}
engines: {node: '>= 0.8.0'}
computeds@0.0.1:
@@ -6767,8 +6150,8 @@ packages:
resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
engines: {node: '>= 0.10.0'}
- consola@3.4.0:
- resolution: {integrity: sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==}
+ consola@3.4.2:
+ resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
engines: {node: ^14.18.0 || >=16.10.0}
console-table-printer@2.14.6:
@@ -6808,12 +6191,8 @@ packages:
resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
engines: {node: '>= 0.6'}
- cookie@0.7.2:
- resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
- engines: {node: '>= 0.6'}
-
- core-js-compat@3.43.0:
- resolution: {integrity: sha512-2GML2ZsCc5LR7hZYz4AXmjQw8zuy2T//2QntwdnpuYI7jteT6GVYJL7F6C2C57R7gSYrcqVW3lAALefdbhBLDA==}
+ core-js-compat@3.46.0:
+ resolution: {integrity: sha512-p9hObIIEENxSV8xIu+V68JjSeARg6UVMG5mR+JEUguG3sI6MsiS1njz2jHmyJDvA+8jX/sytkBHup6kxhM9law==}
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -6822,8 +6201,8 @@ packages:
resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==}
engines: {node: '>= 0.4.0'}
- cosmiconfig-typescript-loader@6.1.0:
- resolution: {integrity: sha512-tJ1w35ZRUiM5FeTzT7DtYWAFFv37ZLqSRkGi2oeCK1gPhvaWjkAtfXvLmvE1pRfxxp9aQo6ba/Pvg1dKj05D4g==}
+ cosmiconfig-typescript-loader@6.2.0:
+ resolution: {integrity: sha512-GEN39v7TgdxgIoNcdkRE3uiAzQt3UXLyHbRHD6YoL048XAeOomyxaP+Hh/+2C6C2wYjxJ2onhJcsQp+L4YEkVQ==}
engines: {node: '>=v18'}
peerDependencies:
'@types/node': '*'
@@ -6875,9 +6254,6 @@ packages:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
- crypt@0.0.2:
- resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
-
crypto-random-string@2.0.0:
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
engines: {node: '>=8'}
@@ -6889,8 +6265,8 @@ packages:
css-in-js-utils@3.1.0:
resolution: {integrity: sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==}
- css-select@5.1.0:
- resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
+ css-select@5.2.2:
+ resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==}
css-to-react-native@3.2.0:
resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
@@ -6907,8 +6283,8 @@ packages:
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
- css-what@6.1.0:
- resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
+ css-what@6.2.2:
+ resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==}
engines: {node: '>= 6'}
css.escape@1.5.1:
@@ -6923,8 +6299,8 @@ packages:
resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
- cssstyle@4.2.1:
- resolution: {integrity: sha512-9+vem03dMXG7gDmZ62uqmRiMRNtinIZ9ZyuF6BdxzfOD+FdN5hretzynkn0ReS2DO2GSw76RWHs0UmJPI2zUjw==}
+ cssstyle@4.6.0:
+ resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==}
engines: {node: '>=18'}
csstype@3.1.3:
@@ -7039,8 +6415,8 @@ packages:
supports-color:
optional: true
- debug@4.4.1:
- resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
+ debug@4.4.3:
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -7055,8 +6431,8 @@ packages:
decimal.js-light@2.5.1:
resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
- decimal.js@10.5.0:
- resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==}
+ decimal.js@10.6.0:
+ resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
decode-named-character-reference@1.2.0:
resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==}
@@ -7065,8 +6441,8 @@ packages:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
engines: {node: '>=0.10'}
- dedent@1.5.3:
- resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==}
+ dedent@1.7.0:
+ resolution: {integrity: sha512-HGFtf8yhuhGhqO07SV79tRp+br4MnbdjeVxotpn1QBl30pcLLCQjX5b2295ll0fv8RKDKsmWYrl05usHM9CewQ==}
peerDependencies:
babel-plugin-macros: ^3.1.0
peerDependenciesMeta:
@@ -7092,10 +6468,6 @@ packages:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
- default-gateway@4.2.0:
- resolution: {integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==}
- engines: {node: '>=6'}
-
default-require-extensions@3.0.1:
resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==}
engines: {node: '>=8'}
@@ -7119,10 +6491,6 @@ packages:
resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==}
engines: {node: '>= 14'}
- del@6.1.1:
- resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
- engines: {node: '>=10'}
-
delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
@@ -7144,10 +6512,6 @@ packages:
engines: {node: '>=0.10'}
hasBin: true
- detect-libc@2.0.3:
- resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
- engines: {node: '>=8'}
-
detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
@@ -7158,8 +6522,8 @@ packages:
devlop@1.1.0:
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
- devtools-protocol@0.0.1464554:
- resolution: {integrity: sha512-CAoP3lYfwAGQTaAXYvA6JZR0fjGUb7qec1qf4mToyoH2TZgUFeIqYcjh6f9jNuhHfuZiEdH+PONHYrLhRQX6aw==}
+ devtools-protocol@0.0.1495869:
+ resolution: {integrity: sha512-i+bkd9UYFis40RcnkW7XrOprCujXRAHg62IVh/Ah3G8MmNXpCGt1m0dTFhSdx/AVs8XEMbdOGRwdkR1Bcta8AA==}
didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
@@ -7175,10 +6539,6 @@ packages:
diffable-html@4.1.0:
resolution: {integrity: sha512-++kyNek+YBLH8cLXS+iTj/Hiy2s5qkRJEJ8kgu/WHbFrVY2vz9xPFUT+fii2zGF0m1CaojDlQJjkfrCt7YWM1g==}
- dir-glob@3.0.1:
- resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
- engines: {node: '>=8'}
-
dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
@@ -7218,8 +6578,8 @@ packages:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
- dompurify@3.2.6:
- resolution: {integrity: sha512-/2GogDQlohXPZe6D6NOgQvXLPSYBqIWMnZ8zzOhn09REE4eyAzb+Hed3jhoM9OkuaJ8P6ZGTTVWQKAi8ieIzfQ==}
+ dompurify@3.2.7:
+ resolution: {integrity: sha512-WhL/YuveyGXJaerVlMYGWhvQswa7myDG17P7Vu65EWC05o8vfeNbvNf4d/BOvH99+ZW+LlQsc1GDKMa1vNK6dw==}
domutils@1.7.0:
resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==}
@@ -7242,6 +6602,10 @@ packages:
resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
engines: {node: '>=12'}
+ dotenv@16.6.1:
+ resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==}
+ engines: {node: '>=12'}
+
dset@3.1.4:
resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==}
engines: {node: '>=4'}
@@ -7259,26 +6623,26 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.179:
- resolution: {integrity: sha512-UWKi/EbBopgfFsc5k61wFpV7WrnnSlSzW/e2XcBmS6qKYTivZlLtoll5/rdqRTxGglGHkmkW0j0pFNJG10EUIQ==}
+ electron-to-chromium@1.5.234:
+ resolution: {integrity: sha512-RXfEp2x+VRYn8jbKfQlRImzoJU01kyDvVPBmG39eU2iuRVhuS6vQNocB8J0/8GrIMLnPzgz4eW6WiRnJkTuNWg==}
- embla-carousel-autoplay@8.5.2:
- resolution: {integrity: sha512-27emJ0px3q/c0kCHCjwRrEbYcyYUPfGO3g5IBWF1i7714TTzE6L9P81V6PHLoSMAKJ1aHoT2e7YFOsuFKCbyag==}
+ embla-carousel-autoplay@8.6.0:
+ resolution: {integrity: sha512-OBu5G3nwaSXkZCo1A6LTaFMZ8EpkYbwIaH+bPqdBnDGQ2fh4+NbzjXjs2SktoPNKCtflfVMc75njaDHOYXcrsA==}
peerDependencies:
- embla-carousel: 8.5.2
+ embla-carousel: 8.6.0
embla-carousel-react@8.6.0:
resolution: {integrity: sha512-0/PjqU7geVmo6F734pmPqpyHqiM99olvyecY7zdweCw+6tKEXnrE90pBiBbMMU8s5tICemzpQ3hi5EpxzGW+JA==}
peerDependencies:
- react: ^16.8.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ react: 19.0.0
embla-carousel-reactive-utils@8.6.0:
resolution: {integrity: sha512-fMVUDUEx0/uIEDM0Mz3dHznDhfX+znCCDCeIophYb1QGVM7YThSWX+wz11zlYwWFOr74b4QLGg0hrGPJeG2s4A==}
peerDependencies:
embla-carousel: 8.6.0
- embla-carousel-wheel-gestures@8.0.1:
- resolution: {integrity: sha512-LMAnruDqDmsjL6UoQD65aLotpmfO49Fsr3H0bMi7I+BH6jbv9OJiE61kN56daKsVtCQEt0SU1MrJslbhtgF3yQ==}
+ embla-carousel-wheel-gestures@8.1.0:
+ resolution: {integrity: sha512-J68jkYrxbWDmXOm2n2YHl+uMEXzkGSKjWmjaEgL9xVvPb3HqVmg6rJSKfI3sqIDVvm7mkeTy87wtG/5263XqHQ==}
engines: {node: '>=10'}
peerDependencies:
embla-carousel: ^8.0.0 || ~8.0.0-rc03
@@ -7299,10 +6663,6 @@ packages:
emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- emojis-list@3.0.0:
- resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
- engines: {node: '>= 4'}
-
encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
@@ -7311,12 +6671,8 @@ packages:
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
engines: {node: '>= 0.8'}
- end-of-stream@1.4.4:
- resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
-
- enhanced-resolve@5.18.2:
- resolution: {integrity: sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==}
- engines: {node: '>=10.13.0'}
+ end-of-stream@1.4.5:
+ resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
entities@1.1.2:
resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==}
@@ -7331,6 +6687,10 @@ packages:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
+ entities@6.0.1:
+ resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
+ engines: {node: '>=0.12'}
+
env-editor@0.4.2:
resolution: {integrity: sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==}
engines: {node: '>=8'}
@@ -7339,17 +6699,14 @@ packages:
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
engines: {node: '>=6'}
- eol@0.9.1:
- resolution: {integrity: sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==}
-
- error-ex@1.3.2:
- resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
+ 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.23.9:
- resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==}
+ es-abstract@1.24.0:
+ resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==}
engines: {node: '>= 0.4'}
es-define-property@1.0.1:
@@ -7391,13 +6748,8 @@ packages:
peerDependencies:
esbuild: '>=0.12 <1'
- esbuild@0.24.2:
- resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
- engines: {node: '>=18'}
- hasBin: true
-
- esbuild@0.25.4:
- resolution: {integrity: sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==}
+ esbuild@0.25.10:
+ resolution: {integrity: sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==}
engines: {node: '>=18'}
hasBin: true
@@ -7435,8 +6787,8 @@ 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-refresh@0.4.20:
- resolution: {integrity: sha512-XpbHQ2q5gUF8BGOX4dHe+71qoirYMhApEPZ7sfhF/dNnOF1UXnCMGZf79SFTBO7Bz5YEIT4TMieSlJBWhP9WBA==}
+ eslint-plugin-react-refresh@0.4.23:
+ resolution: {integrity: sha512-G4j+rv0NmbIR45kni5xJOrYvCtyD3/7LjpVH8MPPcudXDcNu8gv+4ATTDXTtbRR8rTCM5HxECvCSsRmxKnWDsA==}
peerDependencies:
eslint: '>=8.40'
@@ -7446,31 +6798,27 @@ packages:
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
- eslint-plugin-storybook@9.1.3:
- resolution: {integrity: sha512-CR576JrlvxLY2ebJIyR6z/YWy6+iyVsB7ORjPrwM3a9SshlRnAntdEn6hyMYbQmFoPIv7kYcRiDznDXBQ/jitA==}
+ eslint-plugin-storybook@9.1.10:
+ resolution: {integrity: sha512-HAVQ9HTMydcFj5KjnzsETOwPe19eIViwRBhc47lvU04YEFTgEg2rlXN1xozxHUlQ+XkkoKYkIUYoqo7KgGhkIA==}
engines: {node: '>=20.0.0'}
peerDependencies:
eslint: '>=8'
- storybook: ^9.1.3
-
- eslint-scope@5.1.1:
- resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
- engines: {node: '>=8.0.0'}
+ storybook: ^9.1.10
- eslint-scope@8.3.0:
- resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
+ eslint-scope@8.4.0:
+ resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint-visitor-keys@4.2.0:
- resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
+ eslint-visitor-keys@4.2.1:
+ resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.27.0:
- resolution: {integrity: sha512-ixRawFQuMB9DZ7fjU3iGGganFDp3+45bPOdaRurcFHSXO1e/sYwUX/FtQZpLZJR6SjMoJH8hR2pPEAfDyCoU2Q==}
+ eslint@9.37.0:
+ resolution: {integrity: sha512-XyLmROnACWqSxiGYArdef1fItQd47weqB7iwtfr9JHwRrqIXZdcFMvvEcL9xHCmL0SNsOvF0c42lWyM1U5dgig==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -7483,8 +6831,8 @@ packages:
resolution: {integrity: sha512-s5c/JKEF8faaXr3y1O9IZljnVO4FXFvmxB+/dGAKWUQF2nyjsoALGN5MCNu4ZLbAVLmtNFwU0fwb8FExIRwWmw==}
engines: {pnpm: ^9.0.0}
- espree@10.3.0:
- resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
+ espree@10.4.0:
+ resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
esprima@4.0.1:
@@ -7500,15 +6848,11 @@ packages:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
- estimo@3.0.4:
- resolution: {integrity: sha512-3OSMcjOfEAZw5x4hPY3fUJ2W2ddwobmGjZqY4pSJycCjrDeacOCWFGC5aL2JLg13k6LeTvrjdDw77Oi6Gl4Qsw==}
+ estimo@3.0.5:
+ resolution: {integrity: sha512-Q9asaAAM3KZc4Ckr8GMcJWYc3hNCf0KnmhkfzHuAWmqGoPssQoe5Mb8et1CYmmkeMfPTlUyeBHRi53Bedvnl1Q==}
engines: {node: '>=18'}
hasBin: true
- estraverse@4.3.0:
- resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
- engines: {node: '>=4.0'}
-
estraverse@5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
@@ -7537,6 +6881,9 @@ packages:
eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
+ events-universal@1.0.1:
+ resolution: {integrity: sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==}
+
events@3.3.0:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
@@ -7544,10 +6891,6 @@ packages:
exec-async@2.2.0:
resolution: {integrity: sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==}
- execa@1.0.0:
- resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
- engines: {node: '>=6'}
-
execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
@@ -7563,100 +6906,104 @@ packages:
expect-playwright@0.8.0:
resolution: {integrity: sha512-+kn8561vHAY+dt+0gMqqj1oY+g5xWrsuGMk4QGxotT2WS545nVqqjs37z6hrYfIuucwqthzwJfCJUEYqixyljg==}
- expect-type@1.2.0:
- resolution: {integrity: sha512-80F22aiJ3GLyVnS/B3HzgR6RelZVumzj9jkL0Rhz4h0xYbNW9PjlQz5h3J/SShErbXBc295vseR4/MIbVmUbeA==}
+ expect-type@1.2.2:
+ resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==}
engines: {node: '>=12.0.0'}
expect@29.7.0:
resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- expo-asset@11.0.5:
- resolution: {integrity: sha512-TL60LmMBGVzs3NQcO8ylWqBumMh4sx0lmeJsn7+9C88fylGDhyyVnKZ1PyTXo9CVDBkndutZx2JUEQWM9BaiXw==}
+ expo-asset@11.1.7:
+ resolution: {integrity: sha512-b5P8GpjUh08fRCf6m5XPVAh7ra42cQrHBIMgH2UXP+xsj4Wufl6pLy6jRF5w6U7DranUMbsXm8TOyq4EHy7ADg==}
peerDependencies:
expo: '*'
- react: '*'
+ react: 19.0.0
react-native: '*'
- expo-clipboard@7.1.4:
- resolution: {integrity: sha512-NHhfKnrzb4o0PacUKD93ByadU0JmPBoFTFYbbFJZ9OAX6SImpSqG5gfrMUR3vVj4Qx9f1LpMcdAv5lBzv868ow==}
+ expo-clipboard@7.1.5:
+ resolution: {integrity: sha512-TCANUGOxouoJXxKBW5ASJl2WlmQLGpuZGemDCL2fO5ZMl57DGTypUmagb0CVUFxDl0yAtFIcESd78UsF9o64aw==}
peerDependencies:
expo: '*'
- react: '*'
+ react: 19.0.0
react-native: '*'
- expo-constants@17.0.8:
- resolution: {integrity: sha512-XfWRyQAf1yUNgWZ1TnE8pFBMqGmFP5Gb+SFSgszxDdOoheB/NI5D4p7q86kI2fvGyfTrxAe+D+74nZkfsGvUlg==}
+ expo-constants@17.1.7:
+ resolution: {integrity: sha512-byBjGsJ6T6FrLlhOBxw4EaiMXrZEn/MlUYIj/JAd+FS7ll5X/S4qVRbIimSJtdW47hXMq0zxPfJX6njtA56hHA==}
peerDependencies:
expo: '*'
react-native: '*'
- expo-file-system@18.0.12:
- resolution: {integrity: sha512-HAkrd/mb8r+G3lJ9MzmGeuW2B+BxQR1joKfeCyY4deLl1zoZ48FrAWjgZjHK9aHUVhJ0ehzInu/NQtikKytaeg==}
+ expo-file-system@18.1.11:
+ resolution: {integrity: sha512-HJw/m0nVOKeqeRjPjGdvm+zBi5/NxcdPf8M8P3G2JFvH5Z8vBWqVDic2O58jnT1OFEy0XXzoH9UqFu7cHg9DTQ==}
peerDependencies:
expo: '*'
react-native: '*'
- expo-font@13.0.4:
- resolution: {integrity: sha512-eAP5hyBgC8gafFtprsz0HMaB795qZfgJWqTmU0NfbSin1wUuVySFMEPMOrTkTgmazU73v4Cb4x7p86jY1XXYUw==}
+ expo-font@13.3.2:
+ resolution: {integrity: sha512-wUlMdpqURmQ/CNKK/+BIHkDA5nGjMqNlYmW0pJFXY/KE/OG80Qcavdu2sHsL4efAIiNGvYdBS10WztuQYU4X0A==}
peerDependencies:
expo: '*'
- react: '*'
+ react: 19.0.0
- expo-keep-awake@14.0.3:
- resolution: {integrity: sha512-6Jh94G6NvTZfuLnm2vwIpKe3GdOiVBuISl7FI8GqN0/9UOg9E0WXXp5cDcfAG8bn80RfgLJS8P7EPUGTZyOvhg==}
+ expo-keep-awake@14.1.4:
+ resolution: {integrity: sha512-wU9qOnosy4+U4z/o4h8W9PjPvcFMfZXrlUoKTMBW7F4pLqhkkP/5G4EviPZixv4XWFMjn1ExQ5rV6BX8GwJsWA==}
peerDependencies:
expo: '*'
- react: '*'
+ react: 19.0.0
- expo-linking@7.0.5:
- resolution: {integrity: sha512-3KptlJtcYDPWohk0MfJU75MJFh2ybavbtcSd84zEPfw9s1q3hjimw3sXnH03ZxP54kiEWldvKmmnGcVffBDB1g==}
+ expo-linking@7.1.7:
+ resolution: {integrity: sha512-ZJaH1RIch2G/M3hx2QJdlrKbYFUTOjVVW4g39hfxrE5bPX9xhZUYXqxqQtzMNl1ylAevw9JkgEfWbBWddbZ3UA==}
peerDependencies:
- react: '*'
+ react: 19.0.0
react-native: '*'
- expo-modules-autolinking@2.0.8:
- resolution: {integrity: sha512-DezgnEYFQYic8hKGhkbztBA3QUmSftjaNDIKNAtS2iGJmzCcNIkatjN2slFDSWjSTNo8gOvPQyMKfyHWFvLpOQ==}
+ expo-modules-autolinking@2.1.14:
+ resolution: {integrity: sha512-nT5ERXwc+0ZT/pozDoJjYZyUQu5RnXMk9jDGm5lg+PiKvsrCTSA/2/eftJGMxLkTjVI2MXp5WjSz3JRjbA7UXA==}
hasBin: true
- expo-modules-core@2.2.3:
- resolution: {integrity: sha512-01QqZzpP/wWlxnNly4G06MsOBUTbMDj02DQigZoXfDh80vd/rk3/uVXqnZgOdLSggTs6DnvOgAUy0H2q30XdUg==}
+ expo-modules-core@2.5.0:
+ resolution: {integrity: sha512-aIbQxZE2vdCKsolQUl6Q9Farlf8tjh/ROR4hfN1qT7QBGPl1XrJGnaOKkcgYaGrlzCPg/7IBe0Np67GzKMZKKQ==}
- expo-navigation-bar@4.0.9:
- resolution: {integrity: sha512-dCJ04yPixFOUixJaWlmCZafGeQ1L1g6vWn+oX8rqPnYN9kYCMUz2aRNnhRRoK5MBGFTK/nue2D49TE/AwwWt9w==}
+ expo-navigation-bar@4.2.8:
+ resolution: {integrity: sha512-Ykdz5/22el8Bf8c8llYBfpJvT8kjWJxvgMwNbyF0oZ/7ngoJu1HLijvblA1ppNW7WFLICL6iz6GczcizBVVo5g==}
peerDependencies:
expo: '*'
- react: '*'
+ react: 19.0.0
react-native: '*'
- expo-splash-screen@0.29.22:
- resolution: {integrity: sha512-f+bPpF06bqiuW1Fbrd3nxeaSsmTVTBEKEYe3epYt4IE6y4Ulli3qEUamMLlRQiDGuIXPU6zQlscpy2mdBUI5cA==}
+ expo-router@5.1.7:
+ resolution: {integrity: sha512-E7hIqTZs4Cub4sbYPeednfYPi+2cyRGMdqc5IYBJ/vC+WBKoYJ8C9eU13ZLbPz//ZybSo2Dsm7v89uFIlO2Gow==}
peerDependencies:
+ '@react-navigation/drawer': ^7.3.9
+ '@testing-library/jest-native': '*'
expo: '*'
+ expo-constants: '*'
+ expo-linking: '*'
+ react-native-reanimated: '*'
+ react-native-safe-area-context: '*'
+ react-native-screens: '*'
+ peerDependenciesMeta:
+ '@react-navigation/drawer':
+ optional: true
+ '@testing-library/jest-native':
+ optional: true
+ react-native-reanimated:
+ optional: true
- expo-status-bar@2.0.1:
- resolution: {integrity: sha512-AkIPX7jWHRPp83UBZ1iXtVvyr0g+DgBVvIXTtlmPtmUsm8Vq9Bb5IGj86PW8osuFlgoTVAg7HI/+Ok7yEYwiRg==}
- peerDependencies:
- react: '*'
- react-native: '*'
-
- expo-system-ui@4.0.9:
- resolution: {integrity: sha512-hqBc0EWeK/BTB8i4H84vqNjje8GgxhapYrcWdg5qriaRA/u+bNNxhmpZXdAjFuhonOP4SmAbF+gjoJJWsTrhUg==}
+ expo-status-bar@2.2.3:
+ resolution: {integrity: sha512-+c8R3AESBoduunxTJ8353SqKAKpxL6DvcD8VKBuh81zzJyUUbfB4CVjr1GufSJEKsMzNPXZU+HJwXx7Xh7lx8Q==}
peerDependencies:
- expo: '*'
+ react: 19.0.0
react-native: '*'
- react-native-web: '*'
- peerDependenciesMeta:
- react-native-web:
- optional: true
- expo@52.0.44:
- resolution: {integrity: sha512-qj3+MWxmqLyBaYQ8jDOvVLEgSqNplH3cf+nDhxCo4C1cpTPD1u/HGh1foibtaeuCYLHsE5km1lrcOpRbFJ4luQ==}
+ expo@53.0.23:
+ resolution: {integrity: sha512-6TOLuNCP3AsSkXBJA5W6U/7wpZUop3Q6BxHMtRD2OOgT7CCPvnYgJdnTzqU+gD1hMfcryD8Ejq9RdHbLduXohg==}
hasBin: true
peerDependencies:
'@expo/dom-webview': '*'
'@expo/metro-runtime': '*'
- react: '*'
+ react: 19.0.0
react-native: '*'
react-native-webview: '*'
peerDependenciesMeta:
@@ -7694,8 +7041,8 @@ packages:
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- fast-equals@5.2.2:
- resolution: {integrity: sha512-V7/RktU11J3I36Nwq2JnZEM7tNm17eBJz+u25qdxBZeCKiX6BkVSZQjwWIr+IobgnZy+ag73tTZgZi7tr0LrBw==}
+ fast-equals@5.3.2:
+ resolution: {integrity: sha512-6rxyATwPCkaFIL3JLqw8qXqMpIZ942pTX/tbQFkRsDGblS8tNGtlUauA/+mt6RUfqn/4MoEr+WDkYoIQbibWuQ==}
engines: {node: '>=6.0.0'}
fast-fifo@1.3.2:
@@ -7717,25 +7064,21 @@ packages:
fast-loops@1.1.4:
resolution: {integrity: sha512-8dbd3XWoKCTms18ize6JmQF1SFnnfj5s0B7rRry22EofgMu7B6LKHVh+XfFqFGsqnbH54xgeO83PzpKI+ODhlg==}
- fast-redact@3.5.0:
- resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==}
- engines: {node: '>=6'}
-
fast-safe-stringify@2.1.1:
resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
fast-text-encoding@1.0.6:
resolution: {integrity: sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w==}
- fast-uri@3.0.6:
- resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==}
+ fast-uri@3.1.0:
+ resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
fast-xml-parser@5.2.5:
resolution: {integrity: sha512-pfX9uG9Ki0yekDHx2SiuRIyFdyAr1kMIMitPvb0YBo8SUfKvia7w7FIyd/l6av85pFYRhZscS75MwMnbvY+hcQ==}
hasBin: true
- fastq@1.19.0:
- resolution: {integrity: sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==}
+ fastq@1.19.1:
+ resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
fault@1.0.4:
resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==}
@@ -7743,9 +7086,6 @@ packages:
fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
- fbemitter@3.0.0:
- resolution: {integrity: sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==}
-
fbjs-css-vars@1.0.2:
resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==}
@@ -7755,17 +7095,15 @@ packages:
fd-slicer@1.1.0:
resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
- fdir@6.4.4:
- resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==}
+ fdir@6.5.0:
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
+ engines: {node: '>=12.0.0'}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
picomatch:
optional: true
- fetch-retry@4.1.1:
- resolution: {integrity: sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==}
-
fflate@0.8.2:
resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
@@ -7797,16 +7135,15 @@ packages:
resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
engines: {node: '>= 0.8'}
- find-cache-dir@2.1.0:
- resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
- engines: {node: '>=6'}
+ find-babel-config@2.1.2:
+ resolution: {integrity: sha512-ZfZp1rQyp4gyuxqt1ZqjFGVeVBvmpURMqdIWXbPRfB97Bf6BzdK/xSIbylEINzQ0kB5tlDQfn9HkNXXWsqTqLg==}
find-cache-dir@3.3.2:
resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
engines: {node: '>=8'}
- find-chrome-bin@2.0.3:
- resolution: {integrity: sha512-LfMPOlRfP8pOSk2gIY0KWAXBFO5h6ZF4FlLj8QHw1fAwGpPquUIrB8d35Rswf2yhmCmeqQhLBsbhB8+8U7iuKw==}
+ find-chrome-bin@2.0.4:
+ resolution: {integrity: sha512-iKiqIb7FsA0hwnq0vvDay4RsmHUFLvWVquTb59XVlxfHS68XaWZfEjriF2vTZ3k/plicyKZxMJLqxKt10kSOtQ==}
engines: {node: '>=18.0.0'}
find-file-up@0.1.3:
@@ -7817,8 +7154,8 @@ packages:
resolution: {integrity: sha512-0rnQWcFwZr7eO0513HahrWafsc3CTFioEB7DRiEYCUM/70QXSY8f3mCST17HXLcPvEhzH/Ty/Bxd72ZZsr/yvw==}
engines: {node: '>=0.10.0'}
- find-process@1.4.10:
- resolution: {integrity: sha512-ncYFnWEIwL7PzmrK1yZtaccN8GhethD37RzBHG6iOZoFYB4vSmLLXfeWJjeN5nMvCJMjOtBvBBF8OgxEcikiZg==}
+ find-process@1.4.11:
+ resolution: {integrity: sha512-mAOh9gGk9WZ4ip5UjV0o6Vb4SrfnAmtsFNzkMRH9HQiFXVQnDyQFrSHTK5UoG6E+KV+s+cIznbtwpfN41l2nFA==}
hasBin: true
find-up@3.0.0:
@@ -7837,6 +7174,9 @@ packages:
resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==}
engines: {node: '>=18'}
+ fix-dts-default-cjs-exports@1.0.1:
+ resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==}
+
flat-cache@4.0.1:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
@@ -7851,12 +7191,8 @@ packages:
flow-enums-runtime@0.0.6:
resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==}
- flow-parser@0.263.0:
- resolution: {integrity: sha512-F0Tr7SUvZ4BQYglFOkr8rCTO5FPjCwMhm/6i57h40F80Oz/hzzkqte4lGO0vGJ7THQonuXcTyYqCdKkAwt5d2w==}
- engines: {node: '>=0.4.0'}
-
- follow-redirects@1.15.9:
- resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
+ follow-redirects@1.15.11:
+ resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -7875,23 +7211,15 @@ packages:
resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==}
engines: {node: '>=8.0.0'}
- foreground-child@3.3.0:
- resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
+ foreground-child@3.3.1:
+ resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
engines: {node: '>=14'}
form-data-encoder@1.7.2:
resolution: {integrity: sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==}
- form-data@3.0.3:
- resolution: {integrity: sha512-q5YBMeWy6E2Un0nMGWMgI65MAKtaylxfNJGJxpGh45YDciZB4epbWpaAfImil6CPAPTYB4sh0URQNDRIZG5F2w==}
- engines: {node: '>= 6'}
-
- form-data@4.0.0:
- resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
- engines: {node: '>= 6'}
-
- form-data@4.0.2:
- resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
+ form-data@4.0.4:
+ resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
engines: {node: '>= 6'}
format@0.2.2:
@@ -7909,12 +7237,12 @@ packages:
fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
- framer-motion@12.17.0:
- resolution: {integrity: sha512-2hISKgDk49yCLStwG1wf4Kdy/D6eBw9/eRNaWFIYoI9vMQ/Mqd1Fz+gzVlEtxJmtQ9y4IWnXm19/+UXD3dAYAA==}
+ framer-motion@12.23.24:
+ resolution: {integrity: sha512-HMi5HRoRCTou+3fb3h9oTLyJGBxHfW+HnNE25tAXOvVx/IvwMHK0cx7IR4a2ZU6sh3IX1Z+4ts32PcYBOqka8w==}
peerDependencies:
'@emotion/is-prop-valid': '*'
- react: ^18.0.0 || ^19.0.0
- react-dom: ^18.0.0 || ^19.0.0
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@emotion/is-prop-valid':
optional: true
@@ -7938,30 +7266,10 @@ packages:
resolution: {integrity: sha512-cR/vflFyPZtrN6b38ZyWxpWdhlXrzZEBawlpBQMq7033xVY7/kg0GDMBK5jg8lDYQckdJ5x/YC88lM3C7VMsLg==}
engines: {node: '>=0.10.0'}
- fs-extra@11.3.0:
- resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==}
+ fs-extra@11.3.2:
+ resolution: {integrity: sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==}
engines: {node: '>=14.14'}
- fs-extra@8.1.0:
- resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
- engines: {node: '>=6 <7 || >=8'}
-
- fs-extra@9.0.0:
- resolution: {integrity: sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==}
- engines: {node: '>=10'}
-
- fs-extra@9.1.0:
- resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
- engines: {node: '>=10'}
-
- fs-minipass@2.1.0:
- resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
- engines: {node: '>= 8'}
-
- fs-minipass@3.0.3:
- resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
@@ -7997,6 +7305,10 @@ packages:
resolution: {integrity: sha512-FNTkdNEnBdlqF2oatizolQqNANMrcqJt6AAYt99B3y1aLLC8Hc5IOBb+ZnnzllodEEf6xMBp6wRcBbc16fa65w==}
engines: {node: '>=12'}
+ 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==}
engines: {node: '>=6.9.0'}
@@ -8017,18 +7329,10 @@ packages:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
- get-port@3.2.0:
- resolution: {integrity: sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==}
- engines: {node: '>=4'}
-
get-proto@1.0.1:
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
engines: {node: '>= 0.4'}
- get-stream@4.1.0:
- resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
- engines: {node: '>=6'}
-
get-stream@5.2.0:
resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
engines: {node: '>=8'}
@@ -8045,8 +7349,8 @@ packages:
resolution: {integrity: sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==}
engines: {node: '>= 14'}
- getenv@1.0.0:
- resolution: {integrity: sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==}
+ getenv@2.0.0:
+ resolution: {integrity: sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==}
engines: {node: '>=6'}
git-raw-commits@4.0.0:
@@ -8062,13 +7366,15 @@ packages:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
- glob-to-regexp@0.4.1:
- resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
-
glob@10.4.5:
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
hasBin: true
+ glob@11.0.3:
+ resolution: {integrity: sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==}
+ engines: {node: 20 || >=22}
+ hasBin: true
+
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Glob versions prior to v9 are no longer supported
@@ -8078,6 +7384,10 @@ packages:
engines: {node: '>=12'}
deprecated: Glob versions prior to v9 are no longer supported
+ glob@9.3.5:
+ resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
global-directory@4.0.1:
resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==}
engines: {node: '>=18'}
@@ -8094,18 +7404,14 @@ packages:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
- globals@16.0.0:
- resolution: {integrity: sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A==}
+ globals@16.4.0:
+ resolution: {integrity: sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==}
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'}
-
google-auth-library@8.9.0:
resolution: {integrity: sha512-f7aQCJODJFmYWN6PeNKzgvy9LI2tYmXnzpNDHEjG5sDNPgGb2FXQyTBnXeSH+PAtpKESFD+LmHw3Ox3mN7e1Fg==}
engines: {node: '>=12'}
@@ -8142,8 +7448,8 @@ packages:
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
- graphql-yoga@5.15.1:
- resolution: {integrity: sha512-wCSnviFFGC4CF9lyeRNMW1p55xVWkMRLPu9iHYbBd8WCJEjduDTo3nh91sVktpbJdUQ6rxNBN6hhpTYMFZuMwg==}
+ graphql-yoga@5.16.0:
+ resolution: {integrity: sha512-/R2dJea7WgvNlXRU4F8iFwWd95Qn1mN+R+yC8XBs1wKjUzr0Pvv8cGYtt6UUcVHw5CiDEtu7iQY5oOe3sDAWCQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
graphql: ^15.2.0 || ^16.0.0
@@ -8171,10 +7477,6 @@ packages:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- has-own-prop@2.0.0:
- resolution: {integrity: sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==}
- engines: {node: '>=8'}
-
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
@@ -8235,24 +7537,21 @@ packages:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
- headers-polyfill@4.0.3:
- resolution: {integrity: sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==}
-
help-me@5.0.0:
resolution: {integrity: sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==}
- hermes-estree@0.23.1:
- resolution: {integrity: sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==}
-
hermes-estree@0.25.1:
resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==}
- hermes-parser@0.23.1:
- resolution: {integrity: sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==}
+ hermes-estree@0.29.1:
+ resolution: {integrity: sha512-jl+x31n4/w+wEqm0I2r4CMimukLbLQEYpisys5oCre611CI5fc9TxhqkBBCJ1edDG4Kza0f7CgNz8xVMLZQOmQ==}
hermes-parser@0.25.1:
resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==}
+ hermes-parser@0.29.1:
+ resolution: {integrity: sha512-xBHWmUtRC5e/UL0tI7Ivt2riA/YBq9+SiYFU7C1oBa/j2jYGlIF9043oak1F47ihuDIxQ5nbsKueYJDRY02UgA==}
+
highlight.js@10.7.3:
resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==}
@@ -8328,8 +7627,8 @@ packages:
hyphenate-style-name@1.1.0:
resolution: {integrity: sha512-WDC/ui2VVRrz3jOVi+XtjqkDjiVjTtFaAGiW37k6b+ohyQ5wYDOGkvCZa8+H0nx3gyvv0+BST9xuOgIyGQ00gw==}
- ibm-cloud-sdk-core@5.4.0:
- resolution: {integrity: sha512-c4cwOuUDbMiFROYM/Ti1aC+Umi1v3TdvC2DO5zR7w44FYY/3xrs79+3DVPXt/nRhJeaMHN2L9XwlXsPSoVDHJA==}
+ ibm-cloud-sdk-core@5.4.3:
+ resolution: {integrity: sha512-D0lvClcoCp/HXyaFlCbOT4aTYgGyeIb4ncxZpxRuiuw7Eo79C6c49W53+8WJRD9nxzT5vrIdaky3NBcTdBtaEg==}
engines: {node: '>=18'}
iconv-lite@0.4.24:
@@ -8347,12 +7646,12 @@ packages:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
- ignore@7.0.4:
- resolution: {integrity: sha512-gJzzk+PQNznz8ysRrC0aOkBNVRBDtE1n53IqyqEf3PXrYwomFs5q4pGMizBMJF+ykh03insJ27hB8gSrD2Hn8A==}
+ ignore@7.0.5:
+ resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
engines: {node: '>= 4'}
- image-size@1.2.0:
- resolution: {integrity: sha512-4S8fwbO6w3GeCVN6OPtA9I5IGKkcDMPcKndtUlpJuCwu7JLjtj7JZpwqLuyY2nrmQT3AWsCJLSKPsc2mPBSl3w==}
+ image-size@1.2.1:
+ resolution: {integrity: sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw==}
engines: {node: '>=16.x'}
hasBin: true
@@ -8373,8 +7672,8 @@ packages:
engines: {node: '>=8'}
hasBin: true
- import-meta-resolve@4.1.0:
- resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
+ import-meta-resolve@4.2.0:
+ resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==}
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
@@ -8407,10 +7706,6 @@ packages:
inline-style-prefixer@6.0.4:
resolution: {integrity: sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==}
- internal-ip@4.3.0:
- resolution: {integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==}
- engines: {node: '>=6'}
-
internal-slot@1.1.0:
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
engines: {node: '>= 0.4'}
@@ -8426,10 +7721,6 @@ packages:
resolution: {integrity: sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==}
engines: {node: '>= 12'}
- ip-regex@2.1.0:
- resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==}
- engines: {node: '>=4'}
-
ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
@@ -8457,6 +7748,9 @@ packages:
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ is-arrayish@0.3.4:
+ resolution: {integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==}
+
is-async-function@2.1.1:
resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
engines: {node: '>= 0.4'}
@@ -8473,9 +7767,6 @@ packages:
resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
engines: {node: '>= 0.4'}
- is-buffer@1.1.6:
- resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
-
is-buffer@2.0.5:
resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
engines: {node: '>=4'}
@@ -8527,8 +7818,8 @@ packages:
resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
engines: {node: '>=6'}
- 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-glob@4.0.3:
@@ -8545,8 +7836,9 @@ packages:
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
engines: {node: '>= 0.4'}
- is-node-process@1.2.0:
- resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==}
+ is-negative-zero@2.0.3:
+ resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
+ engines: {node: '>= 0.4'}
is-number-object@1.1.1:
resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
@@ -8560,14 +7852,6 @@ packages:
resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
engines: {node: '>=8'}
- 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'}
@@ -8576,10 +7860,6 @@ packages:
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
engines: {node: '>=12'}
- is-plain-object@2.0.4:
- resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
- engines: {node: '>=0.10.0'}
-
is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
@@ -8595,10 +7875,6 @@ packages:
resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
engines: {node: '>= 0.4'}
- is-stream@1.1.0:
- resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
- engines: {node: '>=0.10.0'}
-
is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
@@ -8652,10 +7928,6 @@ packages:
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- isobject@3.0.1:
- resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
- engines: {node: '>=0.10.0'}
-
isomorphic.js@0.2.5:
resolution: {integrity: sha512-PIeMbHqMt4DnUP3MA/Flc0HElYjMXArsw1qwJZcm9sqR8mq3l8NYizFMty0pWwE/tzIGH3EKK5+jes5mAr85yw==}
@@ -8698,8 +7970,8 @@ packages:
resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==}
engines: {node: '>=10'}
- istanbul-reports@3.1.7:
- resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
+ istanbul-reports@3.2.0:
+ resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==}
engines: {node: '>=8'}
iterator.prototype@1.1.5:
@@ -8709,6 +7981,10 @@ packages:
jackspeak@3.4.3:
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
+ jackspeak@4.1.1:
+ resolution: {integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==}
+ engines: {node: 20 || >=22}
+
jest-changed-files@29.7.0:
resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -8807,6 +8083,10 @@ packages:
resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-regex-util@30.0.1:
+ resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
jest-resolve-dependencies@29.7.0:
resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -8848,10 +8128,6 @@ packages:
resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- jest-worker@27.5.1:
- resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
- engines: {node: '>= 10.13.0'}
-
jest-worker@29.7.0:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -8873,8 +8149,8 @@ packages:
resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
hasBin: true
- jiti@2.4.2:
- resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
+ jiti@2.6.1:
+ resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
hasBin: true
jju@1.4.0:
@@ -8883,9 +8159,6 @@ packages:
joi@17.13.3:
resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==}
- join-component@1.1.0:
- resolution: {integrity: sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==}
-
jose@5.10.0:
resolution: {integrity: sha512-s+3Al/p9g32Iq+oqXxkW//7jk2Vig6FF1CFqzVXoTUXt2qz89YWbL+OwS17NFYEvxC35n0FKeGO2LGYSxeM2Gg==}
@@ -8893,8 +8166,8 @@ packages:
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
engines: {node: '>=10'}
- js-tiktoken@1.0.20:
- resolution: {integrity: sha512-Xlaqhhs8VfCd6Sh7a1cFkZHQbYTLCwVJJWiHVxBYzLPxW0XsoxBy1hitmjkdIjD3Aon5BXLHFwU5O8WUx6HH+A==}
+ js-tiktoken@1.0.21:
+ resolution: {integrity: sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==}
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -8910,24 +8183,15 @@ packages:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
- jsc-android@250231.0.0:
- resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==}
-
jsc-safe-url@0.2.4:
resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==}
- jscodeshift@0.14.0:
- resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==}
- hasBin: true
- peerDependencies:
- '@babel/preset-env': ^7.1.6
-
- jsdoc-type-pratt-parser@4.1.0:
- resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==}
+ jsdoc-type-pratt-parser@4.8.0:
+ resolution: {integrity: sha512-iZ8Bdb84lWRuGHamRXFyML07r21pcwBrLkHEuHgEY5UbCouBwv7ECknDRKzsQIXMiqpPymqtIf8TC/shYKB5rw==}
engines: {node: '>=12.0.0'}
- jsdom@26.0.0:
- resolution: {integrity: sha512-BZYDGVAIriBWTpIxYzrXjv3E/4u8+/pSG5bQdIYCbNCGOvsPkDQfTVLAIXAf9ETdCpduCVTkDe2NNZ8NIwUVzw==}
+ jsdom@26.1.0:
+ resolution: {integrity: sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==}
engines: {node: '>=18'}
peerDependencies:
canvas: ^3.0.0
@@ -8935,11 +8199,6 @@ packages:
canvas:
optional: true
- 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'}
@@ -8974,11 +8233,8 @@ packages:
jsonc-parser@3.3.1:
resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
- jsonfile@4.0.0:
- resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
-
- jsonfile@6.1.0:
- resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
+ jsonfile@6.2.0:
+ resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==}
jsonparse@1.3.1:
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
@@ -9012,17 +8268,13 @@ packages:
jws@4.0.0:
resolution: {integrity: sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==}
- katex@0.16.22:
- resolution: {integrity: sha512-XCHRdUw4lf3SKBaJe4EvgqIuWwkPSo9XoeO8GjQW94Bp7TWv9hNhzZjZ+OH9yf1UmLygb7DIT5GSFQiyt16zYg==}
+ katex@0.16.23:
+ resolution: {integrity: sha512-7VlC1hsEEolL9xNO05v9VjrvWZePkCVBJqj8ruICxYjZfHaHbaU53AlP+PODyFIXEnaEIEWi3wJy7FPZ95JAVg==}
hasBin: true
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
- kind-of@6.0.3:
- resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
- engines: {node: '>=0.10.0'}
-
kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
@@ -9034,8 +8286,12 @@ packages:
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
- langchain@0.3.29:
- resolution: {integrity: sha512-L389pKlApVJPqu4hp58qY6NZAobI+MFPoBjSfjT1z3mcxtB68wLFGhaH4DVsTVg21NYO+0wTEoz24BWrxu9YGw==}
+ lan-network@0.1.7:
+ resolution: {integrity: sha512-mnIlAEMu4OyEvUNdzco9xpuB9YVcPkQec+QsgycBCtPZvEqWPCDPfbAE4OJMdBBWpZWtpCn1xw9jJYlwjWI5zQ==}
+ hasBin: true
+
+ langchain@0.3.35:
+ resolution: {integrity: sha512-OkPstP43L3rgaAk72UAVcXy4BzJSiyzXfJsHRBTx9xD3rRtgrAu/jsWpMcsbFAoNO3iGerK+ULzkTzaBJBz6kg==}
engines: {node: '>=18'}
peerDependencies:
'@langchain/anthropic': '*'
@@ -9092,25 +8348,8 @@ packages:
typeorm:
optional: true
- langsmith@0.3.45:
- resolution: {integrity: sha512-+LNOy/Uv0OWbtcsKHhrVenGLkS8CaM/9Vd2/95QzgQ54YokXlD9sH5LNRNRqxJAMt/NsqoIbZSoXj6rt96e8hw==}
- peerDependencies:
- '@opentelemetry/api': '*'
- '@opentelemetry/exporter-trace-otlp-proto': '*'
- '@opentelemetry/sdk-trace-base': '*'
- openai: '*'
- peerDependenciesMeta:
- '@opentelemetry/api':
- optional: true
- '@opentelemetry/exporter-trace-otlp-proto':
- optional: true
- '@opentelemetry/sdk-trace-base':
- optional: true
- openai:
- optional: true
-
- langsmith@0.3.65:
- resolution: {integrity: sha512-p9CWvc0R1fAARgPyaGt2JTz1FXq0Zlrq57uiOKZOoTHzAauhwU3PFtANK0EYSoHAJqJNIaO6GIaVj4q0a7IiLw==}
+ langsmith@0.3.73:
+ resolution: {integrity: sha512-zuAAFiY6yfqU+Y8OicEmBqahLWqzMumNY7tcXnuGk8P26hS5aqh+9rXfI4zv0nr++97kNP9WCiBDgPWcrSWlDA==}
peerDependencies:
'@opentelemetry/api': '*'
'@opentelemetry/exporter-trace-otlp-proto': '*'
@@ -9126,58 +8365,58 @@ packages:
openai:
optional: true
- lefthook-darwin-arm64@1.11.3:
- resolution: {integrity: sha512-IYzAOf8Qwqk7q+LoRyy7kSk9vzpUZ5wb/vLzEAH/F86Vay9AUaWe1f2pzeLwFg18qEc1QNklT69h9p/uLQMojA==}
+ lefthook-darwin-arm64@1.13.6:
+ resolution: {integrity: sha512-m6Lb77VGc84/Qo21Lhq576pEvcgFCnvloEiP02HbAHcIXD0RTLy9u2yAInrixqZeaz13HYtdDaI7OBYAAdVt8A==}
cpu: [arm64]
os: [darwin]
- lefthook-darwin-x64@1.11.3:
- resolution: {integrity: sha512-z/Wp7UMjE1Vyl+x9sjN3NvN6qKdwgHl+cDf98MKKDg/WyPE5XnzqLm9rLLJgImjyClfH7ptTfZxEyhTG3M3XvQ==}
+ lefthook-darwin-x64@1.13.6:
+ resolution: {integrity: sha512-CoRpdzanu9RK3oXR1vbEJA5LN7iB+c7hP+sONeQJzoOXuq4PNKVtEaN84Gl1BrVtCNLHWFAvCQaZPPiiXSy8qg==}
cpu: [x64]
os: [darwin]
- lefthook-freebsd-arm64@1.11.3:
- resolution: {integrity: sha512-QevwQ7lrv5wBCkk7LLTzT5KR3Bk/5nttSxT1UH2o0EsgirS/c2K5xSgQmV6m3CiZYuCe2Pja4BSIwN3zt17SMw==}
+ lefthook-freebsd-arm64@1.13.6:
+ resolution: {integrity: sha512-X4A7yfvAJ68CoHTqP+XvQzdKbyd935sYy0bQT6Ajz7FL1g7hFiro8dqHSdPdkwei9hs8hXeV7feyTXbYmfjKQQ==}
cpu: [arm64]
os: [freebsd]
- lefthook-freebsd-x64@1.11.3:
- resolution: {integrity: sha512-PYbcyNgdJJ4J2pEO9Ss4oYo5yq4vmQGTKm3RTYbRx4viSWR65hvKCP0C4LnIqspMvmR05SJi2bqe7UBP2t60EA==}
+ lefthook-freebsd-x64@1.13.6:
+ resolution: {integrity: sha512-ai2m+Sj2kGdY46USfBrCqLKe9GYhzeq01nuyDYCrdGISePeZ6udOlD1k3lQKJGQCHb0bRz4St0r5nKDSh1x/2A==}
cpu: [x64]
os: [freebsd]
- lefthook-linux-arm64@1.11.3:
- resolution: {integrity: sha512-0pBMBAoafOAEg345eOPozsmRjWR0zCr6k+m5ZxwRBZbZx1bQFDqBakQ3TpFCphhcykmgFyaa1KeZJZUOrEsezA==}
+ lefthook-linux-arm64@1.13.6:
+ resolution: {integrity: sha512-cbo4Wtdq81GTABvikLORJsAWPKAJXE8Q5RXsICFUVznh5PHigS9dFW/4NXywo0+jfFPCT6SYds2zz4tCx6DA0Q==}
cpu: [arm64]
os: [linux]
- lefthook-linux-x64@1.11.3:
- resolution: {integrity: sha512-eiezheZ/bisBCMB2Ur0mctug/RDFyu39B5wzoE8y4z0W1yw6jHGrWMJ4Y8+5qKZ7fmdZg+7YPuMHZ2eFxOnhQA==}
+ lefthook-linux-x64@1.13.6:
+ resolution: {integrity: sha512-uJl9vjCIIBTBvMZkemxCE+3zrZHlRO7Oc+nZJ+o9Oea3fu+W82jwX7a7clw8jqNfaeBS+8+ZEQgiMHWCloTsGw==}
cpu: [x64]
os: [linux]
- lefthook-openbsd-arm64@1.11.3:
- resolution: {integrity: sha512-DRLTzXdtCj/TizpLcGSqXcnrqvgxeXgn/6nqzclIGqNdKCsNXDzpI0D3sP13Vwwmyoqv2etoTak2IHqZiXZDqg==}
+ lefthook-openbsd-arm64@1.13.6:
+ resolution: {integrity: sha512-7r153dxrNRQ9ytRs2PmGKKkYdvZYFPre7My7XToSTiRu5jNCq++++eAKVkoyWPduk97dGIA+YWiEr5Noe0TK2A==}
cpu: [arm64]
os: [openbsd]
- lefthook-openbsd-x64@1.11.3:
- resolution: {integrity: sha512-l7om+ZjWpYrVZyDuElwnucZhEqa7YfwlRaKBenkBxEh2zMje8O6Zodeuma1KmyDbSFvnvEjARo/Ejiot4gLXEw==}
+ lefthook-openbsd-x64@1.13.6:
+ resolution: {integrity: sha512-Z+UhLlcg1xrXOidK3aLLpgH7KrwNyWYE3yb7ITYnzJSEV8qXnePtVu8lvMBHs/myzemjBzeIr/U/+ipjclR06g==}
cpu: [x64]
os: [openbsd]
- lefthook-windows-arm64@1.11.3:
- resolution: {integrity: sha512-X0iTrql2gfPAkU2dzRwuHWgW5RcqCPbzJtKQ41X6Y/F7iQacRknmuYUGyC81funSvzGAsvlusMVLUvaFjIKnbA==}
+ lefthook-windows-arm64@1.13.6:
+ resolution: {integrity: sha512-Uxef6qoDxCmUNQwk8eBvddYJKSBFglfwAY9Y9+NnnmiHpWTjjYiObE9gT2mvGVpEgZRJVAatBXc+Ha5oDD/OgQ==}
cpu: [arm64]
os: [win32]
- lefthook-windows-x64@1.11.3:
- resolution: {integrity: sha512-F+ORMn6YJXoS0EXU5LtN1FgV4QX9rC9LucZEkRmK6sKmS7hcb9IHpyb7siRGytArYzJvXVjPbxPBNSBdN4egZQ==}
+ lefthook-windows-x64@1.13.6:
+ resolution: {integrity: sha512-mOZoM3FQh3o08M8PQ/b3IYuL5oo36D9ehczIw1dAgp1Ly+Tr4fJ96A+4SEJrQuYeRD4mex9bR7Ps56I73sBSZA==}
cpu: [x64]
os: [win32]
- lefthook@1.11.3:
- resolution: {integrity: sha512-HJp37y62j3j8qzAOODWuUJl4ysLwsDvCTBV6odr3jIRHR/a5e+tI14VQGIBcpK9ysqC3pGWyW5Rp9Jv1YDubyw==}
+ lefthook@1.13.6:
+ resolution: {integrity: sha512-ojj4/4IJ29Xn4drd5emqVgilegAPN3Kf0FQM2p/9+lwSTpU+SZ1v4Ig++NF+9MOa99UKY8bElmVrLhnUUNFh5g==}
hasBin: true
leven@3.1.0:
@@ -9188,13 +8427,13 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
- lib0@0.2.109:
- resolution: {integrity: sha512-jP0gbnyW0kwlx1Atc4dcHkBbrVAkdHjuyHxtClUPYla7qCmwIif1qZ6vQeJdR5FrOVdn26HvQT0ko01rgW7/Xw==}
+ lib0@0.2.114:
+ resolution: {integrity: sha512-gcxmNFzA4hv8UYi8j43uPlQ7CGcyMJ2KQb5kZASw6SnAKAf10hK12i2fjrS3Cl/ugZa5Ui6WwIu1/6MIXiHttQ==}
engines: {node: '>=16'}
hasBin: true
- libphonenumber-js@1.12.10:
- resolution: {integrity: sha512-E91vHJD61jekHHR/RF/E83T/CMoaLXT7cwYA75T4gim4FZjnM6hbJjVIGg7chqlSqRsSvQ3izGmOjHy1SQzcGQ==}
+ libphonenumber-js@1.12.24:
+ resolution: {integrity: sha512-l5IlyL9AONj4voSd7q9xkuQOL4u8Ty44puTic7J88CmdXkxfGsRfoVLXHCxppwehgpb/Chdb80FFehHqjN3ItQ==}
lighthouse-logger@1.4.2:
resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==}
@@ -9205,132 +8444,64 @@ packages:
cpu: [arm64]
os: [darwin]
- lightningcss-darwin-arm64@1.29.2:
- resolution: {integrity: sha512-cK/eMabSViKn/PG8U/a7aCorpeKLMlK0bQeNHmdb7qUnBkNPnL+oV5DjJUo0kqWsJUapZsM4jCfYItbqBDvlcA==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm64]
- os: [darwin]
-
lightningcss-darwin-x64@1.27.0:
resolution: {integrity: sha512-0+mZa54IlcNAoQS9E0+niovhyjjQWEMrwW0p2sSdLRhLDc8LMQ/b67z7+B5q4VmjYCMSfnFi3djAAQFIDuj/Tg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
- lightningcss-darwin-x64@1.29.2:
- resolution: {integrity: sha512-j5qYxamyQw4kDXX5hnnCKMf3mLlHvG44f24Qyi2965/Ycz829MYqjrVg2H8BidybHBp9kom4D7DR5VqCKDXS0w==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [darwin]
-
lightningcss-freebsd-x64@1.27.0:
resolution: {integrity: sha512-n1sEf85fePoU2aDN2PzYjoI8gbBqnmLGEhKq7q0DKLj0UTVmOTwDC7PtLcy/zFxzASTSBlVQYJUhwIStQMIpRA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
- lightningcss-freebsd-x64@1.29.2:
- resolution: {integrity: sha512-wDk7M2tM78Ii8ek9YjnY8MjV5f5JN2qNVO+/0BAGZRvXKtQrBC4/cn4ssQIpKIPP44YXw6gFdpUF+Ps+RGsCwg==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [freebsd]
-
lightningcss-linux-arm-gnueabihf@1.27.0:
resolution: {integrity: sha512-MUMRmtdRkOkd5z3h986HOuNBD1c2lq2BSQA1Jg88d9I7bmPGx08bwGcnB75dvr17CwxjxD6XPi3Qh8ArmKFqCA==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
- lightningcss-linux-arm-gnueabihf@1.29.2:
- resolution: {integrity: sha512-IRUrOrAF2Z+KExdExe3Rz7NSTuuJ2HvCGlMKoquK5pjvo2JY4Rybr+NrKnq0U0hZnx5AnGsuFHjGnNT14w26sg==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm]
- os: [linux]
-
lightningcss-linux-arm64-gnu@1.27.0:
resolution: {integrity: sha512-cPsxo1QEWq2sfKkSq2Bq5feQDHdUEwgtA9KaB27J5AX22+l4l0ptgjMZZtYtUnteBofjee+0oW1wQ1guv04a7A==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
- lightningcss-linux-arm64-gnu@1.29.2:
- resolution: {integrity: sha512-KKCpOlmhdjvUTX/mBuaKemp0oeDIBBLFiU5Fnqxh1/DZ4JPZi4evEH7TKoSBFOSOV3J7iEmmBaw/8dpiUvRKlQ==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm64]
- os: [linux]
-
lightningcss-linux-arm64-musl@1.27.0:
resolution: {integrity: sha512-rCGBm2ax7kQ9pBSeITfCW9XSVF69VX+fm5DIpvDZQl4NnQoMQyRwhZQm9pd59m8leZ1IesRqWk2v/DntMo26lg==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
- lightningcss-linux-arm64-musl@1.29.2:
- resolution: {integrity: sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm64]
- os: [linux]
-
lightningcss-linux-x64-gnu@1.27.0:
resolution: {integrity: sha512-Dk/jovSI7qqhJDiUibvaikNKI2x6kWPN79AQiD/E/KeQWMjdGe9kw51RAgoWFDi0coP4jinaH14Nrt/J8z3U4A==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
- lightningcss-linux-x64-gnu@1.29.2:
- resolution: {integrity: sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [linux]
-
lightningcss-linux-x64-musl@1.27.0:
resolution: {integrity: sha512-QKjTxXm8A9s6v9Tg3Fk0gscCQA1t/HMoF7Woy1u68wCk5kS4fR+q3vXa1p3++REW784cRAtkYKrPy6JKibrEZA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
- lightningcss-linux-x64-musl@1.29.2:
- resolution: {integrity: sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [linux]
-
lightningcss-win32-arm64-msvc@1.27.0:
resolution: {integrity: sha512-/wXegPS1hnhkeG4OXQKEMQeJd48RDC3qdh+OA8pCuOPCyvnm/yEayrJdJVqzBsqpy1aJklRCVxscpFur80o6iQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [win32]
- lightningcss-win32-arm64-msvc@1.29.2:
- resolution: {integrity: sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm64]
- os: [win32]
-
lightningcss-win32-x64-msvc@1.27.0:
resolution: {integrity: sha512-/OJLj94Zm/waZShL8nB5jsNj3CfNATLCTyFxZyouilfTmSoLDX7VlVAmhPHoZWVFp4vdmoiEbPEYC8HID3m6yw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
- lightningcss-win32-x64-msvc@1.29.2:
- resolution: {integrity: sha512-EdIUW3B2vLuHmv7urfzMI/h2fmlnOQBk1xlsDxkN1tCWKjNFjfLhGxYk8C8mzpSfr+A6jFFIi8fU6LbQGsRWjA==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [win32]
-
lightningcss@1.27.0:
resolution: {integrity: sha512-8f7aNmS1+etYSLHht0fQApPc2kNO8qGRutifN5rVIc6Xo6ABsEbqOr758UwI7ALVbTt4x1fllKt0PYgzD9S3yQ==}
engines: {node: '>= 12.0.0'}
- lightningcss@1.29.2:
- resolution: {integrity: sha512-6b6gd/RUXKaw5keVdSEtqFVdzWnU5jMxTUjA2bVcMNPLwSQ08Sv/UodBVtETLCn7k4S1Ibxwh7k68IwLZPgKaA==}
- engines: {node: '>= 12.0.0'}
-
- lilconfig@2.1.0:
- resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
- engines: {node: '>=10'}
-
lilconfig@3.1.3:
resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
engines: {node: '>=14'}
@@ -9344,8 +8515,8 @@ packages:
linkify-it@5.0.0:
resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
- linkifyjs@4.2.0:
- resolution: {integrity: sha512-pCj3PrQyATaoTYKHrgWRF3SJwsm61udVh+vuls/Rl6SptiDhgE7ziUIudAedRY9QEfynmM7/RmLEfPUyw1HPCw==}
+ linkifyjs@4.3.2:
+ resolution: {integrity: sha512-NT1CJtq3hHIreOianA8aSXn6Cw0JzYOuDQbOrSPe7gqFnCpKP++MQe3ODgO3oh2GJFORkAAdqredOa60z63GbA==}
load-json-file@4.0.0:
resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==}
@@ -9355,14 +8526,6 @@ packages:
resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- loader-runner@4.3.0:
- resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
- engines: {node: '>=6.11.5'}
-
- loader-utils@2.0.4:
- resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
- engines: {node: '>=8.9.0'}
-
local-pkg@0.5.1:
resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
engines: {node: '>=14'}
@@ -9465,8 +8628,8 @@ packages:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
- loupe@3.1.4:
- resolution: {integrity: sha512-wJzkKwJrheKtknCOKNEtDK4iqg/MxmZheEMtSTYvnzRdEYaZzmgH976nenp8WdJRdx5Vc1X/9MO0Oszl6ezeXg==}
+ loupe@3.2.1:
+ resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==}
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
@@ -9477,6 +8640,10 @@ packages:
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
+ lru-cache@11.2.2:
+ resolution: {integrity: sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==}
+ engines: {node: 20 || >=22}
+
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
@@ -9491,29 +8658,25 @@ packages:
lucide-react-native@0.378.0:
resolution: {integrity: sha512-Xvqxjc3N5040Ui6tZaSbpNnNjWXDa+nRzYct4rXd2mWX+g2qxKPpEHoqNumrpky9rhsIxD8w4BSbjdkpGQTMYw==}
peerDependencies:
- react: ^16.5.1 || ^17.0.0 || ^18.0.0
+ react: 19.0.0
react-native: '*'
react-native-svg: ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0
lucide-react@0.383.0:
resolution: {integrity: sha512-13xlG0CQCJtzjSQYwwJ3WRqMHtRj3EXmLlorrARt7y+IHnxUCp3XyFNL1DfaGySWxHObDvnu1u1dV+0VMKHUSg==}
peerDependencies:
- react: ^16.5.1 || ^17.0.0 || ^18.0.0
+ react: 19.0.0
lz-string@1.5.0:
resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
- magic-string@0.30.17:
- resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
+ magic-string@0.30.19:
+ resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==}
magicast@0.3.5:
resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
- make-dir@2.1.0:
- resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
- engines: {node: '>=6'}
-
make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
@@ -9539,21 +8702,13 @@ packages:
markdown-table@3.0.4:
resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
- marky@1.2.5:
- resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==}
+ marky@1.3.0:
+ resolution: {integrity: sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==}
math-intrinsics@1.1.0:
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
engines: {node: '>= 0.4'}
- md5-file@3.2.3:
- resolution: {integrity: sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==}
- engines: {node: '>=0.10'}
- hasBin: true
-
- md5@2.3.0:
- resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==}
-
mdast-util-definitions@5.1.2:
resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==}
@@ -9668,61 +8823,61 @@ packages:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
- metro-babel-transformer@0.81.3:
- resolution: {integrity: sha512-ENqtnPy2mQZFOuKrbqHRcAwZuaYe43X+30xIF0xlkLuMyCvc0CsFzrrSK9EqrQwexhVlqaRALb0GQbBMcE/y8g==}
+ metro-babel-transformer@0.82.5:
+ resolution: {integrity: sha512-W/scFDnwJXSccJYnOFdGiYr9srhbHPdxX9TvvACOFsIXdLilh3XuxQl/wXW6jEJfgIb0jTvoTlwwrqvuwymr6Q==}
engines: {node: '>=18.18'}
- metro-cache-key@0.81.3:
- resolution: {integrity: sha512-KPsPSRUd6uRva7k7k/DqiiD8td7URQWx0RkX/Cj5+bed5zSXEg/XoQA+b+DmMxS5C7TqP61Fh3XvHx6TQRW82A==}
+ metro-cache-key@0.82.5:
+ resolution: {integrity: sha512-qpVmPbDJuRLrT4kcGlUouyqLGssJnbTllVtvIgXfR7ZuzMKf0mGS+8WzcqzNK8+kCyakombQWR0uDd8qhWGJcA==}
engines: {node: '>=18.18'}
- metro-cache@0.81.3:
- resolution: {integrity: sha512-6UelMQYjlto/79tTXu0vsTxAX4e+Bkf0tgtDL1BNx3wd68pBg8qKIYpJPaUlOIaNUzFXTBDjYwUverkEW0KAtA==}
+ metro-cache@0.82.5:
+ resolution: {integrity: sha512-AwHV9607xZpedu1NQcjUkua8v7HfOTKfftl6Vc9OGr/jbpiJX6Gpy8E/V9jo/U9UuVYX2PqSUcVNZmu+LTm71Q==}
engines: {node: '>=18.18'}
- metro-config@0.81.3:
- resolution: {integrity: sha512-WpTaT0iQr5juVY50Y/cyacG2ggZqF38VshEQepT+ovPK8E/xUVxlbO5yxLSXUxxUXX3Hka9r6g64+y2WC6c/xQ==}
+ metro-config@0.82.5:
+ resolution: {integrity: sha512-/r83VqE55l0WsBf8IhNmc/3z71y2zIPe5kRSuqA5tY/SL/ULzlHUJEMd1szztd0G45JozLwjvrhAzhDPJ/Qo/g==}
engines: {node: '>=18.18'}
- metro-core@0.81.3:
- resolution: {integrity: sha512-WZ+qohnpvvSWdPj1VJPUrZz+2ik29M+UUpMU6YrmzQUfDyZ6JYHhzlw5WVBtwpt/+2xTsIyrZ2C1fByT/DsLQA==}
+ metro-core@0.82.5:
+ resolution: {integrity: sha512-OJL18VbSw2RgtBm1f2P3J5kb892LCVJqMvslXxuxjAPex8OH7Eb8RBfgEo7VZSjgb/LOf4jhC4UFk5l5tAOHHA==}
engines: {node: '>=18.18'}
- metro-file-map@0.81.3:
- resolution: {integrity: sha512-F+t4lnVRoauJxtr9xmI4pWIOE77/vl0IrHDGeJSI9cW6LmuqxkpOlZHTKpbs/hMAo6+KhG2JMJACQDvXDLd/GA==}
+ metro-file-map@0.82.5:
+ resolution: {integrity: sha512-vpMDxkGIB+MTN8Af5hvSAanc6zXQipsAUO+XUx3PCQieKUfLwdoa8qaZ1WAQYRpaU+CJ8vhBcxtzzo3d9IsCIQ==}
engines: {node: '>=18.18'}
- metro-minify-terser@0.81.3:
- resolution: {integrity: sha512-912AYv3OmwcbUwzCdWbdQRk+RV6kXXluHKlhBdYFD3kr4Ece691rzlofU/Mlt9qZrhHtctD5Q8cFqOEf9Z69bQ==}
+ metro-minify-terser@0.82.5:
+ resolution: {integrity: sha512-v6Nx7A4We6PqPu/ta1oGTqJ4Usz0P7c+3XNeBxW9kp8zayS3lHUKR0sY0wsCHInxZlNAEICx791x+uXytFUuwg==}
engines: {node: '>=18.18'}
- metro-resolver@0.81.3:
- resolution: {integrity: sha512-XnjENY1c6jcsEfFVIjN/8McUIInCVgGxv5eva+9ZWeCTyiAE/L5HPj2ai/Myb349+6QuSMR0dscTkKCnOwWXdw==}
+ metro-resolver@0.82.5:
+ resolution: {integrity: sha512-kFowLnWACt3bEsuVsaRNgwplT8U7kETnaFHaZePlARz4Fg8tZtmRDUmjaD68CGAwc0rwdwNCkWizLYpnyVcs2g==}
engines: {node: '>=18.18'}
- metro-runtime@0.81.3:
- resolution: {integrity: sha512-neuGRMC2pgGKIFPbmbrxW41/SmvL7OX4i1LN+saUY2t1cZfxf9haQHUMCGhO3498uEL2N+ulKRSlQrHt6XwGaw==}
+ metro-runtime@0.82.5:
+ resolution: {integrity: sha512-rQZDoCUf7k4Broyw3Ixxlq5ieIPiR1ULONdpcYpbJQ6yQ5GGEyYjtkztGD+OhHlw81LCR2SUAoPvtTus2WDK5g==}
engines: {node: '>=18.18'}
- metro-source-map@0.81.3:
- resolution: {integrity: sha512-BHJJurmDQRn3hCbBawh/UHzPz3duMpwpE3ofImO2DoWHYzn6nSg/D4wfCN4y14d9fFLE4e0I+BAOX1HWNP4jsw==}
+ metro-source-map@0.82.5:
+ resolution: {integrity: sha512-wH+awTOQJVkbhn2SKyaw+0cd+RVSCZ3sHVgyqJFQXIee/yLs3dZqKjjeKKhhVeudgjXo7aE/vSu/zVfcQEcUfw==}
engines: {node: '>=18.18'}
- metro-symbolicate@0.81.3:
- resolution: {integrity: sha512-LQLT6WopQmIz2SDSVh3Lw7nLzF58HpsrPYqRB7RpRXBYhYmPFIjiGaP8qqtKHXczM/5YAOJzpgt8t/OGZgh6Eg==}
+ metro-symbolicate@0.82.5:
+ resolution: {integrity: sha512-1u+07gzrvYDJ/oNXuOG1EXSvXZka/0JSW1q2EYBWerVKMOhvv9JzDGyzmuV7hHbF2Hg3T3S2uiM36sLz1qKsiw==}
engines: {node: '>=18.18'}
hasBin: true
- metro-transform-plugins@0.81.3:
- resolution: {integrity: sha512-4JMUXhBB5y4h3dyA272k7T7+U3+J4fSBcct0Y8Yur9ziZB/dK8fieEQg5ZPfEGsgOGI+54zTzOUqga6AgmZSNg==}
+ metro-transform-plugins@0.82.5:
+ resolution: {integrity: sha512-57Bqf3rgq9nPqLrT2d9kf/2WVieTFqsQ6qWHpEng5naIUtc/Iiw9+0bfLLWSAw0GH40iJ4yMjFcFJDtNSYynMA==}
engines: {node: '>=18.18'}
- metro-transform-worker@0.81.3:
- resolution: {integrity: sha512-KZqm9sVyBKRygUxRm+yP4DguE9R1EEv28KJhIxghNp5dcdVXBYUPe1xHoc3QVdzD9c3tf8JFzA2FBlKTlwMwNg==}
+ metro-transform-worker@0.82.5:
+ resolution: {integrity: sha512-mx0grhAX7xe+XUQH6qoHHlWedI8fhSpDGsfga7CpkO9Lk9W+aPitNtJWNGrW8PfjKEWbT9Uz9O50dkI8bJqigw==}
engines: {node: '>=18.18'}
- metro@0.81.3:
- resolution: {integrity: sha512-upilFs7z1uLKvdzFYHiVKrGT/uC7h7d53R0g/FaJoQvLfA8jQG2V69jeOcGi4wCsFYvl1zBSZvKxpQb0nA3giQ==}
+ metro@0.82.5:
+ resolution: {integrity: sha512-8oAXxL7do8QckID/WZEKaIFuQJFUTLzfVcC48ghkHhNK2RGuQq8Xvf4AVd+TUA0SZtX0q8TGNXZ/eba1ckeGCg==}
engines: {node: '>=18.18'}
hasBin: true
@@ -9884,6 +9039,10 @@ packages:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
+ mime-db@1.54.0:
+ resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
+ engines: {node: '>= 0.6'}
+
mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
@@ -9905,6 +9064,10 @@ packages:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
+ minimatch@10.0.3:
+ resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==}
+ engines: {node: 20 || >=22}
+
minimatch@3.0.8:
resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==}
@@ -9915,6 +9078,10 @@ packages:
resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
engines: {node: '>=10'}
+ minimatch@8.0.4:
+ resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
minimatch@9.0.5:
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -9922,64 +9089,44 @@ packages:
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- minipass-collect@2.0.1:
- resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
- engines: {node: '>=16 || 14 >=14.17'}
-
- minipass-flush@1.0.5:
- resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
- engines: {node: '>= 8'}
-
- minipass-pipeline@1.2.4:
- resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
- engines: {node: '>=8'}
-
- minipass@3.3.6:
- resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
- engines: {node: '>=8'}
-
- minipass@5.0.0:
- resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
+ minipass@4.2.8:
+ resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==}
engines: {node: '>=8'}
minipass@7.1.2:
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
- minizlib@2.1.2:
- resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
- engines: {node: '>= 8'}
+ minizlib@3.1.0:
+ resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==}
+ engines: {node: '>= 18'}
mitt@3.0.1:
resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
- mkdirp@0.5.6:
- resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
- hasBin: true
-
mkdirp@1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
hasBin: true
- mlly@1.7.4:
- resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==}
+ mlly@1.8.0:
+ resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==}
mockdate@3.0.5:
resolution: {integrity: sha512-iniQP4rj1FhBdBYS/+eQv7j1tadJ9lJtdzgOpvsOHng/GbcDh2Fhdeq+ZRldrPYdXvCyfFUmFeEwEGXZB5I/AQ==}
- motion-dom@12.17.0:
- resolution: {integrity: sha512-FA6/c70R9NKs3g41XDVONzmUUrEmyaifLVGCWtAmHP0usDnX9W+RN/tmbC4EUl0w6yLGvMTOwnWCFVgA5luhRg==}
+ motion-dom@12.23.23:
+ resolution: {integrity: sha512-n5yolOs0TQQBRUFImrRfs/+6X4p3Q4n1dUEqt/H58Vx7OW6RF+foWEgmTVDhIWJIMXOuNNL0apKH2S16en9eiA==}
- motion-utils@12.12.1:
- resolution: {integrity: sha512-f9qiqUHm7hWSLlNW8gS9pisnsN7CRFRD58vNjptKdsqFLpkVnX00TNeD6Q0d27V9KzT7ySFyK1TZ/DShfVOv6w==}
+ motion-utils@12.23.6:
+ resolution: {integrity: sha512-eAWoPgr4eFEOFfg2WjIsMoqJTW6Z8MTUCgn/GZ3VRpClWBdnbjryiA3ZSNLyxCTmCQx4RmYX6jX1iWHbenUPNQ==}
- motion@12.17.0:
- resolution: {integrity: sha512-04K87lcwuA1vK3CLpKegncbBq6y2dmQjUsp9iPz0SxFACdBtEHB3V120k0G/t1blHATFuoqMrrLELRljUdQCeg==}
+ motion@12.23.24:
+ resolution: {integrity: sha512-Rc5E7oe2YZ72N//S3QXGzbnXgqNrTESv8KKxABR20q2FLch9gHLo0JLyYo2hZ238bZ9Gx6cWhj9VO0IgwbMjCw==}
peerDependencies:
'@emotion/is-prop-valid': '*'
- react: ^18.0.0 || ^19.0.0
- react-dom: ^18.0.0 || ^19.0.0
+ react: 19.0.0
+ react-dom: 19.0.0
peerDependenciesMeta:
'@emotion/is-prop-valid':
optional: true
@@ -10002,16 +9149,6 @@ packages:
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- msw@2.10.4:
- resolution: {integrity: sha512-6R1or/qyele7q3RyPwNuvc0IxO8L8/Aim6Sz5ncXEgcWUNxSKE+udriTOWHtpMwmfkLYlacA2y7TIx4cL5lgHA==}
- engines: {node: '>=18'}
- hasBin: true
- peerDependencies:
- typescript: '>= 4.8.x'
- peerDependenciesMeta:
- typescript:
- optional: true
-
muggle-string@0.4.1:
resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
@@ -10019,33 +9156,29 @@ packages:
resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==}
hasBin: true
- mute-stream@2.0.0:
- resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
- nanoid@3.3.8:
- resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
+ nanoid@3.3.11:
+ resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@5.0.9:
- resolution: {integrity: sha512-Aooyr6MXU6HpvvWXKoVoXwKMs/KyVakWwg7xQfv5/S/RIgJMy0Ifa45H9qqYy7pTCszrHzP21Uk4PZq2HpEM8Q==}
+ nanoid@5.1.5:
+ resolution: {integrity: sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw==}
engines: {node: ^18 || >=20}
hasBin: true
- nanoid@5.1.5:
- resolution: {integrity: sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw==}
+ nanoid@5.1.6:
+ resolution: {integrity: sha512-c7+7RQ+dMB5dPwwCp4ee1/iV/q2P6aK1mTZcfr1BTuVlyW9hJYiMPybJCcnBlQtuSmTIWNeazm/zqNoZSSElBg==}
engines: {node: ^18 || >=20}
hasBin: true
nanospinner@1.2.2:
resolution: {integrity: sha512-Zt/AmG6qRU3e+WnzGGLuMCEAO/dAu45stNbHY223tUxldaDAeE+FxSPsd9Q+j+paejmm0ZbrNVs5Sraqy3dRxA==}
- nativewind@4.1.23:
- resolution: {integrity: sha512-oLX3suGI6ojQqWxdQezOSM5GmJ4KvMnMtmaSMN9Ggb5j7ysFt4nHxb1xs8RDjZR7BWc+bsetNJU8IQdQMHqRpg==}
+ nativewind@4.2.1:
+ resolution: {integrity: sha512-10uUB2Dlli3MH3NDL5nMHqJHz1A3e/E6mzjTj6cl7hHECClJ7HpE6v+xZL+GXdbwQSnWE+UWMIMsNz7yOQkAJQ==}
engines: {node: '>=16'}
peerDependencies:
tailwindcss: '>3.3.0'
@@ -10061,9 +9194,6 @@ 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==}
@@ -10071,14 +9201,14 @@ packages:
resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==}
engines: {node: '>= 0.4.0'}
- nice-grpc-client-middleware-retry@3.1.11:
- resolution: {integrity: sha512-xW/imz/kNG2g0DwTfH2eYEGrg1chSLrXtvGp9fg2qkhTgGFfAS/Pq3+t+9G8KThcC4hK/xlEyKvZWKk++33S6A==}
+ nice-grpc-client-middleware-retry@3.1.12:
+ resolution: {integrity: sha512-CHKIeHznAePOsT2dLeGwoOFaybQz6LvkIsFfN8SLcyGyTR7AB6vZMaECJjx+QPL8O2qVgaVE167PdeOmQrPuag==}
nice-grpc-common@2.0.2:
resolution: {integrity: sha512-7RNWbls5kAL1QVUOXvBsv1uO0wPQK3lHv+cY1gwkTzirnG1Nop4cBJZubpgziNbaVc/bl9QJcyvsf/NQxa3rjQ==}
- nice-grpc@2.1.12:
- resolution: {integrity: sha512-J1n4Wg+D3IhRhGQb+iqh2OpiM0GzTve/kf2lnlW4S+xczmIEd0aHUDV1OsJ5a3q8GSTqJf+s4Rgg1M8uJltarw==}
+ nice-grpc@2.1.13:
+ resolution: {integrity: sha512-IkXNok2NFyYh0WKp1aJFwFV3Ue2frBkJ16ojrmgX3Tc9n0g7r0VU+ur3H/leDHPPGsEeVozdMynGxYT30k3D/Q==}
nice-try@1.0.5:
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
@@ -10086,10 +9216,6 @@ packages:
no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
- node-dir@0.1.17:
- resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
- engines: {node: '>= 0.10.5'}
-
node-domexception@1.0.0:
resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
engines: {node: '>=10.5.0'}
@@ -10115,8 +9241,8 @@ packages:
resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==}
engines: {node: '>=8'}
- node-releases@2.0.19:
- resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
+ node-releases@2.0.23:
+ resolution: {integrity: sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg==}
normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
@@ -10138,10 +9264,6 @@ packages:
engines: {node: '>= 4'}
hasBin: true
- npm-run-path@2.0.2:
- resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
- engines: {node: '>=4'}
-
npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
@@ -10155,16 +9277,16 @@ packages:
number-flow@0.5.8:
resolution: {integrity: sha512-FPr1DumWyGi5Nucoug14bC6xEz70A1TnhgSHhKyfqjgji2SOTz+iLJxKtv37N5JyJbteGYCm6NQ9p1O4KZ7iiA==}
- nwsapi@2.2.16:
- resolution: {integrity: sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==}
+ nwsapi@2.2.22:
+ resolution: {integrity: sha512-ujSMe1OWVn55euT1ihwCI1ZcAaAU3nxUiDwfDQldc51ZXaB9m2AyOn6/jh1BLe2t/G8xd6uKG1UBF2aZJeg2SQ==}
nyc@15.1.0:
resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==}
engines: {node: '>=8.9'}
hasBin: true
- ob1@0.81.3:
- resolution: {integrity: sha512-wd8zdH0DWsn2iDVn2zT/QURihcqoc73K8FhNCmQ16qkJaoYJLNb/N+huOwdCgsbNP8Lk/s1+dPnDETx+RzsrWA==}
+ ob1@0.82.5:
+ resolution: {integrity: sha512-QyQQ6e66f+Ut/qUVjEce0E/wux5nAGLXYZDn1jr15JWstHsCH3l6VVrg8NKDptW9NEiBXKOJeGF/ydxeSDF3IQ==}
engines: {node: '>=18.18'}
object-assign@4.1.1:
@@ -10215,8 +9337,8 @@ packages:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
- on-headers@1.0.2:
- resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
+ on-headers@1.1.0:
+ resolution: {integrity: sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==}
engines: {node: '>= 0.8'}
once@1.4.0:
@@ -10272,13 +9394,6 @@ packages:
resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==}
engines: {node: '>=0.10.0'}
- os-tmpdir@1.0.2:
- resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
- engines: {node: '>=0.10.0'}
-
- outvariant@1.4.3:
- resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==}
-
own-keys@1.0.1:
resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
engines: {node: '>= 0.4'}
@@ -10319,10 +9434,6 @@ packages:
resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==}
engines: {node: '>=8'}
- p-map@4.0.0:
- resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
- engines: {node: '>=10'}
-
p-queue@6.6.2:
resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
engines: {node: '>=8'}
@@ -10380,8 +9491,8 @@ packages:
resolution: {integrity: sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==}
engines: {node: '>=10'}
- parse5@7.2.1:
- resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
+ parse5@7.3.0:
+ resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
@@ -10390,9 +9501,6 @@ packages:
partial-json@0.1.7:
resolution: {integrity: sha512-Njv/59hHaokb/hRUjce3Hdv12wd60MtM9Z5Olmn+nehe0QDAsRtRbJPvJ0Z91TusF0SuZRIvnM+S4l6EIP8leA==}
- password-prompt@1.1.3:
- resolution: {integrity: sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==}
-
path-browserify@1.0.1:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
@@ -10427,12 +9535,13 @@ packages:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
+ path-scurry@2.0.0:
+ resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==}
+ engines: {node: 20 || >=22}
+
path-to-regexp@0.1.12:
resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
- path-to-regexp@6.3.0:
- resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
-
path-type@3.0.0:
resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
engines: {node: '>=4'}
@@ -10444,8 +9553,8 @@ packages:
pathe@2.0.3:
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
- pathval@2.0.0:
- resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==}
+ pathval@2.0.1:
+ resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==}
engines: {node: '>= 14.16'}
peek-readable@4.1.0:
@@ -10466,8 +9575,8 @@ packages:
resolution: {integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==}
engines: {node: '>=10'}
- picomatch@4.0.2:
- resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ picomatch@4.0.3:
+ resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
engines: {node: '>=12'}
pidtree@0.3.1:
@@ -10483,10 +9592,6 @@ packages:
resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
engines: {node: '>=4'}
- pify@4.0.1:
- resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
- engines: {node: '>=6'}
-
pino-abstract-transport@2.0.0:
resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==}
@@ -10497,18 +9602,14 @@ packages:
pino-std-serializers@7.0.0:
resolution: {integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==}
- pino@9.7.0:
- resolution: {integrity: sha512-vnMCM6xZTb1WDmLvtG2lE/2p+t9hDEIvTWJsu6FejkE62vB7gDhvzrpFR4Cw2to+9JNQxVnkAKVPA1KPB98vWg==}
+ pino@9.13.1:
+ resolution: {integrity: sha512-Szuj+ViDTjKPQYiKumGmEn3frdl+ZPSdosHyt9SnUevFosOkMY2b7ipxlEctNKPmMD/VibeBI+ZcZCJK+4DPuw==}
hasBin: true
- pirates@4.0.6:
- resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
+ pirates@4.0.7:
+ resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
engines: {node: '>= 6'}
- pkg-dir@3.0.0:
- resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
- engines: {node: '>=6'}
-
pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
@@ -10516,13 +9617,17 @@ packages:
pkg-types@1.3.1:
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
- playwright-core@1.52.0:
- resolution: {integrity: sha512-l2osTgLXSMeuLZOML9qYODUQoPPnUsKsb5/P6LJ2e6uPKXUdPK5WYhN4z03G+YNbWmGDY4YENauNu4ZKczreHg==}
+ pkg-up@3.1.0:
+ resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
+ engines: {node: '>=8'}
+
+ playwright-core@1.56.0:
+ resolution: {integrity: sha512-1SXl7pMfemAMSDn5rkPeZljxOCYAmQnYLBTExuh6E8USHXGSX3dx6lYZN/xPpTz1vimXmPA9CDnILvmJaB8aSQ==}
engines: {node: '>=18'}
hasBin: true
- playwright@1.52.0:
- resolution: {integrity: sha512-JAwMNMBlxJ2oD1kce4KPtMkDeKGHQstdpFPcPH3maElAXon/QZeTvtsfXmTMRyO9TslfoYOXkSsvao2nE1ilTw==}
+ playwright@1.56.0:
+ resolution: {integrity: sha512-X5Q1b8lOdWIE4KAoHpW3SE8HvUB+ZZsUoN64ZhjnN8dOb1UpujxBtENGiZFE+9F/yhzJwYa+ca3u43FeLbboHA==}
engines: {node: '>=18'}
hasBin: true
@@ -10538,9 +9643,9 @@ packages:
resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==}
engines: {node: '>=10'}
- portfinder@1.0.32:
- resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==}
- engines: {node: '>= 0.12.0'}
+ portfinder@1.0.38:
+ resolution: {integrity: sha512-rEwq/ZHlJIKw++XtLAO8PPuOQA/zaPJOZJ37BVuN97nLpMJeuDVLVGRwbFoBgLudgdTMP2hdRJP++H+8QOA3vg==}
+ engines: {node: '>= 10.12'}
possible-typed-array-names@1.1.0:
resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
@@ -10552,30 +9657,18 @@ packages:
peerDependencies:
postcss: ^8.0.0
- postcss-import@16.1.0:
- resolution: {integrity: sha512-7hsAZ4xGXl4MW+OKEWCnF6T5jqBw80/EE9aXg1r2yyn1RsVEU8EtKXbijEODa+rg7iih4bKf7vlvTGYR4CnPNg==}
+ postcss-import@16.1.1:
+ resolution: {integrity: sha512-2xVS1NCZAfjtVdvXiyegxzJ447GyqCeEI5V7ApgQVOWnros1p5lGNovJNapwPpMombyFBfqDwt7AD3n2l0KOfQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
postcss: ^8.0.0
- postcss-js@4.0.1:
- resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
+ postcss-js@4.1.0:
+ resolution: {integrity: sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.4.21
- postcss-load-config@4.0.2:
- resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
- engines: {node: '>= 14'}
- peerDependencies:
- postcss: '>=8.0.9'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- postcss:
- optional: true
- ts-node:
- optional: true
-
postcss-load-config@6.0.1:
resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
engines: {node: '>= 18'}
@@ -10611,29 +9704,31 @@ packages:
resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.5.3:
- resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
+ postcss@8.5.6:
+ resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- prettier-plugin-organize-imports@4.1.0:
- resolution: {integrity: sha512-5aWRdCgv645xaa58X8lOxzZoiHAldAPChljr/MT0crXVOWTZ+Svl4hIWlz+niYSlO6ikE5UXkN1JrRvIP2ut0A==}
+ prettier-plugin-organize-imports@4.3.0:
+ resolution: {integrity: sha512-FxFz0qFhyBsGdIsb697f/EkvHzi5SZOhWAjxcx2dLt+Q532bAlhswcXGYB1yzjZ69kW8UoadFBw7TyNwlq96Iw==}
peerDependencies:
prettier: '>=2.0'
typescript: '>=2.9'
- vue-tsc: ^2.1.0
+ vue-tsc: ^2.1.0 || 3
peerDependenciesMeta:
vue-tsc:
optional: true
- prettier-plugin-tailwindcss@0.6.11:
- resolution: {integrity: sha512-YxaYSIvZPAqhrrEpRtonnrXdghZg1irNg4qrjboCXrpybLWVs55cW2N3juhspVJiO0JBvYJT8SYsJpc8OQSnsA==}
+ prettier-plugin-tailwindcss@0.6.14:
+ resolution: {integrity: sha512-pi2e/+ZygeIqntN+vC573BcW5Cve8zUB0SSAGxqpB4f96boZF4M3phPVoOFCeypwkpRYdi7+jQ5YJJUwrkGUAg==}
engines: {node: '>=14.21.3'}
peerDependencies:
'@ianvs/prettier-plugin-sort-imports': '*'
+ '@prettier/plugin-hermes': '*'
+ '@prettier/plugin-oxc': '*'
'@prettier/plugin-pug': '*'
'@shopify/prettier-plugin-liquid': '*'
'@trivago/prettier-plugin-sort-imports': '*'
@@ -10653,6 +9748,10 @@ packages:
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':
@@ -10689,8 +9788,8 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
- prettier@3.5.2:
- resolution: {integrity: sha512-lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg==}
+ prettier@3.6.2:
+ resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==}
engines: {node: '>=14'}
hasBin: true
@@ -10710,8 +9809,8 @@ packages:
resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==}
engines: {node: '>=6'}
- prismjs@1.29.0:
- resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
+ prismjs@1.30.0:
+ resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==}
engines: {node: '>=6'}
proc-log@4.2.0:
@@ -10761,11 +9860,11 @@ packages:
prosemirror-collab@1.3.1:
resolution: {integrity: sha512-4SnynYR9TTYaQVXd/ieUvsVV4PDMBzrq2xPUWutHivDuOshZXqQ5rGbZM84HEaXKbLdItse7weMGOUdDVcLKEQ==}
- prosemirror-commands@1.7.0:
- resolution: {integrity: sha512-6toodS4R/Aah5pdsrIwnTYPEjW70SlO5a66oo5Kk+CIrgJz3ukOoS+FYDGqvQlAX5PxoGWDX1oD++tn5X3pyRA==}
+ prosemirror-commands@1.7.1:
+ resolution: {integrity: sha512-rT7qZnQtx5c0/y/KlYaGvtG411S97UaL6gdp6RIZ23DLHanMYLyfGBV5DtSnZdthQql7W+lEVbpSfwtO8T+L2w==}
- prosemirror-dropcursor@1.8.1:
- resolution: {integrity: sha512-M30WJdJZLyXHi3N8vxN6Zh5O8ZBbQCz0gURTfPmTIBNQ5pxrdU7A58QkNqfa98YEjSAL1HUyyU34f6Pm5xBSGw==}
+ prosemirror-dropcursor@1.8.2:
+ resolution: {integrity: sha512-CCk6Gyx9+Tt2sbYk5NK0nB1ukHi2ryaRgadV/LvyNuO3ena1payM2z6Cg0vO1ebK8cxbzo41ku2DE5Axj1Zuiw==}
prosemirror-gapcursor@1.3.2:
resolution: {integrity: sha512-wtjswVBd2vaQRrnYZaBCbyDqr232Ed4p2QPtRIUK5FuqHYKGWkEwl08oQM4Tw7DOR0FsasARV5uJFvMZWxdNxQ==}
@@ -10776,17 +9875,17 @@ packages:
prosemirror-inputrules@1.5.0:
resolution: {integrity: sha512-K0xJRCmt+uSw7xesnHmcn72yBGTbY45vm8gXI4LZXbx2Z0jwh5aF9xrGQgrVPu0WbyFVFF3E/o9VhJYz6SQWnA==}
- prosemirror-keymap@1.2.2:
- resolution: {integrity: sha512-EAlXoksqC6Vbocqc0GtzCruZEzYgrn+iiGnNjsJsH4mrnIGex4qbLdWWNza3AW5W36ZRrlBID0eM6bdKH4OStQ==}
+ prosemirror-keymap@1.2.3:
+ resolution: {integrity: sha512-4HucRlpiLd1IPQQXNqeo81BGtkY8Ai5smHhKW9jjPKRc2wQIxksg7Hl1tTI2IfT2B/LgX6bfYvXxEpJl7aKYKw==}
prosemirror-markdown@1.13.2:
resolution: {integrity: sha512-FPD9rHPdA9fqzNmIIDhhnYQ6WgNoSWX9StUZ8LEKapaXU9i6XgykaHKhp6XMyXlOWetmaFgGDS/nu/w9/vUc5g==}
- prosemirror-menu@1.2.4:
- resolution: {integrity: sha512-S/bXlc0ODQup6aiBbWVsX/eM+xJgCTAfMq/nLqaO5ID/am4wS0tTCIkzwytmao7ypEtjj39i7YbJjAgO20mIqA==}
+ prosemirror-menu@1.2.5:
+ resolution: {integrity: sha512-qwXzynnpBIeg1D7BAtjOusR+81xCp53j7iWu/IargiRZqRjGIlQuu1f3jFi+ehrHhWMLoyOQTSRx/IWZJqOYtQ==}
- prosemirror-model@1.25.0:
- resolution: {integrity: sha512-/8XUmxWf0pkj2BmtqZHYJipTBMHIdVjuvFzMvEoxrtyGNmfvdhBiRwYt/eFwy2wA9DtBW3RLqvZnjurEkHaFCw==}
+ prosemirror-model@1.25.3:
+ resolution: {integrity: sha512-dY2HdaNXlARknJbrManZ1WyUtos+AP97AmvqdOQtWtrrC5g4mohVX5DTi9rXNFSk09eczLq9GuNTtq3EfMeMGA==}
prosemirror-schema-basic@1.2.4:
resolution: {integrity: sha512-ELxP4TlX3yr2v5rM7Sb70SqStq5NvI15c0j9j/gjsrO5vaw+fnnpovCLEGIcpeGfifkuqJwl4fon6b+KdrODYQ==}
@@ -10797,8 +9896,8 @@ packages:
prosemirror-state@1.4.3:
resolution: {integrity: sha512-goFKORVbvPuAQaXhpbemJFRKJ2aixr+AZMGiquiqKxaucC6hlpHNZHWgz5R7dS4roHiwq9vDctE//CZ++o0W1Q==}
- prosemirror-tables@1.6.4:
- resolution: {integrity: sha512-TkDY3Gw52gRFRfRn2f4wJv5WOgAOXLJA2CQJYIJ5+kdFbfj3acR4JUW6LX2e1hiEBiUwvEhzH5a3cZ5YSztpIA==}
+ prosemirror-tables@1.8.1:
+ resolution: {integrity: sha512-DAgDoUYHCcc6tOGpLVPSU1k84kCUWTWnfWX3UDy2Delv4ryH0KqTD6RBI6k4yi9j9I8gl3j8MkPpRD/vWPZbug==}
prosemirror-trailing-node@3.0.0:
resolution: {integrity: sha512-xiun5/3q0w5eRnGYfNlW1uU9W6x5MoFKWwq/0TIRgt09lv7Hcser2QYV8t4muXbEr+Fwo0geYn79Xs4GKywrRQ==}
@@ -10807,14 +9906,14 @@ packages:
prosemirror-state: ^1.4.2
prosemirror-view: ^1.33.8
- prosemirror-transform@1.10.3:
- resolution: {integrity: sha512-Nhh/+1kZGRINbEHmVu39oynhcap4hWTs/BlU7NnxWj3+l0qi8I1mu67v6mMdEe/ltD8hHvU4FV6PHiCw2VSpMw==}
+ prosemirror-transform@1.10.4:
+ resolution: {integrity: sha512-pwDy22nAnGqNR1feOQKHxoFkkUtepoFAd3r2hbEDsnf4wp57kKA36hXsB3njA9FtONBEwSDnDeCiJe+ItD+ykw==}
- prosemirror-view@1.38.1:
- resolution: {integrity: sha512-4FH/uM1A4PNyrxXbD+RAbAsf0d/mM0D/wAKSVVWK7o0A9Q/oOXJBrw786mBf2Vnrs/Edly6dH6Z2gsb7zWwaUw==}
+ prosemirror-view@1.41.3:
+ resolution: {integrity: sha512-SqMiYMUQNNBP9kfPhLO8WXEk/fon47vc52FQsUiJzTBuyjKgEcoAwMyF04eQ4WZ2ArMn7+ReypYL60aKngbACQ==}
- protobufjs@7.5.3:
- resolution: {integrity: sha512-sildjKwVqOI2kmFDiXQ6aEB0fjYTafpEvIBs8tOR8qI4spuL9OPROLVu2qZqi/xgCfsHIwVqlaF8JBjWFHnKbw==}
+ protobufjs@7.5.4:
+ resolution: {integrity: sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==}
engines: {node: '>=12.0.0'}
proxy-addr@2.0.7:
@@ -10831,8 +9930,8 @@ packages:
psl@1.15.0:
resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==}
- pump@3.0.2:
- resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
+ pump@3.0.3:
+ resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==}
punycode.js@2.3.1:
resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
@@ -10842,8 +9941,8 @@ packages:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
- puppeteer-core@24.15.0:
- resolution: {integrity: sha512-2iy0iBeWbNyhgiCGd/wvGrDSo73emNFjSxYOcyAqYiagkYt5q4cPfVXaVDKBsukgc2fIIfLAalBZlaxldxdDYg==}
+ puppeteer-core@24.22.0:
+ resolution: {integrity: sha512-oUeWlIg0pMz8YM5pu0uqakM+cCyYyXkHBxx9di9OUELu9X9+AYrNGGRLK9tNME3WfN3JGGqQIH3b4/E9LGek/w==}
engines: {node: '>=18'}
pure-rand@6.1.0:
@@ -10880,9 +9979,6 @@ packages:
raf-schd@4.0.3:
resolution: {integrity: sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ==}
- randombytes@2.1.0:
- resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
-
range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
@@ -10899,36 +9995,39 @@ packages:
resolution: {integrity: sha512-TMx7fNbhLk15eqcMt+7Z7S2KF7mfTId/XJDjKE8f+IUcFn0l08/kI4FiYTL/0yuOLmEcbR4Fwe3GJf/NiiMnPA==}
peerDependencies:
date-fns: ^2.28.0 || ^3.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: 19.0.0
- react-devtools-core@5.3.2:
- resolution: {integrity: sha512-crr9HkVrDiJ0A4zot89oS0Cgv0Oa4OG1Em4jit3P3ZxZSKPMYyMjfwMqgcJna9o625g8oN87rBm8SWWrSTBZxg==}
+ react-devtools-core@6.1.5:
+ resolution: {integrity: sha512-ePrwPfxAnB+7hgnEr8vpKxL9cmnp7F322t8oqcPshbIQQhDKgFDW4tjhF2wjVbdXF9O/nyuy3sQWd9JGpiLPvA==}
react-docgen-typescript@2.4.0:
resolution: {integrity: sha512-ZtAp5XTO5HRzQctjPU0ybY0RRCQO19X/8fxn3w7y2VVTUbGHDKULPTL4ky3vB05euSgG5NpALhEhDPvQ56wvXg==}
peerDependencies:
typescript: '>= 4.3.x'
- react-docgen@8.0.0:
- resolution: {integrity: sha512-kmob/FOTwep7DUWf9KjuenKX0vyvChr3oTdvvPt09V60Iz75FJp+T/0ZeHMbAfJj2WaVWqAPP5Hmm3PYzSPPKg==}
+ react-docgen@8.0.2:
+ resolution: {integrity: sha512-+NRMYs2DyTP4/tqWz371Oo50JqmWltR1h2gcdgUMAWZJIAvrd0/SqlCfx7tpzpl/s36rzw6qH2MjoNrxtRNYhA==}
engines: {node: ^20.9.0 || >=22}
- react-dom@18.3.1:
- resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
+ react-dom@19.0.0:
+ resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==}
peerDependencies:
- react: ^18.3.1
+ react: 19.0.0
+
+ react-fast-compare@3.2.2:
+ resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
react-freeze@1.0.4:
resolution: {integrity: sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA==}
engines: {node: '>=10'}
peerDependencies:
- react: '>=17.0.0'
+ react: 19.0.0
- react-hook-form@7.54.2:
- resolution: {integrity: sha512-eHpAUgUjWbZocoQYUHposymRb4ZP6d0uwUnooL2uOybA9/3tPUvoAKqEWK1WaSiTxxOfTpffNZP7QwlnM3/gEg==}
+ react-hook-form@7.64.0:
+ resolution: {integrity: sha512-fnN+vvTiMLnRqKNTVhDysdrUay0kUUAymQnFIznmgDvapjveUWOOPqMNzPg+A+0yf9DuE2h6xzBjN1s+Qx8wcg==}
engines: {node: '>=18.0.0'}
peerDependencies:
- react: ^16.8.0 || ^17 || ^18 || ^19
+ react: 19.0.0
react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
@@ -10939,26 +10038,29 @@ packages:
react-is@18.3.1:
resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
+ react-is@19.2.0:
+ resolution: {integrity: sha512-x3Ax3kNSMIIkyVYhWPyO09bu0uttcAIoecO/um/rKGQ4EltYWVYtyiGkS/3xMynrbVQdS69Jhlv8FXUEZehlzA==}
+
react-markdown@10.1.0:
resolution: {integrity: sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==}
peerDependencies:
- '@types/react': '>=18'
- react: '>=18'
+ '@types/react': 19.0.14
+ react: 19.0.0
react-markdown@8.0.7:
resolution: {integrity: sha512-bvWbzG4MtOU62XqBx3Xx+zB2raaFFsq4mYiAzfjXJMEz2sixgeAfraA3tvzULF02ZdOMUOKTBFFaZJDDrq+BJQ==}
peerDependencies:
- '@types/react': '>=16'
- react: '>=16'
+ '@types/react': 19.0.14
+ react: 19.0.0
react-masonry@1.0.7:
resolution: {integrity: sha512-cKhinTeygGtm+8y7YCTMKXNKtU0toJAcOBD4q7fv+JTc94bj93/xut3iZvjD60lZYek+WGM6en5w8P+63zHN9Q==}
- react-native-css-interop@0.1.22:
- resolution: {integrity: sha512-Mu01e+H9G+fxSWvwtgWlF5MJBJC4VszTCBXopIpeR171lbeBInHb8aHqoqRPxmJpi3xIHryzqKFOJYAdk7PBxg==}
+ react-native-css-interop@0.2.1:
+ resolution: {integrity: sha512-B88f5rIymJXmy1sNC/MhTkb3xxBej1KkuAt7TiT9iM7oXz3RM8Bn+7GUrfR02TvSgKm4cg2XiSuLEKYfKwNsjA==}
engines: {node: '>=18'}
peerDependencies:
- react: '>=18'
+ react: 19.0.0
react-native: '*'
react-native-reanimated: '>=3.6.2'
react-native-safe-area-context: '*'
@@ -10970,19 +10072,37 @@ packages:
react-native-svg:
optional: true
+ react-native-edge-to-edge@1.6.0:
+ resolution: {integrity: sha512-2WCNdE3Qd6Fwg9+4BpbATUxCLcouF6YRY7K+J36KJ4l3y+tWN6XCqAC4DuoGblAAbb2sLkhEDp4FOlbOIot2Og==}
+ peerDependencies:
+ react: 19.0.0
+ react-native: '*'
+
react-native-fit-image@1.5.5:
resolution: {integrity: sha512-Wl3Vq2DQzxgsWKuW4USfck9zS7YzhvLNPpkwUUCF90bL32e1a0zOVQ3WsJILJOwzmPdHfzZmWasiiAUNBkhNkg==}
- react-native-gesture-handler@2.25.0:
- resolution: {integrity: sha512-NPjJi6mislXxvjxQPU9IYwBjb1Uejp8GvAbE1Lhh+xMIMEvmgAvVIp5cz1P+xAbV6uYcRRArm278+tEInGOqWg==}
+ react-native-gesture-handler@2.28.0:
+ resolution: {integrity: sha512-0msfJ1vRxXKVgTgvL+1ZOoYw3/0z1R+Ked0+udoJhyplC2jbVKIJ8Z1bzWdpQRCV3QcQ87Op0zJVE5DhKK2A0A==}
+ peerDependencies:
+ react: 19.0.0
+ react-native: '*'
+
+ react-native-is-edge-to-edge@1.1.7:
+ resolution: {integrity: sha512-EH6i7E8epJGIcu7KpfXYXiV2JFIYITtq+rVS8uEb+92naMRBdxhTuS8Wn2Q7j9sqyO0B+Xbaaf9VdipIAmGW4w==}
+ peerDependencies:
+ react: 19.0.0
+ react-native: '*'
+
+ react-native-is-edge-to-edge@1.2.1:
+ resolution: {integrity: sha512-FLbPWl/MyYQWz+KwqOZsSyj2JmLKglHatd3xLZWskXOpRaio4LfEDEz8E/A6uD8QoTHW6Aobw1jbEwK7KMgR7Q==}
peerDependencies:
- react: '*'
+ react: 19.0.0
react-native: '*'
react-native-markdown-display@7.0.2:
resolution: {integrity: sha512-Mn4wotMvMfLAwbX/huMLt202W5DsdpMO/kblk+6eUs55S57VVNni1gzZCh5qpznYLjIQELNh50VIozEfY6fvaQ==}
peerDependencies:
- react: '>=16.2.0'
+ react: 19.0.0
react-native: '>=0.50.4'
react-native-modal-datetime-picker@18.0.0:
@@ -10991,29 +10111,29 @@ packages:
'@react-native-community/datetimepicker': '>=6.7.0'
react-native: '>=0.65.0'
- react-native-reanimated@3.16.7:
- resolution: {integrity: sha512-qoUUQOwE1pHlmQ9cXTJ2MX9FQ9eHllopCLiWOkDkp6CER95ZWeXhJCP4cSm6AD4jigL5jHcZf/SkWrg8ttZUsw==}
+ react-native-reanimated@3.17.5:
+ resolution: {integrity: sha512-SxBK7wQfJ4UoWoJqQnmIC7ZjuNgVb9rcY5Xc67upXAFKftWg0rnkknTw6vgwnjRcvYThrjzUVti66XoZdDJGtw==}
peerDependencies:
'@babel/core': ^7.0.0-0
- react: '*'
+ react: 19.0.0
react-native: '*'
- react-native-safe-area-context@4.12.0:
- resolution: {integrity: sha512-ukk5PxcF4p3yu6qMZcmeiZgowhb5AsKRnil54YFUUAXVIS7PJcMHGGC+q44fCiBg44/1AJk5njGMez1m9H0BVQ==}
+ react-native-safe-area-context@5.4.0:
+ resolution: {integrity: sha512-JaEThVyJcLhA+vU0NU8bZ0a1ih6GiF4faZ+ArZLqpYbL6j7R3caRqj+mE3lEtKCuHgwjLg3bCxLL1GPUJZVqUA==}
peerDependencies:
- react: '*'
+ react: 19.0.0
react-native: '*'
- react-native-screens@4.4.0:
- resolution: {integrity: sha512-c7zc7Zwjty6/pGyuuvh9gK3YBYqHPOxrhXfG1lF4gHlojQSmIx2piNbNaV+Uykj+RDTmFXK0e/hA+fucw/Qozg==}
+ react-native-screens@4.16.0:
+ resolution: {integrity: sha512-yIAyh7F/9uWkOzCi1/2FqvNvK6Wb9Y1+Kzn16SuGfN9YFJDTbwlzGRvePCNTOX0recpLQF3kc2FmvMUhyTCH1Q==}
peerDependencies:
- react: '*'
+ react: 19.0.0
react-native: '*'
- react-native-svg@15.8.0:
- resolution: {integrity: sha512-KHJzKpgOjwj1qeZzsBjxNdoIgv2zNCO9fVcoq2TEhTRsVV5DGTZ9JzUZwybd7q4giT/H3RdtqC3u44dWdO0Ffw==}
+ react-native-svg@15.11.2:
+ resolution: {integrity: sha512-+YfF72IbWQUKzCIydlijV1fLuBsQNGMT6Da2kFlo1sh+LE3BIm/2Q7AR1zAAR6L0BFLi1WaQPLfFUC9bNZpOmw==}
peerDependencies:
- react: '*'
+ react: 19.0.0
react-native: '*'
react-native-url-polyfill@2.0.0:
@@ -11024,22 +10144,23 @@ packages:
react-native-web@0.19.13:
resolution: {integrity: sha512-etv3bN8rJglrRCp/uL4p7l8QvUNUC++QwDbdZ8CB7BvZiMvsxfFIRM1j04vxNldG3uo2puRd6OSWR3ibtmc29A==}
peerDependencies:
- react: ^18.0.0
- react-dom: ^18.0.0
+ react: 19.0.0
+ react-dom: 19.0.0
- react-native-webview@13.12.5:
- resolution: {integrity: sha512-INOKPom4dFyzkbxbkuQNfeRG9/iYnyRDzrDkJeyvSWgJAW2IDdJkWFJBS2v0RxIL4gqLgHkiIZDOfiLaNnw83Q==}
+ react-native-worklets@0.6.1:
+ resolution: {integrity: sha512-URca8l7c7Uog7gv4mcg9KILdJlnbvwdS5yfXQYf5TDkD2W1VY1sduEKrD+sA3lUPXH/TG1vmXAvNxCNwPMYgGg==}
peerDependencies:
- react: '*'
+ '@babel/core': ^7.0.0-0
+ react: 19.0.0
react-native: '*'
- react-native@0.76.9:
- resolution: {integrity: sha512-+LRwecWmTDco7OweGsrECIqJu0iyrREd6CTCgC/uLLYipiHvk+MH9nd6drFtCw/6Blz6eoKTcH9YTTJusNtrWg==}
+ react-native@0.79.5:
+ resolution: {integrity: sha512-jVihwsE4mWEHZ9HkO1J2eUZSwHyDByZOqthwnGrVZCh6kTQBCm4v8dicsyDa6p0fpWNE5KicTcpX/XXl0ASJFg==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
- '@types/react': ^18.2.6
- react: ^18.2.0
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -11048,22 +10169,16 @@ packages:
resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
engines: {node: '>=0.10.0'}
+ react-refresh@0.17.0:
+ resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
+ engines: {node: '>=0.10.0'}
+
react-remove-scroll-bar@2.3.8:
resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- react-remove-scroll@2.6.3:
- resolution: {integrity: sha512-pnAi91oOk8g8ABQKGF5/M9qxmmOPxaAnopyTHYfqYEwJhyFrbbBtHuSgtKEoH0jpcxx5o3hXqH1mNd9/Oi+8iQ==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -11072,61 +10187,56 @@ packages:
resolution: {integrity: sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@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-smooth@4.0.4:
resolution: {integrity: sha512-gnGKTpYwqL0Iii09gHobNolvX4Kiq4PKx6eWBCYYix+8cdw+cGo3do906l1NBPKkSWx1DghC1dlWG9L2uGd61Q==}
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
+ react: 19.0.0
+ react-dom: 19.0.0
react-style-singleton@2.2.3:
resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- react-syntax-highlighter@15.6.1:
- resolution: {integrity: sha512-OqJ2/vL7lEeV5zTJyG7kmARppUjiB9h9udl4qHQjjgEos66z00Ia0OckwYfRxCSFrW8RJIBnsBwQsHZbVPspqg==}
+ react-syntax-highlighter@15.6.6:
+ resolution: {integrity: sha512-DgXrc+AZF47+HvAPEmn7Ua/1p10jNoVZVI/LoPiYdtY+OM+/nG5yefLHKJwdKqY1adMuHFbeyBaG9j64ML7vTw==}
peerDependencies:
- react: '>= 0.14.0'
+ react: 19.0.0
- react-test-renderer@18.3.1:
- resolution: {integrity: sha512-KkAgygexHUkQqtvvx/otwxtuFu5cVjfzTCtjXLH9boS19/Nbtg84zS7wIQn39G8IlrhThBpQsMKkq5ZHZIYFXA==}
+ react-test-renderer@19.2.0:
+ resolution: {integrity: sha512-zLCFMHFE9vy/w3AxO0zNxy6aAupnCuLSVOJYDe/Tp+ayGI1f2PLQsFVPANSD42gdSbmYx5oN+1VWDhcXtq7hAQ==}
peerDependencies:
- react: ^18.3.1
+ react: 19.0.0
react-transition-group@4.4.5:
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
peerDependencies:
- react: '>=16.6.0'
- react-dom: '>=16.6.0'
+ react: 19.0.0
+ react-dom: 19.0.0
react-uid@2.4.0:
resolution: {integrity: sha512-+MVs/25NrcZuGrmlVRWPOSsbS8y72GJOBsR7d68j3/wqOrRBF52U29XAw4+XSelw0Vm6s5VmGH5mCbTCPGVCVg==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- react@18.3.1:
- resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
+ react@19.0.0:
+ resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
engines: {node: '>=0.10.0'}
read-cache@1.0.0:
@@ -11152,21 +10262,14 @@ packages:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
- readdirp@4.1.1:
- resolution: {integrity: sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==}
+ readdirp@4.1.2:
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
engines: {node: '>= 14.18.0'}
- readline@1.3.0:
- resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==}
-
real-require@0.2.0:
resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==}
engines: {node: '>= 12.13.0'}
- recast@0.21.5:
- resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==}
- engines: {node: '>= 4'}
-
recast@0.23.11:
resolution: {integrity: sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==}
engines: {node: '>= 4'}
@@ -11174,12 +10277,12 @@ packages:
recharts-scale@0.4.5:
resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
- recharts@2.15.0:
- resolution: {integrity: sha512-cIvMxDfpAmqAmVgc4yb7pgm/O1tmmkl/CjrvXuW+62/+7jj/iF9Ykm+hb/UJt42TREHMyd3gb+pkgoa2MxgDIw==}
+ recharts@2.15.4:
+ resolution: {integrity: sha512-UT/q6fwS3c1dHbXv2uFgYJ9BMFHu3fwnd7AYZaEQhXuYQ4hgsxLvsUXzGdKeZrW5xopzDCvuA2N41WJ88I7zIw==}
engines: {node: '>=14'}
peerDependencies:
- react: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: 19.0.0
+ react-dom: 19.0.0
redent@3.0.0:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
@@ -11195,8 +10298,8 @@ packages:
refractor@3.6.0:
resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==}
- regenerate-unicode-properties@10.2.0:
- resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
+ regenerate-unicode-properties@10.2.2:
+ resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==}
engines: {node: '>=4'}
regenerate@1.4.2:
@@ -11209,15 +10312,15 @@ packages:
resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
engines: {node: '>= 0.4'}
- regexpu-core@6.2.0:
- resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
+ regexpu-core@6.4.0:
+ resolution: {integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==}
engines: {node: '>=4'}
regjsgen@0.8.0:
resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
- regjsparser@0.12.0:
- resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
+ regjsparser@0.13.0:
+ resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==}
hasBin: true
rehype-raw@7.0.0:
@@ -11251,13 +10354,6 @@ packages:
remark-stringify@11.0.0:
resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
- remove-trailing-slash@0.1.1:
- resolution: {integrity: sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==}
-
- repeat-string@1.6.1:
- resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
- engines: {node: '>=0.10'}
-
require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
@@ -11276,6 +10372,9 @@ packages:
requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
+ reselect@4.1.8:
+ resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==}
+
resolve-cwd@3.0.0:
resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
engines: {node: '>=8'}
@@ -11332,15 +10431,10 @@ packages:
resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
engines: {node: '>= 4'}
- reusify@1.0.4:
- resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
+ reusify@1.1.0:
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- rimraf@2.6.3:
- resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
- deprecated: Rimraf versions prior to v4 are no longer supported
- hasBin: true
-
rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
deprecated: Rimraf versions prior to v4 are no longer supported
@@ -11355,8 +10449,8 @@ packages:
estree-walker: '>=3.0'
vite: '>=5.2'
- rollup@4.40.2:
- resolution: {integrity: sha512-tfUOg6DTP4rhQ3VjOO6B4wyrJnGOX85requAXvqYTHsOgb2TFJdZ3aWpT8W2kPoypSGP7dZUyzxJ9ee4buM5Fg==}
+ rollup@4.52.4:
+ resolution: {integrity: sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -11411,19 +10505,11 @@ packages:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
- scheduler@0.23.2:
- resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
-
- scheduler@0.24.0-canary-efb381bbf-20230505:
- resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==}
+ scheduler@0.25.0:
+ resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
- schema-utils@2.7.1:
- resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
- engines: {node: '>= 8.9.0'}
-
- schema-utils@4.3.2:
- resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==}
- engines: {node: '>= 10.13.0'}
+ scheduler@0.27.0:
+ resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
secure-compare@3.0.1:
resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==}
@@ -11431,10 +10517,6 @@ packages:
secure-json-parse@2.7.0:
resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==}
- selfsigned@2.4.1:
- resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
- engines: {node: '>=10'}
-
semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true
@@ -11448,26 +10530,40 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ semver@7.6.3:
+ resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
+ engines: {node: '>=10'}
+ hasBin: true
+
semver@7.7.2:
resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
engines: {node: '>=10'}
hasBin: true
+ 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'}
+ send@0.19.1:
+ resolution: {integrity: sha512-p4rRk4f23ynFEfcD9LA0xRYngj+IyGiEYyqqOak8kaN0TvNmuxC2dcVeBn62GpCeR2CpWqyHCNScTP91QbAVFg==}
+ engines: {node: '>= 0.8.0'}
+
serialize-error@2.1.0:
resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==}
engines: {node: '>=0.10.0'}
- serialize-javascript@6.0.2:
- resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
-
serve-static@1.16.2:
resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
engines: {node: '>= 0.8.0'}
+ server-only@0.0.1:
+ resolution: {integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==}
+
set-blocking@2.0.0:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
@@ -11489,9 +10585,8 @@ packages:
setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
- shallow-clone@3.0.1:
- resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
- engines: {node: '>=8'}
+ shallowequal@1.1.0:
+ resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
@@ -11542,11 +10637,14 @@ packages:
simple-plist@1.3.1:
resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==}
+ simple-swizzle@0.2.4:
+ resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==}
+
simple-wcswidth@1.1.2:
resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
- sirv@3.0.1:
- resolution: {integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==}
+ sirv@3.0.2:
+ resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==}
engines: {node: '>=18'}
sisteransi@1.0.5:
@@ -11565,6 +10663,9 @@ packages:
resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
engines: {node: '>=14.16'}
+ slow-redact@0.3.1:
+ resolution: {integrity: sha512-NvFvl1GuLZNW4U046Tfi8b26zXo8aBzgCAS2f7yVJR/fArN93mOqSA99cB9uITm92ajSz01bsu1K7SCVVjIMpQ==}
+
slugify@1.6.6:
resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==}
engines: {node: '>=8.0.0'}
@@ -11636,8 +10737,8 @@ packages:
spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
- spdx-license-ids@3.0.21:
- resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==}
+ spdx-license-ids@3.0.22:
+ resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==}
split-on-first@1.1.0:
resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==}
@@ -11647,16 +10748,9 @@ packages:
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
engines: {node: '>= 10.x'}
- split@1.0.1:
- resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==}
-
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- ssri@10.0.6:
- resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
stack-utils@2.0.6:
resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
engines: {node: '>=10'}
@@ -11679,12 +10773,13 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- std-env@3.8.1:
- resolution: {integrity: sha512-vj5lIj3Mwf9D79hBkltk5qmkFI+biIKWS2IBxEyEU3AX1tUf7AoL8nSazCOiiqQsGKIq01SClsKEzweu34uwvA==}
-
std-env@3.9.0:
resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==}
+ 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==}
@@ -11703,8 +10798,8 @@ packages:
prettier:
optional: true
- storybook@9.1.3:
- resolution: {integrity: sha512-Sm+qP3iGb/QKx/jTYdfE0mIeTmA2HF+5k9fD70S9oOJq3F9UdW8MLgs+5PE+E/xAfDjZU4OWAKEOyA6EYIvQHg==}
+ storybook@9.1.10:
+ resolution: {integrity: sha512-4+U7gF9hMpGilQmdVJwQaVZZEkD7XwC4ZDmBa51mobaPYelELEMoMfNM2hLyvB2x12gk1IJui1DnwOE4t+MXhw==}
hasBin: true
peerDependencies:
prettier: ^2 || ^3
@@ -11716,11 +10811,8 @@ packages:
resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==}
engines: {node: '>= 0.10.0'}
- streamx@2.22.1:
- resolution: {integrity: sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==}
-
- strict-event-emitter@0.5.1:
- resolution: {integrity: sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==}
+ streamx@2.23.0:
+ resolution: {integrity: sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==}
strict-uri-encode@2.0.0:
resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
@@ -11783,8 +10875,8 @@ packages:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
- strip-ansi@7.1.0:
- resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
+ strip-ansi@7.1.2:
+ resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
engines: {node: '>=12'}
strip-bom@3.0.0:
@@ -11795,10 +10887,6 @@ packages:
resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==}
engines: {node: '>=8'}
- strip-eof@1.0.0:
- resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
- engines: {node: '>=0.10.0'}
-
strip-final-newline@2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
@@ -11807,8 +10895,8 @@ packages:
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
engines: {node: '>=8'}
- strip-indent@4.0.0:
- resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==}
+ strip-indent@4.1.0:
+ resolution: {integrity: sha512-OA95x+JPmL7kc7zCu+e+TeYxEiaIyndRx0OrBcK2QPPH09oAndr2ALvymxWA+Lx1PYYvFUm4O63pRkdJAaW96w==}
engines: {node: '>=12'}
strip-json-comments@2.0.1:
@@ -11819,6 +10907,9 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
+ strip-literal@3.1.0:
+ resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==}
+
strnum@2.1.1:
resolution: {integrity: sha512-7ZvoFTiCnGxBtDqJ//Cu6fWtZtc7Y3x+QOirG15wztbdngGSkht27o2pyGWrVy0b4WAy3jbKmnoK6g5VlVNUUw==}
@@ -11846,14 +10937,6 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
- sudo-prompt@8.2.5:
- resolution: {integrity: sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==}
- deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
-
- sudo-prompt@9.1.1:
- resolution: {integrity: sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==}
- deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
-
supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
@@ -11896,64 +10979,31 @@ packages:
peerDependencies:
tailwindcss: '>=3.0.0 || insiders'
- tailwindcss@3.3.5:
- resolution: {integrity: sha512-5SEZU4J7pxZgSkv7FP1zY8i2TIAOooNZ1e/OGtxIEv6GltpoiXUqWvLy89+a10qYTB1N5Ifkuw9lqQkN9sscvA==}
- engines: {node: '>=14.0.0'}
- hasBin: true
-
- tailwindcss@3.4.17:
- resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==}
+ tailwindcss@3.4.18:
+ resolution: {integrity: sha512-6A2rnmW5xZMdw11LYjhcI5846rt9pbLSabY5XPxo+XWdxwZaFEn47Go4NzFiHu9sNNmr/kXivP1vStfvMaK1GQ==}
engines: {node: '>=14.0.0'}
hasBin: true
- tapable@2.2.2:
- resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==}
- engines: {node: '>=6'}
-
- tar-fs@3.1.0:
- resolution: {integrity: sha512-5Mty5y/sOF1YWj1J6GiBodjlDc05CUR8PKXrsnFAiSG0xA+GHeWLovaZPYUDXkH/1iKRf2+M5+OrRgzC7O9b7w==}
+ tar-fs@3.1.1:
+ resolution: {integrity: sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==}
tar-stream@3.1.7:
resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
- tar@6.2.1:
- resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
- engines: {node: '>=10'}
+ tar@7.5.1:
+ resolution: {integrity: sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==}
+ engines: {node: '>=18'}
temp-dir@2.0.0:
resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
engines: {node: '>=8'}
- temp@0.8.4:
- resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==}
- engines: {node: '>=6.0.0'}
-
- tempy@0.7.1:
- resolution: {integrity: sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==}
- engines: {node: '>=10'}
-
terminal-link@2.1.1:
resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==}
engines: {node: '>=8'}
- terser-webpack-plugin@5.3.14:
- resolution: {integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- '@swc/core': '*'
- esbuild: '*'
- uglify-js: '*'
- webpack: ^5.1.0
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- esbuild:
- optional: true
- uglify-js:
- optional: true
-
- terser@5.43.1:
- resolution: {integrity: sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==}
+ terser@5.44.0:
+ resolution: {integrity: sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==}
engines: {node: '>=10'}
hasBin: true
@@ -12000,44 +11050,35 @@ packages:
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
- tinyglobby@0.2.13:
- resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==}
+ tinyexec@1.0.1:
+ resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==}
+
+ tinyglobby@0.2.15:
+ resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
engines: {node: '>=12.0.0'}
- tinypool@1.0.2:
- resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==}
+ tinypool@1.1.1:
+ resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==}
engines: {node: ^18.0.0 || >=20.0.0}
- tinyrainbow@1.2.0:
- resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==}
- engines: {node: '>=14.0.0'}
-
tinyrainbow@2.0.0:
resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
engines: {node: '>=14.0.0'}
- tinyspy@3.0.2:
- resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
- engines: {node: '>=14.0.0'}
-
- tinyspy@4.0.3:
- resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==}
+ tinyspy@4.0.4:
+ resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==}
engines: {node: '>=14.0.0'}
tippy.js@6.3.7:
resolution: {integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==}
- tldts-core@6.1.75:
- resolution: {integrity: sha512-AOvV5YYIAFFBfransBzSTyztkc3IMfz5Eq3YluaRiEu55nn43Fzaufx70UqEKYr8BoLCach4q8g/bg6e5+/aFw==}
+ tldts-core@6.1.86:
+ resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==}
- tldts@6.1.75:
- resolution: {integrity: sha512-+lFzEXhpl7JXgWYaXcB6DqTYXbUArvrWAE/5ioq/X3CdWLbDjpPP4XTrQBmEJ91y3xbe4Fkw7Lxv4P3GWeJaNg==}
+ tldts@6.1.86:
+ resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==}
hasBin: true
- tmp@0.0.33:
- resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
- engines: {node: '>=0.6.0'}
-
tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
@@ -12061,8 +11102,8 @@ packages:
resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
engines: {node: '>=6'}
- tough-cookie@5.1.0:
- resolution: {integrity: sha512-rvZUv+7MoBYTiDmFPBrhL7Ujx9Sk+q9wwm22x8c8T5IJaR+Wsyc7TNxbVxo84kZoRJZZMazowFLqpankBEQrGg==}
+ tough-cookie@5.1.2:
+ resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==}
engines: {node: '>=16'}
tr46@0.0.3:
@@ -12071,8 +11112,8 @@ packages:
tr46@1.0.1:
resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
- tr46@5.0.0:
- resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
+ tr46@5.1.1:
+ resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==}
engines: {node: '>=18'}
tree-kill@1.2.2:
@@ -12108,8 +11149,8 @@ packages:
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
- tsup@8.3.6:
- resolution: {integrity: sha512-XkVtlDV/58S9Ye0JxUUTcrQk4S+EqlOHKzg6Roa62rdjL1nGWNUstG0xgI4vanHdfIpjP448J8vlN0oK6XOJ5g==}
+ tsup@8.5.0:
+ resolution: {integrity: sha512-VmBp77lWNQq6PfuMqCHD3xWl22vEoWsKajkF8t+yMBawlUS8JzEI+vOVMeuNZIuMML8qXRizFKi9oD5glKQVcQ==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
@@ -12138,10 +11179,6 @@ packages:
resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
engines: {node: '>=4'}
- type-fest@0.16.0:
- resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==}
- engines: {node: '>=10'}
-
type-fest@0.21.3:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
@@ -12158,10 +11195,6 @@ packages:
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
engines: {node: '>=12.20'}
- type-fest@4.41.0:
- resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
- engines: {node: '>=16'}
-
type-graphql@2.0.0-rc.1:
resolution: {integrity: sha512-HCu4j3jR0tZvAAoO7DMBT3MRmah0DFRe5APymm9lXUghXA0sbhiMf6SLRafRYfk0R0KiUQYRduuGP3ap1RnF1Q==}
engines: {node: '>= 18.12.0'}
@@ -12204,8 +11237,13 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
- ua-parser-js@1.0.40:
- resolution: {integrity: sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==}
+ typescript@5.9.3:
+ resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
+ ua-parser-js@1.0.41:
+ resolution: {integrity: sha512-LbBDqdIC5s8iROCUjMbW1f5dJQTEFB1+KO9ogbvlb3nm9n4YHa5p4KTvFPWvh2Hs8gZMBuiB1/8+pdfe/tDPug==}
hasBin: true
uc.micro@1.0.6:
@@ -12214,8 +11252,8 @@ packages:
uc.micro@2.1.0:
resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
- ufo@1.5.4:
- resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
+ ufo@1.6.1:
+ resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==}
unbox-primitive@1.1.0:
resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
@@ -12227,8 +11265,8 @@ packages:
undici-types@6.21.0:
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
- undici@6.21.2:
- resolution: {integrity: sha512-uROZWze0R0itiAKVPsYhFov9LxrPMHLMEQFszeI2gCN6bnIIZ8twzBCJcN2LJrBBLfrP0t1FW0g+JmKVl8Vk1g==}
+ undici@6.22.0:
+ resolution: {integrity: sha512-hU/10obOIu62MGYjdskASR3CUAiYaFTtC9Pa6vHyf//mAipSvSQg6od2CnJswq7fvzNS3zJhxoRkgNVaHurWKw==}
engines: {node: '>=18.17'}
unicode-canonical-property-names-ecmascript@2.0.1:
@@ -12239,12 +11277,12 @@ packages:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
- unicode-match-property-value-ecmascript@2.2.0:
- resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
+ unicode-match-property-value-ecmascript@2.2.1:
+ resolution: {integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==}
engines: {node: '>=4'}
- unicode-property-aliases-ecmascript@2.1.0:
- resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
+ unicode-property-aliases-ecmascript@2.2.0:
+ resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==}
engines: {node: '>=4'}
unicorn-magic@0.1.0:
@@ -12261,14 +11299,6 @@ packages:
resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==}
engines: {node: '>= 0.8.0'}
- unique-filename@3.0.0:
- resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- unique-slug@4.0.0:
- resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
unique-string@2.0.0:
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
engines: {node: '>=8'}
@@ -12309,18 +11339,10 @@ packages:
unist-util-visit@5.0.0:
resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
- universalify@0.1.2:
- resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
- engines: {node: '>= 4.0.0'}
-
universalify@0.2.0:
resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
engines: {node: '>= 4.0.0'}
- universalify@1.0.0:
- resolution: {integrity: sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==}
- engines: {node: '>= 10.0.0'}
-
universalify@2.0.1:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
@@ -12358,43 +11380,43 @@ packages:
resolution: {integrity: sha512-3GgqNa6iF7bC4hY/ImJKN4REQILcSU9VKcKL8gfELZM8mM5BnLH1BsCc8kBdnVGD1LIFOs4W3O2idNHhON1r0w==}
peerDependencies:
'@urql/core': ^5.0.0
- react: '>= 16.8.0'
+ react: 19.0.0
use-callback-ref@1.3.3:
resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- use-latest-callback@0.2.3:
- resolution: {integrity: sha512-7vI3fBuyRcP91pazVboc4qu+6ZqM8izPWX9k7cRnT8hbD5svslcknsh3S9BUhaK11OmgTV4oWZZVSeQAiV53SQ==}
+ use-latest-callback@0.2.5:
+ resolution: {integrity: sha512-TXEBT/M2zOFrS7t3EpxZIaYsEVod34ctrq2gDDV6Dr1KfFIy+sA++5KKpu2AkM3iIFqopPGe5C3IMQk6yqFFWw==}
peerDependencies:
- react: '>=16.8'
+ react: 19.0.0
use-sidecar@1.1.3:
resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ '@types/react': 19.0.14
+ react: 19.0.0
peerDependenciesMeta:
'@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
+ react: 19.0.0
- usehooks-ts@3.1.0:
- resolution: {integrity: sha512-bBIa7yUyPhE1BCc0GmR96VU/15l/9gP1Ch5mYdLcFBaFGQsdmXkvjV0TtOqW1yUd6VjIwDunm+flSciCQXujiw==}
+ usehooks-ts@3.1.1:
+ resolution: {integrity: sha512-I4diPp9Cq6ieSUH2wu+fDAVQO43xwtulo+fKEidHUwZPnYImbtkTjzIJYcDcJqxgmX31GVqNFURodvcgHcW0pA==}
engines: {node: '>=16.15.0'}
peerDependencies:
- react: ^16.8.0 || ^17 || ^18
+ react: 19.0.0
user-agent-data-types@0.4.2:
resolution: {integrity: sha512-jXep3kO/dGNmDOkbDa8ccp4QArgxR4I76m3QVcJ1aOF0B9toc+YtSXtX5gLdDTZXyWlpQYQrABr6L1L2GZOghw==}
@@ -12456,8 +11478,8 @@ packages:
vaul@1.1.2:
resolution: {integrity: sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==}
peerDependencies:
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
+ react: 19.0.0
+ react-dom: 19.0.0
vfile-location@5.0.3:
resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==}
@@ -12465,8 +11487,8 @@ packages:
vfile-message@3.1.4:
resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
- vfile-message@4.0.2:
- resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
+ vfile-message@4.0.3:
+ resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==}
vfile@5.3.7:
resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
@@ -12477,8 +11499,8 @@ packages:
victory-vendor@36.9.2:
resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==}
- vite-node@3.0.7:
- resolution: {integrity: sha512-2fX0QwX4GkkkpULXdT1Pf4q0tC1i1lFOyseKoonavXUNlQ77KpW2XqBGGNIm/J4Ows4KxgGJzDguYVPKwG/n5A==}
+ vite-node@3.2.4:
+ resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
@@ -12492,13 +11514,13 @@ packages:
vite:
optional: true
- vite-plugin-lib-inject-css@2.2.1:
- resolution: {integrity: sha512-PW3n/zRacr7bwNagHOnJfaVLoZyGDCPuFMJTyTFqjk4Xi0HKd1cK5+WlBidBBeWK8QE3SV0i+FsWmN+frBLCVQ==}
+ vite-plugin-lib-inject-css@2.2.2:
+ resolution: {integrity: sha512-NF30p0GwtfSAmVlxo2NgPXM2rEdtgV7LFi4lkzajKD7P3Ru/ZAFmI533M0Z5qyMZpvNMxVGkewzpjD0HOWtbDQ==}
peerDependencies:
vite: '*'
- vite@6.3.5:
- resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==}
+ vite@6.3.6:
+ resolution: {integrity: sha512-0msEVHJEScQbhkbVTb/4iHZdJ6SXp/AvxL2sjwYQFfBqleHtnCqv1J3sa9zbWz/6kW1m9Tfzn92vW+kZ1WV6QA==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
@@ -12537,16 +11559,16 @@ packages:
yaml:
optional: true
- vitest@3.0.7:
- resolution: {integrity: sha512-IP7gPK3LS3Fvn44x30X1dM9vtawm0aesAa2yBIZ9vQf+qB69NXC5776+Qmcr7ohUXIQuLhk7xQR0aSUIDPqavg==}
+ vitest@3.2.4:
+ resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/debug': ^4.1.12
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- '@vitest/browser': 3.0.7
- '@vitest/ui': 3.0.7
+ '@vitest/browser': 3.2.4
+ '@vitest/ui': 3.2.4
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -12568,8 +11590,8 @@ packages:
vlq@1.0.1:
resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==}
- vscode-uri@3.0.8:
- resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
+ vscode-uri@3.1.0:
+ resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
w3c-keyname@2.2.8:
resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
@@ -12594,15 +11616,11 @@ packages:
warn-once@0.1.1:
resolution: {integrity: sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==}
- watchpack@2.4.4:
- resolution: {integrity: sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==}
- engines: {node: '>=10.13.0'}
-
wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
- weaviate-client@3.6.2:
- resolution: {integrity: sha512-6z+Du0Sp+nVp4Mhsn25sd+Qw6fr60vbyUS1e3gTZqtMrxLuNC1xgA0J/MHu5oHcm6moCBqT/2AQCt4ZV4fYSaw==}
+ weaviate-client@3.9.0:
+ resolution: {integrity: sha512-7qwg7YONAaT4zWnohLrFdzky+rZegVe76J+Tky/+7tuyvjFpdKgSrdqI/wPDh8aji0ZGZrL4DdGwGfFnZ+uV4w==}
engines: {node: '>=18.0.0'}
web-namespaces@2.0.1:
@@ -12616,6 +11634,9 @@ packages:
resolution: {integrity: sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==}
engines: {node: '>= 14'}
+ webdriver-bidi-protocol@0.2.11:
+ resolution: {integrity: sha512-Y9E1/oi4XMxcR8AT0ZC4OvYntl34SPgwjmELH+owjBr0korAX4jKgZULBWILGCVGdVCQ0dodTToIETozhG8zvA==}
+
webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
@@ -12630,23 +11651,9 @@ packages:
resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
engines: {node: '>=12'}
- webpack-sources@3.3.3:
- resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==}
- engines: {node: '>=10.13.0'}
-
webpack-virtual-modules@0.6.2:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
- webpack@5.99.5:
- resolution: {integrity: sha512-q+vHBa6H9qwBLUlHL4Y7L0L1/LlyBKZtS9FHNCQmtayxjI5RKC9yD8gpvLeqGv5lCQp1Re04yi0MF40pf30Pvg==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
-
whatwg-encoding@2.0.0:
resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
engines: {node: '>=12'}
@@ -12666,8 +11673,8 @@ packages:
resolution: {integrity: sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==}
engines: {node: '>=10'}
- whatwg-url@14.1.0:
- resolution: {integrity: sha512-jlf/foYIKywAt3x/XWKZ/3rz8OSJPiWktjmk891alJUEjiVxKX9LEO92qH3hv4aJ0mN3MWPvGMCy8jQi95xK4w==}
+ whatwg-url@14.2.0:
+ resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==}
engines: {node: '>=18'}
whatwg-url@5.0.0:
@@ -12735,9 +11742,6 @@ packages:
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- write-file-atomic@2.4.3:
- resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
-
write-file-atomic@3.0.3:
resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
@@ -12768,18 +11772,6 @@ packages:
utf-8-validate:
optional: true
- ws@8.18.1:
- resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
-
ws@8.18.3:
resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==}
engines: {node: '>=10.0.0'}
@@ -12811,10 +11803,6 @@ packages:
resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
engines: {node: '>=4.0'}
- xmlbuilder@14.0.0:
- resolution: {integrity: sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==}
- engines: {node: '>=8.0'}
-
xmlbuilder@15.1.1:
resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==}
engines: {node: '>=8.0'}
@@ -12826,8 +11814,8 @@ packages:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
- y-prosemirror@1.3.6:
- resolution: {integrity: sha512-vtS2rv8+ll/TBQRqwUiqflgSuN/DhfvUQX0r5O3o5i0pO6K4pSNgFtVkOKtNWPBVkS6l9BDQjbtnDNftZnxq7Q==}
+ y-prosemirror@1.3.7:
+ resolution: {integrity: sha512-NpM99WSdD4Fx4if5xOMDpPtU3oAmTSjlzh5U4353ABbRHl1HtAFUx6HlebLZfyFxXN9jzKMDkVbcRjqOZVkYQg==}
engines: {node: '>=16.0.0', npm: '>=8.0.0'}
peerDependencies:
prosemirror-model: ^1.7.1
@@ -12855,9 +11843,13 @@ packages:
yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- yaml@2.7.0:
- resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==}
- engines: {node: '>= 14'}
+ 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==}
+ engines: {node: '>= 14.6'}
hasBin: true
yargs-parser@18.1.3:
@@ -12887,14 +11879,10 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.2.0:
- resolution: {integrity: sha512-KHBC7z61OJeaMGnF3wqNZj+GGNXOyypZviiKpQeiHirG5Ib1ImwcLBH70rbMSkKfSmUNBsdf2PwaEJtKvgmkNw==}
+ yocto-queue@1.2.1:
+ resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==}
engines: {node: '>=12.20'}
- yoctocolors-cjs@2.1.2:
- resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==}
- engines: {node: '>=18'}
-
zen-observable-ts@1.1.0:
resolution: {integrity: sha512-1h4zlLSqI2cRLPJUHJFL8bCWHhkpuXkF+dbGkRaWjgDIG26DmzyshUMrdV/rL3UnR+mhaX4fRq8LPouq0MYYIA==}
@@ -12909,13 +11897,13 @@ packages:
zod@3.25.76:
resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
- zustand@4.5.6:
- resolution: {integrity: sha512-ibr/n1hBzLLj5Y+yUcU7dYw8p6WnIVzdJbnX+1YpaScvZVF2ziugqHs+LAmHw4lWO9c/zRj+K1ncgWDQuthEdQ==}
+ zustand@4.5.7:
+ resolution: {integrity: sha512-CHOUy7mu3lbD6o6LJLfllpjkzhHXSBlX8B9+qPddUsIfeF5S/UZ5q0kmCsnRqT1UHFQZchNFDDzMbQsuesHWlw==}
engines: {node: '>=12.7.0'}
peerDependencies:
- '@types/react': '>=16.8'
+ '@types/react': 19.0.14
immer: '>=9.0.6'
- react: '>=16.8'
+ react: 19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -12929,17 +11917,17 @@ packages:
snapshots:
- '@0no-co/graphql.web@1.1.2(graphql@16.11.0)':
+ '@0no-co/graphql.web@1.2.0(graphql@16.11.0)':
optionalDependencies:
graphql: 16.11.0
- '@adobe/css-tools@4.4.3': {}
+ '@adobe/css-tools@4.4.4': {}
- '@ag-ui/client@0.0.35':
+ '@ag-ui/client@0.0.40':
dependencies:
- '@ag-ui/core': 0.0.35
- '@ag-ui/encoder': 0.0.35
- '@ag-ui/proto': 0.0.35
+ '@ag-ui/core': 0.0.39
+ '@ag-ui/encoder': 0.0.39
+ '@ag-ui/proto': 0.0.39
'@types/uuid': 10.0.0
fast-json-patch: 3.1.1
rxjs: 7.8.1
@@ -12947,26 +11935,27 @@ snapshots:
uuid: 11.1.0
zod: 3.25.76
- '@ag-ui/core@0.0.30':
+ '@ag-ui/core@0.0.37':
dependencies:
rxjs: 7.8.1
zod: 3.25.76
- '@ag-ui/core@0.0.35':
+ '@ag-ui/core@0.0.39':
dependencies:
rxjs: 7.8.1
zod: 3.25.76
- '@ag-ui/encoder@0.0.35':
+ '@ag-ui/encoder@0.0.39':
dependencies:
- '@ag-ui/core': 0.0.35
- '@ag-ui/proto': 0.0.35
+ '@ag-ui/core': 0.0.39
+ '@ag-ui/proto': 0.0.39
- '@ag-ui/langgraph@0.0.8(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@ag-ui/langgraph@0.0.18(@ag-ui/client@0.0.40)(@ag-ui/core@0.0.39)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@ag-ui/client': 0.0.35
- '@langchain/core': 0.3.72(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
- '@langchain/langgraph-sdk': 0.0.105(@langchain/core@0.3.72(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@ag-ui/client': 0.0.40
+ '@ag-ui/core': 0.0.39
+ '@langchain/core': 0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
+ '@langchain/langgraph-sdk': 0.1.9(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
partial-json: 0.1.7
rxjs: 7.8.1
transitivePeerDependencies:
@@ -12977,22 +11966,23 @@ snapshots:
- react
- react-dom
- '@ag-ui/proto@0.0.35':
+ '@ag-ui/proto@0.0.39':
dependencies:
- '@ag-ui/core': 0.0.35
- '@bufbuild/protobuf': 2.6.0
+ '@ag-ui/core': 0.0.39
+ '@bufbuild/protobuf': 2.9.0
+ '@protobuf-ts/protoc': 2.11.1
'@alloc/quick-lru@5.2.0': {}
'@ampproject/remapping@2.3.0':
dependencies:
- '@jridgewell/gen-mapping': 0.3.12
- '@jridgewell/trace-mapping': 0.3.29
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
'@anthropic-ai/sdk@0.27.3':
dependencies:
- '@types/node': 18.19.118
- '@types/node-fetch': 2.6.12
+ '@types/node': 18.19.130
+ '@types/node-fetch': 2.6.13
abort-controller: 3.0.0
agentkeepalive: 4.6.0
form-data-encoder: 1.7.2
@@ -13003,114 +11993,114 @@ snapshots:
'@anthropic-ai/sdk@0.57.0': {}
- '@asamuzakjp/css-color@2.8.3':
+ '@asamuzakjp/css-color@3.2.0':
dependencies:
- '@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-color-parser': 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-tokenizer': 3.0.3
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
lru-cache: 10.4.3
- '@ast-grep/napi-darwin-arm64@0.32.3':
+ '@ast-grep/napi-darwin-arm64@0.36.3':
optional: true
- '@ast-grep/napi-darwin-x64@0.32.3':
+ '@ast-grep/napi-darwin-x64@0.36.3':
optional: true
- '@ast-grep/napi-linux-arm64-gnu@0.32.3':
+ '@ast-grep/napi-linux-arm64-gnu@0.36.3':
optional: true
- '@ast-grep/napi-linux-arm64-musl@0.32.3':
+ '@ast-grep/napi-linux-arm64-musl@0.36.3':
optional: true
- '@ast-grep/napi-linux-x64-gnu@0.32.3':
+ '@ast-grep/napi-linux-x64-gnu@0.36.3':
optional: true
- '@ast-grep/napi-linux-x64-musl@0.32.3':
+ '@ast-grep/napi-linux-x64-musl@0.36.3':
optional: true
- '@ast-grep/napi-win32-arm64-msvc@0.32.3':
+ '@ast-grep/napi-win32-arm64-msvc@0.36.3':
optional: true
- '@ast-grep/napi-win32-ia32-msvc@0.32.3':
+ '@ast-grep/napi-win32-ia32-msvc@0.36.3':
optional: true
- '@ast-grep/napi-win32-x64-msvc@0.32.3':
+ '@ast-grep/napi-win32-x64-msvc@0.36.3':
optional: true
- '@ast-grep/napi@0.32.3':
+ '@ast-grep/napi@0.36.3':
optionalDependencies:
- '@ast-grep/napi-darwin-arm64': 0.32.3
- '@ast-grep/napi-darwin-x64': 0.32.3
- '@ast-grep/napi-linux-arm64-gnu': 0.32.3
- '@ast-grep/napi-linux-arm64-musl': 0.32.3
- '@ast-grep/napi-linux-x64-gnu': 0.32.3
- '@ast-grep/napi-linux-x64-musl': 0.32.3
- '@ast-grep/napi-win32-arm64-msvc': 0.32.3
- '@ast-grep/napi-win32-ia32-msvc': 0.32.3
- '@ast-grep/napi-win32-x64-msvc': 0.32.3
+ '@ast-grep/napi-darwin-arm64': 0.36.3
+ '@ast-grep/napi-darwin-x64': 0.36.3
+ '@ast-grep/napi-linux-arm64-gnu': 0.36.3
+ '@ast-grep/napi-linux-arm64-musl': 0.36.3
+ '@ast-grep/napi-linux-x64-gnu': 0.36.3
+ '@ast-grep/napi-linux-x64-musl': 0.36.3
+ '@ast-grep/napi-win32-arm64-msvc': 0.36.3
+ '@ast-grep/napi-win32-ia32-msvc': 0.36.3
+ '@ast-grep/napi-win32-x64-msvc': 0.36.3
- '@atlaskit/atlassian-context@0.5.0(react@18.3.1)':
+ '@atlaskit/atlassian-context@0.6.0(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.27.6
- react: 18.3.1
+ '@babel/runtime': 7.28.4
+ react: 19.0.0
- '@atlaskit/css@0.12.2(@types/react@18.3.18)(react@18.3.1)':
+ '@atlaskit/css@0.14.4(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- '@atlaskit/tokens': 6.0.0(@types/react@18.3.18)(react@18.3.1)
- '@babel/runtime': 7.27.6
- '@compiled/react': 0.18.6(react@18.3.1)
- react: 18.3.1
+ '@atlaskit/tokens': 6.4.3(@types/react@19.0.14)(react@19.0.0)
+ '@babel/runtime': 7.28.4
+ '@compiled/react': 0.18.6(react@19.0.0)
+ react: 19.0.0
transitivePeerDependencies:
- '@types/react'
- supports-color
- '@atlaskit/ds-lib@5.0.0(@types/react@18.3.18)(react@18.3.1)':
+ '@atlaskit/ds-lib@5.1.1(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- '@atlaskit/platform-feature-flags': 1.1.1(react@18.3.1)
- '@babel/runtime': 7.27.6
+ '@atlaskit/platform-feature-flags': 1.1.2(react@19.0.0)
+ '@babel/runtime': 7.28.4
bind-event-listener: 3.0.0
- react: 18.3.1
- react-uid: 2.4.0(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-uid: 2.4.0(@types/react@19.0.14)(react@19.0.0)
tiny-invariant: 1.3.3
transitivePeerDependencies:
- '@types/react'
- '@atlaskit/feature-gate-js-client@5.5.5(react@18.3.1)':
+ '@atlaskit/feature-gate-js-client@5.5.7(react@19.0.0)':
dependencies:
- '@atlaskit/atlassian-context': 0.5.0(react@18.3.1)
- '@babel/runtime': 7.27.6
- '@statsig/client-core': 3.24.4
- '@statsig/js-client': 3.24.4
+ '@atlaskit/atlassian-context': 0.6.0(react@19.0.0)
+ '@babel/runtime': 7.28.4
+ '@statsig/client-core': 3.26.0
+ '@statsig/js-client': 3.26.0
eventemitter3: 4.0.7
transitivePeerDependencies:
- react
- '@atlaskit/motion@5.3.0(@types/react@18.3.18)(react@18.3.1)':
+ '@atlaskit/motion@5.3.7(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- '@atlaskit/css': 0.12.2(@types/react@18.3.18)(react@18.3.1)
- '@atlaskit/ds-lib': 5.0.0(@types/react@18.3.18)(react@18.3.1)
- '@atlaskit/platform-feature-flags': 1.1.1(react@18.3.1)
- '@babel/runtime': 7.27.6
- '@compiled/react': 0.18.6(react@18.3.1)
+ '@atlaskit/css': 0.14.4(@types/react@19.0.14)(react@19.0.0)
+ '@atlaskit/ds-lib': 5.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@atlaskit/platform-feature-flags': 1.1.2(react@19.0.0)
+ '@babel/runtime': 7.28.4
+ '@compiled/react': 0.18.6(react@19.0.0)
bind-event-listener: 3.0.0
- react: 18.3.1
+ react: 19.0.0
transitivePeerDependencies:
- '@types/react'
- supports-color
- '@atlaskit/platform-feature-flags@1.1.1(react@18.3.1)':
+ '@atlaskit/platform-feature-flags@1.1.2(react@19.0.0)':
dependencies:
- '@atlaskit/feature-gate-js-client': 5.5.5(react@18.3.1)
- '@babel/runtime': 7.27.6
+ '@atlaskit/feature-gate-js-client': 5.5.7(react@19.0.0)
+ '@babel/runtime': 7.28.4
transitivePeerDependencies:
- react
- '@atlaskit/pragmatic-drag-and-drop-flourish@2.0.4(@types/react@18.3.18)(react@18.3.1)':
+ '@atlaskit/pragmatic-drag-and-drop-flourish@2.0.7(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- '@atlaskit/motion': 5.3.0(@types/react@18.3.18)(react@18.3.1)
- '@atlaskit/tokens': 6.0.0(@types/react@18.3.18)(react@18.3.1)
- '@babel/runtime': 7.27.6
+ '@atlaskit/motion': 5.3.7(@types/react@19.0.14)(react@19.0.0)
+ '@atlaskit/tokens': 6.4.3(@types/react@19.0.14)(react@19.0.0)
+ '@babel/runtime': 7.28.4
transitivePeerDependencies:
- '@types/react'
- react
@@ -13118,36 +12108,36 @@ snapshots:
'@atlaskit/pragmatic-drag-and-drop-hitbox@1.1.0':
dependencies:
- '@atlaskit/pragmatic-drag-and-drop': 1.7.4
- '@babel/runtime': 7.27.6
+ '@atlaskit/pragmatic-drag-and-drop': 1.7.7
+ '@babel/runtime': 7.28.4
- '@atlaskit/pragmatic-drag-and-drop-react-drop-indicator@3.2.5(@types/react@18.3.18)(react@18.3.1)':
+ '@atlaskit/pragmatic-drag-and-drop-react-drop-indicator@3.2.7(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- '@atlaskit/pragmatic-drag-and-drop': 1.7.4
+ '@atlaskit/pragmatic-drag-and-drop': 1.7.7
'@atlaskit/pragmatic-drag-and-drop-hitbox': 1.1.0
- '@atlaskit/tokens': 6.0.0(@types/react@18.3.18)(react@18.3.1)
- '@babel/runtime': 7.27.6
- '@compiled/react': 0.18.6(react@18.3.1)
- react: 18.3.1
+ '@atlaskit/tokens': 6.4.3(@types/react@19.0.14)(react@19.0.0)
+ '@babel/runtime': 7.28.4
+ '@compiled/react': 0.18.6(react@19.0.0)
+ react: 19.0.0
transitivePeerDependencies:
- '@types/react'
- supports-color
- '@atlaskit/pragmatic-drag-and-drop@1.7.4':
+ '@atlaskit/pragmatic-drag-and-drop@1.7.7':
dependencies:
- '@babel/runtime': 7.27.6
+ '@babel/runtime': 7.28.4
bind-event-listener: 3.0.0
raf-schd: 4.0.3
- '@atlaskit/tokens@6.0.0(@types/react@18.3.18)(react@18.3.1)':
+ '@atlaskit/tokens@6.4.3(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- '@atlaskit/ds-lib': 5.0.0(@types/react@18.3.18)(react@18.3.1)
- '@atlaskit/platform-feature-flags': 1.1.1(react@18.3.1)
- '@babel/runtime': 7.27.6
- '@babel/traverse': 7.28.0
- '@babel/types': 7.28.0
+ '@atlaskit/ds-lib': 5.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@atlaskit/platform-feature-flags': 1.1.2(react@19.0.0)
+ '@babel/runtime': 7.28.4
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.4
bind-event-listener: 3.0.0
- react: 18.3.1
+ react: 19.0.0
transitivePeerDependencies:
- '@types/react'
- supports-color
@@ -13155,7 +12145,7 @@ snapshots:
'@aws-crypto/crc32@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.840.0
+ '@aws-sdk/types': 3.901.0
tslib: 2.8.1
'@aws-crypto/sha256-browser@5.2.0':
@@ -13163,15 +12153,15 @@ snapshots:
'@aws-crypto/sha256-js': 5.2.0
'@aws-crypto/supports-web-crypto': 5.2.0
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.840.0
- '@aws-sdk/util-locate-window': 3.804.0
+ '@aws-sdk/types': 3.901.0
+ '@aws-sdk/util-locate-window': 3.893.0
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
'@aws-crypto/sha256-js@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.840.0
+ '@aws-sdk/types': 3.901.0
tslib: 2.8.1
'@aws-crypto/supports-web-crypto@5.2.0':
@@ -13180,472 +12170,473 @@ snapshots:
'@aws-crypto/util@5.2.0':
dependencies:
- '@aws-sdk/types': 3.840.0
+ '@aws-sdk/types': 3.901.0
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
- '@aws-sdk/client-bedrock-agent-runtime@3.844.0':
+ '@aws-sdk/client-bedrock-agent-runtime@3.907.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.844.0
- '@aws-sdk/credential-provider-node': 3.844.0
- '@aws-sdk/middleware-host-header': 3.840.0
- '@aws-sdk/middleware-logger': 3.840.0
- '@aws-sdk/middleware-recursion-detection': 3.840.0
- '@aws-sdk/middleware-user-agent': 3.844.0
- '@aws-sdk/region-config-resolver': 3.840.0
- '@aws-sdk/types': 3.840.0
- '@aws-sdk/util-endpoints': 3.844.0
- '@aws-sdk/util-user-agent-browser': 3.840.0
- '@aws-sdk/util-user-agent-node': 3.844.0
- '@smithy/config-resolver': 4.1.4
- '@smithy/core': 3.7.0
- '@smithy/eventstream-serde-browser': 4.0.4
- '@smithy/eventstream-serde-config-resolver': 4.1.2
- '@smithy/eventstream-serde-node': 4.0.4
- '@smithy/fetch-http-handler': 5.1.0
- '@smithy/hash-node': 4.0.4
- '@smithy/invalid-dependency': 4.0.4
- '@smithy/middleware-content-length': 4.0.4
- '@smithy/middleware-endpoint': 4.1.14
- '@smithy/middleware-retry': 4.1.15
- '@smithy/middleware-serde': 4.0.8
- '@smithy/middleware-stack': 4.0.4
- '@smithy/node-config-provider': 4.1.3
- '@smithy/node-http-handler': 4.1.0
- '@smithy/protocol-http': 5.1.2
- '@smithy/smithy-client': 4.4.6
- '@smithy/types': 4.3.1
- '@smithy/url-parser': 4.0.4
- '@smithy/util-base64': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.22
- '@smithy/util-defaults-mode-node': 4.0.22
- '@smithy/util-endpoints': 3.0.6
- '@smithy/util-middleware': 4.0.4
- '@smithy/util-retry': 4.0.6
- '@smithy/util-utf8': 4.0.0
+ '@aws-sdk/core': 3.907.0
+ '@aws-sdk/credential-provider-node': 3.907.0
+ '@aws-sdk/middleware-host-header': 3.901.0
+ '@aws-sdk/middleware-logger': 3.901.0
+ '@aws-sdk/middleware-recursion-detection': 3.901.0
+ '@aws-sdk/middleware-user-agent': 3.907.0
+ '@aws-sdk/region-config-resolver': 3.901.0
+ '@aws-sdk/types': 3.901.0
+ '@aws-sdk/util-endpoints': 3.901.0
+ '@aws-sdk/util-user-agent-browser': 3.907.0
+ '@aws-sdk/util-user-agent-node': 3.907.0
+ '@smithy/config-resolver': 4.3.0
+ '@smithy/core': 3.15.0
+ '@smithy/eventstream-serde-browser': 4.2.0
+ '@smithy/eventstream-serde-config-resolver': 4.3.0
+ '@smithy/eventstream-serde-node': 4.2.0
+ '@smithy/fetch-http-handler': 5.3.1
+ '@smithy/hash-node': 4.2.0
+ '@smithy/invalid-dependency': 4.2.0
+ '@smithy/middleware-content-length': 4.2.0
+ '@smithy/middleware-endpoint': 4.3.1
+ '@smithy/middleware-retry': 4.4.1
+ '@smithy/middleware-serde': 4.2.0
+ '@smithy/middleware-stack': 4.2.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/node-http-handler': 4.3.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/smithy-client': 4.7.1
+ '@smithy/types': 4.6.0
+ '@smithy/url-parser': 4.2.0
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-body-length-browser': 4.2.0
+ '@smithy/util-body-length-node': 4.2.1
+ '@smithy/util-defaults-mode-browser': 4.3.0
+ '@smithy/util-defaults-mode-node': 4.2.1
+ '@smithy/util-endpoints': 3.2.0
+ '@smithy/util-middleware': 4.2.0
+ '@smithy/util-retry': 4.2.0
+ '@smithy/util-utf8': 4.2.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-bedrock-runtime@3.844.0':
+ '@aws-sdk/client-bedrock-runtime@3.907.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.844.0
- '@aws-sdk/credential-provider-node': 3.844.0
- '@aws-sdk/eventstream-handler-node': 3.840.0
- '@aws-sdk/middleware-eventstream': 3.840.0
- '@aws-sdk/middleware-host-header': 3.840.0
- '@aws-sdk/middleware-logger': 3.840.0
- '@aws-sdk/middleware-recursion-detection': 3.840.0
- '@aws-sdk/middleware-user-agent': 3.844.0
- '@aws-sdk/middleware-websocket': 3.844.0
- '@aws-sdk/region-config-resolver': 3.840.0
- '@aws-sdk/token-providers': 3.844.0
- '@aws-sdk/types': 3.840.0
- '@aws-sdk/util-endpoints': 3.844.0
- '@aws-sdk/util-user-agent-browser': 3.840.0
- '@aws-sdk/util-user-agent-node': 3.844.0
- '@smithy/config-resolver': 4.1.4
- '@smithy/core': 3.7.0
- '@smithy/eventstream-serde-browser': 4.0.4
- '@smithy/eventstream-serde-config-resolver': 4.1.2
- '@smithy/eventstream-serde-node': 4.0.4
- '@smithy/fetch-http-handler': 5.1.0
- '@smithy/hash-node': 4.0.4
- '@smithy/invalid-dependency': 4.0.4
- '@smithy/middleware-content-length': 4.0.4
- '@smithy/middleware-endpoint': 4.1.14
- '@smithy/middleware-retry': 4.1.15
- '@smithy/middleware-serde': 4.0.8
- '@smithy/middleware-stack': 4.0.4
- '@smithy/node-config-provider': 4.1.3
- '@smithy/node-http-handler': 4.1.0
- '@smithy/protocol-http': 5.1.2
- '@smithy/smithy-client': 4.4.6
- '@smithy/types': 4.3.1
- '@smithy/url-parser': 4.0.4
- '@smithy/util-base64': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.22
- '@smithy/util-defaults-mode-node': 4.0.22
- '@smithy/util-endpoints': 3.0.6
- '@smithy/util-middleware': 4.0.4
- '@smithy/util-retry': 4.0.6
- '@smithy/util-stream': 4.2.3
- '@smithy/util-utf8': 4.0.0
- '@types/uuid': 9.0.8
+ '@aws-sdk/core': 3.907.0
+ '@aws-sdk/credential-provider-node': 3.907.0
+ '@aws-sdk/eventstream-handler-node': 3.901.0
+ '@aws-sdk/middleware-eventstream': 3.901.0
+ '@aws-sdk/middleware-host-header': 3.901.0
+ '@aws-sdk/middleware-logger': 3.901.0
+ '@aws-sdk/middleware-recursion-detection': 3.901.0
+ '@aws-sdk/middleware-user-agent': 3.907.0
+ '@aws-sdk/middleware-websocket': 3.901.0
+ '@aws-sdk/region-config-resolver': 3.901.0
+ '@aws-sdk/token-providers': 3.907.0
+ '@aws-sdk/types': 3.901.0
+ '@aws-sdk/util-endpoints': 3.901.0
+ '@aws-sdk/util-user-agent-browser': 3.907.0
+ '@aws-sdk/util-user-agent-node': 3.907.0
+ '@smithy/config-resolver': 4.3.0
+ '@smithy/core': 3.15.0
+ '@smithy/eventstream-serde-browser': 4.2.0
+ '@smithy/eventstream-serde-config-resolver': 4.3.0
+ '@smithy/eventstream-serde-node': 4.2.0
+ '@smithy/fetch-http-handler': 5.3.1
+ '@smithy/hash-node': 4.2.0
+ '@smithy/invalid-dependency': 4.2.0
+ '@smithy/middleware-content-length': 4.2.0
+ '@smithy/middleware-endpoint': 4.3.1
+ '@smithy/middleware-retry': 4.4.1
+ '@smithy/middleware-serde': 4.2.0
+ '@smithy/middleware-stack': 4.2.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/node-http-handler': 4.3.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/smithy-client': 4.7.1
+ '@smithy/types': 4.6.0
+ '@smithy/url-parser': 4.2.0
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-body-length-browser': 4.2.0
+ '@smithy/util-body-length-node': 4.2.1
+ '@smithy/util-defaults-mode-browser': 4.3.0
+ '@smithy/util-defaults-mode-node': 4.2.1
+ '@smithy/util-endpoints': 3.2.0
+ '@smithy/util-middleware': 4.2.0
+ '@smithy/util-retry': 4.2.0
+ '@smithy/util-stream': 4.5.0
+ '@smithy/util-utf8': 4.2.0
+ '@smithy/uuid': 1.1.0
tslib: 2.8.1
- uuid: 9.0.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-kendra@3.844.0':
+ '@aws-sdk/client-kendra@3.907.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.844.0
- '@aws-sdk/credential-provider-node': 3.844.0
- '@aws-sdk/middleware-host-header': 3.840.0
- '@aws-sdk/middleware-logger': 3.840.0
- '@aws-sdk/middleware-recursion-detection': 3.840.0
- '@aws-sdk/middleware-user-agent': 3.844.0
- '@aws-sdk/region-config-resolver': 3.840.0
- '@aws-sdk/types': 3.840.0
- '@aws-sdk/util-endpoints': 3.844.0
- '@aws-sdk/util-user-agent-browser': 3.840.0
- '@aws-sdk/util-user-agent-node': 3.844.0
- '@smithy/config-resolver': 4.1.4
- '@smithy/core': 3.7.0
- '@smithy/fetch-http-handler': 5.1.0
- '@smithy/hash-node': 4.0.4
- '@smithy/invalid-dependency': 4.0.4
- '@smithy/middleware-content-length': 4.0.4
- '@smithy/middleware-endpoint': 4.1.14
- '@smithy/middleware-retry': 4.1.15
- '@smithy/middleware-serde': 4.0.8
- '@smithy/middleware-stack': 4.0.4
- '@smithy/node-config-provider': 4.1.3
- '@smithy/node-http-handler': 4.1.0
- '@smithy/protocol-http': 5.1.2
- '@smithy/smithy-client': 4.4.6
- '@smithy/types': 4.3.1
- '@smithy/url-parser': 4.0.4
- '@smithy/util-base64': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.22
- '@smithy/util-defaults-mode-node': 4.0.22
- '@smithy/util-endpoints': 3.0.6
- '@smithy/util-middleware': 4.0.4
- '@smithy/util-retry': 4.0.6
- '@smithy/util-utf8': 4.0.0
- '@types/uuid': 9.0.8
+ '@aws-sdk/core': 3.907.0
+ '@aws-sdk/credential-provider-node': 3.907.0
+ '@aws-sdk/middleware-host-header': 3.901.0
+ '@aws-sdk/middleware-logger': 3.901.0
+ '@aws-sdk/middleware-recursion-detection': 3.901.0
+ '@aws-sdk/middleware-user-agent': 3.907.0
+ '@aws-sdk/region-config-resolver': 3.901.0
+ '@aws-sdk/types': 3.901.0
+ '@aws-sdk/util-endpoints': 3.901.0
+ '@aws-sdk/util-user-agent-browser': 3.907.0
+ '@aws-sdk/util-user-agent-node': 3.907.0
+ '@smithy/config-resolver': 4.3.0
+ '@smithy/core': 3.15.0
+ '@smithy/fetch-http-handler': 5.3.1
+ '@smithy/hash-node': 4.2.0
+ '@smithy/invalid-dependency': 4.2.0
+ '@smithy/middleware-content-length': 4.2.0
+ '@smithy/middleware-endpoint': 4.3.1
+ '@smithy/middleware-retry': 4.4.1
+ '@smithy/middleware-serde': 4.2.0
+ '@smithy/middleware-stack': 4.2.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/node-http-handler': 4.3.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/smithy-client': 4.7.1
+ '@smithy/types': 4.6.0
+ '@smithy/url-parser': 4.2.0
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-body-length-browser': 4.2.0
+ '@smithy/util-body-length-node': 4.2.1
+ '@smithy/util-defaults-mode-browser': 4.3.0
+ '@smithy/util-defaults-mode-node': 4.2.1
+ '@smithy/util-endpoints': 3.2.0
+ '@smithy/util-middleware': 4.2.0
+ '@smithy/util-retry': 4.2.0
+ '@smithy/util-utf8': 4.2.0
+ '@smithy/uuid': 1.1.0
tslib: 2.8.1
- uuid: 9.0.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sso@3.844.0':
+ '@aws-sdk/client-sso@3.907.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.844.0
- '@aws-sdk/middleware-host-header': 3.840.0
- '@aws-sdk/middleware-logger': 3.840.0
- '@aws-sdk/middleware-recursion-detection': 3.840.0
- '@aws-sdk/middleware-user-agent': 3.844.0
- '@aws-sdk/region-config-resolver': 3.840.0
- '@aws-sdk/types': 3.840.0
- '@aws-sdk/util-endpoints': 3.844.0
- '@aws-sdk/util-user-agent-browser': 3.840.0
- '@aws-sdk/util-user-agent-node': 3.844.0
- '@smithy/config-resolver': 4.1.4
- '@smithy/core': 3.7.0
- '@smithy/fetch-http-handler': 5.1.0
- '@smithy/hash-node': 4.0.4
- '@smithy/invalid-dependency': 4.0.4
- '@smithy/middleware-content-length': 4.0.4
- '@smithy/middleware-endpoint': 4.1.14
- '@smithy/middleware-retry': 4.1.15
- '@smithy/middleware-serde': 4.0.8
- '@smithy/middleware-stack': 4.0.4
- '@smithy/node-config-provider': 4.1.3
- '@smithy/node-http-handler': 4.1.0
- '@smithy/protocol-http': 5.1.2
- '@smithy/smithy-client': 4.4.6
- '@smithy/types': 4.3.1
- '@smithy/url-parser': 4.0.4
- '@smithy/util-base64': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.22
- '@smithy/util-defaults-mode-node': 4.0.22
- '@smithy/util-endpoints': 3.0.6
- '@smithy/util-middleware': 4.0.4
- '@smithy/util-retry': 4.0.6
- '@smithy/util-utf8': 4.0.0
+ '@aws-sdk/core': 3.907.0
+ '@aws-sdk/middleware-host-header': 3.901.0
+ '@aws-sdk/middleware-logger': 3.901.0
+ '@aws-sdk/middleware-recursion-detection': 3.901.0
+ '@aws-sdk/middleware-user-agent': 3.907.0
+ '@aws-sdk/region-config-resolver': 3.901.0
+ '@aws-sdk/types': 3.901.0
+ '@aws-sdk/util-endpoints': 3.901.0
+ '@aws-sdk/util-user-agent-browser': 3.907.0
+ '@aws-sdk/util-user-agent-node': 3.907.0
+ '@smithy/config-resolver': 4.3.0
+ '@smithy/core': 3.15.0
+ '@smithy/fetch-http-handler': 5.3.1
+ '@smithy/hash-node': 4.2.0
+ '@smithy/invalid-dependency': 4.2.0
+ '@smithy/middleware-content-length': 4.2.0
+ '@smithy/middleware-endpoint': 4.3.1
+ '@smithy/middleware-retry': 4.4.1
+ '@smithy/middleware-serde': 4.2.0
+ '@smithy/middleware-stack': 4.2.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/node-http-handler': 4.3.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/smithy-client': 4.7.1
+ '@smithy/types': 4.6.0
+ '@smithy/url-parser': 4.2.0
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-body-length-browser': 4.2.0
+ '@smithy/util-body-length-node': 4.2.1
+ '@smithy/util-defaults-mode-browser': 4.3.0
+ '@smithy/util-defaults-mode-node': 4.2.1
+ '@smithy/util-endpoints': 3.2.0
+ '@smithy/util-middleware': 4.2.0
+ '@smithy/util-retry': 4.2.0
+ '@smithy/util-utf8': 4.2.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/core@3.844.0':
- dependencies:
- '@aws-sdk/types': 3.840.0
- '@aws-sdk/xml-builder': 3.821.0
- '@smithy/core': 3.7.0
- '@smithy/node-config-provider': 4.1.3
- '@smithy/property-provider': 4.0.4
- '@smithy/protocol-http': 5.1.2
- '@smithy/signature-v4': 5.1.2
- '@smithy/smithy-client': 4.4.6
- '@smithy/types': 4.3.1
- '@smithy/util-base64': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-middleware': 4.0.4
- '@smithy/util-utf8': 4.0.0
- fast-xml-parser: 5.2.5
+ '@aws-sdk/core@3.907.0':
+ dependencies:
+ '@aws-sdk/types': 3.901.0
+ '@aws-sdk/xml-builder': 3.901.0
+ '@smithy/core': 3.15.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/signature-v4': 5.3.0
+ '@smithy/smithy-client': 4.7.1
+ '@smithy/types': 4.6.0
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-middleware': 4.2.0
+ '@smithy/util-utf8': 4.2.0
tslib: 2.8.1
- '@aws-sdk/credential-provider-env@3.844.0':
+ '@aws-sdk/credential-provider-env@3.907.0':
dependencies:
- '@aws-sdk/core': 3.844.0
- '@aws-sdk/types': 3.840.0
- '@smithy/property-provider': 4.0.4
- '@smithy/types': 4.3.1
+ '@aws-sdk/core': 3.907.0
+ '@aws-sdk/types': 3.901.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@aws-sdk/credential-provider-http@3.844.0':
- dependencies:
- '@aws-sdk/core': 3.844.0
- '@aws-sdk/types': 3.840.0
- '@smithy/fetch-http-handler': 5.1.0
- '@smithy/node-http-handler': 4.1.0
- '@smithy/property-provider': 4.0.4
- '@smithy/protocol-http': 5.1.2
- '@smithy/smithy-client': 4.4.6
- '@smithy/types': 4.3.1
- '@smithy/util-stream': 4.2.3
+ '@aws-sdk/credential-provider-http@3.907.0':
+ dependencies:
+ '@aws-sdk/core': 3.907.0
+ '@aws-sdk/types': 3.901.0
+ '@smithy/fetch-http-handler': 5.3.1
+ '@smithy/node-http-handler': 4.3.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/smithy-client': 4.7.1
+ '@smithy/types': 4.6.0
+ '@smithy/util-stream': 4.5.0
tslib: 2.8.1
- '@aws-sdk/credential-provider-ini@3.844.0':
- dependencies:
- '@aws-sdk/core': 3.844.0
- '@aws-sdk/credential-provider-env': 3.844.0
- '@aws-sdk/credential-provider-http': 3.844.0
- '@aws-sdk/credential-provider-process': 3.844.0
- '@aws-sdk/credential-provider-sso': 3.844.0
- '@aws-sdk/credential-provider-web-identity': 3.844.0
- '@aws-sdk/nested-clients': 3.844.0
- '@aws-sdk/types': 3.840.0
- '@smithy/credential-provider-imds': 4.0.6
- '@smithy/property-provider': 4.0.4
- '@smithy/shared-ini-file-loader': 4.0.4
- '@smithy/types': 4.3.1
+ '@aws-sdk/credential-provider-ini@3.907.0':
+ dependencies:
+ '@aws-sdk/core': 3.907.0
+ '@aws-sdk/credential-provider-env': 3.907.0
+ '@aws-sdk/credential-provider-http': 3.907.0
+ '@aws-sdk/credential-provider-process': 3.907.0
+ '@aws-sdk/credential-provider-sso': 3.907.0
+ '@aws-sdk/credential-provider-web-identity': 3.907.0
+ '@aws-sdk/nested-clients': 3.907.0
+ '@aws-sdk/types': 3.901.0
+ '@smithy/credential-provider-imds': 4.2.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/shared-ini-file-loader': 4.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/credential-provider-node@3.844.0':
- dependencies:
- '@aws-sdk/credential-provider-env': 3.844.0
- '@aws-sdk/credential-provider-http': 3.844.0
- '@aws-sdk/credential-provider-ini': 3.844.0
- '@aws-sdk/credential-provider-process': 3.844.0
- '@aws-sdk/credential-provider-sso': 3.844.0
- '@aws-sdk/credential-provider-web-identity': 3.844.0
- '@aws-sdk/types': 3.840.0
- '@smithy/credential-provider-imds': 4.0.6
- '@smithy/property-provider': 4.0.4
- '@smithy/shared-ini-file-loader': 4.0.4
- '@smithy/types': 4.3.1
+ '@aws-sdk/credential-provider-node@3.907.0':
+ dependencies:
+ '@aws-sdk/credential-provider-env': 3.907.0
+ '@aws-sdk/credential-provider-http': 3.907.0
+ '@aws-sdk/credential-provider-ini': 3.907.0
+ '@aws-sdk/credential-provider-process': 3.907.0
+ '@aws-sdk/credential-provider-sso': 3.907.0
+ '@aws-sdk/credential-provider-web-identity': 3.907.0
+ '@aws-sdk/types': 3.901.0
+ '@smithy/credential-provider-imds': 4.2.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/shared-ini-file-loader': 4.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/credential-provider-process@3.844.0':
+ '@aws-sdk/credential-provider-process@3.907.0':
dependencies:
- '@aws-sdk/core': 3.844.0
- '@aws-sdk/types': 3.840.0
- '@smithy/property-provider': 4.0.4
- '@smithy/shared-ini-file-loader': 4.0.4
- '@smithy/types': 4.3.1
+ '@aws-sdk/core': 3.907.0
+ '@aws-sdk/types': 3.901.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/shared-ini-file-loader': 4.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@aws-sdk/credential-provider-sso@3.844.0':
+ '@aws-sdk/credential-provider-sso@3.907.0':
dependencies:
- '@aws-sdk/client-sso': 3.844.0
- '@aws-sdk/core': 3.844.0
- '@aws-sdk/token-providers': 3.844.0
- '@aws-sdk/types': 3.840.0
- '@smithy/property-provider': 4.0.4
- '@smithy/shared-ini-file-loader': 4.0.4
- '@smithy/types': 4.3.1
+ '@aws-sdk/client-sso': 3.907.0
+ '@aws-sdk/core': 3.907.0
+ '@aws-sdk/token-providers': 3.907.0
+ '@aws-sdk/types': 3.901.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/shared-ini-file-loader': 4.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/credential-provider-web-identity@3.844.0':
+ '@aws-sdk/credential-provider-web-identity@3.907.0':
dependencies:
- '@aws-sdk/core': 3.844.0
- '@aws-sdk/nested-clients': 3.844.0
- '@aws-sdk/types': 3.840.0
- '@smithy/property-provider': 4.0.4
- '@smithy/types': 4.3.1
+ '@aws-sdk/core': 3.907.0
+ '@aws-sdk/nested-clients': 3.907.0
+ '@aws-sdk/types': 3.901.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/shared-ini-file-loader': 4.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/eventstream-handler-node@3.840.0':
+ '@aws-sdk/eventstream-handler-node@3.901.0':
dependencies:
- '@aws-sdk/types': 3.840.0
- '@smithy/eventstream-codec': 4.0.4
- '@smithy/types': 4.3.1
+ '@aws-sdk/types': 3.901.0
+ '@smithy/eventstream-codec': 4.2.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@aws-sdk/middleware-eventstream@3.840.0':
+ '@aws-sdk/middleware-eventstream@3.901.0':
dependencies:
- '@aws-sdk/types': 3.840.0
- '@smithy/protocol-http': 5.1.2
- '@smithy/types': 4.3.1
+ '@aws-sdk/types': 3.901.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@aws-sdk/middleware-host-header@3.840.0':
+ '@aws-sdk/middleware-host-header@3.901.0':
dependencies:
- '@aws-sdk/types': 3.840.0
- '@smithy/protocol-http': 5.1.2
- '@smithy/types': 4.3.1
+ '@aws-sdk/types': 3.901.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@aws-sdk/middleware-logger@3.840.0':
+ '@aws-sdk/middleware-logger@3.901.0':
dependencies:
- '@aws-sdk/types': 3.840.0
- '@smithy/types': 4.3.1
+ '@aws-sdk/types': 3.901.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@aws-sdk/middleware-recursion-detection@3.840.0':
+ '@aws-sdk/middleware-recursion-detection@3.901.0':
dependencies:
- '@aws-sdk/types': 3.840.0
- '@smithy/protocol-http': 5.1.2
- '@smithy/types': 4.3.1
+ '@aws-sdk/types': 3.901.0
+ '@aws/lambda-invoke-store': 0.0.1
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@aws-sdk/middleware-user-agent@3.844.0':
+ '@aws-sdk/middleware-user-agent@3.907.0':
dependencies:
- '@aws-sdk/core': 3.844.0
- '@aws-sdk/types': 3.840.0
- '@aws-sdk/util-endpoints': 3.844.0
- '@smithy/core': 3.7.0
- '@smithy/protocol-http': 5.1.2
- '@smithy/types': 4.3.1
+ '@aws-sdk/core': 3.907.0
+ '@aws-sdk/types': 3.901.0
+ '@aws-sdk/util-endpoints': 3.901.0
+ '@smithy/core': 3.15.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@aws-sdk/middleware-websocket@3.844.0':
- dependencies:
- '@aws-sdk/types': 3.840.0
- '@aws-sdk/util-format-url': 3.840.0
- '@smithy/eventstream-codec': 4.0.4
- '@smithy/eventstream-serde-browser': 4.0.4
- '@smithy/fetch-http-handler': 5.1.0
- '@smithy/protocol-http': 5.1.2
- '@smithy/signature-v4': 5.1.2
- '@smithy/types': 4.3.1
- '@smithy/util-hex-encoding': 4.0.0
+ '@aws-sdk/middleware-websocket@3.901.0':
+ dependencies:
+ '@aws-sdk/types': 3.901.0
+ '@aws-sdk/util-format-url': 3.901.0
+ '@smithy/eventstream-codec': 4.2.0
+ '@smithy/eventstream-serde-browser': 4.2.0
+ '@smithy/fetch-http-handler': 5.3.1
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/signature-v4': 5.3.0
+ '@smithy/types': 4.6.0
+ '@smithy/util-hex-encoding': 4.2.0
tslib: 2.8.1
- '@aws-sdk/nested-clients@3.844.0':
+ '@aws-sdk/nested-clients@3.907.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.844.0
- '@aws-sdk/middleware-host-header': 3.840.0
- '@aws-sdk/middleware-logger': 3.840.0
- '@aws-sdk/middleware-recursion-detection': 3.840.0
- '@aws-sdk/middleware-user-agent': 3.844.0
- '@aws-sdk/region-config-resolver': 3.840.0
- '@aws-sdk/types': 3.840.0
- '@aws-sdk/util-endpoints': 3.844.0
- '@aws-sdk/util-user-agent-browser': 3.840.0
- '@aws-sdk/util-user-agent-node': 3.844.0
- '@smithy/config-resolver': 4.1.4
- '@smithy/core': 3.7.0
- '@smithy/fetch-http-handler': 5.1.0
- '@smithy/hash-node': 4.0.4
- '@smithy/invalid-dependency': 4.0.4
- '@smithy/middleware-content-length': 4.0.4
- '@smithy/middleware-endpoint': 4.1.14
- '@smithy/middleware-retry': 4.1.15
- '@smithy/middleware-serde': 4.0.8
- '@smithy/middleware-stack': 4.0.4
- '@smithy/node-config-provider': 4.1.3
- '@smithy/node-http-handler': 4.1.0
- '@smithy/protocol-http': 5.1.2
- '@smithy/smithy-client': 4.4.6
- '@smithy/types': 4.3.1
- '@smithy/url-parser': 4.0.4
- '@smithy/util-base64': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.22
- '@smithy/util-defaults-mode-node': 4.0.22
- '@smithy/util-endpoints': 3.0.6
- '@smithy/util-middleware': 4.0.4
- '@smithy/util-retry': 4.0.6
- '@smithy/util-utf8': 4.0.0
+ '@aws-sdk/core': 3.907.0
+ '@aws-sdk/middleware-host-header': 3.901.0
+ '@aws-sdk/middleware-logger': 3.901.0
+ '@aws-sdk/middleware-recursion-detection': 3.901.0
+ '@aws-sdk/middleware-user-agent': 3.907.0
+ '@aws-sdk/region-config-resolver': 3.901.0
+ '@aws-sdk/types': 3.901.0
+ '@aws-sdk/util-endpoints': 3.901.0
+ '@aws-sdk/util-user-agent-browser': 3.907.0
+ '@aws-sdk/util-user-agent-node': 3.907.0
+ '@smithy/config-resolver': 4.3.0
+ '@smithy/core': 3.15.0
+ '@smithy/fetch-http-handler': 5.3.1
+ '@smithy/hash-node': 4.2.0
+ '@smithy/invalid-dependency': 4.2.0
+ '@smithy/middleware-content-length': 4.2.0
+ '@smithy/middleware-endpoint': 4.3.1
+ '@smithy/middleware-retry': 4.4.1
+ '@smithy/middleware-serde': 4.2.0
+ '@smithy/middleware-stack': 4.2.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/node-http-handler': 4.3.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/smithy-client': 4.7.1
+ '@smithy/types': 4.6.0
+ '@smithy/url-parser': 4.2.0
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-body-length-browser': 4.2.0
+ '@smithy/util-body-length-node': 4.2.1
+ '@smithy/util-defaults-mode-browser': 4.3.0
+ '@smithy/util-defaults-mode-node': 4.2.1
+ '@smithy/util-endpoints': 3.2.0
+ '@smithy/util-middleware': 4.2.0
+ '@smithy/util-retry': 4.2.0
+ '@smithy/util-utf8': 4.2.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/region-config-resolver@3.840.0':
+ '@aws-sdk/region-config-resolver@3.901.0':
dependencies:
- '@aws-sdk/types': 3.840.0
- '@smithy/node-config-provider': 4.1.3
- '@smithy/types': 4.3.1
- '@smithy/util-config-provider': 4.0.0
- '@smithy/util-middleware': 4.0.4
+ '@aws-sdk/types': 3.901.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/types': 4.6.0
+ '@smithy/util-config-provider': 4.2.0
+ '@smithy/util-middleware': 4.2.0
tslib: 2.8.1
- '@aws-sdk/token-providers@3.844.0':
+ '@aws-sdk/token-providers@3.907.0':
dependencies:
- '@aws-sdk/core': 3.844.0
- '@aws-sdk/nested-clients': 3.844.0
- '@aws-sdk/types': 3.840.0
- '@smithy/property-provider': 4.0.4
- '@smithy/shared-ini-file-loader': 4.0.4
- '@smithy/types': 4.3.1
+ '@aws-sdk/core': 3.907.0
+ '@aws-sdk/nested-clients': 3.907.0
+ '@aws-sdk/types': 3.901.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/shared-ini-file-loader': 4.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/types@3.840.0':
+ '@aws-sdk/types@3.901.0':
dependencies:
- '@smithy/types': 4.3.1
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@aws-sdk/util-endpoints@3.844.0':
+ '@aws-sdk/util-endpoints@3.901.0':
dependencies:
- '@aws-sdk/types': 3.840.0
- '@smithy/types': 4.3.1
- '@smithy/url-parser': 4.0.4
- '@smithy/util-endpoints': 3.0.6
+ '@aws-sdk/types': 3.901.0
+ '@smithy/types': 4.6.0
+ '@smithy/url-parser': 4.2.0
+ '@smithy/util-endpoints': 3.2.0
tslib: 2.8.1
- '@aws-sdk/util-format-url@3.840.0':
+ '@aws-sdk/util-format-url@3.901.0':
dependencies:
- '@aws-sdk/types': 3.840.0
- '@smithy/querystring-builder': 4.0.4
- '@smithy/types': 4.3.1
+ '@aws-sdk/types': 3.901.0
+ '@smithy/querystring-builder': 4.2.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@aws-sdk/util-locate-window@3.804.0':
+ '@aws-sdk/util-locate-window@3.893.0':
dependencies:
tslib: 2.8.1
- '@aws-sdk/util-user-agent-browser@3.840.0':
+ '@aws-sdk/util-user-agent-browser@3.907.0':
dependencies:
- '@aws-sdk/types': 3.840.0
- '@smithy/types': 4.3.1
- bowser: 2.11.0
+ '@aws-sdk/types': 3.901.0
+ '@smithy/types': 4.6.0
+ bowser: 2.12.1
tslib: 2.8.1
- '@aws-sdk/util-user-agent-node@3.844.0':
+ '@aws-sdk/util-user-agent-node@3.907.0':
dependencies:
- '@aws-sdk/middleware-user-agent': 3.844.0
- '@aws-sdk/types': 3.840.0
- '@smithy/node-config-provider': 4.1.3
- '@smithy/types': 4.3.1
+ '@aws-sdk/middleware-user-agent': 3.907.0
+ '@aws-sdk/types': 3.901.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@aws-sdk/xml-builder@3.821.0':
+ '@aws-sdk/xml-builder@3.901.0':
dependencies:
- '@smithy/types': 4.3.1
+ '@smithy/types': 4.6.0
+ fast-xml-parser: 5.2.5
tslib: 2.8.1
+ '@aws/lambda-invoke-store@0.0.1': {}
+
'@babel/code-frame@7.10.4':
dependencies:
'@babel/highlight': 7.25.9
@@ -13656,74 +12647,74 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.28.0': {}
+ '@babel/compat-data@7.28.4': {}
- '@babel/core@7.26.10':
+ '@babel/core@7.28.4':
dependencies:
- '@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.0
+ '@babel/generator': 7.28.3
'@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.10)
- '@babel/helpers': 7.27.0
- '@babel/parser': 7.28.0
+ '@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.0
- '@babel/types': 7.28.0
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.4
+ '@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
- debug: 4.4.1
+ debug: 4.4.3
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.28.0':
+ '@babel/generator@7.28.3':
dependencies:
- '@babel/parser': 7.28.0
- '@babel/types': 7.28.0
- '@jridgewell/gen-mapping': 0.3.12
- '@jridgewell/trace-mapping': 0.3.29
+ '@babel/parser': 7.28.4
+ '@babel/types': 7.28.4
+ '@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.0
+ '@babel/types': 7.28.4
'@babel/helper-compilation-targets@7.27.2':
dependencies:
- '@babel/compat-data': 7.28.0
+ '@babel/compat-data': 7.28.4
'@babel/helper-validator-option': 7.27.1
- browserslist: 4.25.1
+ browserslist: 4.26.3
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.26.10)':
+ '@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-member-expression-to-functions': 7.27.1
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.10)
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.4
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.26.10)':
+ '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
- regexpu-core: 6.2.0
+ regexpu-core: 6.4.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.26.10)':
+ '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- debug: 4.4.1
+ debug: 4.4.3
lodash.debounce: 4.0.8
resolve: 1.22.10
transitivePeerDependencies:
@@ -13733,55 +12724,55 @@ snapshots:
'@babel/helper-member-expression-to-functions@7.27.1':
dependencies:
- '@babel/traverse': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.4
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.27.1':
dependencies:
- '@babel/traverse': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.27.3(@babel/core@7.26.10)':
+ '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-module-imports': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.27.1':
dependencies:
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.4
'@babel/helper-plugin-utils@7.27.1': {}
- '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.26.10)':
+ '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-wrap-function': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/helper-wrap-function': 7.28.3
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.27.1(@babel/core@7.26.10)':
+ '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-member-expression-to-functions': 7.27.1
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
- '@babel/traverse': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.4
transitivePeerDependencies:
- supports-color
@@ -13791,18 +12782,18 @@ snapshots:
'@babel/helper-validator-option@7.27.1': {}
- '@babel/helper-wrap-function@7.27.1':
+ '@babel/helper-wrap-function@7.28.3':
dependencies:
'@babel/template': 7.27.2
- '@babel/traverse': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.27.0':
+ '@babel/helpers@7.28.4':
dependencies:
'@babel/template': 7.27.2
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.4
'@babel/highlight@7.25.9':
dependencies:
@@ -13811,737 +12802,707 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/parser@7.28.0':
+ '@babel/parser@7.28.4':
dependencies:
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.4
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@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.26.10)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@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.26.10)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@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.26.10)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.10)
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.10)
+ '@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.25.9(@babel/core@7.26.10)
+ '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-export-default-from@7.25.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.26.10)':
+ '@babel/plugin-proposal-export-default-from@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.10)
-
- '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.10)
- transitivePeerDependencies:
- - supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.10)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-export-default-from@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-export-default-from@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-flow@7.26.0(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.10)
+ '@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-arrow-functions@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.26.10)':
+ '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.26.10)
- '@babel/traverse': 7.28.0
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4)
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@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.26.10)
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.26.10)':
+ '@babel/plugin-transform-block-scoping@7.28.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.10)
+ '@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
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.10)
+ '@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
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.28.0(@babel/core@7.26.10)':
+ '@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-globals': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.10)
- '@babel/traverse': 7.28.0
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@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.26.10)':
+ '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.26.10)':
+ '@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.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.10)
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@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-named-capturing-groups-regex@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.10)
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-flow-strip-types@7.26.5(@babel/core@7.26.10)':
+ '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.10)
+ '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-literals@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.10)
+ '@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/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.10)
+ '@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/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.10)
+ '@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.0
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.10)
+ '@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/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.10)
+ '@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-new-target@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-object-rest-spread@7.28.0(@babel/core@7.26.10)':
+ '@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@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.26.10)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.10)
- '@babel/traverse': 7.28.0
+ '@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
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.10)
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.26.10)':
+ '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.10)
+ '@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
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.10)
+ '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.10)
+ '@babel/core': 7.28.4
+ '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@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.25.9(@babel/core@7.26.10)
- '@babel/types': 7.28.0
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4)
+ '@babel/types': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regenerator@7.28.0(@babel/core@7.26.10)':
+ '@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.10)
+ '@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.26.10)':
+ '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-runtime@7.26.10(@babel/core@7.26.10)':
+ '@babel/plugin-transform-runtime@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@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.26.10)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.10)
- babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.26.10)
+ 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)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-spread@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typescript@7.26.8(@babel/core@7.26.10)':
+ '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.10)
+ '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.10)
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.10)
+ '@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.26.10)':
+ '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.10)
+ '@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.26.10)':
+ '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.10)
+ '@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.26.9(@babel/core@7.26.10)':
+ '@babel/preset-env@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/compat-data': 7.28.0
- '@babel/core': 7.26.10
+ '@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/helper-validator-option': 7.27.1
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.10)
- '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.10)
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.26.10)
- '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.26.10)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.26.10)
- '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.26.10)
- '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.26.10)
- '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.10)
- '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-regenerator': 7.28.0(@babel/core@7.26.10)
- '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.10)
- babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.26.10)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.10)
- babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.26.10)
- core-js-compat: 3.43.0
+ '@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.46.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-flow@7.25.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-validator-option': 7.27.1
- '@babel/plugin-transform-flow-strip-types': 7.26.5(@babel/core@7.26.10)
-
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.10)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.4
esutils: 2.0.3
- '@babel/preset-react@7.26.3(@babel/core@7.26.10)':
+ '@babel/preset-react@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.26.10)
+ '@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)
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.26.0(@babel/core@7.26.10)':
+ '@babel/preset-typescript@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.10)
+ '@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)
transitivePeerDependencies:
- supports-color
- '@babel/register@7.25.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- clone-deep: 4.0.1
- find-cache-dir: 2.1.0
- make-dir: 2.1.0
- pirates: 4.0.6
- source-map-support: 0.5.21
-
- '@babel/runtime@7.27.6': {}
+ '@babel/runtime@7.28.4': {}
'@babel/template@7.27.2':
dependencies:
'@babel/code-frame': 7.27.1
- '@babel/parser': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/parser': 7.28.4
+ '@babel/types': 7.28.4
- '@babel/traverse@7.28.0':
+ '@babel/traverse@7.28.4':
dependencies:
'@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.0
+ '@babel/generator': 7.28.3
'@babel/helper-globals': 7.28.0
- '@babel/parser': 7.28.0
+ '@babel/parser': 7.28.4
'@babel/template': 7.27.2
- '@babel/types': 7.28.0
- debug: 4.4.1
+ '@babel/types': 7.28.4
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
- '@babel/types@7.28.0':
+ '@babel/types@7.28.4':
dependencies:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
@@ -14552,8 +13513,8 @@ snapshots:
'@browserbasehq/sdk@2.6.0':
dependencies:
- '@types/node': 18.19.118
- '@types/node-fetch': 2.6.12
+ '@types/node': 18.19.130
+ '@types/node-fetch': 2.6.13
abort-controller: 3.0.0
agentkeepalive: 4.6.0
form-data-encoder: 1.7.2
@@ -14562,13 +13523,13 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@browserbasehq/stagehand@1.14.0(@playwright/test@1.52.0)(deepmerge@4.3.1)(dotenv@16.4.7)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(zod@3.25.76)':
+ '@browserbasehq/stagehand@1.14.0(@playwright/test@1.56.0)(deepmerge@4.3.1)(dotenv@16.6.1)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(zod@3.25.76)':
dependencies:
'@anthropic-ai/sdk': 0.27.3
'@browserbasehq/sdk': 2.6.0
- '@playwright/test': 1.52.0
+ '@playwright/test': 1.56.0
deepmerge: 4.3.1
- dotenv: 16.4.7
+ dotenv: 16.6.1
openai: 4.104.0(ws@8.18.3)(zod@3.25.76)
ws: 8.18.3
zod: 3.25.76
@@ -14578,98 +13539,82 @@ snapshots:
- encoding
- utf-8-validate
- '@bufbuild/protobuf@2.6.0': {}
-
- '@bundled-es-modules/cookie@2.0.1':
- dependencies:
- cookie: 0.7.2
- optional: true
-
- '@bundled-es-modules/statuses@1.0.1':
- dependencies:
- statuses: 2.0.1
- optional: true
-
- '@bundled-es-modules/tough-cookie@0.1.6':
- dependencies:
- '@types/tough-cookie': 4.0.5
- tough-cookie: 4.1.4
- optional: true
+ '@bufbuild/protobuf@2.9.0': {}
'@cfworker/json-schema@4.1.1': {}
- '@chromatic-com/storybook@4.1.1(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))':
+ '@chromatic-com/storybook@4.1.1(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))':
dependencies:
'@neoconfetti/react': 1.0.0
chromatic: 12.2.0
filesize: 10.1.6
- jsonfile: 6.1.0
- storybook: 9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
- strip-ansi: 7.1.0
+ jsonfile: 6.2.0
+ storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
+ strip-ansi: 7.1.2
transitivePeerDependencies:
- '@chromatic-com/cypress'
- '@chromatic-com/playwright'
- '@commitlint/cli@19.8.0(@types/node@22.15.21)(typescript@5.8.2)':
+ '@commitlint/cli@19.8.1(@types/node@22.18.9)(typescript@5.9.3)':
dependencies:
- '@commitlint/format': 19.8.0
- '@commitlint/lint': 19.8.0
- '@commitlint/load': 19.8.0(@types/node@22.15.21)(typescript@5.8.2)
- '@commitlint/read': 19.8.0
- '@commitlint/types': 19.8.0
- tinyexec: 0.3.2
+ '@commitlint/format': 19.8.1
+ '@commitlint/lint': 19.8.1
+ '@commitlint/load': 19.8.1(@types/node@22.18.9)(typescript@5.9.3)
+ '@commitlint/read': 19.8.1
+ '@commitlint/types': 19.8.1
+ tinyexec: 1.0.1
yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
- typescript
- '@commitlint/config-conventional@19.8.0':
+ '@commitlint/config-conventional@19.8.1':
dependencies:
- '@commitlint/types': 19.8.0
+ '@commitlint/types': 19.8.1
conventional-changelog-conventionalcommits: 7.0.2
- '@commitlint/config-validator@19.8.0':
+ '@commitlint/config-validator@19.8.1':
dependencies:
- '@commitlint/types': 19.8.0
+ '@commitlint/types': 19.8.1
ajv: 8.17.1
- '@commitlint/ensure@19.8.0':
+ '@commitlint/ensure@19.8.1':
dependencies:
- '@commitlint/types': 19.8.0
+ '@commitlint/types': 19.8.1
lodash.camelcase: 4.3.0
lodash.kebabcase: 4.1.1
lodash.snakecase: 4.1.1
lodash.startcase: 4.4.0
lodash.upperfirst: 4.3.1
- '@commitlint/execute-rule@19.8.0': {}
+ '@commitlint/execute-rule@19.8.1': {}
- '@commitlint/format@19.8.0':
+ '@commitlint/format@19.8.1':
dependencies:
- '@commitlint/types': 19.8.0
- chalk: 5.4.1
+ '@commitlint/types': 19.8.1
+ chalk: 5.6.2
- '@commitlint/is-ignored@19.8.0':
+ '@commitlint/is-ignored@19.8.1':
dependencies:
- '@commitlint/types': 19.8.0
- semver: 7.7.2
+ '@commitlint/types': 19.8.1
+ semver: 7.7.3
- '@commitlint/lint@19.8.0':
+ '@commitlint/lint@19.8.1':
dependencies:
- '@commitlint/is-ignored': 19.8.0
- '@commitlint/parse': 19.8.0
- '@commitlint/rules': 19.8.0
- '@commitlint/types': 19.8.0
+ '@commitlint/is-ignored': 19.8.1
+ '@commitlint/parse': 19.8.1
+ '@commitlint/rules': 19.8.1
+ '@commitlint/types': 19.8.1
- '@commitlint/load@19.8.0(@types/node@22.15.21)(typescript@5.8.2)':
+ '@commitlint/load@19.8.1(@types/node@22.18.9)(typescript@5.9.3)':
dependencies:
- '@commitlint/config-validator': 19.8.0
- '@commitlint/execute-rule': 19.8.0
- '@commitlint/resolve-extends': 19.8.0
- '@commitlint/types': 19.8.0
- chalk: 5.4.1
- cosmiconfig: 9.0.0(typescript@5.8.2)
- cosmiconfig-typescript-loader: 6.1.0(@types/node@22.15.21)(cosmiconfig@9.0.0(typescript@5.8.2))(typescript@5.8.2)
+ '@commitlint/config-validator': 19.8.1
+ '@commitlint/execute-rule': 19.8.1
+ '@commitlint/resolve-extends': 19.8.1
+ '@commitlint/types': 19.8.1
+ chalk: 5.6.2
+ cosmiconfig: 9.0.0(typescript@5.9.3)
+ cosmiconfig-typescript-loader: 6.2.0(@types/node@22.18.9)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
@@ -14677,62 +13622,62 @@ snapshots:
- '@types/node'
- typescript
- '@commitlint/message@19.8.0': {}
+ '@commitlint/message@19.8.1': {}
- '@commitlint/parse@19.8.0':
+ '@commitlint/parse@19.8.1':
dependencies:
- '@commitlint/types': 19.8.0
+ '@commitlint/types': 19.8.1
conventional-changelog-angular: 7.0.0
conventional-commits-parser: 5.0.0
- '@commitlint/read@19.8.0':
+ '@commitlint/read@19.8.1':
dependencies:
- '@commitlint/top-level': 19.8.0
- '@commitlint/types': 19.8.0
+ '@commitlint/top-level': 19.8.1
+ '@commitlint/types': 19.8.1
git-raw-commits: 4.0.0
minimist: 1.2.8
- tinyexec: 0.3.2
+ tinyexec: 1.0.1
- '@commitlint/resolve-extends@19.8.0':
+ '@commitlint/resolve-extends@19.8.1':
dependencies:
- '@commitlint/config-validator': 19.8.0
- '@commitlint/types': 19.8.0
+ '@commitlint/config-validator': 19.8.1
+ '@commitlint/types': 19.8.1
global-directory: 4.0.1
- import-meta-resolve: 4.1.0
+ import-meta-resolve: 4.2.0
lodash.mergewith: 4.6.2
resolve-from: 5.0.0
- '@commitlint/rules@19.8.0':
+ '@commitlint/rules@19.8.1':
dependencies:
- '@commitlint/ensure': 19.8.0
- '@commitlint/message': 19.8.0
- '@commitlint/to-lines': 19.8.0
- '@commitlint/types': 19.8.0
+ '@commitlint/ensure': 19.8.1
+ '@commitlint/message': 19.8.1
+ '@commitlint/to-lines': 19.8.1
+ '@commitlint/types': 19.8.1
- '@commitlint/to-lines@19.8.0': {}
+ '@commitlint/to-lines@19.8.1': {}
- '@commitlint/top-level@19.8.0':
+ '@commitlint/top-level@19.8.1':
dependencies:
find-up: 7.0.0
- '@commitlint/types@19.8.0':
+ '@commitlint/types@19.8.1':
dependencies:
'@types/conventional-commits-parser': 5.0.1
- chalk: 5.4.1
+ chalk: 5.6.2
- '@compiled/react@0.18.6(react@18.3.1)':
+ '@compiled/react@0.18.6(react@19.0.0)':
dependencies:
csstype: 3.1.3
- react: 18.3.1
+ react: 19.0.0
- '@copilotkit/react-core@1.10.2(@types/react@18.3.18)(graphql@16.11.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@copilotkit/react-core@1.10.6(@types/react@19.0.14)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@copilotkit/runtime-client-gql': 1.10.2(graphql@16.11.0)(react@18.3.1)
- '@copilotkit/shared': 1.10.2
+ '@copilotkit/runtime-client-gql': 1.10.6(graphql@16.11.0)(react@19.0.0)
+ '@copilotkit/shared': 1.10.6
'@scarf/scarf': 1.4.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-markdown: 8.0.7(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-markdown: 8.0.7(@types/react@19.0.14)(react@19.0.0)
untruncate-json: 0.0.1
transitivePeerDependencies:
- '@types/react'
@@ -14740,15 +13685,15 @@ snapshots:
- graphql
- supports-color
- '@copilotkit/react-ui@1.10.2(@types/react@18.3.18)(graphql@16.11.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@copilotkit/react-ui@1.10.6(@types/react@19.0.14)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@copilotkit/react-core': 1.10.2(@types/react@18.3.18)(graphql@16.11.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@copilotkit/runtime-client-gql': 1.10.2(graphql@16.11.0)(react@18.3.1)
- '@copilotkit/shared': 1.10.2
- '@headlessui/react': 2.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-markdown: 10.1.0(@types/react@18.3.18)(react@18.3.1)
- react-syntax-highlighter: 15.6.1(react@18.3.1)
+ '@copilotkit/react-core': 1.10.6(@types/react@19.0.14)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@copilotkit/runtime-client-gql': 1.10.6(graphql@16.11.0)(react@19.0.0)
+ '@copilotkit/shared': 1.10.6
+ '@headlessui/react': 2.2.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-markdown: 10.1.0(@types/react@19.0.14)(react@19.0.0)
+ react-syntax-highlighter: 15.6.6(react@19.0.0)
rehype-raw: 7.0.0
remark-gfm: 4.0.1
remark-math: 6.0.0
@@ -14759,45 +13704,45 @@ snapshots:
- react-dom
- supports-color
- '@copilotkit/runtime-client-gql@1.10.2(graphql@16.11.0)(react@18.3.1)':
+ '@copilotkit/runtime-client-gql@1.10.6(graphql@16.11.0)(react@19.0.0)':
dependencies:
- '@copilotkit/shared': 1.10.2
- '@urql/core': 5.1.1(graphql@16.11.0)
- react: 18.3.1
+ '@copilotkit/shared': 1.10.6
+ '@urql/core': 5.2.0(graphql@16.11.0)
+ react: 19.0.0
untruncate-json: 0.0.1
- urql: 4.2.2(@urql/core@5.1.1(graphql@16.11.0))(react@18.3.1)
+ urql: 4.2.2(@urql/core@5.2.0(graphql@16.11.0))(react@19.0.0)
transitivePeerDependencies:
- encoding
- graphql
- '@copilotkit/runtime@1.10.2(@ag-ui/client@0.0.35)(@ag-ui/core@0.0.35)(@ag-ui/encoder@0.0.35)(@ag-ui/proto@0.0.35)(@aws-crypto/sha256-js@5.2.0)(@aws-sdk/client-bedrock-agent-runtime@3.844.0)(@aws-sdk/client-bedrock-runtime@3.844.0)(@aws-sdk/client-kendra@3.844.0)(@aws-sdk/credential-provider-node@3.844.0)(@browserbasehq/sdk@2.6.0)(@browserbasehq/stagehand@1.14.0(@playwright/test@1.52.0)(deepmerge@4.3.1)(dotenv@16.4.7)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(zod@3.25.76))(@ibm-cloud/watsonx-ai@1.6.8)(@smithy/util-utf8@2.3.0)(axios@1.8.4)(fast-xml-parser@5.2.5)(google-auth-library@8.9.0)(ibm-cloud-sdk-core@5.4.0)(ignore@5.3.2)(jsdom@26.0.0)(jsonwebtoken@9.0.2)(lodash@4.17.21)(playwright@1.52.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(weaviate-client@3.6.2)(ws@8.18.3)':
+ '@copilotkit/runtime@1.10.6(@ag-ui/client@0.0.40)(@ag-ui/core@0.0.39)(@ag-ui/encoder@0.0.39)(@ag-ui/langgraph@0.0.18(@ag-ui/client@0.0.40)(@ag-ui/core@0.0.39)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@ag-ui/proto@0.0.39)(@aws-crypto/sha256-js@5.2.0)(@aws-sdk/client-bedrock-agent-runtime@3.907.0)(@aws-sdk/client-bedrock-runtime@3.907.0)(@aws-sdk/client-kendra@3.907.0)(@aws-sdk/credential-provider-node@3.907.0)(@browserbasehq/sdk@2.6.0)(@browserbasehq/stagehand@1.14.0(@playwright/test@1.56.0)(deepmerge@4.3.1)(dotenv@16.6.1)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(zod@3.25.76))(@ibm-cloud/watsonx-ai@1.6.13)(@smithy/util-utf8@2.3.0)(axios@1.12.2)(fast-xml-parser@5.2.5)(google-auth-library@8.9.0)(ibm-cloud-sdk-core@5.4.3)(ignore@5.3.2)(jsdom@26.1.0)(jsonwebtoken@9.0.2)(lodash@4.17.21)(playwright@1.56.0)(react@19.0.0)(weaviate-client@3.9.0)(ws@8.18.3)':
dependencies:
- '@ag-ui/client': 0.0.35
- '@ag-ui/core': 0.0.35
- '@ag-ui/encoder': 0.0.35
- '@ag-ui/langgraph': 0.0.8(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@ag-ui/proto': 0.0.35
+ '@ag-ui/client': 0.0.40
+ '@ag-ui/core': 0.0.39
+ '@ag-ui/encoder': 0.0.39
+ '@ag-ui/langgraph': 0.0.18(@ag-ui/client@0.0.40)(@ag-ui/core@0.0.39)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@ag-ui/proto': 0.0.39
'@anthropic-ai/sdk': 0.57.0
- '@copilotkit/shared': 1.10.2
- '@graphql-yoga/plugin-defer-stream': 3.15.1(graphql-yoga@5.15.1(graphql@16.11.0))(graphql@16.11.0)
- '@langchain/aws': 0.1.11(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))
- '@langchain/community': 0.3.48(@aws-crypto/sha256-js@5.2.0)(@aws-sdk/client-bedrock-agent-runtime@3.844.0)(@aws-sdk/client-bedrock-runtime@3.844.0)(@aws-sdk/client-kendra@3.844.0)(@aws-sdk/credential-provider-node@3.844.0)(@browserbasehq/sdk@2.6.0)(@browserbasehq/stagehand@1.14.0(@playwright/test@1.52.0)(deepmerge@4.3.1)(dotenv@16.4.7)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(zod@3.25.76))(@ibm-cloud/watsonx-ai@1.6.8)(@langchain/aws@0.1.11(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))))(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(@smithy/util-utf8@2.3.0)(axios@1.8.4)(fast-xml-parser@5.2.5)(google-auth-library@8.9.0)(ibm-cloud-sdk-core@5.4.0)(ignore@5.3.2)(jsdom@26.0.0)(jsonwebtoken@9.0.2)(lodash@4.17.21)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(playwright@1.52.0)(weaviate-client@3.6.2)(ws@8.18.3)
- '@langchain/core': 0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
- '@langchain/google-gauth': 0.1.8(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(zod@3.25.76)
- '@langchain/langgraph-sdk': 0.0.70(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(react@18.3.1)
- '@langchain/openai': 0.4.9(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(ws@8.18.3)
+ '@copilotkit/shared': 1.10.6
+ '@graphql-yoga/plugin-defer-stream': 3.16.0(graphql-yoga@5.16.0(graphql@16.11.0))(graphql@16.11.0)
+ '@langchain/aws': 0.1.15(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))
+ '@langchain/community': 0.3.57(@aws-crypto/sha256-js@5.2.0)(@aws-sdk/client-bedrock-agent-runtime@3.907.0)(@aws-sdk/client-bedrock-runtime@3.907.0)(@aws-sdk/client-kendra@3.907.0)(@aws-sdk/credential-provider-node@3.907.0)(@browserbasehq/sdk@2.6.0)(@browserbasehq/stagehand@1.14.0(@playwright/test@1.56.0)(deepmerge@4.3.1)(dotenv@16.6.1)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(zod@3.25.76))(@ibm-cloud/watsonx-ai@1.6.13)(@langchain/aws@0.1.15(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))))(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(@smithy/util-utf8@2.3.0)(axios@1.12.2)(fast-xml-parser@5.2.5)(google-auth-library@8.9.0)(ibm-cloud-sdk-core@5.4.3)(ignore@5.3.2)(jsdom@26.1.0)(jsonwebtoken@9.0.2)(lodash@4.17.21)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(playwright@1.56.0)(weaviate-client@3.9.0)(ws@8.18.3)
+ '@langchain/core': 0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
+ '@langchain/google-gauth': 0.1.8(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(zod@3.25.76)
+ '@langchain/langgraph-sdk': 0.0.70(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(react@19.0.0)
+ '@langchain/openai': 0.4.9(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(ws@8.18.3)
'@scarf/scarf': 1.4.0
class-transformer: 0.5.1
class-validator: 0.14.2
express: 4.21.2
graphql: 16.11.0
graphql-scalars: 1.24.2(graphql@16.11.0)
- graphql-yoga: 5.15.1(graphql@16.11.0)
+ graphql-yoga: 5.16.0(graphql@16.11.0)
groq-sdk: 0.5.0
- langchain: 0.3.29(@langchain/aws@0.1.11(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))))(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(axios@1.8.4)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(ws@8.18.3)
+ langchain: 0.3.35(@langchain/aws@0.1.15(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))))(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(axios@1.12.2)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(ws@8.18.3)
openai: 4.104.0(ws@8.18.3)(zod@3.25.76)
partial-json: 0.1.7
- pino: 9.7.0
+ pino: 9.13.1
pino-pretty: 11.3.0
reflect-metadata: 0.2.2
rxjs: 7.8.1
@@ -14899,7 +13844,6 @@ snapshots:
- crypto-js
- d3-dsv
- discord.js
- - dria
- duck-duck-scrape
- encoding
- epub2
@@ -14938,7 +13882,6 @@ snapshots:
- puppeteer
- pyodide
- react
- - react-dom
- redis
- replicate
- sonix-speech-recognition
@@ -14954,9 +13897,9 @@ snapshots:
- ws
- youtubei.js
- '@copilotkit/shared@1.10.2':
+ '@copilotkit/shared@1.10.6':
dependencies:
- '@ag-ui/core': 0.0.30
+ '@ag-ui/core': 0.0.37
'@segment/analytics-node': 2.3.0
chalk: 4.1.2
graphql: 16.11.0
@@ -14966,25 +13909,25 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@csstools/color-helpers@5.0.1': {}
+ '@csstools/color-helpers@5.1.0': {}
- '@csstools/css-calc@2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
+ '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
dependencies:
- '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-tokenizer': 3.0.3
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
- '@csstools/css-color-parser@3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
+ '@csstools/css-color-parser@3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
dependencies:
- '@csstools/color-helpers': 5.0.1
- '@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-tokenizer': 3.0.3
+ '@csstools/color-helpers': 5.1.0
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
- '@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3)':
+ '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)':
dependencies:
- '@csstools/css-tokenizer': 3.0.3
+ '@csstools/css-tokenizer': 3.0.4
- '@csstools/css-tokenizer@3.0.3': {}
+ '@csstools/css-tokenizer@3.0.4': {}
'@egjs/hammerjs@2.0.17':
dependencies:
@@ -14992,18 +13935,18 @@ snapshots:
'@emoji-mart/data@1.2.1': {}
- '@emoji-mart/react@1.1.1(emoji-mart@5.6.0)(react@18.3.1)':
+ '@emoji-mart/react@1.1.1(emoji-mart@5.6.0)(react@19.0.0)':
dependencies:
emoji-mart: 5.6.0
- react: 18.3.1
+ react: 19.0.0
- '@emotion/is-prop-valid@1.3.1':
+ '@emotion/is-prop-valid@1.4.0':
dependencies:
'@emotion/memoize': 0.9.0
'@emotion/memoize@0.9.0': {}
- '@envelop/core@5.3.0':
+ '@envelop/core@5.3.2':
dependencies:
'@envelop/instrumentation': 1.0.0
'@envelop/types': 5.2.1
@@ -15020,186 +13963,118 @@ snapshots:
'@whatwg-node/promise-helpers': 1.3.2
tslib: 2.8.1
- '@esbuild/aix-ppc64@0.24.2':
- optional: true
-
- '@esbuild/aix-ppc64@0.25.4':
- optional: true
-
- '@esbuild/android-arm64@0.24.2':
- optional: true
-
- '@esbuild/android-arm64@0.25.4':
- optional: true
-
- '@esbuild/android-arm@0.24.2':
- optional: true
-
- '@esbuild/android-arm@0.25.4':
- optional: true
-
- '@esbuild/android-x64@0.24.2':
- optional: true
-
- '@esbuild/android-x64@0.25.4':
- optional: true
-
- '@esbuild/darwin-arm64@0.24.2':
- optional: true
-
- '@esbuild/darwin-arm64@0.25.4':
- optional: true
-
- '@esbuild/darwin-x64@0.24.2':
- optional: true
-
- '@esbuild/darwin-x64@0.25.4':
- optional: true
-
- '@esbuild/freebsd-arm64@0.24.2':
- optional: true
-
- '@esbuild/freebsd-arm64@0.25.4':
- optional: true
-
- '@esbuild/freebsd-x64@0.24.2':
- optional: true
-
- '@esbuild/freebsd-x64@0.25.4':
- optional: true
-
- '@esbuild/linux-arm64@0.24.2':
- optional: true
-
- '@esbuild/linux-arm64@0.25.4':
- optional: true
-
- '@esbuild/linux-arm@0.24.2':
- optional: true
-
- '@esbuild/linux-arm@0.25.4':
- optional: true
-
- '@esbuild/linux-ia32@0.24.2':
- optional: true
-
- '@esbuild/linux-ia32@0.25.4':
- optional: true
-
- '@esbuild/linux-loong64@0.24.2':
- optional: true
-
- '@esbuild/linux-loong64@0.25.4':
- optional: true
-
- '@esbuild/linux-mips64el@0.24.2':
+ '@esbuild/aix-ppc64@0.25.10':
optional: true
- '@esbuild/linux-mips64el@0.25.4':
+ '@esbuild/android-arm64@0.25.10':
optional: true
- '@esbuild/linux-ppc64@0.24.2':
+ '@esbuild/android-arm@0.25.10':
optional: true
- '@esbuild/linux-ppc64@0.25.4':
+ '@esbuild/android-x64@0.25.10':
optional: true
- '@esbuild/linux-riscv64@0.24.2':
+ '@esbuild/darwin-arm64@0.25.10':
optional: true
- '@esbuild/linux-riscv64@0.25.4':
+ '@esbuild/darwin-x64@0.25.10':
optional: true
- '@esbuild/linux-s390x@0.24.2':
+ '@esbuild/freebsd-arm64@0.25.10':
optional: true
- '@esbuild/linux-s390x@0.25.4':
+ '@esbuild/freebsd-x64@0.25.10':
optional: true
- '@esbuild/linux-x64@0.24.2':
+ '@esbuild/linux-arm64@0.25.10':
optional: true
- '@esbuild/linux-x64@0.25.4':
+ '@esbuild/linux-arm@0.25.10':
optional: true
- '@esbuild/netbsd-arm64@0.24.2':
+ '@esbuild/linux-ia32@0.25.10':
optional: true
- '@esbuild/netbsd-arm64@0.25.4':
+ '@esbuild/linux-loong64@0.25.10':
optional: true
- '@esbuild/netbsd-x64@0.24.2':
+ '@esbuild/linux-mips64el@0.25.10':
optional: true
- '@esbuild/netbsd-x64@0.25.4':
+ '@esbuild/linux-ppc64@0.25.10':
optional: true
- '@esbuild/openbsd-arm64@0.24.2':
+ '@esbuild/linux-riscv64@0.25.10':
optional: true
- '@esbuild/openbsd-arm64@0.25.4':
+ '@esbuild/linux-s390x@0.25.10':
optional: true
- '@esbuild/openbsd-x64@0.24.2':
+ '@esbuild/linux-x64@0.25.10':
optional: true
- '@esbuild/openbsd-x64@0.25.4':
+ '@esbuild/netbsd-arm64@0.25.10':
optional: true
- '@esbuild/sunos-x64@0.24.2':
+ '@esbuild/netbsd-x64@0.25.10':
optional: true
- '@esbuild/sunos-x64@0.25.4':
+ '@esbuild/openbsd-arm64@0.25.10':
optional: true
- '@esbuild/win32-arm64@0.24.2':
+ '@esbuild/openbsd-x64@0.25.10':
optional: true
- '@esbuild/win32-arm64@0.25.4':
+ '@esbuild/openharmony-arm64@0.25.10':
optional: true
- '@esbuild/win32-ia32@0.24.2':
+ '@esbuild/sunos-x64@0.25.10':
optional: true
- '@esbuild/win32-ia32@0.25.4':
+ '@esbuild/win32-arm64@0.25.10':
optional: true
- '@esbuild/win32-x64@0.24.2':
+ '@esbuild/win32-ia32@0.25.10':
optional: true
- '@esbuild/win32-x64@0.25.4':
+ '@esbuild/win32-x64@0.25.10':
optional: true
- '@eslint-community/eslint-utils@4.7.0(eslint@9.27.0(jiti@2.4.2))':
+ '@eslint-community/eslint-utils@4.9.0(eslint@9.37.0(jiti@2.6.1))':
dependencies:
- eslint: 9.27.0(jiti@2.4.2)
+ eslint: 9.37.0(jiti@2.6.1)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
- '@eslint/compat@1.2.9(eslint@9.27.0(jiti@2.4.2))':
+ '@eslint/compat@1.4.0(eslint@9.37.0(jiti@2.6.1))':
+ dependencies:
+ '@eslint/core': 0.16.0
optionalDependencies:
- eslint: 9.27.0(jiti@2.4.2)
+ eslint: 9.37.0(jiti@2.6.1)
- '@eslint/config-array@0.20.0':
+ '@eslint/config-array@0.21.0':
dependencies:
'@eslint/object-schema': 2.1.6
- debug: 4.4.1
+ debug: 4.4.3
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- '@eslint/config-helpers@0.2.1': {}
+ '@eslint/config-helpers@0.4.0':
+ dependencies:
+ '@eslint/core': 0.16.0
- '@eslint/core@0.14.0':
+ '@eslint/core@0.16.0':
dependencies:
'@types/json-schema': 7.0.15
'@eslint/eslintrc@3.3.1':
dependencies:
ajv: 6.12.6
- debug: 4.4.1
- espree: 10.3.0
+ debug: 4.4.3
+ espree: 10.4.0
globals: 14.0.0
ignore: 5.3.2
import-fresh: 3.3.1
@@ -15209,65 +14084,54 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.27.0': {}
+ '@eslint/js@9.37.0': {}
'@eslint/object-schema@2.1.6': {}
- '@eslint/plugin-kit@0.3.1':
+ '@eslint/plugin-kit@0.4.0':
dependencies:
- '@eslint/core': 0.14.0
+ '@eslint/core': 0.16.0
levn: 0.4.1
- '@expo/bunyan@4.0.1':
- dependencies:
- uuid: 8.3.2
-
- '@expo/cli@0.22.24(graphql@16.11.0)':
+ '@expo/cli@0.24.22(graphql@16.11.0)':
dependencies:
- '@0no-co/graphql.web': 1.1.2(graphql@16.11.0)
- '@babel/runtime': 7.27.6
+ '@0no-co/graphql.web': 1.2.0(graphql@16.11.0)
+ '@babel/runtime': 7.28.4
'@expo/code-signing-certificates': 0.0.5
- '@expo/config': 10.0.11
- '@expo/config-plugins': 9.0.17
- '@expo/devcert': 1.1.4
- '@expo/env': 0.4.2
- '@expo/image-utils': 0.6.5
- '@expo/json-file': 9.0.2
- '@expo/metro-config': 0.19.12
- '@expo/osascript': 2.1.6
- '@expo/package-manager': 1.7.2
- '@expo/plist': 0.2.2
- '@expo/prebuild-config': 8.0.31
- '@expo/rudder-sdk-node': 1.1.1
+ '@expo/config': 11.0.13
+ '@expo/config-plugins': 10.1.2
+ '@expo/devcert': 1.2.0
+ '@expo/env': 1.0.7
+ '@expo/image-utils': 0.7.6
+ '@expo/json-file': 9.1.5
+ '@expo/metro-config': 0.20.17
+ '@expo/osascript': 2.3.7
+ '@expo/package-manager': 1.9.8
+ '@expo/plist': 0.3.5
+ '@expo/prebuild-config': 9.0.12
+ '@expo/schema-utils': 0.1.7
'@expo/spawn-async': 1.7.2
'@expo/ws-tunnel': 1.0.6
'@expo/xcpretty': 4.3.2
- '@react-native/dev-middleware': 0.76.9
- '@urql/core': 5.1.1(graphql@16.11.0)
- '@urql/exchange-retry': 1.3.1(@urql/core@5.1.1(graphql@16.11.0))
+ '@react-native/dev-middleware': 0.79.6
+ '@urql/core': 5.2.0(graphql@16.11.0)
+ '@urql/exchange-retry': 1.3.2(@urql/core@5.2.0(graphql@16.11.0))
accepts: 1.3.8
arg: 5.0.2
better-opn: 3.0.2
- bplist-creator: 0.0.7
+ bplist-creator: 0.1.0
bplist-parser: 0.3.2
- cacache: 18.0.4
chalk: 4.1.2
ci-info: 3.9.0
- compression: 1.8.0
+ compression: 1.8.1
connect: 3.7.0
- debug: 4.4.1
+ debug: 4.4.3
env-editor: 0.4.2
- fast-glob: 3.3.3
- form-data: 3.0.3
freeport-async: 2.0.0
- fs-extra: 8.1.0
- getenv: 1.0.0
+ getenv: 2.0.0
glob: 10.4.5
- internal-ip: 4.3.0
- is-docker: 2.2.1
- is-wsl: 2.2.0
- lodash.debounce: 4.0.8
- minimatch: 3.1.2
+ lan-network: 0.1.7
+ minimatch: 9.0.5
node-forge: 1.3.1
npm-package-arg: 11.0.3
ora: 3.4.0
@@ -15282,23 +14146,19 @@ snapshots:
resolve: 1.22.10
resolve-from: 5.0.0
resolve.exports: 2.0.3
- semver: 7.7.2
- send: 0.19.0
+ semver: 7.7.3
+ send: 0.19.1
slugify: 1.6.6
source-map-support: 0.5.21
stacktrace-parser: 0.1.11
structured-headers: 0.4.1
- tar: 6.2.1
- temp-dir: 2.0.0
- tempy: 0.7.1
+ tar: 7.5.1
terminal-link: 2.1.1
- undici: 6.21.2
- unique-string: 2.0.0
+ undici: 6.22.0
wrap-ansi: 7.0.0
- ws: 8.18.1
+ ws: 8.18.3
transitivePeerDependencies:
- bufferutil
- - encoding
- graphql
- supports-color
- utf-8-validate
@@ -15308,18 +14168,18 @@ snapshots:
node-forge: 1.3.1
nullthrows: 1.1.1
- '@expo/config-plugins@9.0.17':
+ '@expo/config-plugins@10.1.2':
dependencies:
- '@expo/config-types': 52.0.5
- '@expo/json-file': 9.0.2
- '@expo/plist': 0.2.2
+ '@expo/config-types': 53.0.5
+ '@expo/json-file': 9.1.5
+ '@expo/plist': 0.3.5
'@expo/sdk-runtime-versions': 1.0.0
chalk: 4.1.2
- debug: 4.4.1
- getenv: 1.0.0
+ debug: 4.4.3
+ getenv: 2.0.0
glob: 10.4.5
resolve-from: 5.0.0
- semver: 7.7.2
+ semver: 7.7.3
slash: 3.0.0
slugify: 1.6.6
xcode: 3.0.1
@@ -15327,178 +14187,170 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@expo/config-types@52.0.5': {}
+ '@expo/config-types@53.0.5': {}
- '@expo/config@10.0.11':
+ '@expo/config@11.0.13':
dependencies:
'@babel/code-frame': 7.10.4
- '@expo/config-plugins': 9.0.17
- '@expo/config-types': 52.0.5
- '@expo/json-file': 9.0.2
+ '@expo/config-plugins': 10.1.2
+ '@expo/config-types': 53.0.5
+ '@expo/json-file': 9.1.5
deepmerge: 4.3.1
- getenv: 1.0.0
+ getenv: 2.0.0
glob: 10.4.5
require-from-string: 2.0.2
resolve-from: 5.0.0
resolve-workspace-root: 2.0.0
- semver: 7.7.2
+ semver: 7.7.3
slugify: 1.6.6
sucrase: 3.35.0
transitivePeerDependencies:
- supports-color
- '@expo/devcert@1.1.4':
+ '@expo/devcert@1.2.0':
dependencies:
- application-config-path: 0.1.1
- command-exists: 1.2.9
+ '@expo/sudo-prompt': 9.3.2
debug: 3.2.7
- eol: 0.9.1
- get-port: 3.2.0
glob: 10.4.5
- lodash: 4.17.21
- mkdirp: 0.5.6
- password-prompt: 1.1.3
- sudo-prompt: 8.2.5
- tmp: 0.0.33
- tslib: 2.8.1
transitivePeerDependencies:
- supports-color
- '@expo/env@0.4.2':
+ '@expo/env@1.0.7':
dependencies:
chalk: 4.1.2
- debug: 4.4.1
+ debug: 4.4.3
dotenv: 16.4.7
dotenv-expand: 11.0.7
- getenv: 1.0.0
+ getenv: 2.0.0
transitivePeerDependencies:
- supports-color
- '@expo/fingerprint@0.11.11':
+ '@expo/fingerprint@0.13.4':
dependencies:
'@expo/spawn-async': 1.7.2
arg: 5.0.2
chalk: 4.1.2
- debug: 4.4.1
+ debug: 4.4.3
find-up: 5.0.0
- getenv: 1.0.0
- minimatch: 3.1.2
+ getenv: 2.0.0
+ glob: 10.4.5
+ ignore: 5.3.2
+ minimatch: 9.0.5
p-limit: 3.1.0
resolve-from: 5.0.0
- semver: 7.7.2
+ semver: 7.7.3
transitivePeerDependencies:
- supports-color
- '@expo/image-utils@0.6.5':
+ '@expo/image-utils@0.7.6':
dependencies:
'@expo/spawn-async': 1.7.2
chalk: 4.1.2
- fs-extra: 9.0.0
- getenv: 1.0.0
+ getenv: 2.0.0
jimp-compact: 0.16.1
parse-png: 2.1.0
resolve-from: 5.0.0
- semver: 7.7.2
+ semver: 7.7.3
temp-dir: 2.0.0
unique-string: 2.0.0
- '@expo/json-file@9.0.2':
+ '@expo/json-file@10.0.7':
+ dependencies:
+ '@babel/code-frame': 7.10.4
+ json5: 2.2.3
+
+ '@expo/json-file@9.1.5':
dependencies:
'@babel/code-frame': 7.10.4
json5: 2.2.3
- write-file-atomic: 2.4.3
- '@expo/metro-config@0.19.12':
+ '@expo/metro-config@0.20.17':
dependencies:
- '@babel/core': 7.26.10
- '@babel/generator': 7.28.0
- '@babel/parser': 7.28.0
- '@babel/types': 7.28.0
- '@expo/config': 10.0.11
- '@expo/env': 0.4.2
- '@expo/json-file': 9.0.2
+ '@babel/core': 7.28.4
+ '@babel/generator': 7.28.3
+ '@babel/parser': 7.28.4
+ '@babel/types': 7.28.4
+ '@expo/config': 11.0.13
+ '@expo/env': 1.0.7
+ '@expo/json-file': 9.1.5
'@expo/spawn-async': 1.7.2
chalk: 4.1.2
- debug: 4.4.1
- fs-extra: 9.1.0
- getenv: 1.0.0
+ debug: 4.4.3
+ dotenv: 16.4.7
+ dotenv-expand: 11.0.7
+ getenv: 2.0.0
glob: 10.4.5
jsc-safe-url: 0.2.4
lightningcss: 1.27.0
- minimatch: 3.1.2
+ minimatch: 9.0.5
postcss: 8.4.49
resolve-from: 5.0.0
transitivePeerDependencies:
- supports-color
- '@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))':
+ '@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))':
dependencies:
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- optional: true
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
- '@expo/osascript@2.1.6':
+ '@expo/osascript@2.3.7':
dependencies:
'@expo/spawn-async': 1.7.2
exec-async: 2.2.0
- '@expo/package-manager@1.7.2':
+ '@expo/package-manager@1.9.8':
dependencies:
- '@expo/json-file': 9.0.2
+ '@expo/json-file': 10.0.7
'@expo/spawn-async': 1.7.2
- ansi-regex: 5.0.1
chalk: 4.1.2
- find-up: 5.0.0
- js-yaml: 3.14.1
- micromatch: 4.0.8
npm-package-arg: 11.0.3
ora: 3.4.0
resolve-workspace-root: 2.0.0
- split: 1.0.1
- sudo-prompt: 9.1.1
- '@expo/plist@0.2.2':
+ '@expo/plist@0.3.5':
dependencies:
- '@xmldom/xmldom': 0.7.13
+ '@xmldom/xmldom': 0.8.11
base64-js: 1.5.1
- xmlbuilder: 14.0.0
-
- '@expo/prebuild-config@8.0.31':
- dependencies:
- '@expo/config': 10.0.11
- '@expo/config-plugins': 9.0.17
- '@expo/config-types': 52.0.5
- '@expo/image-utils': 0.6.5
- '@expo/json-file': 9.0.2
- '@react-native/normalize-colors': 0.76.9
- debug: 4.4.1
- fs-extra: 9.1.0
+ xmlbuilder: 15.1.1
+
+ '@expo/prebuild-config@9.0.12':
+ dependencies:
+ '@expo/config': 11.0.13
+ '@expo/config-plugins': 10.1.2
+ '@expo/config-types': 53.0.5
+ '@expo/image-utils': 0.7.6
+ '@expo/json-file': 9.1.5
+ '@react-native/normalize-colors': 0.79.6
+ debug: 4.4.3
resolve-from: 5.0.0
- semver: 7.7.2
+ semver: 7.7.3
xml2js: 0.6.0
transitivePeerDependencies:
- supports-color
- '@expo/rudder-sdk-node@1.1.1':
- dependencies:
- '@expo/bunyan': 4.0.1
- '@segment/loosely-validate-event': 2.0.0
- fetch-retry: 4.1.1
- md5: 2.3.0
- node-fetch: 2.7.0
- remove-trailing-slash: 0.1.1
- uuid: 8.3.2
- transitivePeerDependencies:
- - encoding
+ '@expo/schema-utils@0.1.7': {}
'@expo/sdk-runtime-versions@1.0.0': {}
+ '@expo/server@0.6.3':
+ dependencies:
+ abort-controller: 3.0.0
+ debug: 4.4.3
+ source-map-support: 0.5.21
+ undici: 6.22.0
+ transitivePeerDependencies:
+ - supports-color
+
'@expo/spawn-async@1.7.2':
dependencies:
cross-spawn: 7.0.6
- '@expo/vector-icons@14.0.4':
+ '@expo/sudo-prompt@9.3.2': {}
+
+ '@expo/vector-icons@14.1.0(expo-font@13.3.2(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
dependencies:
- prop-types: 15.8.1
+ expo-font: 13.3.2(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
'@expo/ws-tunnel@1.0.6': {}
@@ -15509,54 +14361,54 @@ snapshots:
find-up: 5.0.0
js-yaml: 4.1.0
- '@fastify/busboy@3.1.1': {}
+ '@fastify/busboy@3.2.0': {}
- '@floating-ui/core@1.6.9':
+ '@floating-ui/core@1.7.3':
dependencies:
- '@floating-ui/utils': 0.2.9
+ '@floating-ui/utils': 0.2.10
- '@floating-ui/dom@1.6.13':
+ '@floating-ui/dom@1.7.4':
dependencies:
- '@floating-ui/core': 1.6.9
- '@floating-ui/utils': 0.2.9
+ '@floating-ui/core': 1.7.3
+ '@floating-ui/utils': 0.2.10
- '@floating-ui/react-dom@2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@floating-ui/react-dom@2.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@floating-ui/dom': 1.6.13
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@floating-ui/dom': 1.7.4
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@floating-ui/react@0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@floating-ui/react@0.26.28(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@floating-ui/utils': 0.2.9
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@floating-ui/react-dom': 2.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@floating-ui/utils': 0.2.10
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
tabbable: 6.2.0
- '@floating-ui/utils@0.2.9': {}
+ '@floating-ui/utils@0.2.10': {}
- '@gorhom/bottom-sheet@5.1.2(@types/react-native@0.73.0(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(@types/react@18.3.18)(react-native-gesture-handler@2.25.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-reanimated@3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)':
+ '@gorhom/bottom-sheet@5.2.6(@types/react-native@0.73.0(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(@types/react@19.0.14)(react-native-gesture-handler@2.28.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
dependencies:
- '@gorhom/portal': 1.0.14(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ '@gorhom/portal': 1.0.14(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
invariant: 2.2.4
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-gesture-handler: 2.25.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react-native-reanimated: 3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-gesture-handler: 2.28.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-reanimated: 3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-native': 0.73.0(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ '@types/react': 19.0.14
+ '@types/react-native': 0.73.0(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
- '@gorhom/portal@1.0.14(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)':
+ '@gorhom/portal@1.0.14(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
dependencies:
- nanoid: 3.3.8
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ nanoid: 3.3.11
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
- '@graphql-tools/executor@1.4.7(graphql@16.11.0)':
+ '@graphql-tools/executor@1.4.9(graphql@16.11.0)':
dependencies:
- '@graphql-tools/utils': 10.8.6(graphql@16.11.0)
+ '@graphql-tools/utils': 10.9.1(graphql@16.11.0)
'@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0)
'@repeaterjs/repeater': 3.0.6
'@whatwg-node/disposablestack': 0.0.6
@@ -15564,20 +14416,20 @@ snapshots:
graphql: 16.11.0
tslib: 2.8.1
- '@graphql-tools/merge@9.0.24(graphql@16.11.0)':
+ '@graphql-tools/merge@9.1.1(graphql@16.11.0)':
dependencies:
- '@graphql-tools/utils': 10.8.6(graphql@16.11.0)
+ '@graphql-tools/utils': 10.9.1(graphql@16.11.0)
graphql: 16.11.0
tslib: 2.8.1
- '@graphql-tools/schema@10.0.23(graphql@16.11.0)':
+ '@graphql-tools/schema@10.0.25(graphql@16.11.0)':
dependencies:
- '@graphql-tools/merge': 9.0.24(graphql@16.11.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.11.0)
+ '@graphql-tools/merge': 9.1.1(graphql@16.11.0)
+ '@graphql-tools/utils': 10.9.1(graphql@16.11.0)
graphql: 16.11.0
tslib: 2.8.1
- '@graphql-tools/utils@10.8.6(graphql@16.11.0)':
+ '@graphql-tools/utils@10.9.1(graphql@16.11.0)':
dependencies:
'@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0)
'@whatwg-node/promise-helpers': 1.3.2
@@ -15594,11 +14446,11 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@graphql-yoga/plugin-defer-stream@3.15.1(graphql-yoga@5.15.1(graphql@16.11.0))(graphql@16.11.0)':
+ '@graphql-yoga/plugin-defer-stream@3.16.0(graphql-yoga@5.16.0(graphql@16.11.0))(graphql@16.11.0)':
dependencies:
- '@graphql-tools/utils': 10.8.6(graphql@16.11.0)
+ '@graphql-tools/utils': 10.9.1(graphql@16.11.0)
graphql: 16.11.0
- graphql-yoga: 5.15.1(graphql@16.11.0)
+ graphql-yoga: 5.16.0(graphql@16.11.0)
'@graphql-yoga/subscription@5.0.5':
dependencies:
@@ -15612,16 +14464,16 @@ snapshots:
'@repeaterjs/repeater': 3.0.6
tslib: 2.8.1
- '@grpc/grpc-js@1.13.4':
+ '@grpc/grpc-js@1.14.0':
dependencies:
- '@grpc/proto-loader': 0.7.15
+ '@grpc/proto-loader': 0.8.0
'@js-sdsl/ordered-map': 4.4.2
- '@grpc/proto-loader@0.7.15':
+ '@grpc/proto-loader@0.8.0':
dependencies:
lodash.camelcase: 4.3.0
long: 5.3.2
- protobufjs: 7.5.3
+ protobufjs: 7.5.4
yargs: 17.7.2
'@hapi/hoek@9.3.0': {}
@@ -15630,80 +14482,59 @@ snapshots:
dependencies:
'@hapi/hoek': 9.3.0
- '@headlessui/react@2.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@headlessui/react@2.2.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@floating-ui/react': 0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/focus': 3.20.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/interactions': 3.25.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@tanstack/react-virtual': 3.13.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- use-sync-external-store: 1.5.0(react@18.3.1)
+ '@floating-ui/react': 0.26.28(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@react-aria/focus': 3.21.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@react-aria/interactions': 3.25.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@tanstack/react-virtual': 3.13.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ use-sync-external-store: 1.6.0(react@19.0.0)
- '@hookform/resolvers@3.10.0(react-hook-form@7.54.2(react@18.3.1))':
+ '@hookform/resolvers@3.10.0(react-hook-form@7.64.0(react@19.0.0))':
dependencies:
- react-hook-form: 7.54.2(react@18.3.1)
+ react-hook-form: 7.64.0(react@19.0.0)
'@humanfs/core@0.19.1': {}
- '@humanfs/node@0.16.6':
+ '@humanfs/node@0.16.7':
dependencies:
'@humanfs/core': 0.19.1
- '@humanwhocodes/retry': 0.3.1
+ '@humanwhocodes/retry': 0.4.3
'@humanwhocodes/module-importer@1.0.1': {}
- '@humanwhocodes/retry@0.3.1': {}
-
- '@humanwhocodes/retry@0.4.2': {}
+ '@humanwhocodes/retry@0.4.3': {}
- '@ibm-cloud/watsonx-ai@1.6.8':
+ '@ibm-cloud/watsonx-ai@1.6.13':
dependencies:
- '@types/node': 18.19.118
+ '@types/node': 18.19.130
extend: 3.0.2
- ibm-cloud-sdk-core: 5.4.0
+ form-data: 4.0.4
+ ibm-cloud-sdk-core: 5.4.3
transitivePeerDependencies:
- supports-color
- '@inquirer/confirm@5.1.14(@types/node@22.15.21)':
- dependencies:
- '@inquirer/core': 10.1.15(@types/node@22.15.21)
- '@inquirer/type': 3.0.8(@types/node@22.15.21)
- optionalDependencies:
- '@types/node': 22.15.21
- optional: true
+ '@isaacs/balanced-match@4.0.1': {}
- '@inquirer/core@10.1.15(@types/node@22.15.21)':
+ '@isaacs/brace-expansion@5.0.0':
dependencies:
- '@inquirer/figures': 1.0.13
- '@inquirer/type': 3.0.8(@types/node@22.15.21)
- ansi-escapes: 4.3.2
- cli-width: 4.1.0
- mute-stream: 2.0.0
- signal-exit: 4.1.0
- wrap-ansi: 6.2.0
- yoctocolors-cjs: 2.1.2
- optionalDependencies:
- '@types/node': 22.15.21
- optional: true
-
- '@inquirer/figures@1.0.13':
- optional: true
-
- '@inquirer/type@3.0.8(@types/node@22.15.21)':
- optionalDependencies:
- '@types/node': 22.15.21
- optional: true
+ '@isaacs/balanced-match': 4.0.1
'@isaacs/cliui@8.0.2':
dependencies:
string-width: 5.1.2
string-width-cjs: string-width@4.2.3
- strip-ansi: 7.1.0
+ 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':
@@ -15719,7 +14550,7 @@ snapshots:
'@jest/console@29.7.0':
dependencies:
'@jest/types': 29.6.3
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
@@ -15732,14 +14563,14 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@22.15.21)
+ jest-config: 29.7.0(@types/node@22.18.9)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -15764,11 +14595,15 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
+ '@jest/create-cache-key-function@30.2.0':
+ dependencies:
+ '@jest/types': 30.2.0
+
'@jest/environment@29.7.0':
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
jest-mock: 29.7.0
'@jest/expect-utils@29.7.0':
@@ -15786,7 +14621,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -15800,6 +14635,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@jest/pattern@30.0.1':
+ dependencies:
+ '@types/node': 22.18.9
+ jest-regex-util: 30.0.1
+
'@jest/reporters@29.7.0':
dependencies:
'@bcoe/v8-coverage': 0.2.3
@@ -15807,8 +14647,8 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@jridgewell/trace-mapping': 0.3.29
- '@types/node': 22.15.21
+ '@jridgewell/trace-mapping': 0.3.31
+ '@types/node': 22.18.9
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -15818,7 +14658,7 @@ snapshots:
istanbul-lib-instrument: 6.0.3
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 4.0.1
- istanbul-reports: 3.1.7
+ istanbul-reports: 3.2.0
jest-message-util: 29.7.0
jest-util: 29.7.0
jest-worker: 29.7.0
@@ -15833,9 +14673,13 @@ snapshots:
dependencies:
'@sinclair/typebox': 0.27.8
+ '@jest/schemas@30.0.5':
+ dependencies:
+ '@sinclair/typebox': 0.34.41
+
'@jest/source-map@29.6.3':
dependencies:
- '@jridgewell/trace-mapping': 0.3.29
+ '@jridgewell/trace-mapping': 0.3.31
callsites: 3.1.0
graceful-fs: 4.2.11
@@ -15855,9 +14699,9 @@ snapshots:
'@jest/transform@29.7.0':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@jest/types': 29.6.3
- '@jridgewell/trace-mapping': 0.3.29
+ '@jridgewell/trace-mapping': 0.3.31
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
convert-source-map: 2.0.0
@@ -15867,7 +14711,7 @@ snapshots:
jest-regex-util: 29.6.3
jest-util: 29.7.0
micromatch: 4.0.8
- pirates: 4.0.6
+ pirates: 4.0.7
slash: 3.0.0
write-file-atomic: 4.0.2
transitivePeerDependencies:
@@ -15878,83 +14722,98 @@ snapshots:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
'@types/yargs': 17.0.33
chalk: 4.1.2
- '@joshwooding/vite-plugin-react-docgen-typescript@0.6.1(typescript@5.8.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))':
+ '@jest/types@30.2.0':
+ dependencies:
+ '@jest/pattern': 30.0.1
+ '@jest/schemas': 30.0.5
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 3.0.4
+ '@types/node': 22.18.9
+ '@types/yargs': 17.0.33
+ chalk: 4.1.2
+
+ '@joshwooding/vite-plugin-react-docgen-typescript@0.6.1(typescript@5.9.3)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))':
dependencies:
glob: 10.4.5
- magic-string: 0.30.17
- react-docgen-typescript: 2.4.0(typescript@5.8.2)
- vite: 6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)
+ magic-string: 0.30.19
+ react-docgen-typescript: 2.4.0(typescript@5.9.3)
+ vite: 6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.9.3
+
+ '@jridgewell/gen-mapping@0.3.13':
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.5
+ '@jridgewell/trace-mapping': 0.3.31
- '@jridgewell/gen-mapping@0.3.12':
+ '@jridgewell/remapping@2.3.5':
dependencies:
- '@jridgewell/sourcemap-codec': 1.5.4
- '@jridgewell/trace-mapping': 0.3.29
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
'@jridgewell/resolve-uri@3.1.2': {}
- '@jridgewell/source-map@0.3.10':
+ '@jridgewell/source-map@0.3.11':
dependencies:
- '@jridgewell/gen-mapping': 0.3.12
- '@jridgewell/trace-mapping': 0.3.29
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
- '@jridgewell/sourcemap-codec@1.5.4': {}
+ '@jridgewell/sourcemap-codec@1.5.5': {}
- '@jridgewell/trace-mapping@0.3.29':
+ '@jridgewell/trace-mapping@0.3.31':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.4
+ '@jridgewell/sourcemap-codec': 1.5.5
'@js-sdsl/ordered-map@4.4.2': {}
- '@langchain/aws@0.1.11(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))':
+ '@langchain/aws@0.1.15(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))':
dependencies:
- '@aws-sdk/client-bedrock-agent-runtime': 3.844.0
- '@aws-sdk/client-bedrock-runtime': 3.844.0
- '@aws-sdk/client-kendra': 3.844.0
- '@aws-sdk/credential-provider-node': 3.844.0
- '@langchain/core': 0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
+ '@aws-sdk/client-bedrock-agent-runtime': 3.907.0
+ '@aws-sdk/client-bedrock-runtime': 3.907.0
+ '@aws-sdk/client-kendra': 3.907.0
+ '@aws-sdk/credential-provider-node': 3.907.0
+ '@langchain/core': 0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
transitivePeerDependencies:
- aws-crt
- '@langchain/community@0.3.48(@aws-crypto/sha256-js@5.2.0)(@aws-sdk/client-bedrock-agent-runtime@3.844.0)(@aws-sdk/client-bedrock-runtime@3.844.0)(@aws-sdk/client-kendra@3.844.0)(@aws-sdk/credential-provider-node@3.844.0)(@browserbasehq/sdk@2.6.0)(@browserbasehq/stagehand@1.14.0(@playwright/test@1.52.0)(deepmerge@4.3.1)(dotenv@16.4.7)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(zod@3.25.76))(@ibm-cloud/watsonx-ai@1.6.8)(@langchain/aws@0.1.11(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))))(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(@smithy/util-utf8@2.3.0)(axios@1.8.4)(fast-xml-parser@5.2.5)(google-auth-library@8.9.0)(ibm-cloud-sdk-core@5.4.0)(ignore@5.3.2)(jsdom@26.0.0)(jsonwebtoken@9.0.2)(lodash@4.17.21)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(playwright@1.52.0)(weaviate-client@3.6.2)(ws@8.18.3)':
+ '@langchain/community@0.3.57(@aws-crypto/sha256-js@5.2.0)(@aws-sdk/client-bedrock-agent-runtime@3.907.0)(@aws-sdk/client-bedrock-runtime@3.907.0)(@aws-sdk/client-kendra@3.907.0)(@aws-sdk/credential-provider-node@3.907.0)(@browserbasehq/sdk@2.6.0)(@browserbasehq/stagehand@1.14.0(@playwright/test@1.56.0)(deepmerge@4.3.1)(dotenv@16.6.1)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(zod@3.25.76))(@ibm-cloud/watsonx-ai@1.6.13)(@langchain/aws@0.1.15(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))))(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(@smithy/util-utf8@2.3.0)(axios@1.12.2)(fast-xml-parser@5.2.5)(google-auth-library@8.9.0)(ibm-cloud-sdk-core@5.4.3)(ignore@5.3.2)(jsdom@26.1.0)(jsonwebtoken@9.0.2)(lodash@4.17.21)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(playwright@1.56.0)(weaviate-client@3.9.0)(ws@8.18.3)':
dependencies:
- '@browserbasehq/stagehand': 1.14.0(@playwright/test@1.52.0)(deepmerge@4.3.1)(dotenv@16.4.7)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(zod@3.25.76)
- '@ibm-cloud/watsonx-ai': 1.6.8
- '@langchain/core': 0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
- '@langchain/openai': 0.4.9(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(ws@8.18.3)
- '@langchain/weaviate': 0.2.1(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))
+ '@browserbasehq/stagehand': 1.14.0(@playwright/test@1.56.0)(deepmerge@4.3.1)(dotenv@16.6.1)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(zod@3.25.76)
+ '@ibm-cloud/watsonx-ai': 1.6.13
+ '@langchain/core': 0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
+ '@langchain/openai': 0.4.9(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(ws@8.18.3)
+ '@langchain/weaviate': 0.2.3(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))
binary-extensions: 2.3.0
expr-eval: 2.0.2
flat: 5.0.2
- ibm-cloud-sdk-core: 5.4.0
+ ibm-cloud-sdk-core: 5.4.3
js-yaml: 4.1.0
- langchain: 0.3.29(@langchain/aws@0.1.11(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))))(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(axios@1.8.4)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(ws@8.18.3)
- langsmith: 0.3.45(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
+ langchain: 0.3.35(@langchain/aws@0.1.15(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))))(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(axios@1.12.2)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(ws@8.18.3)
+ langsmith: 0.3.73(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
openai: 4.104.0(ws@8.18.3)(zod@3.25.76)
uuid: 10.0.0
zod: 3.25.76
optionalDependencies:
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-bedrock-agent-runtime': 3.844.0
- '@aws-sdk/client-bedrock-runtime': 3.844.0
- '@aws-sdk/client-kendra': 3.844.0
- '@aws-sdk/credential-provider-node': 3.844.0
+ '@aws-sdk/client-bedrock-agent-runtime': 3.907.0
+ '@aws-sdk/client-bedrock-runtime': 3.907.0
+ '@aws-sdk/client-kendra': 3.907.0
+ '@aws-sdk/credential-provider-node': 3.907.0
'@browserbasehq/sdk': 2.6.0
'@smithy/util-utf8': 2.3.0
fast-xml-parser: 5.2.5
google-auth-library: 8.9.0
ignore: 5.3.2
- jsdom: 26.0.0
+ jsdom: 26.1.0
jsonwebtoken: 9.0.2
lodash: 4.17.21
- playwright: 1.52.0
- weaviate-client: 3.6.2
+ playwright: 1.56.0
+ weaviate-client: 3.9.0
ws: 8.18.3
transitivePeerDependencies:
- '@langchain/anthropic'
@@ -15977,34 +14836,14 @@ snapshots:
- handlebars
- peggy
- '@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))':
- dependencies:
- '@cfworker/json-schema': 4.1.1
- ansi-styles: 5.2.0
- camelcase: 6.3.0
- decamelize: 1.2.0
- js-tiktoken: 1.0.20
- langsmith: 0.3.45(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
- mustache: 4.2.0
- p-queue: 6.6.2
- p-retry: 4.6.2
- uuid: 10.0.0
- zod: 3.25.76
- zod-to-json-schema: 3.24.6(zod@3.25.76)
- transitivePeerDependencies:
- - '@opentelemetry/api'
- - '@opentelemetry/exporter-trace-otlp-proto'
- - '@opentelemetry/sdk-trace-base'
- - openai
-
- '@langchain/core@0.3.72(openai@4.104.0(ws@8.18.3)(zod@3.25.76))':
+ '@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))':
dependencies:
'@cfworker/json-schema': 4.1.1
ansi-styles: 5.2.0
camelcase: 6.3.0
decamelize: 1.2.0
- js-tiktoken: 1.0.20
- langsmith: 0.3.65(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
+ js-tiktoken: 1.0.21
+ langsmith: 0.3.73(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
mustache: 4.2.0
p-queue: 6.6.2
p-retry: 4.6.2
@@ -16017,49 +14856,49 @@ snapshots:
- '@opentelemetry/sdk-trace-base'
- openai
- '@langchain/google-common@0.1.8(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(zod@3.25.76)':
+ '@langchain/google-common@0.1.8(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(zod@3.25.76)':
dependencies:
- '@langchain/core': 0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
+ '@langchain/core': 0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
uuid: 10.0.0
zod-to-json-schema: 3.24.6(zod@3.25.76)
transitivePeerDependencies:
- zod
- '@langchain/google-gauth@0.1.8(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(zod@3.25.76)':
+ '@langchain/google-gauth@0.1.8(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(zod@3.25.76)':
dependencies:
- '@langchain/core': 0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
- '@langchain/google-common': 0.1.8(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(zod@3.25.76)
+ '@langchain/core': 0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
+ '@langchain/google-common': 0.1.8(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(zod@3.25.76)
google-auth-library: 8.9.0
transitivePeerDependencies:
- encoding
- supports-color
- zod
- '@langchain/langgraph-sdk@0.0.105(@langchain/core@0.3.72(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@langchain/langgraph-sdk@0.0.70(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(react@19.0.0)':
dependencies:
'@types/json-schema': 7.0.15
p-queue: 6.6.2
p-retry: 4.6.2
uuid: 9.0.1
optionalDependencies:
- '@langchain/core': 0.3.72(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@langchain/core': 0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
+ react: 19.0.0
- '@langchain/langgraph-sdk@0.0.70(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(react@18.3.1)':
+ '@langchain/langgraph-sdk@0.1.9(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@types/json-schema': 7.0.15
p-queue: 6.6.2
p-retry: 4.6.2
uuid: 9.0.1
optionalDependencies:
- '@langchain/core': 0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
- react: 18.3.1
+ '@langchain/core': 0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@langchain/openai@0.4.9(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(ws@8.18.3)':
+ '@langchain/openai@0.4.9(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(ws@8.18.3)':
dependencies:
- '@langchain/core': 0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
- js-tiktoken: 1.0.20
+ '@langchain/core': 0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
+ js-tiktoken: 1.0.21
openai: 4.104.0(ws@8.18.3)(zod@3.25.76)
zod: 3.25.76
zod-to-json-schema: 3.24.6(zod@3.25.76)
@@ -16067,16 +14906,16 @@ snapshots:
- encoding
- ws
- '@langchain/textsplitters@0.1.0(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))':
+ '@langchain/textsplitters@0.1.0(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))':
dependencies:
- '@langchain/core': 0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
- js-tiktoken: 1.0.20
+ '@langchain/core': 0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
+ js-tiktoken: 1.0.21
- '@langchain/weaviate@0.2.1(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))':
+ '@langchain/weaviate@0.2.3(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))':
dependencies:
- '@langchain/core': 0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
+ '@langchain/core': 0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
uuid: 10.0.0
- weaviate-client: 3.6.2
+ weaviate-client: 3.9.0
transitivePeerDependencies:
- encoding
@@ -16086,29 +14925,29 @@ snapshots:
dependencies:
'@lukeed/csprng': 1.1.0
- '@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.3.1)':
+ '@mdx-js/react@3.1.1(@types/react@19.0.14)(react@19.0.0)':
dependencies:
'@types/mdx': 2.0.13
- '@types/react': 18.3.18
- react: 18.3.1
+ '@types/react': 19.0.14
+ react: 19.0.0
- '@microsoft/api-extractor-model@7.30.6(@types/node@22.15.21)':
+ '@microsoft/api-extractor-model@7.30.6(@types/node@22.18.9)':
dependencies:
'@microsoft/tsdoc': 0.15.1
'@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.13.1(@types/node@22.15.21)
+ '@rushstack/node-core-library': 5.13.1(@types/node@22.18.9)
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.52.8(@types/node@22.15.21)':
+ '@microsoft/api-extractor@7.52.8(@types/node@22.18.9)':
dependencies:
- '@microsoft/api-extractor-model': 7.30.6(@types/node@22.15.21)
+ '@microsoft/api-extractor-model': 7.30.6(@types/node@22.18.9)
'@microsoft/tsdoc': 0.15.1
'@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.13.1(@types/node@22.15.21)
+ '@rushstack/node-core-library': 5.13.1(@types/node@22.18.9)
'@rushstack/rig-package': 0.5.3
- '@rushstack/terminal': 0.15.3(@types/node@22.15.21)
- '@rushstack/ts-command-line': 5.0.1(@types/node@22.15.21)
+ '@rushstack/terminal': 0.15.3(@types/node@22.18.9)
+ '@rushstack/ts-command-line': 5.0.1(@types/node@22.18.9)
lodash: 4.17.21
minimatch: 3.0.8
resolve: 1.22.10
@@ -16127,16 +14966,6 @@ snapshots:
'@microsoft/tsdoc@0.15.1': {}
- '@mswjs/interceptors@0.39.3':
- dependencies:
- '@open-draft/deferred-promise': 2.2.0
- '@open-draft/logger': 0.3.0
- '@open-draft/until': 2.1.0
- is-node-process: 1.2.0
- outvariant: 1.4.3
- strict-event-emitter: 0.5.1
- optional: true
-
'@neoconfetti/react@1.0.0': {}
'@nodelib/fs.scandir@2.1.5':
@@ -16149,42 +14978,28 @@ snapshots:
'@nodelib/fs.walk@1.2.8':
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.19.0
-
- '@npmcli/fs@3.1.1':
- dependencies:
- semver: 7.7.2
+ fastq: 1.19.1
- '@number-flow/react@0.5.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@number-flow/react@0.5.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
esm-env: esm-env-runtime@0.1.1
number-flow: 0.5.8
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
- '@open-draft/deferred-promise@2.2.0':
- optional: true
-
- '@open-draft/logger@0.3.0':
- dependencies:
- is-node-process: 1.2.0
- outvariant: 1.4.3
- optional: true
-
- '@open-draft/until@2.1.0':
- optional: true
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
'@pkgjs/parseargs@0.11.0':
optional: true
- '@playwright/test@1.52.0':
+ '@playwright/test@1.56.0':
dependencies:
- playwright: 1.52.0
+ playwright: 1.56.0
'@polka/url@1.0.0-next.29': {}
'@popperjs/core@2.11.8': {}
+ '@protobuf-ts/protoc@2.11.1': {}
+
'@protobufjs/aspromise@1.1.2': {}
'@protobufjs/base64@1.1.2': {}
@@ -16208,914 +15023,733 @@ snapshots:
'@protobufjs/utf8@1.1.0': {}
- '@puppeteer/browsers@2.10.6':
+ '@puppeteer/browsers@2.10.10':
dependencies:
- debug: 4.4.1
+ debug: 4.4.3
extract-zip: 2.0.1
progress: 2.0.3
proxy-agent: 6.5.0
- semver: 7.7.2
- tar-fs: 3.1.0
+ semver: 7.7.3
+ tar-fs: 3.1.1
yargs: 17.7.2
transitivePeerDependencies:
+ - bare-abort-controller
- bare-buffer
- react-native-b4a
- supports-color
- '@radix-ui/number@1.1.0': {}
-
'@radix-ui/number@1.1.1': {}
- '@radix-ui/primitive@1.1.1': {}
-
'@radix-ui/primitive@1.1.3': {}
- '@radix-ui/react-accordion@1.2.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collapsible': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-arrow@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-arrow@1.1.7(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-accordion@1.2.12(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collapsible': 1.1.12(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-avatar@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-arrow@1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-checkbox@1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-collapsible@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
+
+ '@radix-ui/react-avatar@1.1.10(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-collection@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-checkbox@1.3.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-collection@1.1.7(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-collapsible@1.1.12(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.2(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.2.3(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-compose-refs@1.1.1(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-collection@1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- react: 18.3.1
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-compose-refs@1.1.2(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- react: 18.3.1
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@radix-ui/react-context@1.1.1(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-context@1.1.2(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- react: 18.3.1
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@radix-ui/react-context@1.1.2(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-dialog@1.1.15(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.18
-
- '@radix-ui/react-dialog@1.1.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1)
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.14)(react@19.0.0)
aria-hidden: 1.2.6
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.7.1(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-remove-scroll: 2.7.1(@types/react@19.0.14)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-direction@1.1.0(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-direction@1.1.1(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- react: 18.3.1
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@radix-ui/react-direction@1.1.1(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- react: 18.3.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-dropdown-menu@2.1.16(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-dismissable-layer@1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-menu': 2.1.16(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-dropdown-menu@2.1.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-menu': 2.1.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-focus-guards@1.1.1(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-focus-guards@1.1.3(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- react: 18.3.1
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@radix-ui/react-focus-guards@1.1.3(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- react: 18.3.1
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-focus-scope@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-hover-card@1.1.15(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-id@1.1.1(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
- '@radix-ui/react-hover-card@1.1.15(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-label@2.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.2(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-id@1.1.0(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-menu@2.1.16(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ aria-hidden: 1.2.6
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-remove-scroll: 2.7.1(@types/react@19.0.14)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-id@1.1.1(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-navigation-menu@1.2.14(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-label@2.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-popover@1.1.15(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-menu@2.1.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- aria-hidden: 1.2.6
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.6.3(@types/react@18.3.18)(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-navigation-menu@1.2.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-popover@1.1.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1)
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.14)(react@19.0.0)
aria-hidden: 1.2.6
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.6.3(@types/react@18.3.18)(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-popper@1.2.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-arrow': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/rect': 1.1.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-remove-scroll: 2.7.1(@types/react@19.0.14)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-popper@1.2.8(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-arrow': 1.1.7(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.2(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-rect': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-size': 1.1.1(@types/react@18.3.18)(react@18.3.1)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
+
+ '@radix-ui/react-popper@1.2.8(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-arrow': 1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-rect': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.0.14)(react@19.0.0)
'@radix-ui/rect': 1.1.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-portal@1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-portal@1.1.9(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-portal@1.1.9(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-presence@1.1.5(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-presence@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-primitive@2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-presence@1.1.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-progress@1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-primitive@2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-roving-focus@1.1.11(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-primitive@2.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-scroll-area@1.2.10(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-slot': 1.2.3(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-progress@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-select@2.2.6(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-roving-focus@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-scroll-area@1.2.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/number': 1.1.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-select@2.1.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/number': 1.1.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
aria-hidden: 1.2.6
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.6.3(@types/react@18.3.18)(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-slot@1.1.1(@types/react@18.3.18)(react@18.3.1)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-remove-scroll: 2.7.1(@types/react@19.0.14)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-slot@1.2.0(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-slot@1.2.0(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@radix-ui/react-slot@1.2.3(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-slot@1.2.3(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@radix-ui/react-switch@1.2.6(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-switch@1.2.6(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.2(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-size': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-tabs@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-toggle-group@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-toggle': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-toggle@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-tooltip@1.1.7(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.18)(react@18.3.1)':
- dependencies:
- react: 18.3.1
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-use-callback-ref@1.1.1(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-tabs@1.1.13(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- react: 18.3.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-toggle-group@1.1.11(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-toggle': 1.1.10(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-use-controllable-state@1.2.2(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-toggle@1.1.10(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-use-effect-event': 0.0.2(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-use-effect-event@0.0.2(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-tooltip@1.2.8(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
- '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.0.14)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- react: 18.3.1
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@radix-ui/react-use-layout-effect@1.1.1(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- react: 18.3.1
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@radix-ui/react-use-previous@1.1.0(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-use-is-hydrated@0.1.0(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- react: 18.3.1
+ react: 19.0.0
+ use-sync-external-store: 1.6.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@radix-ui/react-use-previous@1.1.1(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- react: 18.3.1
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@radix-ui/react-use-rect@1.1.0(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-use-previous@1.1.1(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- '@radix-ui/rect': 1.1.0
- react: 18.3.1
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@radix-ui/react-use-rect@1.1.1(@types/react@18.3.18)(react@18.3.1)':
+ '@radix-ui/react-use-rect@1.1.1(@types/react@19.0.14)(react@19.0.0)':
dependencies:
'@radix-ui/rect': 1.1.1
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.18
-
- '@radix-ui/react-use-size@1.1.0(@types/react@18.3.18)(react@18.3.1)':
- dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.18
-
- '@radix-ui/react-use-size@1.1.1(@types/react@18.3.18)(react@18.3.1)':
- dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.18)(react@18.3.1)
- react: 18.3.1
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@radix-ui/react-visually-hidden@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-use-size@1.1.1(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.14)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@types/react': 19.0.14
- '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@radix-ui/rect@1.1.0': {}
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
'@radix-ui/rect@1.1.1': {}
- '@react-aria/focus@3.20.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/focus@3.21.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/utils': 3.29.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-types/shared': 3.30.0(react@18.3.1)
+ '@react-aria/interactions': 3.25.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@react-aria/utils': 3.31.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@react-types/shared': 3.32.1(react@19.0.0)
'@swc/helpers': 0.5.17
clsx: 2.1.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@react-aria/interactions@3.25.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/interactions@3.25.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@react-aria/ssr': 3.9.9(react@18.3.1)
- '@react-aria/utils': 3.29.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/ssr': 3.9.10(react@19.0.0)
+ '@react-aria/utils': 3.31.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@react-stately/flags': 3.1.2
- '@react-types/shared': 3.30.0(react@18.3.1)
+ '@react-types/shared': 3.32.1(react@19.0.0)
'@swc/helpers': 0.5.17
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@react-aria/ssr@3.9.9(react@18.3.1)':
+ '@react-aria/ssr@3.9.10(react@19.0.0)':
dependencies:
'@swc/helpers': 0.5.17
- react: 18.3.1
+ react: 19.0.0
- '@react-aria/utils@3.29.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/utils@3.31.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@react-aria/ssr': 3.9.9(react@18.3.1)
+ '@react-aria/ssr': 3.9.10(react@19.0.0)
'@react-stately/flags': 3.1.2
- '@react-stately/utils': 3.10.7(react@18.3.1)
- '@react-types/shared': 3.30.0(react@18.3.1)
+ '@react-stately/utils': 3.10.8(react@19.0.0)
+ '@react-types/shared': 3.32.1(react@19.0.0)
'@swc/helpers': 0.5.17
clsx: 2.1.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@react-native-async-storage/async-storage@2.1.2(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))':
+ '@react-native-async-storage/async-storage@2.2.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))':
dependencies:
merge-options: 3.0.4
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
- '@react-native-community/datetimepicker@8.3.0(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)':
+ '@react-native-community/datetimepicker@8.4.5(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
dependencies:
invariant: 2.2.4
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
optionalDependencies:
- expo: 52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ expo: 53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
- '@react-native-community/slider@4.5.6': {}
+ '@react-native-community/slider@4.5.7': {}
- '@react-native/assets-registry@0.76.9': {}
+ '@react-native/assets-registry@0.79.5': {}
- '@react-native/babel-plugin-codegen@0.76.9(@babel/preset-env@7.26.9(@babel/core@7.26.10))':
+ '@react-native/babel-plugin-codegen@0.79.6(@babel/core@7.28.4)':
dependencies:
- '@react-native/codegen': 0.76.9(@babel/preset-env@7.26.9(@babel/core@7.26.10))
+ '@babel/traverse': 7.28.4
+ '@react-native/codegen': 0.79.6(@babel/core@7.28.4)
transitivePeerDependencies:
- - '@babel/preset-env'
+ - '@babel/core'
- supports-color
- '@react-native/babel-preset@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.10)
- '@babel/plugin-syntax-export-default-from': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.10)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.10)
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.26.10)
- '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.26.10)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.26.10)
- '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.26.10)
- '@babel/plugin-transform-flow-strip-types': 7.26.5(@babel/core@7.26.10)
- '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.26.10)
- '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.10)
- '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-regenerator': 7.28.0(@babel/core@7.26.10)
- '@babel/plugin-transform-runtime': 7.26.10(@babel/core@7.26.10)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.26.10)
+ '@react-native/babel-preset@0.79.6(@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.76.9(@babel/preset-env@7.26.9(@babel/core@7.26.10))
+ '@react-native/babel-plugin-codegen': 0.79.6(@babel/core@7.28.4)
babel-plugin-syntax-hermes-parser: 0.25.1
- babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.10)
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.4)
react-refresh: 0.14.2
transitivePeerDependencies:
- - '@babel/preset-env'
- supports-color
- '@react-native/codegen@0.76.9(@babel/preset-env@7.26.9(@babel/core@7.26.10))':
+ '@react-native/codegen@0.79.5(@babel/core@7.28.4)':
dependencies:
- '@babel/parser': 7.28.0
- '@babel/preset-env': 7.26.9(@babel/core@7.26.10)
+ '@babel/core': 7.28.4
glob: 7.2.3
- hermes-parser: 0.23.1
+ hermes-parser: 0.25.1
+ invariant: 2.2.4
+ nullthrows: 1.1.1
+ yargs: 17.7.2
+
+ '@react-native/codegen@0.79.6(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/parser': 7.28.4
+ glob: 7.2.3
+ hermes-parser: 0.25.1
invariant: 2.2.4
- jscodeshift: 0.14.0(@babel/preset-env@7.26.9(@babel/core@7.26.10))
- mkdirp: 0.5.6
nullthrows: 1.1.1
yargs: 17.7.2
- transitivePeerDependencies:
- - supports-color
- '@react-native/community-cli-plugin@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))':
+ '@react-native/community-cli-plugin@0.79.5':
dependencies:
- '@react-native/dev-middleware': 0.76.9
- '@react-native/metro-babel-transformer': 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))
+ '@react-native/dev-middleware': 0.79.5
chalk: 4.1.2
- execa: 5.1.1
+ debug: 2.6.9
invariant: 2.2.4
- metro: 0.81.3
- metro-config: 0.81.3
- metro-core: 0.81.3
- node-fetch: 2.7.0
- readline: 1.3.0
- semver: 7.7.2
+ metro: 0.82.5
+ metro-config: 0.82.5
+ metro-core: 0.82.5
+ semver: 7.7.3
transitivePeerDependencies:
- - '@babel/core'
- - '@babel/preset-env'
- bufferutil
- - encoding
- supports-color
- utf-8-validate
- '@react-native/debugger-frontend@0.76.9': {}
+ '@react-native/debugger-frontend@0.79.5': {}
- '@react-native/dev-middleware@0.76.9':
+ '@react-native/debugger-frontend@0.79.6': {}
+
+ '@react-native/dev-middleware@0.79.5':
dependencies:
'@isaacs/ttlcache': 1.4.1
- '@react-native/debugger-frontend': 0.76.9
+ '@react-native/debugger-frontend': 0.79.5
chrome-launcher: 0.15.2
chromium-edge-launcher: 0.2.0
connect: 3.7.0
@@ -17123,7 +15757,6 @@ snapshots:
invariant: 2.2.4
nullthrows: 1.1.1
open: 7.4.2
- selfsigned: 2.4.1
serve-static: 1.16.2
ws: 6.2.3
transitivePeerDependencies:
@@ -17131,246 +15764,297 @@ snapshots:
- supports-color
- utf-8-validate
- '@react-native/gradle-plugin@0.76.9': {}
-
- '@react-native/js-polyfills@0.76.9': {}
-
- '@react-native/metro-babel-transformer@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))':
+ '@react-native/dev-middleware@0.79.6':
dependencies:
- '@babel/core': 7.26.10
- '@react-native/babel-preset': 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))
- hermes-parser: 0.23.1
+ '@isaacs/ttlcache': 1.4.1
+ '@react-native/debugger-frontend': 0.79.6
+ chrome-launcher: 0.15.2
+ chromium-edge-launcher: 0.2.0
+ connect: 3.7.0
+ debug: 2.6.9
+ invariant: 2.2.4
nullthrows: 1.1.1
+ open: 7.4.2
+ serve-static: 1.16.2
+ ws: 6.2.3
transitivePeerDependencies:
- - '@babel/preset-env'
+ - bufferutil
- supports-color
+ - utf-8-validate
- '@react-native/normalize-colors@0.74.89': {}
+ '@react-native/gradle-plugin@0.79.5': {}
- '@react-native/normalize-colors@0.76.8': {}
+ '@react-native/js-polyfills@0.79.5': {}
- '@react-native/normalize-colors@0.76.9': {}
+ '@react-native/normalize-colors@0.74.89':
+ optional: true
+
+ '@react-native/normalize-colors@0.79.5': {}
+
+ '@react-native/normalize-colors@0.79.6': {}
- '@react-native/virtualized-lists@0.76.9(@types/react@18.3.18)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)':
+ '@react-native/virtualized-lists@0.79.5(@types/react@19.0.14)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@react-navigation/core@7.4.0(react@18.3.1)':
+ '@react-navigation/bottom-tabs@7.4.8(@react-navigation/native@7.1.18(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.16.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
dependencies:
- '@react-navigation/routers': 7.2.0
+ '@react-navigation/elements': 2.6.5(@react-navigation/native@7.1.18(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@react-navigation/native': 7.1.18(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ color: 4.2.3
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-safe-area-context: 5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-screens: 4.16.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ transitivePeerDependencies:
+ - '@react-native-masked-view/masked-view'
+
+ '@react-navigation/core@7.12.4(react@19.0.0)':
+ dependencies:
+ '@react-navigation/routers': 7.5.1
escape-string-regexp: 4.0.0
- nanoid: 3.3.8
+ nanoid: 3.3.11
query-string: 7.1.3
- react: 18.3.1
- react-is: 18.3.1
- use-latest-callback: 0.2.3(react@18.3.1)
- use-sync-external-store: 1.5.0(react@18.3.1)
+ react: 19.0.0
+ react-is: 19.2.0
+ use-latest-callback: 0.2.5(react@19.0.0)
+ use-sync-external-store: 1.6.0(react@19.0.0)
+
+ '@react-navigation/elements@2.6.5(@react-navigation/native@7.1.18(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@react-navigation/native': 7.1.18(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ color: 4.2.3
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-safe-area-context: 5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ use-latest-callback: 0.2.5(react@19.0.0)
+ use-sync-external-store: 1.6.0(react@19.0.0)
+
+ '@react-navigation/native-stack@7.3.27(@react-navigation/native@7.1.18(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.16.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@react-navigation/elements': 2.6.5(@react-navigation/native@7.1.18(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@react-navigation/native': 7.1.18(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-safe-area-context: 5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-screens: 4.16.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ warn-once: 0.1.1
+ transitivePeerDependencies:
+ - '@react-native-masked-view/masked-view'
- '@react-navigation/native@7.0.15(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)':
+ '@react-navigation/native@7.1.18(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
dependencies:
- '@react-navigation/core': 7.4.0(react@18.3.1)
+ '@react-navigation/core': 7.12.4(react@19.0.0)
escape-string-regexp: 4.0.0
fast-deep-equal: 3.1.3
- nanoid: 3.3.8
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- use-latest-callback: 0.2.3(react@18.3.1)
+ nanoid: 3.3.11
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ use-latest-callback: 0.2.5(react@19.0.0)
- '@react-navigation/routers@7.2.0':
+ '@react-navigation/routers@7.5.1':
dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.11
'@react-stately/flags@3.1.2':
dependencies:
'@swc/helpers': 0.5.17
- '@react-stately/utils@3.10.7(react@18.3.1)':
+ '@react-stately/utils@3.10.8(react@19.0.0)':
dependencies:
'@swc/helpers': 0.5.17
- react: 18.3.1
+ react: 19.0.0
- '@react-types/shared@3.30.0(react@18.3.1)':
+ '@react-types/shared@3.32.1(react@19.0.0)':
dependencies:
- react: 18.3.1
+ react: 19.0.0
'@remirror/core-constants@3.0.0': {}
'@repeaterjs/repeater@3.0.6': {}
- '@rn-primitives/avatar@1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)':
+ '@rn-primitives/avatar@1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
dependencies:
- '@rn-primitives/hooks': 1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@rn-primitives/slot': 1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@rn-primitives/types': 1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react: 18.3.1
+ '@rn-primitives/hooks': 1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@rn-primitives/slot': 1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@rn-primitives/types': 1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-web: 0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-web: 0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@rn-primitives/hooks@1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)':
+ '@rn-primitives/hooks@1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
dependencies:
- '@rn-primitives/types': 1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react: 18.3.1
+ '@rn-primitives/types': 1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-web: 0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-web: 0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@rn-primitives/portal@1.1.0(@types/react@18.3.18)(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)':
+ '@rn-primitives/portal@1.1.0(@types/react@19.0.14)(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
dependencies:
- react: 18.3.1
- zustand: 4.5.6(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ zustand: 4.5.7(@types/react@19.0.14)(react@19.0.0)
optionalDependencies:
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-web: 0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-web: 0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- immer
- '@rn-primitives/progress@1.1.0(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)':
+ '@rn-primitives/progress@1.1.0(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-progress': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@rn-primitives/slot': 1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@rn-primitives/types': 1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/react-progress': 1.1.7(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@rn-primitives/slot': 1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@rn-primitives/types': 1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-web: 0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-web: 0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
- react-dom
- '@rn-primitives/slot@1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)':
+ '@rn-primitives/slot@1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
dependencies:
- react: 18.3.1
+ react: 19.0.0
optionalDependencies:
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-web: 0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-web: 0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@rn-primitives/tooltip@1.1.0(@rn-primitives/portal@1.1.0(@types/react@18.3.18)(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)':
+ '@rn-primitives/tooltip@1.1.0(@rn-primitives/portal@1.1.0(@types/react@19.0.14)(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-tooltip': 1.1.7(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@rn-primitives/hooks': 1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@rn-primitives/portal': 1.1.0(@types/react@18.3.18)(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@rn-primitives/slot': 1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@rn-primitives/types': 1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/react-tooltip': 1.2.8(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@rn-primitives/hooks': 1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@rn-primitives/portal': 1.1.0(@types/react@19.0.14)(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@rn-primitives/slot': 1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@rn-primitives/types': 1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-web: 0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-web: 0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
- react-dom
- '@rn-primitives/types@1.1.0(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)':
+ '@rn-primitives/types@1.1.0(react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
dependencies:
- react: 18.3.1
+ react: 19.0.0
optionalDependencies:
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-web: 0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-web: 0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@rollup/pluginutils@5.1.4(rollup@4.40.2)':
+ '@rolldown/pluginutils@1.0.0-beta.27': {}
+
+ '@rollup/pluginutils@5.3.0(rollup@4.52.4)':
dependencies:
'@types/estree': 1.0.8
estree-walker: 2.0.2
- picomatch: 4.0.2
+ picomatch: 4.0.3
optionalDependencies:
- rollup: 4.40.2
+ rollup: 4.52.4
+
+ '@rollup/rollup-android-arm-eabi@4.52.4':
+ optional: true
+
+ '@rollup/rollup-android-arm64@4.52.4':
+ optional: true
- '@rollup/rollup-android-arm-eabi@4.40.2':
+ '@rollup/rollup-darwin-arm64@4.52.4':
optional: true
- '@rollup/rollup-android-arm64@4.40.2':
+ '@rollup/rollup-darwin-x64@4.52.4':
optional: true
- '@rollup/rollup-darwin-arm64@4.40.2':
+ '@rollup/rollup-freebsd-arm64@4.52.4':
optional: true
- '@rollup/rollup-darwin-x64@4.40.2':
+ '@rollup/rollup-freebsd-x64@4.52.4':
optional: true
- '@rollup/rollup-freebsd-arm64@4.40.2':
+ '@rollup/rollup-linux-arm-gnueabihf@4.52.4':
optional: true
- '@rollup/rollup-freebsd-x64@4.40.2':
+ '@rollup/rollup-linux-arm-musleabihf@4.52.4':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.40.2':
+ '@rollup/rollup-linux-arm64-gnu@4.52.4':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.40.2':
+ '@rollup/rollup-linux-arm64-musl@4.52.4':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.40.2':
+ '@rollup/rollup-linux-loong64-gnu@4.52.4':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.40.2':
+ '@rollup/rollup-linux-ppc64-gnu@4.52.4':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.40.2':
+ '@rollup/rollup-linux-riscv64-gnu@4.52.4':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.2':
+ '@rollup/rollup-linux-riscv64-musl@4.52.4':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.40.2':
+ '@rollup/rollup-linux-s390x-gnu@4.52.4':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.40.2':
+ '@rollup/rollup-linux-x64-gnu@4.52.4':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.40.2':
+ '@rollup/rollup-linux-x64-musl@4.52.4':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.40.2':
+ '@rollup/rollup-openharmony-arm64@4.52.4':
optional: true
- '@rollup/rollup-linux-x64-musl@4.40.2':
+ '@rollup/rollup-win32-arm64-msvc@4.52.4':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.40.2':
+ '@rollup/rollup-win32-ia32-msvc@4.52.4':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.40.2':
+ '@rollup/rollup-win32-x64-gnu@4.52.4':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.40.2':
+ '@rollup/rollup-win32-x64-msvc@4.52.4':
optional: true
- '@rushstack/node-core-library@5.13.1(@types/node@22.15.21)':
+ '@rushstack/node-core-library@5.13.1(@types/node@22.18.9)':
dependencies:
ajv: 8.13.0
ajv-draft-04: 1.0.0(ajv@8.13.0)
ajv-formats: 3.0.1(ajv@8.13.0)
- fs-extra: 11.3.0
+ fs-extra: 11.3.2
import-lazy: 4.0.0
jju: 1.4.0
resolve: 1.22.10
semver: 7.5.4
optionalDependencies:
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
'@rushstack/rig-package@0.5.3':
dependencies:
resolve: 1.22.10
strip-json-comments: 3.1.1
- '@rushstack/terminal@0.15.3(@types/node@22.15.21)':
+ '@rushstack/terminal@0.15.3(@types/node@22.18.9)':
dependencies:
- '@rushstack/node-core-library': 5.13.1(@types/node@22.15.21)
+ '@rushstack/node-core-library': 5.13.1(@types/node@22.18.9)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
- '@rushstack/ts-command-line@5.0.1(@types/node@22.15.21)':
+ '@rushstack/ts-command-line@5.0.1(@types/node@22.18.9)':
dependencies:
- '@rushstack/terminal': 0.15.3(@types/node@22.15.21)
+ '@rushstack/terminal': 0.15.3(@types/node@22.18.9)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
@@ -17402,11 +16086,6 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@segment/loosely-validate-event@2.0.0':
- dependencies:
- component-type: 1.2.2
- join-component: 1.1.0
-
'@sideway/address@4.1.5':
dependencies:
'@hapi/hoek': 9.3.0
@@ -17417,6 +16096,8 @@ snapshots:
'@sinclair/typebox@0.27.8': {}
+ '@sinclair/typebox@0.34.41': {}
+
'@sinonjs/commons@3.0.1':
dependencies:
type-detect: 4.0.8
@@ -17427,14 +16108,14 @@ snapshots:
'@sitespeed.io/tracium@0.3.3':
dependencies:
- debug: 4.4.1
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
'@size-limit/esbuild@11.2.0(size-limit@11.2.0)':
dependencies:
- esbuild: 0.25.4
- nanoid: 5.1.5
+ esbuild: 0.25.10
+ nanoid: 5.1.6
size-limit: 11.2.0
'@size-limit/file@11.2.0(size-limit@11.2.0)':
@@ -17443,233 +16124,235 @@ snapshots:
'@size-limit/time@11.2.0(size-limit@11.2.0)':
dependencies:
- estimo: 3.0.4
+ estimo: 3.0.5
size-limit: 11.2.0
transitivePeerDependencies:
+ - bare-abort-controller
- bare-buffer
- bufferutil
- react-native-b4a
- supports-color
- utf-8-validate
- '@smithy/abort-controller@4.0.4':
+ '@smithy/abort-controller@4.2.0':
dependencies:
- '@smithy/types': 4.3.1
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/config-resolver@4.1.4':
+ '@smithy/config-resolver@4.3.0':
dependencies:
- '@smithy/node-config-provider': 4.1.3
- '@smithy/types': 4.3.1
- '@smithy/util-config-provider': 4.0.0
- '@smithy/util-middleware': 4.0.4
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/types': 4.6.0
+ '@smithy/util-config-provider': 4.2.0
+ '@smithy/util-middleware': 4.2.0
tslib: 2.8.1
- '@smithy/core@3.7.0':
- dependencies:
- '@smithy/middleware-serde': 4.0.8
- '@smithy/protocol-http': 5.1.2
- '@smithy/types': 4.3.1
- '@smithy/util-base64': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-middleware': 4.0.4
- '@smithy/util-stream': 4.2.3
- '@smithy/util-utf8': 4.0.0
+ '@smithy/core@3.15.0':
+ dependencies:
+ '@smithy/middleware-serde': 4.2.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/types': 4.6.0
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-body-length-browser': 4.2.0
+ '@smithy/util-middleware': 4.2.0
+ '@smithy/util-stream': 4.5.0
+ '@smithy/util-utf8': 4.2.0
+ '@smithy/uuid': 1.1.0
tslib: 2.8.1
- '@smithy/credential-provider-imds@4.0.6':
+ '@smithy/credential-provider-imds@4.2.0':
dependencies:
- '@smithy/node-config-provider': 4.1.3
- '@smithy/property-provider': 4.0.4
- '@smithy/types': 4.3.1
- '@smithy/url-parser': 4.0.4
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/types': 4.6.0
+ '@smithy/url-parser': 4.2.0
tslib: 2.8.1
- '@smithy/eventstream-codec@4.0.4':
+ '@smithy/eventstream-codec@4.2.0':
dependencies:
'@aws-crypto/crc32': 5.2.0
- '@smithy/types': 4.3.1
- '@smithy/util-hex-encoding': 4.0.0
+ '@smithy/types': 4.6.0
+ '@smithy/util-hex-encoding': 4.2.0
tslib: 2.8.1
- '@smithy/eventstream-serde-browser@4.0.4':
+ '@smithy/eventstream-serde-browser@4.2.0':
dependencies:
- '@smithy/eventstream-serde-universal': 4.0.4
- '@smithy/types': 4.3.1
+ '@smithy/eventstream-serde-universal': 4.2.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/eventstream-serde-config-resolver@4.1.2':
+ '@smithy/eventstream-serde-config-resolver@4.3.0':
dependencies:
- '@smithy/types': 4.3.1
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/eventstream-serde-node@4.0.4':
+ '@smithy/eventstream-serde-node@4.2.0':
dependencies:
- '@smithy/eventstream-serde-universal': 4.0.4
- '@smithy/types': 4.3.1
+ '@smithy/eventstream-serde-universal': 4.2.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/eventstream-serde-universal@4.0.4':
+ '@smithy/eventstream-serde-universal@4.2.0':
dependencies:
- '@smithy/eventstream-codec': 4.0.4
- '@smithy/types': 4.3.1
+ '@smithy/eventstream-codec': 4.2.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/fetch-http-handler@5.1.0':
+ '@smithy/fetch-http-handler@5.3.1':
dependencies:
- '@smithy/protocol-http': 5.1.2
- '@smithy/querystring-builder': 4.0.4
- '@smithy/types': 4.3.1
- '@smithy/util-base64': 4.0.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/querystring-builder': 4.2.0
+ '@smithy/types': 4.6.0
+ '@smithy/util-base64': 4.3.0
tslib: 2.8.1
- '@smithy/hash-node@4.0.4':
+ '@smithy/hash-node@4.2.0':
dependencies:
- '@smithy/types': 4.3.1
- '@smithy/util-buffer-from': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@smithy/types': 4.6.0
+ '@smithy/util-buffer-from': 4.2.0
+ '@smithy/util-utf8': 4.2.0
tslib: 2.8.1
- '@smithy/invalid-dependency@4.0.4':
+ '@smithy/invalid-dependency@4.2.0':
dependencies:
- '@smithy/types': 4.3.1
+ '@smithy/types': 4.6.0
tslib: 2.8.1
'@smithy/is-array-buffer@2.2.0':
dependencies:
tslib: 2.8.1
- '@smithy/is-array-buffer@4.0.0':
+ '@smithy/is-array-buffer@4.2.0':
dependencies:
tslib: 2.8.1
- '@smithy/middleware-content-length@4.0.4':
+ '@smithy/middleware-content-length@4.2.0':
dependencies:
- '@smithy/protocol-http': 5.1.2
- '@smithy/types': 4.3.1
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/middleware-endpoint@4.1.14':
+ '@smithy/middleware-endpoint@4.3.1':
dependencies:
- '@smithy/core': 3.7.0
- '@smithy/middleware-serde': 4.0.8
- '@smithy/node-config-provider': 4.1.3
- '@smithy/shared-ini-file-loader': 4.0.4
- '@smithy/types': 4.3.1
- '@smithy/url-parser': 4.0.4
- '@smithy/util-middleware': 4.0.4
+ '@smithy/core': 3.15.0
+ '@smithy/middleware-serde': 4.2.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/shared-ini-file-loader': 4.3.0
+ '@smithy/types': 4.6.0
+ '@smithy/url-parser': 4.2.0
+ '@smithy/util-middleware': 4.2.0
tslib: 2.8.1
- '@smithy/middleware-retry@4.1.15':
+ '@smithy/middleware-retry@4.4.1':
dependencies:
- '@smithy/node-config-provider': 4.1.3
- '@smithy/protocol-http': 5.1.2
- '@smithy/service-error-classification': 4.0.6
- '@smithy/smithy-client': 4.4.6
- '@smithy/types': 4.3.1
- '@smithy/util-middleware': 4.0.4
- '@smithy/util-retry': 4.0.6
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/service-error-classification': 4.2.0
+ '@smithy/smithy-client': 4.7.1
+ '@smithy/types': 4.6.0
+ '@smithy/util-middleware': 4.2.0
+ '@smithy/util-retry': 4.2.0
+ '@smithy/uuid': 1.1.0
tslib: 2.8.1
- uuid: 9.0.1
- '@smithy/middleware-serde@4.0.8':
+ '@smithy/middleware-serde@4.2.0':
dependencies:
- '@smithy/protocol-http': 5.1.2
- '@smithy/types': 4.3.1
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/middleware-stack@4.0.4':
+ '@smithy/middleware-stack@4.2.0':
dependencies:
- '@smithy/types': 4.3.1
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/node-config-provider@4.1.3':
+ '@smithy/node-config-provider@4.3.0':
dependencies:
- '@smithy/property-provider': 4.0.4
- '@smithy/shared-ini-file-loader': 4.0.4
- '@smithy/types': 4.3.1
+ '@smithy/property-provider': 4.2.0
+ '@smithy/shared-ini-file-loader': 4.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/node-http-handler@4.1.0':
+ '@smithy/node-http-handler@4.3.0':
dependencies:
- '@smithy/abort-controller': 4.0.4
- '@smithy/protocol-http': 5.1.2
- '@smithy/querystring-builder': 4.0.4
- '@smithy/types': 4.3.1
+ '@smithy/abort-controller': 4.2.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/querystring-builder': 4.2.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/property-provider@4.0.4':
+ '@smithy/property-provider@4.2.0':
dependencies:
- '@smithy/types': 4.3.1
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/protocol-http@5.1.2':
+ '@smithy/protocol-http@5.3.0':
dependencies:
- '@smithy/types': 4.3.1
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/querystring-builder@4.0.4':
+ '@smithy/querystring-builder@4.2.0':
dependencies:
- '@smithy/types': 4.3.1
- '@smithy/util-uri-escape': 4.0.0
+ '@smithy/types': 4.6.0
+ '@smithy/util-uri-escape': 4.2.0
tslib: 2.8.1
- '@smithy/querystring-parser@4.0.4':
+ '@smithy/querystring-parser@4.2.0':
dependencies:
- '@smithy/types': 4.3.1
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/service-error-classification@4.0.6':
+ '@smithy/service-error-classification@4.2.0':
dependencies:
- '@smithy/types': 4.3.1
+ '@smithy/types': 4.6.0
- '@smithy/shared-ini-file-loader@4.0.4':
+ '@smithy/shared-ini-file-loader@4.3.0':
dependencies:
- '@smithy/types': 4.3.1
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/signature-v4@5.1.2':
+ '@smithy/signature-v4@5.3.0':
dependencies:
- '@smithy/is-array-buffer': 4.0.0
- '@smithy/protocol-http': 5.1.2
- '@smithy/types': 4.3.1
- '@smithy/util-hex-encoding': 4.0.0
- '@smithy/util-middleware': 4.0.4
- '@smithy/util-uri-escape': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@smithy/is-array-buffer': 4.2.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/types': 4.6.0
+ '@smithy/util-hex-encoding': 4.2.0
+ '@smithy/util-middleware': 4.2.0
+ '@smithy/util-uri-escape': 4.2.0
+ '@smithy/util-utf8': 4.2.0
tslib: 2.8.1
- '@smithy/smithy-client@4.4.6':
+ '@smithy/smithy-client@4.7.1':
dependencies:
- '@smithy/core': 3.7.0
- '@smithy/middleware-endpoint': 4.1.14
- '@smithy/middleware-stack': 4.0.4
- '@smithy/protocol-http': 5.1.2
- '@smithy/types': 4.3.1
- '@smithy/util-stream': 4.2.3
+ '@smithy/core': 3.15.0
+ '@smithy/middleware-endpoint': 4.3.1
+ '@smithy/middleware-stack': 4.2.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/types': 4.6.0
+ '@smithy/util-stream': 4.5.0
tslib: 2.8.1
- '@smithy/types@4.3.1':
+ '@smithy/types@4.6.0':
dependencies:
tslib: 2.8.1
- '@smithy/url-parser@4.0.4':
+ '@smithy/url-parser@4.2.0':
dependencies:
- '@smithy/querystring-parser': 4.0.4
- '@smithy/types': 4.3.1
+ '@smithy/querystring-parser': 4.2.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/util-base64@4.0.0':
+ '@smithy/util-base64@4.3.0':
dependencies:
- '@smithy/util-buffer-from': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@smithy/util-buffer-from': 4.2.0
+ '@smithy/util-utf8': 4.2.0
tslib: 2.8.1
- '@smithy/util-body-length-browser@4.0.0':
+ '@smithy/util-body-length-browser@4.2.0':
dependencies:
tslib: 2.8.1
- '@smithy/util-body-length-node@4.0.0':
+ '@smithy/util-body-length-node@4.2.1':
dependencies:
tslib: 2.8.1
@@ -17678,66 +16361,65 @@ snapshots:
'@smithy/is-array-buffer': 2.2.0
tslib: 2.8.1
- '@smithy/util-buffer-from@4.0.0':
+ '@smithy/util-buffer-from@4.2.0':
dependencies:
- '@smithy/is-array-buffer': 4.0.0
+ '@smithy/is-array-buffer': 4.2.0
tslib: 2.8.1
- '@smithy/util-config-provider@4.0.0':
+ '@smithy/util-config-provider@4.2.0':
dependencies:
tslib: 2.8.1
- '@smithy/util-defaults-mode-browser@4.0.22':
+ '@smithy/util-defaults-mode-browser@4.3.0':
dependencies:
- '@smithy/property-provider': 4.0.4
- '@smithy/smithy-client': 4.4.6
- '@smithy/types': 4.3.1
- bowser: 2.11.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/smithy-client': 4.7.1
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/util-defaults-mode-node@4.0.22':
+ '@smithy/util-defaults-mode-node@4.2.1':
dependencies:
- '@smithy/config-resolver': 4.1.4
- '@smithy/credential-provider-imds': 4.0.6
- '@smithy/node-config-provider': 4.1.3
- '@smithy/property-provider': 4.0.4
- '@smithy/smithy-client': 4.4.6
- '@smithy/types': 4.3.1
+ '@smithy/config-resolver': 4.3.0
+ '@smithy/credential-provider-imds': 4.2.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/smithy-client': 4.7.1
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/util-endpoints@3.0.6':
+ '@smithy/util-endpoints@3.2.0':
dependencies:
- '@smithy/node-config-provider': 4.1.3
- '@smithy/types': 4.3.1
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/util-hex-encoding@4.0.0':
+ '@smithy/util-hex-encoding@4.2.0':
dependencies:
tslib: 2.8.1
- '@smithy/util-middleware@4.0.4':
+ '@smithy/util-middleware@4.2.0':
dependencies:
- '@smithy/types': 4.3.1
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/util-retry@4.0.6':
+ '@smithy/util-retry@4.2.0':
dependencies:
- '@smithy/service-error-classification': 4.0.6
- '@smithy/types': 4.3.1
+ '@smithy/service-error-classification': 4.2.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/util-stream@4.2.3':
+ '@smithy/util-stream@4.5.0':
dependencies:
- '@smithy/fetch-http-handler': 5.1.0
- '@smithy/node-http-handler': 4.1.0
- '@smithy/types': 4.3.1
- '@smithy/util-base64': 4.0.0
- '@smithy/util-buffer-from': 4.0.0
- '@smithy/util-hex-encoding': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@smithy/fetch-http-handler': 5.3.1
+ '@smithy/node-http-handler': 4.3.0
+ '@smithy/types': 4.6.0
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-buffer-from': 4.2.0
+ '@smithy/util-hex-encoding': 4.2.0
+ '@smithy/util-utf8': 4.2.0
tslib: 2.8.1
- '@smithy/util-uri-escape@4.0.0':
+ '@smithy/util-uri-escape@4.2.0':
dependencies:
tslib: 2.8.1
@@ -17746,24 +16428,28 @@ snapshots:
'@smithy/util-buffer-from': 2.2.0
tslib: 2.8.1
- '@smithy/util-utf8@4.0.0':
+ '@smithy/util-utf8@4.2.0':
+ dependencies:
+ '@smithy/util-buffer-from': 4.2.0
+ tslib: 2.8.1
+
+ '@smithy/uuid@1.1.0':
dependencies:
- '@smithy/util-buffer-from': 4.0.0
tslib: 2.8.1
- '@statsig/client-core@3.24.4': {}
+ '@statsig/client-core@3.26.0': {}
- '@statsig/js-client@3.24.4':
+ '@statsig/js-client@3.26.0':
dependencies:
- '@statsig/client-core': 3.24.4
+ '@statsig/client-core': 3.26.0
- '@storybook/addon-a11y@9.1.3(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))':
+ '@storybook/addon-a11y@9.1.10(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))':
dependencies:
'@storybook/global': 5.0.0
- axe-core: 4.10.3
- storybook: 9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ axe-core: 4.11.0
+ storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
- '@storybook/addon-actions@8.6.14(storybook@8.6.14(prettier@2.8.8))':
+ '@storybook/addon-actions@8.6.14(storybook@8.6.14(prettier@3.6.2))':
dependencies:
'@storybook/global': 5.0.0
'@types/uuid': 9.0.8
@@ -17772,41 +16458,41 @@ snapshots:
storybook: 8.6.14(prettier@2.8.8)
uuid: 9.0.1
- '@storybook/addon-controls@8.6.12(storybook@8.6.14(prettier@2.8.8))':
+ '@storybook/addon-controls@8.6.14(storybook@8.6.14(prettier@3.6.2))':
dependencies:
'@storybook/global': 5.0.0
dequal: 2.0.3
storybook: 8.6.14(prettier@2.8.8)
ts-dedent: 2.2.0
- '@storybook/addon-docs@9.1.3(@types/react@18.3.18)(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))':
+ '@storybook/addon-docs@9.1.10(@types/react@19.0.14)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))':
dependencies:
- '@mdx-js/react': 3.1.0(@types/react@18.3.18)(react@18.3.1)
- '@storybook/csf-plugin': 9.1.3(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))
- '@storybook/icons': 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/react-dom-shim': 9.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- storybook: 9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ '@mdx-js/react': 3.1.1(@types/react@19.0.14)(react@19.0.0)
+ '@storybook/csf-plugin': 9.1.10(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))
+ '@storybook/icons': 1.6.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@storybook/react-dom-shim': 9.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
ts-dedent: 2.2.0
transitivePeerDependencies:
- '@types/react'
- '@storybook/addon-links@9.1.3(react@18.3.1)(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))':
+ '@storybook/addon-links@9.1.10(react@19.0.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))':
dependencies:
'@storybook/global': 5.0.0
- storybook: 9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
optionalDependencies:
- react: 18.3.1
+ react: 19.0.0
- '@storybook/addon-ondevice-actions@8.6.4(prettier@2.8.8)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@2.8.8))':
+ '@storybook/addon-ondevice-actions@8.6.4(prettier@3.6.2)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(storybook@8.6.14(prettier@3.6.2))':
dependencies:
- '@storybook/addon-actions': 8.6.14(storybook@8.6.14(prettier@2.8.8))
- '@storybook/core': 8.6.14(prettier@2.8.8)(storybook@8.6.14(prettier@2.8.8))
+ '@storybook/addon-actions': 8.6.14(storybook@8.6.14(prettier@3.6.2))
+ '@storybook/core': 8.6.14(prettier@3.6.2)(storybook@8.6.14(prettier@3.6.2))
'@storybook/global': 5.0.0
fast-deep-equal: 2.0.1
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
transitivePeerDependencies:
- bufferutil
- prettier
@@ -17814,20 +16500,20 @@ snapshots:
- supports-color
- utf-8-validate
- '@storybook/addon-ondevice-controls@8.6.4(akqf54yop62has7symzcxhkwre)':
+ '@storybook/addon-ondevice-controls@8.6.4(gp66nu6xxnyqkxpox7xqyrbl4y)':
dependencies:
- '@gorhom/bottom-sheet': 5.1.2(@types/react-native@0.73.0(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(@types/react@18.3.18)(react-native-gesture-handler@2.25.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-reanimated@3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@react-native-community/datetimepicker': 8.3.0(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@react-native-community/slider': 4.5.6
- '@storybook/addon-controls': 8.6.12(storybook@8.6.14(prettier@2.8.8))
- '@storybook/core': 8.6.14(prettier@2.8.8)(storybook@8.6.14(prettier@2.8.8))
- '@storybook/react-native-theming': 8.6.4(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@storybook/react-native-ui': 8.6.4(yimge6heqi6tra3io4v7zgwvjq)
+ '@gorhom/bottom-sheet': 5.2.6(@types/react-native@0.73.0(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(@types/react@19.0.14)(react-native-gesture-handler@2.28.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@react-native-community/datetimepicker': 8.4.5(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@react-native-community/slider': 4.5.7
+ '@storybook/addon-controls': 8.6.14(storybook@8.6.14(prettier@3.6.2))
+ '@storybook/core': 8.6.14(prettier@3.6.2)(storybook@8.6.14(prettier@3.6.2))
+ '@storybook/react-native-theming': 8.6.4(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@storybook/react-native-ui': 8.6.4(v4cbzji76nmy6jhxaqwqmyg7ua)
deep-equal: 1.1.2
prop-types: 15.8.1
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-modal-datetime-picker: 18.0.0(@react-native-community/datetimepicker@8.3.0(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-modal-datetime-picker: 18.0.0(@react-native-community/datetimepicker@8.4.5(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))
tinycolor2: 1.6.0
transitivePeerDependencies:
- '@storybook/test'
@@ -17843,13 +16529,13 @@ snapshots:
- typescript
- utf-8-validate
- '@storybook/addon-ondevice-notes@8.6.4(prettier@2.8.8)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@2.8.8))':
+ '@storybook/addon-ondevice-notes@8.6.4(prettier@3.6.2)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(storybook@8.6.14(prettier@3.6.2))':
dependencies:
- '@storybook/core': 8.6.14(prettier@2.8.8)(storybook@8.6.14(prettier@2.8.8))
- '@storybook/react-native-theming': 8.6.4(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-markdown-display: 7.0.2(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ '@storybook/core': 8.6.14(prettier@3.6.2)(storybook@8.6.14(prettier@3.6.2))
+ '@storybook/react-native-theming': 8.6.4(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-markdown-display: 7.0.2(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
transitivePeerDependencies:
- bufferutil
- prettier
@@ -17857,46 +16543,67 @@ snapshots:
- supports-color
- utf-8-validate
- '@storybook/addon-themes@9.1.3(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))':
+ '@storybook/addon-themes@9.1.10(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))':
+ dependencies:
+ storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
+ ts-dedent: 2.2.0
+
+ '@storybook/builder-vite@9.1.10(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))':
+ dependencies:
+ '@storybook/csf-plugin': 9.1.10(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))
+ storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
+ ts-dedent: 2.2.0
+ vite: 6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)
+
+ '@storybook/components@8.6.14(storybook@8.6.14(prettier@3.6.2))':
+ dependencies:
+ storybook: 8.6.14(prettier@2.8.8)
+
+ '@storybook/core@8.6.14(prettier@2.8.8)(storybook@8.6.14(prettier@3.6.2))':
+ dependencies:
+ '@storybook/theming': 8.6.14(storybook@8.6.14(prettier@3.6.2))
+ better-opn: 3.0.2
+ browser-assert: 1.2.1
+ esbuild: 0.25.10
+ esbuild-register: 3.6.0(esbuild@0.25.10)
+ jsdoc-type-pratt-parser: 4.8.0
+ process: 0.11.10
+ recast: 0.23.11
+ semver: 7.7.3
+ util: 0.12.5
+ ws: 8.18.3
+ optionalDependencies:
+ prettier: 2.8.8
+ transitivePeerDependencies:
+ - bufferutil
+ - storybook
+ - supports-color
+ - utf-8-validate
+
+ '@storybook/core@8.6.14(prettier@3.6.2)(storybook@8.6.14(prettier@3.6.2))':
dependencies:
- storybook: 9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
- ts-dedent: 2.2.0
-
- '@storybook/builder-vite@9.1.3(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))':
- dependencies:
- '@storybook/csf-plugin': 9.1.3(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))
- storybook: 9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
- ts-dedent: 2.2.0
- vite: 6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)
-
- '@storybook/components@8.6.14(storybook@8.6.14(prettier@2.8.8))':
- dependencies:
- storybook: 8.6.14(prettier@2.8.8)
-
- '@storybook/core@8.6.14(prettier@2.8.8)(storybook@8.6.14(prettier@2.8.8))':
- dependencies:
- '@storybook/theming': 8.6.14(storybook@8.6.14(prettier@2.8.8))
+ '@storybook/theming': 8.6.14(storybook@8.6.14(prettier@3.6.2))
better-opn: 3.0.2
browser-assert: 1.2.1
- esbuild: 0.25.4
- esbuild-register: 3.6.0(esbuild@0.25.4)
- jsdoc-type-pratt-parser: 4.1.0
+ esbuild: 0.25.10
+ esbuild-register: 3.6.0(esbuild@0.25.10)
+ jsdoc-type-pratt-parser: 4.8.0
process: 0.11.10
recast: 0.23.11
- semver: 7.7.2
+ semver: 7.7.3
util: 0.12.5
- ws: 8.18.1
+ ws: 8.18.3
optionalDependencies:
- prettier: 2.8.8
+ prettier: 3.6.2
transitivePeerDependencies:
- bufferutil
- storybook
- supports-color
- utf-8-validate
- '@storybook/csf-plugin@9.1.3(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))':
+ '@storybook/csf-plugin@9.1.10(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))':
dependencies:
- storybook: 9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
unplugin: 1.16.1
'@storybook/csf@0.1.13':
@@ -17905,60 +16612,80 @@ snapshots:
'@storybook/global@5.0.0': {}
- '@storybook/icons@1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@storybook/icons@1.6.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@storybook/instrumenter@8.6.14(storybook@8.6.14(prettier@2.8.8))':
+ '@storybook/manager-api@8.6.14(storybook@8.6.14(prettier@3.6.2))':
dependencies:
- '@storybook/global': 5.0.0
- '@vitest/utils': 2.1.9
storybook: 8.6.14(prettier@2.8.8)
- optional: true
- '@storybook/manager-api@8.6.14(storybook@8.6.14(prettier@2.8.8))':
+ '@storybook/preview-api@8.6.14(storybook@8.6.14(prettier@3.6.2))':
dependencies:
storybook: 8.6.14(prettier@2.8.8)
- '@storybook/preview-api@8.6.14(storybook@8.6.14(prettier@2.8.8))':
+ '@storybook/react-dom-shim@8.6.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@8.6.14(prettier@3.6.2))':
dependencies:
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
storybook: 8.6.14(prettier@2.8.8)
- '@storybook/react-dom-shim@8.6.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@2.8.8))':
+ '@storybook/react-dom-shim@9.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))':
dependencies:
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- storybook: 8.6.14(prettier@2.8.8)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
- '@storybook/react-dom-shim@9.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))':
+ '@storybook/react-native-theming@8.6.4(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
dependencies:
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- storybook: 9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ polished: 4.3.1
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
- '@storybook/react-native-theming@8.6.4(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)':
+ '@storybook/react-native-ui@8.6.4(phrii5q7ptpu5jccz4ex6jt3qa)':
dependencies:
+ '@gorhom/bottom-sheet': 5.2.6(@types/react-native@0.73.0(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(@types/react@19.0.14)(react-native-gesture-handler@2.28.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@storybook/core': 8.6.14(prettier@2.8.8)(storybook@8.6.14(prettier@3.6.2))
+ '@storybook/react': 8.6.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@8.6.14(prettier@3.6.2))(typescript@5.9.3)
+ '@storybook/react-native-theming': 8.6.4(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ fuse.js: 7.1.0
+ lodash: 4.17.21
+ memoizerific: 1.11.3
polished: 4.3.1
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-gesture-handler: 2.28.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-reanimated: 3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-safe-area-context: 5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-svg: 15.11.2(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ store2: 2.14.4
+ transitivePeerDependencies:
+ - '@storybook/test'
+ - bufferutil
+ - prettier
+ - react-dom
+ - storybook
+ - supports-color
+ - typescript
+ - utf-8-validate
- '@storybook/react-native-ui@8.6.4(yimge6heqi6tra3io4v7zgwvjq)':
+ '@storybook/react-native-ui@8.6.4(v4cbzji76nmy6jhxaqwqmyg7ua)':
dependencies:
- '@gorhom/bottom-sheet': 5.1.2(@types/react-native@0.73.0(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(@types/react@18.3.18)(react-native-gesture-handler@2.25.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-reanimated@3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@storybook/core': 8.6.14(prettier@2.8.8)(storybook@8.6.14(prettier@2.8.8))
- '@storybook/react': 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@2.8.8)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@2.8.8))(typescript@5.8.2)
- '@storybook/react-native-theming': 8.6.4(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ '@gorhom/bottom-sheet': 5.2.6(@types/react-native@0.73.0(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(@types/react@19.0.14)(react-native-gesture-handler@2.28.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@storybook/core': 8.6.14(prettier@3.6.2)(storybook@8.6.14(prettier@3.6.2))
+ '@storybook/react': 8.6.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@8.6.14(prettier@3.6.2))(typescript@5.9.3)
+ '@storybook/react-native-theming': 8.6.4(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
fuse.js: 7.1.0
lodash: 4.17.21
memoizerific: 1.11.3
polished: 4.3.1
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-gesture-handler: 2.25.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react-native-reanimated: 3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react-native-safe-area-context: 4.12.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react-native-svg: 15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-gesture-handler: 2.28.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-reanimated: 3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-safe-area-context: 5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-svg: 15.11.2(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
store2: 2.14.4
transitivePeerDependencies:
- '@storybook/test'
@@ -17970,29 +16697,29 @@ snapshots:
- typescript
- utf-8-validate
- '@storybook/react-native@8.6.4(ljn62ie5eiwiedljgqima6enqq)':
+ '@storybook/react-native@8.6.4(dlkmro4qwrbvwwytn2ancbcv2u)':
dependencies:
- '@gorhom/bottom-sheet': 5.1.2(@types/react-native@0.73.0(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(@types/react@18.3.18)(react-native-gesture-handler@2.25.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-reanimated@3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@storybook/core': 8.6.14(prettier@2.8.8)(storybook@8.6.14(prettier@2.8.8))
+ '@gorhom/bottom-sheet': 5.2.6(@types/react-native@0.73.0(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(@types/react@19.0.14)(react-native-gesture-handler@2.28.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@storybook/core': 8.6.14(prettier@2.8.8)(storybook@8.6.14(prettier@3.6.2))
'@storybook/csf': 0.1.13
'@storybook/global': 5.0.0
- '@storybook/react': 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@2.8.8)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@2.8.8))(typescript@5.8.2)
- '@storybook/react-native-theming': 8.6.4(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- '@storybook/react-native-ui': 8.6.4(yimge6heqi6tra3io4v7zgwvjq)
+ '@storybook/react': 8.6.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@8.6.14(prettier@3.6.2))(typescript@5.9.3)
+ '@storybook/react-native-theming': 8.6.4(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@storybook/react-native-ui': 8.6.4(phrii5q7ptpu5jccz4ex6jt3qa)
commander: 8.3.0
- dedent: 1.5.3
+ dedent: 1.7.0
deepmerge: 4.3.1
prettier: 2.8.8
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-gesture-handler: 2.25.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react-native-safe-area-context: 4.12.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react-native-url-polyfill: 2.0.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-gesture-handler: 2.28.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-safe-area-context: 5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-url-polyfill: 2.0.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))
setimmediate: 1.0.5
storybook: 8.6.14(prettier@2.8.8)
type-fest: 2.19.0
util: 0.12.5
- ws: 8.18.1
+ ws: 8.18.3
transitivePeerDependencies:
- '@storybook/test'
- babel-plugin-macros
@@ -18004,72 +16731,71 @@ snapshots:
- typescript
- utf-8-validate
- '@storybook/react-vite@9.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.40.2)(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))(typescript@5.8.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))':
+ '@storybook/react-vite@9.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(rollup@4.52.4)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.9.3)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))':
dependencies:
- '@joshwooding/vite-plugin-react-docgen-typescript': 0.6.1(typescript@5.8.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
- '@rollup/pluginutils': 5.1.4(rollup@4.40.2)
- '@storybook/builder-vite': 9.1.3(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
- '@storybook/react': 9.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))(typescript@5.8.2)
+ '@joshwooding/vite-plugin-react-docgen-typescript': 0.6.1(typescript@5.9.3)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
+ '@rollup/pluginutils': 5.3.0(rollup@4.52.4)
+ '@storybook/builder-vite': 9.1.10(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
+ '@storybook/react': 9.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.9.3)
find-up: 7.0.0
- magic-string: 0.30.17
- react: 18.3.1
- react-docgen: 8.0.0
- react-dom: 18.3.1(react@18.3.1)
+ magic-string: 0.30.19
+ react: 19.0.0
+ react-docgen: 8.0.2
+ react-dom: 19.0.0(react@19.0.0)
resolve: 1.22.10
- storybook: 9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
tsconfig-paths: 4.2.0
- vite: 6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)
+ vite: 6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)
transitivePeerDependencies:
- rollup
- supports-color
- typescript
- '@storybook/react@8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@2.8.8)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@2.8.8))(typescript@5.8.2)':
+ '@storybook/react@8.6.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@8.6.14(prettier@3.6.2))(typescript@5.9.3)':
dependencies:
- '@storybook/components': 8.6.14(storybook@8.6.14(prettier@2.8.8))
+ '@storybook/components': 8.6.14(storybook@8.6.14(prettier@3.6.2))
'@storybook/global': 5.0.0
- '@storybook/manager-api': 8.6.14(storybook@8.6.14(prettier@2.8.8))
- '@storybook/preview-api': 8.6.14(storybook@8.6.14(prettier@2.8.8))
- '@storybook/react-dom-shim': 8.6.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.14(prettier@2.8.8))
- '@storybook/theming': 8.6.14(storybook@8.6.14(prettier@2.8.8))
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@storybook/manager-api': 8.6.14(storybook@8.6.14(prettier@3.6.2))
+ '@storybook/preview-api': 8.6.14(storybook@8.6.14(prettier@3.6.2))
+ '@storybook/react-dom-shim': 8.6.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@8.6.14(prettier@3.6.2))
+ '@storybook/theming': 8.6.14(storybook@8.6.14(prettier@3.6.2))
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
storybook: 8.6.14(prettier@2.8.8)
optionalDependencies:
- '@storybook/test': 8.6.14(storybook@8.6.14(prettier@2.8.8))
- typescript: 5.8.2
+ typescript: 5.9.3
- '@storybook/react@9.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))(typescript@5.8.2)':
+ '@storybook/react@9.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.9.3)':
dependencies:
'@storybook/global': 5.0.0
- '@storybook/react-dom-shim': 9.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- storybook: 9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ '@storybook/react-dom-shim': 9.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.9.3
- '@storybook/test-runner@0.23.0(@swc/helpers@0.5.17)(@types/node@22.15.21)(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))':
+ '@storybook/test-runner@0.23.0(@swc/helpers@0.5.17)(@types/node@22.18.9)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))':
dependencies:
- '@babel/core': 7.26.10
- '@babel/generator': 7.28.0
+ '@babel/core': 7.28.4
+ '@babel/generator': 7.28.3
'@babel/template': 7.27.2
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.4
'@jest/types': 29.6.3
- '@swc/core': 1.11.13(@swc/helpers@0.5.17)
- '@swc/jest': 0.2.37(@swc/core@1.11.13(@swc/helpers@0.5.17))
+ '@swc/core': 1.13.5(@swc/helpers@0.5.17)
+ '@swc/jest': 0.2.39(@swc/core@1.13.5(@swc/helpers@0.5.17))
expect-playwright: 0.8.0
- jest: 29.7.0(@types/node@22.15.21)
+ jest: 29.7.0(@types/node@22.18.9)
jest-circus: 29.7.0
jest-environment-node: 29.7.0
jest-junit: 16.0.0
- jest-playwright-preset: 4.0.0(jest-circus@29.7.0)(jest-environment-node@29.7.0)(jest-runner@29.7.0)(jest@29.7.0(@types/node@22.15.21))
+ jest-playwright-preset: 4.0.0(jest-circus@29.7.0)(jest-environment-node@29.7.0)(jest-runner@29.7.0)(jest@29.7.0(@types/node@22.18.9))
jest-runner: 29.7.0
jest-serializer-html: 7.1.0
- jest-watch-typeahead: 2.2.2(jest@29.7.0(@types/node@22.15.21))
+ jest-watch-typeahead: 2.2.2(jest@29.7.0(@types/node@22.18.9))
nyc: 15.1.0
- playwright: 1.52.0
- storybook: 9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ playwright: 1.56.0
+ storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
transitivePeerDependencies:
- '@swc/helpers'
- '@types/node'
@@ -18079,72 +16805,60 @@ snapshots:
- supports-color
- ts-node
- '@storybook/test@8.6.14(storybook@8.6.14(prettier@2.8.8))':
- dependencies:
- '@storybook/global': 5.0.0
- '@storybook/instrumenter': 8.6.14(storybook@8.6.14(prettier@2.8.8))
- '@testing-library/dom': 10.4.0
- '@testing-library/jest-dom': 6.5.0
- '@testing-library/user-event': 14.5.2(@testing-library/dom@10.4.0)
- '@vitest/expect': 2.0.5
- '@vitest/spy': 2.0.5
- storybook: 8.6.14(prettier@2.8.8)
- optional: true
-
- '@storybook/theming@8.6.14(storybook@8.6.14(prettier@2.8.8))':
+ '@storybook/theming@8.6.14(storybook@8.6.14(prettier@3.6.2))':
dependencies:
storybook: 8.6.14(prettier@2.8.8)
- '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.26.10)':
+ '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
- '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.26.10)':
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
- '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.26.10)':
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
- '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.26.10)':
+ '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
- '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.26.10)':
+ '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
- '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.26.10)':
+ '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
- '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.26.10)':
+ '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
- '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.26.10)':
+ '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
- '@svgr/babel-preset@8.1.0(@babel/core@7.26.10)':
+ '@svgr/babel-preset@8.1.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.26.10
- '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.26.10)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.26.10)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.26.10)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.26.10)
- '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.26.10)
- '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.26.10)
- '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.26.10)
- '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.26.10)
+ '@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)
- '@svgr/cli@8.1.0(typescript@5.8.2)':
+ '@svgr/cli@8.1.0(typescript@5.9.3)':
dependencies:
- '@svgr/core': 8.1.0(typescript@5.8.2)
- '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.8.2))
- '@svgr/plugin-prettier': 8.1.0(@svgr/core@8.1.0(typescript@5.8.2))
- '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.8.2))(typescript@5.8.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
@@ -18155,12 +16869,12 @@ snapshots:
- supports-color
- typescript
- '@svgr/core@8.1.0(typescript@5.8.2)':
+ '@svgr/core@8.1.0(typescript@5.9.3)':
dependencies:
- '@babel/core': 7.26.10
- '@svgr/babel-preset': 8.1.0(@babel/core@7.26.10)
+ '@babel/core': 7.28.4
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.28.4)
camelcase: 6.3.0
- cosmiconfig: 8.3.6(typescript@5.8.2)
+ cosmiconfig: 8.3.6(typescript@5.9.3)
snake-case: 3.0.4
transitivePeerDependencies:
- supports-color
@@ -18168,79 +16882,79 @@ snapshots:
'@svgr/hast-util-to-babel-ast@8.0.0':
dependencies:
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.4
entities: 4.5.0
- '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.8.2))':
+ '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.9.3))':
dependencies:
- '@babel/core': 7.26.10
- '@svgr/babel-preset': 8.1.0(@babel/core@7.26.10)
- '@svgr/core': 8.1.0(typescript@5.8.2)
+ '@babel/core': 7.28.4
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.28.4)
+ '@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.8.2))':
+ '@svgr/plugin-prettier@8.1.0(@svgr/core@8.1.0(typescript@5.9.3))':
dependencies:
- '@svgr/core': 8.1.0(typescript@5.8.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.8.2))(typescript@5.8.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.8.2)
- cosmiconfig: 8.3.6(typescript@5.8.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
transitivePeerDependencies:
- typescript
- '@swc/core-darwin-arm64@1.11.13':
+ '@swc/core-darwin-arm64@1.13.5':
optional: true
- '@swc/core-darwin-x64@1.11.13':
+ '@swc/core-darwin-x64@1.13.5':
optional: true
- '@swc/core-linux-arm-gnueabihf@1.11.13':
+ '@swc/core-linux-arm-gnueabihf@1.13.5':
optional: true
- '@swc/core-linux-arm64-gnu@1.11.13':
+ '@swc/core-linux-arm64-gnu@1.13.5':
optional: true
- '@swc/core-linux-arm64-musl@1.11.13':
+ '@swc/core-linux-arm64-musl@1.13.5':
optional: true
- '@swc/core-linux-x64-gnu@1.11.13':
+ '@swc/core-linux-x64-gnu@1.13.5':
optional: true
- '@swc/core-linux-x64-musl@1.11.13':
+ '@swc/core-linux-x64-musl@1.13.5':
optional: true
- '@swc/core-win32-arm64-msvc@1.11.13':
+ '@swc/core-win32-arm64-msvc@1.13.5':
optional: true
- '@swc/core-win32-ia32-msvc@1.11.13':
+ '@swc/core-win32-ia32-msvc@1.13.5':
optional: true
- '@swc/core-win32-x64-msvc@1.11.13':
+ '@swc/core-win32-x64-msvc@1.13.5':
optional: true
- '@swc/core@1.11.13(@swc/helpers@0.5.17)':
+ '@swc/core@1.13.5(@swc/helpers@0.5.17)':
dependencies:
'@swc/counter': 0.1.3
- '@swc/types': 0.1.20
+ '@swc/types': 0.1.25
optionalDependencies:
- '@swc/core-darwin-arm64': 1.11.13
- '@swc/core-darwin-x64': 1.11.13
- '@swc/core-linux-arm-gnueabihf': 1.11.13
- '@swc/core-linux-arm64-gnu': 1.11.13
- '@swc/core-linux-arm64-musl': 1.11.13
- '@swc/core-linux-x64-gnu': 1.11.13
- '@swc/core-linux-x64-musl': 1.11.13
- '@swc/core-win32-arm64-msvc': 1.11.13
- '@swc/core-win32-ia32-msvc': 1.11.13
- '@swc/core-win32-x64-msvc': 1.11.13
+ '@swc/core-darwin-arm64': 1.13.5
+ '@swc/core-darwin-x64': 1.13.5
+ '@swc/core-linux-arm-gnueabihf': 1.13.5
+ '@swc/core-linux-arm64-gnu': 1.13.5
+ '@swc/core-linux-arm64-musl': 1.13.5
+ '@swc/core-linux-x64-gnu': 1.13.5
+ '@swc/core-linux-x64-musl': 1.13.5
+ '@swc/core-win32-arm64-msvc': 1.13.5
+ '@swc/core-win32-ia32-msvc': 1.13.5
+ '@swc/core-win32-x64-msvc': 1.13.5
'@swc/helpers': 0.5.17
'@swc/counter@0.1.3': {}
@@ -18249,45 +16963,33 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@swc/jest@0.2.37(@swc/core@1.11.13(@swc/helpers@0.5.17))':
+ '@swc/jest@0.2.39(@swc/core@1.13.5(@swc/helpers@0.5.17))':
dependencies:
- '@jest/create-cache-key-function': 29.7.0
- '@swc/core': 1.11.13(@swc/helpers@0.5.17)
+ '@jest/create-cache-key-function': 30.2.0
+ '@swc/core': 1.13.5(@swc/helpers@0.5.17)
'@swc/counter': 0.1.3
jsonc-parser: 3.3.1
- '@swc/types@0.1.20':
+ '@swc/types@0.1.25':
dependencies:
'@swc/counter': 0.1.3
- '@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.17)':
+ '@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.18(yaml@2.8.1))':
dependencies:
- tailwindcss: 3.4.17
+ tailwindcss: 3.4.18(yaml@2.8.1)
- '@tanstack/react-virtual@3.13.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@tanstack/react-virtual@3.13.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@tanstack/virtual-core': 3.13.12
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
'@tanstack/virtual-core@3.13.12': {}
- '@testing-library/dom@10.4.0':
- dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/runtime': 7.27.6
- '@types/aria-query': 5.0.4
- aria-query: 5.3.0
- chalk: 4.1.2
- dom-accessibility-api: 0.5.16
- lz-string: 1.5.0
- pretty-format: 27.5.1
- optional: true
-
'@testing-library/dom@10.4.1':
dependencies:
'@babel/code-frame': 7.27.1
- '@babel/runtime': 7.27.6
+ '@babel/runtime': 7.28.4
'@types/aria-query': 5.0.4
aria-query: 5.3.0
dom-accessibility-api: 0.5.16
@@ -18295,310 +16997,293 @@ snapshots:
picocolors: 1.1.1
pretty-format: 27.5.1
- '@testing-library/jest-dom@6.5.0':
+ '@testing-library/jest-dom@6.9.1':
dependencies:
- '@adobe/css-tools': 4.4.3
+ '@adobe/css-tools': 4.4.4
aria-query: 5.3.2
- chalk: 3.0.0
css.escape: 1.5.1
dom-accessibility-api: 0.6.3
- lodash: 4.17.21
- redent: 3.0.0
- optional: true
-
- '@testing-library/jest-dom@6.6.3':
- dependencies:
- '@adobe/css-tools': 4.4.3
- aria-query: 5.3.2
- chalk: 3.0.0
- css.escape: 1.5.1
- dom-accessibility-api: 0.6.3
- lodash: 4.17.21
+ picocolors: 1.1.1
redent: 3.0.0
- '@testing-library/react-native@12.9.0(jest@29.7.0(@types/node@22.15.21))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react-test-renderer@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@testing-library/react-native@12.9.0(jest@29.7.0(@types/node@22.18.9))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react-test-renderer@19.2.0(react@19.0.0))(react@19.0.0)':
dependencies:
jest-matcher-utils: 29.7.0
pretty-format: 29.7.0
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-test-renderer: 18.3.1(react@18.3.1)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-test-renderer: 19.2.0(react@19.0.0)
redent: 3.0.0
optionalDependencies:
- jest: 29.7.0(@types/node@22.15.21)
+ jest: 29.7.0(@types/node@22.18.9)
- '@testing-library/react@16.2.0(@testing-library/dom@10.4.1)(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@testing-library/react@16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.27.6
+ '@babel/runtime': 7.28.4
'@testing-library/dom': 10.4.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- '@types/react-dom': 18.3.5(@types/react@18.3.18)
-
- '@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)':
- dependencies:
- '@testing-library/dom': 10.4.0
- optional: true
+ '@types/react': 19.0.14
+ '@types/react-dom': 18.3.7(@types/react@19.0.14)
'@testing-library/user-event@14.6.1(@testing-library/dom@10.4.1)':
dependencies:
'@testing-library/dom': 10.4.1
- '@tiptap/core@2.24.0(@tiptap/pm@2.24.0)':
+ '@tiptap/core@2.26.3(@tiptap/pm@2.26.3)':
dependencies:
- '@tiptap/pm': 2.24.0
+ '@tiptap/pm': 2.26.3
- '@tiptap/extension-blockquote@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-blockquote@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-bold@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-bold@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-bubble-menu@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)':
+ '@tiptap/extension-bubble-menu@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
tippy.js: 6.3.7
- '@tiptap/extension-bullet-list@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-bullet-list@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-character-count@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)':
+ '@tiptap/extension-character-count@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
- '@tiptap/extension-code-block@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)':
+ '@tiptap/extension-code-block@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
- '@tiptap/extension-code@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-code@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-collaboration@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(y-prosemirror@1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))':
+ '@tiptap/extension-collaboration@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(y-prosemirror@1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
- y-prosemirror: 1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
+ y-prosemirror: 1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)
- '@tiptap/extension-color@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/extension-text-style@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0)))':
+ '@tiptap/extension-color@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/extension-text-style@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3)))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/extension-text-style': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/extension-text-style': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
- '@tiptap/extension-details-content@2.23.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/extension-text-style@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0)))':
+ '@tiptap/extension-details-content@2.26.2(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/extension-text-style@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3)))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/extension-text-style': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/extension-text-style': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
- '@tiptap/extension-details-summary@2.23.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/extension-text-style@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0)))':
+ '@tiptap/extension-details-summary@2.26.2(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/extension-text-style@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3)))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/extension-text-style': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/extension-text-style': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
- '@tiptap/extension-details@2.23.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/extension-text-style@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0)))':
+ '@tiptap/extension-details@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/extension-text-style@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3)))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/extension-text-style': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/extension-text-style': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
- '@tiptap/extension-document@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-document@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-drag-handle-react@2.24.0(@tiptap/extension-drag-handle@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/extension-collaboration@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(y-prosemirror@1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/extension-node-range@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(y-prosemirror@1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/pm@2.24.0)(@tiptap/react@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@tiptap/extension-drag-handle-react@2.26.3(@tiptap/extension-drag-handle@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/extension-collaboration@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(y-prosemirror@1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/extension-node-range@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(y-prosemirror@1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/pm@2.26.3)(@tiptap/react@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@tiptap/extension-drag-handle': 2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/extension-collaboration@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(y-prosemirror@1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/extension-node-range@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(y-prosemirror@1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))
- '@tiptap/pm': 2.24.0
- '@tiptap/react': 2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@tiptap/extension-drag-handle': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/extension-collaboration@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(y-prosemirror@1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/extension-node-range@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(y-prosemirror@1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))
+ '@tiptap/pm': 2.26.3
+ '@tiptap/react': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@tiptap/extension-drag-handle@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/extension-collaboration@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(y-prosemirror@1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/extension-node-range@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(y-prosemirror@1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))':
+ '@tiptap/extension-drag-handle@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/extension-collaboration@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(y-prosemirror@1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/extension-node-range@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(y-prosemirror@1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/extension-collaboration': 2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(y-prosemirror@1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))
- '@tiptap/extension-node-range': 2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/extension-collaboration': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(y-prosemirror@1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))
+ '@tiptap/extension-node-range': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
tippy.js: 6.3.7
- y-prosemirror: 1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)
+ y-prosemirror: 1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)
- '@tiptap/extension-dropcursor@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)':
+ '@tiptap/extension-dropcursor@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
- '@tiptap/extension-floating-menu@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)':
+ '@tiptap/extension-floating-menu@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
tippy.js: 6.3.7
- '@tiptap/extension-gapcursor@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)':
+ '@tiptap/extension-gapcursor@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
- '@tiptap/extension-hard-break@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-hard-break@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-heading@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-heading@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-highlight@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-highlight@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-history@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)':
+ '@tiptap/extension-history@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
- '@tiptap/extension-horizontal-rule@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)':
+ '@tiptap/extension-horizontal-rule@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
- '@tiptap/extension-italic@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-italic@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-link@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)':
+ '@tiptap/extension-link@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
- linkifyjs: 4.2.0
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
+ linkifyjs: 4.3.2
- '@tiptap/extension-list-item@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-list-item@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-mention@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(@tiptap/suggestion@2.12.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-mention@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(@tiptap/suggestion@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
- '@tiptap/suggestion': 2.12.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
+ '@tiptap/suggestion': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
- '@tiptap/extension-node-range@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)':
+ '@tiptap/extension-node-range@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
- '@tiptap/extension-ordered-list@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-ordered-list@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-paragraph@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-paragraph@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-placeholder@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)':
+ '@tiptap/extension-placeholder@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
- '@tiptap/extension-strike@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-strike@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-task-item@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)':
+ '@tiptap/extension-task-item@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
- '@tiptap/extension-task-list@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-task-list@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-text-align@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-text-align@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-text-style@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-text-style@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-text@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-text@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-typography@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-typography@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/extension-underline@2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))':
+ '@tiptap/extension-underline@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
- '@tiptap/pm@2.24.0':
+ '@tiptap/pm@2.26.3':
dependencies:
prosemirror-changeset: 2.3.1
prosemirror-collab: 1.3.1
- prosemirror-commands: 1.7.0
- prosemirror-dropcursor: 1.8.1
+ prosemirror-commands: 1.7.1
+ prosemirror-dropcursor: 1.8.2
prosemirror-gapcursor: 1.3.2
prosemirror-history: 1.4.1
prosemirror-inputrules: 1.5.0
- prosemirror-keymap: 1.2.2
+ prosemirror-keymap: 1.2.3
prosemirror-markdown: 1.13.2
- prosemirror-menu: 1.2.4
- prosemirror-model: 1.25.0
+ prosemirror-menu: 1.2.5
+ prosemirror-model: 1.25.3
prosemirror-schema-basic: 1.2.4
prosemirror-schema-list: 1.5.1
prosemirror-state: 1.4.3
- prosemirror-tables: 1.6.4
- prosemirror-trailing-node: 3.0.0(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)
- prosemirror-transform: 1.10.3
- prosemirror-view: 1.38.1
+ prosemirror-tables: 1.8.1
+ prosemirror-trailing-node: 3.0.0(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)
+ prosemirror-transform: 1.10.4
+ prosemirror-view: 1.41.3
- '@tiptap/react@2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@tiptap/react@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/extension-bubble-menu': 2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
- '@tiptap/extension-floating-menu': 2.24.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/extension-bubble-menu': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
+ '@tiptap/extension-floating-menu': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
'@types/use-sync-external-store': 0.0.6
fast-deep-equal: 3.1.3
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- use-sync-external-store: 1.5.0(react@18.3.1)
-
- '@tiptap/starter-kit@2.11.7':
- dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/extension-blockquote': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
- '@tiptap/extension-bold': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
- '@tiptap/extension-bullet-list': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
- '@tiptap/extension-code': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
- '@tiptap/extension-code-block': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
- '@tiptap/extension-document': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
- '@tiptap/extension-dropcursor': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
- '@tiptap/extension-gapcursor': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
- '@tiptap/extension-hard-break': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
- '@tiptap/extension-heading': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
- '@tiptap/extension-history': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
- '@tiptap/extension-horizontal-rule': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)
- '@tiptap/extension-italic': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
- '@tiptap/extension-list-item': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
- '@tiptap/extension-ordered-list': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
- '@tiptap/extension-paragraph': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
- '@tiptap/extension-strike': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
- '@tiptap/extension-text': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
- '@tiptap/extension-text-style': 2.11.7(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))
- '@tiptap/pm': 2.24.0
-
- '@tiptap/suggestion@2.12.0(@tiptap/core@2.24.0(@tiptap/pm@2.24.0))(@tiptap/pm@2.24.0)':
- dependencies:
- '@tiptap/core': 2.24.0(@tiptap/pm@2.24.0)
- '@tiptap/pm': 2.24.0
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ use-sync-external-store: 1.6.0(react@19.0.0)
+
+ '@tiptap/starter-kit@2.26.3':
+ dependencies:
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/extension-blockquote': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
+ '@tiptap/extension-bold': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
+ '@tiptap/extension-bullet-list': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
+ '@tiptap/extension-code': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
+ '@tiptap/extension-code-block': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
+ '@tiptap/extension-document': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
+ '@tiptap/extension-dropcursor': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
+ '@tiptap/extension-gapcursor': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
+ '@tiptap/extension-hard-break': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
+ '@tiptap/extension-heading': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
+ '@tiptap/extension-history': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
+ '@tiptap/extension-horizontal-rule': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
+ '@tiptap/extension-italic': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
+ '@tiptap/extension-list-item': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
+ '@tiptap/extension-ordered-list': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
+ '@tiptap/extension-paragraph': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
+ '@tiptap/extension-strike': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
+ '@tiptap/extension-text': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
+ '@tiptap/extension-text-style': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))
+ '@tiptap/pm': 2.26.3
+
+ '@tiptap/suggestion@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)':
+ dependencies:
+ '@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
+ '@tiptap/pm': 2.26.3
'@tokenizer/token@0.3.0': {}
@@ -18612,24 +17297,24 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.28.0
- '@babel/types': 7.28.0
- '@types/babel__generator': 7.6.8
+ '@babel/parser': 7.28.4
+ '@babel/types': 7.28.4
+ '@types/babel__generator': 7.27.0
'@types/babel__template': 7.4.4
- '@types/babel__traverse': 7.20.7
+ '@types/babel__traverse': 7.28.0
- '@types/babel__generator@7.6.8':
+ '@types/babel__generator@7.27.0':
dependencies:
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.4
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/parser': 7.28.4
+ '@babel/types': 7.28.4
- '@types/babel__traverse@7.20.7':
+ '@types/babel__traverse@7.28.0':
dependencies:
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.4
'@types/canvas-confetti@1.9.0': {}
@@ -18639,12 +17324,9 @@ snapshots:
'@types/conventional-commits-parser@5.0.1':
dependencies:
- '@types/node': 22.15.21
-
- '@types/cookie@0.6.0':
- optional: true
+ '@types/node': 22.18.9
- '@types/d3-array@3.2.1': {}
+ '@types/d3-array@3.2.2': {}
'@types/d3-color@3.1.3': {}
@@ -18654,15 +17336,15 @@ snapshots:
dependencies:
'@types/d3-color': 3.1.3
- '@types/d3-path@3.1.0': {}
+ '@types/d3-path@3.1.1': {}
- '@types/d3-scale@4.0.8':
+ '@types/d3-scale@4.0.9':
dependencies:
'@types/d3-time': 3.0.4
'@types/d3-shape@3.1.7':
dependencies:
- '@types/d3-path': 3.1.0
+ '@types/d3-path': 3.1.1
'@types/d3-time@3.0.4': {}
@@ -18676,27 +17358,15 @@ snapshots:
'@types/doctrine@0.0.9': {}
- '@types/eslint-scope@3.7.7':
- dependencies:
- '@types/eslint': 9.6.1
- '@types/estree': 1.0.8
-
- '@types/eslint@9.6.1':
- dependencies:
- '@types/estree': 1.0.8
- '@types/json-schema': 7.0.15
-
'@types/estree-jsx@1.0.5':
dependencies:
'@types/estree': 1.0.8
- '@types/estree@1.0.7': {}
-
'@types/estree@1.0.8': {}
'@types/graceful-fs@4.1.9':
dependencies:
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
'@types/hammerjs@2.0.46': {}
@@ -18731,7 +17401,7 @@ snapshots:
'@types/linkify-it@5.0.0': {}
- '@types/lodash@4.17.16': {}
+ '@types/lodash@4.17.20': {}
'@types/markdown-it@14.1.2':
dependencies:
@@ -18752,59 +17422,50 @@ snapshots:
'@types/ms@2.1.0': {}
- '@types/node-fetch@2.6.12':
- dependencies:
- '@types/node': 22.15.21
- form-data: 4.0.2
-
- '@types/node-forge@1.3.11':
+ '@types/node-fetch@2.6.13':
dependencies:
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
+ form-data: 4.0.4
- '@types/node@18.19.118':
+ '@types/node@18.19.130':
dependencies:
undici-types: 5.26.5
- '@types/node@22.15.21':
+ '@types/node@22.18.9':
dependencies:
undici-types: 6.21.0
- '@types/prop-types@15.7.14': {}
+ '@types/prop-types@15.7.15': {}
- '@types/react-dom@18.3.5(@types/react@18.3.18)':
+ '@types/react-dom@18.3.7(@types/react@19.0.14)':
dependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- '@types/react-native@0.73.0(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)':
+ '@types/react-native@0.73.0(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)':
dependencies:
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
transitivePeerDependencies:
- '@babel/core'
- - '@babel/preset-env'
- '@react-native-community/cli'
- '@types/react'
- bufferutil
- - encoding
- react
- supports-color
- utf-8-validate
+ optional: true
- '@types/react@18.3.18':
+ '@types/react@19.0.14':
dependencies:
- '@types/prop-types': 15.7.14
csstype: 3.1.3
'@types/resolve@1.20.6': {}
'@types/retry@0.12.0': {}
- '@types/semver@7.7.0': {}
+ '@types/semver@7.7.1': {}
'@types/stack-utils@2.0.3': {}
- '@types/statuses@2.0.6':
- optional: true
-
'@types/tough-cookie@4.0.5': {}
'@types/trusted-types@2.0.7':
@@ -18822,11 +17483,11 @@ snapshots:
'@types/uuid@9.0.8': {}
- '@types/validator@13.15.2': {}
+ '@types/validator@13.15.3': {}
'@types/wait-on@5.3.4':
dependencies:
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
'@types/yargs-parser@21.0.3': {}
@@ -18836,182 +17497,164 @@ snapshots:
'@types/yauzl@2.10.3':
dependencies:
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
optional: true
'@types/zen-observable@0.8.3': {}
- '@typescript-eslint/eslint-plugin@8.32.1(@typescript-eslint/parser@8.32.1(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/eslint-plugin@8.46.0(@typescript-eslint/parser@8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.32.1(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/scope-manager': 8.32.1
- '@typescript-eslint/type-utils': 8.32.1(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/utils': 8.32.1(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/visitor-keys': 8.32.1
- eslint: 9.27.0(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.46.0
+ '@typescript-eslint/type-utils': 8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.46.0
+ eslint: 9.37.0(jiti@2.6.1)
graphemer: 1.4.0
- ignore: 7.0.4
+ ignore: 7.0.5
natural-compare: 1.4.0
- ts-api-utils: 2.1.0(typescript@5.8.2)
- typescript: 5.8.2
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.32.1(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/parser@8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.32.1
- '@typescript-eslint/types': 8.32.1
- '@typescript-eslint/typescript-estree': 8.32.1(typescript@5.8.2)
- '@typescript-eslint/visitor-keys': 8.32.1
- debug: 4.4.1
- eslint: 9.27.0(jiti@2.4.2)
- typescript: 5.8.2
+ '@typescript-eslint/scope-manager': 8.46.0
+ '@typescript-eslint/types': 8.46.0
+ '@typescript-eslint/typescript-estree': 8.46.0(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.46.0
+ debug: 4.4.3
+ eslint: 9.37.0(jiti@2.6.1)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/project-service@8.46.0(typescript@5.9.3)':
+ dependencies:
+ '@typescript-eslint/tsconfig-utils': 8.46.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.46.0
+ debug: 4.4.3
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.32.1':
+ '@typescript-eslint/scope-manager@8.46.0':
dependencies:
- '@typescript-eslint/types': 8.32.1
- '@typescript-eslint/visitor-keys': 8.32.1
+ '@typescript-eslint/types': 8.46.0
+ '@typescript-eslint/visitor-keys': 8.46.0
- '@typescript-eslint/type-utils@8.32.1(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/tsconfig-utils@8.46.0(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.32.1(typescript@5.8.2)
- '@typescript-eslint/utils': 8.32.1(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.2)
- debug: 4.4.1
- eslint: 9.27.0(jiti@2.4.2)
- ts-api-utils: 2.1.0(typescript@5.8.2)
- typescript: 5.8.2
+ typescript: 5.9.3
+
+ '@typescript-eslint/type-utils@8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
+ dependencies:
+ '@typescript-eslint/types': 8.46.0
+ '@typescript-eslint/typescript-estree': 8.46.0(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ debug: 4.4.3
+ eslint: 9.37.0(jiti@2.6.1)
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@8.32.1': {}
+ '@typescript-eslint/types@8.46.0': {}
- '@typescript-eslint/typescript-estree@8.32.1(typescript@5.8.2)':
+ '@typescript-eslint/typescript-estree@8.46.0(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/types': 8.32.1
- '@typescript-eslint/visitor-keys': 8.32.1
- debug: 4.4.1
+ '@typescript-eslint/project-service': 8.46.0(typescript@5.9.3)
+ '@typescript-eslint/tsconfig-utils': 8.46.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.46.0
+ '@typescript-eslint/visitor-keys': 8.46.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.8.2)
- typescript: 5.8.2
+ semver: 7.7.3
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.32.1(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/utils@8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.27.0(jiti@2.4.2))
- '@typescript-eslint/scope-manager': 8.32.1
- '@typescript-eslint/types': 8.32.1
- '@typescript-eslint/typescript-estree': 8.32.1(typescript@5.8.2)
- eslint: 9.27.0(jiti@2.4.2)
- typescript: 5.8.2
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.6.1))
+ '@typescript-eslint/scope-manager': 8.46.0
+ '@typescript-eslint/types': 8.46.0
+ '@typescript-eslint/typescript-estree': 8.46.0(typescript@5.9.3)
+ eslint: 9.37.0(jiti@2.6.1)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.32.1':
+ '@typescript-eslint/visitor-keys@8.46.0':
dependencies:
- '@typescript-eslint/types': 8.32.1
- eslint-visitor-keys: 4.2.0
+ '@typescript-eslint/types': 8.46.0
+ eslint-visitor-keys: 4.2.1
'@ungap/structured-clone@1.3.0': {}
- '@urql/core@5.1.1(graphql@16.11.0)':
+ '@urql/core@5.2.0(graphql@16.11.0)':
dependencies:
- '@0no-co/graphql.web': 1.1.2(graphql@16.11.0)
+ '@0no-co/graphql.web': 1.2.0(graphql@16.11.0)
wonka: 6.3.5
transitivePeerDependencies:
- graphql
- '@urql/exchange-retry@1.3.1(@urql/core@5.1.1(graphql@16.11.0))':
+ '@urql/exchange-retry@1.3.2(@urql/core@5.2.0(graphql@16.11.0))':
dependencies:
- '@urql/core': 5.1.1(graphql@16.11.0)
+ '@urql/core': 5.2.0(graphql@16.11.0)
wonka: 6.3.5
- '@vitejs/plugin-react@4.3.4(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))':
+ '@vitejs/plugin-react@4.7.0(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))':
dependencies:
- '@babel/core': 7.26.10
- '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10)
+ '@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)
+ '@rolldown/pluginutils': 1.0.0-beta.27
'@types/babel__core': 7.20.5
- react-refresh: 0.14.2
- vite: 6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)
+ react-refresh: 0.17.0
+ vite: 6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)
transitivePeerDependencies:
- supports-color
- '@vitest/coverage-v8@3.2.4(vitest@3.0.7)':
+ '@vitest/coverage-v8@3.2.4(vitest@3.2.4)':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 1.0.2
- ast-v8-to-istanbul: 0.3.4
- debug: 4.4.1
+ ast-v8-to-istanbul: 0.3.5
+ debug: 4.4.3
istanbul-lib-coverage: 3.2.2
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 5.0.6
- istanbul-reports: 3.1.7
- magic-string: 0.30.17
+ istanbul-reports: 3.2.0
+ magic-string: 0.30.19
magicast: 0.3.5
std-env: 3.9.0
test-exclude: 7.0.1
tinyrainbow: 2.0.0
- vitest: 3.0.7(@types/debug@4.1.12)(@types/node@22.15.21)(@vitest/ui@3.0.7)(jiti@2.4.2)(jsdom@26.0.0)(lightningcss@1.29.2)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(terser@5.43.1)(yaml@2.7.0)
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(@vitest/ui@3.0.7)(jiti@2.6.1)(jsdom@26.1.0)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)
transitivePeerDependencies:
- supports-color
- '@vitest/expect@2.0.5':
- dependencies:
- '@vitest/spy': 2.0.5
- '@vitest/utils': 2.0.5
- chai: 5.2.0
- tinyrainbow: 1.2.0
- optional: true
-
- '@vitest/expect@3.0.7':
- dependencies:
- '@vitest/spy': 3.0.7
- '@vitest/utils': 3.0.7
- chai: 5.2.0
- tinyrainbow: 2.0.0
-
'@vitest/expect@3.2.4':
dependencies:
'@types/chai': 5.2.2
'@vitest/spy': 3.2.4
'@vitest/utils': 3.2.4
- chai: 5.2.0
+ chai: 5.3.3
tinyrainbow: 2.0.0
- '@vitest/mocker@3.0.7(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))':
- dependencies:
- '@vitest/spy': 3.0.7
- estree-walker: 3.0.3
- magic-string: 0.30.17
- optionalDependencies:
- msw: 2.10.4(@types/node@22.15.21)(typescript@5.8.2)
- vite: 6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)
-
- '@vitest/mocker@3.2.4(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))':
+ '@vitest/mocker@3.2.4(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))':
dependencies:
'@vitest/spy': 3.2.4
estree-walker: 3.0.3
- magic-string: 0.30.17
+ magic-string: 0.30.19
optionalDependencies:
- msw: 2.10.4(@types/node@22.15.21)(typescript@5.8.2)
- vite: 6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)
-
- '@vitest/pretty-format@2.0.5':
- dependencies:
- tinyrainbow: 1.2.0
- optional: true
-
- '@vitest/pretty-format@2.1.9':
- dependencies:
- tinyrainbow: 1.2.0
- optional: true
+ vite: 6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)
'@vitest/pretty-format@3.0.7':
dependencies:
@@ -19021,199 +17664,100 @@ snapshots:
dependencies:
tinyrainbow: 2.0.0
- '@vitest/runner@3.0.7':
+ '@vitest/runner@3.2.4':
dependencies:
- '@vitest/utils': 3.0.7
+ '@vitest/utils': 3.2.4
pathe: 2.0.3
+ strip-literal: 3.1.0
- '@vitest/snapshot@3.0.7':
+ '@vitest/snapshot@3.2.4':
dependencies:
- '@vitest/pretty-format': 3.0.7
- magic-string: 0.30.17
+ '@vitest/pretty-format': 3.2.4
+ magic-string: 0.30.19
pathe: 2.0.3
- '@vitest/spy@2.0.5':
- dependencies:
- tinyspy: 3.0.2
- optional: true
-
- '@vitest/spy@3.0.7':
- dependencies:
- tinyspy: 3.0.2
-
'@vitest/spy@3.2.4':
dependencies:
- tinyspy: 4.0.3
+ tinyspy: 4.0.4
- '@vitest/ui@3.0.7(vitest@3.0.7)':
+ '@vitest/ui@3.0.7(vitest@3.2.4)':
dependencies:
'@vitest/utils': 3.0.7
fflate: 0.8.2
flatted: 3.3.3
pathe: 2.0.3
- sirv: 3.0.1
- tinyglobby: 0.2.13
+ sirv: 3.0.2
+ tinyglobby: 0.2.15
tinyrainbow: 2.0.0
- vitest: 3.0.7(@types/debug@4.1.12)(@types/node@22.15.21)(@vitest/ui@3.0.7)(jiti@2.4.2)(jsdom@26.0.0)(lightningcss@1.29.2)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(terser@5.43.1)(yaml@2.7.0)
-
- '@vitest/utils@2.0.5':
- dependencies:
- '@vitest/pretty-format': 2.0.5
- estree-walker: 3.0.3
- loupe: 3.1.4
- tinyrainbow: 1.2.0
- optional: true
-
- '@vitest/utils@2.1.9':
- dependencies:
- '@vitest/pretty-format': 2.1.9
- loupe: 3.1.4
- tinyrainbow: 1.2.0
- optional: true
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(@vitest/ui@3.0.7)(jiti@2.6.1)(jsdom@26.1.0)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)
'@vitest/utils@3.0.7':
dependencies:
'@vitest/pretty-format': 3.0.7
- loupe: 3.1.4
+ loupe: 3.2.1
tinyrainbow: 2.0.0
'@vitest/utils@3.2.4':
dependencies:
'@vitest/pretty-format': 3.2.4
- loupe: 3.1.4
+ loupe: 3.2.1
tinyrainbow: 2.0.0
- '@volar/language-core@2.4.11':
+ '@volar/language-core@2.4.23':
dependencies:
- '@volar/source-map': 2.4.11
+ '@volar/source-map': 2.4.23
- '@volar/source-map@2.4.11': {}
+ '@volar/source-map@2.4.23': {}
- '@volar/typescript@2.4.11':
+ '@volar/typescript@2.4.23':
dependencies:
- '@volar/language-core': 2.4.11
+ '@volar/language-core': 2.4.23
path-browserify: 1.0.1
- vscode-uri: 3.0.8
+ vscode-uri: 3.1.0
- '@vue/compiler-core@3.5.13':
+ '@vue/compiler-core@3.5.22':
dependencies:
- '@babel/parser': 7.28.0
- '@vue/shared': 3.5.13
+ '@babel/parser': 7.28.4
+ '@vue/shared': 3.5.22
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.1
- '@vue/compiler-dom@3.5.13':
+ '@vue/compiler-dom@3.5.22':
dependencies:
- '@vue/compiler-core': 3.5.13
- '@vue/shared': 3.5.13
+ '@vue/compiler-core': 3.5.22
+ '@vue/shared': 3.5.22
'@vue/compiler-vue2@2.7.16':
dependencies:
de-indent: 1.0.2
he: 1.2.0
- '@vue/language-core@2.1.6(typescript@5.8.2)':
+ '@vue/language-core@2.1.6(typescript@5.9.3)':
dependencies:
- '@volar/language-core': 2.4.11
- '@vue/compiler-dom': 3.5.13
+ '@volar/language-core': 2.4.23
+ '@vue/compiler-dom': 3.5.22
'@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.5.13
+ '@vue/shared': 3.5.22
computeds: 0.0.1
minimatch: 9.0.5
muggle-string: 0.4.1
path-browserify: 1.0.1
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.9.3
- '@vue/shared@3.5.13': {}
+ '@vue/shared@3.5.22': {}
- '@vueless/storybook-dark-mode@9.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@vueless/storybook-dark-mode@9.0.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@storybook/global': 5.0.0
- '@storybook/icons': 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/icons': 1.6.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
fast-deep-equal: 3.1.3
memoizerific: 1.11.3
transitivePeerDependencies:
- react
- react-dom
- '@webassemblyjs/ast@1.14.1':
- dependencies:
- '@webassemblyjs/helper-numbers': 1.13.2
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
-
- '@webassemblyjs/floating-point-hex-parser@1.13.2': {}
-
- '@webassemblyjs/helper-api-error@1.13.2': {}
-
- '@webassemblyjs/helper-buffer@1.14.1': {}
-
- '@webassemblyjs/helper-numbers@1.13.2':
- dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.13.2
- '@webassemblyjs/helper-api-error': 1.13.2
- '@xtuc/long': 4.2.2
-
- '@webassemblyjs/helper-wasm-bytecode@1.13.2': {}
-
- '@webassemblyjs/helper-wasm-section@1.14.1':
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-buffer': 1.14.1
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/wasm-gen': 1.14.1
-
- '@webassemblyjs/ieee754@1.13.2':
- dependencies:
- '@xtuc/ieee754': 1.2.0
-
- '@webassemblyjs/leb128@1.13.2':
- dependencies:
- '@xtuc/long': 4.2.2
-
- '@webassemblyjs/utf8@1.13.2': {}
-
- '@webassemblyjs/wasm-edit@1.14.1':
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-buffer': 1.14.1
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/helper-wasm-section': 1.14.1
- '@webassemblyjs/wasm-gen': 1.14.1
- '@webassemblyjs/wasm-opt': 1.14.1
- '@webassemblyjs/wasm-parser': 1.14.1
- '@webassemblyjs/wast-printer': 1.14.1
-
- '@webassemblyjs/wasm-gen@1.14.1':
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/ieee754': 1.13.2
- '@webassemblyjs/leb128': 1.13.2
- '@webassemblyjs/utf8': 1.13.2
-
- '@webassemblyjs/wasm-opt@1.14.1':
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-buffer': 1.14.1
- '@webassemblyjs/wasm-gen': 1.14.1
- '@webassemblyjs/wasm-parser': 1.14.1
-
- '@webassemblyjs/wasm-parser@1.14.1':
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-api-error': 1.13.2
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/ieee754': 1.13.2
- '@webassemblyjs/leb128': 1.13.2
- '@webassemblyjs/utf8': 1.13.2
-
- '@webassemblyjs/wast-printer@1.14.1':
- dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@xtuc/long': 4.2.2
-
'@whatwg-node/disposablestack@0.0.6':
dependencies:
'@whatwg-node/promise-helpers': 1.3.2
@@ -19223,14 +17767,14 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@whatwg-node/fetch@0.10.8':
+ '@whatwg-node/fetch@0.10.11':
dependencies:
- '@whatwg-node/node-fetch': 0.7.21
+ '@whatwg-node/node-fetch': 0.8.1
urlpattern-polyfill: 10.1.0
- '@whatwg-node/node-fetch@0.7.21':
+ '@whatwg-node/node-fetch@0.8.1':
dependencies:
- '@fastify/busboy': 3.1.1
+ '@fastify/busboy': 3.2.0
'@whatwg-node/disposablestack': 0.0.6
'@whatwg-node/promise-helpers': 1.3.2
tslib: 2.8.1
@@ -19239,21 +17783,15 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@whatwg-node/server@0.10.10':
+ '@whatwg-node/server@0.10.13':
dependencies:
'@envelop/instrumentation': 1.0.0
'@whatwg-node/disposablestack': 0.0.6
- '@whatwg-node/fetch': 0.10.8
+ '@whatwg-node/fetch': 0.10.11
'@whatwg-node/promise-helpers': 1.3.2
tslib: 2.8.1
- '@xmldom/xmldom@0.7.13': {}
-
- '@xmldom/xmldom@0.8.10': {}
-
- '@xtuc/ieee754@1.2.0': {}
-
- '@xtuc/long@4.2.2': {}
+ '@xmldom/xmldom@0.8.11': {}
JSONStream@1.3.5:
dependencies:
@@ -19279,11 +17817,11 @@ snapshots:
agent-base@6.0.2:
dependencies:
- debug: 4.4.1
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
- agent-base@7.1.3: {}
+ agent-base@7.1.4: {}
agentkeepalive@4.6.0:
dependencies:
@@ -19298,23 +17836,10 @@ snapshots:
optionalDependencies:
ajv: 8.13.0
- ajv-formats@2.1.1(ajv@8.17.1):
- optionalDependencies:
- ajv: 8.17.1
-
ajv-formats@3.0.1(ajv@8.13.0):
optionalDependencies:
ajv: 8.13.0
- ajv-keywords@3.5.2(ajv@6.12.6):
- dependencies:
- ajv: 6.12.6
-
- ajv-keywords@5.1.0(ajv@8.17.1):
- dependencies:
- ajv: 8.17.1
- fast-deep-equal: 3.1.3
-
ajv@6.12.6:
dependencies:
fast-deep-equal: 3.1.3
@@ -19339,7 +17864,7 @@ snapshots:
ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
- fast-uri: 3.0.6
+ fast-uri: 3.1.0
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
@@ -19355,7 +17880,7 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.1.0: {}
+ ansi-regex@6.2.2: {}
ansi-styles@3.2.1:
dependencies:
@@ -19367,7 +17892,7 @@ snapshots:
ansi-styles@5.2.0: {}
- ansi-styles@6.2.1: {}
+ ansi-styles@6.2.3: {}
any-promise@1.3.0: {}
@@ -19380,8 +17905,6 @@ snapshots:
dependencies:
default-require-extensions: 3.0.1
- application-config-path@0.1.1: {}
-
archy@1.0.0: {}
arg@5.0.2: {}
@@ -19411,24 +17934,24 @@ snapshots:
array-ify@1.0.0: {}
- array-includes@3.1.8:
+ array-includes@3.1.9:
dependencies:
call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
es-object-atoms: 1.1.1
get-intrinsic: 1.3.0
is-string: 1.1.1
+ math-intrinsics: 1.1.0
array-timsort@1.0.3: {}
- 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.23.9
+ es-abstract: 1.24.0
es-errors: 1.3.0
es-object-atoms: 1.1.1
es-shim-unscopables: 1.1.0
@@ -19437,21 +17960,21 @@ snapshots:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
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.23.9
+ es-abstract: 1.24.0
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.23.9
+ es-abstract: 1.24.0
es-errors: 1.3.0
es-shim-unscopables: 1.1.0
@@ -19460,7 +17983,7 @@ snapshots:
array-buffer-byte-length: 1.0.2
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
es-errors: 1.3.0
get-intrinsic: 1.3.0
is-array-buffer: 3.0.5
@@ -19475,17 +17998,13 @@ snapshots:
dependencies:
tslib: 2.8.1
- ast-types@0.15.2:
- dependencies:
- tslib: 2.8.1
-
ast-types@0.16.1:
dependencies:
tslib: 2.8.1
- ast-v8-to-istanbul@0.3.4:
+ ast-v8-to-istanbul@0.3.5:
dependencies:
- '@jridgewell/trace-mapping': 0.3.29
+ '@jridgewell/trace-mapping': 0.3.31
estree-walker: 3.0.3
js-tokens: 9.0.1
@@ -19495,90 +18014,65 @@ snapshots:
async-limiter@1.0.1: {}
- async@2.6.4:
- dependencies:
- lodash: 4.17.21
+ async@3.2.6: {}
asynckit@0.4.0: {}
- at-least-node@1.0.0: {}
-
atomic-sleep@1.0.0: {}
- autoprefixer@10.4.21(postcss@8.5.3):
+ autoprefixer@10.4.21(postcss@8.5.6):
dependencies:
- browserslist: 4.25.1
- caniuse-lite: 1.0.30001726
+ browserslist: 4.26.3
+ caniuse-lite: 1.0.30001749
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
- postcss: 8.5.3
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
available-typed-arrays@1.0.7:
dependencies:
possible-typed-array-names: 1.1.0
- axe-core@4.10.3: {}
+ axe-core@4.11.0: {}
- axe-html-reporter@2.2.11(axe-core@4.10.3):
+ axe-html-reporter@2.2.11(axe-core@4.11.0):
dependencies:
- axe-core: 4.10.3
+ axe-core: 4.11.0
mustache: 4.2.0
- axe-playwright@2.1.0(playwright@1.52.0):
+ axe-playwright@2.2.2(playwright@1.56.0):
dependencies:
'@types/junit-report-builder': 3.0.2
- axe-core: 4.10.3
- axe-html-reporter: 2.2.11(axe-core@4.10.3)
+ axe-core: 4.11.0
+ axe-html-reporter: 2.2.11(axe-core@4.11.0)
junit-report-builder: 5.1.1
picocolors: 1.1.1
- playwright: 1.52.0
-
- axios@1.8.4:
- dependencies:
- follow-redirects: 1.15.9
- form-data: 4.0.2
- proxy-from-env: 1.1.0
- transitivePeerDependencies:
- - debug
+ playwright: 1.56.0
- axios@1.8.4(debug@4.4.1):
+ axios@1.12.2(debug@4.4.3):
dependencies:
- follow-redirects: 1.15.9(debug@4.4.1)
- form-data: 4.0.2
+ follow-redirects: 1.15.11(debug@4.4.3)
+ form-data: 4.0.4
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- b4a@1.7.1: {}
-
- babel-core@7.0.0-bridge.0(@babel/core@7.26.10):
- dependencies:
- '@babel/core': 7.26.10
+ b4a@1.7.3: {}
- babel-jest@29.7.0(@babel/core@7.26.10):
+ babel-jest@29.7.0(@babel/core@7.28.4):
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@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.26.10)
+ babel-preset-jest: 29.6.3(@babel/core@7.28.4)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- babel-loader@8.4.1(@babel/core@7.26.10)(webpack@5.99.5(esbuild@0.25.4)):
- dependencies:
- '@babel/core': 7.26.10
- find-cache-dir: 3.3.2
- loader-utils: 2.0.4
- make-dir: 3.1.0
- schema-utils: 2.7.1
- webpack: 5.99.5(esbuild@0.25.4)
-
babel-plugin-istanbul@6.1.1:
dependencies:
'@babel/helper-plugin-utils': 7.27.1
@@ -19592,106 +18086,121 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
'@babel/template': 7.27.2
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.4
'@types/babel__core': 7.20.5
- '@types/babel__traverse': 7.20.7
+ '@types/babel__traverse': 7.28.0
+
+ babel-plugin-module-resolver@5.0.2:
+ dependencies:
+ find-babel-config: 2.1.2
+ glob: 9.3.5
+ pkg-up: 3.1.0
+ reselect: 4.1.8
+ resolve: 1.22.10
- babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.26.10):
+ babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.4):
dependencies:
- '@babel/compat-data': 7.28.0
- '@babel/core': 7.26.10
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.26.10)
+ '@babel/compat-data': 7.28.4
+ '@babel/core': 7.28.4
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.10):
+ babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.4):
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.26.10)
- core-js-compat: 3.43.0
+ '@babel/core': 7.28.4
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
+ core-js-compat: 3.46.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.26.10):
+ babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.4):
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.26.10)
+ '@babel/core': 7.28.4
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
babel-plugin-react-native-web@0.19.13: {}
- babel-plugin-syntax-hermes-parser@0.23.1:
- dependencies:
- hermes-parser: 0.23.1
-
babel-plugin-syntax-hermes-parser@0.25.1:
dependencies:
hermes-parser: 0.25.1
- babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.26.10):
+ babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.28.4):
dependencies:
- '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.10)
+ '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.4)
transitivePeerDependencies:
- '@babel/core'
- babel-preset-current-node-syntax@1.1.0(@babel/core@7.26.10):
- dependencies:
- '@babel/core': 7.26.10
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.10)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.10)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.10)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.10)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.10)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.10)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.10)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.10)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.10)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.10)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.10)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.10)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.10)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.10)
-
- babel-preset-expo@12.0.11(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10)):
- dependencies:
- '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.26.10)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.10)
- '@babel/preset-react': 7.26.3(@babel/core@7.26.10)
- '@babel/preset-typescript': 7.26.0(@babel/core@7.26.10)
- '@react-native/babel-preset': 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))
+ 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@13.2.4(@babel/core@7.28.4):
+ 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-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.79.6(@babel/core@7.28.4)
babel-plugin-react-native-web: 0.19.13
+ babel-plugin-syntax-hermes-parser: 0.25.1
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.4)
+ debug: 4.4.3
react-refresh: 0.14.2
+ resolve-from: 5.0.0
transitivePeerDependencies:
- '@babel/core'
- - '@babel/preset-env'
- supports-color
- babel-preset-jest@29.6.3(@babel/core@7.26.10):
+ babel-preset-jest@29.6.3(@babel/core@7.28.4):
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.10)
+ babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.4)
bail@2.0.2: {}
balanced-match@1.0.2: {}
- bare-events@2.6.1:
- optional: true
+ bare-events@2.8.0: {}
- bare-fs@4.4.4:
+ bare-fs@4.4.9:
dependencies:
- bare-events: 2.6.1
+ bare-events: 2.8.0
bare-path: 3.0.0
- bare-stream: 2.7.0(bare-events@2.6.1)
+ bare-stream: 2.7.0(bare-events@2.8.0)
bare-url: 2.2.2
fast-fifo: 1.3.2
transitivePeerDependencies:
+ - bare-abort-controller
- react-native-b4a
optional: true
@@ -19703,12 +18212,13 @@ snapshots:
bare-os: 3.6.2
optional: true
- bare-stream@2.7.0(bare-events@2.6.1):
+ bare-stream@2.7.0(bare-events@2.8.0):
dependencies:
- streamx: 2.22.1
+ streamx: 2.23.0
optionalDependencies:
- bare-events: 2.6.1
+ bare-events: 2.8.0
transitivePeerDependencies:
+ - bare-abort-controller
- react-native-b4a
optional: true
@@ -19719,6 +18229,8 @@ snapshots:
base64-js@1.5.1: {}
+ baseline-browser-mapping@2.8.16: {}
+
basic-auth@2.0.1:
dependencies:
safe-buffer: 5.1.2
@@ -19731,8 +18243,6 @@ snapshots:
big-integer@1.6.52: {}
- big.js@5.2.2: {}
-
bignumber.js@9.3.1: {}
binary-extensions@2.3.0: {}
@@ -19758,11 +18268,7 @@ snapshots:
boolbase@1.0.0: {}
- bowser@2.11.0: {}
-
- bplist-creator@0.0.7:
- dependencies:
- stream-buffers: 2.2.0
+ bowser@2.12.1: {}
bplist-creator@0.1.0:
dependencies:
@@ -19776,12 +18282,12 @@ snapshots:
dependencies:
big-integer: 1.6.52
- brace-expansion@1.1.11:
+ brace-expansion@1.1.12:
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
- brace-expansion@2.0.1:
+ brace-expansion@2.0.2:
dependencies:
balanced-match: 1.0.2
@@ -19791,30 +18297,22 @@ snapshots:
browser-assert@1.2.1: {}
- browserslist@4.25.1:
+ browserslist@4.26.3:
dependencies:
- caniuse-lite: 1.0.30001726
- electron-to-chromium: 1.5.179
- node-releases: 2.0.19
- update-browserslist-db: 1.1.3(browserslist@4.25.1)
+ baseline-browser-mapping: 2.8.16
+ caniuse-lite: 1.0.30001749
+ electron-to-chromium: 1.5.234
+ node-releases: 2.0.23
+ update-browserslist-db: 1.1.3(browserslist@4.26.3)
bser@2.1.1:
dependencies:
node-int64: 0.4.0
- buffer-alloc-unsafe@1.1.0: {}
-
- buffer-alloc@1.2.0:
- dependencies:
- buffer-alloc-unsafe: 1.1.0
- buffer-fill: 1.0.0
-
buffer-crc32@0.2.13: {}
buffer-equal-constant-time@1.0.1: {}
- buffer-fill@1.0.0: {}
-
buffer-from@1.1.2: {}
buffer@5.7.1:
@@ -19827,9 +18325,9 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
- bundle-require@5.1.0(esbuild@0.24.2):
+ bundle-require@5.1.0(esbuild@0.25.10):
dependencies:
- esbuild: 0.24.2
+ esbuild: 0.25.10
load-tsconfig: 0.2.5
bytes-iec@3.1.1: {}
@@ -19838,21 +18336,6 @@ snapshots:
cac@6.7.14: {}
- cacache@18.0.4:
- dependencies:
- '@npmcli/fs': 3.1.1
- fs-minipass: 3.0.3
- glob: 10.4.5
- lru-cache: 10.4.3
- minipass: 7.1.2
- minipass-collect: 2.0.1
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- p-map: 4.0.0
- ssri: 10.0.6
- tar: 6.2.1
- unique-filename: 3.0.0
-
caching-transform@4.0.0:
dependencies:
hasha: 5.2.2
@@ -19897,19 +18380,19 @@ snapshots:
camelize@1.0.1: {}
- caniuse-lite@1.0.30001726: {}
+ caniuse-lite@1.0.30001749: {}
canvas-confetti@1.9.3: {}
ccount@2.0.1: {}
- chai@5.2.0:
+ chai@5.3.3:
dependencies:
assertion-error: 2.0.1
check-error: 2.1.1
deep-eql: 5.0.2
- loupe: 3.1.4
- pathval: 2.0.0
+ loupe: 3.2.1
+ pathval: 2.0.1
chalk@2.4.2:
dependencies:
@@ -19917,17 +18400,12 @@ snapshots:
escape-string-regexp: 1.0.5
supports-color: 5.5.0
- chalk@3.0.0:
- dependencies:
- ansi-styles: 4.3.0
- supports-color: 7.2.0
-
chalk@4.1.2:
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
- chalk@5.4.1: {}
+ chalk@5.6.2: {}
char-regex@1.0.2: {}
@@ -19947,8 +18425,6 @@ snapshots:
character-reference-invalid@2.0.1: {}
- charenc@0.0.2: {}
-
check-error@2.1.1: {}
chokidar@3.6.0:
@@ -19965,34 +18441,32 @@ snapshots:
chokidar@4.0.3:
dependencies:
- readdirp: 4.1.1
+ readdirp: 4.1.2
- chownr@2.0.0: {}
+ chownr@3.0.0: {}
- chromatic@11.28.0: {}
+ chromatic@11.29.0: {}
chromatic@12.2.0: {}
chrome-launcher@0.15.2:
dependencies:
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
escape-string-regexp: 4.0.0
is-wsl: 2.2.0
lighthouse-logger: 1.4.2
transitivePeerDependencies:
- supports-color
- chrome-trace-event@1.0.4: {}
-
- chromium-bidi@7.2.0(devtools-protocol@0.0.1464554):
+ chromium-bidi@8.0.0(devtools-protocol@0.0.1495869):
dependencies:
- devtools-protocol: 0.0.1464554
+ devtools-protocol: 0.0.1495869
mitt: 3.0.1
zod: 3.25.76
chromium-edge-launcher@0.2.0:
dependencies:
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
escape-string-regexp: 4.0.0
is-wsl: 2.2.0
lighthouse-logger: 1.4.2
@@ -20011,14 +18485,10 @@ snapshots:
class-validator@0.14.2:
dependencies:
- '@types/validator': 13.15.2
- libphonenumber-js: 1.12.10
+ '@types/validator': 13.15.3
+ libphonenumber-js: 1.12.24
validator: 13.15.15
- class-variance-authority@0.7.1:
- dependencies:
- clsx: 2.1.1
-
clean-stack@2.2.0: {}
cli-cursor@2.1.0:
@@ -20027,8 +18497,7 @@ snapshots:
cli-spinners@2.9.2: {}
- cli-width@4.1.0:
- optional: true
+ client-only@0.0.1: {}
cliui@6.0.0:
dependencies:
@@ -20042,12 +18511,6 @@ snapshots:
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
- clone-deep@4.0.1:
- dependencies:
- is-plain-object: 2.0.4
- kind-of: 6.0.3
- shallow-clone: 3.0.1
-
clone@1.0.4: {}
clsx@2.1.1: {}
@@ -20068,6 +18531,16 @@ snapshots:
color-name@1.1.4: {}
+ color-string@1.9.1:
+ dependencies:
+ color-name: 1.1.4
+ simple-swizzle: 0.2.4
+
+ color@4.2.3:
+ dependencies:
+ color-convert: 2.0.1
+ color-string: 1.9.1
+
colorette@2.0.20: {}
combined-stream@1.0.8:
@@ -20078,8 +18551,6 @@ snapshots:
comma-separated-tokens@2.0.3: {}
- command-exists@1.2.9: {}
-
commander@12.0.0: {}
commander@12.1.0: {}
@@ -20096,13 +18567,11 @@ snapshots:
commander@9.5.0: {}
- comment-json@4.2.5:
+ comment-json@4.4.1:
dependencies:
array-timsort: 1.0.3
core-util-is: 1.0.3
esprima: 4.0.1
- has-own-prop: 2.0.0
- repeat-string: 1.6.1
commondir@1.0.1: {}
@@ -20113,19 +18582,17 @@ snapshots:
compare-versions@6.1.1: {}
- component-type@1.2.2: {}
-
compressible@2.0.18:
dependencies:
- mime-db: 1.52.0
+ mime-db: 1.54.0
- compression@1.8.0:
+ compression@1.8.1:
dependencies:
bytes: 3.1.2
compressible: 2.0.18
debug: 2.6.9
negotiator: 0.6.4
- on-headers: 1.0.2
+ on-headers: 1.1.0
safe-buffer: 5.2.1
vary: 1.1.2
transitivePeerDependencies:
@@ -20146,7 +18613,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- consola@3.4.0: {}
+ consola@3.4.2: {}
console-table-printer@2.14.6:
dependencies:
@@ -20181,23 +18648,20 @@ snapshots:
cookie@0.7.1: {}
- cookie@0.7.2:
- optional: true
-
- core-js-compat@3.43.0:
+ core-js-compat@3.46.0:
dependencies:
- browserslist: 4.25.1
+ browserslist: 4.26.3
core-util-is@1.0.3: {}
corser@2.0.1: {}
- cosmiconfig-typescript-loader@6.1.0(@types/node@22.15.21)(cosmiconfig@9.0.0(typescript@5.8.2))(typescript@5.8.2):
+ cosmiconfig-typescript-loader@6.2.0(@types/node@22.18.9)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3):
dependencies:
- '@types/node': 22.15.21
- cosmiconfig: 9.0.0(typescript@5.8.2)
- jiti: 2.4.2
- typescript: 5.8.2
+ '@types/node': 22.18.9
+ cosmiconfig: 9.0.0(typescript@5.9.3)
+ jiti: 2.6.1
+ typescript: 5.9.3
cosmiconfig@5.2.1:
dependencies:
@@ -20206,31 +18670,31 @@ snapshots:
js-yaml: 3.14.1
parse-json: 4.0.0
- cosmiconfig@8.3.6(typescript@5.8.2):
+ cosmiconfig@8.3.6(typescript@5.9.3):
dependencies:
import-fresh: 3.3.1
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.9.3
- cosmiconfig@9.0.0(typescript@5.8.2):
+ cosmiconfig@9.0.0(typescript@5.9.3):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.1
js-yaml: 4.1.0
parse-json: 5.2.0
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.9.3
- create-jest@29.7.0(@types/node@22.15.21):
+ create-jest@29.7.0(@types/node@22.18.9):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@22.15.21)
+ jest-config: 29.7.0(@types/node@22.18.9)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -20265,8 +18729,6 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
- crypt@0.0.2: {}
-
crypto-random-string@2.0.0: {}
css-color-keywords@1.0.0: {}
@@ -20274,11 +18736,12 @@ snapshots:
css-in-js-utils@3.1.0:
dependencies:
hyphenate-style-name: 1.1.0
+ optional: true
- css-select@5.1.0:
+ css-select@5.2.2:
dependencies:
boolbase: 1.0.0
- css-what: 6.1.0
+ css-what: 6.2.2
domhandler: 5.0.3
domutils: 3.2.2
nth-check: 2.1.1
@@ -20304,7 +18767,7 @@ snapshots:
mdn-data: 2.0.30
source-map-js: 1.2.1
- css-what@6.1.0: {}
+ css-what@6.2.2: {}
css.escape@1.5.1: {}
@@ -20314,18 +18777,18 @@ snapshots:
dependencies:
css-tree: 2.2.1
- cssstyle@4.2.1:
+ cssstyle@4.6.0:
dependencies:
- '@asamuzakjp/css-color': 2.8.3
+ '@asamuzakjp/css-color': 3.2.0
rrweb-cssom: 0.8.0
csstype@3.1.3: {}
- cva@1.0.0-beta.3(typescript@5.8.2):
+ cva@1.0.0-beta.3(typescript@5.9.3):
dependencies:
clsx: 2.1.1
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.9.3
cwd@0.10.0:
dependencies:
@@ -20379,7 +18842,7 @@ snapshots:
data-urls@5.0.0:
dependencies:
whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.0
+ whatwg-url: 14.2.0
data-view-buffer@1.0.2:
dependencies:
@@ -20413,7 +18876,7 @@ snapshots:
dependencies:
ms: 2.1.3
- debug@4.4.1:
+ debug@4.4.3:
dependencies:
ms: 2.1.3
@@ -20421,7 +18884,7 @@ snapshots:
decimal.js-light@2.5.1: {}
- decimal.js@10.5.0: {}
+ decimal.js@10.6.0: {}
decode-named-character-reference@1.2.0:
dependencies:
@@ -20429,7 +18892,7 @@ snapshots:
decode-uri-component@0.2.2: {}
- dedent@1.5.3: {}
+ dedent@1.7.0: {}
deep-eql@5.0.2: {}
@@ -20448,11 +18911,6 @@ snapshots:
deepmerge@4.3.1: {}
- default-gateway@4.2.0:
- dependencies:
- execa: 1.0.0
- ip-regex: 2.1.0
-
default-require-extensions@3.0.1:
dependencies:
strip-bom: 4.0.0
@@ -20481,17 +18939,6 @@ snapshots:
escodegen: 2.1.0
esprima: 4.0.1
- 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
-
delayed-stream@1.0.0: {}
depd@2.0.0: {}
@@ -20502,8 +18949,6 @@ snapshots:
detect-libc@1.0.3: {}
- detect-libc@2.0.3: {}
-
detect-newline@3.1.0: {}
detect-node-es@1.1.0: {}
@@ -20512,7 +18957,7 @@ snapshots:
dependencies:
dequal: 2.0.3
- devtools-protocol@0.0.1464554: {}
+ devtools-protocol@0.0.1495869: {}
didyoumean@1.2.2: {}
@@ -20524,10 +18969,6 @@ snapshots:
dependencies:
htmlparser2: 3.10.1
- dir-glob@3.0.1:
- dependencies:
- path-type: 4.0.0
-
dlv@1.1.3: {}
doctrine@2.1.0:
@@ -20544,7 +18985,7 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
- '@babel/runtime': 7.27.6
+ '@babel/runtime': 7.28.4
csstype: 3.1.3
dom-serializer@0.2.2:
@@ -20570,7 +19011,7 @@ snapshots:
dependencies:
domelementtype: 2.3.0
- dompurify@3.2.6:
+ dompurify@3.2.7:
optionalDependencies:
'@types/trusted-types': 2.0.7
@@ -20596,10 +19037,12 @@ snapshots:
dotenv-expand@11.0.7:
dependencies:
- dotenv: 16.4.7
+ dotenv: 16.6.1
dotenv@16.4.7: {}
+ dotenv@16.6.1: {}
+
dset@3.1.4: {}
dunder-proto@1.0.1:
@@ -20616,23 +19059,23 @@ snapshots:
ee-first@1.1.1: {}
- electron-to-chromium@1.5.179: {}
+ electron-to-chromium@1.5.234: {}
- embla-carousel-autoplay@8.5.2(embla-carousel@8.6.0):
+ embla-carousel-autoplay@8.6.0(embla-carousel@8.6.0):
dependencies:
embla-carousel: 8.6.0
- embla-carousel-react@8.6.0(react@18.3.1):
+ embla-carousel-react@8.6.0(react@19.0.0):
dependencies:
embla-carousel: 8.6.0
embla-carousel-reactive-utils: 8.6.0(embla-carousel@8.6.0)
- react: 18.3.1
+ react: 19.0.0
embla-carousel-reactive-utils@8.6.0(embla-carousel@8.6.0):
dependencies:
embla-carousel: 8.6.0
- embla-carousel-wheel-gestures@8.0.1(embla-carousel@8.6.0):
+ embla-carousel-wheel-gestures@8.1.0(embla-carousel@8.6.0):
dependencies:
embla-carousel: 8.6.0
wheel-gestures: 2.2.48
@@ -20647,21 +19090,14 @@ snapshots:
emoji-regex@9.2.2: {}
- emojis-list@3.0.0: {}
-
encodeurl@1.0.2: {}
encodeurl@2.0.0: {}
- end-of-stream@1.4.4:
+ end-of-stream@1.4.5:
dependencies:
once: 1.4.0
- enhanced-resolve@5.18.2:
- dependencies:
- graceful-fs: 4.2.11
- tapable: 2.2.2
-
entities@1.1.2: {}
entities@2.0.3: {}
@@ -20670,13 +19106,13 @@ snapshots:
entities@4.5.0: {}
+ entities@6.0.1: {}
+
env-editor@0.4.2: {}
env-paths@2.2.1: {}
- eol@0.9.1: {}
-
- error-ex@1.3.2:
+ error-ex@1.3.4:
dependencies:
is-arrayish: 0.2.1
@@ -20684,7 +19120,7 @@ snapshots:
dependencies:
stackframe: 1.3.4
- es-abstract@1.23.9:
+ es-abstract@1.24.0:
dependencies:
array-buffer-byte-length: 1.0.2
arraybuffer.prototype.slice: 1.0.4
@@ -20713,7 +19149,9 @@ snapshots:
is-array-buffer: 3.0.5
is-callable: 1.2.7
is-data-view: 1.0.2
+ is-negative-zero: 2.0.3
is-regex: 1.2.1
+ is-set: 2.0.3
is-shared-array-buffer: 1.0.4
is-string: 1.1.1
is-typed-array: 1.1.15
@@ -20728,6 +19166,7 @@ snapshots:
safe-push-apply: 1.0.0
safe-regex-test: 1.1.0
set-proto: 1.0.0
+ stop-iteration-iterator: 1.1.0
string.prototype.trim: 1.2.10
string.prototype.trimend: 1.0.9
string.prototype.trimstart: 1.0.8
@@ -20747,7 +19186,7 @@ snapshots:
call-bind: 1.0.8
call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
es-errors: 1.3.0
es-set-tostringtag: 2.1.0
function-bind: 1.1.2
@@ -20786,68 +19225,41 @@ snapshots:
es6-error@4.1.1: {}
- esbuild-register@3.6.0(esbuild@0.25.4):
+ esbuild-register@3.6.0(esbuild@0.25.10):
dependencies:
- debug: 4.4.1
- esbuild: 0.25.4
+ debug: 4.4.3
+ esbuild: 0.25.10
transitivePeerDependencies:
- supports-color
- esbuild@0.24.2:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.24.2
- '@esbuild/android-arm': 0.24.2
- '@esbuild/android-arm64': 0.24.2
- '@esbuild/android-x64': 0.24.2
- '@esbuild/darwin-arm64': 0.24.2
- '@esbuild/darwin-x64': 0.24.2
- '@esbuild/freebsd-arm64': 0.24.2
- '@esbuild/freebsd-x64': 0.24.2
- '@esbuild/linux-arm': 0.24.2
- '@esbuild/linux-arm64': 0.24.2
- '@esbuild/linux-ia32': 0.24.2
- '@esbuild/linux-loong64': 0.24.2
- '@esbuild/linux-mips64el': 0.24.2
- '@esbuild/linux-ppc64': 0.24.2
- '@esbuild/linux-riscv64': 0.24.2
- '@esbuild/linux-s390x': 0.24.2
- '@esbuild/linux-x64': 0.24.2
- '@esbuild/netbsd-arm64': 0.24.2
- '@esbuild/netbsd-x64': 0.24.2
- '@esbuild/openbsd-arm64': 0.24.2
- '@esbuild/openbsd-x64': 0.24.2
- '@esbuild/sunos-x64': 0.24.2
- '@esbuild/win32-arm64': 0.24.2
- '@esbuild/win32-ia32': 0.24.2
- '@esbuild/win32-x64': 0.24.2
-
- esbuild@0.25.4:
+ esbuild@0.25.10:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.4
- '@esbuild/android-arm': 0.25.4
- '@esbuild/android-arm64': 0.25.4
- '@esbuild/android-x64': 0.25.4
- '@esbuild/darwin-arm64': 0.25.4
- '@esbuild/darwin-x64': 0.25.4
- '@esbuild/freebsd-arm64': 0.25.4
- '@esbuild/freebsd-x64': 0.25.4
- '@esbuild/linux-arm': 0.25.4
- '@esbuild/linux-arm64': 0.25.4
- '@esbuild/linux-ia32': 0.25.4
- '@esbuild/linux-loong64': 0.25.4
- '@esbuild/linux-mips64el': 0.25.4
- '@esbuild/linux-ppc64': 0.25.4
- '@esbuild/linux-riscv64': 0.25.4
- '@esbuild/linux-s390x': 0.25.4
- '@esbuild/linux-x64': 0.25.4
- '@esbuild/netbsd-arm64': 0.25.4
- '@esbuild/netbsd-x64': 0.25.4
- '@esbuild/openbsd-arm64': 0.25.4
- '@esbuild/openbsd-x64': 0.25.4
- '@esbuild/sunos-x64': 0.25.4
- '@esbuild/win32-arm64': 0.25.4
- '@esbuild/win32-ia32': 0.25.4
- '@esbuild/win32-x64': 0.25.4
+ '@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
escalade@3.2.0: {}
@@ -20869,23 +19281,23 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-plugin-react-hooks@5.2.0(eslint@9.27.0(jiti@2.4.2)):
+ eslint-plugin-react-hooks@5.2.0(eslint@9.37.0(jiti@2.6.1)):
dependencies:
- eslint: 9.27.0(jiti@2.4.2)
+ eslint: 9.37.0(jiti@2.6.1)
- eslint-plugin-react-refresh@0.4.20(eslint@9.27.0(jiti@2.4.2)):
+ eslint-plugin-react-refresh@0.4.23(eslint@9.37.0(jiti@2.6.1)):
dependencies:
- eslint: 9.27.0(jiti@2.4.2)
+ eslint: 9.37.0(jiti@2.6.1)
- eslint-plugin-react@7.37.5(eslint@9.27.0(jiti@2.4.2)):
+ eslint-plugin-react@7.37.5(eslint@9.37.0(jiti@2.6.1)):
dependencies:
- array-includes: 3.1.8
+ 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.27.0(jiti@2.4.2)
+ eslint: 9.37.0(jiti@2.6.1)
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -20899,52 +19311,47 @@ snapshots:
string.prototype.matchall: 4.0.12
string.prototype.repeat: 1.0.0
- eslint-plugin-storybook@9.1.3(eslint@9.27.0(jiti@2.4.2))(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)))(typescript@5.8.2):
+ eslint-plugin-storybook@9.1.10(eslint@9.37.0(jiti@2.6.1))(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.9.3):
dependencies:
- '@typescript-eslint/utils': 8.32.1(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.27.0(jiti@2.4.2)
- storybook: 9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ '@typescript-eslint/utils': 8.46.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.37.0(jiti@2.6.1)
+ storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
transitivePeerDependencies:
- supports-color
- typescript
- eslint-scope@5.1.1:
- dependencies:
- esrecurse: 4.3.0
- estraverse: 4.3.0
-
- eslint-scope@8.3.0:
+ eslint-scope@8.4.0:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
eslint-visitor-keys@3.4.3: {}
- eslint-visitor-keys@4.2.0: {}
+ eslint-visitor-keys@4.2.1: {}
- eslint@9.27.0(jiti@2.4.2):
+ eslint@9.37.0(jiti@2.6.1):
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.27.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.6.1))
'@eslint-community/regexpp': 4.12.1
- '@eslint/config-array': 0.20.0
- '@eslint/config-helpers': 0.2.1
- '@eslint/core': 0.14.0
+ '@eslint/config-array': 0.21.0
+ '@eslint/config-helpers': 0.4.0
+ '@eslint/core': 0.16.0
'@eslint/eslintrc': 3.3.1
- '@eslint/js': 9.27.0
- '@eslint/plugin-kit': 0.3.1
- '@humanfs/node': 0.16.6
+ '@eslint/js': 9.37.0
+ '@eslint/plugin-kit': 0.4.0
+ '@humanfs/node': 0.16.7
'@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.4.2
+ '@humanwhocodes/retry': 0.4.3
'@types/estree': 1.0.8
'@types/json-schema': 7.0.15
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.6
- debug: 4.4.1
+ debug: 4.4.3
escape-string-regexp: 4.0.0
- eslint-scope: 8.3.0
- eslint-visitor-keys: 4.2.0
- espree: 10.3.0
+ eslint-scope: 8.4.0
+ eslint-visitor-keys: 4.2.1
+ espree: 10.4.0
esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
@@ -20960,17 +19367,17 @@ snapshots:
natural-compare: 1.4.0
optionator: 0.9.4
optionalDependencies:
- jiti: 2.4.2
+ jiti: 2.6.1
transitivePeerDependencies:
- supports-color
esm-env-runtime@0.1.1: {}
- espree@10.3.0:
+ espree@10.4.0:
dependencies:
acorn: 8.15.0
acorn-jsx: 5.3.2(acorn@8.15.0)
- eslint-visitor-keys: 4.2.0
+ eslint-visitor-keys: 4.2.1
esprima@4.0.1: {}
@@ -20982,22 +19389,21 @@ snapshots:
dependencies:
estraverse: 5.3.0
- estimo@3.0.4:
+ estimo@3.0.5:
dependencies:
'@sitespeed.io/tracium': 0.3.3
commander: 12.0.0
- find-chrome-bin: 2.0.3
+ find-chrome-bin: 2.0.4
nanoid: 5.1.5
- puppeteer-core: 24.15.0
+ puppeteer-core: 24.22.0
transitivePeerDependencies:
+ - bare-abort-controller
- bare-buffer
- bufferutil
- react-native-b4a
- supports-color
- utf-8-validate
- estraverse@4.3.0: {}
-
estraverse@5.3.0: {}
estree-util-is-identifier-name@3.0.0: {}
@@ -21016,20 +19422,16 @@ snapshots:
eventemitter3@4.0.7: {}
+ events-universal@1.0.1:
+ dependencies:
+ bare-events: 2.8.0
+ transitivePeerDependencies:
+ - bare-abort-controller
+
events@3.3.0: {}
exec-async@2.2.0: {}
- execa@1.0.0:
- dependencies:
- cross-spawn: 6.0.6
- get-stream: 4.1.0
- is-stream: 1.1.0
- npm-run-path: 2.0.2
- p-finally: 1.0.0
- signal-exit: 3.0.7
- strip-eof: 1.0.0
-
execa@5.1.1:
dependencies:
cross-spawn: 7.0.6
@@ -21050,7 +19452,7 @@ snapshots:
expect-playwright@0.8.0: {}
- expect-type@1.2.0: {}
+ expect-type@1.2.2: {}
expect@29.7.0:
dependencies:
@@ -21060,141 +19462,148 @@ snapshots:
jest-message-util: 29.7.0
jest-util: 29.7.0
- expo-asset@11.0.5(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1):
+ expo-asset@11.1.7(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
dependencies:
- '@expo/image-utils': 0.6.5
- expo: 52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- expo-constants: 17.0.8(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))
- invariant: 2.2.4
- md5-file: 3.2.3
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ '@expo/image-utils': 0.7.6
+ expo: 53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ expo-constants: 17.1.7(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
transitivePeerDependencies:
- supports-color
- expo-clipboard@7.1.4(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1):
+ expo-clipboard@7.1.5(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
dependencies:
- expo: 52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ expo: 53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
- expo-constants@17.0.8(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)):
+ expo-constants@17.1.7(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)):
dependencies:
- '@expo/config': 10.0.11
- '@expo/env': 0.4.2
- expo: 52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ '@expo/config': 11.0.13
+ '@expo/env': 1.0.7
+ expo: 53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
transitivePeerDependencies:
- supports-color
- expo-file-system@18.0.12(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)):
+ expo-file-system@18.1.11(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)):
dependencies:
- expo: 52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- web-streams-polyfill: 3.3.3
+ expo: 53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
- expo-font@13.0.4(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react@18.3.1):
+ expo-font@13.3.2(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0):
dependencies:
- expo: 52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ expo: 53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
fontfaceobserver: 2.3.0
- react: 18.3.1
+ react: 19.0.0
- expo-keep-awake@14.0.3(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react@18.3.1):
+ expo-keep-awake@14.1.4(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0):
dependencies:
- expo: 52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react: 18.3.1
+ expo: 53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
- expo-linking@7.0.5(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1):
+ expo-linking@7.1.7(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
dependencies:
- expo-constants: 17.0.8(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))
+ expo-constants: 17.1.7(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))
invariant: 2.2.4
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
transitivePeerDependencies:
- expo
- supports-color
- expo-modules-autolinking@2.0.8:
+ expo-modules-autolinking@2.1.14:
dependencies:
'@expo/spawn-async': 1.7.2
chalk: 4.1.2
commander: 7.2.0
- fast-glob: 3.3.3
find-up: 5.0.0
- fs-extra: 9.1.0
+ glob: 10.4.5
require-from-string: 2.0.2
resolve-from: 5.0.0
- expo-modules-core@2.2.3:
+ expo-modules-core@2.5.0:
dependencies:
invariant: 2.2.4
- expo-navigation-bar@4.0.9(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1):
- dependencies:
- '@react-native/normalize-colors': 0.76.8
- debug: 4.4.1
- expo: 52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- transitivePeerDependencies:
- - supports-color
-
- expo-splash-screen@0.29.22(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)):
+ expo-navigation-bar@4.2.8(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
dependencies:
- '@expo/prebuild-config': 8.0.31
- expo: 52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ '@react-native/normalize-colors': 0.79.6
+ debug: 4.4.3
+ expo: 53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-edge-to-edge: 1.6.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-is-edge-to-edge: 1.2.1(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
transitivePeerDependencies:
- supports-color
- expo-status-bar@2.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1):
- dependencies:
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
-
- expo-system-ui@4.0.9(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)):
- dependencies:
- '@react-native/normalize-colors': 0.76.8
- debug: 4.4.1
- expo: 52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ expo-router@5.1.7(yi4e7yepueo23q3rdc5ruvdh3q):
+ dependencies:
+ '@expo/metro-runtime': 5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))
+ '@expo/schema-utils': 0.1.7
+ '@expo/server': 0.6.3
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.0.14)(react@19.0.0)
+ '@react-navigation/bottom-tabs': 7.4.8(@react-navigation/native@7.1.18(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.16.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@react-navigation/native': 7.1.18(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ '@react-navigation/native-stack': 7.3.27(@react-navigation/native@7.1.18(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.16.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ client-only: 0.0.1
+ expo: 53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ expo-constants: 17.1.7(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))
+ expo-linking: 7.1.7(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ invariant: 2.2.4
+ react-fast-compare: 3.2.2
+ react-native-is-edge-to-edge: 1.2.1(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-safe-area-context: 5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-screens: 4.16.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ semver: 7.6.3
+ server-only: 0.0.1
+ shallowequal: 1.1.0
optionalDependencies:
- react-native-web: 0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-native-reanimated: 3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
transitivePeerDependencies:
+ - '@react-native-masked-view/masked-view'
+ - '@types/react'
+ - react
+ - react-native
- supports-color
- expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1):
- dependencies:
- '@babel/runtime': 7.27.6
- '@expo/cli': 0.22.24(graphql@16.11.0)
- '@expo/config': 10.0.11
- '@expo/config-plugins': 9.0.17
- '@expo/fingerprint': 0.11.11
- '@expo/metro-config': 0.19.12
- '@expo/vector-icons': 14.0.4
- babel-preset-expo: 12.0.11(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))
- expo-asset: 11.0.5(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- expo-constants: 17.0.8(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))
- expo-file-system: 18.0.12(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))
- expo-font: 13.0.4(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react@18.3.1)
- expo-keep-awake: 14.0.3(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react@18.3.1)
- expo-modules-autolinking: 2.0.8
- expo-modules-core: 2.2.3
- fbemitter: 3.0.0
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- web-streams-polyfill: 3.3.3
+ expo-status-bar@2.2.3(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
+ dependencies:
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-edge-to-edge: 1.6.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-is-edge-to-edge: 1.2.1(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+
+ expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
+ dependencies:
+ '@babel/runtime': 7.28.4
+ '@expo/cli': 0.24.22(graphql@16.11.0)
+ '@expo/config': 11.0.13
+ '@expo/config-plugins': 10.1.2
+ '@expo/fingerprint': 0.13.4
+ '@expo/metro-config': 0.20.17
+ '@expo/vector-icons': 14.1.0(expo-font@13.3.2(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ babel-preset-expo: 13.2.4(@babel/core@7.28.4)
+ expo-asset: 11.1.7(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ expo-constants: 17.1.7(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))
+ expo-file-system: 18.1.11(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))
+ expo-font: 13.3.2(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0)
+ expo-keep-awake: 14.1.4(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0)
+ expo-modules-autolinking: 2.1.14
+ expo-modules-core: 2.5.0
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-edge-to-edge: 1.6.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
whatwg-url-without-unicode: 8.0.0-3
optionalDependencies:
- '@expo/metro-runtime': 4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))
- react-native-webview: 13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ '@expo/metro-runtime': 5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))
transitivePeerDependencies:
- '@babel/core'
- - '@babel/preset-env'
- babel-plugin-react-compiler
- bufferutil
- - encoding
- graphql
- - react-compiler-runtime
- supports-color
- utf-8-validate
@@ -21242,7 +19651,7 @@ snapshots:
extract-zip@2.0.1:
dependencies:
- debug: 4.4.1
+ debug: 4.4.3
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
@@ -21256,7 +19665,7 @@ snapshots:
fast-deep-equal@3.1.3: {}
- fast-equals@5.2.2: {}
+ fast-equals@5.3.2: {}
fast-fifo@1.3.2: {}
@@ -21274,23 +19683,22 @@ snapshots:
fast-levenshtein@2.0.6: {}
- fast-loops@1.1.4: {}
-
- fast-redact@3.5.0: {}
+ fast-loops@1.1.4:
+ optional: true
fast-safe-stringify@2.1.1: {}
fast-text-encoding@1.0.6: {}
- fast-uri@3.0.6: {}
+ fast-uri@3.1.0: {}
fast-xml-parser@5.2.5:
dependencies:
strnum: 2.1.1
- fastq@1.19.0:
+ fastq@1.19.1:
dependencies:
- reusify: 1.0.4
+ reusify: 1.1.0
fault@1.0.4:
dependencies:
@@ -21300,13 +19708,8 @@ snapshots:
dependencies:
bser: 2.1.1
- fbemitter@3.0.0:
- dependencies:
- fbjs: 3.0.5
- transitivePeerDependencies:
- - encoding
-
- fbjs-css-vars@1.0.2: {}
+ fbjs-css-vars@1.0.2:
+ optional: true
fbjs@3.0.5:
dependencies:
@@ -21316,19 +19719,18 @@ snapshots:
object-assign: 4.1.1
promise: 7.3.1
setimmediate: 1.0.5
- ua-parser-js: 1.0.40
+ ua-parser-js: 1.0.41
transitivePeerDependencies:
- encoding
+ optional: true
fd-slicer@1.1.0:
dependencies:
pend: 1.2.0
- fdir@6.4.4(picomatch@4.0.2):
+ fdir@6.5.0(picomatch@4.0.3):
optionalDependencies:
- picomatch: 4.0.2
-
- fetch-retry@4.1.1: {}
+ picomatch: 4.0.3
fflate@0.8.2: {}
@@ -21374,11 +19776,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- find-cache-dir@2.1.0:
+ find-babel-config@2.1.2:
dependencies:
- commondir: 1.0.1
- make-dir: 2.1.0
- pkg-dir: 3.0.0
+ json5: 2.2.3
find-cache-dir@3.3.2:
dependencies:
@@ -21386,10 +19786,11 @@ snapshots:
make-dir: 3.1.0
pkg-dir: 4.2.0
- find-chrome-bin@2.0.3:
+ find-chrome-bin@2.0.4:
dependencies:
- '@puppeteer/browsers': 2.10.6
+ '@puppeteer/browsers': 2.10.10
transitivePeerDependencies:
+ - bare-abort-controller
- bare-buffer
- react-native-b4a
- supports-color
@@ -21403,7 +19804,7 @@ snapshots:
dependencies:
find-file-up: 0.1.3
- find-process@1.4.10:
+ find-process@1.4.11:
dependencies:
chalk: 4.1.2
commander: 12.1.0
@@ -21429,6 +19830,12 @@ snapshots:
path-exists: 5.0.0
unicorn-magic: 0.1.0
+ fix-dts-default-cjs-exports@1.0.1:
+ dependencies:
+ magic-string: 0.30.19
+ mlly: 1.8.0
+ rollup: 4.52.4
+
flat-cache@4.0.1:
dependencies:
flatted: 3.3.3
@@ -21440,13 +19847,9 @@ snapshots:
flow-enums-runtime@0.0.6: {}
- flow-parser@0.263.0: {}
-
- follow-redirects@1.15.9: {}
-
- follow-redirects@1.15.9(debug@4.4.1):
+ follow-redirects@1.15.11(debug@4.4.3):
optionalDependencies:
- debug: 4.4.1
+ debug: 4.4.3
fontfaceobserver@2.3.0: {}
@@ -21459,31 +19862,19 @@ snapshots:
cross-spawn: 7.0.6
signal-exit: 3.0.7
- foreground-child@3.3.0:
+ foreground-child@3.3.1:
dependencies:
cross-spawn: 7.0.6
signal-exit: 4.1.0
form-data-encoder@1.7.2: {}
- form-data@3.0.3:
- dependencies:
- asynckit: 0.4.0
- combined-stream: 1.0.8
- es-set-tostringtag: 2.1.0
- mime-types: 2.1.35
-
- form-data@4.0.0:
- dependencies:
- asynckit: 0.4.0
- combined-stream: 1.0.8
- mime-types: 2.1.35
-
- form-data@4.0.2:
+ form-data@4.0.4:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
es-set-tostringtag: 2.1.0
+ hasown: 2.0.2
mime-types: 2.1.35
format@0.2.2: {}
@@ -21497,15 +19888,15 @@ snapshots:
fraction.js@4.3.7: {}
- framer-motion@12.17.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ framer-motion@12.23.24(@emotion/is-prop-valid@1.4.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- motion-dom: 12.17.0
- motion-utils: 12.12.1
+ motion-dom: 12.23.23
+ motion-utils: 12.23.6
tslib: 2.8.1
optionalDependencies:
- '@emotion/is-prop-valid': 1.3.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@emotion/is-prop-valid': 1.4.0
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
freeport-async@2.0.0: {}
@@ -21515,40 +19906,12 @@ snapshots:
fs-exists-sync@0.1.0: {}
- fs-extra@11.3.0:
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 2.0.1
-
- fs-extra@8.1.0:
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 4.0.0
- universalify: 0.1.2
-
- fs-extra@9.0.0:
+ fs-extra@11.3.2:
dependencies:
- at-least-node: 1.0.0
graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 1.0.0
-
- fs-extra@9.1.0:
- dependencies:
- at-least-node: 1.0.0
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
+ jsonfile: 6.2.0
universalify: 2.0.1
- fs-minipass@2.1.0:
- dependencies:
- minipass: 3.3.6
-
- fs-minipass@3.0.3:
- dependencies:
- minipass: 7.1.2
-
fs.realpath@1.0.0: {}
fsevents@2.3.2:
@@ -21590,6 +19953,8 @@ snapshots:
- encoding
- supports-color
+ generator-function@2.0.1: {}
+
gensync@1.0.0-beta.2: {}
get-caller-file@2.0.5: {}
@@ -21611,20 +19976,14 @@ snapshots:
get-package-type@0.1.0: {}
- get-port@3.2.0: {}
-
get-proto@1.0.1:
dependencies:
dunder-proto: 1.0.1
es-object-atoms: 1.1.1
- get-stream@4.1.0:
- dependencies:
- pump: 3.0.2
-
get-stream@5.2.0:
dependencies:
- pump: 3.0.2
+ pump: 3.0.3
get-stream@6.0.1: {}
@@ -21638,11 +19997,11 @@ snapshots:
dependencies:
basic-ftp: 5.0.5
data-uri-to-buffer: 6.0.2
- debug: 4.4.1
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
- getenv@1.0.0: {}
+ getenv@2.0.0: {}
git-raw-commits@4.0.0:
dependencies:
@@ -21658,17 +20017,24 @@ snapshots:
dependencies:
is-glob: 4.0.3
- glob-to-regexp@0.4.1: {}
-
glob@10.4.5:
dependencies:
- foreground-child: 3.3.0
+ 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
+ glob@11.0.3:
+ dependencies:
+ foreground-child: 3.3.1
+ jackspeak: 4.1.1
+ minimatch: 10.0.3
+ minipass: 7.1.2
+ package-json-from-dist: 1.0.1
+ path-scurry: 2.0.0
+
glob@7.2.3:
dependencies:
fs.realpath: 1.0.0
@@ -21686,6 +20052,13 @@ snapshots:
minimatch: 5.1.6
once: 1.4.0
+ glob@9.3.5:
+ dependencies:
+ fs.realpath: 1.0.0
+ minimatch: 8.0.4
+ minipass: 4.2.8
+ path-scurry: 1.11.1
+
global-directory@4.0.1:
dependencies:
ini: 4.1.1
@@ -21704,22 +20077,13 @@ snapshots:
globals@14.0.0: {}
- globals@16.0.0: {}
+ globals@16.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
-
google-auth-library@8.9.0:
dependencies:
arrify: 2.0.1
@@ -21763,18 +20127,18 @@ snapshots:
graphql: 16.11.0
tslib: 2.8.1
- graphql-yoga@5.15.1(graphql@16.11.0):
+ graphql-yoga@5.16.0(graphql@16.11.0):
dependencies:
- '@envelop/core': 5.3.0
+ '@envelop/core': 5.3.2
'@envelop/instrumentation': 1.0.0
- '@graphql-tools/executor': 1.4.7(graphql@16.11.0)
- '@graphql-tools/schema': 10.0.23(graphql@16.11.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.11.0)
+ '@graphql-tools/executor': 1.4.9(graphql@16.11.0)
+ '@graphql-tools/schema': 10.0.25(graphql@16.11.0)
+ '@graphql-tools/utils': 10.9.1(graphql@16.11.0)
'@graphql-yoga/logger': 2.0.1
'@graphql-yoga/subscription': 5.0.5
- '@whatwg-node/fetch': 0.10.8
+ '@whatwg-node/fetch': 0.10.11
'@whatwg-node/promise-helpers': 1.3.2
- '@whatwg-node/server': 0.10.10
+ '@whatwg-node/server': 0.10.13
dset: 3.1.4
graphql: 16.11.0
lru-cache: 10.4.3
@@ -21784,8 +20148,8 @@ snapshots:
groq-sdk@0.5.0:
dependencies:
- '@types/node': 18.19.118
- '@types/node-fetch': 2.6.12
+ '@types/node': 18.19.130
+ '@types/node-fetch': 2.6.13
abort-controller: 3.0.0
agentkeepalive: 4.6.0
form-data-encoder: 1.7.2
@@ -21810,8 +20174,6 @@ snapshots:
has-flag@4.0.0: {}
- has-own-prop@2.0.0: {}
-
has-property-descriptors@1.0.2:
dependencies:
es-define-property: 1.0.1
@@ -21861,7 +20223,7 @@ snapshots:
hast-util-to-parse5: 8.0.0
html-void-elements: 3.0.0
mdast-util-to-hast: 13.2.0
- parse5: 7.2.1
+ parse5: 7.3.0
unist-util-position: 5.0.0
unist-util-visit: 5.0.0
vfile: 6.0.3
@@ -21898,7 +20260,7 @@ snapshots:
space-separated-tokens: 2.0.2
style-to-js: 1.1.17
unist-util-position: 5.0.0
- vfile-message: 4.0.2
+ vfile-message: 4.0.3
transitivePeerDependencies:
- supports-color
@@ -21936,23 +20298,20 @@ snapshots:
he@1.2.0: {}
- headers-polyfill@4.0.3:
- optional: true
-
help-me@5.0.0: {}
- hermes-estree@0.23.1: {}
-
hermes-estree@0.25.1: {}
- hermes-parser@0.23.1:
- dependencies:
- hermes-estree: 0.23.1
+ hermes-estree@0.29.1: {}
hermes-parser@0.25.1:
dependencies:
hermes-estree: 0.25.1
+ hermes-parser@0.29.1:
+ dependencies:
+ hermes-estree: 0.29.1
+
highlight.js@10.7.3: {}
highlightjs-vue@1.0.0: {}
@@ -22004,15 +20363,15 @@ snapshots:
http-proxy-agent@7.0.2:
dependencies:
- agent-base: 7.1.3
- debug: 4.4.1
+ agent-base: 7.1.4
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
http-proxy@1.18.1:
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.9
+ follow-redirects: 1.15.11(debug@4.4.3)
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -22028,7 +20387,7 @@ snapshots:
mime: 1.6.0
minimist: 1.2.8
opener: 1.5.2
- portfinder: 1.0.32
+ portfinder: 1.0.38
secure-compare: 3.0.1
union: 0.5.0
url-join: 4.0.1
@@ -22039,14 +20398,14 @@ snapshots:
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.4.1
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
https-proxy-agent@7.0.6:
dependencies:
- agent-base: 7.1.3
- debug: 4.4.1
+ agent-base: 7.1.4
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
@@ -22056,24 +20415,25 @@ snapshots:
dependencies:
ms: 2.1.3
- hyphenate-style-name@1.1.0: {}
+ hyphenate-style-name@1.1.0:
+ optional: true
- ibm-cloud-sdk-core@5.4.0:
+ ibm-cloud-sdk-core@5.4.3:
dependencies:
'@types/debug': 4.1.12
- '@types/node': 18.19.118
+ '@types/node': 18.19.130
'@types/tough-cookie': 4.0.5
- axios: 1.8.4(debug@4.4.1)
+ axios: 1.12.2(debug@4.4.3)
camelcase: 6.3.0
- debug: 4.4.1
- dotenv: 16.4.7
+ debug: 4.4.3
+ dotenv: 16.6.1
extend: 3.0.2
file-type: 16.5.4
- form-data: 4.0.0
+ form-data: 4.0.4
isstream: 0.1.2
jsonwebtoken: 9.0.2
mime-types: 2.1.35
- retry-axios: 2.6.0(axios@1.8.4)
+ retry-axios: 2.6.0(axios@1.12.2(debug@4.4.3))
tough-cookie: 4.1.4
transitivePeerDependencies:
- supports-color
@@ -22090,9 +20450,9 @@ snapshots:
ignore@5.3.2: {}
- ignore@7.0.4: {}
+ ignore@7.0.5: {}
- image-size@1.2.0:
+ image-size@1.2.1:
dependencies:
queue: 6.0.2
@@ -22113,7 +20473,7 @@ snapshots:
pkg-dir: 4.2.0
resolve-cwd: 3.0.0
- import-meta-resolve@4.1.0: {}
+ import-meta-resolve@4.2.0: {}
imurmurhash@0.1.4: {}
@@ -22138,11 +20498,7 @@ snapshots:
dependencies:
css-in-js-utils: 3.1.0
fast-loops: 1.1.4
-
- internal-ip@4.3.0:
- dependencies:
- default-gateway: 4.2.0
- ipaddr.js: 1.9.1
+ optional: true
internal-slot@1.1.0:
dependencies:
@@ -22158,8 +20514,6 @@ snapshots:
ip-address@10.0.1: {}
- ip-regex@2.1.0: {}
-
ipaddr.js@1.9.1: {}
is-alphabetical@1.0.4: {}
@@ -22189,6 +20543,8 @@ snapshots:
is-arrayish@0.2.1: {}
+ is-arrayish@0.3.4: {}
+
is-async-function@2.1.1:
dependencies:
async-function: 1.0.0
@@ -22210,8 +20566,6 @@ snapshots:
call-bound: 1.0.4
has-tostringtag: 1.0.2
- is-buffer@1.1.6: {}
-
is-buffer@2.0.5: {}
is-callable@1.2.7: {}
@@ -22249,9 +20603,10 @@ snapshots:
is-generator-fn@2.1.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
@@ -22266,8 +20621,7 @@ snapshots:
is-map@2.0.3: {}
- is-node-process@1.2.0:
- optional: true
+ is-negative-zero@2.0.3: {}
is-number-object@1.1.1:
dependencies:
@@ -22278,18 +20632,10 @@ snapshots:
is-obj@2.0.0: {}
- is-path-cwd@2.2.0: {}
-
- is-path-inside@3.0.3: {}
-
is-plain-obj@2.1.0: {}
is-plain-obj@4.1.0: {}
- is-plain-object@2.0.4:
- dependencies:
- isobject: 3.0.1
-
is-potential-custom-element-name@1.0.1: {}
is-regex@1.2.1:
@@ -22305,8 +20651,6 @@ snapshots:
dependencies:
call-bound: 1.0.4
- is-stream@1.1.0: {}
-
is-stream@2.0.1: {}
is-string@1.1.1:
@@ -22353,8 +20697,6 @@ snapshots:
isexe@2.0.0: {}
- isobject@3.0.1: {}
-
isomorphic.js@0.2.5: {}
isstream@0.1.2: {}
@@ -22367,7 +20709,7 @@ snapshots:
istanbul-lib-instrument@4.0.3:
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -22376,8 +20718,8 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.26.10
- '@babel/parser': 7.28.0
+ '@babel/core': 7.28.4
+ '@babel/parser': 7.28.4
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -22386,11 +20728,11 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
- '@babel/core': 7.26.10
- '@babel/parser': 7.28.0
+ '@babel/core': 7.28.4
+ '@babel/parser': 7.28.4
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
- semver: 7.7.2
+ semver: 7.7.3
transitivePeerDependencies:
- supports-color
@@ -22411,7 +20753,7 @@ snapshots:
istanbul-lib-source-maps@4.0.1:
dependencies:
- debug: 4.4.1
+ debug: 4.4.3
istanbul-lib-coverage: 3.2.2
source-map: 0.6.1
transitivePeerDependencies:
@@ -22419,13 +20761,13 @@ snapshots:
istanbul-lib-source-maps@5.0.6:
dependencies:
- '@jridgewell/trace-mapping': 0.3.29
- debug: 4.4.1
+ '@jridgewell/trace-mapping': 0.3.31
+ debug: 4.4.3
istanbul-lib-coverage: 3.2.2
transitivePeerDependencies:
- supports-color
- istanbul-reports@3.1.7:
+ istanbul-reports@3.2.0:
dependencies:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.1
@@ -22445,6 +20787,10 @@ snapshots:
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
+ jackspeak@4.1.1:
+ dependencies:
+ '@isaacs/cliui': 8.0.2
+
jest-changed-files@29.7.0:
dependencies:
execa: 5.1.1
@@ -22457,10 +20803,10 @@ snapshots:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
chalk: 4.1.2
co: 4.6.0
- dedent: 1.5.3
+ dedent: 1.7.0
is-generator-fn: 2.1.0
jest-each: 29.7.0
jest-matcher-utils: 29.7.0
@@ -22477,16 +20823,16 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@29.7.0(@types/node@22.15.21):
+ jest-cli@29.7.0(@types/node@22.18.9):
dependencies:
'@jest/core': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@22.15.21)
+ create-jest: 29.7.0(@types/node@22.18.9)
exit: 0.1.2
import-local: 3.2.0
- jest-config: 29.7.0(@types/node@22.15.21)
+ jest-config: 29.7.0(@types/node@22.18.9)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -22496,12 +20842,12 @@ snapshots:
- supports-color
- ts-node
- jest-config@29.7.0(@types/node@22.15.21):
+ jest-config@29.7.0(@types/node@22.18.9):
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.26.10)
+ babel-jest: 29.7.0(@babel/core@7.28.4)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -22521,7 +20867,7 @@ snapshots:
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -22550,7 +20896,7 @@ snapshots:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -22560,7 +20906,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -22606,19 +20952,19 @@ snapshots:
jest-mock@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
jest-util: 29.7.0
- jest-playwright-preset@4.0.0(jest-circus@29.7.0)(jest-environment-node@29.7.0)(jest-runner@29.7.0)(jest@29.7.0(@types/node@22.15.21)):
+ jest-playwright-preset@4.0.0(jest-circus@29.7.0)(jest-environment-node@29.7.0)(jest-runner@29.7.0)(jest@29.7.0(@types/node@22.18.9)):
dependencies:
expect-playwright: 0.8.0
- jest: 29.7.0(@types/node@22.15.21)
+ jest: 29.7.0(@types/node@22.18.9)
jest-circus: 29.7.0
jest-environment-node: 29.7.0
jest-process-manager: 0.4.0
jest-runner: 29.7.0
nyc: 15.1.0
- playwright-core: 1.52.0
+ playwright-core: 1.56.0
rimraf: 3.0.2
uuid: 8.3.2
transitivePeerDependencies:
@@ -22635,7 +20981,7 @@ snapshots:
chalk: 4.1.2
cwd: 0.10.0
exit: 0.1.2
- find-process: 1.4.10
+ find-process: 1.4.11
prompts: 2.4.2
signal-exit: 3.0.7
spawnd: 5.0.0
@@ -22647,6 +20993,8 @@ snapshots:
jest-regex-util@29.6.3: {}
+ jest-regex-util@30.0.1: {}
+
jest-resolve-dependencies@29.7.0:
dependencies:
jest-regex-util: 29.6.3
@@ -22673,7 +21021,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -22701,7 +21049,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
chalk: 4.1.2
cjs-module-lexer: 1.4.3
collect-v8-coverage: 1.0.2
@@ -22725,15 +21073,15 @@ snapshots:
jest-snapshot@29.7.0:
dependencies:
- '@babel/core': 7.26.10
- '@babel/generator': 7.28.0
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.10)
- '@babel/types': 7.28.0
+ '@babel/core': 7.28.4
+ '@babel/generator': 7.28.3
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4)
+ '@babel/types': 7.28.4
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.10)
+ babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.4)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -22744,14 +21092,14 @@ snapshots:
jest-util: 29.7.0
natural-compare: 1.4.0
pretty-format: 29.7.0
- semver: 7.7.2
+ semver: 7.7.3
transitivePeerDependencies:
- supports-color
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -22766,47 +21114,41 @@ snapshots:
leven: 3.1.0
pretty-format: 29.7.0
- jest-watch-typeahead@2.2.2(jest@29.7.0(@types/node@22.15.21)):
+ jest-watch-typeahead@2.2.2(jest@29.7.0(@types/node@22.18.9)):
dependencies:
ansi-escapes: 6.2.1
- chalk: 5.4.1
- jest: 29.7.0(@types/node@22.15.21)
+ chalk: 5.6.2
+ jest: 29.7.0(@types/node@22.18.9)
jest-regex-util: 29.6.3
jest-watcher: 29.7.0
slash: 5.1.0
string-length: 5.0.1
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
jest-watcher@29.7.0:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
jest-util: 29.7.0
string-length: 4.0.2
- jest-worker@27.5.1:
- dependencies:
- '@types/node': 22.15.21
- merge-stream: 2.0.0
- supports-color: 8.1.1
-
jest-worker@29.7.0:
dependencies:
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@29.7.0(@types/node@22.15.21):
+ jest@29.7.0(@types/node@22.18.9):
dependencies:
'@jest/core': 29.7.0
'@jest/types': 29.6.3
import-local: 3.2.0
- jest-cli: 29.7.0(@types/node@22.15.21)
+ jest-cli: 29.7.0(@types/node@22.18.9)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -22817,7 +21159,7 @@ snapshots:
jiti@1.21.7: {}
- jiti@2.4.2: {}
+ jiti@2.6.1: {}
jju@1.4.0: {}
@@ -22829,13 +21171,11 @@ snapshots:
'@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
- join-component@1.1.0: {}
-
jose@5.10.0: {}
joycon@3.1.1: {}
- js-tiktoken@1.0.20:
+ js-tiktoken@1.0.21:
dependencies:
base64-js: 1.5.1
@@ -22852,67 +21192,37 @@ snapshots:
dependencies:
argparse: 2.0.1
- jsc-android@250231.0.0: {}
-
jsc-safe-url@0.2.4: {}
- jscodeshift@0.14.0(@babel/preset-env@7.26.9(@babel/core@7.26.10)):
- dependencies:
- '@babel/core': 7.26.10
- '@babel/parser': 7.28.0
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.10)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.10)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.10)
- '@babel/preset-env': 7.26.9(@babel/core@7.26.10)
- '@babel/preset-flow': 7.25.9(@babel/core@7.26.10)
- '@babel/preset-typescript': 7.26.0(@babel/core@7.26.10)
- '@babel/register': 7.25.9(@babel/core@7.26.10)
- babel-core: 7.0.0-bridge.0(@babel/core@7.26.10)
- chalk: 4.1.2
- flow-parser: 0.263.0
- graceful-fs: 4.2.11
- micromatch: 4.0.8
- neo-async: 2.6.2
- node-dir: 0.1.17
- recast: 0.21.5
- temp: 0.8.4
- write-file-atomic: 2.4.3
- transitivePeerDependencies:
- - supports-color
-
- jsdoc-type-pratt-parser@4.1.0: {}
+ jsdoc-type-pratt-parser@4.8.0: {}
- jsdom@26.0.0:
+ jsdom@26.1.0:
dependencies:
- cssstyle: 4.2.1
+ cssstyle: 4.6.0
data-urls: 5.0.0
- decimal.js: 10.5.0
- form-data: 4.0.2
+ decimal.js: 10.6.0
html-encoding-sniffer: 4.0.0
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.16
- parse5: 7.2.1
+ nwsapi: 2.2.22
+ parse5: 7.3.0
rrweb-cssom: 0.8.0
saxes: 6.0.0
symbol-tree: 3.2.4
- tough-cookie: 5.1.0
+ tough-cookie: 5.1.2
w3c-xmlserializer: 5.0.0
webidl-conversions: 7.0.0
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.0
- ws: 8.18.1
+ whatwg-url: 14.2.0
+ ws: 8.18.3
xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- jsesc@3.0.2: {}
-
jsesc@3.1.0: {}
json-bigint@1.0.0:
@@ -22935,11 +21245,7 @@ snapshots:
jsonc-parser@3.3.1: {}
- jsonfile@4.0.0:
- optionalDependencies:
- graceful-fs: 4.2.11
-
- jsonfile@6.1.0:
+ jsonfile@6.2.0:
dependencies:
universalify: 2.0.1
optionalDependencies:
@@ -22960,11 +21266,11 @@ snapshots:
lodash.isstring: 4.0.1
lodash.once: 4.1.1
ms: 2.1.3
- semver: 7.7.2
+ semver: 7.7.3
jsx-ast-utils@3.3.5:
dependencies:
- array-includes: 3.1.8
+ array-includes: 3.1.9
array.prototype.flat: 1.3.3
object.assign: 4.1.7
object.values: 1.2.1
@@ -22997,7 +21303,7 @@ snapshots:
jwa: 2.0.1
safe-buffer: 5.2.1
- katex@0.16.22:
+ katex@0.16.23:
dependencies:
commander: 8.3.0
@@ -23005,31 +21311,31 @@ snapshots:
dependencies:
json-buffer: 3.0.1
- kind-of@6.0.3: {}
-
kleur@3.0.3: {}
kleur@4.1.5: {}
kolorist@1.8.0: {}
- langchain@0.3.29(@langchain/aws@0.1.11(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))))(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(axios@1.8.4)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(ws@8.18.3):
+ lan-network@0.1.7: {}
+
+ langchain@0.3.35(@langchain/aws@0.1.15(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))))(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(axios@1.12.2)(openai@4.104.0(ws@8.18.3)(zod@3.25.76))(ws@8.18.3):
dependencies:
- '@langchain/core': 0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
- '@langchain/openai': 0.4.9(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(ws@8.18.3)
- '@langchain/textsplitters': 0.1.0(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))
- js-tiktoken: 1.0.20
+ '@langchain/core': 0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
+ '@langchain/openai': 0.4.9(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))(ws@8.18.3)
+ '@langchain/textsplitters': 0.1.0(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))
+ js-tiktoken: 1.0.21
js-yaml: 4.1.0
jsonpointer: 5.0.1
- langsmith: 0.3.45(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
+ langsmith: 0.3.73(openai@4.104.0(ws@8.18.3)(zod@3.25.76))
openapi-types: 12.1.3
p-retry: 4.6.2
uuid: 10.0.0
- yaml: 2.7.0
+ yaml: 2.8.1
zod: 3.25.76
optionalDependencies:
- '@langchain/aws': 0.1.11(@langchain/core@0.3.62(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))
- axios: 1.8.4(debug@4.4.1)
+ '@langchain/aws': 0.1.15(@langchain/core@0.3.78(openai@4.104.0(ws@8.18.3)(zod@3.25.76)))
+ axios: 1.12.2(debug@4.4.3)
transitivePeerDependencies:
- '@opentelemetry/api'
- '@opentelemetry/exporter-trace-otlp-proto'
@@ -23038,72 +21344,60 @@ snapshots:
- openai
- ws
- langsmith@0.3.45(openai@4.104.0(ws@8.18.3)(zod@3.25.76)):
- dependencies:
- '@types/uuid': 10.0.0
- chalk: 4.1.2
- console-table-printer: 2.14.6
- p-queue: 6.6.2
- p-retry: 4.6.2
- semver: 7.7.2
- uuid: 10.0.0
- optionalDependencies:
- openai: 4.104.0(ws@8.18.3)(zod@3.25.76)
-
- langsmith@0.3.65(openai@4.104.0(ws@8.18.3)(zod@3.25.76)):
+ langsmith@0.3.73(openai@4.104.0(ws@8.18.3)(zod@3.25.76)):
dependencies:
'@types/uuid': 10.0.0
chalk: 4.1.2
console-table-printer: 2.14.6
p-queue: 6.6.2
p-retry: 4.6.2
- semver: 7.7.2
+ semver: 7.7.3
uuid: 10.0.0
optionalDependencies:
openai: 4.104.0(ws@8.18.3)(zod@3.25.76)
- lefthook-darwin-arm64@1.11.3:
+ lefthook-darwin-arm64@1.13.6:
optional: true
- lefthook-darwin-x64@1.11.3:
+ lefthook-darwin-x64@1.13.6:
optional: true
- lefthook-freebsd-arm64@1.11.3:
+ lefthook-freebsd-arm64@1.13.6:
optional: true
- lefthook-freebsd-x64@1.11.3:
+ lefthook-freebsd-x64@1.13.6:
optional: true
- lefthook-linux-arm64@1.11.3:
+ lefthook-linux-arm64@1.13.6:
optional: true
- lefthook-linux-x64@1.11.3:
+ lefthook-linux-x64@1.13.6:
optional: true
- lefthook-openbsd-arm64@1.11.3:
+ lefthook-openbsd-arm64@1.13.6:
optional: true
- lefthook-openbsd-x64@1.11.3:
+ lefthook-openbsd-x64@1.13.6:
optional: true
- lefthook-windows-arm64@1.11.3:
+ lefthook-windows-arm64@1.13.6:
optional: true
- lefthook-windows-x64@1.11.3:
+ lefthook-windows-x64@1.13.6:
optional: true
- lefthook@1.11.3:
+ lefthook@1.13.6:
optionalDependencies:
- lefthook-darwin-arm64: 1.11.3
- lefthook-darwin-x64: 1.11.3
- lefthook-freebsd-arm64: 1.11.3
- lefthook-freebsd-x64: 1.11.3
- lefthook-linux-arm64: 1.11.3
- lefthook-linux-x64: 1.11.3
- lefthook-openbsd-arm64: 1.11.3
- lefthook-openbsd-x64: 1.11.3
- lefthook-windows-arm64: 1.11.3
- lefthook-windows-x64: 1.11.3
+ lefthook-darwin-arm64: 1.13.6
+ lefthook-darwin-x64: 1.13.6
+ lefthook-freebsd-arm64: 1.13.6
+ lefthook-freebsd-x64: 1.13.6
+ lefthook-linux-arm64: 1.13.6
+ lefthook-linux-x64: 1.13.6
+ lefthook-openbsd-arm64: 1.13.6
+ lefthook-openbsd-x64: 1.13.6
+ lefthook-windows-arm64: 1.13.6
+ lefthook-windows-x64: 1.13.6
leven@3.1.0: {}
@@ -23112,79 +21406,49 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- lib0@0.2.109:
+ lib0@0.2.114:
dependencies:
isomorphic.js: 0.2.5
- libphonenumber-js@1.12.10: {}
+ libphonenumber-js@1.12.24: {}
lighthouse-logger@1.4.2:
dependencies:
debug: 2.6.9
- marky: 1.2.5
+ marky: 1.3.0
transitivePeerDependencies:
- supports-color
lightningcss-darwin-arm64@1.27.0:
optional: true
- lightningcss-darwin-arm64@1.29.2:
- optional: true
-
lightningcss-darwin-x64@1.27.0:
optional: true
- lightningcss-darwin-x64@1.29.2:
- optional: true
-
lightningcss-freebsd-x64@1.27.0:
optional: true
- lightningcss-freebsd-x64@1.29.2:
- optional: true
-
lightningcss-linux-arm-gnueabihf@1.27.0:
optional: true
- lightningcss-linux-arm-gnueabihf@1.29.2:
- optional: true
-
lightningcss-linux-arm64-gnu@1.27.0:
optional: true
- lightningcss-linux-arm64-gnu@1.29.2:
- optional: true
-
lightningcss-linux-arm64-musl@1.27.0:
optional: true
- lightningcss-linux-arm64-musl@1.29.2:
- optional: true
-
lightningcss-linux-x64-gnu@1.27.0:
optional: true
- lightningcss-linux-x64-gnu@1.29.2:
- optional: true
-
lightningcss-linux-x64-musl@1.27.0:
optional: true
- lightningcss-linux-x64-musl@1.29.2:
- optional: true
-
lightningcss-win32-arm64-msvc@1.27.0:
optional: true
- lightningcss-win32-arm64-msvc@1.29.2:
- optional: true
-
lightningcss-win32-x64-msvc@1.27.0:
optional: true
- lightningcss-win32-x64-msvc@1.29.2:
- optional: true
-
lightningcss@1.27.0:
dependencies:
detect-libc: 1.0.3
@@ -23200,23 +21464,6 @@ snapshots:
lightningcss-win32-arm64-msvc: 1.27.0
lightningcss-win32-x64-msvc: 1.27.0
- lightningcss@1.29.2:
- dependencies:
- detect-libc: 2.0.3
- optionalDependencies:
- lightningcss-darwin-arm64: 1.29.2
- lightningcss-darwin-x64: 1.29.2
- lightningcss-freebsd-x64: 1.29.2
- lightningcss-linux-arm-gnueabihf: 1.29.2
- lightningcss-linux-arm64-gnu: 1.29.2
- lightningcss-linux-arm64-musl: 1.29.2
- lightningcss-linux-x64-gnu: 1.29.2
- lightningcss-linux-x64-musl: 1.29.2
- lightningcss-win32-arm64-msvc: 1.29.2
- lightningcss-win32-x64-msvc: 1.29.2
-
- lilconfig@2.1.0: {}
-
lilconfig@3.1.3: {}
lines-and-columns@1.2.4: {}
@@ -23229,7 +21476,7 @@ snapshots:
dependencies:
uc.micro: 2.1.0
- linkifyjs@4.2.0: {}
+ linkifyjs@4.3.2: {}
load-json-file@4.0.0:
dependencies:
@@ -23240,17 +21487,9 @@ snapshots:
load-tsconfig@0.2.5: {}
- loader-runner@4.3.0: {}
-
- loader-utils@2.0.4:
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 2.2.3
-
local-pkg@0.5.1:
dependencies:
- mlly: 1.7.4
+ mlly: 1.8.0
pkg-types: 1.3.1
locate-path@3.0.0:
@@ -23326,7 +21565,7 @@ snapshots:
dependencies:
js-tokens: 4.0.0
- loupe@3.1.4: {}
+ loupe@3.2.1: {}
lower-case@2.0.2:
dependencies:
@@ -23339,6 +21578,8 @@ snapshots:
lru-cache@10.4.3: {}
+ lru-cache@11.2.2: {}
+
lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
@@ -23349,40 +21590,35 @@ snapshots:
lru-cache@7.18.3: {}
- lucide-react-native@0.378.0(react-native-svg@15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1):
+ lucide-react-native@0.378.0(react-native-svg@15.11.2(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
dependencies:
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-svg: 15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-svg: 15.11.2(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
- lucide-react@0.383.0(react@18.3.1):
+ lucide-react@0.383.0(react@19.0.0):
dependencies:
- react: 18.3.1
+ react: 19.0.0
lz-string@1.5.0: {}
- magic-string@0.30.17:
+ magic-string@0.30.19:
dependencies:
- '@jridgewell/sourcemap-codec': 1.5.4
+ '@jridgewell/sourcemap-codec': 1.5.5
magicast@0.3.5:
dependencies:
- '@babel/parser': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/parser': 7.28.4
+ '@babel/types': 7.28.4
source-map-js: 1.2.1
- make-dir@2.1.0:
- dependencies:
- pify: 4.0.1
- semver: 5.7.2
-
make-dir@3.1.0:
dependencies:
semver: 6.3.1
make-dir@4.0.0:
dependencies:
- semver: 7.7.2
+ semver: 7.7.3
makeerror@1.0.12:
dependencies:
@@ -23409,20 +21645,10 @@ snapshots:
markdown-table@3.0.4: {}
- marky@1.2.5: {}
+ marky@1.3.0: {}
math-intrinsics@1.1.0: {}
- md5-file@3.2.3:
- dependencies:
- buffer-alloc: 1.2.0
-
- md5@2.3.0:
- dependencies:
- charenc: 0.0.2
- crypt: 0.0.2
- is-buffer: 1.1.6
-
mdast-util-definitions@5.1.2:
dependencies:
'@types/mdast': 3.0.15
@@ -23563,7 +21789,7 @@ snapshots:
parse-entities: 4.0.2
stringify-entities: 4.0.4
unist-util-stringify-position: 4.0.0
- vfile-message: 4.0.2
+ vfile-message: 4.0.3
transitivePeerDependencies:
- supports-color
@@ -23640,7 +21866,8 @@ snapshots:
memoize-one@5.2.1: {}
- memoize-one@6.0.0: {}
+ memoize-one@6.0.0:
+ optional: true
memoizerific@1.11.3:
dependencies:
@@ -23662,49 +21889,52 @@ snapshots:
methods@1.1.2: {}
- metro-babel-transformer@0.81.3:
+ metro-babel-transformer@0.82.5:
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.4
flow-enums-runtime: 0.0.6
- hermes-parser: 0.25.1
+ hermes-parser: 0.29.1
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- metro-cache-key@0.81.3:
+ metro-cache-key@0.82.5:
dependencies:
flow-enums-runtime: 0.0.6
- metro-cache@0.81.3:
+ metro-cache@0.82.5:
dependencies:
exponential-backoff: 3.1.2
flow-enums-runtime: 0.0.6
- metro-core: 0.81.3
+ https-proxy-agent: 7.0.6
+ metro-core: 0.82.5
+ transitivePeerDependencies:
+ - supports-color
- metro-config@0.81.3:
+ metro-config@0.82.5:
dependencies:
connect: 3.7.0
cosmiconfig: 5.2.1
flow-enums-runtime: 0.0.6
jest-validate: 29.7.0
- metro: 0.81.3
- metro-cache: 0.81.3
- metro-core: 0.81.3
- metro-runtime: 0.81.3
+ metro: 0.82.5
+ metro-cache: 0.82.5
+ metro-core: 0.82.5
+ metro-runtime: 0.82.5
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- metro-core@0.81.3:
+ metro-core@0.82.5:
dependencies:
flow-enums-runtime: 0.0.6
lodash.throttle: 4.1.1
- metro-resolver: 0.81.3
+ metro-resolver: 0.82.5
- metro-file-map@0.81.3:
+ metro-file-map@0.82.5:
dependencies:
- debug: 2.6.9
+ debug: 4.4.3
fb-watchman: 2.0.2
flow-enums-runtime: 0.0.6
graceful-fs: 4.2.11
@@ -23716,112 +21946,112 @@ snapshots:
transitivePeerDependencies:
- supports-color
- metro-minify-terser@0.81.3:
+ metro-minify-terser@0.82.5:
dependencies:
flow-enums-runtime: 0.0.6
- terser: 5.43.1
+ terser: 5.44.0
- metro-resolver@0.81.3:
+ metro-resolver@0.82.5:
dependencies:
flow-enums-runtime: 0.0.6
- metro-runtime@0.81.3:
+ metro-runtime@0.82.5:
dependencies:
- '@babel/runtime': 7.27.6
+ '@babel/runtime': 7.28.4
flow-enums-runtime: 0.0.6
- metro-source-map@0.81.3:
+ metro-source-map@0.82.5:
dependencies:
- '@babel/traverse': 7.28.0
- '@babel/traverse--for-generate-function-map': '@babel/traverse@7.28.0'
- '@babel/types': 7.28.0
+ '@babel/traverse': 7.28.4
+ '@babel/traverse--for-generate-function-map': '@babel/traverse@7.28.4'
+ '@babel/types': 7.28.4
flow-enums-runtime: 0.0.6
invariant: 2.2.4
- metro-symbolicate: 0.81.3
+ metro-symbolicate: 0.82.5
nullthrows: 1.1.1
- ob1: 0.81.3
+ ob1: 0.82.5
source-map: 0.5.7
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
- metro-symbolicate@0.81.3:
+ metro-symbolicate@0.82.5:
dependencies:
flow-enums-runtime: 0.0.6
invariant: 2.2.4
- metro-source-map: 0.81.3
+ metro-source-map: 0.82.5
nullthrows: 1.1.1
source-map: 0.5.7
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
- metro-transform-plugins@0.81.3:
+ metro-transform-plugins@0.82.5:
dependencies:
- '@babel/core': 7.26.10
- '@babel/generator': 7.28.0
+ '@babel/core': 7.28.4
+ '@babel/generator': 7.28.3
'@babel/template': 7.27.2
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.4
flow-enums-runtime: 0.0.6
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- metro-transform-worker@0.81.3:
+ metro-transform-worker@0.82.5:
dependencies:
- '@babel/core': 7.26.10
- '@babel/generator': 7.28.0
- '@babel/parser': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/core': 7.28.4
+ '@babel/generator': 7.28.3
+ '@babel/parser': 7.28.4
+ '@babel/types': 7.28.4
flow-enums-runtime: 0.0.6
- metro: 0.81.3
- metro-babel-transformer: 0.81.3
- metro-cache: 0.81.3
- metro-cache-key: 0.81.3
- metro-minify-terser: 0.81.3
- metro-source-map: 0.81.3
- metro-transform-plugins: 0.81.3
+ metro: 0.82.5
+ metro-babel-transformer: 0.82.5
+ metro-cache: 0.82.5
+ metro-cache-key: 0.82.5
+ metro-minify-terser: 0.82.5
+ metro-source-map: 0.82.5
+ metro-transform-plugins: 0.82.5
nullthrows: 1.1.1
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- metro@0.81.3:
+ metro@0.82.5:
dependencies:
'@babel/code-frame': 7.27.1
- '@babel/core': 7.26.10
- '@babel/generator': 7.28.0
- '@babel/parser': 7.28.0
+ '@babel/core': 7.28.4
+ '@babel/generator': 7.28.3
+ '@babel/parser': 7.28.4
'@babel/template': 7.27.2
- '@babel/traverse': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.4
accepts: 1.3.8
chalk: 4.1.2
ci-info: 2.0.0
connect: 3.7.0
- debug: 2.6.9
+ debug: 4.4.3
error-stack-parser: 2.1.4
flow-enums-runtime: 0.0.6
graceful-fs: 4.2.11
- hermes-parser: 0.25.1
- image-size: 1.2.0
+ hermes-parser: 0.29.1
+ 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.81.3
- metro-cache: 0.81.3
- metro-cache-key: 0.81.3
- metro-config: 0.81.3
- metro-core: 0.81.3
- metro-file-map: 0.81.3
- metro-resolver: 0.81.3
- metro-runtime: 0.81.3
- metro-source-map: 0.81.3
- metro-symbolicate: 0.81.3
- metro-transform-plugins: 0.81.3
- metro-transform-worker: 0.81.3
+ metro-babel-transformer: 0.82.5
+ metro-cache: 0.82.5
+ metro-cache-key: 0.82.5
+ metro-config: 0.82.5
+ metro-core: 0.82.5
+ metro-file-map: 0.82.5
+ metro-resolver: 0.82.5
+ metro-runtime: 0.82.5
+ metro-source-map: 0.82.5
+ metro-symbolicate: 0.82.5
+ metro-transform-plugins: 0.82.5
+ metro-transform-worker: 0.82.5
mime-types: 2.1.35
nullthrows: 1.1.1
serialize-error: 2.1.0
@@ -23934,7 +22164,7 @@ snapshots:
dependencies:
'@types/katex': 0.16.7
devlop: 1.1.0
- katex: 0.16.22
+ katex: 0.16.23
micromark-factory-space: 2.0.1
micromark-util-character: 2.1.1
micromark-util-symbol: 2.0.1
@@ -24127,7 +22357,7 @@ snapshots:
micromark@3.2.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.4.1
+ debug: 4.4.3
decode-named-character-reference: 1.2.0
micromark-core-commonmark: 1.1.0
micromark-factory-space: 1.1.0
@@ -24149,7 +22379,7 @@ snapshots:
micromark@4.0.2:
dependencies:
'@types/debug': 4.1.12
- debug: 4.4.1
+ debug: 4.4.3
decode-named-character-reference: 1.2.0
devlop: 1.1.0
micromark-core-commonmark: 2.0.3
@@ -24175,6 +22405,8 @@ snapshots:
mime-db@1.52.0: {}
+ mime-db@1.54.0: {}
+
mime-types@2.1.35:
dependencies:
mime-db: 1.52.0
@@ -24187,80 +22419,67 @@ snapshots:
min-indent@1.0.1: {}
+ minimatch@10.0.3:
+ dependencies:
+ '@isaacs/brace-expansion': 5.0.0
+
minimatch@3.0.8:
dependencies:
- brace-expansion: 1.1.11
+ brace-expansion: 1.1.12
minimatch@3.1.2:
dependencies:
- brace-expansion: 1.1.11
+ brace-expansion: 1.1.12
minimatch@5.1.6:
dependencies:
- brace-expansion: 2.0.1
-
- minimatch@9.0.5:
- dependencies:
- brace-expansion: 2.0.1
+ brace-expansion: 2.0.2
- minimist@1.2.8: {}
-
- minipass-collect@2.0.1:
- dependencies:
- minipass: 7.1.2
-
- minipass-flush@1.0.5:
+ minimatch@8.0.4:
dependencies:
- minipass: 3.3.6
+ brace-expansion: 2.0.2
- minipass-pipeline@1.2.4:
+ minimatch@9.0.5:
dependencies:
- minipass: 3.3.6
+ brace-expansion: 2.0.2
- minipass@3.3.6:
- dependencies:
- yallist: 4.0.0
+ minimist@1.2.8: {}
- minipass@5.0.0: {}
+ minipass@4.2.8: {}
minipass@7.1.2: {}
- minizlib@2.1.2:
+ minizlib@3.1.0:
dependencies:
- minipass: 3.3.6
- yallist: 4.0.0
+ minipass: 7.1.2
mitt@3.0.1: {}
- mkdirp@0.5.6:
- dependencies:
- minimist: 1.2.8
-
mkdirp@1.0.4: {}
- mlly@1.7.4:
+ mlly@1.8.0:
dependencies:
acorn: 8.15.0
pathe: 2.0.3
pkg-types: 1.3.1
- ufo: 1.5.4
+ ufo: 1.6.1
mockdate@3.0.5: {}
- motion-dom@12.17.0:
+ motion-dom@12.23.23:
dependencies:
- motion-utils: 12.12.1
+ motion-utils: 12.23.6
- motion-utils@12.12.1: {}
+ motion-utils@12.23.6: {}
- motion@12.17.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ motion@12.23.24(@emotion/is-prop-valid@1.4.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- framer-motion: 12.17.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ framer-motion: 12.23.24(@emotion/is-prop-valid@1.4.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
tslib: 2.8.1
optionalDependencies:
- '@emotion/is-prop-valid': 1.3.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@emotion/is-prop-valid': 1.4.0
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
mri@1.2.0: {}
@@ -24270,75 +22489,32 @@ snapshots:
ms@2.1.3: {}
- msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2):
- dependencies:
- '@bundled-es-modules/cookie': 2.0.1
- '@bundled-es-modules/statuses': 1.0.1
- '@bundled-es-modules/tough-cookie': 0.1.6
- '@inquirer/confirm': 5.1.14(@types/node@22.15.21)
- '@mswjs/interceptors': 0.39.3
- '@open-draft/deferred-promise': 2.2.0
- '@open-draft/until': 2.1.0
- '@types/cookie': 0.6.0
- '@types/statuses': 2.0.6
- graphql: 16.11.0
- headers-polyfill: 4.0.3
- is-node-process: 1.2.0
- outvariant: 1.4.3
- path-to-regexp: 6.3.0
- picocolors: 1.1.1
- strict-event-emitter: 0.5.1
- type-fest: 4.41.0
- yargs: 17.7.2
- optionalDependencies:
- typescript: 5.8.2
- transitivePeerDependencies:
- - '@types/node'
- optional: true
-
muggle-string@0.4.1: {}
mustache@4.2.0: {}
- mute-stream@2.0.0:
- optional: true
-
mz@2.7.0:
dependencies:
any-promise: 1.3.0
object-assign: 4.1.1
thenify-all: 1.6.0
- nanoid@3.3.8: {}
-
- nanoid@5.0.9: {}
+ nanoid@3.3.11: {}
nanoid@5.1.5: {}
+ nanoid@5.1.6: {}
+
nanospinner@1.2.2:
dependencies:
picocolors: 1.1.1
- nativewind@4.1.23(react-native-reanimated@3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.12.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-svg@15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)(tailwindcss@3.3.5):
- dependencies:
- comment-json: 4.2.5
- debug: 4.4.1
- react-native-css-interop: 0.1.22(react-native-reanimated@3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.12.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-svg@15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)(tailwindcss@3.3.5)
- tailwindcss: 3.3.5
- transitivePeerDependencies:
- - react
- - react-native
- - react-native-reanimated
- - react-native-safe-area-context
- - react-native-svg
- - supports-color
-
- nativewind@4.1.23(react-native-reanimated@3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.12.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-svg@15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.17):
+ nativewind@4.2.1(react-native-reanimated@3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.18(yaml@2.8.1)):
dependencies:
- comment-json: 4.2.5
- debug: 4.4.1
- react-native-css-interop: 0.1.22(react-native-reanimated@3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.12.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-svg@15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.17)
- tailwindcss: 3.4.17
+ comment-json: 4.4.1
+ debug: 4.4.3
+ react-native-css-interop: 0.2.1(react-native-reanimated@3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.18(yaml@2.8.1))
+ tailwindcss: 3.4.18(yaml@2.8.1)
transitivePeerDependencies:
- react
- react-native
@@ -24353,13 +22529,11 @@ snapshots:
negotiator@0.6.4: {}
- neo-async@2.6.2: {}
-
nested-error-stacks@2.0.1: {}
netmask@2.0.2: {}
- nice-grpc-client-middleware-retry@3.1.11:
+ nice-grpc-client-middleware-retry@3.1.12:
dependencies:
abort-controller-x: 0.4.3
nice-grpc-common: 2.0.2
@@ -24368,9 +22542,9 @@ snapshots:
dependencies:
ts-error: 1.0.6
- nice-grpc@2.1.12:
+ nice-grpc@2.1.13:
dependencies:
- '@grpc/grpc-js': 1.13.4
+ '@grpc/grpc-js': 1.14.0
abort-controller-x: 0.4.3
nice-grpc-common: 2.0.2
@@ -24381,10 +22555,6 @@ snapshots:
lower-case: 2.0.2
tslib: 2.8.1
- node-dir@0.1.17:
- dependencies:
- minimatch: 3.1.2
-
node-domexception@1.0.0: {}
node-fetch@2.7.0:
@@ -24399,7 +22569,7 @@ snapshots:
dependencies:
process-on-spawn: 1.1.0
- node-releases@2.0.19: {}
+ node-releases@2.0.23: {}
normalize-package-data@2.5.0:
dependencies:
@@ -24416,7 +22586,7 @@ snapshots:
dependencies:
hosted-git-info: 7.0.2
proc-log: 4.2.0
- semver: 7.7.2
+ semver: 7.7.3
validate-npm-package-name: 5.0.1
npm-run-all@4.1.5:
@@ -24431,10 +22601,6 @@ snapshots:
shell-quote: 1.8.3
string.prototype.padend: 3.1.6
- npm-run-path@2.0.2:
- dependencies:
- path-key: 2.0.1
-
npm-run-path@4.0.1:
dependencies:
path-key: 3.1.1
@@ -24449,7 +22615,7 @@ snapshots:
dependencies:
esm-env: esm-env-runtime@0.1.1
- nwsapi@2.2.16: {}
+ nwsapi@2.2.22: {}
nyc@15.1.0:
dependencies:
@@ -24469,7 +22635,7 @@ snapshots:
istanbul-lib-processinfo: 2.0.3
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 4.0.1
- istanbul-reports: 3.1.7
+ istanbul-reports: 3.2.0
make-dir: 3.1.0
node-preload: 0.2.1
p-map: 3.0.0
@@ -24483,7 +22649,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ob1@0.81.3:
+ ob1@0.82.5:
dependencies:
flow-enums-runtime: 0.0.6
@@ -24520,7 +22686,7 @@ snapshots:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
es-object-atoms: 1.1.1
object.values@1.2.1:
@@ -24540,7 +22706,7 @@ snapshots:
dependencies:
ee-first: 1.1.1
- on-headers@1.0.2: {}
+ on-headers@1.1.0: {}
once@1.4.0:
dependencies:
@@ -24567,8 +22733,8 @@ snapshots:
openai@4.104.0(ws@8.18.3)(zod@3.25.76):
dependencies:
- '@types/node': 18.19.118
- '@types/node-fetch': 2.6.12
+ '@types/node': 18.19.130
+ '@types/node-fetch': 2.6.13
abort-controller: 3.0.0
agentkeepalive: 4.6.0
form-data-encoder: 1.7.2
@@ -24604,12 +22770,7 @@ snapshots:
orderedmap@2.1.1: {}
- os-homedir@1.0.2: {}
-
- os-tmpdir@1.0.2: {}
-
- outvariant@1.4.3:
- optional: true
+ os-homedir@1.0.2: {}
own-keys@1.0.1:
dependencies:
@@ -24629,7 +22790,7 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.2.0
+ yocto-queue: 1.2.1
p-locate@3.0.0:
dependencies:
@@ -24651,10 +22812,6 @@ snapshots:
dependencies:
aggregate-error: 3.1.0
- p-map@4.0.0:
- dependencies:
- aggregate-error: 3.1.0
-
p-queue@6.6.2:
dependencies:
eventemitter3: 4.0.7
@@ -24674,8 +22831,8 @@ snapshots:
pac-proxy-agent@7.2.0:
dependencies:
'@tootallnate/quickjs-emscripten': 0.23.0
- agent-base: 7.1.3
- debug: 4.4.1
+ agent-base: 7.1.4
+ debug: 4.4.3
get-uri: 6.0.5
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
@@ -24723,13 +22880,13 @@ snapshots:
parse-json@4.0.0:
dependencies:
- error-ex: 1.3.2
+ error-ex: 1.3.4
json-parse-better-errors: 1.0.2
parse-json@5.2.0:
dependencies:
'@babel/code-frame': 7.27.1
- error-ex: 1.3.2
+ error-ex: 1.3.4
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -24739,19 +22896,14 @@ snapshots:
dependencies:
pngjs: 3.4.0
- parse5@7.2.1:
+ parse5@7.3.0:
dependencies:
- entities: 4.5.0
+ entities: 6.0.1
parseurl@1.3.3: {}
partial-json@0.1.7: {}
- password-prompt@1.1.3:
- dependencies:
- ansi-escapes: 4.3.2
- cross-spawn: 7.0.6
-
path-browserify@1.0.1: {}
path-exists@3.0.0: {}
@@ -24773,10 +22925,12 @@ snapshots:
lru-cache: 10.4.3
minipass: 7.1.2
- path-to-regexp@0.1.12: {}
+ path-scurry@2.0.0:
+ dependencies:
+ lru-cache: 11.2.2
+ minipass: 7.1.2
- path-to-regexp@6.3.0:
- optional: true
+ path-to-regexp@0.1.12: {}
path-type@3.0.0:
dependencies:
@@ -24786,7 +22940,7 @@ snapshots:
pathe@2.0.3: {}
- pathval@2.0.0: {}
+ pathval@2.0.1: {}
peek-readable@4.1.0: {}
@@ -24798,7 +22952,7 @@ snapshots:
picomatch@3.0.1: {}
- picomatch@4.0.2: {}
+ picomatch@4.0.3: {}
pidtree@0.3.1: {}
@@ -24806,8 +22960,6 @@ snapshots:
pify@3.0.0: {}
- pify@4.0.1: {}
-
pino-abstract-transport@2.0.0:
dependencies:
split2: 4.2.0
@@ -24823,7 +22975,7 @@ snapshots:
minimist: 1.2.8
on-exit-leak-free: 2.1.2
pino-abstract-transport: 2.0.0
- pump: 3.0.2
+ pump: 3.0.3
readable-stream: 4.7.0
secure-json-parse: 2.7.0
sonic-boom: 4.2.0
@@ -24831,10 +22983,9 @@ snapshots:
pino-std-serializers@7.0.0: {}
- pino@9.7.0:
+ pino@9.13.1:
dependencies:
atomic-sleep: 1.0.0
- fast-redact: 3.5.0
on-exit-leak-free: 2.1.2
pino-abstract-transport: 2.0.0
pino-std-serializers: 7.0.0
@@ -24842,14 +22993,11 @@ snapshots:
quick-format-unescaped: 4.0.4
real-require: 0.2.0
safe-stable-stringify: 2.5.0
+ slow-redact: 0.3.1
sonic-boom: 4.2.0
thread-stream: 3.1.0
- pirates@4.0.6: {}
-
- pkg-dir@3.0.0:
- dependencies:
- find-up: 3.0.0
+ pirates@4.0.7: {}
pkg-dir@4.2.0:
dependencies:
@@ -24858,20 +23006,24 @@ snapshots:
pkg-types@1.3.1:
dependencies:
confbox: 0.1.8
- mlly: 1.7.4
+ mlly: 1.8.0
pathe: 2.0.3
- playwright-core@1.52.0: {}
+ pkg-up@3.1.0:
+ dependencies:
+ find-up: 3.0.0
+
+ playwright-core@1.56.0: {}
- playwright@1.52.0:
+ playwright@1.56.0:
dependencies:
- playwright-core: 1.52.0
+ playwright-core: 1.56.0
optionalDependencies:
fsevents: 2.3.2
plist@3.1.0:
dependencies:
- '@xmldom/xmldom': 0.8.10
+ '@xmldom/xmldom': 0.8.11
base64-js: 1.5.1
xmlbuilder: 15.1.1
@@ -24879,55 +23031,55 @@ snapshots:
polished@4.3.1:
dependencies:
- '@babel/runtime': 7.27.6
+ '@babel/runtime': 7.28.4
- portfinder@1.0.32:
+ portfinder@1.0.38:
dependencies:
- async: 2.6.4
- debug: 3.2.7
- mkdirp: 0.5.6
+ async: 3.2.6
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
possible-typed-array-names@1.1.0: {}
- postcss-import@15.1.0(postcss@8.5.3):
+ postcss-import@15.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.3
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.10
- postcss-import@16.1.0(postcss@8.5.3):
+ postcss-import@16.1.1(postcss@8.5.6):
dependencies:
- postcss: 8.5.3
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.10
- postcss-js@4.0.1(postcss@8.5.3):
+ postcss-js@4.1.0(postcss@8.5.6):
dependencies:
camelcase-css: 2.0.1
- postcss: 8.5.3
+ postcss: 8.5.6
- postcss-load-config@4.0.2(postcss@8.5.3):
+ postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6)(yaml@2.8.1):
dependencies:
lilconfig: 3.1.3
- yaml: 2.7.0
optionalDependencies:
- postcss: 8.5.3
+ jiti: 1.21.7
+ postcss: 8.5.6
+ yaml: 2.8.1
- postcss-load-config@6.0.1(jiti@2.4.2)(postcss@8.5.3)(yaml@2.7.0):
+ postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.1):
dependencies:
lilconfig: 3.1.3
optionalDependencies:
- jiti: 2.4.2
- postcss: 8.5.3
- yaml: 2.7.0
+ jiti: 2.6.1
+ postcss: 8.5.6
+ yaml: 2.8.1
- postcss-nested@6.2.0(postcss@8.5.3):
+ postcss-nested@6.2.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.3
+ postcss: 8.5.6
postcss-selector-parser: 6.1.2
postcss-selector-parser@6.1.2:
@@ -24939,32 +23091,32 @@ snapshots:
postcss@8.4.49:
dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.11
picocolors: 1.1.1
source-map-js: 1.2.1
- postcss@8.5.3:
+ postcss@8.5.6:
dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.11
picocolors: 1.1.1
source-map-js: 1.2.1
prelude-ls@1.2.1: {}
- prettier-plugin-organize-imports@4.1.0(prettier@3.5.2)(typescript@5.8.2):
+ prettier-plugin-organize-imports@4.3.0(prettier@3.6.2)(typescript@5.9.3):
dependencies:
- prettier: 3.5.2
- typescript: 5.8.2
+ prettier: 3.6.2
+ typescript: 5.9.3
- prettier-plugin-tailwindcss@0.6.11(prettier-plugin-organize-imports@4.1.0(prettier@3.5.2)(typescript@5.8.2))(prettier@3.5.2):
+ prettier-plugin-tailwindcss@0.6.14(prettier-plugin-organize-imports@4.3.0(prettier@3.6.2)(typescript@5.9.3))(prettier@3.6.2):
dependencies:
- prettier: 3.5.2
+ prettier: 3.6.2
optionalDependencies:
- prettier-plugin-organize-imports: 4.1.0(prettier@3.5.2)(typescript@5.8.2)
+ prettier-plugin-organize-imports: 4.3.0(prettier@3.6.2)(typescript@5.9.3)
prettier@2.8.8: {}
- prettier@3.5.2: {}
+ prettier@3.6.2: {}
pretty-bytes@5.6.0: {}
@@ -24982,7 +23134,7 @@ snapshots:
prismjs@1.27.0: {}
- prismjs@1.29.0: {}
+ prismjs@1.30.0: {}
proc-log@4.2.0: {}
@@ -24999,6 +23151,7 @@ snapshots:
promise@7.3.1:
dependencies:
asap: 2.0.6
+ optional: true
promise@8.3.0:
dependencies:
@@ -25025,44 +23178,44 @@ snapshots:
prosemirror-changeset@2.3.1:
dependencies:
- prosemirror-transform: 1.10.3
+ prosemirror-transform: 1.10.4
prosemirror-collab@1.3.1:
dependencies:
prosemirror-state: 1.4.3
- prosemirror-commands@1.7.0:
+ prosemirror-commands@1.7.1:
dependencies:
- prosemirror-model: 1.25.0
+ prosemirror-model: 1.25.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.10.3
+ prosemirror-transform: 1.10.4
- prosemirror-dropcursor@1.8.1:
+ prosemirror-dropcursor@1.8.2:
dependencies:
prosemirror-state: 1.4.3
- prosemirror-transform: 1.10.3
- prosemirror-view: 1.38.1
+ prosemirror-transform: 1.10.4
+ prosemirror-view: 1.41.3
prosemirror-gapcursor@1.3.2:
dependencies:
- prosemirror-keymap: 1.2.2
- prosemirror-model: 1.25.0
+ prosemirror-keymap: 1.2.3
+ prosemirror-model: 1.25.3
prosemirror-state: 1.4.3
- prosemirror-view: 1.38.1
+ prosemirror-view: 1.41.3
prosemirror-history@1.4.1:
dependencies:
prosemirror-state: 1.4.3
- prosemirror-transform: 1.10.3
- prosemirror-view: 1.38.1
+ prosemirror-transform: 1.10.4
+ prosemirror-view: 1.41.3
rope-sequence: 1.3.4
prosemirror-inputrules@1.5.0:
dependencies:
prosemirror-state: 1.4.3
- prosemirror-transform: 1.10.3
+ prosemirror-transform: 1.10.4
- prosemirror-keymap@1.2.2:
+ prosemirror-keymap@1.2.3:
dependencies:
prosemirror-state: 1.4.3
w3c-keyname: 2.2.8
@@ -25071,62 +23224,62 @@ snapshots:
dependencies:
'@types/markdown-it': 14.1.2
markdown-it: 14.1.0
- prosemirror-model: 1.25.0
+ prosemirror-model: 1.25.3
- prosemirror-menu@1.2.4:
+ prosemirror-menu@1.2.5:
dependencies:
crelt: 1.0.6
- prosemirror-commands: 1.7.0
+ prosemirror-commands: 1.7.1
prosemirror-history: 1.4.1
prosemirror-state: 1.4.3
- prosemirror-model@1.25.0:
+ prosemirror-model@1.25.3:
dependencies:
orderedmap: 2.1.1
prosemirror-schema-basic@1.2.4:
dependencies:
- prosemirror-model: 1.25.0
+ prosemirror-model: 1.25.3
prosemirror-schema-list@1.5.1:
dependencies:
- prosemirror-model: 1.25.0
+ prosemirror-model: 1.25.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.10.3
+ prosemirror-transform: 1.10.4
prosemirror-state@1.4.3:
dependencies:
- prosemirror-model: 1.25.0
- prosemirror-transform: 1.10.3
- prosemirror-view: 1.38.1
+ prosemirror-model: 1.25.3
+ prosemirror-transform: 1.10.4
+ prosemirror-view: 1.41.3
- prosemirror-tables@1.6.4:
+ prosemirror-tables@1.8.1:
dependencies:
- prosemirror-keymap: 1.2.2
- prosemirror-model: 1.25.0
+ prosemirror-keymap: 1.2.3
+ prosemirror-model: 1.25.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.10.3
- prosemirror-view: 1.38.1
+ prosemirror-transform: 1.10.4
+ prosemirror-view: 1.41.3
- prosemirror-trailing-node@3.0.0(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1):
+ prosemirror-trailing-node@3.0.0(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3):
dependencies:
'@remirror/core-constants': 3.0.0
escape-string-regexp: 4.0.0
- prosemirror-model: 1.25.0
+ prosemirror-model: 1.25.3
prosemirror-state: 1.4.3
- prosemirror-view: 1.38.1
+ prosemirror-view: 1.41.3
- prosemirror-transform@1.10.3:
+ prosemirror-transform@1.10.4:
dependencies:
- prosemirror-model: 1.25.0
+ prosemirror-model: 1.25.3
- prosemirror-view@1.38.1:
+ prosemirror-view@1.41.3:
dependencies:
- prosemirror-model: 1.25.0
+ prosemirror-model: 1.25.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.10.3
+ prosemirror-transform: 1.10.4
- protobufjs@7.5.3:
+ protobufjs@7.5.4:
dependencies:
'@protobufjs/aspromise': 1.1.2
'@protobufjs/base64': 1.1.2
@@ -25138,7 +23291,7 @@ snapshots:
'@protobufjs/path': 1.1.2
'@protobufjs/pool': 1.1.0
'@protobufjs/utf8': 1.1.0
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
long: 5.3.2
proxy-addr@2.0.7:
@@ -25148,8 +23301,8 @@ snapshots:
proxy-agent@6.5.0:
dependencies:
- agent-base: 7.1.3
- debug: 4.4.1
+ agent-base: 7.1.4
+ debug: 4.4.3
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
lru-cache: 7.18.3
@@ -25165,24 +23318,26 @@ snapshots:
dependencies:
punycode: 2.3.1
- pump@3.0.2:
+ pump@3.0.3:
dependencies:
- end-of-stream: 1.4.4
+ end-of-stream: 1.4.5
once: 1.4.0
punycode.js@2.3.1: {}
punycode@2.3.1: {}
- puppeteer-core@24.15.0:
+ puppeteer-core@24.22.0:
dependencies:
- '@puppeteer/browsers': 2.10.6
- chromium-bidi: 7.2.0(devtools-protocol@0.0.1464554)
- debug: 4.4.1
- devtools-protocol: 0.0.1464554
+ '@puppeteer/browsers': 2.10.10
+ chromium-bidi: 8.0.0(devtools-protocol@0.0.1495869)
+ debug: 4.4.3
+ devtools-protocol: 0.0.1495869
typed-query-selector: 2.12.0
+ webdriver-bidi-protocol: 0.2.11
ws: 8.18.3
transitivePeerDependencies:
+ - bare-abort-controller
- bare-buffer
- bufferutil
- react-native-b4a
@@ -25220,10 +23375,6 @@ snapshots:
raf-schd@4.0.3: {}
- randombytes@2.1.0:
- dependencies:
- safe-buffer: 5.2.1
-
range-parser@1.2.1: {}
raw-body@2.5.2:
@@ -25240,12 +23391,12 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- react-day-picker@8.10.1(date-fns@3.6.0)(react@18.3.1):
+ react-day-picker@8.10.1(date-fns@3.6.0)(react@19.0.0):
dependencies:
date-fns: 3.6.0
- react: 18.3.1
+ react: 19.0.0
- react-devtools-core@5.3.2:
+ react-devtools-core@6.1.5:
dependencies:
shell-quote: 1.8.3
ws: 7.5.10
@@ -25253,38 +23404,39 @@ snapshots:
- bufferutil
- utf-8-validate
- react-docgen-typescript@2.4.0(typescript@5.8.2):
+ react-docgen-typescript@2.4.0(typescript@5.9.3):
dependencies:
- typescript: 5.8.2
+ typescript: 5.9.3
- react-docgen@8.0.0:
+ react-docgen@8.0.2:
dependencies:
- '@babel/core': 7.26.10
- '@babel/traverse': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/core': 7.28.4
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.4
'@types/babel__core': 7.20.5
- '@types/babel__traverse': 7.20.7
+ '@types/babel__traverse': 7.28.0
'@types/doctrine': 0.0.9
'@types/resolve': 1.20.6
doctrine: 3.0.0
resolve: 1.22.10
- strip-indent: 4.0.0
+ strip-indent: 4.1.0
transitivePeerDependencies:
- supports-color
- react-dom@18.3.1(react@18.3.1):
+ react-dom@19.0.0(react@19.0.0):
dependencies:
- loose-envify: 1.4.0
- react: 18.3.1
- scheduler: 0.23.2
+ react: 19.0.0
+ scheduler: 0.25.0
- react-freeze@1.0.4(react@18.3.1):
+ react-fast-compare@3.2.2: {}
+
+ react-freeze@1.0.4(react@19.0.0):
dependencies:
- react: 18.3.1
+ react: 19.0.0
- react-hook-form@7.54.2(react@18.3.1):
+ react-hook-form@7.64.0(react@19.0.0):
dependencies:
- react: 18.3.1
+ react: 19.0.0
react-is@16.13.1: {}
@@ -25292,16 +23444,18 @@ snapshots:
react-is@18.3.1: {}
- react-markdown@10.1.0(@types/react@18.3.18)(react@18.3.1):
+ react-is@19.2.0: {}
+
+ react-markdown@10.1.0(@types/react@19.0.14)(react@19.0.0):
dependencies:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
devlop: 1.1.0
hast-util-to-jsx-runtime: 2.3.6
html-url-attributes: 3.0.1
mdast-util-to-hast: 13.2.0
- react: 18.3.1
+ react: 19.0.0
remark-parse: 11.0.0
remark-rehype: 11.1.2
unified: 11.0.5
@@ -25310,17 +23464,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- react-markdown@8.0.7(@types/react@18.3.18)(react@18.3.1):
+ react-markdown@8.0.7(@types/react@19.0.14)(react@19.0.0):
dependencies:
'@types/hast': 2.3.10
- '@types/prop-types': 15.7.14
- '@types/react': 18.3.18
+ '@types/prop-types': 15.7.15
+ '@types/react': 19.0.14
'@types/unist': 2.0.11
comma-separated-tokens: 2.0.3
hast-util-whitespace: 2.0.1
prop-types: 15.8.1
property-information: 6.5.0
- react: 18.3.1
+ react: 19.0.0
react-is: 18.3.1
remark-parse: 10.0.2
remark-rehype: 10.1.0
@@ -25334,153 +23488,164 @@ snapshots:
react-masonry@1.0.7:
dependencies:
- react: 18.3.1
+ react: 19.0.0
- react-native-css-interop@0.1.22(react-native-reanimated@3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.12.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-svg@15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)(tailwindcss@3.3.5):
+ react-native-css-interop@0.2.1(react-native-reanimated@3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.18(yaml@2.8.1)):
dependencies:
'@babel/helper-module-imports': 7.27.1
- '@babel/traverse': 7.28.0
- '@babel/types': 7.28.0
- debug: 4.4.1
- lightningcss: 1.29.2
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-reanimated: 3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- semver: 7.7.2
- tailwindcss: 3.3.5
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.4
+ debug: 4.4.3
+ lightningcss: 1.27.0
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-reanimated: 3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ semver: 7.7.3
+ tailwindcss: 3.4.18(yaml@2.8.1)
optionalDependencies:
- react-native-safe-area-context: 4.12.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react-native-svg: 15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ react-native-safe-area-context: 5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
+ react-native-svg: 15.11.2(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
transitivePeerDependencies:
- supports-color
- react-native-css-interop@0.1.22(react-native-reanimated@3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.12.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native-svg@15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.17):
+ react-native-edge-to-edge@1.6.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/helper-module-imports': 7.27.1
- '@babel/traverse': 7.28.0
- '@babel/types': 7.28.0
- debug: 4.4.1
- lightningcss: 1.29.2
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
- react-native-reanimated: 3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- semver: 7.7.2
- tailwindcss: 3.4.17
- optionalDependencies:
- react-native-safe-area-context: 4.12.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- react-native-svg: 15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
- transitivePeerDependencies:
- - supports-color
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
react-native-fit-image@1.5.5:
dependencies:
prop-types: 15.8.1
- react-native-gesture-handler@2.25.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1):
+ react-native-gesture-handler@2.28.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
dependencies:
'@egjs/hammerjs': 2.0.17
hoist-non-react-statics: 3.3.2
invariant: 2.2.4
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+
+ react-native-is-edge-to-edge@1.1.7(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
+ dependencies:
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+
+ react-native-is-edge-to-edge@1.2.1(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
+ dependencies:
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
- react-native-markdown-display@7.0.2(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1):
+ react-native-markdown-display@7.0.2(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
dependencies:
css-to-react-native: 3.2.0
markdown-it: 10.0.0
prop-types: 15.8.1
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
react-native-fit-image: 1.5.5
- react-native-modal-datetime-picker@18.0.0(@react-native-community/datetimepicker@8.3.0(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)):
+ react-native-modal-datetime-picker@18.0.0(@react-native-community/datetimepicker@8.4.5(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)):
dependencies:
- '@react-native-community/datetimepicker': 8.3.0(expo@52.0.44(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)))(graphql@16.11.0)(react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ '@react-native-community/datetimepicker': 8.4.5(expo@53.0.23(@babel/core@7.28.4)(@expo/metro-runtime@5.0.5(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(graphql@16.11.0)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
prop-types: 15.8.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
-
- react-native-reanimated@3.16.7(@babel/core@7.26.10)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1):
- dependencies:
- '@babel/core': 7.26.10
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.26.10)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/preset-typescript': 7.26.0(@babel/core@7.26.10)
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+
+ react-native-reanimated@3.17.5(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.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)
convert-source-map: 2.0.0
invariant: 2.2.4
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-is-edge-to-edge: 1.1.7(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
transitivePeerDependencies:
- supports-color
- react-native-safe-area-context@4.12.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1):
+ react-native-safe-area-context@5.4.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
dependencies:
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
- react-native-screens@4.4.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1):
+ react-native-screens@4.16.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
dependencies:
- react: 18.3.1
- react-freeze: 1.0.4(react@18.3.1)
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-freeze: 1.0.4(react@19.0.0)
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ react-native-is-edge-to-edge: 1.2.1(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
warn-once: 0.1.1
- react-native-svg@15.8.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1):
+ react-native-svg@15.11.2(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
dependencies:
- css-select: 5.1.0
+ css-select: 5.2.2
css-tree: 1.1.3
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
warn-once: 0.1.1
- react-native-url-polyfill@2.0.0(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)):
+ react-native-url-polyfill@2.0.0(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)):
dependencies:
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
whatwg-url-without-unicode: 8.0.0-3
- react-native-web@0.19.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-native-web@0.19.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.27.6
+ '@babel/runtime': 7.28.4
'@react-native/normalize-colors': 0.74.89
fbjs: 3.0.5
inline-style-prefixer: 6.0.4
memoize-one: 6.0.0
nullthrows: 1.1.1
postcss-value-parser: 4.2.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
styleq: 0.1.3
transitivePeerDependencies:
- encoding
-
- react-native-webview@13.12.5(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1):
- dependencies:
- escape-string-regexp: 4.0.0
- invariant: 2.2.4
- react: 18.3.1
- react-native: 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1)
optional: true
- react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1):
+ react-native-worklets@0.6.1(@babel/core@7.28.4)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.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)
+ convert-source-map: 2.0.0
+ react: 19.0.0
+ react-native: 0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
+ semver: 7.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0):
dependencies:
'@jest/create-cache-key-function': 29.7.0
- '@react-native/assets-registry': 0.76.9
- '@react-native/codegen': 0.76.9(@babel/preset-env@7.26.9(@babel/core@7.26.10))
- '@react-native/community-cli-plugin': 0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))
- '@react-native/gradle-plugin': 0.76.9
- '@react-native/js-polyfills': 0.76.9
- '@react-native/normalize-colors': 0.76.9
- '@react-native/virtualized-lists': 0.76.9(@types/react@18.3.18)(react-native@0.76.9(@babel/core@7.26.10)(@babel/preset-env@7.26.9(@babel/core@7.26.10))(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ '@react-native/assets-registry': 0.79.5
+ '@react-native/codegen': 0.79.5(@babel/core@7.28.4)
+ '@react-native/community-cli-plugin': 0.79.5
+ '@react-native/gradle-plugin': 0.79.5
+ '@react-native/js-polyfills': 0.79.5
+ '@react-native/normalize-colors': 0.79.5
+ '@react-native/virtualized-lists': 0.79.5(@types/react@19.0.14)(react-native@0.79.5(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
- babel-jest: 29.7.0(@babel/core@7.26.10)
- babel-plugin-syntax-hermes-parser: 0.23.1
+ babel-jest: 29.7.0(@babel/core@7.28.4)
+ babel-plugin-syntax-hermes-parser: 0.25.1
base64-js: 1.5.1
chalk: 4.1.2
commander: 12.1.0
@@ -25489,125 +23654,103 @@ snapshots:
glob: 7.2.3
invariant: 2.2.4
jest-environment-node: 29.7.0
- jsc-android: 250231.0.0
memoize-one: 5.2.1
- metro-runtime: 0.81.3
- metro-source-map: 0.81.3
- mkdirp: 0.5.6
+ metro-runtime: 0.82.5
+ metro-source-map: 0.82.5
nullthrows: 1.1.1
pretty-format: 29.7.0
promise: 8.3.0
- react: 18.3.1
- react-devtools-core: 5.3.2
+ react: 19.0.0
+ react-devtools-core: 6.1.5
react-refresh: 0.14.2
regenerator-runtime: 0.13.11
- scheduler: 0.24.0-canary-efb381bbf-20230505
- semver: 7.7.2
+ scheduler: 0.25.0
+ semver: 7.7.3
stacktrace-parser: 0.1.11
whatwg-fetch: 3.6.20
ws: 6.2.3
yargs: 17.7.2
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
transitivePeerDependencies:
- '@babel/core'
- - '@babel/preset-env'
- '@react-native-community/cli'
- bufferutil
- - encoding
- supports-color
- utf-8-validate
react-refresh@0.14.2: {}
- react-remove-scroll-bar@2.3.8(@types/react@18.3.18)(react@18.3.1):
- dependencies:
- react: 18.3.1
- react-style-singleton: 2.2.3(@types/react@18.3.18)(react@18.3.1)
- tslib: 2.8.1
- optionalDependencies:
- '@types/react': 18.3.18
+ react-refresh@0.17.0: {}
- react-remove-scroll@2.6.3(@types/react@18.3.18)(react@18.3.1):
+ react-remove-scroll-bar@2.3.8(@types/react@19.0.14)(react@19.0.0):
dependencies:
- react: 18.3.1
- react-remove-scroll-bar: 2.3.8(@types/react@18.3.18)(react@18.3.1)
- react-style-singleton: 2.2.3(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-style-singleton: 2.2.3(@types/react@19.0.14)(react@19.0.0)
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@18.3.18)(react@18.3.1)
- use-sidecar: 1.1.3(@types/react@18.3.18)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- react-remove-scroll@2.7.1(@types/react@18.3.18)(react@18.3.1):
+ react-remove-scroll@2.7.1(@types/react@19.0.14)(react@19.0.0):
dependencies:
- react: 18.3.1
- react-remove-scroll-bar: 2.3.8(@types/react@18.3.18)(react@18.3.1)
- react-style-singleton: 2.2.3(@types/react@18.3.18)(react@18.3.1)
+ react: 19.0.0
+ react-remove-scroll-bar: 2.3.8(@types/react@19.0.14)(react@19.0.0)
+ react-style-singleton: 2.2.3(@types/react@19.0.14)(react@19.0.0)
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@18.3.18)(react@18.3.1)
- use-sidecar: 1.1.3(@types/react@18.3.18)(react@18.3.1)
+ use-callback-ref: 1.3.3(@types/react@19.0.14)(react@19.0.0)
+ use-sidecar: 1.1.3(@types/react@19.0.14)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
-
- react-shallow-renderer@16.15.0(react@18.3.1):
- dependencies:
- object-assign: 4.1.1
- react: 18.3.1
- react-is: 18.3.1
+ '@types/react': 19.0.14
- react-smooth@4.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-smooth@4.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- fast-equals: 5.2.2
+ fast-equals: 5.3.2
prop-types: 15.8.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-transition-group: 4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react-style-singleton@2.2.3(@types/react@18.3.18)(react@18.3.1):
+ react-style-singleton@2.2.3(@types/react@19.0.14)(react@19.0.0):
dependencies:
get-nonce: 1.0.1
- react: 18.3.1
+ react: 19.0.0
tslib: 2.8.1
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- react-syntax-highlighter@15.6.1(react@18.3.1):
+ react-syntax-highlighter@15.6.6(react@19.0.0):
dependencies:
- '@babel/runtime': 7.27.6
+ '@babel/runtime': 7.28.4
highlight.js: 10.7.3
highlightjs-vue: 1.0.0
lowlight: 1.20.0
- prismjs: 1.29.0
- react: 18.3.1
+ prismjs: 1.30.0
+ react: 19.0.0
refractor: 3.6.0
- react-test-renderer@18.3.1(react@18.3.1):
+ react-test-renderer@19.2.0(react@19.0.0):
dependencies:
- react: 18.3.1
- react-is: 18.3.1
- react-shallow-renderer: 16.15.0(react@18.3.1)
- scheduler: 0.23.2
+ react: 19.0.0
+ react-is: 19.2.0
+ scheduler: 0.27.0
- react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-transition-group@4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.27.6
+ '@babel/runtime': 7.28.4
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- react-uid@2.4.0(@types/react@18.3.18)(react@18.3.1):
+ react-uid@2.4.0(@types/react@19.0.14)(react@19.0.0):
dependencies:
- react: 18.3.1
+ react: 19.0.0
tslib: 2.8.1
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- react@18.3.1:
- dependencies:
- loose-envify: 1.4.0
+ react@19.0.0: {}
read-cache@1.0.0:
dependencies:
@@ -25641,19 +23784,10 @@ snapshots:
dependencies:
picomatch: 2.3.1
- readdirp@4.1.1: {}
-
- readline@1.3.0: {}
+ readdirp@4.1.2: {}
real-require@0.2.0: {}
- recast@0.21.5:
- dependencies:
- ast-types: 0.15.2
- esprima: 4.0.1
- source-map: 0.6.1
- tslib: 2.8.1
-
recast@0.23.11:
dependencies:
ast-types: 0.16.1
@@ -25666,15 +23800,15 @@ snapshots:
dependencies:
decimal.js-light: 2.5.1
- recharts@2.15.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ recharts@2.15.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
clsx: 2.1.1
eventemitter3: 4.0.7
lodash: 4.17.21
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
react-is: 18.3.1
- react-smooth: 4.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-smooth: 4.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
recharts-scale: 0.4.5
tiny-invariant: 1.3.3
victory-vendor: 36.9.2
@@ -25690,7 +23824,7 @@ snapshots:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
es-errors: 1.3.0
es-object-atoms: 1.1.1
get-intrinsic: 1.3.0
@@ -25703,7 +23837,7 @@ snapshots:
parse-entities: 2.0.0
prismjs: 1.27.0
- regenerate-unicode-properties@10.2.0:
+ regenerate-unicode-properties@10.2.2:
dependencies:
regenerate: 1.4.2
@@ -25720,20 +23854,20 @@ snapshots:
gopd: 1.2.0
set-function-name: 2.0.2
- regexpu-core@6.2.0:
+ regexpu-core@6.4.0:
dependencies:
regenerate: 1.4.2
- regenerate-unicode-properties: 10.2.0
+ regenerate-unicode-properties: 10.2.2
regjsgen: 0.8.0
- regjsparser: 0.12.0
+ regjsparser: 0.13.0
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.2.0
+ unicode-match-property-value-ecmascript: 2.2.1
regjsgen@0.8.0: {}
- regjsparser@0.12.0:
+ regjsparser@0.13.0:
dependencies:
- jsesc: 3.0.2
+ jsesc: 3.1.0
rehype-raw@7.0.0:
dependencies:
@@ -25809,10 +23943,6 @@ snapshots:
mdast-util-to-markdown: 2.1.2
unified: 11.0.5
- remove-trailing-slash@0.1.1: {}
-
- repeat-string@1.6.1: {}
-
require-directory@2.1.1: {}
require-from-string@2.0.2: {}
@@ -25827,6 +23957,8 @@ snapshots:
requires-port@1.0.0: {}
+ reselect@4.1.8: {}
+
resolve-cwd@3.0.0:
dependencies:
resolve-from: 5.0.0
@@ -25869,54 +24001,52 @@ snapshots:
onetime: 2.0.1
signal-exit: 3.0.7
- retry-axios@2.6.0(axios@1.8.4):
+ retry-axios@2.6.0(axios@1.12.2(debug@4.4.3)):
dependencies:
- axios: 1.8.4(debug@4.4.1)
+ axios: 1.12.2(debug@4.4.3)
retry@0.13.1: {}
- reusify@1.0.4: {}
-
- rimraf@2.6.3:
- dependencies:
- glob: 7.2.3
+ reusify@1.1.0: {}
rimraf@3.0.2:
dependencies:
glob: 7.2.3
- rollup-plugin-jsx-remove-attributes@3.1.1(@rollup/pluginutils@5.1.4(rollup@4.40.2))(astring@1.9.0)(estree-walker@3.0.3)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)):
+ rollup-plugin-jsx-remove-attributes@3.1.1(@rollup/pluginutils@5.3.0(rollup@4.52.4))(astring@1.9.0)(estree-walker@3.0.3)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)):
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.2)
+ '@rollup/pluginutils': 5.3.0(rollup@4.52.4)
astring: 1.9.0
estree-walker: 3.0.3
source-map: 0.7.4
- vite: 6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)
+ vite: 6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)
- rollup@4.40.2:
+ rollup@4.52.4:
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.40.2
- '@rollup/rollup-android-arm64': 4.40.2
- '@rollup/rollup-darwin-arm64': 4.40.2
- '@rollup/rollup-darwin-x64': 4.40.2
- '@rollup/rollup-freebsd-arm64': 4.40.2
- '@rollup/rollup-freebsd-x64': 4.40.2
- '@rollup/rollup-linux-arm-gnueabihf': 4.40.2
- '@rollup/rollup-linux-arm-musleabihf': 4.40.2
- '@rollup/rollup-linux-arm64-gnu': 4.40.2
- '@rollup/rollup-linux-arm64-musl': 4.40.2
- '@rollup/rollup-linux-loongarch64-gnu': 4.40.2
- '@rollup/rollup-linux-powerpc64le-gnu': 4.40.2
- '@rollup/rollup-linux-riscv64-gnu': 4.40.2
- '@rollup/rollup-linux-riscv64-musl': 4.40.2
- '@rollup/rollup-linux-s390x-gnu': 4.40.2
- '@rollup/rollup-linux-x64-gnu': 4.40.2
- '@rollup/rollup-linux-x64-musl': 4.40.2
- '@rollup/rollup-win32-arm64-msvc': 4.40.2
- '@rollup/rollup-win32-ia32-msvc': 4.40.2
- '@rollup/rollup-win32-x64-msvc': 4.40.2
+ '@rollup/rollup-android-arm-eabi': 4.52.4
+ '@rollup/rollup-android-arm64': 4.52.4
+ '@rollup/rollup-darwin-arm64': 4.52.4
+ '@rollup/rollup-darwin-x64': 4.52.4
+ '@rollup/rollup-freebsd-arm64': 4.52.4
+ '@rollup/rollup-freebsd-x64': 4.52.4
+ '@rollup/rollup-linux-arm-gnueabihf': 4.52.4
+ '@rollup/rollup-linux-arm-musleabihf': 4.52.4
+ '@rollup/rollup-linux-arm64-gnu': 4.52.4
+ '@rollup/rollup-linux-arm64-musl': 4.52.4
+ '@rollup/rollup-linux-loong64-gnu': 4.52.4
+ '@rollup/rollup-linux-ppc64-gnu': 4.52.4
+ '@rollup/rollup-linux-riscv64-gnu': 4.52.4
+ '@rollup/rollup-linux-riscv64-musl': 4.52.4
+ '@rollup/rollup-linux-s390x-gnu': 4.52.4
+ '@rollup/rollup-linux-x64-gnu': 4.52.4
+ '@rollup/rollup-linux-x64-musl': 4.52.4
+ '@rollup/rollup-openharmony-arm64': 4.52.4
+ '@rollup/rollup-win32-arm64-msvc': 4.52.4
+ '@rollup/rollup-win32-ia32-msvc': 4.52.4
+ '@rollup/rollup-win32-x64-gnu': 4.52.4
+ '@rollup/rollup-win32-x64-msvc': 4.52.4
fsevents: 2.3.3
rope-sequence@1.3.4: {}
@@ -25972,36 +24102,14 @@ snapshots:
dependencies:
xmlchars: 2.2.0
- scheduler@0.23.2:
- dependencies:
- loose-envify: 1.4.0
-
- scheduler@0.24.0-canary-efb381bbf-20230505:
- dependencies:
- loose-envify: 1.4.0
-
- schema-utils@2.7.1:
- dependencies:
- '@types/json-schema': 7.0.15
- ajv: 6.12.6
- ajv-keywords: 3.5.2(ajv@6.12.6)
+ scheduler@0.25.0: {}
- schema-utils@4.3.2:
- dependencies:
- '@types/json-schema': 7.0.15
- ajv: 8.17.1
- ajv-formats: 2.1.1(ajv@8.17.1)
- ajv-keywords: 5.1.0(ajv@8.17.1)
+ scheduler@0.27.0: {}
secure-compare@3.0.1: {}
secure-json-parse@2.7.0: {}
- selfsigned@2.4.1:
- dependencies:
- '@types/node-forge': 1.3.11
- node-forge: 1.3.1
-
semver@5.7.2: {}
semver@6.3.1: {}
@@ -26010,8 +24118,12 @@ snapshots:
dependencies:
lru-cache: 6.0.0
+ semver@7.6.3: {}
+
semver@7.7.2: {}
+ semver@7.7.3: {}
+
send@0.19.0:
dependencies:
debug: 2.6.9
@@ -26030,11 +24142,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
- serialize-error@2.1.0: {}
-
- serialize-javascript@6.0.2:
+ send@0.19.1:
dependencies:
- randombytes: 2.1.0
+ debug: 2.6.9
+ depd: 2.0.0
+ destroy: 1.2.0
+ encodeurl: 2.0.0
+ 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
+
+ serialize-error@2.1.0: {}
serve-static@1.16.2:
dependencies:
@@ -26045,6 +24171,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ server-only@0.0.1: {}
+
set-blocking@2.0.0: {}
set-function-length@1.2.2:
@@ -26073,9 +24201,7 @@ snapshots:
setprototypeof@1.2.0: {}
- shallow-clone@3.0.1:
- dependencies:
- kind-of: 6.0.3
+ shallowequal@1.1.0: {}
shebang-command@1.2.0:
dependencies:
@@ -26131,9 +24257,13 @@ snapshots:
bplist-parser: 0.3.1
plist: 3.1.0
+ simple-swizzle@0.2.4:
+ dependencies:
+ is-arrayish: 0.3.4
+
simple-wcswidth@1.1.2: {}
- sirv@3.0.1:
+ sirv@3.0.2:
dependencies:
'@polka/url': 1.0.0-next.29
mrmime: 2.0.1
@@ -26145,16 +24275,18 @@ snapshots:
dependencies:
bytes-iec: 3.1.1
chokidar: 4.0.3
- jiti: 2.4.2
+ jiti: 2.6.1
lilconfig: 3.1.3
nanospinner: 1.2.2
picocolors: 1.1.1
- tinyglobby: 0.2.13
+ tinyglobby: 0.2.15
slash@3.0.0: {}
slash@5.1.0: {}
+ slow-redact@0.3.1: {}
+
slugify@1.6.6: {}
smart-buffer@4.2.0: {}
@@ -26166,8 +24298,8 @@ snapshots:
socks-proxy-agent@8.0.5:
dependencies:
- agent-base: 7.1.3
- debug: 4.4.1
+ agent-base: 7.1.4
+ debug: 4.4.3
socks: 2.8.7
transitivePeerDependencies:
- supports-color
@@ -26228,31 +24360,23 @@ snapshots:
spdx-correct@3.2.0:
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.21
+ spdx-license-ids: 3.0.22
spdx-exceptions@2.5.0: {}
spdx-expression-parse@3.0.1:
dependencies:
spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.21
+ spdx-license-ids: 3.0.22
- spdx-license-ids@3.0.21: {}
+ spdx-license-ids@3.0.22: {}
split-on-first@1.1.0: {}
split2@4.2.0: {}
- split@1.0.1:
- dependencies:
- through: 2.3.8
-
sprintf-js@1.0.3: {}
- ssri@10.0.6:
- dependencies:
- minipass: 7.1.2
-
stack-utils@2.0.6:
dependencies:
escape-string-regexp: 2.0.0
@@ -26269,23 +24393,26 @@ snapshots:
statuses@2.0.1: {}
- std-env@3.8.1: {}
-
std-env@3.9.0: {}
+ stop-iteration-iterator@1.1.0:
+ dependencies:
+ es-errors: 1.3.0
+ internal-slot: 1.1.0
+
store2@2.14.4: {}
- storybook-addon-tag-badges@2.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))):
+ storybook-addon-tag-badges@2.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))):
dependencies:
- '@storybook/icons': 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- storybook: 9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ '@storybook/icons': 1.6.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ storybook: 9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
transitivePeerDependencies:
- react
- react-dom
storybook@8.6.14(prettier@2.8.8):
dependencies:
- '@storybook/core': 8.6.14(prettier@2.8.8)(storybook@8.6.14(prettier@2.8.8))
+ '@storybook/core': 8.6.14(prettier@2.8.8)(storybook@8.6.14(prettier@3.6.2))
optionalDependencies:
prettier: 2.8.8
transitivePeerDependencies:
@@ -26293,22 +24420,22 @@ snapshots:
- supports-color
- utf-8-validate
- storybook@9.1.3(@testing-library/dom@10.4.1)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(prettier@3.5.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)):
+ storybook@9.1.10(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)):
dependencies:
'@storybook/global': 5.0.0
- '@testing-library/jest-dom': 6.6.3
+ '@testing-library/jest-dom': 6.9.1
'@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1)
'@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ '@vitest/mocker': 3.2.4(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
'@vitest/spy': 3.2.4
better-opn: 3.0.2
- esbuild: 0.25.4
- esbuild-register: 3.6.0(esbuild@0.25.4)
+ esbuild: 0.25.10
+ esbuild-register: 3.6.0(esbuild@0.25.10)
recast: 0.23.11
- semver: 7.7.2
- ws: 8.18.1
+ semver: 7.7.3
+ ws: 8.18.3
optionalDependencies:
- prettier: 3.5.2
+ prettier: 3.6.2
transitivePeerDependencies:
- '@testing-library/dom'
- bufferutil
@@ -26319,18 +24446,15 @@ snapshots:
stream-buffers@2.2.0: {}
- streamx@2.22.1:
+ streamx@2.23.0:
dependencies:
+ events-universal: 1.0.1
fast-fifo: 1.3.2
text-decoder: 1.2.3
- optionalDependencies:
- bare-events: 2.6.1
transitivePeerDependencies:
+ - bare-abort-controller
- react-native-b4a
- strict-event-emitter@0.5.1:
- optional: true
-
strict-uri-encode@2.0.0: {}
string-argv@0.3.2: {}
@@ -26343,7 +24467,7 @@ snapshots:
string-length@5.0.1:
dependencies:
char-regex: 2.0.2
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
string-width@4.2.3:
dependencies:
@@ -26355,14 +24479,14 @@ snapshots:
dependencies:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
- strip-ansi: 7.1.0
+ 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.23.9
+ es-abstract: 1.24.0
es-errors: 1.3.0
es-object-atoms: 1.1.1
get-intrinsic: 1.3.0
@@ -26377,13 +24501,13 @@ snapshots:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
es-object-atoms: 1.1.1
string.prototype.repeat@1.0.0:
dependencies:
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
string.prototype.trim@1.2.10:
dependencies:
@@ -26391,7 +24515,7 @@ snapshots:
call-bound: 1.0.4
define-data-property: 1.1.4
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.24.0
es-object-atoms: 1.1.1
has-property-descriptors: 1.0.2
@@ -26425,30 +24549,30 @@ snapshots:
dependencies:
ansi-regex: 5.0.1
- strip-ansi@7.1.0:
+ strip-ansi@7.1.2:
dependencies:
- ansi-regex: 6.1.0
+ ansi-regex: 6.2.2
strip-bom@3.0.0: {}
strip-bom@4.0.0: {}
- strip-eof@1.0.0: {}
-
strip-final-newline@2.0.0: {}
strip-indent@3.0.0:
dependencies:
min-indent: 1.0.1
- strip-indent@4.0.0:
- dependencies:
- min-indent: 1.0.1
+ strip-indent@4.1.0: {}
strip-json-comments@2.0.1: {}
strip-json-comments@3.1.1: {}
+ strip-literal@3.1.0:
+ dependencies:
+ js-tokens: 9.0.1
+
strnum@2.1.1: {}
strtok3@6.3.0:
@@ -26470,22 +24594,19 @@ snapshots:
dependencies:
inline-style-parser: 0.2.4
- styleq@0.1.3: {}
+ styleq@0.1.3:
+ optional: true
sucrase@3.35.0:
dependencies:
- '@jridgewell/gen-mapping': 0.3.12
+ '@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.6
+ pirates: 4.0.7
ts-interface-checker: 0.1.13
- sudo-prompt@8.2.5: {}
-
- sudo-prompt@9.1.1: {}
-
supports-color@5.5.0:
dependencies:
has-flag: 3.0.0
@@ -26511,9 +24632,9 @@ snapshots:
dependencies:
'@trysound/sax': 0.2.0
commander: 7.2.0
- css-select: 5.1.0
+ css-select: 5.2.2
css-tree: 2.3.1
- css-what: 6.1.0
+ css-what: 6.2.2
csso: 5.0.5
picocolors: 1.1.1
@@ -26523,42 +24644,11 @@ snapshots:
tailwind-merge@2.6.0: {}
- tailwindcss-animate@1.0.7(tailwindcss@3.3.5):
- dependencies:
- tailwindcss: 3.3.5
-
- tailwindcss-animate@1.0.7(tailwindcss@3.4.17):
+ tailwindcss-animate@1.0.7(tailwindcss@3.4.18(yaml@2.8.1)):
dependencies:
- tailwindcss: 3.4.17
-
- tailwindcss@3.3.5:
- dependencies:
- '@alloc/quick-lru': 5.2.0
- arg: 5.0.2
- chokidar: 3.6.0
- didyoumean: 1.2.2
- dlv: 1.1.3
- fast-glob: 3.3.3
- glob-parent: 6.0.2
- is-glob: 4.0.3
- jiti: 1.21.7
- lilconfig: 2.1.0
- micromatch: 4.0.8
- normalize-path: 3.0.0
- object-hash: 3.0.0
- picocolors: 1.1.1
- postcss: 8.5.3
- postcss-import: 15.1.0(postcss@8.5.3)
- postcss-js: 4.0.1(postcss@8.5.3)
- postcss-load-config: 4.0.2(postcss@8.5.3)
- postcss-nested: 6.2.0(postcss@8.5.3)
- postcss-selector-parser: 6.1.2
- resolve: 1.22.10
- sucrase: 3.35.0
- transitivePeerDependencies:
- - ts-node
+ tailwindcss: 3.4.18(yaml@2.8.1)
- tailwindcss@3.4.17:
+ tailwindcss@3.4.18(yaml@2.8.1):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -26574,80 +24664,57 @@ snapshots:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.1.1
- postcss: 8.5.3
- postcss-import: 15.1.0(postcss@8.5.3)
- postcss-js: 4.0.1(postcss@8.5.3)
- postcss-load-config: 4.0.2(postcss@8.5.3)
- postcss-nested: 6.2.0(postcss@8.5.3)
+ postcss: 8.5.6
+ postcss-import: 15.1.0(postcss@8.5.6)
+ postcss-js: 4.1.0(postcss@8.5.6)
+ postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(yaml@2.8.1)
+ postcss-nested: 6.2.0(postcss@8.5.6)
postcss-selector-parser: 6.1.2
resolve: 1.22.10
sucrase: 3.35.0
transitivePeerDependencies:
- - ts-node
-
- tapable@2.2.2: {}
+ - tsx
+ - yaml
- tar-fs@3.1.0:
+ tar-fs@3.1.1:
dependencies:
- pump: 3.0.2
+ pump: 3.0.3
tar-stream: 3.1.7
optionalDependencies:
- bare-fs: 4.4.4
+ bare-fs: 4.4.9
bare-path: 3.0.0
transitivePeerDependencies:
+ - bare-abort-controller
- bare-buffer
- react-native-b4a
tar-stream@3.1.7:
dependencies:
- b4a: 1.7.1
+ b4a: 1.7.3
fast-fifo: 1.3.2
- streamx: 2.22.1
+ streamx: 2.23.0
transitivePeerDependencies:
+ - bare-abort-controller
- react-native-b4a
- tar@6.2.1:
+ tar@7.5.1:
dependencies:
- chownr: 2.0.0
- fs-minipass: 2.1.0
- minipass: 5.0.0
- minizlib: 2.1.2
- mkdirp: 1.0.4
- yallist: 4.0.0
+ '@isaacs/fs-minipass': 4.0.1
+ chownr: 3.0.0
+ minipass: 7.1.2
+ minizlib: 3.1.0
+ yallist: 5.0.0
temp-dir@2.0.0: {}
- temp@0.8.4:
- dependencies:
- rimraf: 2.6.3
-
- tempy@0.7.1:
- dependencies:
- del: 6.1.1
- is-stream: 2.0.1
- temp-dir: 2.0.0
- type-fest: 0.16.0
- unique-string: 2.0.0
-
terminal-link@2.1.1:
dependencies:
ansi-escapes: 4.3.2
supports-hyperlinks: 2.3.0
- terser-webpack-plugin@5.3.14(esbuild@0.25.4)(webpack@5.99.5(esbuild@0.25.4)):
- dependencies:
- '@jridgewell/trace-mapping': 0.3.29
- jest-worker: 27.5.1
- schema-utils: 4.3.2
- serialize-javascript: 6.0.2
- terser: 5.43.1
- webpack: 5.99.5(esbuild@0.25.4)
- optionalDependencies:
- esbuild: 0.25.4
-
- terser@5.43.1:
+ terser@5.44.0:
dependencies:
- '@jridgewell/source-map': 0.3.10
+ '@jridgewell/source-map': 0.3.11
acorn: 8.15.0
commander: 2.20.3
source-map-support: 0.5.21
@@ -26666,7 +24733,7 @@ snapshots:
text-decoder@1.2.3:
dependencies:
- b4a: 1.7.1
+ b4a: 1.7.3
transitivePeerDependencies:
- react-native-b4a
@@ -26696,35 +24763,28 @@ snapshots:
tinyexec@0.3.2: {}
- tinyglobby@0.2.13:
- dependencies:
- fdir: 6.4.4(picomatch@4.0.2)
- picomatch: 4.0.2
+ tinyexec@1.0.1: {}
- tinypool@1.0.2: {}
+ tinyglobby@0.2.15:
+ dependencies:
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
- tinyrainbow@1.2.0:
- optional: true
+ tinypool@1.1.1: {}
tinyrainbow@2.0.0: {}
- tinyspy@3.0.2: {}
-
- tinyspy@4.0.3: {}
+ tinyspy@4.0.4: {}
tippy.js@6.3.7:
dependencies:
'@popperjs/core': 2.11.8
- tldts-core@6.1.75: {}
-
- tldts@6.1.75:
- dependencies:
- tldts-core: 6.1.75
+ tldts-core@6.1.86: {}
- tmp@0.0.33:
+ tldts@6.1.86:
dependencies:
- os-tmpdir: 1.0.2
+ tldts-core: 6.1.86
tmpl@1.0.5: {}
@@ -26748,9 +24808,9 @@ snapshots:
universalify: 0.2.0
url-parse: 1.5.10
- tough-cookie@5.1.0:
+ tough-cookie@5.1.2:
dependencies:
- tldts: 6.1.75
+ tldts: 6.1.86
tr46@0.0.3: {}
@@ -26758,7 +24818,7 @@ snapshots:
dependencies:
punycode: 2.3.1
- tr46@5.0.0:
+ tr46@5.1.1:
dependencies:
punycode: 2.3.1
@@ -26768,9 +24828,9 @@ snapshots:
trough@2.2.0: {}
- ts-api-utils@2.1.0(typescript@5.8.2):
+ ts-api-utils@2.1.0(typescript@5.9.3):
dependencies:
- typescript: 5.8.2
+ typescript: 5.9.3
ts-dedent@2.2.0: {}
@@ -26786,29 +24846,60 @@ snapshots:
tslib@2.8.1: {}
- tsup@8.3.6(@microsoft/api-extractor@7.52.8(@types/node@22.15.21))(@swc/core@1.11.13(@swc/helpers@0.5.17))(jiti@2.4.2)(postcss@8.5.3)(typescript@5.8.2)(yaml@2.7.0):
+ tsup@8.5.0(@microsoft/api-extractor@7.52.8(@types/node@22.18.9))(@swc/core@1.13.5(@swc/helpers@0.5.17))(jiti@1.21.7)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.1):
dependencies:
- bundle-require: 5.1.0(esbuild@0.24.2)
+ bundle-require: 5.1.0(esbuild@0.25.10)
cac: 6.7.14
chokidar: 4.0.3
- consola: 3.4.0
- debug: 4.4.1
- esbuild: 0.24.2
+ consola: 3.4.2
+ debug: 4.4.3
+ esbuild: 0.25.10
+ fix-dts-default-cjs-exports: 1.0.1
joycon: 3.1.1
picocolors: 1.1.1
- postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.5.3)(yaml@2.7.0)
+ postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(yaml@2.8.1)
resolve-from: 5.0.0
- rollup: 4.40.2
+ rollup: 4.52.4
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tinyexec: 0.3.2
- tinyglobby: 0.2.13
+ tinyglobby: 0.2.15
tree-kill: 1.2.2
optionalDependencies:
- '@microsoft/api-extractor': 7.52.8(@types/node@22.15.21)
- '@swc/core': 1.11.13(@swc/helpers@0.5.17)
- postcss: 8.5.3
- typescript: 5.8.2
+ '@microsoft/api-extractor': 7.52.8(@types/node@22.18.9)
+ '@swc/core': 1.13.5(@swc/helpers@0.5.17)
+ postcss: 8.5.6
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - jiti
+ - supports-color
+ - tsx
+ - yaml
+
+ tsup@8.5.0(@microsoft/api-extractor@7.52.8(@types/node@22.18.9))(@swc/core@1.13.5(@swc/helpers@0.5.17))(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.1):
+ dependencies:
+ bundle-require: 5.1.0(esbuild@0.25.10)
+ cac: 6.7.14
+ chokidar: 4.0.3
+ consola: 3.4.2
+ debug: 4.4.3
+ esbuild: 0.25.10
+ fix-dts-default-cjs-exports: 1.0.1
+ joycon: 3.1.1
+ picocolors: 1.1.1
+ postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.1)
+ resolve-from: 5.0.0
+ rollup: 4.52.4
+ source-map: 0.8.0-beta.0
+ sucrase: 3.35.0
+ tinyexec: 0.3.2
+ tinyglobby: 0.2.15
+ tree-kill: 1.2.2
+ optionalDependencies:
+ '@microsoft/api-extractor': 7.52.8(@types/node@22.18.9)
+ '@swc/core': 1.13.5(@swc/helpers@0.5.17)
+ postcss: 8.5.6
+ typescript: 5.9.3
transitivePeerDependencies:
- jiti
- supports-color
@@ -26823,8 +24914,6 @@ snapshots:
type-detect@4.0.8: {}
- type-fest@0.16.0: {}
-
type-fest@0.21.3: {}
type-fest@0.7.1: {}
@@ -26833,18 +24922,15 @@ snapshots:
type-fest@2.19.0: {}
- type-fest@4.41.0:
- optional: true
-
type-graphql@2.0.0-rc.1(class-validator@0.14.2)(graphql-scalars@1.24.2(graphql@16.11.0))(graphql@16.11.0):
dependencies:
'@graphql-yoga/subscription': 5.0.5
- '@types/node': 22.15.21
- '@types/semver': 7.7.0
+ '@types/node': 22.18.9
+ '@types/semver': 7.7.1
graphql: 16.11.0
graphql-query-complexity: 0.12.0(graphql@16.11.0)
graphql-scalars: 1.24.2(graphql@16.11.0)
- semver: 7.7.2
+ semver: 7.7.3
tslib: 2.8.1
optionalDependencies:
class-validator: 0.14.2
@@ -26895,13 +24981,16 @@ snapshots:
typescript@5.8.2: {}
- ua-parser-js@1.0.40: {}
+ typescript@5.9.3: {}
+
+ ua-parser-js@1.0.41:
+ optional: true
uc.micro@1.0.6: {}
uc.micro@2.1.0: {}
- ufo@1.5.4: {}
+ ufo@1.6.1: {}
unbox-primitive@1.1.0:
dependencies:
@@ -26914,18 +25003,18 @@ snapshots:
undici-types@6.21.0: {}
- undici@6.21.2: {}
+ undici@6.22.0: {}
unicode-canonical-property-names-ecmascript@2.0.1: {}
unicode-match-property-ecmascript@2.0.0:
dependencies:
unicode-canonical-property-names-ecmascript: 2.0.1
- unicode-property-aliases-ecmascript: 2.1.0
+ unicode-property-aliases-ecmascript: 2.2.0
- unicode-match-property-value-ecmascript@2.2.0: {}
+ unicode-match-property-value-ecmascript@2.2.1: {}
- unicode-property-aliases-ecmascript@2.1.0: {}
+ unicode-property-aliases-ecmascript@2.2.0: {}
unicorn-magic@0.1.0: {}
@@ -26953,14 +25042,6 @@ snapshots:
dependencies:
qs: 6.14.0
- unique-filename@3.0.0:
- dependencies:
- unique-slug: 4.0.0
-
- unique-slug@4.0.0:
- dependencies:
- imurmurhash: 0.1.4
-
unique-string@2.0.0:
dependencies:
crypto-random-string: 2.0.0
@@ -27018,12 +25099,8 @@ snapshots:
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
- universalify@0.1.2: {}
-
universalify@0.2.0: {}
- universalify@1.0.0: {}
-
universalify@2.0.1: {}
unpipe@1.0.0: {}
@@ -27035,9 +25112,9 @@ snapshots:
untruncate-json@0.0.1: {}
- update-browserslist-db@1.1.3(browserslist@4.25.1):
+ update-browserslist-db@1.1.3(browserslist@4.26.3):
dependencies:
- browserslist: 4.25.1
+ browserslist: 4.26.3
escalade: 3.2.0
picocolors: 1.1.1
@@ -27054,39 +25131,39 @@ snapshots:
urlpattern-polyfill@10.1.0: {}
- urql@4.2.2(@urql/core@5.1.1(graphql@16.11.0))(react@18.3.1):
+ urql@4.2.2(@urql/core@5.2.0(graphql@16.11.0))(react@19.0.0):
dependencies:
- '@urql/core': 5.1.1(graphql@16.11.0)
- react: 18.3.1
+ '@urql/core': 5.2.0(graphql@16.11.0)
+ react: 19.0.0
wonka: 6.3.5
- use-callback-ref@1.3.3(@types/react@18.3.18)(react@18.3.1):
+ use-callback-ref@1.3.3(@types/react@19.0.14)(react@19.0.0):
dependencies:
- react: 18.3.1
+ react: 19.0.0
tslib: 2.8.1
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- use-latest-callback@0.2.3(react@18.3.1):
+ use-latest-callback@0.2.5(react@19.0.0):
dependencies:
- react: 18.3.1
+ react: 19.0.0
- use-sidecar@1.1.3(@types/react@18.3.18)(react@18.3.1):
+ use-sidecar@1.1.3(@types/react@19.0.14)(react@19.0.0):
dependencies:
detect-node-es: 1.1.0
- react: 18.3.1
+ react: 19.0.0
tslib: 2.8.1
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 19.0.14
- use-sync-external-store@1.5.0(react@18.3.1):
+ use-sync-external-store@1.6.0(react@19.0.0):
dependencies:
- react: 18.3.1
+ react: 19.0.0
- usehooks-ts@3.1.0(react@18.3.1):
+ usehooks-ts@3.1.1(react@19.0.0):
dependencies:
lodash.debounce: 4.0.8
- react: 18.3.1
+ react: 19.0.0
user-agent-data-types@0.4.2: {}
@@ -27096,7 +25173,7 @@ snapshots:
dependencies:
inherits: 2.0.4
is-arguments: 1.2.0
- is-generator-function: 1.1.0
+ is-generator-function: 1.1.2
is-typed-array: 1.1.15
which-typed-array: 1.1.19
@@ -27121,7 +25198,7 @@ snapshots:
v8-to-istanbul@9.3.0:
dependencies:
- '@jridgewell/trace-mapping': 0.3.29
+ '@jridgewell/trace-mapping': 0.3.31
'@types/istanbul-lib-coverage': 2.0.6
convert-source-map: 2.0.0
@@ -27136,11 +25213,11 @@ snapshots:
vary@1.1.2: {}
- vaul@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ vaul@1.1.2(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@radix-ui/react-dialog': 1.1.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-dialog': 1.1.15(@types/react-dom@18.3.7(@types/react@19.0.14))(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
@@ -27155,7 +25232,7 @@ snapshots:
'@types/unist': 2.0.11
unist-util-stringify-position: 3.0.3
- vfile-message@4.0.2:
+ vfile-message@4.0.3:
dependencies:
'@types/unist': 3.0.3
unist-util-stringify-position: 4.0.0
@@ -27170,14 +25247,14 @@ snapshots:
vfile@6.0.3:
dependencies:
'@types/unist': 3.0.3
- vfile-message: 4.0.2
+ vfile-message: 4.0.3
victory-vendor@36.9.2:
dependencies:
- '@types/d3-array': 3.2.1
+ '@types/d3-array': 3.2.2
'@types/d3-ease': 3.0.2
'@types/d3-interpolate': 3.0.4
- '@types/d3-scale': 4.0.8
+ '@types/d3-scale': 4.0.9
'@types/d3-shape': 3.1.7
'@types/d3-time': 3.0.4
'@types/d3-timer': 3.0.2
@@ -27189,13 +25266,13 @@ snapshots:
d3-time: 3.1.0
d3-timer: 3.0.1
- vite-node@3.0.7(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0):
+ vite-node@3.2.4(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1):
dependencies:
cac: 6.7.14
- debug: 4.4.1
+ debug: 4.4.3
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)
+ vite: 6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -27210,75 +25287,78 @@ snapshots:
- tsx
- yaml
- vite-plugin-dts@4.3.0(@types/node@22.15.21)(rollup@4.40.2)(typescript@5.8.2)(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)):
+ vite-plugin-dts@4.3.0(@types/node@22.18.9)(rollup@4.52.4)(typescript@5.9.3)(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)):
dependencies:
- '@microsoft/api-extractor': 7.52.8(@types/node@22.15.21)
- '@rollup/pluginutils': 5.1.4(rollup@4.40.2)
- '@volar/typescript': 2.4.11
- '@vue/language-core': 2.1.6(typescript@5.8.2)
+ '@microsoft/api-extractor': 7.52.8(@types/node@22.18.9)
+ '@rollup/pluginutils': 5.3.0(rollup@4.52.4)
+ '@volar/typescript': 2.4.23
+ '@vue/language-core': 2.1.6(typescript@5.9.3)
compare-versions: 6.1.1
- debug: 4.4.1
+ debug: 4.4.3
kolorist: 1.8.0
local-pkg: 0.5.1
- magic-string: 0.30.17
- typescript: 5.8.2
+ magic-string: 0.30.19
+ typescript: 5.9.3
optionalDependencies:
- vite: 6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)
+ vite: 6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite-plugin-lib-inject-css@2.2.1(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)):
+ vite-plugin-lib-inject-css@2.2.2(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)):
dependencies:
- '@ast-grep/napi': 0.32.3
- magic-string: 0.30.17
+ '@ast-grep/napi': 0.36.3
+ magic-string: 0.30.19
picocolors: 1.1.1
- vite: 6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)
+ vite: 6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)
- vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0):
+ vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1):
dependencies:
- esbuild: 0.25.4
- fdir: 6.4.4(picomatch@4.0.2)
- picomatch: 4.0.2
- postcss: 8.5.3
- rollup: 4.40.2
- tinyglobby: 0.2.13
+ esbuild: 0.25.10
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
+ postcss: 8.5.6
+ rollup: 4.52.4
+ tinyglobby: 0.2.15
optionalDependencies:
- '@types/node': 22.15.21
+ '@types/node': 22.18.9
fsevents: 2.3.3
- jiti: 2.4.2
- lightningcss: 1.29.2
- terser: 5.43.1
- yaml: 2.7.0
+ jiti: 2.6.1
+ lightningcss: 1.27.0
+ terser: 5.44.0
+ yaml: 2.8.1
- vitest@3.0.7(@types/debug@4.1.12)(@types/node@22.15.21)(@vitest/ui@3.0.7)(jiti@2.4.2)(jsdom@26.0.0)(lightningcss@1.29.2)(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(terser@5.43.1)(yaml@2.7.0):
+ vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(@vitest/ui@3.0.7)(jiti@2.6.1)(jsdom@26.1.0)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1):
dependencies:
- '@vitest/expect': 3.0.7
- '@vitest/mocker': 3.0.7(msw@2.10.4(@types/node@22.15.21)(typescript@5.8.2))(vite@6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0))
+ '@types/chai': 5.2.2
+ '@vitest/expect': 3.2.4
+ '@vitest/mocker': 3.2.4(vite@6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1))
'@vitest/pretty-format': 3.2.4
- '@vitest/runner': 3.0.7
- '@vitest/snapshot': 3.0.7
- '@vitest/spy': 3.0.7
- '@vitest/utils': 3.0.7
- chai: 5.2.0
- debug: 4.4.1
- expect-type: 1.2.0
- magic-string: 0.30.17
+ '@vitest/runner': 3.2.4
+ '@vitest/snapshot': 3.2.4
+ '@vitest/spy': 3.2.4
+ '@vitest/utils': 3.2.4
+ chai: 5.3.3
+ debug: 4.4.3
+ expect-type: 1.2.2
+ magic-string: 0.30.19
pathe: 2.0.3
- std-env: 3.8.1
+ picomatch: 4.0.3
+ std-env: 3.9.0
tinybench: 2.9.0
tinyexec: 0.3.2
- tinypool: 1.0.2
+ tinyglobby: 0.2.15
+ tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 6.3.5(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)
- vite-node: 3.0.7(@types/node@22.15.21)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.43.1)(yaml@2.7.0)
+ vite: 6.3.6(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)
+ vite-node: 3.2.4(@types/node@22.18.9)(jiti@2.6.1)(lightningcss@1.27.0)(terser@5.44.0)(yaml@2.8.1)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/debug': 4.1.12
- '@types/node': 22.15.21
- '@vitest/ui': 3.0.7(vitest@3.0.7)
- jsdom: 26.0.0
+ '@types/node': 22.18.9
+ '@vitest/ui': 3.0.7(vitest@3.2.4)
+ jsdom: 26.1.0
transitivePeerDependencies:
- jiti
- less
@@ -27295,7 +25375,7 @@ snapshots:
vlq@1.0.1: {}
- vscode-uri@3.0.8: {}
+ vscode-uri@3.1.0: {}
w3c-keyname@2.2.8: {}
@@ -27305,7 +25385,7 @@ snapshots:
wait-on@7.2.0:
dependencies:
- axios: 1.8.4
+ axios: 1.12.2(debug@4.4.3)
joi: 17.13.3
lodash: 4.17.21
minimist: 1.2.8
@@ -27317,7 +25397,7 @@ snapshots:
dependencies:
chalk: 2.4.2
commander: 3.0.2
- debug: 4.4.1
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
@@ -27327,23 +25407,18 @@ snapshots:
warn-once@0.1.1: {}
- watchpack@2.4.4:
- dependencies:
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
-
wcwidth@1.0.1:
dependencies:
defaults: 1.0.4
- weaviate-client@3.6.2:
+ weaviate-client@3.9.0:
dependencies:
abort-controller-x: 0.4.3
graphql: 16.11.0
graphql-request: 6.1.0(graphql@16.11.0)
long: 5.3.2
- nice-grpc: 2.1.12
- nice-grpc-client-middleware-retry: 3.1.11
+ nice-grpc: 2.1.13
+ nice-grpc-client-middleware-retry: 3.1.12
nice-grpc-common: 2.0.2
uuid: 9.0.1
transitivePeerDependencies:
@@ -27355,6 +25430,8 @@ snapshots:
web-streams-polyfill@4.0.0-beta.3: {}
+ webdriver-bidi-protocol@0.2.11: {}
+
webidl-conversions@3.0.1: {}
webidl-conversions@4.0.2: {}
@@ -27363,40 +25440,8 @@ snapshots:
webidl-conversions@7.0.0: {}
- webpack-sources@3.3.3: {}
-
webpack-virtual-modules@0.6.2: {}
- webpack@5.99.5(esbuild@0.25.4):
- dependencies:
- '@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.8
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/wasm-edit': 1.14.1
- '@webassemblyjs/wasm-parser': 1.14.1
- acorn: 8.15.0
- browserslist: 4.25.1
- chrome-trace-event: 1.0.4
- enhanced-resolve: 5.18.2
- es-module-lexer: 1.7.0
- eslint-scope: 5.1.1
- events: 3.3.0
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
- json-parse-even-better-errors: 2.3.1
- loader-runner: 4.3.0
- mime-types: 2.1.35
- neo-async: 2.6.2
- schema-utils: 4.3.2
- tapable: 2.2.2
- terser-webpack-plugin: 5.3.14(esbuild@0.25.4)(webpack@5.99.5(esbuild@0.25.4))
- watchpack: 2.4.4
- webpack-sources: 3.3.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
-
whatwg-encoding@2.0.0:
dependencies:
iconv-lite: 0.6.3
@@ -27415,9 +25460,9 @@ snapshots:
punycode: 2.3.1
webidl-conversions: 5.0.0
- whatwg-url@14.1.0:
+ whatwg-url@14.2.0:
dependencies:
- tr46: 5.0.0
+ tr46: 5.1.1
webidl-conversions: 7.0.0
whatwg-url@5.0.0:
@@ -27449,7 +25494,7 @@ 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
@@ -27507,18 +25552,12 @@ snapshots:
wrap-ansi@8.1.0:
dependencies:
- ansi-styles: 6.2.1
+ ansi-styles: 6.2.3
string-width: 5.1.2
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
wrappy@1.0.2: {}
- write-file-atomic@2.4.3:
- dependencies:
- graceful-fs: 4.2.11
- imurmurhash: 0.1.4
- signal-exit: 3.0.7
-
write-file-atomic@3.0.3:
dependencies:
imurmurhash: 0.1.4
@@ -27537,8 +25576,6 @@ snapshots:
ws@7.5.10: {}
- ws@8.18.1: {}
-
ws@8.18.3: {}
xcode@3.0.1:
@@ -27557,26 +25594,24 @@ snapshots:
xmlbuilder@11.0.1: {}
- xmlbuilder@14.0.0: {}
-
xmlbuilder@15.1.1: {}
xmlchars@2.2.0: {}
xtend@4.0.2: {}
- y-prosemirror@1.3.6(prosemirror-model@1.25.0)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27):
+ y-prosemirror@1.3.7(prosemirror-model@1.25.3)(prosemirror-state@1.4.3)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27):
dependencies:
- lib0: 0.2.109
- prosemirror-model: 1.25.0
+ lib0: 0.2.114
+ prosemirror-model: 1.25.3
prosemirror-state: 1.4.3
- prosemirror-view: 1.38.1
+ prosemirror-view: 1.41.3
y-protocols: 1.0.6(yjs@13.6.27)
yjs: 13.6.27
y-protocols@1.0.6(yjs@13.6.27):
dependencies:
- lib0: 0.2.109
+ lib0: 0.2.114
yjs: 13.6.27
y18n@4.0.3: {}
@@ -27587,7 +25622,9 @@ snapshots:
yallist@4.0.0: {}
- yaml@2.7.0: {}
+ yallist@5.0.0: {}
+
+ yaml@2.8.1: {}
yargs-parser@18.1.3:
dependencies:
@@ -27627,14 +25664,11 @@ snapshots:
yjs@13.6.27:
dependencies:
- lib0: 0.2.109
+ lib0: 0.2.114
yocto-queue@0.1.0: {}
- yocto-queue@1.2.0: {}
-
- yoctocolors-cjs@2.1.2:
- optional: true
+ yocto-queue@1.2.1: {}
zen-observable-ts@1.1.0:
dependencies:
@@ -27649,11 +25683,11 @@ snapshots:
zod@3.25.76: {}
- zustand@4.5.6(@types/react@18.3.18)(react@18.3.1):
+ zustand@4.5.7(@types/react@19.0.14)(react@19.0.0):
dependencies:
- use-sync-external-store: 1.5.0(react@18.3.1)
+ use-sync-external-store: 1.6.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.18
- react: 18.3.1
+ '@types/react': 19.0.14
+ react: 19.0.0
zwitch@2.0.4: {}