Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 28, 2026

Bumps the yarn-packages group with 17 updates in the /data-viewer directory:

Package From To
@emotion/react 11.13.3 11.14.0
@emotion/styled 11.13.0 11.14.1
@h5web/app 12.0.1 16.0.1
@mui/material 6.1.4 7.3.7
@mui/styled-engine-sc 6.1.4 7.3.7
next 14.2.30 16.1.6
react 18.3.1 19.2.4
@types/react 18.3.11 19.2.10
react-dom 18.3.1 19.2.4
@types/react-dom 18.3.0 19.2.3
styled-components 6.1.13 6.3.8
@types/node 20.14.12 25.1.0
cypress 13.15.0 15.9.0
eslint 8.57.1 9.39.2
eslint-config-next 14.2.5 16.1.6
prettier 3.3.3 3.8.1
typescript 5.5.4 5.9.3

Updates @emotion/react from 11.13.3 to 11.14.0

Release notes

Sourced from @​emotion/react's releases.

@​emotion/react@​11.14.0

Minor Changes

  • #3281 fc4d7bd Thanks @​Andarist! - Source code has been migrated to TypeScript. From now on type declarations will be emitted based on that, instead of being hand-written.

Patch Changes

  • Updated dependencies [8dc1a6d, e1bf17e]:
    • @​emotion/cache@​11.14.0
    • @​emotion/use-insertion-effect-with-fallbacks@​1.2.0

@​emotion/react@​11.13.5

Patch Changes

  • #3270 77d930d Thanks @​emmatown! - Fix inconsistent hashes using development vs production bundles/exports conditions when using @emotion/babel-plugin with sourceMap: true (the default). This is particularly visible when using Emotion with the Next.js Pages router where the development condition is used when bundling code but not when importing external code with Node.js.

  • Updated dependencies [77d930d]:

    • @​emotion/serialize@​1.3.3
    • @​emotion/cache@​11.13.5
    • @​emotion/utils@​1.4.2
    • @​emotion/babel-plugin@​11.13.5
Commits

Updates @emotion/styled from 11.13.0 to 11.14.1

Release notes

Sourced from @​emotion/styled's releases.

@​emotion/styled@​11.14.1

Patch Changes

  • #3334 0facbe4 Thanks @​ZachRiegel! - Renamed default-exported variable in @emotion/styled to aid inferred import names in auto-import completions in IDEs

@​emotion/styled@​11.14.0

Minor Changes

  • #3284 a19d019 Thanks @​Andarist! - Source code has been migrated to TypeScript. From now on type declarations will be emitted based on that, instead of being hand-written.

Patch Changes

  • Updated dependencies [e1bf17e]:
    • @​emotion/use-insertion-effect-with-fallbacks@​1.2.0

@​emotion/styled@​11.13.5

Patch Changes

  • #3270 77d930d Thanks @​emmatown! - Fix inconsistent hashes using development vs production bundles/exports conditions when using @emotion/babel-plugin with sourceMap: true (the default). This is particularly visible when using Emotion with the Next.js Pages router where the development condition is used when bundling code but not when importing external code with Node.js.

  • Updated dependencies [77d930d]:

    • @​emotion/serialize@​1.3.3
    • @​emotion/utils@​1.4.2
    • @​emotion/babel-plugin@​11.13.5
Commits

Updates @h5web/app from 12.0.1 to 16.0.1

Release notes

Sourced from @​h5web/app's releases.

v16.0.1

Full Changelog: silx-kit/h5web@v16.0.0...v16.0.1

@​h5web/app

  • ✨ Improve fallback message when no visualization is available for the selected entity #1920
  • 🐛 < Complex Line > Fix constant interpolation not applied #1922
  • 🐛 [H5GroveProvider] Fix propagation of custom errors #1919

H5Web 16

Full Changelog: silx-kit/h5web@v15.0.0...v16.0.0

👉 A new feature-packed release with support for thick lines, piecewise constant interpolation, the default_slice NeXus attribute, JPEG decompression with h5wasm, custom toolbar menus, and more! 🥳

ℹ️ The React 19 upgrade is coming — H5Web 16 will likely be the last major release on React 18.

@​h5web/app

  • 🎉 Support NeXus default_slice attribute #1872 — see /nexus_entry/default_slice in mock demo
  • 🎉 Always show all supported NeXus visualizations instead of only the one for the specified interpretation (e.g. both NX Line and NX Heatmap for 2D+ datasets) #1885 #1886
  • 🎉 < NX Line > When auxiliary signals are present, show picker next to visualization tabs to allow showing/hiding any of the signals, including the main signal #1911 #1916
    • < NX Heatmap > Move signals picker to toolbar to match NX Line, as the new drop-down interface is better suited to dealing with a large number of auxiliary signals #1894
  • 🎉 < Line > Support piecewise constant interpolation #1878 #1880 #1881
  • 🎉 < Line > Move Line/Points/Both control into new Aspect menu #1881 #1892 #1893
  • 🐛 < Line > Fix colors of auxiliary signals in dark mode #1865
  • 🐛 Fix wrapping of value buttons in attributes inspector #1882
  • < NX Line > Hide Errors toggle from toolbar completely (instead of disabling it) when there aren't any error values #1898
  • < Line > Never show Errors toggle at all in toolbar, since there can never be error values anyway #1898
  • < Matrix > Remove Freeze indices toggle from toolbar — row/column indices now always remain visible when scrolling #1900
  • Remember last known dimension mapping state for a specific visualization more often #1871
  • Use Opt instead of Alt in interactions help menu on Mac #1870

