diff --git a/docs/functions/client_color_switch_color_switch.ColorSwitch.html b/docs/functions/client_color_switch_color_switch.ColorSwitch.html index 7ea66ed0..3161371c 100644 --- a/docs/functions/client_color_switch_color_switch.ColorSwitch.html +++ b/docs/functions/client_color_switch_color_switch.ColorSwitch.html @@ -6,4 +6,4 @@
<ColorSwitch size={20} skipSystem />
 
-
+
diff --git a/docs/functions/client_force_color_scheme_force_color_scheme.ForceColorScheme.html b/docs/functions/client_force_color_scheme_force_color_scheme.ForceColorScheme.html index b24a9295..ab3ca282 100644 --- a/docs/functions/client_force_color_scheme_force_color_scheme.ForceColorScheme.html +++ b/docs/functions/client_force_color_scheme_force_color_scheme.ForceColorScheme.html @@ -1,2 +1,2 @@ ForceColorScheme | Nextjs Themes

Force color scheme on a page

-
+
diff --git a/docs/functions/client_force_theme_force_theme.ForceTheme.html b/docs/functions/client_force_theme_force_theme.ForceTheme.html index 2db576f6..c2b32fd5 100644 --- a/docs/functions/client_force_theme_force_theme.ForceTheme.html +++ b/docs/functions/client_force_theme_force_theme.ForceTheme.html @@ -1,2 +1,2 @@ ForceTheme | Nextjs Themes

Force theme on a page

-
  • Parameters

    • props: {
          targetSelector?: string;
          theme: string;
      }
      • OptionaltargetSelector?: string
      • theme: string

    Returns null

+
diff --git a/docs/functions/client_switcher_switcher.Switcher.html b/docs/functions/client_switcher_switcher.Switcher.html index 4aeffcb6..d33f5077 100644 --- a/docs/functions/client_switcher_switcher.Switcher.html +++ b/docs/functions/client_switcher_switcher.Switcher.html @@ -3,4 +3,4 @@
<Switcher targetSelector="#container1" />
 
-
+
diff --git a/docs/functions/client_theme_switcher_theme_switcher.ThemeSwitcher.html b/docs/functions/client_theme_switcher_theme_switcher.ThemeSwitcher.html index a732a376..1bc0be9c 100644 --- a/docs/functions/client_theme_switcher_theme_switcher.ThemeSwitcher.html +++ b/docs/functions/client_theme_switcher_theme_switcher.ThemeSwitcher.html @@ -3,4 +3,4 @@
<ThemeSwitcher [...props] />
 
-
+
diff --git a/docs/functions/hooks_use_theme.useTheme.html b/docs/functions/hooks_use_theme.useTheme.html index 3b0e2fe3..3e44f4dc 100644 --- a/docs/functions/hooks_use_theme.useTheme.html +++ b/docs/functions/hooks_use_theme.useTheme.html @@ -1,4 +1,4 @@ useTheme | Nextjs Themes
const [] = useTheme(options);
 
-
+
diff --git a/docs/interfaces/client_color_switch_color_switch.ColorSwitchProps.html b/docs/interfaces/client_color_switch_color_switch.ColorSwitchProps.html index 24602125..e3d81c1d 100644 --- a/docs/interfaces/client_color_switch_color_switch.ColorSwitchProps.html +++ b/docs/interfaces/client_color_switch_color_switch.ColorSwitchProps.html @@ -1,6 +1,6 @@ -ColorSwitchProps | Nextjs Themes
interface ColorSwitchProps {
    size?: number;
    skipSystem?: boolean;
    targetSelector?: string;
}

Hierarchy

Properties

size? +ColorSwitchProps | Nextjs Themes
interface ColorSwitchProps {
    size?: number;
    skipSystem?: boolean;
    targetSelector?: string;
}

Hierarchy

Properties

size?: number

Diameter of the color switch

-
skipSystem?: boolean

Skip system colorScheme while toggling

-
targetSelector?: string
+
skipSystem?: boolean

Skip system colorScheme while toggling

+
targetSelector?: string
diff --git a/docs/interfaces/client_theme_switcher_theme_switcher.ThemeSwitcherProps.html b/docs/interfaces/client_theme_switcher_theme_switcher.ThemeSwitcherProps.html index d221ac7a..b3f1214d 100644 --- a/docs/interfaces/client_theme_switcher_theme_switcher.ThemeSwitcherProps.html +++ b/docs/interfaces/client_theme_switcher_theme_switcher.ThemeSwitcherProps.html @@ -1,4 +1,4 @@ -ThemeSwitcherProps | Nextjs Themes
interface ThemeSwitcherProps {
    forcedColorScheme?: ColorSchemeType;
    forcedTheme?: string;
    nonce?: string;
    styles?: Record<string, string>;
    targetSelector?: string;
    themeTransition?: string;
}

Properties

forcedColorScheme? +ThemeSwitcherProps | Nextjs Themes
interface ThemeSwitcherProps {
    forcedColorScheme?: ColorSchemeType;
    forcedTheme?: string;
    nonce?: string;
    styles?: Record<string, string>;
    targetSelector?: string;
    themeTransition?: string;
}

Properties

forcedColorScheme?: ColorSchemeType

Forced color scheme for the current page

forcedTheme?: string

Forced theme name for the current page

+
forcedTheme?: string

Forced theme name for the current page

nonce?: string

The nonce value for your Content Security Policy.

-
styles?: Record<string, string>

Provide a styles object imported from CSS/SCSS modules if you are using these modules to define theme and color-scheme classes. +

nonce?: string

The nonce value for your Content Security Policy.

+
styles?: Record<string, string>

Provide a styles object imported from CSS/SCSS modules if you are using these modules to define theme and color-scheme classes. All classes applied to the target are modified using the styles object as follows: if (styles) classes = classes.map(cls => styles[cls] ?? cls);

-
targetSelector?: string

CSS selector for the target element to apply the theme. +

targetSelector?: string

CSS selector for the target element to apply the theme. Use this to specify a different target element than the default (html or documentElement). This is particularly useful for controlling the theme of different parts of the page independently.

-
themeTransition?: string

The transition property to enforce on all elements, preventing unwanted transitions during theme changes.

