Skip to content

chore(deps): bump the minor-and-patch group across 1 directory with 19 updates - #44

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-73f8ae0362
Open

chore(deps): bump the minor-and-patch group across 1 directory with 19 updates#44
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-73f8ae0362

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 26, 2026

Copy link
Copy Markdown

Bumps the minor-and-patch group with 19 updates in the / directory:

Package From To
pixelarticons 2.1.2 2.4.1
shiki 4.1.0 4.4.3
@ark-ui/react 5.37.2 5.39.0
@biomejs/biome 2.4.15 2.5.10
@storybook/addon-a11y 10.4.1 10.5.10
@storybook/addon-docs 10.4.1 10.5.10
@storybook/react-vite 10.4.1 10.5.10
@testing-library/user-event 14.6.1 14.6.6
@vitejs/plugin-react 6.0.2 6.1.0
@vitest/coverage-v8 4.1.7 4.1.11
lint-staged 17.0.5 17.3.0
postcss 8.5.15 8.5.26
react 19.2.7 19.2.8
@types/react 19.2.15 19.2.18
react-dom 19.2.7 19.2.8
@types/react-dom 19.2.3 19.2.4
storybook 10.4.1 10.5.10
vite 8.0.14 8.2.2
vitest 4.1.7 4.1.11

Updates pixelarticons from 2.1.2 to 2.4.1

Release notes

Sourced from pixelarticons's releases.

⭐️ +159 new free icons!

  • Move 159 icons from Pro to free: brands, UI essentials, dev stack c7ea6a2

halfmage/pixelarticons@v2.3.0...v2.4.0

entry point fixes

  • Fix the package entry point, the webfont docs and two block-rendering icons 6cb52b4
  • updated numbers and news block efb6e17

halfmage/pixelarticons@v2.2.0...v2.3.0

July 2026 - 64 new icons

  • added 64 new free icons 8f295e5

halfmage/pixelarticons@v2.1.2...v2.2.0

Commits
  • eefef31 2.4.1
  • abf83b4 Fix the react entry for Node ESM and the React name collision
  • 9e6658c 2.4.0
  • c7ea6a2 Move 159 icons from Pro to free: brands, UI essentials, dev stack
  • 0e0cc65 2.3.0
  • 6cb52b4 Fix the package entry point, the webfont docs and two block-rendering icons
  • efb6e17 updated numbers and news block
  • f901c59 2.2.0
  • 8f295e5 added 64 new free icons
  • See full diff in compare view

Updates shiki from 4.1.0 to 4.4.3

Release notes

Sourced from shiki's releases.

v4.4.3

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v4.4.2

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.4.1

   🚀 Features

    View changes on GitHub

v4.4.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v4.3.1

   🚀 Features

    View changes on GitHub

v4.3.0

   🚀 Features

... (truncated)

Commits

Updates @ark-ui/react from 5.37.2 to 5.39.0

Release notes

Sourced from @​ark-ui/react's releases.

@​ark-ui/react@​5.39.0

@​ark-ui/react

[5.39.0] - 2026-08-21

