Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Nov 24, 2025

Bumps the all-dependencies group with 36 updates in the /packages/ui-react directory:

Package From To
@radix-ui/react-dialog 1.1.14 1.1.15
@radix-ui/react-label 2.1.7 2.1.8
@radix-ui/react-popover 1.1.14 1.1.15
@radix-ui/react-scroll-area 1.2.9 1.2.10
@radix-ui/react-slider 1.3.5 1.3.6
@radix-ui/react-slot 1.2.3 1.2.4
@radix-ui/react-switch 1.2.5 1.2.6
@radix-ui/react-tabs 1.1.12 1.1.13
@radix-ui/react-tooltip 1.2.7 1.2.8
lucide-react 0.525.0 0.554.0
@biomejs/biome 2.0.6 2.3.7
@chromatic-com/storybook 4.1.0 4.1.3
@playwright/test 1.54.1 1.56.1
@storybook/addon-docs 9.1.1 10.0.8
@storybook/react-vite 9.1.1 10.0.8
@synthetixio/synpress 4.1.0 4.1.1
@tailwindcss/postcss 4.1.11 4.1.17
@types/node 20.19.9 24.10.1
@types/react 19.1.8 19.2.6
@types/react-dom 19.1.6 19.2.3
@vitejs/plugin-react 4.7.0 5.1.1
@vitest/browser 3.2.4 4.0.13
@vitest/coverage-v8 3.2.4 4.0.13
autoprefixer 10.4.21 10.4.22
chromatic 13.1.2 13.3.4
dotenv 17.2.1 17.2.3
globals 16.3.0 16.5.0
playwright 1.54.1 1.56.1
rimraf 6.0.1 6.1.2
storybook 9.1.1 10.0.8
tailwind-merge 3.3.1 3.4.0
tailwindcss 4.1.11 4.1.17
tw-animate-css 1.3.6 1.4.0
typescript 5.8.3 5.9.3
vite 7.1.0 7.2.4
vitest 3.2.4 4.0.13

Updates @radix-ui/react-dialog from 1.1.14 to 1.1.15

Commits

Updates @radix-ui/react-label from 2.1.7 to 2.1.8

Commits

Updates @radix-ui/react-popover from 1.1.14 to 1.1.15

Commits

Updates @radix-ui/react-scroll-area from 1.2.9 to 1.2.10

Commits

Updates @radix-ui/react-slider from 1.3.5 to 1.3.6

Commits

Updates @radix-ui/react-slot from 1.2.3 to 1.2.4

Commits

Updates @radix-ui/react-switch from 1.2.5 to 1.2.6

Commits

Updates @radix-ui/react-tabs from 1.1.12 to 1.1.13

Commits

Updates @radix-ui/react-tooltip from 1.2.7 to 1.2.8

Commits

Updates lucide-react from 0.525.0 to 0.554.0

Release notes

Sourced from lucide-react's releases.

Version 0.554.0

What's Changed

Breaking change

For lucide-react and lucide-solid, imports for Fingerprint icon are changed to FingerprintPattern.

Lucide React

- import { Fingerprint } from "lucide-react";
+ import { FingerprintPattern } from "lucide-react";

Lucide Solid

- import { Fingerprint } from "lucide/solid";
+ import { FingerprintPattern } from "lucide/solid";
// Or

import Fingerprint from "lucide/solid/icons/fingerprint";


import FingerprintPattern from "lucide/solid/icons/fingerprint-pattern";

New Contributors

Full Changelog: lucide-icons/lucide@0.553.0...0.554.0

Version 0.553.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.552.0...0.553.0

Version 0.552.0

What's Changed

... (truncated)

Commits

Updates @biomejs/biome from 2.0.6 to 2.3.7

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.7

2.3.7