@​h5web/lib

  • ⚠️ Breaking change: Replace useGeometry with new hook useUpdateGeometry #1888
    • useUpdateGeometry accepts an instance of a Three.js BufferGeometry subclass that implements a new H5WebGeometry interface. All the built-in geometry classes (LineGeometry, GlyphsGeometry, etc.) have been updated to work with useUpdateGeometry. If you developed your own geometry classes please read #1888 to understand the changes.
  • ⚠️ Breaking change: [LineVis, DataCurve] If prop showErrors is not specified, default to true so that error bars are shown by default if error values are provided #1898
  • ⚠️ Breaking change: [MatrixVis] Remove prop sticky — row/column indices now always remain visible when scrolling #1900
  • [DataCurve, Line] Add new width prop to control the thickness of the line #1889
  • [LineVis, DataCurve, Line] Add prop interpolation to support piecewise constant interpolation in addition to linear interpolation #1878 #1880
  • [LineVis] Add optional prop visible (true by default) to control the visibility of the main data curve — when hidden, the main data value is greyed out in the tooltip #1911
  • [LineVis] Objects passed to the auxiliaries prop now accept an optional visible property (true by default) to control the visibility of auxiliary curves — when an auxiliary curve is hidden, its value does not appear in the tooltip #1911
  • ✨ New Menu, RadioGroup, Checkbox and MenuSeparator components to help build custom toolbar menus #1892 #1893 #1911 #1917
  • [InteractionHelp] Display Opt instead of Alt in shortcuts on Mac #1870
  • Add LineConstantGeometry class for use with useUpdateGeometry hook #1878 #1888

... (truncated)

Commits
  • c0e5b07 16.0.1
  • 0535e23 fix snapshot
  • df38b90 Fix snapshot
  • cdf4442 Merge pull request #1920 from silx-kit/fallback
  • 2b2c168 Change fallback message and add hint
  • a939680 Update Cypress reference snapshots
  • b5726d5 Fix constant interpolation not applied in complex line vis
  • c24d1cf Merge pull request #1919 from silx-kit/fix-h5grove-error-propagation
  • f6253f0 Fix propagation of custom errors with H5GroveProvider
  • 6937b42 16.0.0
  • 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 @​h5web/app since your current version.


Updates @mui/material from 6.1.4 to 7.3.7

Release notes

Sourced from @​mui/material's releases.

v7.3.7

A big thanks to the 16 contributors who made this release possible.

@mui/material@7.3.7

Docs

Core

All contributors of this release in alphabetical order: @​AarishMansur, @​alelthomas, @​atharva3333, @​bricefrisco, @​Janpot, @​jnbain, @​joserodolfofreitas, @​mapache-salvaje, @​mj12albert, @​oliviertassinari, @​prakhargupta1, @​rithik56, @​siriwatknp, @​TimKraemer, @​Zache, @​ZeeshanTamboli

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

7.3.7

Jan 8, 2026

A big thanks to the 16 contributors who made this release possible.

@mui/material@7.3.7

Docs

Core

... (truncated)

