eclipse-tractusx / portal-shared-components

Portal Shared UI Components
https://eclipse-tractusx.github.io/portal-shared-components
Apache License 2.0
2 stars 14 forks source link

chore(deps-dev): bump the development-dependencies group with 14 updates #357

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the development-dependencies group with 14 updates:

Package From To
@storybook/addon-essentials 8.3.5 8.3.6
@storybook/addon-interactions 8.3.5 8.3.6
@storybook/addon-links 8.3.5 8.3.6
@storybook/addon-onboarding 8.3.5 8.3.6
@storybook/blocks 8.3.5 8.3.6
@storybook/builder-vite 8.3.5 8.3.6
@storybook/react 8.3.5 8.3.6
@storybook/react-vite 8.3.5 8.3.6
@storybook/test 8.3.5 8.3.6
@types/node 20.16.11 20.16.13
@vitejs/plugin-react 4.3.2 4.3.3
eslint-plugin-react-refresh 0.4.12 0.4.13
sass 1.79.5 1.79.6
storybook 8.3.5 8.3.6

Updates @storybook/addon-essentials from 8.3.5 to 8.3.6

Release notes

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

v8.3.6

8.3.6

Changelog

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

8.3.6

Commits


Updates @storybook/addon-interactions from 8.3.5 to 8.3.6

Release notes

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

v8.3.6

8.3.6

Changelog

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

8.3.6

Commits


Updates @storybook/addon-links from 8.3.5 to 8.3.6

Release notes

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

v8.3.6

8.3.6

Changelog

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

8.3.6

Commits


Updates @storybook/addon-onboarding from 8.3.5 to 8.3.6

Release notes

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

v8.3.6

8.3.6

Changelog

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

8.3.6

Commits


Updates @storybook/blocks from 8.3.5 to 8.3.6

Release notes

Sourced from @​storybook/blocks's releases.

v8.3.6

8.3.6

Changelog

Sourced from @​storybook/blocks's changelog.

8.3.6

Commits


Updates @storybook/builder-vite from 8.3.5 to 8.3.6

Release notes

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

v8.3.6

8.3.6

Changelog

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

8.3.6

Commits


Updates @storybook/react from 8.3.5 to 8.3.6

Release notes

Sourced from @​storybook/react's releases.

v8.3.6

8.3.6

Changelog

Sourced from @​storybook/react's changelog.

8.3.6

Commits


Updates @storybook/react-vite from 8.3.5 to 8.3.6

Release notes

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

v8.3.6

8.3.6

Changelog

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

8.3.6

Commits


Updates @storybook/test from 8.3.5 to 8.3.6

Release notes

Sourced from @​storybook/test's releases.

v8.3.6

8.3.6

Changelog

Sourced from @​storybook/test's changelog.

8.3.6

Commits


Updates @types/node from 20.16.11 to 20.16.13

Commits


Updates @vitejs/plugin-react from 4.3.2 to 4.3.3

Release notes

Sourced from @​vitejs/plugin-react's releases.

v4.3.3

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}])
  }

return { plugins: [react({ babel: { plugins: babelPlugins } })], } })

Changelog

Sourced from @​vitejs/plugin-react's changelog.

4.3.3 (2024-10-19)

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}])
  }

return { plugins: [react({ babel: { plugins: babelPlugins } })], } })

Commits


Updates eslint-plugin-react-refresh from 0.4.12 to 0.4.13

Release notes

Sourced from eslint-plugin-react-refresh's releases.

v0.4.13

  • Support for react-redux connect (export default connect(mapStateToProps, mapDispatchToProps)(MyComponent)) (fixes #51)
  • Support for Arbitrary Module Identifiers syntax (fixes #52)
Changelog

Sourced from eslint-plugin-react-refresh's changelog.

0.4.13

  • Support for react-redux connect (export default connect(mapStateToProps, mapDispatchToProps)(MyComponent)) (fixes #51)
  • Support for Arbitrary Module Identifiers syntax (fixes #52)
Commits
  • 268df3b Support for Arbitrary Module Identifiers syntax (fixes #52) [publish]
  • cb7cecd Support for react-redux connect (fixes #51)
  • See full diff in compare view


Updates sass from 1.79.5 to 1.79.6

Release notes

Sourced from sass's releases.

Dart Sass 1.79.6

To install Sass 1.79.6, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Fix a bug where Sass would add an extra */ after loud comments with whitespace after an explicit */ in the indented syntax.

  • Potentially breaking bug fix: Adding text after an explicit */ in the indented syntax is now an error, rather than silently generating invalid CSS.

Embedded Host

  • Properly export the SassBoolean type.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.79.6

  • Fix a bug where Sass would add an extra */ after loud comments with whitespace after an explicit */ in the indented syntax.

  • Potentially breaking bug fix: Adding text after an explicit */ in the indented syntax is now an error, rather than silently generating invalid CSS.

Embedded Host

  • Properly export the SassBoolean type.
Commits


Updates storybook from 8.3.5 to 8.3.6

Release notes

Sourced from storybook's releases.

v8.3.6

8.3.6

Changelog

Sourced from storybook's changelog.

8.3.6

Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
sonarcloud[bot] commented 1 month ago

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
0.0% Coverage on New Code
0.0% Duplication on New Code

See analysis details on SonarCloud