Skip to content

Bump the frontend-dependencies group across 1 directory with 17 updates - #1259

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/ui/menu-website/frontend-dependencies-028bce4443
Open

Bump the frontend-dependencies group across 1 directory with 17 updates#1259
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/ui/menu-website/frontend-dependencies-028bce4443

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the frontend-dependencies group with 17 updates in the /ui/menu-website directory:

Package From To
pinia 4.0.2 4.0.3
quasar 2.24.0 2.25.0
@quasar/app-vite 3.5.0 3.6.1
@storybook/addon-a11y 10.5.7 10.5.9
@storybook/addon-docs 10.5.7 10.5.9
@storybook/addon-links 10.5.7 10.5.9
@storybook/addon-vitest 10.5.7 10.5.9
@storybook/vue3-vite 10.5.7 10.5.9
@tsconfig/node22 22.0.5 22.0.6
@types/node 24.13.3 26.2.0
@vitest/eslint-plugin 1.6.26 1.6.27
eslint-plugin-storybook 10.5.7 10.5.9
globals 17.9.0 17.11.0
sass-embedded 1.100.0 1.102.0
storybook 10.5.7 10.5.9
typescript 6.0.3 7.0.2
vue-tsc 3.3.9 3.3.10

Updates pinia from 4.0.2 to 4.0.3

Commits

Updates quasar from 2.24.0 to 2.25.0

Release notes

Sourced from quasar's releases.

quasar-v2.25.0

[!IMPORTANT] A few behavior changes worth checking before you upgrade:

  • QMenu no longer claims role="menu" and QBtnDropdown's toggle no longer emits aria-haspopup -- a menu may only contain menuitem* children, so the old markup was invalid. Declare role="menu" on the wrapped QList (its actionable QItems then expose themselves as menuitems automatically) and use the new toggle-aria-haspopup prop on QBtnDropdown.
  • SSR'd virtual lists now render their first slice on the server, so item templates of a server-rendered QVirtualScroll/QTable run on the server too and must be SSR-safe.
  • QSlideTransition starts animating immediately instead of 100ms later, which shifts the timing of every QTree / QExpansionItem / QStep slide.
  • Third-party language packs: this release adds colorPicker and uploader sections plus several keys. All are optional in the types and read with optional chaining, so existing packs keep working and compiling -- but they will announce nothing for those internals until updated.

