Skip to content

Commit

Permalink
client: Update dependencies
Browse files Browse the repository at this point in the history
- @fortawesome/free-brands-svg-icons: 6.5.2 → 6.7.1
- @fortawesome/free-regular-svg-icons: 6.5.2 → 6.7.1
- @fortawesome/free-solid-svg-icons: 6.5.2 → 6.7.1

- parcel: 2.12.0 → 2.13.2
  https://github.com/parcel-bundler/parcel/releases/tag/v2.13.0
  https://github.com/parcel-bundler/parcel/releases/tag/v2.13.1
  https://github.com/parcel-bundler/parcel/releases/tag/v2.13.2

  - @parcel/packager-raw-url: 2.12.0 → 2.13.2
  - @parcel/service-worker: 2.12.0 → 2.13.2
  - @parcel/transformer-image: 2.12.0 → 2.13.2
  - @parcel/transformer-sass: 2.12.0 → 2.13.2
  - @parcel/transformer-webmanifest: 2.12.0 → 2.13.2

- @szhsin/react-menu: 4.1.0 → 4.2.3
  https://github.com/szhsin/react-menu/releases/tag/v4.2.0
  https://github.com/szhsin/react-menu/releases/tag/v4.2.1
  https://github.com/szhsin/react-menu/releases/tag/v4.2.2
  https://github.com/szhsin/react-menu/releases/tag/v4.2.3

- autoprefixer: 10.4.19 → 10.4.20
- core-js: 3.37.1 → 3.39.0
- eslint: 8.57.0 → 8.57.1
- eslint-plugin-react: 7.34.3 → 7.37.2
- postcss: 8.4.39 → 8.4.49

- focus-trap: 7.5.4 → 7.6.2
  https://github.com/focus-trap/focus-trap/releases/tag/v7.6.0
  https://github.com/focus-trap/focus-trap/releases/tag/v7.6.1
  https://github.com/focus-trap/focus-trap/releases/tag/v7.6.2

- prettier: 3.3.2 → 3.3.3
  https://github.com/prettier/prettier/blob/3.3.3/CHANGELOG.md
  - parens for nullish coallescing operator

- sass: 1.77.6 → 1.81.0
  DEPRECATION WARNING: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.

  More info and automated migrator: https://sass-lang.com/d/import

  Ignoring for now.

- stylelint: 16.6.1 → 16.10.0

- yet-another-react-lightbox: 3.21.1 → 3.21.7
  https://github.com/igordanchenko/yet-another-react-lightbox/releases/tag/v3.21.2
  https://github.com/igordanchenko/yet-another-react-lightbox/releases/tag/v3.21.3
  https://github.com/igordanchenko/yet-another-react-lightbox/releases/tag/v3.21.4
  https://github.com/igordanchenko/yet-another-react-lightbox/releases/tag/v3.21.5
  https://github.com/igordanchenko/yet-another-react-lightbox/releases/tag/v3.21.6
  https://github.com/igordanchenko/yet-another-react-lightbox/releases/tag/v3.21.7

- tinykeys: 2.1.0 → 3.0.0
  regex support
  jamiebuilds/tinykeys@v2.1.0...v3.0.0
  • Loading branch information
jtojnar committed Nov 25, 2024
1 parent cf74581 commit 34c3ae8
Show file tree
Hide file tree
Showing 4 changed files with 1,815 additions and 1,648 deletions.
3 changes: 3 additions & 0 deletions client/.sassrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"silenceDeprecations": ["import"]
}
4 changes: 2 additions & 2 deletions client/js/templates/Source.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ function SourceEditForm({
const sourceParamsContent = sourceParamsLoading ? (
<Spinner size="3x" label={_('source_params_loading')} />
) : (
sourceParamsError ??
(sourceParamsError ??
(Object.keys(spouts).includes(source.spout) &&
Object.keys(spouts[source.spout].params).length > 0 ? (
<ul>
Expand All @@ -396,7 +396,7 @@ function SourceEditForm({
),
)}
</ul>
) : null)
) : null))
);

return (
Expand Down
Loading

0 comments on commit 34c3ae8

Please sign in to comment.