Added

  • Toc [New]: Add a table of contents component that tracks which headings are in view as the reader scrolls. Pass the headings to Toc.Root as items, where each entry needs the heading element's id as value and its level as depth. Set scrollEl when the content scrolls inside a container rather than the page, so tracking observes that element instead of the viewport.
    <Toc.Root items={items} scrollEl={() => contentRef.current}>
      <Toc.Content />
      <Toc.Nav>
        <Toc.Title />
        <Toc.List>
          <Toc.Indicator />
          <Toc.Item item={item}>
            <Toc.Link />
          </Toc.Item>
        </Toc.List>
      </Toc.Nav>
    </Toc.Root>
    More than one heading can be active at once, so Toc.Item carries data-first and data-last to mark the ends of the range, and Toc.Indicator spans it. Use useToc with Toc.RootProvider to reach activeItems and scrollTo from outside the tree. The API may still change while the component is in preview.
  • Hotkeys [New]: Add a hotkeys entrypoint with hooks for registering and inspecting keyboard shortcuts, built on @zag-js/hotkeys. useHotkey registers one command. useHotkeys registers several. mod+K resolves per platform, and sequences like G > H go through the same hook. Command ids are optional and generated when omitted.
    useHotkey({ hotkey: 'mod+K', action: openSearch })
    useHotkeys({
      commands: [
        { hotkey: 'mod+S', action: save, label: 'Save', category: 'File' },
        { hotkey: 'G > H', action: goHome, label: 'Home' },
      ],
    })
    useHotkeyRegistrations returns those commands with their metadata (label, description, category, keywords), so a command palette or shortcut dialog can render from the same registration that binds the key. Pass a store from createHotkeyStore to scope a set of commands. Without one, hooks share a default store.
    const store = createHotkeyStore()
    useHotkeys({ commands, store })
    const registered = useHotkeyRegistrations({ store })
    Active scopes, conflict behavior, sequence timeout, and default options are configured on the store. usePressedKeys and useIsKeyPressed track live key state. useHotkeyRecorder records a chord or sequence for rebinding UIs.

... (truncated)

Changelog

Sourced from @​ark-ui/react's changelog.

[5.39.0] - 2026-08-21

Added

  • Toc [New]: Add a table of contents component that tracks which headings are in view as the reader scrolls. Pass the headings to Toc.Root as items, where each entry needs the heading element's id as value and its level as depth. Set scrollEl when the content scrolls inside a container rather than the page, so tracking observes that element instead of the viewport.
    <Toc.Root items={items} scrollEl={() => contentRef.current}>
      <Toc.Content />
      <Toc.Nav>
        <Toc.Title />
        <Toc.List>
          <Toc.Indicator />
          <Toc.Item item={item}>
            <Toc.Link />
          </Toc.Item>
        </Toc.List>
      </Toc.Nav>
    </Toc.Root>
    More than one heading can be active at once, so Toc.Item carries data-first and data-last to mark the ends of the range, and Toc.Indicator spans it. Use useToc with Toc.RootProvider to reach activeItems and scrollTo from outside the tree. The API may still change while the component is in preview.
  • Hotkeys [New]: Add a hotkeys entrypoint with hooks for registering and inspecting keyboard shortcuts, built on @zag-js/hotkeys. useHotkey registers one command. useHotkeys registers several. mod+K resolves per platform, and sequences like G > H go through the same hook. Command ids are optional and generated when omitted.
    useHotkey({ hotkey: 'mod+K', action: openSearch })
    useHotkeys({
      commands: [
        { hotkey: 'mod+S', action: save, label: 'Save', category: 'File' },
        { hotkey: 'G > H', action: goHome, label: 'Home' },
      ],
    })
    useHotkeyRegistrations returns those commands with their metadata (label, description, category, keywords), so a command palette or shortcut dialog can render from the same registration that binds the key. Pass a store from createHotkeyStore to scope a set of commands. Without one, hooks share a default store.
    const store = createHotkeyStore()
    useHotkeys({ commands, store })
    const registered = useHotkeyRegistrations({ store })
    Active scopes, conflict behavior, sequence timeout, and default options are configured on the store. usePressedKeys and useIsKeyPressed track live key state. useHotkeyRecorder records a chord or sequence for rebinding UIs. usePlatform and useFormatHotkey render shortcuts for the current platform without a hydration mismatch.
  • Presence: Add onEnterComplete, called once the enter animation finishes, mirroring the existing onExitComplete. Vue exposes it as the enter-complete emit.

... (truncated)