Patch Changes

  • #8169 7fdcec8 Thanks @​arendjr! - Fixed #7999: Correctly place await after leading comment in auto-fix action from noFloatingPromises rule.

  • #8157 12d5b42 Thanks @​Conaclos! - Fixed #8148. noInvalidUseBeforeDeclaration no longer reports some valid use before declarations.

    The following code is no longer reported as invalid:

    class classA {
      C = C;
    }
    const C = 0;
  • #8178 6ba4157 Thanks @​dyc3! - Fixed #8174, where the HTML parser would parse 2 directives as a single directive because it would not reject whitespace in Vue directives. This would cause the formatter to erroneously merge the 2 directives into one, resulting in broken code.

    - <Component v-else:property="123" />
    + <Component v-else :property="123" />
  • #8088 0eb08e8 Thanks @​db295! - Fixed #7876: The noUnusedImports rule now ignores imports that are used by @​linkcode and @​linkplain (previously supported @​link and @​see).

    The following code will no longer be a false positive:

    import type { a } from "a"
    /**
    
    {@​linkcode a}
    */
    function func() {}
  • #8119 8d64655 Thanks @​ematipico! - Improved the detection of the rule noUnnecessaryConditions. Now the rule isn't triggered for variables that are mutated inside a module.

    This logic deviates from the original rule, hence noUnnecessaryConditions is now marked as "inspired".

    In the following example, hey starts as false, but then it's assigned to a string. The rule isn't triggered inside the if check.

    let hey = false;
    function test() {
    hey = "string";

  • ... (truncated)

    Changelog

    Sourced from @​biomejs/biome's changelog.

    2.3.7

    Patch Changes

    • #8169 7fdcec8 Thanks @​arendjr! - Fixed #7999: Correctly place await after leading comment in auto-fix action from noFloatingPromises rule.

    • #8157 12d5b42 Thanks @​Conaclos! - Fixed #8148. noInvalidUseBeforeDeclaration no longer reports some valid use before declarations.

      The following code is no longer reported as invalid:

      class classA {
        C = C;
      }
      const C = 0;
    • #8178 6ba4157 Thanks @​dyc3! - Fixed #8174, where the HTML parser would parse 2 directives as a single directive because it would not reject whitespace in Vue directives. This would cause the formatter to erroneously merge the 2 directives into one, resulting in broken code.

      - <Component v-else:property="123" />
      + <Component v-else :property="123" />
    • #8088 0eb08e8 Thanks @​db295! - Fixed #7876: The noUnusedImports rule now ignores imports that are used by @​linkcode and @​linkplain (previously supported @​link and @​see).

      The following code will no longer be a false positive:

      import type { a } from "a"
      /**
      
      {@​linkcode a}
      */
      function func() {}
  • #8119 8d64655 Thanks @​ematipico! - Improved the detection of the rule noUnnecessaryConditions. Now the rule isn't triggered for variables that are mutated inside a module.

    This logic deviates from the original rule, hence noUnnecessaryConditions is now marked as "inspired".

    In the following example, hey starts as false, but then it's assigned to a string. The rule isn't triggered inside the if check.

    let hey = false;
    function test() {
    hey = "string";
    }

  • ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​biomejs/biome since your current version.


    Updates @chromatic-com/storybook from 4.1.0 to 4.1.3

    Release notes

    Sourced from @​chromatic-com/storybook's releases.

    v4.1.3

    🐛 Bug Fix

    Authors: 1

    v4.1.3-next.0

    🐛 Bug Fix

    Authors: 1

    v4.1.2

    🐛 Bug Fix

    • Broaden version-range for storybook peerDependency to include 10.1.0-0 #392 (@​ndelangen)

    Authors: 2

    v4.1.2-next.4

    ⚠️ Pushed to next

    • Broaden version-range for storybook peerDependency to include 10.2.0-0 and 10.3.0-0 (@​ndelangen)

    Authors: 1

    v4.1.2-next.3

    ⚠️ Pushed to next

    • Update GitHub Actions workflow to fetch full git history and tags with optimized settings (@​ndelangen)

    Authors: 1

    v4.1.2-next.2

    ⚠️ Pushed to next

    ... (truncated)

    Changelog

    Sourced from @​chromatic-com/storybook's changelog.

    v4.1.3 (Mon Nov 17 2025)

    🐛 Bug Fix

    Authors: 1


    v4.1.2 (Wed Oct 29 2025)

    🐛 Bug Fix

    Authors: 2


    v4.1.1 (Wed Aug 20 2025)

    🐛 Bug Fix

    Authors: 1


    Commits
    • f382bd5 Bump version to: 4.1.3 [skip ci]
    • eeea239 Update CHANGELOG.md [skip ci]
    • 05e1b8a Merge pull request #395 from chromaui/next
    • bf78815 Merge pull request #394 from chromaui/upgrade-chromatic-cli
    • aed7067 Upgrade CLI package to v13.3.3
    • a3af186 Bump version to: 4.1.2 [skip ci]
    • 5c28b49 Update CHANGELOG.md [skip ci]
    • b5fef8d Merge pull request #393 from chromaui/next
    • dbc88e7 Broaden version-range for storybook peerDependency to include 10.2.0-0 and 10...
    • 2b73fc6 Broaden version-range for storybook peerDependency to include 10.2.0-0 and 10...
    • Additional commits viewable in compare view

    Updates @playwright/test from 1.54.1 to 1.56.1

    Release notes

    Sourced from @​playwright/test's releases.

    v1.56.1

    Highlights

    #37871 chore: allow local-network-access permission in chromium #37891 fix(agents): remove workspaceFolder ref from vscode mcp #37759 chore: rename agents to test agents #37757 chore(mcp): fallback to cwd when resolving test config

    Browser Versions

    • Chromium 141.0.7390.37
    • Mozilla Firefox 142.0.1
    • WebKit 26.0

    v1.56.0

    Playwright Agents

    Introducing Playwright Agents, three custom agent definitions designed to guide LLMs through the core process of building a Playwright test:

    • 🎭 planner explores the app and produces a Markdown test plan
    • 🎭 generator transforms the Markdown plan into the Playwright Test files
    • 🎭 healer executes the test suite and automatically repairs failing tests

    Run npx playwright init-agents with your client of choice to generate the latest agent definitions:

    # Generate agent files for each agentic loop
    # Visual Studio Code
    npx playwright init-agents --loop=vscode
    # Claude Code
    npx playwright init-agents --loop=claude
    # opencode
    npx playwright init-agents --loop=opencode

    [!NOTE] VS Code v1.105 (currently on the VS Code Insiders channel) is needed for the agentic experience in VS Code. It will become stable shortly, we are a bit ahead of times with this functionality!

    Learn more about Playwright Agents

    New APIs

    UI Mode and HTML Reporter

    • Added option to 'html' reporter to disable the "Copy prompt" button
    • Added option to 'html' reporter and UI Mode to merge files, collapsing test and describe blocks into a single unified list
    • Added option to UI Mode mirroring the --update-snapshots options
    • Added option to UI Mode to run only a single worker at a time

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​playwright/test since your current version.


    Updates @storybook/addon-docs from 9.1.1 to 10.0.8

    Release notes

    Sourced from @​storybook/addon-docs's releases.

    v10.0.8

    10.0.8

    • React Native Web: Fix react native resuables and nativewind - #33056, thanks @​dannyhw!
    • React Native Web: Update vite-plugin-rnw for overall improvements - #32991, thanks @​dannyhw!
    • WebComponents: Fix `custom-elements.json` not being loaded - #33045, thanks @​ndelangen!

    v10.0.7

    10.0.7

    v10.0.6

    10.0.6

    v10.0.5

    10.0.5

    • Core: Add reentry guard to focus patch - #32655, thanks @​ia319!
    • Nextjs Vite: Update internal plugin to support `svgr` use cases - #32957, thanks @​yannbf!

    v10.0.4

    10.0.4

    v10.0.3

    10.0.3

    • Core: Better handling for TypeScript satisfies/as syntaxes - #32891, thanks @​yannbf!
    • Core: Fix wrong import to fix Yarn PnP support - #32928, thanks @​yannbf!
    • ESlint: Update `@storybook/experimental-nextjs-vite` in `no-renderer-packages` rule - #32909, thanks @​ndelangen!
    • React Native: Update withStorybook setup instructions - #32919, thanks @​dannyhw!

    v10.0.2

    10.0.2

    • CLI: Fix glob string formatting in csf-factories codemod - #32880, thanks @​yannbf!
    • Core: Improve file path resolution on Windows - #32893, thanks @​yannbf!
    • Vite: Update `optimizeViteDeps` for addon-docs and addon-vitest - #32881, thanks @​ndelangen!

    v10.0.1

    10.0.1

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-docs's changelog.

    10.0.8

    • React Native Web: Fix react native resuables and nativewind - #33056, thanks @​dannyhw!
    • React Native Web: Update vite-plugin-rnw for overall improvements - #32991, thanks @​dannyhw!
    • WebComponents: Fix custom-elements.json not being loaded - #33045, thanks @​ndelangen!

    10.0.7

    10.0.6

    10.0.5

    • Core: Add reentry guard to focus patch - #32655, thanks @​ia319!
    • Nextjs Vite: Update internal plugin to support svgr use cases - #32957, thanks @​yannbf!

    10.0.4

    10.0.3

    • Core: Better handling for TypeScript satisfies/as syntaxes - #32891, thanks @​yannbf!
    • Core: Fix wrong import to fix Yarn PnP support - #32928, thanks @​yannbf!
    • ESlint: Update @storybook/experimental-nextjs-vite in no-renderer-packages rule - #32909, thanks @​ndelangen!
    • React Native: Update withStorybook setup instructions - #32919, thanks @​dannyhw!

    10.0.2

    • CLI: Fix glob string formatting in csf-factories codemod - #32880, thanks @​yannbf!
    • Core: Improve file path resolution on Windows - #32893, thanks @​yannbf!
    • Vite: Update optimizeViteDeps for addon-docs and addon-vitest - #32881, thanks @​ndelangen!

    10.0.1

    10.0.0

    Storybook 10 contains one breaking change: it’s ESM-only. This simplifies our distribution and reduces install size by 29% while simultaneously unminifying dist code for easier debugging. It also includes features to level up your UI development, documentation, and testing workflows:

    ... (truncated)

    Commits
    • 0c00f80 Bump version from "10.0.7" to "10.0.8" [skip ci]
    • 8e7b0d2 Merge pull request #33044 from storybookjs/norbert/bust-cache-2015-11-14
    • c1d388c Bump version from "10.0.6" to "10.0.7" [skip ci]
    • 8ca96a8 Bump version from "10.0.5" to "10.0.6" [skip ci]
    • 430a3e9 Merge pull request #32539 from ia319/bug/32454
    • f3bad0e Bump version from "10.0.4" to "10.0.5" [skip ci]
    • 8396932 Bump version from "10.0.3" to "10.0.4" [skip ci]
    • f04202c Bump version from "10.0.2" to "10.0.3" [skip ci]
    • 06d0c2f Bump version from "10.0.1" to "10.0.2" [skip ci]
    • 86fb5e6 Merge pull request #32881 from storybookjs/norbert/improve-optimizedeps-array
    • Additional commits viewable in compare view
    Maintainer changes

    This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​storybook/addon-docs since your current version.


    Updates @storybook/react-vite from 9.1.1 to 10.0.8

    Release notes

    Sourced from @​storybook/react-vite's releases.

    v10.0.8

    10.0.8

    • React Native Web: Fix react native resuables and nativewind - #33056, thanks @​dannyhw!
    • React Native Web: Update vite-plugin-rnw for overall improvements - #32991, thanks @​dannyhw!
    • WebComponents: Fix `custom-elements.json` not being loaded - #33045, thanks @​ndelangen!

    v10.0.7

    10.0.7

    v10.0.6

    10.0.6

    v10.0.5

    10.0.5

    • Core: Add reentry guard to focus patch - #32655, thanks @​ia319!
    • Nextjs Vite: Update internal plugin to support `svgr` use cases - #32957, thanks @​yannbf!

    v10.0.4

    10.0.4

    v10.0.3

    10.0.3

    • Core: Better handling for TypeScript satisfies/as syntaxes - #32891, thanks @​yannbf!
    • Core: Fix wrong import to fix Yarn PnP support - #32928, thanks @​yannbf!
    • ESlint: Update `@storybook/experimental-nextjs-vite` in `no-renderer-packages` rule - #32909, thanks @​ndelangen!
    • React Native: Update withStorybook setup instructions - #32919, thanks @​dannyhw!

    v10.0.2

    10.0.2

    • CLI: Fix glob string formatting in csf-factories codemod - #32880, thanks @​yannbf!
    • Core: Improve file path resolution on Windows - #32893, thanks @​yannbf!
    • Vite: Update `optimizeViteDeps` for addon-docs and addon-vitest - #32881, thanks @​ndelangen!

    v10.0.1

    10.0.1

    ... (truncated)

    Changelog

    Sourced from @​storybook/react-vite's changelog.

    10.0.8

    • React Native Web: Fix react native resuables and nativewind - #33056, thanks @​dannyhw!
    • React Native Web: Update vite-plugin-rnw for overall improvements - #32991, thanks @​dannyhw!
    • WebComponents: Fix custom-elements.json not being loaded - #33045, thanks @​ndelangen!

    10.0.7

    10.0.6

    10.0.5

    • Core: Add reentry guard to focus patch - #32655, thanks @​ia319!
    • Nextjs Vite: Update internal plugin to support svgr use cases - #32957, thanks @​yannbf!

    10.0.4

    10.0.3

    • Core: Better handling for TypeScript satisfies/as syntaxes - #32891, thanks @​yannbf!
    • Core: Fix wrong import to fix Yarn PnP support - #32928, thanks @​yannbf!
    • ESlint: Update @storybook/experimental-nextjs-vite in no-renderer-packages rule - #32909, thanks @​ndelangen!
    • React Native: Update withStorybook setup instructions - #32919, thanks @​dannyhw!

    10.0.2

    • CLI: Fix glob string formatting in csf-factories codemod - #32880, thanks @​yannbf!
    • Core: Improve file path resolution on Windows - #32893, thanks @​yannbf!
    • Vite: Update optimizeViteDeps for addon-docs and addon-vitest - #32881, thanks @​ndelangen!

    10.0.1

    10.0.0

    Storybook 10 contains one breaking change: it’s ESM-only. This simplifies our distribution and reduces install size by 29% while simultaneously unminifying dist code for easier debugging. It also includes features to level up your UI development, documentation, and testing workflows:

    ... (truncated)

    Commits
    • 0c00f80 Bump version from "10.0.7" to "10.0.8" [skip ci]
    • 8e7b0d2 Merge pull request #33044 from storybookjs/norbert/bust-cache-2015-11-14
    • c1d388c Bump version from "10.0.6" to "10.0.7" [skip ci]
    • 8ca96a8 Bump version from "10.0.5" to "10.0.6" [skip ci]
    • f3bad0e Bump version from "10.0.4" to "10.0.5" [skip ci]
    • 8396932 Bump version from "10.0.3" to "10.0.4" [skip ci]
    • f04202c Bump version from "10.0.2" to "10.0.3" [skip ci]
    • 06d0c2f Bump version from "10.0.1" to "10.0.2" [skip ci]
    • ce1c3b9 Bump version from "10.0.0" to "10.0.1" [skip ci]
    • 88a02e6 Bump version from "10.0.0-rc.4" to "10.0.0" [skip ci]
    • Additional commits viewable in compare view
    Maintainer changes

    This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​storybook/react-vite since your current version.


    Updates @synthetixio/synpress from 4.1.0 to 4.1.1

    Commits

    Updates @tailwindcss/postcss from 4.1.11 to 4.1.17

    Release notes

    Sourced from @​tailwindcss/postcss's releases.

    v4.1.17

    Fixed

    • Substitute @variant inside legacy JS APIs (

    …36 updates
    
    Bumps the all-dependencies group with 36 updates in the /packages/ui-react directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@radix-ui/react-dialog](https://github.com/radix-ui/primitives) | `1.1.14` | `1.1.15` |
    | [@radix-ui/react-label](https://github.com/radix-ui/primitives) | `2.1.7` | `2.1.8` |
    | [@radix-ui/react-popover](https://github.com/radix-ui/primitives) | `1.1.14` | `1.1.15` |
    | [@radix-ui/react-scroll-area](https://github.com/radix-ui/primitives) | `1.2.9` | `1.2.10` |
    | [@radix-ui/react-slider](https://github.com/radix-ui/primitives) | `1.3.5` | `1.3.6` |
    | [@radix-ui/react-slot](https://github.com/radix-ui/primitives) | `1.2.3` | `1.2.4` |
    | [@radix-ui/react-switch](https://github.com/radix-ui/primitives) | `1.2.5` | `1.2.6` |
    | [@radix-ui/react-tabs](https://github.com/radix-ui/primitives) | `1.1.12` | `1.1.13` |
    | [@radix-ui/react-tooltip](https://github.com/radix-ui/primitives) | `1.2.7` | `1.2.8` |
    | [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.525.0` | `0.554.0` |
    | [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.0.6` | `2.3.7` |
    | [@chromatic-com/storybook](https://github.com/chromaui/addon-visual-tests) | `4.1.0` | `4.1.3` |
    | [@playwright/test](https://github.com/microsoft/playwright) | `1.54.1` | `1.56.1` |
    | [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs) | `9.1.1` | `10.0.8` |
    | [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `9.1.1` | `10.0.8` |
    | [@synthetixio/synpress](https://github.com/Synthetixio/synpress) | `4.1.0` | `4.1.1` |
    | [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.1.11` | `4.1.17` |
    | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.19.9` | `24.10.1` |
    | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.6` |
    | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` |
    | [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.7.0` | `5.1.1` |
    | [@vitest/browser](https://github.com/vitest-dev/vitest/tree/HEAD/packages/browser) | `3.2.4` | `4.0.13` |
    | [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `3.2.4` | `4.0.13` |
    | [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.21` | `10.4.22` |
    | [chromatic](https://github.com/chromaui/chromatic-cli) | `13.1.2` | `13.3.4` |
    | [dotenv](https://github.com/motdotla/dotenv) | `17.2.1` | `17.2.3` |
    | [globals](https://github.com/sindresorhus/globals) | `16.3.0` | `16.5.0` |
    | [playwright](https://github.com/microsoft/playwright) | `1.54.1` | `1.56.1` |
    | [rimraf](https://github.com/isaacs/rimraf) | `6.0.1` | `6.1.2` |
    | [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core) | `9.1.1` | `10.0.8` |
    | [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `3.3.1` | `3.4.0` |
    | [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.11` | `4.1.17` |
    | [tw-animate-css](https://github.com/Wombosvideo/tw-animate-css) | `1.3.6` | `1.4.0` |
    | [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.3` |
    | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.1.0` | `7.2.4` |
    | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.2.4` | `4.0.13` |
    
    
    
    Updates `@radix-ui/react-dialog` from 1.1.14 to 1.1.15
    - [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
    - [Commits](https://github.com/radix-ui/primitives/commits)
    
    Updates `@radix-ui/react-label` from 2.1.7 to 2.1.8
    - [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
    - [Commits](https://github.com/radix-ui/primitives/commits)
    
    Updates `@radix-ui/react-popover` from 1.1.14 to 1.1.15
    - [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
    - [Commits](https://github.com/radix-ui/primitives/commits)
    
    Updates `@radix-ui/react-scroll-area` from 1.2.9 to 1.2.10
    - [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
    - [Commits](https://github.com/radix-ui/primitives/commits)
    
    Updates `@radix-ui/react-slider` from 1.3.5 to 1.3.6
    - [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
    - [Commits](https://github.com/radix-ui/primitives/commits)
    
    Updates `@radix-ui/react-slot` from 1.2.3 to 1.2.4
    - [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
    - [Commits](https://github.com/radix-ui/primitives/commits)
    
    Updates `@radix-ui/react-switch` from 1.2.5 to 1.2.6
    - [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
    - [Commits](https://github.com/radix-ui/primitives/commits)
    
    Updates `@radix-ui/react-tabs` from 1.1.12 to 1.1.13
    - [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
    - [Commits](https://github.com/radix-ui/primitives/commits)
    
    Updates `@radix-ui/react-tooltip` from 1.2.7 to 1.2.8
    - [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
    - [Commits](https://github.com/radix-ui/primitives/commits)
    
    Updates `lucide-react` from 0.525.0 to 0.554.0
    - [Release notes](https://github.com/lucide-icons/lucide/releases)
    - [Commits](https://github.com/lucide-icons/lucide/commits/0.554.0/packages/lucide-react)
    
    Updates `@biomejs/biome` from 2.0.6 to 2.3.7
    - [Release notes](https://github.com/biomejs/biome/releases)
    - [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
    - [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.3.7/packages/@biomejs/biome)
    
    Updates `@chromatic-com/storybook` from 4.1.0 to 4.1.3
    - [Release notes](https://github.com/chromaui/addon-visual-tests/releases)
    - [Changelog](https://github.com/chromaui/addon-visual-tests/blob/v4.1.3/CHANGELOG.md)
    - [Commits](chromaui/addon-visual-tests@v4.1.0...v4.1.3)
    
    Updates `@playwright/test` from 1.54.1 to 1.56.1
    - [Release notes](https://github.com/microsoft/playwright/releases)
    - [Commits](microsoft/playwright@v1.54.1...v1.56.1)
    
    Updates `@storybook/addon-docs` from 9.1.1 to 10.0.8
    - [Release notes](https://github.com/storybookjs/storybook/releases)
    - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
    - [Commits](https://github.com/storybookjs/storybook/commits/v10.0.8/code/addons/docs)
    
    Updates `@storybook/react-vite` from 9.1.1 to 10.0.8
    - [Release notes](https://github.com/storybookjs/storybook/releases)
    - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
    - [Commits](https://github.com/storybookjs/storybook/commits/v10.0.8/code/frameworks/react-vite)
    
    Updates `@synthetixio/synpress` from 4.1.0 to 4.1.1
    - [Release notes](https://github.com/Synthetixio/synpress/releases)
    - [Commits](https://github.com/Synthetixio/synpress/compare/@synthetixio/synpress@4.1.0...@synthetixio/synpress@4.1.1)
    
    Updates `@tailwindcss/postcss` from 4.1.11 to 4.1.17
    - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
    - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.1.17/packages/@tailwindcss-postcss)
    
    Updates `@types/node` from 20.19.9 to 24.10.1
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
    
    Updates `@types/react` from 19.1.8 to 19.2.6
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)
    
    Updates `@types/react-dom` from 19.1.6 to 19.2.3
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)
    
    Updates `@vitejs/plugin-react` from 4.7.0 to 5.1.1
    - [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
    - [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@5.1.1/packages/plugin-react)
    
    Updates `@vitest/browser` from 3.2.4 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/browser)
    
    Updates `@vitest/coverage-v8` from 3.2.4 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/coverage-v8)
    
    Updates `autoprefixer` from 10.4.21 to 10.4.22
    - [Release notes](https://github.com/postcss/autoprefixer/releases)
    - [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
    - [Commits](postcss/autoprefixer@10.4.21...10.4.22)
    
    Updates `chromatic` from 13.1.2 to 13.3.4
    - [Release notes](https://github.com/chromaui/chromatic-cli/releases)
    - [Changelog](https://github.com/chromaui/chromatic-cli/blob/main/CHANGELOG.md)
    - [Commits](chromaui/chromatic-cli@v13.1.2...v13.3.4)
    
    Updates `dotenv` from 17.2.1 to 17.2.3
    - [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
    - [Commits](motdotla/dotenv@v17.2.1...v17.2.3)
    
    Updates `globals` from 16.3.0 to 16.5.0
    - [Release notes](https://github.com/sindresorhus/globals/releases)
    - [Commits](sindresorhus/globals@v16.3.0...v16.5.0)
    
    Updates `playwright` from 1.54.1 to 1.56.1
    - [Release notes](https://github.com/microsoft/playwright/releases)
    - [Commits](microsoft/playwright@v1.54.1...v1.56.1)
    
    Updates `rimraf` from 6.0.1 to 6.1.2
    - [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
    - [Commits](isaacs/rimraf@v6.0.1...v6.1.2)
    
    Updates `storybook` from 9.1.1 to 10.0.8
    - [Release notes](https://github.com/storybookjs/storybook/releases)
    - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
    - [Commits](https://github.com/storybookjs/storybook/commits/v10.0.8/code/core)
    
    Updates `tailwind-merge` from 3.3.1 to 3.4.0
    - [Release notes](https://github.com/dcastil/tailwind-merge/releases)
    - [Commits](dcastil/tailwind-merge@v3.3.1...v3.4.0)
    
    Updates `tailwindcss` from 4.1.11 to 4.1.17
    - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
    - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.1.17/packages/tailwindcss)
    
    Updates `tw-animate-css` from 1.3.6 to 1.4.0
    - [Release notes](https://github.com/Wombosvideo/tw-animate-css/releases)
    - [Commits](Wombosvideo/tw-animate-css@v1.3.6...v1.4.0)
    
    Updates `typescript` from 5.8.3 to 5.9.3
    - [Release notes](https://github.com/microsoft/TypeScript/releases)
    - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
    - [Commits](microsoft/TypeScript@v5.8.3...v5.9.3)
    
    Updates `vite` from 7.1.0 to 7.2.4
    - [Release notes](https://github.com/vitejs/vite/releases)
    - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite/commits/v7.2.4/packages/vite)
    
    Updates `vitest` from 3.2.4 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/vitest)
    
    ---
    updated-dependencies:
    - dependency-name: "@radix-ui/react-dialog"
      dependency-version: 1.1.15
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: "@radix-ui/react-label"
      dependency-version: 2.1.8
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: "@radix-ui/react-popover"
      dependency-version: 1.1.15
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: "@radix-ui/react-scroll-area"
      dependency-version: 1.2.10
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: "@radix-ui/react-slider"
      dependency-version: 1.3.6
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: "@radix-ui/react-slot"
      dependency-version: 1.2.4
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: "@radix-ui/react-switch"
      dependency-version: 1.2.6
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: "@radix-ui/react-tabs"
      dependency-version: 1.1.13
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: "@radix-ui/react-tooltip"
      dependency-version: 1.2.8
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: lucide-react
      dependency-version: 0.554.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: "@biomejs/biome"
      dependency-version: 2.3.7
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: "@chromatic-com/storybook"
      dependency-version: 4.1.3
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: "@playwright/test"
      dependency-version: 1.56.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: "@storybook/addon-docs"
      dependency-version: 10.0.8
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-dependencies
    - dependency-name: "@storybook/react-vite"
      dependency-version: 10.0.8
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-dependencies
    - dependency-name: "@synthetixio/synpress"
      dependency-version: 4.1.1
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: "@tailwindcss/postcss"
      dependency-version: 4.1.17
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: "@types/node"
      dependency-version: 24.10.1
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-dependencies
    - dependency-name: "@types/react"
      dependency-version: 19.2.6
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: "@types/react-dom"
      dependency-version: 19.2.3
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: "@vitejs/plugin-react"
      dependency-version: 5.1.1
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-dependencies
    - dependency-name: "@vitest/browser"
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-dependencies
    - dependency-name: "@vitest/coverage-v8"
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-dependencies
    - dependency-name: autoprefixer
      dependency-version: 10.4.22
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: chromatic
      dependency-version: 13.3.4
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: dotenv
      dependency-version: 17.2.3
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: globals
      dependency-version: 16.5.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: playwright
      dependency-version: 1.56.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: rimraf
      dependency-version: 6.1.2
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: storybook
      dependency-version: 10.0.8
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-dependencies
    - dependency-name: tailwind-merge
      dependency-version: 3.4.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: tailwindcss
      dependency-version: 4.1.17
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: tw-animate-css
      dependency-version: 1.4.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: typescript
      dependency-version: 5.9.3
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: vite
      dependency-version: 7.2.4
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: vitest
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-dependencies
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 24, 2025
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    0 participants