+
themeTransition?: string

The transition property to enforce on all elements, preventing unwanted transitions during theme changes.

'background .3s'
 
'none'
 
-
+
diff --git a/docs/interfaces/hooks_use_theme.UseThemeYield.html b/docs/interfaces/hooks_use_theme.UseThemeYield.html index d6fe840c..7f549055 100644 --- a/docs/interfaces/hooks_use_theme.UseThemeYield.html +++ b/docs/interfaces/hooks_use_theme.UseThemeYield.html @@ -1,4 +1,4 @@ -UseThemeYield | Nextjs Themes
interface UseThemeYield {
    colorSchemePref: ColorSchemeType;
    darkTheme: string;
    lightTheme: string;
    resolvedColorScheme: ResolvedColorSchemeType;
    resolvedTheme: string;
    setColorSchemePref: ((colorSchemePref: ColorSchemeType) => void);
    setDarkTheme: ((darkTheme: string) => void);
    setForcedColorScheme: ((forcedColorScheme: ColorSchemeType) => void);
    setForcedTheme: ((forcedTheme: string) => void);
    setLightTheme: ((lightTheme: string) => void);
    setTheme: ((theme: string) => void);
    setThemeSet: ((themeSet: {
        darkTheme: string;
        lightTheme: string;
    }) => void);
    systemColorScheme: ResolvedColorSchemeType;
    theme: string;
    toggleColorScheme: ((skipSystem?: boolean) => void);
}

Properties

colorSchemePref +UseThemeYield | Nextjs Themes
interface UseThemeYield {
    colorSchemePref: ColorSchemeType;
    darkTheme: string;
    lightTheme: string;
    resolvedColorScheme: ResolvedColorSchemeType;
    resolvedTheme: string;
    setColorSchemePref: ((colorSchemePref: ColorSchemeType) => void);
    setDarkTheme: ((darkTheme: string) => void);
    setForcedColorScheme: ((forcedColorScheme: ColorSchemeType) => void);
    setForcedTheme: ((forcedTheme: string) => void);
    setLightTheme: ((lightTheme: string) => void);
    setTheme: ((theme: string) => void);
    setThemeSet: ((themeSet: {
        darkTheme: string;
        lightTheme: string;
    }) => void);
    systemColorScheme: ResolvedColorSchemeType;
    theme: string;
    toggleColorScheme: ((skipSystem?: boolean) => void);
}

Properties

colorSchemePref: ColorSchemeType
darkTheme: string
lightTheme: string
resolvedColorScheme: ResolvedColorSchemeType
resolvedTheme: string
setColorSchemePref: ((colorSchemePref: ColorSchemeType) => void)
setDarkTheme: ((darkTheme: string) => void)
setForcedColorScheme: ((forcedColorScheme: ColorSchemeType) => void)
setForcedTheme: ((forcedTheme: string) => void)
setLightTheme: ((lightTheme: string) => void)
setTheme: ((theme: string) => void)

actions

-
setThemeSet: ((themeSet: {
    darkTheme: string;
    lightTheme: string;
}) => void)
systemColorScheme: ResolvedColorSchemeType
theme: string
toggleColorScheme: ((skipSystem?: boolean) => void)
+

Properties

colorSchemePref: ColorSchemeType
darkTheme: string
lightTheme: string
resolvedColorScheme: ResolvedColorSchemeType
resolvedTheme: string
setColorSchemePref: ((colorSchemePref: ColorSchemeType) => void)
setDarkTheme: ((darkTheme: string) => void)
setForcedColorScheme: ((forcedColorScheme: ColorSchemeType) => void)
setForcedTheme: ((forcedTheme: string) => void)
setLightTheme: ((lightTheme: string) => void)
setTheme: ((theme: string) => void)

actions

+
setThemeSet: ((themeSet: {
    darkTheme: string;
    lightTheme: string;
}) => void)
systemColorScheme: ResolvedColorSchemeType
theme: string
toggleColorScheme: ((skipSystem?: boolean) => void)
diff --git a/docs/modules/client_color_switch_color_switch.html b/docs/modules/client_color_switch_color_switch.html index 778dad88..52d2784c 100644 --- a/docs/modules/client_color_switch_color_switch.html +++ b/docs/modules/client_color_switch_color_switch.html @@ -1,3 +1,3 @@ -client/color-switch/color-switch | Nextjs Themes

Module client/color-switch/color-switch

Index

Interfaces

ColorSwitchProps +client/color-switch/color-switch | Nextjs Themes

Module client/color-switch/color-switch

Index

Interfaces

Functions

diff --git a/docs/modules/client_force_color_scheme_force_color_scheme.html b/docs/modules/client_force_color_scheme_force_color_scheme.html index 24bdee19..da26493e 100644 --- a/docs/modules/client_force_color_scheme_force_color_scheme.html +++ b/docs/modules/client_force_color_scheme_force_color_scheme.html @@ -1,2 +1,2 @@ -client/force-color-scheme/force-color-scheme | Nextjs Themes

Module client/force-color-scheme/force-color-scheme

Index

Functions

ForceColorScheme +client/force-color-scheme/force-color-scheme | Nextjs Themes
diff --git a/docs/modules/client_force_theme_force_theme.html b/docs/modules/client_force_theme_force_theme.html index 27bbcf86..cc162747 100644 --- a/docs/modules/client_force_theme_force_theme.html +++ b/docs/modules/client_force_theme_force_theme.html @@ -1,2 +1,2 @@ -client/force-theme/force-theme | Nextjs Themes

Module client/force-theme/force-theme

Index

Functions

ForceTheme +client/force-theme/force-theme | Nextjs Themes

Module client/force-theme/force-theme

Index

Functions

diff --git a/docs/modules/client_switcher_switcher.html b/docs/modules/client_switcher_switcher.html index dd98dc08..52a54be3 100644 --- a/docs/modules/client_switcher_switcher.html +++ b/docs/modules/client_switcher_switcher.html @@ -1,2 +1,2 @@ -client/switcher/switcher | Nextjs Themes

Module client/switcher/switcher

Index

Functions

Switcher +client/switcher/switcher | Nextjs Themes

Module client/switcher/switcher