Commits
  • e75b062 chore: release packages (#3981)
  • 213ecac feat: expose DOM attribute utilities (#3987)
  • 4f410b6 refactor(hotkeys): take object params and drop the provider
  • 1a2e8f8 fix(hotkeys): give each example's commands a unique id
  • 7dd9369 feat(hotkeys): add hotkeys primitive for react, solid, vue and svelte (#3985)
  • 514dc2c feat: toc component implementation (#3850)
  • aa9f43a fix(react): unwrap react.lazy asChild children across the RSC boundary (#3980)
  • e15f8c4 chore(deps): update dependency @​types/jsdom to v30 (#3970)
  • 16cf517 chore: release packages (#3968)
  • 930548e chore(deps): update all non-major dependencies (#3974)
  • Additional commits viewable in compare view

Updates @biomejs/biome from 2.4.15 to 2.5.10

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.10

2.5.10

Patch Changes

  • #11403 8f7786f Thanks @​Princesseuh! - Fixed Astro rejecting JavaScript comments between attributes.

    <div /* block comment */ class="something"></div>
    <Component /* c */ client:load />
  • #11403 8f7786f Thanks @​Princesseuh! - Fixed a bare < in Astro text being treated as the start of a tag, such as <p>5 < 6 and 7 > 6</p>. As in HTML, a < that cannot open a tag is text and needs no escaping.

  • #11438 3133ffa Thanks @​Princesseuh! - Fixed #8294: an Astro expression holding only a comment is no longer reported as a parse error, which also stopped the whole file from being formatted.

    <div>{/* a note */}</div>
    <div class={/* a note */}>x</div>
  • #11403 8f7786f Thanks @​Princesseuh! - Fixed #9165: an empty Astro expression such as <div>{}</div> no longer fails to parse. Astro renders {} as nothing.

  • #11403 8f7786f Thanks @​Princesseuh! - Fixed Astro expressions containing a comment failing to parse.

    <div>{/* block comment */ x}</div>
    <div>{/* only a comment */}</div>
  • #11403 8f7786f Thanks @​Princesseuh! - Added support for Astro's fragment shorthand.

    <>
      <p>a</p>
    </>
  • #11403 8f7786f Thanks @​Princesseuh! - Fixed an Astro frontmatter block being cut short by a closing tag inside a string or comment.

    ---
    const a = "</script>";
    // </script> in a comment
    ---
  • #11403 8f7786f Thanks @​Princesseuh! - Fixed --- being read as an Astro frontmatter fence when markup precedes it. Astro only recognizes frontmatter at the very start of a file, so a file opening with a comment now has no frontmatter, and its --- lines are content.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.10

Patch Changes

  • #11403 8f7786f Thanks @​Princesseuh! - Fixed Astro rejecting JavaScript comments between attributes.

    <div /* block comment */ class="something"></div>
    <Component /* c */ client:load />
  • #11403 8f7786f Thanks @​Princesseuh! - Fixed a bare < in Astro text being treated as the start of a tag, such as <p>5 < 6 and 7 > 6</p>. As in HTML, a < that cannot open a tag is text and needs no escaping.

  • #11438 3133ffa Thanks @​Princesseuh! - Fixed #8294: an Astro expression holding only a comment is no longer reported as a parse error, which also stopped the whole file from being formatted.

    <div>{/* a note */}</div>
    <div class={/* a note */}>x</div>
  • #11403 8f7786f Thanks @​Princesseuh! - Fixed #9165: an empty Astro expression such as <div>{}</div> no longer fails to parse. Astro renders {} as nothing.

  • #11403 8f7786f Thanks @​Princesseuh! - Fixed Astro expressions containing a comment failing to parse.

    <div>{/* block comment */ x}</div>
    <div>{/* only a comment */}</div>
  • #11403 8f7786f Thanks @​Princesseuh! - Added support for Astro's fragment shorthand.

    <>
      <p>a</p>
    </>
  • #11403 8f7786f Thanks @​Princesseuh! - Fixed an Astro frontmatter block being cut short by a closing tag inside a string or comment.

    ---
    const a = "</script>";
    // </script> in a comment
    ---
  • #11403 8f7786f Thanks @​Princesseuh! - Fixed --- being read as an Astro frontmatter fence when markup precedes it. Astro only recognizes frontmatter at the very start of a file, so a file opening with a comment now has no frontmatter, and its --- lines are content.

    <!-- c -->

... (truncated)

Commits

Updates @storybook/addon-a11y from 10.4.1 to 10.5.10

Release notes

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

v10.5.10

10.5.10

v10.5.9

10.5.9

v10.5.8

10.5.8

v10.5.7

10.5.7

v10.5.6

10.5.6

v10.5.5

10.5.5

... (truncated)

Changelog

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

10.5.10

10.5.9

10.5.8

10.5.7

10.5.6

10.5.5

10.5.4

... (truncated)

Commits
  • a2db752 Bump version from "10.5.9" to "10.5.10" [skip ci]
  • 8f56104 Bump version from "10.5.8" to "10.5.9" [skip ci]
  • 6ef7d1a Bump version from "10.5.7" to "10.5.8" [skip ci]
  • 7c6fb3a Bump version from "10.5.6" to "10.5.7" [skip ci]
  • 80195a0 Merge pull request #35486 from storybookjs/valentin/cli-local-postinstall-aut...
  • 3126f0a Bump version from "10.5.5" to "10.5.6" [skip ci]
  • 05a52b7 Bump version from "10.5.4" to "10.5.5" [skip ci]
  • 3327dc4 Bump version from "10.5.3" to "10.5.4" [skip ci]
  • 9ac2739 Bump version from "10.5.2" to "10.5.3" [skip ci]
  • b4b00f2 Merge pull request #34971 from storybookjs/valentin/upgrade-typescript-6
  • Additional commits viewable in compare view

Updates @storybook/addon-docs from 10.4.1 to 10.5.10

Release notes

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

v10.5.10

10.5.10

v10.5.9

10.5.9

v10.5.8

10.5.8

v10.5.7

10.5.7

v10.5.6

10.5.6

v10.5.5

10.5.5

... (truncated)

Changelog

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

10.5.10

10.5.9

10.5.8

10.5.7

10.5.6

10.5.5

10.5.4

... (truncated)

Commits
  • a2db752 Bump version from "10.5.9" to "10.5.10" [skip ci]
  • 8f56104 Bump version from "10.5.8" to "10.5.9" [skip ci]
  • 6ef7d1a Bump version from "10.5.7" to "10.5.8" [skip ci]
  • 7c6fb3a Bump version from "10.5.6" to "10.5.7" [skip ci]
  • 3126f0a Bump version from "10.5.5" to "10.5.6" [skip ci]
  • 05a52b7 Bump version from "10.5.4" to "10.5.5" [skip ci]
  • 3327dc4 Bump version from "10.5.3" to "10.5.4" [skip ci]
  • 9ac2739 Bump version from "10.5.2" to "10.5.3" [skip ci]
  • b4b00f2 Merge pull request #34971 from storybookjs/valentin/upgrade-typescript-6
  • 518f711 Bump version from "10.5.1" to "10.5.2" [skip ci]
  • Additional commits viewable in compare view

Updates @storybook/react-vite from 10.4.1 to 10.5.10

Release notes

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

...

Description has been truncated

…9 updates

Bumps the minor-and-patch group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [pixelarticons](https://github.com/halfmage/pixelarticons) | `2.1.2` | `2.4.1` |
| [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki) | `4.1.0` | `4.4.3` |
| [@ark-ui/react](https://github.com/chakra-ui/ark/tree/HEAD/packages/react) | `5.37.2` | `5.39.0` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.15` | `2.5.10` |
| [@storybook/addon-a11y](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/a11y) | `10.4.1` | `10.5.10` |
| [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs) | `10.4.1` | `10.5.10` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `10.4.1` | `10.5.10` |
| [@testing-library/user-event](https://github.com/testing-library/user-event) | `14.6.1` | `14.6.6` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `6.0.2` | `6.1.0` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.7` | `4.1.11` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `17.0.5` | `17.3.0` |
| [postcss](https://github.com/postcss/postcss) | `8.5.15` | `8.5.26` |
| [react](https://github.com/react/react/tree/HEAD/packages/react) | `19.2.7` | `19.2.8` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.15` | `19.2.18` |
| [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `19.2.7` | `19.2.8` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.2.3` | `19.2.4` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core) | `10.4.1` | `10.5.10` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.14` | `8.2.2` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.7` | `4.1.11` |



Updates `pixelarticons` from 2.1.2 to 2.4.1
- [Release notes](https://github.com/halfmage/pixelarticons/releases)
- [Commits](halfmage/pixelarticons@v2.1.2...v2.4.1)

Updates `shiki` from 4.1.0 to 4.4.3
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v4.4.3/packages/shiki)

Updates `@ark-ui/react` from 5.37.2 to 5.39.0
- [Release notes](https://github.com/chakra-ui/ark/releases)
- [Changelog](https://github.com/chakra-ui/ark/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/chakra-ui/ark/commits/@ark-ui/react@5.39.0/packages/react)

Updates `@biomejs/biome` from 2.4.15 to 2.5.10
- [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.5.10/packages/@biomejs/biome)

Updates `@storybook/addon-a11y` from 10.4.1 to 10.5.10
- [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.5.10/code/addons/a11y)

Updates `@storybook/addon-docs` from 10.4.1 to 10.5.10
- [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.5.10/code/addons/docs)

Updates `@storybook/react-vite` from 10.4.1 to 10.5.10
- [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.5.10/code/frameworks/react-vite)

Updates `@testing-library/user-event` from 14.6.1 to 14.6.6
- [Release notes](https://github.com/testing-library/user-event/releases)
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
- [Commits](testing-library/user-event@v14.6.1...v14.6.6)

Updates `@vitejs/plugin-react` from 6.0.2 to 6.1.0
- [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@6.1.0/packages/plugin-react)

Updates `@vitest/coverage-v8` from 4.1.7 to 4.1.11
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.11/packages/coverage-v8)

Updates `lint-staged` from 17.0.5 to 17.3.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v17.0.5...v17.3.0)

Updates `postcss` from 8.5.15 to 8.5.26
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.15...8.5.26)

Updates `react` from 19.2.7 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react)

Updates `@types/react` from 19.2.15 to 19.2.18
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `react-dom` from 19.2.7 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react-dom)

Updates `@types/react-dom` from 19.2.3 to 19.2.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `storybook` from 10.4.1 to 10.5.10
- [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.5.10/code/core)

Updates `vite` from 8.0.14 to 8.2.2
- [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/v8.2.2/packages/vite)

Updates `vitest` from 4.1.7 to 4.1.11
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.11/packages/vitest)

---
updated-dependencies:
- dependency-name: pixelarticons
  dependency-version: 2.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: shiki
  dependency-version: 4.4.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@ark-ui/react"
  dependency-version: 5.39.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.10
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@storybook/addon-a11y"
  dependency-version: 10.5.10
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@storybook/addon-docs"
  dependency-version: 10.5.10
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@storybook/react-vite"
  dependency-version: 10.5.10
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@testing-library/user-event"
  dependency-version: 14.6.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 6.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: lint-staged
  dependency-version: 17.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: postcss
  dependency-version: 8.5.26
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react
  dependency-version: 19.2.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react"
  dependency-version: 19.2.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-dom
  dependency-version: 19.2.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: storybook
  dependency-version: 10.5.10
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: vite
  dependency-version: 8.2.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: vitest
  dependency-version: 4.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

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 Aug 26, 2026
@vercel

vercel Bot commented Aug 26, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
ui Ready Ready Preview Aug 26, 2026 6:33pm

@sonarqubecloud

Copy link
Copy Markdown

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