New

  • feat(QTree): opt-in virtual scroll mode -> new virtual-scroll prop family, @virtual-scroll event and key-based scrollTo(key, edge). Only the rows around the viewport exist in the DOM, so cost stays flat however much of the tree is expanded (22.6k nodes, dev mode: expand-all 2.2s -> 23ms, filter keystroke on a fully expanded tree 560ms -> 29ms, ~600 DOM elements at any scale)
  • feat(QTree): methods for the state v1 exposed through its per-node meta map -> getIndeterminateNodes(), isIndeterminate(key), getParentNode(key) and tri-state getTickState(key) (returns the true/null/false a QCheckbox takes as its model); the header and body slot scopes gain an indeterminate boolean next to ticked (#17298) (#12762)
  • feat(ui): SSR renders the virtual scroll initial window -> server-rendered virtual lists emit their first slice instead of zero items, so crawlers and first paint finally see content. QTable's virtual-scroll mode inherits it; QSelect is unaffected
  • feat(QDate): roving-tabindex keyboard navigation for the day grid -> the calendar is a single Tab stop instead of up to 31. Arrows move by day/week, Home/End to the week edges, PageUp/PageDown by month (Shift for year), all crossing month boundaries and honoring RTL, the options prop and the navigation-min/max limits
  • feat(QTime): direct numeric keyboard entry on the time units -> typing digits on a focused hour/minute/second sets it directly, accumulating multi-digit values within 1.5s (#12467)
  • feat(QSplitter): Enter collapses the primary panel to its minimum limit and restores the pre-collapse position on the next press (#12466)
  • feat(QSlider/QRange): the slider role now sits on the focusable element, and the whole family gains Home/End
  • feat(QRange): WAI-ARIA multi-thumb slider semantics -> new left-thumb-aria-label and right-thumb-aria-label props
  • feat(QBtnDropdown): new toggle slot -> renders next to the dropdown arrow, so content like a QTooltip can finally attach to the toggle button in split mode (#16955)
  • feat(QBtnDropdown): new toggle-aria-haspopup prop -> names the popup's role on the control that actually opens it, in both the regular and the split design
  • feat(QList/QItem): new role prop -> the documented override path (e.g. menuitemcheckbox, or role="menu" on a QList)
  • feat(QLayout): new $layout-marginal-background and $layout-marginal-color Sass variables for the marginal sections (#10476)
  • feat(QDrawer): new escape-key event
  • feat(QField): the control slot scope gains ariaInvalid, ariaDescribedby and ariaErrormessage
  • feat(a11y): the component internals consumers cannot reach now carry accessible names -> QColor's view tabs, header value field and hue/opacity sliders, QUploader's icon-only buttons and hidden file input, QTable's selection checkboxes plus their empty column header, and QPagination's navigation landmark. Adds the colorPicker and uploader lang sections plus table.selectAllRows, table.selectRow and pagination.label, translated across all 72 language packs

Accessibility

  • fix(QTime): implement the WAI-ARIA spinbutton pattern -> the hour/minute/second controls are localized spinbuttons instead of mislabeled toggle buttons; arrows adjust the focused unit (key-repeat works, the page no longer scrolls) and Home/End jump to the first/last valid value (#12467)
  • fix(QDate): give the calendar controls real accessible semantics -> days announce their full localized date instead of a bare number, expose selection through aria-pressed and mark today with aria-current="date"; the view switcher becomes a real button that Space activates
  • fix(QOptionGroup): implement the WAI-ARIA radiogroup keyboard pattern -> a radio group is a single Tab stop with arrow-key navigation, wrapping, skipping disabled radios and mirrored in RTL (#17638)
  • fix(QOptionGroup): announce a disabled group whatever its type -> aria-disabled was set only for radios
  • fix(QSplitter): implement the WAI-ARIA window splitter keyboard pattern -> the separator is a focusable, value-carrying separator; arrows move it by 1% (10px in px unit) and Home/End jump to the limits (#12466)
  • fix(QSplitter): give the separator bar an accessible name -> new separator-aria-label prop
  • fix(QTabPanels/QTabs): complete the WAI-ARIA tabs pattern -> QTabPanel is focusable so keyboard and screen reader users can reach panel content with nothing focusable inside, and the tabpanel role lives solely on the panel components (#6560)
  • fix(QStepper/QCarousel): correct the ARIA semantics of their panel patterns -> QStep drops the orphaned tabpanel role and becomes a group labeled with its title, conveying aria-current="step" even with header navigation off; QCarousel's navigation is exposed as the tabs pattern it actually is (#6560)
  • fix(QEditor): complete the WAI-ARIA toolbar/textbox contract -> role=toolbar with a localized name, a single Tab stop with roving tabindex, arrow navigation (wrapping, RTL-mirrored) and Home/End (#15675)
  • fix(QEditor,QTable): name the internals that reuse existing lang keys -> QEditor's toolbar toggles convey their state with aria-pressed instead of color alone, and the hyperlink editor's URL field gets a name
  • fix(QMenu/QList/QItem): derive valid ARIA roles instead of claiming role=menu (#17162)
  • fix(QMenu): close the popup when TAB moves focus out of it -> focus no longer drops onto the browser UI leaving the menu open (#15675)
  • fix(QMenu): mark its anchor as the popup's trigger -> aria-expanded/aria-controls stay in sync without apps mirroring the open state by hand
  • fix(QMenu,QDialog): render menu portals inside their aria-modal dialog -> menus anchored in a modal QDialog (a QSelect's listbox included) were pruned from the accessibility tree and never announced (#17078)
  • fix(QSelect): align the popup with the ARIA combobox pattern -> the listbox role wraps only the options, which now carry aria-setsize/aria-posinset (#17344)
  • fix(QSelect): keep a readonly select focusable and announced -> it used to emit no focusable element at all
  • fix(QSelect): expose a disabled select instead of dropping its control
  • fix(QSelect,QTable): give the rows-per-page selection an accessible name (#9689)
  • fix(QInput,QSelect,QField): expose error state to assistive tech (#18323)
  • fix(QFile): expose error state to assistive tech (#17306)
  • fix(use-field): drop the error ARIA references when no message renders -> <q-input error hide-bottom-space> pointed aria-errormessage/aria-describedby at a missing id
  • fix(QTree): tickable nodes trapped the keyboard -> tickboxes leave the Tab order and Space toggles them from the node header (#17603)
  • fix(QTree): make every visible node keyboard-reachable, disabled ones included -> arrow navigation used to skip every leaf in a tree without selection
  • fix(QTree): don't hijack keys typed into interactive header content (#17790)

... (truncated)

Commits
  • 13784a6 chore(icongenie): bump version
  • c5a626f fix(docs): keep reported line numbers true past an <llm-only> block
  • 7c4a7cc test(docs): sweep every link into the site, and fix the five that were dead
  • 02f7af4 fix(docs): fail a production build on a broken id or related link
  • c3bae8d fix(docs): hot reload a page on every save, not just the first
  • b6462b2 feat(docs): report a page's duplicate DOM ids
  • ac5c3c4 chore(ui/playground): fix scroll-area test page
  • 00a88c3 fix(docs): inject-scroll wrong handling of route changes when deciding to scr...
  • 3580221 fix(QScrollArea): stop trapping fixed-positioned children #12109
  • 259735a fix(docs): name every sub-16px surface behind the iOS auto-zoom, not just QField
  • Additional commits viewable in compare view

Updates @quasar/app-vite from 3.5.0 to 3.6.1

Release notes

Sourced from @​quasar/app-vite's releases.

@​quasar/app-vite-v3.6.1

Changes

  • fix(app-vite): ext add/remove, mode add -> the flow no longer aborts half-way on pnpm v11+. pnpm v11 turned "Ignored build scripts" into a fatal error (v10 only warned), so any dependency with an unapproved build script anywhere in your project made the CLI's pnpm add/pnpm install exit non-zero even though the packages did install -- quasar ext add then stopped with the App Extension package installed and registered as a devDependency but its install script (prompts, rendered templates, quasar.extensions.json entry) never run, leaving the project in a half-applied state. Same for quasar mode add capacitor/electron and the Vue DevTools / store-provider installs. Nothing is silently built -- pnpm still prints its "Ignored build scripts" notice and still refuses to run those scripts, so you can approve them with pnpm approve-builds whenever you want to
  • fix(app-vite): a failing command now reports what actually went wrong when the CLI's output is piped (test harness, shell script, IDE task runner) instead of replacing the real error with a TypeError: stdin.setRawMode is not a function crash -- which also skipped the failure banner and left the terminal switched to the alternate screen buffer. As a bonus, the alternate-screen escape sequences are no longer written into piped logs

Donations

Quasar Framework is an open-source MIT-licensed project made possible due to the generous contributions by sponsors and backers. If Quasar is useful in your workflow and you want to support ongoing maintenance, please consider the following:

@​quasar/app-vite-v3.6.0

New

  • feat(app-vite): capacitor -> new iosBuildScheme config for iOS builds. The CLI used to hardcode the default "App" Xcode scheme and App.xcworkspace, so building failed for anyone who renamed the project in Xcode. It now passes your scheme to xcodebuild and looks for <scheme>.xcworkspace (defaults to App, so nothing changes unless you set it) (#7947)

Fixes

  • fix(app-vite): dev -> Vite's devServer.host: true ("listen on all addresses") is now accepted. Everything downstream expected a string, so address verification, APP_URL and external-IP detection all misbehaved; it is normalized to 0.0.0.0 (#16601)
  • fix(app-vite): build -> the build summary is now displayed when building with --ide. The handoff to the external tool short-circuited the run before the summary was ever printed (#17422)

Other

  • Now bundles @quasar/render-ssr-error v2.2.6 -> the SSR error page can be pinch-zoomed; it previously shipped a user-scalable=no, maximum-scale=1 viewport, failing WCAG 2.1 AA 1.4.4

Donations

Quasar Framework is an open-source MIT-licensed project made possible due to the generous contributions by sponsors and backers. If Quasar is useful in your workflow and you want to support ongoing maintenance, please consider the following:

Commits
  • 32ffc80 chore(app-vite): bump version
  • 5b4503d chore(icongenie): bump version
  • 92835ca chore(cli): bump version
  • ea99eb2 fix(cli,icongenie,create-quasar): pnpm >= 11 aborted installs over unapproved...
  • d34677b fix(cli,icongenie): failed commands masked their own error on non-TTY stdio
  • c7f9c44 fix(app-vite): pnpm >= 11 aborted install flows over unapproved build scripts
  • d2c718c fix(app-vite): failed commands masked their own error on non-TTY stdio
  • c345e9f chore: upgrade deps (security)
  • 36579ca ci(create-quasar): cap the app matrix at 12 concurrent jobs
  • 4168e62 test(app-vite): heartbeat while warming the Electron binary
  • Additional commits viewable in compare view

Updates @storybook/addon-a11y from 10.5.7 to 10.5.9

Release notes

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

v10.5.9

10.5.9

v10.5.8

10.5.8

Changelog

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

10.5.9

10.5.8

Commits
  • 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]
  • See full diff in compare view

Updates @storybook/addon-docs from 10.5.7 to 10.5.9

Release notes

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

v10.5.9

10.5.9

v10.5.8

10.5.8

Changelog

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

10.5.9

10.5.8

Commits
  • 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]
  • See full diff in compare view

Updates @storybook/addon-links from 10.5.7 to 10.5.9

Release notes

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

v10.5.9

10.5.9

v10.5.8

10.5.8

Changelog

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

10.5.9

10.5.8

Commits
  • 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]
  • See full diff in compare view

Updates @storybook/addon-vitest from 10.5.7 to 10.5.9

Release notes

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

v10.5.9

10.5.9

v10.5.8

10.5.8

Changelog

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

10.5.9

10.5.8

Commits
  • 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]
  • See full diff in compare view

Updates @storybook/vue3-vite from 10.5.7 to 10.5.9

Release notes

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

v10.5.9

10.5.9

v10.5.8

10.5.8

Changelog

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

10.5.9

10.5.8

Commits
  • 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]
  • See full diff in compare view

Updates @tsconfig/node22 from 22.0.5 to 22.0.6

Commits

Updates @types/node from 24.13.3 to 26.2.0

Commits

Updates @vitest/eslint-plugin from 1.6.26 to 1.6.27

Release notes

Sourced from @​vitest/eslint-plugin's releases.

v1.6.27

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • aad57d1 chore: release v1.6.27
  • d1c0a34 docs(valid-title): fixed the description of the valid-title option (#940)
  • ef70063 fix(valid-title): handle missing argument in valid-title rule (#942)
  • 089732f fix(valid-title): Refine the reportEmptyTitle message (#941)
  • See full diff in compare view

Updates eslint-plugin-storybook from 10.5.7 to 10.5.9

Release notes

Sourced from eslint-plugin-storybook's releases.

v10.5.9

10.5.9

v10.5.8

10.5.8

Changelog

Sourced from eslint-plugin-storybook's changelog.

10.5.9

  • Addon-Pseudo-States: Fix pseudo-states rewriting for nested functional selectors - #34318, thanks @​filipw01!
  • Core: Skip module-graph reverse-index mirror when a patch is a no-op - #35825, thanks @​ndelangen!
  • Core: Split module-graph into hot revisions and cold index services -

Bumps the frontend-dependencies group with 17 updates in the /ui/menu-website directory:

| Package | From | To |
| --- | --- | --- |
| [pinia](https://github.com/vuejs/pinia) | `4.0.2` | `4.0.3` |
| [quasar](https://github.com/quasarframework/quasar) | `2.24.0` | `2.25.0` |
| [@quasar/app-vite](https://github.com/quasarframework/quasar) | `3.5.0` | `3.6.1` |
| [@storybook/addon-a11y](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/a11y) | `10.5.7` | `10.5.9` |
| [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs) | `10.5.7` | `10.5.9` |
| [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `10.5.7` | `10.5.9` |
| [@storybook/addon-vitest](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/vitest) | `10.5.7` | `10.5.9` |
| [@storybook/vue3-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/vue3-vite) | `10.5.7` | `10.5.9` |
| [@tsconfig/node22](https://github.com/tsconfig/bases/tree/HEAD/bases) | `22.0.5` | `22.0.6` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.13.3` | `26.2.0` |
| [@vitest/eslint-plugin](https://github.com/vitest-dev/eslint-plugin-vitest) | `1.6.26` | `1.6.27` |
| [eslint-plugin-storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/eslint-plugin) | `10.5.7` | `10.5.9` |
| [globals](https://github.com/sindresorhus/globals) | `17.9.0` | `17.11.0` |
| [sass-embedded](https://github.com/sass/embedded-host-node) | `1.100.0` | `1.102.0` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core) | `10.5.7` | `10.5.9` |
| [typescript](https://github.com/microsoft/TypeScript) | `6.0.3` | `7.0.2` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.3.9` | `3.3.10` |



Updates `pinia` from 4.0.2 to 4.0.3
- [Release notes](https://github.com/vuejs/pinia/releases)
- [Commits](vuejs/pinia@v4.0.2...v4.0.3)

Updates `quasar` from 2.24.0 to 2.25.0
- [Release notes](https://github.com/quasarframework/quasar/releases)
- [Commits](quasarframework/quasar@quasar-v2.24.0...quasar-v2.25.0)

Updates `@quasar/app-vite` from 3.5.0 to 3.6.1
- [Release notes](https://github.com/quasarframework/quasar/releases)
- [Commits](https://github.com/quasarframework/quasar/compare/@quasar/app-vite-v3.5.0...@quasar/app-vite-v3.6.1)

Updates `@storybook/addon-a11y` from 10.5.7 to 10.5.9
- [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.9/code/addons/a11y)

Updates `@storybook/addon-docs` from 10.5.7 to 10.5.9
- [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.9/code/addons/docs)

Updates `@storybook/addon-links` from 10.5.7 to 10.5.9
- [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.9/code/addons/links)

Updates `@storybook/addon-vitest` from 10.5.7 to 10.5.9
- [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.9/code/addons/vitest)

Updates `@storybook/vue3-vite` from 10.5.7 to 10.5.9
- [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.9/code/frameworks/vue3-vite)

Updates `@tsconfig/node22` from 22.0.5 to 22.0.6
- [Commits](https://github.com/tsconfig/bases/commits/HEAD/bases)

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

Updates `@vitest/eslint-plugin` from 1.6.26 to 1.6.27
- [Release notes](https://github.com/vitest-dev/eslint-plugin-vitest/releases)
- [Commits](vitest-dev/eslint-plugin-vitest@v1.6.26...v1.6.27)

Updates `eslint-plugin-storybook` from 10.5.7 to 10.5.9
- [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.9/code/lib/eslint-plugin)

Updates `globals` from 17.9.0 to 17.11.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.9.0...v17.11.0)

Updates `sass-embedded` from 1.100.0 to 1.102.0
- [Changelog](https://github.com/sass/embedded-host-node/blob/main/CHANGELOG.md)
- [Commits](sass/embedded-host-node@1.100.0...1.102.0)

Updates `storybook` from 10.5.7 to 10.5.9
- [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.9/code/core)

Updates `typescript` from 6.0.3 to 7.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v6.0.3...v7.0.2)

Updates `vue-tsc` from 3.3.9 to 3.3.10
- [Release notes](https://github.com/vuejs/language-tools/releases)
- [Changelog](https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/language-tools/commits/v3.3.10/packages/tsc)

---
updated-dependencies:
- dependency-name: pinia
  dependency-version: 4.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: frontend-dependencies
- dependency-name: quasar
  dependency-version: 2.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: frontend-dependencies
- dependency-name: "@quasar/app-vite"
  dependency-version: 3.6.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: frontend-dependencies
- dependency-name: "@storybook/addon-a11y"
  dependency-version: 10.5.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: frontend-dependencies
- dependency-name: "@storybook/addon-docs"
  dependency-version: 10.5.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: frontend-dependencies
- dependency-name: "@storybook/addon-links"
  dependency-version: 10.5.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: frontend-dependencies
- dependency-name: "@storybook/addon-vitest"
  dependency-version: 10.5.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: frontend-dependencies
- dependency-name: "@storybook/vue3-vite"
  dependency-version: 10.5.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: frontend-dependencies
- dependency-name: "@tsconfig/node22"
  dependency-version: 22.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: frontend-dependencies
- dependency-name: "@types/node"
  dependency-version: 26.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: frontend-dependencies
- dependency-name: "@vitest/eslint-plugin"
  dependency-version: 1.6.27
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: frontend-dependencies
- dependency-name: eslint-plugin-storybook
  dependency-version: 10.5.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: frontend-dependencies
- dependency-name: globals
  dependency-version: 17.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: frontend-dependencies
- dependency-name: sass-embedded
  dependency-version: 1.102.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: frontend-dependencies
- dependency-name: storybook
  dependency-version: 10.5.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: frontend-dependencies
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: frontend-dependencies
- dependency-name: vue-tsc
  dependency-version: 3.3.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: frontend-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 Aug 21, 2026
@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