Index

Functions

diff --git a/docs/modules/client_theme_switcher_theme_switcher.html b/docs/modules/client_theme_switcher_theme_switcher.html index 492dcc47..fc45d046 100644 --- a/docs/modules/client_theme_switcher_theme_switcher.html +++ b/docs/modules/client_theme_switcher_theme_switcher.html @@ -1,3 +1,3 @@ -client/theme-switcher/theme-switcher | Nextjs Themes

Module client/theme-switcher/theme-switcher

Index

Interfaces

ThemeSwitcherProps +client/theme-switcher/theme-switcher | Nextjs Themes
diff --git a/docs/modules/hooks_use_theme.html b/docs/modules/hooks_use_theme.html index 43939eb1..54d0d1d2 100644 --- a/docs/modules/hooks_use_theme.html +++ b/docs/modules/hooks_use_theme.html @@ -1,3 +1,3 @@ -hooks/use-theme | Nextjs Themes

Module hooks/use-theme

Index

Interfaces

UseThemeYield +hooks/use-theme | Nextjs Themes

Module hooks/use-theme

Index

Interfaces

Functions

diff --git a/docs/modules/types.html b/docs/modules/types.html index 27dd0e0e..4babaadf 100644 --- a/docs/modules/types.html +++ b/docs/modules/types.html @@ -1,3 +1,3 @@ -types | Nextjs Themes

Module types

Index

Type Aliases

ColorSchemeType +types | Nextjs Themes
diff --git a/docs/types/types.ColorSchemeType.html b/docs/types/types.ColorSchemeType.html index 2e881fcd..701e403f 100644 --- a/docs/types/types.ColorSchemeType.html +++ b/docs/types/types.ColorSchemeType.html @@ -1,2 +1,2 @@ ColorSchemeType | Nextjs Themes

Type Alias ColorSchemeType

ColorSchemeType:
    | ""
    | "system"
    | "dark"
    | "light"

Types to be exposed to users

-
+
diff --git a/docs/types/types.ResolvedColorSchemeType.html b/docs/types/types.ResolvedColorSchemeType.html index 0b64936d..93bbb3f2 100644 --- a/docs/types/types.ResolvedColorSchemeType.html +++ b/docs/types/types.ResolvedColorSchemeType.html @@ -1 +1 @@ -ResolvedColorSchemeType | Nextjs Themes

Type Alias ResolvedColorSchemeType

ResolvedColorSchemeType: "dark" | "light"
+ResolvedColorSchemeType | Nextjs Themes

Type Alias ResolvedColorSchemeType

