Skip to content

Commit cb683e4

Browse files
fix(deps): update react packages (#1263)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [react](https://react.dev/) ([source](https://redirect.github.com/facebook/react/tree/HEAD/packages/react)) | [`19.0.0` -> `19.2.0`](https://renovatebot.com/diffs/npm/react/19.0.0/19.2.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react/19.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react/19.0.0/19.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [react-docgen-typescript](https://redirect.github.com/styleguidist/react-docgen-typescript) | [`2.2.2` -> `2.4.0`](https://renovatebot.com/diffs/npm/react-docgen-typescript/2.2.2/2.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-docgen-typescript/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-docgen-typescript/2.2.2/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [react-dom](https://react.dev/) ([source](https://redirect.github.com/facebook/react/tree/HEAD/packages/react-dom)) | [`19.0.0` -> `19.2.0`](https://renovatebot.com/diffs/npm/react-dom/19.0.0/19.2.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-dom/19.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-dom/19.0.0/19.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>facebook/react (react)</summary> ### [`v19.2.0`](https://redirect.github.com/facebook/react/blob/HEAD/CHANGELOG.md#1920-October-1st-2025) [Compare Source](https://redirect.github.com/facebook/react/compare/v19.1.1...v19.2.0) Below is a list of all new features, APIs, and bug fixes. Read the [React 19.2 release post](https://react.dev/blog/2025/10/01/react-19-2) for more information. ##### New React Features - [`<Activity>`](https://react.dev/reference/react/Activity): A new API to hide and restore the UI and internal state of its children. - [`useEffectEvent`](https://react.dev/reference/react/useEffectEvent) is a React Hook that lets you extract non-reactive logic into an [Effect Event](https://react.dev/learn/separating-events-from-effects#declaring-an-effect-event). - [`cacheSignal`](https://react.dev/reference/react/cacheSignal) (for RSCs) lets your know when the `cache()` lifetime is over. - [React Performance tracks](https://react.dev/reference/dev-tools/react-performance-tracks) appear on the Performance panel’s timeline in your browser developer tools ##### New React DOM Features - Added resume APIs for partial pre-rendering with Web Streams: - [`resume`](https://react.dev/reference/react-dom/server/resume): to resume a prerender to a stream. - [`resumeAndPrerender`](https://react.dev/reference/react-dom/static/resumeAndPrerender): to resume a prerender to HTML. - Added resume APIs for partial pre-rendering with Node Streams: - [`resumeToPipeableStream`](https://react.dev/reference/react-dom/server/resumeToPipeableStream): to resume a prerender to a stream. - [`resumeAndPrerenderToNodeStream`](https://react.dev/reference/react-dom/static/resumeAndPrerenderToNodeStream): to resume a prerender to HTML. - Updated [`prerender`](https://react.dev/reference/react-dom/static/prerender) APIs to return a `postponed` state that can be passed to the `resume` APIs. ##### Notable changes - React DOM now batches suspense boundary reveals, matching the behavior of client side rendering. This change is especially noticeable when animating the reveal of Suspense boundaries e.g. with the upcoming `<ViewTransition>` Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics. - Add Node Web Streams (`prerender`, `renderToReadableStream`) to server-side-rendering APIs for Node.js - Use underscore instead of `:` IDs generated by useId ##### All Changes ##### React - `<Activity />` was developed over many years, starting before `ClassComponent.setState` ([@&#8203;acdlite](https://redirect.github.com/acdlite) [@&#8203;sebmarkbage](https://redirect.github.com/sebmarkbage) and many others) - Stringify context as "SomeContext" instead of "SomeContext.Provider" ([@&#8203;kassens](https://redirect.github.com/kassens) [#&#8203;33507](https://redirect.github.com/facebook/react/pull/33507)) - Include stack of cause of React instrumentation errors with `%o` placeholder ([@&#8203;eps1lon](https://redirect.github.com/eps1lon) [#&#8203;34198](https://redirect.github.com/facebook/react/pull/34198)) - Fix infinite `useDeferredValue` loop in popstate event ([@&#8203;acdlite](https://redirect.github.com/acdlite) [#&#8203;32821](https://redirect.github.com/facebook/react/pull/32821)) - Fix a bug when an initial value was passed to `useDeferredValue` ([@&#8203;acdlite](https://redirect.github.com/acdlite) [#&#8203;34376](https://redirect.github.com/facebook/react/pull/34376)) - Fix a crash when submitting forms with Client Actions ([@&#8203;sebmarkbage](https://redirect.github.com/sebmarkbage) [#&#8203;33055](https://redirect.github.com/facebook/react/pull/33055)) - Hide/unhide the content of dehydrated suspense boundaries if they resuspend ([@&#8203;sebmarkbage](https://redirect.github.com/sebmarkbage) [#&#8203;32900](https://redirect.github.com/facebook/react/pull/32900)) - Avoid stack overflow on wide trees during Hot Reload ([@&#8203;sophiebits](https://redirect.github.com/sophiebits) [#&#8203;34145](https://redirect.github.com/facebook/react/pull/34145)) - Improve Owner and Component stacks in various places ([@&#8203;sebmarkbage](https://redirect.github.com/sebmarkbage), [@&#8203;eps1lon](https://redirect.github.com/eps1lon): [#&#8203;33629](https://redirect.github.com/facebook/react/pull/33629), [#&#8203;33724](https://redirect.github.com/facebook/react/pull/33724), [#&#8203;32735](https://redirect.github.com/facebook/react/pull/32735), [#&#8203;33723](https://redirect.github.com/facebook/react/pull/33723)) - Add `cacheSignal` ([@&#8203;sebmarkbage](https://redirect.github.com/sebmarkbage) [#&#8203;33557](https://redirect.github.com/facebook/react/pull/33557)) ##### React DOM - Block on Suspensey Fonts during reveal of server-side-rendered content ([@&#8203;sebmarkbage](https://redirect.github.com/sebmarkbage) [#&#8203;33342](https://redirect.github.com/facebook/react/pull/33342)) - Use underscore instead of `:` for IDs generated by `useId` ([@&#8203;sebmarkbage](https://redirect.github.com/sebmarkbage), [@&#8203;eps1lon](https://redirect.github.com/eps1lon): [#&#8203;32001](https://redirect.github.com/facebook/react/pull/32001), [#&#8203;33342](https://redirect.github.com/facebook/react/pull/33342)[#&#8203;33099](https://redirect.github.com/facebook/react/pull/33099), [#&#8203;33422](https://redirect.github.com/facebook/react/pull/33422)) - Stop warning when ARIA 1.3 attributes are used ([@&#8203;Abdul-Omira](https://redirect.github.com/Abdul-Omira) [#&#8203;34264](https://redirect.github.com/facebook/react/pull/34264)) - Allow `nonce` to be used on hoistable styles ([@&#8203;Andarist](https://redirect.github.com/Andarist) [#&#8203;32461](https://redirect.github.com/facebook/react/pull/32461)) - Warn for using a React owned node as a Container if it also has text content ([@&#8203;sebmarkbage](https://redirect.github.com/sebmarkbage) [#&#8203;32774](https://redirect.github.com/facebook/react/pull/32774)) - s/HTML/text for for error messages if text hydration mismatches ([@&#8203;rickhanlonii](https://redirect.github.com/rickhanlonii) [#&#8203;32763](https://redirect.github.com/facebook/react/pull/32763)) - Fix a bug with `React.use` inside `React.lazy`-ed Component ([@&#8203;hi-ogawa](https://redirect.github.com/hi-ogawa) [#&#8203;33941](https://redirect.github.com/facebook/react/pull/33941)) - Enable the `progressiveChunkSize` option for server-side-rendering APIs ([@&#8203;sebmarkbage](https://redirect.github.com/sebmarkbage) [#&#8203;33027](https://redirect.github.com/facebook/react/pull/33027)) - Fix a bug with deeply nested Suspense inside Suspense fallback when server-side-rendering ([@&#8203;gnoff](https://redirect.github.com/gnoff) [#&#8203;33467](https://redirect.github.com/facebook/react/pull/33467)) - Avoid hanging when suspending after aborting while rendering ([@&#8203;gnoff](https://redirect.github.com/gnoff) [#&#8203;34192](https://redirect.github.com/facebook/react/pull/34192)) - Add Node Web Streams to server-side-rendering APIs for Node.js ([@&#8203;sebmarkbage](https://redirect.github.com/sebmarkbage) [#&#8203;33475](https://redirect.github.com/facebook/react/pull/33475)) ##### React Server Components - Preload `<img>` and `<link>` using hints before they're rendered ([@&#8203;sebmarkbage](https://redirect.github.com/sebmarkbage) [#&#8203;34604](https://redirect.github.com/facebook/react/pull/34604)) - Log error if production elements are rendered during development ([@&#8203;eps1lon](https://redirect.github.com/eps1lon) [#&#8203;34189](https://redirect.github.com/facebook/react/pull/34189)) - Fix a bug when returning a Temporary reference (e.g. a Client Reference) from Server Functions ([@&#8203;sebmarkbage](https://redirect.github.com/sebmarkbage) [#&#8203;34084](https://redirect.github.com/facebook/react/pull/34084), [@&#8203;denk0403](https://redirect.github.com/denk0403) [#&#8203;33761](https://redirect.github.com/facebook/react/pull/33761)) - Pass line/column to `filterStackFrame` ([@&#8203;eps1lon](https://redirect.github.com/eps1lon) [#&#8203;33707](https://redirect.github.com/facebook/react/pull/33707)) - Support Async Modules in Turbopack Server References ([@&#8203;lubieowoce](https://redirect.github.com/lubieowoce) [#&#8203;34531](https://redirect.github.com/facebook/react/pull/34531)) - Add support for .mjs file extension in Webpack ([@&#8203;jennyscript](https://redirect.github.com/jennyscript) [#&#8203;33028](https://redirect.github.com/facebook/react/pull/33028)) - Fix a wrong missing key warning ([@&#8203;unstubbable](https://redirect.github.com/unstubbable) [#&#8203;34350](https://redirect.github.com/facebook/react/pull/34350)) - Make console log resolve in predictable order ([@&#8203;sebmarkbage](https://redirect.github.com/sebmarkbage) [#&#8203;33665](https://redirect.github.com/facebook/react/pull/33665)) ##### React Reconciler - [createContainer](https://redirect.github.com/facebook/react/blob/v19.2.0/packages/react-reconciler/src/ReactFiberReconciler.js#L255-L261) and [createHydrationContainer](https://redirect.github.com/facebook/react/blob/v19.2.0/packages/react-reconciler/src/ReactFiberReconciler.js#L305-L312) had their parameter order adjusted after `on*` handlers to account for upcoming experimental APIs ### [`v19.1.1`](https://redirect.github.com/facebook/react/blob/HEAD/CHANGELOG.md#1911-July-28-2025) [Compare Source](https://redirect.github.com/facebook/react/compare/v19.1.0...v19.1.1) ##### React - Fixed Owner Stacks to work with ES2015 function.name semantics ([#&#8203;33680](https://redirect.github.com/facebook/react/pull/33680) by [@&#8203;hoxyq](https://redirect.github.com/hoxyq)) ### [`v19.1.0`](https://redirect.github.com/facebook/react/blob/HEAD/CHANGELOG.md#1910-March-28-2025) [Compare Source](https://redirect.github.com/facebook/react/compare/v19.0.0...v19.1.0) ##### Owner Stack An Owner Stack is a string representing the components that are directly responsible for rendering a particular component. You can log Owner Stacks when debugging or use Owner Stacks to enhance error overlays or other development tools. Owner Stacks are only available in development builds. Component Stacks in production are unchanged. - An Owner Stack is a development-only stack trace that helps identify which components are responsible for rendering a particular component. An Owner Stack is distinct from a Component Stacks, which shows the hierarchy of components leading to an error. - The [captureOwnerStack API](https://react.dev/reference/react/captureOwnerStack) is only available in development mode and returns a Owner Stack, if available. The API can be used to enhance error overlays or log component relationships when debugging. [#&#8203;29923](https://redirect.github.com/facebook/react/pull/29923), [#&#8203;32353](https://redirect.github.com/facebook/react/pull/32353), [#&#8203;30306](https://redirect.github.com/facebook/react/pull/30306), [#&#8203;32538](https://redirect.github.com/facebook/react/pull/32538), [#&#8203;32529](https://redirect.github.com/facebook/react/pull/32529), [#&#8203;32538](https://redirect.github.com/facebook/react/pull/32538) ##### React - Enhanced support for Suspense boundaries to be used anywhere, including the client, server, and during hydration. [#&#8203;32069](https://redirect.github.com/facebook/react/pull/32069), [#&#8203;32163](https://redirect.github.com/facebook/react/pull/32163), [#&#8203;32224](https://redirect.github.com/facebook/react/pull/32224), [#&#8203;32252](https://redirect.github.com/facebook/react/pull/32252) - Reduced unnecessary client rendering through improved hydration scheduling [#&#8203;31751](https://redirect.github.com/facebook/react/pull/31751) - Increased priority of client rendered Suspense boundaries [#&#8203;31776](https://redirect.github.com/facebook/react/pull/31776) - Fixed frozen fallback states by rendering unfinished Suspense boundaries on the client. [#&#8203;31620](https://redirect.github.com/facebook/react/pull/31620) - Reduced garbage collection pressure by improving Suspense boundary retries. [#&#8203;31667](https://redirect.github.com/facebook/react/pull/31667) - Fixed erroneous “Waiting for Paint” log when the passive effect phase was not delayed [#&#8203;31526](https://redirect.github.com/facebook/react/pull/31526) - Fixed a regression causing key warnings for flattened positional children in development mode. [#&#8203;32117](https://redirect.github.com/facebook/react/pull/32117) - Updated `useId` to use valid CSS selectors, changing format from `:r123:` to `«r123»`. [#&#8203;32001](https://redirect.github.com/facebook/react/pull/32001) - Added a dev-only warning for null/undefined created in useEffect, useInsertionEffect, and useLayoutEffect. [#&#8203;32355](https://redirect.github.com/facebook/react/pull/32355) - Fixed a bug where dev-only methods were exported in production builds. React.act is no longer available in production builds. [#&#8203;32200](https://redirect.github.com/facebook/react/pull/32200) - Improved consistency across prod and dev to improve compatibility with Google Closure Compiler and bindings [#&#8203;31808](https://redirect.github.com/facebook/react/pull/31808) - Improve passive effect scheduling for consistent task yielding. [#&#8203;31785](https://redirect.github.com/facebook/react/pull/31785) - Fixed asserts in React Native when passChildrenWhenCloningPersistedNodes is enabled for OffscreenComponent rendering. [#&#8203;32528](https://redirect.github.com/facebook/react/pull/32528) - Fixed component name resolution for Portal [#&#8203;32640](https://redirect.github.com/facebook/react/pull/32640) - Added support for beforetoggle and toggle events on the dialog element. [#&#8203;32479](https://redirect.github.com/facebook/react/pull/32479) ##### React DOM - Fixed double warning when the `href` attribute is an empty string [#&#8203;31783](https://redirect.github.com/facebook/react/pull/31783) - Fixed an edge case where `getHoistableRoot()` didn’t work properly when the container was a Document [#&#8203;32321](https://redirect.github.com/facebook/react/pull/32321) - Removed support for using HTML comments (e.g. `<!-- -->`) as a DOM container. [#&#8203;32250](https://redirect.github.com/facebook/react/pull/32250) - Added support for `<script>` and `<template>` tags to be nested within `<select>` tags. [#&#8203;31837](https://redirect.github.com/facebook/react/pull/31837) - Fixed responsive images to be preloaded as HTML instead of headers [#&#8203;32445](https://redirect.github.com/facebook/react/pull/32445) ##### use-sync-external-store - Added `exports` field to `package.json` for `use-sync-external-store` to support various entrypoints. [#&#8203;25231](https://redirect.github.com/facebook/react/pull/25231) ##### React Server Components - Added `unstable_prerender`, a new experimental API for prerendering React Server Components on the server [#&#8203;31724](https://redirect.github.com/facebook/react/pull/31724) - Fixed an issue where streams would hang when receiving new chunks after a global error [#&#8203;31840](https://redirect.github.com/facebook/react/pull/31840), [#&#8203;31851](https://redirect.github.com/facebook/react/pull/31851) - Fixed an issue where pending chunks were counted twice. [#&#8203;31833](https://redirect.github.com/facebook/react/pull/31833) - Added support for streaming in edge environments [#&#8203;31852](https://redirect.github.com/facebook/react/pull/31852) - Added support for sending custom error names from a server so that they are available in the client for console replaying. [#&#8203;32116](https://redirect.github.com/facebook/react/pull/32116) - Updated the server component wire format to remove IDs for hints and console.log because they have no return value [#&#8203;31671](https://redirect.github.com/facebook/react/pull/31671) - Exposed `registerServerReference` in client builds to handle server references in different environments. [#&#8203;32534](https://redirect.github.com/facebook/react/pull/32534) - Added react-server-dom-parcel package which integrates Server Components with the [Parcel bundler](https://parceljs.org/) [#&#8203;31725](https://redirect.github.com/facebook/react/pull/31725), [#&#8203;32132](https://redirect.github.com/facebook/react/pull/32132), [#&#8203;31799](https://redirect.github.com/facebook/react/pull/31799), [#&#8203;32294](https://redirect.github.com/facebook/react/pull/32294), [#&#8203;31741](https://redirect.github.com/facebook/react/pull/31741) </details> <details> <summary>styleguidist/react-docgen-typescript (react-docgen-typescript)</summary> ### [`v2.4.0`](https://redirect.github.com/styleguidist/react-docgen-typescript/releases/tag/v2.4.0): v.2.4.0 [Compare Source](https://redirect.github.com/styleguidist/react-docgen-typescript/compare/v2.3.0...v2.4.0) - feat: Improve subcomponent and components with "parts" exports - thanks to [@&#8203;cgatian](https://redirect.github.com/cgatian) PR [#&#8203;514](https://redirect.github.com/styleguidist/react-docgen-typescript/issues/514) - feat: Set esModuleInterop as default config of parse - thanks to HUST-SE-LY PR [#&#8203;511](https://redirect.github.com/styleguidist/react-docgen-typescript/issues/511) - feat: Support extracting defaults from renamed destructuring - thanks to [@&#8203;mrginglymus](https://redirect.github.com/mrginglymus) PR [#&#8203;507](https://redirect.github.com/styleguidist/react-docgen-typescript/issues/507) - perf improvements - thanks to [@&#8203;adbutterfield](https://redirect.github.com/adbutterfield) PR [#&#8203;504](https://redirect.github.com/styleguidist/react-docgen-typescript/issues/504) - feat: Add option for sorting union members - thanks to [@&#8203;pwolfert](https://redirect.github.com/pwolfert) PR [#&#8203;503](https://redirect.github.com/styleguidist/react-docgen-typescript/issues/503) - Vulnerable dependencies updated ### [`v2.3.0`](https://redirect.github.com/styleguidist/react-docgen-typescript/compare/v2.2.2...v2.3.0) [Compare Source](https://redirect.github.com/styleguidist/react-docgen-typescript/compare/v2.2.2...v2.3.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 6am on Saturday" in timezone Europe/Oslo, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/) using a [preset](https://redirect.github.com/code-obos/dkt-renovate-presets/tree/main/ecosystem) from [<img alt="Obos" src="https://raw.githubusercontent.com/code-obos/dkt-renovate-presets/refs/heads/main/assets/obos_liggende_hus_hvit.svg" height="10">](https://www.obos.no/?utm_source=github&utm_medium=referral&utm_campaign=dkt-renovate-preset). View repository job log [here](https://app.renovatebot.com/dashboard#github/code-obos/grunnmuren) <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE1Ni4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyLwn5OmIGRlcHMiLCLwn6SWIGJvdCJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Aulon Mujaj <[email protected]>
1 parent 03d1763 commit cb683e4

File tree

6 files changed

+1866
-713
lines changed

6 files changed

+1866
-713
lines changed

apps/docs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
"cva": "1.0.0-beta.4",
3939
"groq": "4.14.2",
4040
"prism-react-renderer": "2.4.1",
41-
"react": "19.0.0",
41+
"react": "19.2.0",
4242
"react-aria-components": "1.13.0",
43-
"react-dom": "19.0.0",
43+
"react-dom": "19.2.0",
4444
"react-element-to-jsx-string": "17.0.1",
4545
"react-live": "4.1.8",
4646
"sanity": "4.14.2",
@@ -51,7 +51,7 @@
5151
"@react-aria/optimize-locales-plugin": "1.1.5",
5252
"@tailwindcss/vite": "4.1.17",
5353
"@tanstack/react-router-devtools": "1.135.0",
54-
"react-docgen-typescript": "2.2.2",
54+
"react-docgen-typescript": "2.4.0",
5555
"tailwindcss": "4.1.17",
5656
"vite": "7.2.2",
5757
"vite-tsconfig-paths": "5.1.4"

apps/docs/src/routes/_docs.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ function RootLayout() {
7070
// This integrates RAC/Grunnmuren with TanStack router
7171
// Giving us typesafe routes
7272
// See https://react-spectrum.adobe.com/react-aria/routing.html#tanstack-router
73+
// @ts-expect-error its fine for now, but should fix it properly later
7374
navigate={(to, options) => router.navigate({ to, ...options })}
7475
useHref={(to) => router.buildLocation({ to }).href}
7576
>

apps/docs/src/routes/_docs/komponenter/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ function Page() {
3030
{components.map((component) => (
3131
<Card key={component._id} variant="outlined">
3232
<Heading level={2}>
33-
{/* @ts-expect-error figure out how to make this typesafe. Seems like routerOptions doesn't accept params. See https://github.com/adobe/react-spectrum/issues/6587 */}
3433
<CardLink href={`/komponenter/${component.slug}`}>
3534
{component.name}
3635
</CardLink>

apps/docs/src/routes/_docs/profil/ikoner.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@ function IconCard({ iconName, Icon }) {
8383
<span className="block text-center text-sm">{iconName}</span>
8484
<Button
8585
variant="tertiary"
86-
// @ts-expect-error how can we make this work when we've augmented grunnmuren with tanstack's router?
87-
// In that case we don't want TSR's typesafty, because it's an external link. See https://github.com/adobe/react-spectrum/issues/6397
8886
href={downloadSvgLink}
8987
download
9088
className="ml-auto w-[44px]"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
"fontaine": "0.7.0",
3737
"http-server": "14.1.1",
3838
"playwright": "1.56.1",
39-
"react": "19.0.0",
40-
"react-dom": "19.0.0",
39+
"react": "19.2.0",
40+
"react-dom": "19.2.0",
4141
"storybook": "10.0.6",
4242
"tailwindcss": "4.1.17",
4343
"typescript": "5.9.3",

0 commit comments

Comments
 (0)