Commits
  • 86fd51e v7.3.7 (#47565)
  • cb4d8ac [focus-trap] Compute activeElement inside loopFocus on every keydown (#47...
  • f1bc738 [appbar] Fix inherit color CSS variable not getting applied (#47518)
  • e7c83ed Pin dependencies (#47530)
  • dd7c7d8 Pin dependencies (#47529)
  • d7995a3 Pin dependencies (#47531)
  • 4915b2f [autocomplete] Fix ArrowLeft, Backspace & Delete behavior for multiple ...
  • 3a992ee [checkbox] Fix readonly checkboxes (#47503)
  • 6291047 [card action area] Remove incorrect root ref being forwarded to focus highlig...
  • dac4642 [click-away-listener] Tighten the parameter type of createHandleSynthetic met...
  • 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 @​mui/material since your current version.


Updates @mui/styled-engine-sc from 6.1.4 to 7.3.7

Release notes

Sourced from @​mui/styled-engine-sc's releases.

v7.3.7

A big thanks to the 16 contributors who made this release possible.

@mui/material@7.3.7

Docs

Core

All contributors of this release in alphabetical order: @​AarishMansur, @​alelthomas, @​atharva3333, @​bricefrisco, @​Janpot, @​jnbain, @​joserodolfofreitas, @​mapache-salvaje, @​mj12albert, @​oliviertassinari, @​prakhargupta1, @​rithik56, @​siriwatknp, @​TimKraemer, @​Zache, @​ZeeshanTamboli

... (truncated)

Changelog

Sourced from @​mui/styled-engine-sc's changelog.

7.3.7

Jan 8, 2026

A big thanks to the 16 contributors who made this release possible.

@mui/material@7.3.7

Docs

Core

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 28, 2026
Bumps the yarn-packages group with 17 updates in the /data-viewer directory:

| Package | From | To |
| --- | --- | --- |
| [@emotion/react](https://github.com/emotion-js/emotion) | `11.13.3` | `11.14.0` |
| [@emotion/styled](https://github.com/emotion-js/emotion) | `11.13.0` | `11.14.1` |
| [@h5web/app](https://github.com/silx-kit/h5web) | `12.0.1` | `16.0.1` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `6.1.4` | `7.3.7` |
| [@mui/styled-engine-sc](https://github.com/mui/material-ui/tree/HEAD/packages/mui-styled-engine-sc) | `6.1.4` | `7.3.7` |
| [next](https://github.com/vercel/next.js) | `14.2.30` | `16.1.6` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.3.1` | `19.2.4` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.11` | `19.2.10` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.3.1` | `19.2.4` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.3.0` | `19.2.3` |
| [styled-components](https://github.com/styled-components/styled-components) | `6.1.13` | `6.3.8` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.14.12` | `25.1.0` |
| [cypress](https://github.com/cypress-io/cypress) | `13.15.0` | `15.9.0` |
| [eslint](https://github.com/eslint/eslint) | `8.57.1` | `9.39.2` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `14.2.5` | `16.1.6` |
| [prettier](https://github.com/prettier/prettier) | `3.3.3` | `3.8.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.4` | `5.9.3` |



Updates `@emotion/react` from 11.13.3 to 11.14.0
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/react@11.13.3...@emotion/react@11.14.0)

Updates `@emotion/styled` from 11.13.0 to 11.14.1
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/styled@11.13.0...@emotion/styled@11.14.1)

Updates `@h5web/app` from 12.0.1 to 16.0.1
- [Release notes](https://github.com/silx-kit/h5web/releases)
- [Commits](silx-kit/h5web@v12.0.1...v16.0.1)

Updates `@mui/material` from 6.1.4 to 7.3.7
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v7.3.7/packages/mui-material)

Updates `@mui/styled-engine-sc` from 6.1.4 to 7.3.7
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v7.3.7/packages/mui-styled-engine-sc)

Updates `next` from 14.2.30 to 16.1.6
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.2.30...v16.1.6)

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

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

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

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

Updates `styled-components` from 6.1.13 to 6.3.8
- [Release notes](https://github.com/styled-components/styled-components/releases)
- [Commits](https://github.com/styled-components/styled-components/compare/v6.1.13...styled-components@6.3.8)

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

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

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

Updates `cypress` from 13.15.0 to 15.9.0
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v13.15.0...v15.9.0)

Updates `eslint` from 8.57.1 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v8.57.1...v9.39.2)

Updates `eslint-config-next` from 14.2.5 to 16.1.6
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v16.1.6/packages/eslint-config-next)

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

Updates `typescript` from 5.5.4 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.5.4...v5.9.3)

---
updated-dependencies:
- dependency-name: "@emotion/react"
  dependency-version: 11.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: yarn-packages
- dependency-name: "@emotion/styled"
  dependency-version: 11.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: yarn-packages
- dependency-name: "@h5web/app"
  dependency-version: 16.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: yarn-packages
- dependency-name: "@mui/material"
  dependency-version: 7.3.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: yarn-packages
- dependency-name: "@mui/styled-engine-sc"
  dependency-version: 7.3.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: yarn-packages
- dependency-name: next
  dependency-version: 16.1.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: yarn-packages
- dependency-name: react
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: yarn-packages
- dependency-name: "@types/react"
  dependency-version: 19.2.10
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: yarn-packages
- dependency-name: react-dom
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: yarn-packages
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: yarn-packages
- dependency-name: styled-components
  dependency-version: 6.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: yarn-packages
- dependency-name: "@types/node"
  dependency-version: 25.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: yarn-packages
- dependency-name: "@types/react"
  dependency-version: 19.2.10
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: yarn-packages
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: yarn-packages
- dependency-name: cypress
  dependency-version: 15.9.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: yarn-packages
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: yarn-packages
- dependency-name: eslint-config-next
  dependency-version: 16.1.6
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: yarn-packages
- dependency-name: prettier
  dependency-version: 3.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: yarn-packages
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: yarn-packages
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/data-viewer/yarn-packages-0eac0538ed branch from 1c15ccd to 1a1b2b8 Compare February 3, 2026 15:05
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