ResolvedColorSchemeType: "dark" | "light"
diff --git a/examples/app-router/package.json b/examples/app-router/package.json index be81f560..c853f05f 100644 --- a/examples/app-router/package.json +++ b/examples/app-router/package.json @@ -25,9 +25,9 @@ "@next/eslint-plugin-next": "^15.0.3", "@repo/eslint-config": "workspace:*", "@repo/typescript-config": "workspace:*", - "@types/node": "^22.9.1", + "@types/node": "^22.9.2", "@types/react": "^18.3.12", "@types/react-dom": "^18.3.1", - "typescript": "^5.6.3" + "typescript": "^5.7.2" } } diff --git a/examples/pages-router/package.json b/examples/pages-router/package.json index db0f8ace..7b8e16f5 100644 --- a/examples/pages-router/package.json +++ b/examples/pages-router/package.json @@ -19,10 +19,10 @@ "@next/eslint-plugin-next": "^15.0.3", "@repo/eslint-config": "workspace:*", "@repo/typescript-config": "workspace:*", - "@types/node": "^22.9.1", + "@types/node": "^22.9.2", "@types/react": "^18.3.12", "@types/react-dom": "^18.3.1", "react-webgl-trails": "^0.0.4", - "typescript": "^5.6.3" + "typescript": "^5.7.2" } } diff --git a/examples/tailwind/package.json b/examples/tailwind/package.json index 4be024b4..504fdde6 100644 --- a/examples/tailwind/package.json +++ b/examples/tailwind/package.json @@ -22,12 +22,12 @@ "@next/eslint-plugin-next": "^15.0.3", "@repo/eslint-config": "workspace:*", "@repo/typescript-config": "workspace:*", - "@types/node": "^22.9.1", + "@types/node": "^22.9.2", "@types/react": "^18.3.12", "@types/react-dom": "^18.3.1", "autoprefixer": "^10.4.20", "postcss": "^8.4.49", "tailwindcss": "^3.4.15", - "typescript": "^5.6.3" + "typescript": "^5.7.2" } } diff --git a/examples/themes/package.json b/examples/themes/package.json index d622026b..986bea16 100644 --- a/examples/themes/package.json +++ b/examples/themes/package.json @@ -25,9 +25,9 @@ "@next/eslint-plugin-next": "^15.0.3", "@repo/eslint-config": "workspace:*", "@repo/typescript-config": "workspace:*", - "@types/node": "^22.9.1", + "@types/node": "^22.9.2", "@types/react": "^18.3.12", "@types/react-dom": "^18.3.1", - "typescript": "^5.6.3" + "typescript": "^5.7.2" } } diff --git a/examples/vite/package.json b/examples/vite/package.json index dcb8174f..bc71d2dd 100644 --- a/examples/vite/package.json +++ b/examples/vite/package.json @@ -23,7 +23,7 @@ "@types/react": "^18.3.12", "@types/react-dom": "^18.3.1", "@vitejs/plugin-react": "^4.3.3", - "typescript": "^5.6.3", + "typescript": "^5.7.2", "vite": "^5.4.11" } } diff --git a/lib/package.json b/lib/package.json index 3ba0a436..095d1fff 100644 --- a/lib/package.json +++ b/lib/package.json @@ -117,7 +117,7 @@ "@repo/eslint-config": "workspace:*", "@repo/typescript-config": "workspace:*", "@testing-library/react": "^16.0.1", - "@types/node": "^22.9.1", + "@types/node": "^22.9.2", "@types/react": "^18.3.12", "@types/react-dom": "^18.3.1", "@vitejs/plugin-react": "^4.3.3", @@ -129,7 +129,7 @@ "react": "^18.3.1", "react-dom": "^18.3.1", "tsup": "^8.3.5", - "typescript": "^5.6.3", + "typescript": "^5.7.2", "vite-tsconfig-paths": "^5.1.3", "vitest": "^2.1.5" }, diff --git a/package.json b/package.json index e1cbbc85..64e64d45 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "turbo": "^2.3.1", "typedoc": "^0.26.11", "typedoc-plugin-extras": "^3.1.0", - "typedoc-plugin-mdn-links": "^3.3.8", + "typedoc-plugin-mdn-links": "^4.0.0", "typedoc-plugin-missing-exports": "^3.0.2", "typedoc-plugin-rename-defaults": "^0.7.1", "typedoc-plugin-zod": "^1.2.1" @@ -29,7 +29,7 @@ "node": ">=18" }, "dependencies": { - "@types/node": "^22.9.1", + "@types/node": "^22.9.2", "enquirer": "^2.4.1" }, "name": "turborepo-template", diff --git a/packages/shared/package.json b/packages/shared/package.json index c7cf778f..a5618983 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -21,7 +21,7 @@ "@repo/eslint-config": "workspace:*", "@repo/typescript-config": "workspace:*", "@testing-library/react": "^16.0.1", - "@types/node": "^22.9.1", + "@types/node": "^22.9.2", "@types/react": "^18.3.12", "@types/react-dom": "^18.3.1", "@vitejs/plugin-react": "^4.3.3", @@ -32,7 +32,7 @@ "react": "^18.3.1", "react-dom": "^18.3.1", "tsup": "^8.3.5", - "typescript": "^5.6.3", + "typescript": "^5.7.2", "vite-tsconfig-paths": "^5.1.3", "vitest": "^2.1.5" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ffb5834f..7da9102e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12,8 +12,8 @@ importers: .: dependencies: '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.2 + version: 22.9.2 enquirer: specifier: ^2.4.1 version: 2.4.1 @@ -35,22 +35,22 @@ importers: version: 2.3.1 typedoc: specifier: ^0.26.11 - version: 0.26.11(typescript@5.6.3) + version: 0.26.11(typescript@5.7.2) typedoc-plugin-extras: specifier: ^3.1.0 - version: 3.1.0(typedoc@0.26.11(typescript@5.6.3)) + version: 3.1.0(typedoc@0.26.11(typescript@5.7.2)) typedoc-plugin-mdn-links: - specifier: ^3.3.8 - version: 3.3.8(typedoc@0.26.11(typescript@5.6.3)) + specifier: ^4.0.0 + version: 4.0.0(typedoc@0.26.11(typescript@5.7.2)) typedoc-plugin-missing-exports: specifier: ^3.0.2 - version: 3.0.2(typedoc@0.26.11(typescript@5.6.3)) + version: 3.0.2(typedoc@0.26.11(typescript@5.7.2)) typedoc-plugin-rename-defaults: specifier: ^0.7.1 - version: 0.7.1(typedoc@0.26.11(typescript@5.6.3)) + version: 0.7.1(typedoc@0.26.11(typescript@5.7.2)) typedoc-plugin-zod: specifier: ^1.2.1 - version: 1.2.1(typedoc@0.26.11(typescript@5.6.3)) + version: 1.2.1(typedoc@0.26.11(typescript@5.7.2)) examples/app-router: dependencies: @@ -89,8 +89,8 @@ importers: specifier: workspace:* version: link:../../packages/config-typescript '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.2 + version: 22.9.2 '@types/react': specifier: ^18.3.12 version: 18.3.12 @@ -98,8 +98,8 @@ importers: specifier: ^18.3.1 version: 18.3.1 typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 examples/pages-router: dependencies: @@ -129,8 +129,8 @@ importers: specifier: workspace:* version: link:../../packages/config-typescript '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.2 + version: 22.9.2 '@types/react': specifier: ^18.3.12 version: 18.3.12 @@ -141,8 +141,8 @@ importers: specifier: ^0.0.4 version: 0.0.4(@types/react@18.3.12)(react@18.3.1) typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 examples/tailwind: dependencies: @@ -175,8 +175,8 @@ importers: specifier: workspace:* version: link:../../packages/config-typescript '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.2 + version: 22.9.2 '@types/react': specifier: ^18.3.12 version: 18.3.12 @@ -193,8 +193,8 @@ importers: specifier: ^3.4.15 version: 3.4.15 typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 examples/themes: dependencies: @@ -233,8 +233,8 @@ importers: specifier: workspace:* version: link:../../packages/config-typescript '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.2 + version: 22.9.2 '@types/react': specifier: ^18.3.12 version: 18.3.12 @@ -242,8 +242,8 @@ importers: specifier: ^18.3.1 version: 18.3.1 typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 examples/vite: dependencies: @@ -277,13 +277,13 @@ importers: version: 18.3.1 '@vitejs/plugin-react': specifier: ^4.3.3 - version: 4.3.3(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0)) + version: 4.3.3(vite@5.4.11(@types/node@22.9.2)(sass@1.81.0)) typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 vite: specifier: ^5.4.11 - version: 5.4.11(@types/node@22.9.1)(sass@1.81.0) + version: 5.4.11(@types/node@22.9.2)(sass@1.81.0) lib: dependencies: @@ -304,8 +304,8 @@ importers: specifier: ^16.0.1 version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.2 + version: 22.9.2 '@types/react': specifier: ^18.3.12 version: 18.3.12 @@ -314,10 +314,10 @@ importers: version: 18.3.1 '@vitejs/plugin-react': specifier: ^4.3.3 - version: 4.3.3(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0)) + version: 4.3.3(vite@5.4.11(@types/node@22.9.2)(sass@1.81.0)) '@vitest/coverage-v8': specifier: ^2.1.5 - version: 2.1.5(vitest@2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sass@1.81.0)) + version: 2.1.5(vitest@2.1.5(@types/node@22.9.2)(jsdom@25.0.1)(sass@1.81.0)) esbuild-plugin-rdi: specifier: ^0.0.0 version: 0.0.0 @@ -338,22 +338,22 @@ importers: version: 18.3.1(react@18.3.1) tsup: specifier: ^8.3.5 - version: 8.3.5(jiti@2.3.1)(postcss@8.4.49)(typescript@5.6.3)(yaml@2.6.1) + version: 8.3.5(jiti@2.3.1)(postcss@8.4.49)(typescript@5.7.2)(yaml@2.6.1) typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 vite-tsconfig-paths: specifier: ^5.1.3 - version: 5.1.3(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0)) + version: 5.1.3(typescript@5.7.2)(vite@5.4.11(@types/node@22.9.2)(sass@1.81.0)) vitest: specifier: ^2.1.5 - version: 2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sass@1.81.0) + version: 2.1.5(@types/node@22.9.2)(jsdom@25.0.1)(sass@1.81.0) packages/config-eslint: devDependencies: '@vercel/style-guide': specifier: ^6.0.0 - version: 6.0.0(@next/eslint-plugin-next@14.2.15)(eslint@9.12.0(jiti@2.3.1))(prettier@3.3.3)(typescript@5.6.3)(vitest@2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sass@1.81.0)) + version: 6.0.0(@next/eslint-plugin-next@14.2.15)(eslint@9.12.0(jiti@2.3.1))(prettier@3.3.3)(typescript@5.7.2)(vitest@2.1.5(@types/node@22.9.2)(jsdom@25.0.1)(sass@1.81.0)) eslint-config-turbo: specifier: ^2.3.1 version: 2.3.1(eslint@9.12.0(jiti@2.3.1)) @@ -365,7 +365,7 @@ importers: version: 1.1.0 eslint-plugin-storybook: specifier: ^0.11.1 - version: 0.11.1(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) + version: 0.11.1(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) packages/config-typescript: {} @@ -406,8 +406,8 @@ importers: specifier: ^16.0.1 version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.2 + version: 22.9.2 '@types/react': specifier: ^18.3.12 version: 18.3.12 @@ -416,10 +416,10 @@ importers: version: 18.3.1 '@vitejs/plugin-react': specifier: ^4.3.3 - version: 4.3.3(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0)) + version: 4.3.3(vite@5.4.11(@types/node@22.9.2)(sass@1.81.0)) '@vitest/coverage-v8': specifier: ^2.1.5 - version: 2.1.5(vitest@2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sass@1.81.0)) + version: 2.1.5(vitest@2.1.5(@types/node@22.9.2)(jsdom@25.0.1)(sass@1.81.0)) esbuild-plugin-react18: specifier: ^0.2.5 version: 0.2.5(@types/react@18.3.12)(next@14.2.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.81.0))(react@18.3.1) @@ -437,16 +437,16 @@ importers: version: 18.3.1(react@18.3.1) tsup: specifier: ^8.3.5 - version: 8.3.5(jiti@2.3.1)(postcss@8.4.49)(typescript@5.6.3)(yaml@2.6.1) + version: 8.3.5(jiti@2.3.1)(postcss@8.4.49)(typescript@5.7.2)(yaml@2.6.1) typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 vite-tsconfig-paths: specifier: ^5.1.3 - version: 5.1.3(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0)) + version: 5.1.3(typescript@5.7.2)(vite@5.4.11(@types/node@22.9.2)(sass@1.81.0)) vitest: specifier: ^2.1.5 - version: 2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sass@1.81.0) + version: 2.1.5(@types/node@22.9.2)(jsdom@25.0.1)(sass@1.81.0) scripts: {} @@ -1559,8 +1559,8 @@ packages: '@types/node@12.20.55': resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - '@types/node@22.9.1': - resolution: {integrity: sha512-p8Yy/8sw1caA8CdRIQBG5tiLHmxtQKObCijiAa9Ez+d4+PRffM4054xbju0msf+cvhJpnFEeNjxmVT/0ipktrg==} + '@types/node@22.9.2': + resolution: {integrity: sha512-wwuxAVEbsRvDD9x7buvAl7DyQ7Oj+va/d/Veug7higYzp9MF0CINbfWTBgDFMpcVwcdUiYuNmX2KfnvY3N70mw==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -4883,10 +4883,10 @@ packages: peerDependencies: typedoc: 0.26.x - typedoc-plugin-mdn-links@3.3.8: - resolution: {integrity: sha512-Aewg+SW7hBdffRpT6WnpRwWthoaF9irlzXDKRyvcDVekPZSFujOlh690SV6eCgqrtP7GBJmN0TVeJUq6+6rb1w==} + typedoc-plugin-mdn-links@4.0.0: + resolution: {integrity: sha512-+kSzfYbzmpeXTEilCrf7rg1s68w1Y1Gefdk6i2t68AqFJADdvpjxdcKydf86+kd4CfBiD05/bBxJBrGwJZ5bRA==} peerDependencies: - typedoc: '>= 0.23.14 || 0.24.x || 0.25.x || 0.26.x' + typedoc: 0.26.x || 0.27.x typedoc-plugin-missing-exports@3.0.2: resolution: {integrity: sha512-c1fS9h4MBOgf6OMN1fPHvMjWvR1f9npaGT6YA5ZWjqo28yJpoX1rtS4BonP0Nosk0RIBV/Ra6WGL6dyi1RM0fw==} @@ -4910,8 +4910,8 @@ packages: peerDependencies: typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x - typescript@5.6.3: - resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==} + typescript@5.7.2: + resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} engines: {node: '>=14.17'} hasBin: true @@ -6188,7 +6188,7 @@ snapshots: '@types/concat-stream@2.0.3': dependencies: - '@types/node': 22.9.1 + '@types/node': 22.9.2 '@types/cookie@0.6.0': {} @@ -6222,7 +6222,7 @@ snapshots: '@types/liftoff@4.0.3': dependencies: '@types/fined': 1.1.5 - '@types/node': 22.9.1 + '@types/node': 22.9.2 '@types/mdast@3.0.15': dependencies: @@ -6236,7 +6236,7 @@ snapshots: '@types/node@12.20.55': {} - '@types/node@22.9.1': + '@types/node@22.9.2': dependencies: undici-types: 6.19.8 @@ -6261,40 +6261,40 @@ snapshots: '@types/through@0.0.33': dependencies: - '@types/node': 22.9.1 + '@types/node': 22.9.2 '@types/unist@2.0.11': {} '@types/unist@3.0.3': {} - '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3)': + '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) + '@typescript-eslint/parser': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) '@typescript-eslint/scope-manager': 7.18.0 - '@typescript-eslint/type-utils': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) - '@typescript-eslint/utils': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) + '@typescript-eslint/type-utils': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) + '@typescript-eslint/utils': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) '@typescript-eslint/visitor-keys': 7.18.0 eslint: 9.12.0(jiti@2.3.1) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 - ts-api-utils: 1.4.0(typescript@5.6.3) + ts-api-utils: 1.4.0(typescript@5.7.2) optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3)': + '@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2)': dependencies: '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3) + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2) '@typescript-eslint/visitor-keys': 7.18.0 debug: 4.3.7 eslint: 9.12.0(jiti@2.3.1) optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - supports-color @@ -6313,15 +6313,15 @@ snapshots: '@typescript-eslint/types': 8.15.0 '@typescript-eslint/visitor-keys': 8.15.0 - '@typescript-eslint/type-utils@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3)': + '@typescript-eslint/type-utils@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2)': dependencies: - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3) - '@typescript-eslint/utils': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2) + '@typescript-eslint/utils': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) debug: 4.3.7 eslint: 9.12.0(jiti@2.3.1) - ts-api-utils: 1.4.0(typescript@5.6.3) + ts-api-utils: 1.4.0(typescript@5.7.2) optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - supports-color @@ -6331,7 +6331,7 @@ snapshots: '@typescript-eslint/types@8.15.0': {} - '@typescript-eslint/typescript-estree@5.62.0(typescript@5.6.3)': + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.7.2)': dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 @@ -6339,13 +6339,13 @@ snapshots: globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.3 - tsutils: 3.21.0(typescript@5.6.3) + tsutils: 3.21.0(typescript@5.7.2) optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@7.18.0(typescript@5.6.3)': + '@typescript-eslint/typescript-estree@7.18.0(typescript@5.7.2)': dependencies: '@typescript-eslint/types': 7.18.0 '@typescript-eslint/visitor-keys': 7.18.0 @@ -6354,13 +6354,13 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.6.3 - ts-api-utils: 1.4.0(typescript@5.6.3) + ts-api-utils: 1.4.0(typescript@5.7.2) optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.15.0(typescript@5.6.3)': + '@typescript-eslint/typescript-estree@8.15.0(typescript@5.7.2)': dependencies: '@typescript-eslint/types': 8.15.0 '@typescript-eslint/visitor-keys': 8.15.0 @@ -6369,20 +6369,20 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.6.3 - ts-api-utils: 1.4.0(typescript@5.6.3) + ts-api-utils: 1.4.0(typescript@5.7.2) optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@5.62.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3)': + '@typescript-eslint/utils@5.62.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2)': dependencies: '@eslint-community/eslint-utils': 4.4.1(eslint@9.12.0(jiti@2.3.1)) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.7.2) eslint: 9.12.0(jiti@2.3.1) eslint-scope: 5.1.1 semver: 7.6.3 @@ -6390,26 +6390,26 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3)': + '@typescript-eslint/utils@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2)': dependencies: '@eslint-community/eslint-utils': 4.4.1(eslint@9.12.0(jiti@2.3.1)) '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3) + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2) eslint: 9.12.0(jiti@2.3.1) transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@8.15.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3)': + '@typescript-eslint/utils@8.15.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2)': dependencies: '@eslint-community/eslint-utils': 4.4.1(eslint@9.12.0(jiti@2.3.1)) '@typescript-eslint/scope-manager': 8.15.0 '@typescript-eslint/types': 8.15.0 - '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.6.3) + '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.7.2) eslint: 9.12.0(jiti@2.3.1) optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - supports-color @@ -6430,33 +6430,33 @@ snapshots: '@ungap/structured-clone@1.2.0': {} - '@vercel/style-guide@6.0.0(@next/eslint-plugin-next@14.2.15)(eslint@9.12.0(jiti@2.3.1))(prettier@3.3.3)(typescript@5.6.3)(vitest@2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sass@1.81.0))': + '@vercel/style-guide@6.0.0(@next/eslint-plugin-next@14.2.15)(eslint@9.12.0(jiti@2.3.1))(prettier@3.3.3)(typescript@5.7.2)(vitest@2.1.5(@types/node@22.9.2)(jsdom@25.0.1)(sass@1.81.0))': dependencies: '@babel/core': 7.26.0 '@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@9.12.0(jiti@2.3.1)) '@rushstack/eslint-patch': 1.10.4 - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) - '@typescript-eslint/parser': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) + '@typescript-eslint/parser': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@2.3.1)) eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.31.0) - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.12.0(jiti@2.3.1)) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint-plugin-import@2.31.0)(eslint@9.12.0(jiti@2.3.1)) eslint-plugin-eslint-comments: 3.2.0(eslint@9.12.0(jiti@2.3.1)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.1)) - eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.1)) + eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) eslint-plugin-jsx-a11y: 6.10.2(eslint@9.12.0(jiti@2.3.1)) - eslint-plugin-playwright: 1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1)) + eslint-plugin-playwright: 1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1)) eslint-plugin-react: 7.37.2(eslint@9.12.0(jiti@2.3.1)) eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@2.3.1)) - eslint-plugin-testing-library: 6.5.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) + eslint-plugin-testing-library: 6.5.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) eslint-plugin-tsdoc: 0.2.17 eslint-plugin-unicorn: 51.0.1(eslint@9.12.0(jiti@2.3.1)) - eslint-plugin-vitest: 0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3)(vitest@2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sass@1.81.0)) + eslint-plugin-vitest: 0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2)(vitest@2.1.5(@types/node@22.9.2)(jsdom@25.0.1)(sass@1.81.0)) prettier-plugin-packagejson: 2.5.5(prettier@3.3.3) optionalDependencies: '@next/eslint-plugin-next': 14.2.15 eslint: 9.12.0(jiti@2.3.1) prettier: 3.3.3 - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - eslint-import-resolver-node - eslint-import-resolver-webpack @@ -6465,18 +6465,18 @@ snapshots: - supports-color - vitest - '@vitejs/plugin-react@4.3.3(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0))': + '@vitejs/plugin-react@4.3.3(vite@5.4.11(@types/node@22.9.2)(sass@1.81.0))': dependencies: '@babel/core': 7.26.0 '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 5.4.11(@types/node@22.9.1)(sass@1.81.0) + vite: 5.4.11(@types/node@22.9.2)(sass@1.81.0) transitivePeerDependencies: - supports-color - '@vitest/coverage-v8@2.1.5(vitest@2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sass@1.81.0))': + '@vitest/coverage-v8@2.1.5(vitest@2.1.5(@types/node@22.9.2)(jsdom@25.0.1)(sass@1.81.0))': dependencies: '@ampproject/remapping': 2.3.0 '@bcoe/v8-coverage': 0.2.3 @@ -6490,7 +6490,7 @@ snapshots: std-env: 3.8.0 test-exclude: 7.0.1 tinyrainbow: 1.2.0 - vitest: 2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sass@1.81.0) + vitest: 2.1.5(@types/node@22.9.2)(jsdom@25.0.1)(sass@1.81.0) transitivePeerDependencies: - supports-color @@ -6501,13 +6501,13 @@ snapshots: chai: 5.1.2 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.5(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0))': + '@vitest/mocker@2.1.5(vite@5.4.11(@types/node@22.9.2)(sass@1.81.0))': dependencies: '@vitest/spy': 2.1.5 estree-walker: 3.0.3 magic-string: 0.30.13 optionalDependencies: - vite: 5.4.11(@types/node@22.9.1)(sass@1.81.0) + vite: 5.4.11(@types/node@22.9.2)(sass@1.81.0) '@vitest/pretty-format@2.1.5': dependencies: @@ -7268,7 +7268,7 @@ snapshots: eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.31.0): dependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.1)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.1)) eslint-import-resolver-node@0.3.9: dependencies: @@ -7278,19 +7278,19 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.12.0(jiti@2.3.1)): + eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint-plugin-import@2.31.0)(eslint@9.12.0(jiti@2.3.1)): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.3.7 enhanced-resolve: 5.17.1 eslint: 9.12.0(jiti@2.3.1) - eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.1)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.1)) fast-glob: 3.3.2 get-tsconfig: 4.8.1 is-bun-module: 1.2.1 is-glob: 4.0.3 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.1)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.1)) transitivePeerDependencies: - '@typescript-eslint/parser' - eslint-import-resolver-node @@ -7318,14 +7318,14 @@ snapshots: - bluebird - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.1)): + eslint-module-utils@2.12.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.1)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) + '@typescript-eslint/parser': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) eslint: 9.12.0(jiti@2.3.1) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.12.0(jiti@2.3.1)) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint-plugin-import@2.31.0)(eslint@9.12.0(jiti@2.3.1)) transitivePeerDependencies: - supports-color @@ -7335,7 +7335,7 @@ snapshots: eslint: 9.12.0(jiti@2.3.1) ignore: 5.3.2 - eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.1)): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.1)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -7346,7 +7346,7 @@ snapshots: doctrine: 2.1.0 eslint: 9.12.0(jiti@2.3.1) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.1)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.1)) hasown: 2.0.2 is-core-module: 2.15.1 is-glob: 4.0.3 @@ -7358,18 +7358,18 @@ snapshots: string.prototype.trimend: 1.0.8 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) + '@typescript-eslint/parser': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3): + eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) + '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) eslint: 9.12.0(jiti@2.3.1) optionalDependencies: - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) transitivePeerDependencies: - supports-color - typescript @@ -7417,12 +7417,12 @@ snapshots: eslint-plugin-only-warn@1.1.0: {} - eslint-plugin-playwright@1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1)): + eslint-plugin-playwright@1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1)): dependencies: eslint: 9.12.0(jiti@2.3.1) globals: 13.24.0 optionalDependencies: - eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) + eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) eslint-plugin-react-hooks@4.6.2(eslint@9.12.0(jiti@2.3.1)): dependencies: @@ -7450,19 +7450,19 @@ snapshots: string.prototype.matchall: 4.0.11 string.prototype.repeat: 1.0.0 - eslint-plugin-storybook@0.11.1(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3): + eslint-plugin-storybook@0.11.1(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2): dependencies: '@storybook/csf': 0.1.11 - '@typescript-eslint/utils': 8.15.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) + '@typescript-eslint/utils': 8.15.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) eslint: 9.12.0(jiti@2.3.1) ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-testing-library@6.5.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3): + eslint-plugin-testing-library@6.5.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) + '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) eslint: 9.12.0(jiti@2.3.1) transitivePeerDependencies: - supports-color @@ -7500,13 +7500,13 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-vitest@0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3)(vitest@2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sass@1.81.0)): + eslint-plugin-vitest@0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2)(vitest@2.1.5(@types/node@22.9.2)(jsdom@25.0.1)(sass@1.81.0)): dependencies: - '@typescript-eslint/utils': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) + '@typescript-eslint/utils': 7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) eslint: 9.12.0(jiti@2.3.1) optionalDependencies: - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.1))(typescript@5.6.3) - vitest: 2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sass@1.81.0) + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2))(eslint@9.12.0(jiti@2.3.1))(typescript@5.7.2) + vitest: 2.1.5(@types/node@22.9.2)(jsdom@25.0.1)(sass@1.81.0) transitivePeerDependencies: - supports-color - typescript @@ -10051,17 +10051,17 @@ snapshots: trough@2.2.0: {} - ts-api-utils@1.4.0(typescript@5.6.3): + ts-api-utils@1.4.0(typescript@5.7.2): dependencies: - typescript: 5.6.3 + typescript: 5.7.2 ts-dedent@2.2.0: {} ts-interface-checker@0.1.13: {} - tsconfck@3.1.4(typescript@5.6.3): + tsconfck@3.1.4(typescript@5.7.2): optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 tsconfig-paths@3.15.0: dependencies: @@ -10074,7 +10074,7 @@ snapshots: tslib@2.8.1: {} - tsup@8.3.5(jiti@2.3.1)(postcss@8.4.49)(typescript@5.6.3)(yaml@2.6.1): + tsup@8.3.5(jiti@2.3.1)(postcss@8.4.49)(typescript@5.7.2)(yaml@2.6.1): dependencies: bundle-require: 5.0.0(esbuild@0.24.0) cac: 6.7.14 @@ -10094,17 +10094,17 @@ snapshots: tree-kill: 1.2.2 optionalDependencies: postcss: 8.4.49 - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - jiti - supports-color - tsx - yaml - tsutils@3.21.0(typescript@5.6.3): + tsutils@3.21.0(typescript@5.7.2): dependencies: tslib: 1.14.1 - typescript: 5.6.3 + typescript: 5.7.2 turbo-darwin-64@2.3.1: optional: true @@ -10186,37 +10186,37 @@ snapshots: typedarray@0.0.6: {} - typedoc-plugin-extras@3.1.0(typedoc@0.26.11(typescript@5.6.3)): + typedoc-plugin-extras@3.1.0(typedoc@0.26.11(typescript@5.7.2)): dependencies: - typedoc: 0.26.11(typescript@5.6.3) + typedoc: 0.26.11(typescript@5.7.2) - typedoc-plugin-mdn-links@3.3.8(typedoc@0.26.11(typescript@5.6.3)): + typedoc-plugin-mdn-links@4.0.0(typedoc@0.26.11(typescript@5.7.2)): dependencies: - typedoc: 0.26.11(typescript@5.6.3) + typedoc: 0.26.11(typescript@5.7.2) - typedoc-plugin-missing-exports@3.0.2(typedoc@0.26.11(typescript@5.6.3)): + typedoc-plugin-missing-exports@3.0.2(typedoc@0.26.11(typescript@5.7.2)): dependencies: - typedoc: 0.26.11(typescript@5.6.3) + typedoc: 0.26.11(typescript@5.7.2) - typedoc-plugin-rename-defaults@0.7.1(typedoc@0.26.11(typescript@5.6.3)): + typedoc-plugin-rename-defaults@0.7.1(typedoc@0.26.11(typescript@5.7.2)): dependencies: camelcase: 8.0.0 - typedoc: 0.26.11(typescript@5.6.3) + typedoc: 0.26.11(typescript@5.7.2) - typedoc-plugin-zod@1.2.1(typedoc@0.26.11(typescript@5.6.3)): + typedoc-plugin-zod@1.2.1(typedoc@0.26.11(typescript@5.7.2)): dependencies: - typedoc: 0.26.11(typescript@5.6.3) + typedoc: 0.26.11(typescript@5.7.2) - typedoc@0.26.11(typescript@5.6.3): + typedoc@0.26.11(typescript@5.7.2): dependencies: lunr: 2.3.9 markdown-it: 14.1.0 minimatch: 9.0.5 shiki: 1.23.1 - typescript: 5.6.3 + typescript: 5.7.2 yaml: 2.6.1 - typescript@5.6.3: {} + typescript@5.7.2: {} uc.micro@2.1.0: {} @@ -10239,7 +10239,7 @@ snapshots: '@types/concat-stream': 2.0.3 '@types/debug': 4.1.12 '@types/is-empty': 1.2.3 - '@types/node': 22.9.1 + '@types/node': 22.9.2 '@types/unist': 3.0.3 concat-stream: 2.0.0 debug: 4.3.7 @@ -10379,13 +10379,13 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.2 - vite-node@2.1.5(@types/node@22.9.1)(sass@1.81.0): + vite-node@2.1.5(@types/node@22.9.2)(sass@1.81.0): dependencies: cac: 6.7.14 debug: 4.3.7 es-module-lexer: 1.5.4 pathe: 1.1.2 - vite: 5.4.11(@types/node@22.9.1)(sass@1.81.0) + vite: 5.4.11(@types/node@22.9.2)(sass@1.81.0) transitivePeerDependencies: - '@types/node' - less @@ -10397,31 +10397,31 @@ snapshots: - supports-color - terser - vite-tsconfig-paths@5.1.3(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0)): + vite-tsconfig-paths@5.1.3(typescript@5.7.2)(vite@5.4.11(@types/node@22.9.2)(sass@1.81.0)): dependencies: debug: 4.3.7 globrex: 0.1.2 - tsconfck: 3.1.4(typescript@5.6.3) + tsconfck: 3.1.4(typescript@5.7.2) optionalDependencies: - vite: 5.4.11(@types/node@22.9.1)(sass@1.81.0) + vite: 5.4.11(@types/node@22.9.2)(sass@1.81.0) transitivePeerDependencies: - supports-color - typescript - vite@5.4.11(@types/node@22.9.1)(sass@1.81.0): + vite@5.4.11(@types/node@22.9.2)(sass@1.81.0): dependencies: esbuild: 0.21.5 postcss: 8.4.49 rollup: 4.27.3 optionalDependencies: - '@types/node': 22.9.1 + '@types/node': 22.9.2 fsevents: 2.3.3 sass: 1.81.0 - vitest@2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sass@1.81.0): + vitest@2.1.5(@types/node@22.9.2)(jsdom@25.0.1)(sass@1.81.0): dependencies: '@vitest/expect': 2.1.5 - '@vitest/mocker': 2.1.5(vite@5.4.11(@types/node@22.9.1)(sass@1.81.0)) + '@vitest/mocker': 2.1.5(vite@5.4.11(@types/node@22.9.2)(sass@1.81.0)) '@vitest/pretty-format': 2.1.5 '@vitest/runner': 2.1.5 '@vitest/snapshot': 2.1.5 @@ -10437,11 +10437,11 @@ snapshots: tinyexec: 0.3.1 tinypool: 1.0.2 tinyrainbow: 1.2.0 - vite: 5.4.11(@types/node@22.9.1)(sass@1.81.0) - vite-node: 2.1.5(@types/node@22.9.1)(sass@1.81.0) + vite: 5.4.11(@types/node@22.9.2)(sass@1.81.0) + vite-node: 2.1.5(@types/node@22.9.2)(sass@1.81.0) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 22.9.1 + '@types/node': 22.9.2 jsdom: 25.0.1 transitivePeerDependencies: - less