diff --git a/package.json b/package.json index c6dad781d4e0c..75b0f95c0bf31 100644 --- a/package.json +++ b/package.json @@ -211,16 +211,16 @@ "pretty-ms": "7.0.0", "random-seed": "0.3.0", "react": "19.0.0", - "react-builtin": "npm:react@19.1.0-canary-3b009b4c-20250102", + "react-builtin": "npm:react@19.1.0-canary-3ce77d55-20250106", "react-dom": "19.0.0", - "react-dom-builtin": "npm:react-dom@19.1.0-canary-3b009b4c-20250102", - "react-dom-experimental-builtin": "npm:react-dom@0.0.0-experimental-3b009b4c-20250102", - "react-experimental-builtin": "npm:react@0.0.0-experimental-3b009b4c-20250102", - "react-is-builtin": "npm:react-is@19.1.0-canary-3b009b4c-20250102", - "react-server-dom-turbopack": "19.1.0-canary-3b009b4c-20250102", - "react-server-dom-turbopack-experimental": "npm:react-server-dom-turbopack@0.0.0-experimental-3b009b4c-20250102", - "react-server-dom-webpack": "19.1.0-canary-3b009b4c-20250102", - "react-server-dom-webpack-experimental": "npm:react-server-dom-webpack@0.0.0-experimental-3b009b4c-20250102", + "react-dom-builtin": "npm:react-dom@19.1.0-canary-3ce77d55-20250106", + "react-dom-experimental-builtin": "npm:react-dom@0.0.0-experimental-3ce77d55-20250106", + "react-experimental-builtin": "npm:react@0.0.0-experimental-3ce77d55-20250106", + "react-is-builtin": "npm:react-is@19.1.0-canary-3ce77d55-20250106", + "react-server-dom-turbopack": "19.1.0-canary-3ce77d55-20250106", + "react-server-dom-turbopack-experimental": "npm:react-server-dom-turbopack@0.0.0-experimental-3ce77d55-20250106", + "react-server-dom-webpack": "19.1.0-canary-3ce77d55-20250106", + "react-server-dom-webpack-experimental": "npm:react-server-dom-webpack@0.0.0-experimental-3ce77d55-20250106", "react-ssr-prepass": "1.0.8", "react-virtualized": "9.22.3", "relay-compiler": "13.0.2", @@ -230,8 +230,8 @@ "resolve-from": "5.0.0", "sass": "1.54.0", "satori": "0.10.9", - "scheduler-builtin": "npm:scheduler@0.26.0-canary-3b009b4c-20250102", - "scheduler-experimental-builtin": "npm:scheduler@0.0.0-experimental-3b009b4c-20250102", + "scheduler-builtin": "npm:scheduler@0.26.0-canary-3ce77d55-20250106", + "scheduler-experimental-builtin": "npm:scheduler@0.0.0-experimental-3ce77d55-20250106", "seedrandom": "3.0.5", "semver": "7.3.7", "shell-quote": "1.7.3", @@ -272,10 +272,10 @@ "@types/react": "19.0.0", "@types/react-dom": "19.0.0", "jest-snapshot": "30.0.0-alpha.6", - "react": "19.1.0-canary-3b009b4c-20250102", - "react-dom": "19.1.0-canary-3b009b4c-20250102", - "react-is": "19.1.0-canary-3b009b4c-20250102", - "scheduler": "0.26.0-canary-3b009b4c-20250102" + "react": "19.1.0-canary-3ce77d55-20250106", + "react-dom": "19.1.0-canary-3ce77d55-20250106", + "react-is": "19.1.0-canary-3ce77d55-20250106", + "scheduler": "0.26.0-canary-3ce77d55-20250106" }, "patchedDependencies": { "webpack-sources@3.2.3": "patches/webpack-sources@3.2.3.patch", diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-client.development.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-client.development.js index 64cdb6779812f..bdf395ef6acf2 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-client.development.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-client.development.js @@ -12347,7 +12347,9 @@ if ( ((hoistableRoot = maybeNodes[i]), hoistableRoot.getAttribute("href") === - (null == current.href ? null : current.href) && + (null == current.href || "" === current.href + ? null + : current.href) && hoistableRoot.getAttribute("rel") === (null == current.rel ? null : current.rel) && hoistableRoot.getAttribute("title") === @@ -19581,36 +19583,34 @@ } case "src": case "href": - "" !== propKey || - ("a" === tag && "href" === value) || - ("object" === tag && "data" === value) - ? hydrateSanitizedAttribute( - domElement, - value, - value, - propKey, - extraAttributes, - serverDifferences - ) - : ("src" === value - ? console.error( - 'An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', - value, - value - ) - : console.error( - 'An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', - value, - value - ), - hydrateSanitizedAttribute( - domElement, - value, - value, - null, - extraAttributes, - serverDifferences - )); + if ( + !( + "" !== propKey || + ("a" === tag && "href" === value) || + ("object" === tag && "data" === value) + ) + ) { + "src" === value + ? console.error( + 'An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', + value, + value + ) + : console.error( + 'An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', + value, + value + ); + continue; + } + hydrateSanitizedAttribute( + domElement, + value, + value, + propKey, + extraAttributes, + serverDifferences + ); continue; case "action": case "formAction": @@ -20228,7 +20228,9 @@ else if ( name !== anyProps.rel || instance.getAttribute("href") !== - (null == anyProps.href ? null : anyProps.href) || + (null == anyProps.href || "" === anyProps.href + ? null + : anyProps.href) || instance.getAttribute("crossorigin") !== (null == anyProps.crossOrigin ? null @@ -25645,11 +25647,11 @@ }; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-experimental-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-experimental-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-experimental-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-experimental-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -25686,10 +25688,10 @@ !(function () { var internals = { bundleType: 1, - version: "19.1.0-experimental-3b009b4c-20250102", + version: "19.1.0-experimental-3ce77d55-20250106", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-experimental-3b009b4c-20250102" + reconcilerVersion: "19.1.0-experimental-3ce77d55-20250106" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -25833,7 +25835,7 @@ listenToAllSupportedEvents(container); return new ReactDOMHydrationRoot(initialChildren); }; - exports.version = "19.1.0-experimental-3b009b4c-20250102"; + exports.version = "19.1.0-experimental-3ce77d55-20250106"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-client.production.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-client.production.js index 31a6a7f4f3670..bbf3307b22678 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-client.production.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-client.production.js @@ -8441,7 +8441,9 @@ function commitMutationEffectsOnFiber(finishedWork, root) { if ( ((currentResource = maybeNodes[i]), currentResource.getAttribute("href") === - (null == current.href ? null : current.href) && + (null == current.href || "" === current.href + ? null + : current.href) && currentResource.getAttribute("rel") === (null == current.rel ? null : current.rel) && currentResource.getAttribute("title") === @@ -13689,7 +13691,9 @@ function canHydrateInstance(instance, type, props, inRootOrSingleton) { else if ( name !== anyProps.rel || instance.getAttribute("href") !== - (null == anyProps.href ? null : anyProps.href) || + (null == anyProps.href || "" === anyProps.href + ? null + : anyProps.href) || instance.getAttribute("crossorigin") !== (null == anyProps.crossOrigin ? null : anyProps.crossOrigin) || instance.getAttribute("title") !== @@ -15306,14 +15310,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { }; var isomorphicReactPackageVersion$jscomp$inline_1699 = React.version; if ( - "19.1.0-experimental-3b009b4c-20250102" !== + "19.1.0-experimental-3ce77d55-20250106" !== isomorphicReactPackageVersion$jscomp$inline_1699 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1699, - "19.1.0-experimental-3b009b4c-20250102" + "19.1.0-experimental-3ce77d55-20250106" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -15335,10 +15339,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { }; var internals$jscomp$inline_2162 = { bundleType: 0, - version: "19.1.0-experimental-3b009b4c-20250102", + version: "19.1.0-experimental-3ce77d55-20250106", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-experimental-3b009b4c-20250102" + reconcilerVersion: "19.1.0-experimental-3ce77d55-20250106" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2163 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -15444,4 +15448,4 @@ exports.hydrateRoot = function (container, initialChildren, options) { listenToAllSupportedEvents(container); return new ReactDOMHydrationRoot(initialChildren); }; -exports.version = "19.1.0-experimental-3b009b4c-20250102"; +exports.version = "19.1.0-experimental-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-profiling.development.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-profiling.development.js index 1ebeaeea003ec..219e17c72b37c 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-profiling.development.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-profiling.development.js @@ -12355,7 +12355,9 @@ if ( ((hoistableRoot = maybeNodes[i]), hoistableRoot.getAttribute("href") === - (null == current.href ? null : current.href) && + (null == current.href || "" === current.href + ? null + : current.href) && hoistableRoot.getAttribute("rel") === (null == current.rel ? null : current.rel) && hoistableRoot.getAttribute("title") === @@ -19593,36 +19595,34 @@ } case "src": case "href": - "" !== propKey || - ("a" === tag && "href" === value) || - ("object" === tag && "data" === value) - ? hydrateSanitizedAttribute( - domElement, - value, - value, - propKey, - extraAttributes, - serverDifferences - ) - : ("src" === value - ? console.error( - 'An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', - value, - value - ) - : console.error( - 'An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', - value, - value - ), - hydrateSanitizedAttribute( - domElement, - value, - value, - null, - extraAttributes, - serverDifferences - )); + if ( + !( + "" !== propKey || + ("a" === tag && "href" === value) || + ("object" === tag && "data" === value) + ) + ) { + "src" === value + ? console.error( + 'An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', + value, + value + ) + : console.error( + 'An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', + value, + value + ); + continue; + } + hydrateSanitizedAttribute( + domElement, + value, + value, + propKey, + extraAttributes, + serverDifferences + ); continue; case "action": case "formAction": @@ -20240,7 +20240,9 @@ else if ( name !== anyProps.rel || instance.getAttribute("href") !== - (null == anyProps.href ? null : anyProps.href) || + (null == anyProps.href || "" === anyProps.href + ? null + : anyProps.href) || instance.getAttribute("crossorigin") !== (null == anyProps.crossOrigin ? null @@ -25702,11 +25704,11 @@ }; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-experimental-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-experimental-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-experimental-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-experimental-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -25743,10 +25745,10 @@ !(function () { var internals = { bundleType: 1, - version: "19.1.0-experimental-3b009b4c-20250102", + version: "19.1.0-experimental-3ce77d55-20250106", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-experimental-3b009b4c-20250102" + reconcilerVersion: "19.1.0-experimental-3ce77d55-20250106" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -26220,7 +26222,7 @@ exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-experimental-3b009b4c-20250102"; + exports.version = "19.1.0-experimental-3ce77d55-20250106"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-profiling.profiling.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-profiling.profiling.js index 83fabbbea0a99..b0b9d042f841a 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-profiling.profiling.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-profiling.profiling.js @@ -9103,7 +9103,9 @@ function commitMutationEffectsOnFiber(finishedWork, root) { if ( ((hoistableRoot = maybeNodes[i]), hoistableRoot.getAttribute("href") === - (null == current.href ? null : current.href) && + (null == current.href || "" === current.href + ? null + : current.href) && hoistableRoot.getAttribute("rel") === (null == current.rel ? null : current.rel) && hoistableRoot.getAttribute("title") === @@ -15103,7 +15105,9 @@ function canHydrateInstance(instance, type, props, inRootOrSingleton) { else if ( name !== anyProps.rel || instance.getAttribute("href") !== - (null == anyProps.href ? null : anyProps.href) || + (null == anyProps.href || "" === anyProps.href + ? null + : anyProps.href) || instance.getAttribute("crossorigin") !== (null == anyProps.crossOrigin ? null : anyProps.crossOrigin) || instance.getAttribute("title") !== @@ -16737,14 +16741,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { }; var isomorphicReactPackageVersion$jscomp$inline_1847 = React.version; if ( - "19.1.0-experimental-3b009b4c-20250102" !== + "19.1.0-experimental-3ce77d55-20250106" !== isomorphicReactPackageVersion$jscomp$inline_1847 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1847, - "19.1.0-experimental-3b009b4c-20250102" + "19.1.0-experimental-3ce77d55-20250106" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -16766,10 +16770,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { }; var internals$jscomp$inline_2303 = { bundleType: 0, - version: "19.1.0-experimental-3b009b4c-20250102", + version: "19.1.0-experimental-3ce77d55-20250106", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-experimental-3b009b4c-20250102" + reconcilerVersion: "19.1.0-experimental-3ce77d55-20250106" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2304 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -17036,7 +17040,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-experimental-3b009b4c-20250102"; +exports.version = "19.1.0-experimental-3ce77d55-20250106"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.development.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.development.js index 62b08314f9c7c..f60844c6a890e 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.development.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.development.js @@ -9281,5 +9281,5 @@ 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server' ); }; - exports.version = "19.1.0-experimental-3b009b4c-20250102"; + exports.version = "19.1.0-experimental-3ce77d55-20250106"; })(); diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.production.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.production.js index 300a5f7316608..7ff24e59db23c 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.production.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.production.js @@ -6048,4 +6048,4 @@ exports.renderToString = function (children, options) { 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server' ); }; -exports.version = "19.1.0-experimental-3b009b4c-20250102"; +exports.version = "19.1.0-experimental-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.node.development.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.node.development.js index f6bfc60bc1dfb..fba68d334ea78 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.node.development.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.node.development.js @@ -9281,5 +9281,5 @@ 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server' ); }; - exports.version = "19.1.0-experimental-3b009b4c-20250102"; + exports.version = "19.1.0-experimental-3ce77d55-20250106"; })(); diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.node.production.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.node.production.js index 0cd0964c89cee..907accbb154e9 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.node.production.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.node.production.js @@ -6139,4 +6139,4 @@ exports.renderToString = function (children, options) { 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server' ); }; -exports.version = "19.1.0-experimental-3b009b4c-20250102"; +exports.version = "19.1.0-experimental-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.browser.development.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.browser.development.js index 2eece9ae2da83..921a332449f3e 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.browser.development.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.browser.development.js @@ -8189,11 +8189,11 @@ } function ensureCorrectIsomorphicReactVersion() { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-experimental-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-experimental-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-experimental-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-experimental-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); } var React = require("next/dist/compiled/react-experimental"), @@ -9963,5 +9963,5 @@ startWork(request); }); }; - exports.version = "19.1.0-experimental-3b009b4c-20250102"; + exports.version = "19.1.0-experimental-3ce77d55-20250106"; })(); diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.browser.production.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.browser.production.js index d65f28205a0da..5fc126e8e21fd 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.browser.production.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.browser.production.js @@ -6576,12 +6576,12 @@ function getPostponedState(request) { } function ensureCorrectIsomorphicReactVersion() { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-experimental-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-experimental-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion, - "19.1.0-experimental-3b009b4c-20250102" + "19.1.0-experimental-3ce77d55-20250106" ) ); } @@ -6836,4 +6836,4 @@ exports.resumeAndPrerender = function (children, postponedState, options) { startWork(request); }); }; -exports.version = "19.1.0-experimental-3b009b4c-20250102"; +exports.version = "19.1.0-experimental-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.bun.production.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.bun.production.js index 21e4ef7bef830..efde64d8b3af1 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.bun.production.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.bun.production.js @@ -6057,13 +6057,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) { } var isomorphicReactPackageVersion$jscomp$inline_776 = React.version; if ( - "19.1.0-experimental-3b009b4c-20250102" !== + "19.1.0-experimental-3ce77d55-20250106" !== isomorphicReactPackageVersion$jscomp$inline_776 ) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion$jscomp$inline_776 + - "\n - react-dom: 19.1.0-experimental-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-experimental-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); exports.renderToReadableStream = function (children, options) { return new Promise(function (resolve, reject) { @@ -6154,4 +6154,4 @@ exports.renderToReadableStream = function (children, options) { startWork(request); }); }; -exports.version = "19.1.0-experimental-3b009b4c-20250102"; +exports.version = "19.1.0-experimental-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.edge.development.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.edge.development.js index f654b5352536b..b902a09f79dc9 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.edge.development.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.edge.development.js @@ -8212,11 +8212,11 @@ } function ensureCorrectIsomorphicReactVersion() { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-experimental-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-experimental-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-experimental-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-experimental-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); } var React = require("next/dist/compiled/react-experimental"), @@ -9993,5 +9993,5 @@ const setTimeoutOrImmediate = ? globalThis['set' + 'Immediate'] : setTimeout; - exports.version = "19.1.0-experimental-3b009b4c-20250102"; + exports.version = "19.1.0-experimental-3ce77d55-20250106"; })(); diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.edge.production.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.edge.production.js index 6703bc218c6d1..c8ac6d5779e3b 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.edge.production.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.edge.production.js @@ -6682,11 +6682,11 @@ function getPostponedState(request) { } function ensureCorrectIsomorphicReactVersion() { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-experimental-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-experimental-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-experimental-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-experimental-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); } ensureCorrectIsomorphicReactVersion(); @@ -6951,4 +6951,4 @@ const setTimeoutOrImmediate = ? globalThis['set' + 'Immediate'] : setTimeout; -exports.version = "19.1.0-experimental-3b009b4c-20250102"; +exports.version = "19.1.0-experimental-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.node.development.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.node.development.js index effb5c0dcf9b1..3b55531b1f082 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.node.development.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.node.development.js @@ -8076,11 +8076,11 @@ } function ensureCorrectIsomorphicReactVersion() { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-experimental-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-experimental-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-experimental-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-experimental-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); } function createDrainHandler(destination, request) { @@ -9843,5 +9843,5 @@ } }; }; - exports.version = "19.1.0-experimental-3b009b4c-20250102"; + exports.version = "19.1.0-experimental-3ce77d55-20250106"; })(); diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.node.production.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.node.production.js index c83c9e48275cf..3767a28be1622 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.node.production.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.node.production.js @@ -6561,11 +6561,11 @@ function getPostponedState(request) { } function ensureCorrectIsomorphicReactVersion() { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-experimental-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-experimental-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-experimental-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-experimental-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); } ensureCorrectIsomorphicReactVersion(); @@ -6816,4 +6816,4 @@ exports.resumeToPipeableStream = function (children, postponedState, options) { } }; }; -exports.version = "19.1.0-experimental-3b009b4c-20250102"; +exports.version = "19.1.0-experimental-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-unstable_testing.development.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-unstable_testing.development.js index 1b755115ea663..26df9da16323a 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-unstable_testing.development.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-unstable_testing.development.js @@ -12388,7 +12388,9 @@ if ( ((hoistableRoot = maybeNodes[i]), hoistableRoot.getAttribute("href") === - (null == current.href ? null : current.href) && + (null == current.href || "" === current.href + ? null + : current.href) && hoistableRoot.getAttribute("rel") === (null == current.rel ? null : current.rel) && hoistableRoot.getAttribute("title") === @@ -19804,36 +19806,34 @@ } case "src": case "href": - "" !== propKey || - ("a" === tag && "href" === value) || - ("object" === tag && "data" === value) - ? hydrateSanitizedAttribute( - domElement, - value, - value, - propKey, - extraAttributes, - serverDifferences - ) - : ("src" === value - ? console.error( - 'An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', - value, - value - ) - : console.error( - 'An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', - value, - value - ), - hydrateSanitizedAttribute( - domElement, - value, - value, - null, - extraAttributes, - serverDifferences - )); + if ( + !( + "" !== propKey || + ("a" === tag && "href" === value) || + ("object" === tag && "data" === value) + ) + ) { + "src" === value + ? console.error( + 'An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', + value, + value + ) + : console.error( + 'An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', + value, + value + ); + continue; + } + hydrateSanitizedAttribute( + domElement, + value, + value, + propKey, + extraAttributes, + serverDifferences + ); continue; case "action": case "formAction": @@ -20451,7 +20451,9 @@ else if ( name !== anyProps.rel || instance.getAttribute("href") !== - (null == anyProps.href ? null : anyProps.href) || + (null == anyProps.href || "" === anyProps.href + ? null + : anyProps.href) || instance.getAttribute("crossorigin") !== (null == anyProps.crossOrigin ? null @@ -25979,11 +25981,11 @@ }; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-experimental-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-experimental-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-experimental-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-experimental-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -26020,10 +26022,10 @@ !(function () { var internals = { bundleType: 1, - version: "19.1.0-experimental-3b009b4c-20250102", + version: "19.1.0-experimental-3ce77d55-20250106", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-experimental-3b009b4c-20250102" + reconcilerVersion: "19.1.0-experimental-3ce77d55-20250106" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -26333,5 +26335,5 @@ } }; }; - exports.version = "19.1.0-experimental-3b009b4c-20250102"; + exports.version = "19.1.0-experimental-3ce77d55-20250106"; })(); diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-unstable_testing.production.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-unstable_testing.production.js index 921d284fd1bbc..9ff0984c55ca1 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-unstable_testing.production.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-unstable_testing.production.js @@ -8527,7 +8527,9 @@ function commitMutationEffectsOnFiber(finishedWork, root) { if ( ((currentResource = maybeNodes[i]), currentResource.getAttribute("href") === - (null == current.href ? null : current.href) && + (null == current.href || "" === current.href + ? null + : current.href) && currentResource.getAttribute("rel") === (null == current.rel ? null : current.rel) && currentResource.getAttribute("title") === @@ -13961,7 +13963,9 @@ function canHydrateInstance(instance, type, props, inRootOrSingleton) { else if ( name !== anyProps.rel || instance.getAttribute("href") !== - (null == anyProps.href ? null : anyProps.href) || + (null == anyProps.href || "" === anyProps.href + ? null + : anyProps.href) || instance.getAttribute("crossorigin") !== (null == anyProps.crossOrigin ? null : anyProps.crossOrigin) || instance.getAttribute("title") !== @@ -15635,14 +15639,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { }; var isomorphicReactPackageVersion$jscomp$inline_1728 = React.version; if ( - "19.1.0-experimental-3b009b4c-20250102" !== + "19.1.0-experimental-3ce77d55-20250106" !== isomorphicReactPackageVersion$jscomp$inline_1728 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1728, - "19.1.0-experimental-3b009b4c-20250102" + "19.1.0-experimental-3ce77d55-20250106" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -15664,10 +15668,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { }; var internals$jscomp$inline_2196 = { bundleType: 0, - version: "19.1.0-experimental-3b009b4c-20250102", + version: "19.1.0-experimental-3ce77d55-20250106", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-experimental-3b009b4c-20250102" + reconcilerVersion: "19.1.0-experimental-3ce77d55-20250106" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2197 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -15924,4 +15928,4 @@ exports.observeVisibleRects = function ( } }; }; -exports.version = "19.1.0-experimental-3b009b4c-20250102"; +exports.version = "19.1.0-experimental-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.development.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.development.js index 618a8123c5b2f..5278ccdd12f8a 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.development.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.development.js @@ -416,7 +416,7 @@ exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-experimental-3b009b4c-20250102"; + exports.version = "19.1.0-experimental-3ce77d55-20250106"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.production.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.production.js index bcd19b4e7bdaf..4f1b8b35b1156 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.production.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.production.js @@ -207,4 +207,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-experimental-3b009b4c-20250102"; +exports.version = "19.1.0-experimental-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.react-server.development.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.react-server.development.js index df7a59ecf6a14..9b4685432fe09 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.react-server.development.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.react-server.development.js @@ -336,5 +336,5 @@ })) : Internals.d.m(href)); }; - exports.version = "19.1.0-experimental-3b009b4c-20250102"; + exports.version = "19.1.0-experimental-3ce77d55-20250106"; })(); diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.react-server.production.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.react-server.production.js index 8ade55d1c10fa..24f9ed818b389 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.react-server.production.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom.react-server.production.js @@ -149,4 +149,4 @@ exports.preloadModule = function (href, options) { }); } else Internals.d.m(href); }; -exports.version = "19.1.0-experimental-3b009b4c-20250102"; +exports.version = "19.1.0-experimental-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom-experimental/package.json b/packages/next/src/compiled/react-dom-experimental/package.json index b12a0b565db9a..738eeca954dcd 100644 --- a/packages/next/src/compiled/react-dom-experimental/package.json +++ b/packages/next/src/compiled/react-dom-experimental/package.json @@ -72,10 +72,10 @@ "./package.json": "./package.json" }, "dependencies": { - "scheduler": "0.0.0-experimental-3b009b4c-20250102" + "scheduler": "0.0.0-experimental-3ce77d55-20250106" }, "peerDependencies": { - "react": "0.0.0-experimental-3b009b4c-20250102" + "react": "0.0.0-experimental-3ce77d55-20250106" }, "browser": { "./server.js": "./server.browser.js", diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom-client.development.js b/packages/next/src/compiled/react-dom/cjs/react-dom-client.development.js index b8670c226effe..ba0621b783996 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom-client.development.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom-client.development.js @@ -11871,7 +11871,9 @@ if ( ((hoistableRoot = maybeNodes[i]), hoistableRoot.getAttribute("href") === - (null == current.href ? null : current.href) && + (null == current.href || "" === current.href + ? null + : current.href) && hoistableRoot.getAttribute("rel") === (null == current.rel ? null : current.rel) && hoistableRoot.getAttribute("title") === @@ -18568,36 +18570,34 @@ } case "src": case "href": - "" !== propKey || - ("a" === tag && "href" === value) || - ("object" === tag && "data" === value) - ? hydrateSanitizedAttribute( - domElement, - value, - value, - propKey, - extraAttributes, - serverDifferences - ) - : ("src" === value - ? console.error( - 'An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', - value, - value - ) - : console.error( - 'An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', - value, - value - ), - hydrateSanitizedAttribute( - domElement, - value, - value, - null, - extraAttributes, - serverDifferences - )); + if ( + !( + "" !== propKey || + ("a" === tag && "href" === value) || + ("object" === tag && "data" === value) + ) + ) { + "src" === value + ? console.error( + 'An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', + value, + value + ) + : console.error( + 'An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', + value, + value + ); + continue; + } + hydrateSanitizedAttribute( + domElement, + value, + value, + propKey, + extraAttributes, + serverDifferences + ); continue; case "action": case "formAction": @@ -19207,7 +19207,9 @@ else if ( name !== anyProps.rel || instance.getAttribute("href") !== - (null == anyProps.href ? null : anyProps.href) || + (null == anyProps.href || "" === anyProps.href + ? null + : anyProps.href) || instance.getAttribute("crossorigin") !== (null == anyProps.crossOrigin ? null @@ -24525,11 +24527,11 @@ }; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-canary-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-canary-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-canary-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-canary-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -24566,10 +24568,10 @@ !(function () { var internals = { bundleType: 1, - version: "19.1.0-canary-3b009b4c-20250102", + version: "19.1.0-canary-3ce77d55-20250106", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-canary-3b009b4c-20250102" + reconcilerVersion: "19.1.0-canary-3ce77d55-20250106" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -24715,7 +24717,7 @@ listenToAllSupportedEvents(container); return new ReactDOMHydrationRoot(initialChildren); }; - exports.version = "19.1.0-canary-3b009b4c-20250102"; + exports.version = "19.1.0-canary-3ce77d55-20250106"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom-client.production.js b/packages/next/src/compiled/react-dom/cjs/react-dom-client.production.js index 8b895a493964a..ae3b3c40ec1d8 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom-client.production.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom-client.production.js @@ -8283,7 +8283,9 @@ function commitMutationEffectsOnFiber(finishedWork, root) { if ( ((currentResource = maybeNodes[i]), currentResource.getAttribute("href") === - (null == current.href ? null : current.href) && + (null == current.href || "" === current.href + ? null + : current.href) && currentResource.getAttribute("rel") === (null == current.rel ? null : current.rel) && currentResource.getAttribute("title") === @@ -13526,7 +13528,9 @@ function canHydrateInstance(instance, type, props, inRootOrSingleton) { else if ( name !== anyProps.rel || instance.getAttribute("href") !== - (null == anyProps.href ? null : anyProps.href) || + (null == anyProps.href || "" === anyProps.href + ? null + : anyProps.href) || instance.getAttribute("crossorigin") !== (null == anyProps.crossOrigin ? null : anyProps.crossOrigin) || instance.getAttribute("title") !== @@ -15143,14 +15147,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { }; var isomorphicReactPackageVersion$jscomp$inline_1706 = React.version; if ( - "19.1.0-canary-3b009b4c-20250102" !== + "19.1.0-canary-3ce77d55-20250106" !== isomorphicReactPackageVersion$jscomp$inline_1706 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1706, - "19.1.0-canary-3b009b4c-20250102" + "19.1.0-canary-3ce77d55-20250106" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -15172,10 +15176,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { }; var internals$jscomp$inline_2175 = { bundleType: 0, - version: "19.1.0-canary-3b009b4c-20250102", + version: "19.1.0-canary-3ce77d55-20250106", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-canary-3b009b4c-20250102" + reconcilerVersion: "19.1.0-canary-3ce77d55-20250106" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2176 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -15281,4 +15285,4 @@ exports.hydrateRoot = function (container, initialChildren, options) { listenToAllSupportedEvents(container); return new ReactDOMHydrationRoot(initialChildren); }; -exports.version = "19.1.0-canary-3b009b4c-20250102"; +exports.version = "19.1.0-canary-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom-profiling.development.js b/packages/next/src/compiled/react-dom/cjs/react-dom-profiling.development.js index 0d13e478fee3b..6e30a651b033e 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom-profiling.development.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom-profiling.development.js @@ -11879,7 +11879,9 @@ if ( ((hoistableRoot = maybeNodes[i]), hoistableRoot.getAttribute("href") === - (null == current.href ? null : current.href) && + (null == current.href || "" === current.href + ? null + : current.href) && hoistableRoot.getAttribute("rel") === (null == current.rel ? null : current.rel) && hoistableRoot.getAttribute("title") === @@ -18580,36 +18582,34 @@ } case "src": case "href": - "" !== propKey || - ("a" === tag && "href" === value) || - ("object" === tag && "data" === value) - ? hydrateSanitizedAttribute( - domElement, - value, - value, - propKey, - extraAttributes, - serverDifferences - ) - : ("src" === value - ? console.error( - 'An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', - value, - value - ) - : console.error( - 'An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', - value, - value - ), - hydrateSanitizedAttribute( - domElement, - value, - value, - null, - extraAttributes, - serverDifferences - )); + if ( + !( + "" !== propKey || + ("a" === tag && "href" === value) || + ("object" === tag && "data" === value) + ) + ) { + "src" === value + ? console.error( + 'An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', + value, + value + ) + : console.error( + 'An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', + value, + value + ); + continue; + } + hydrateSanitizedAttribute( + domElement, + value, + value, + propKey, + extraAttributes, + serverDifferences + ); continue; case "action": case "formAction": @@ -19219,7 +19219,9 @@ else if ( name !== anyProps.rel || instance.getAttribute("href") !== - (null == anyProps.href ? null : anyProps.href) || + (null == anyProps.href || "" === anyProps.href + ? null + : anyProps.href) || instance.getAttribute("crossorigin") !== (null == anyProps.crossOrigin ? null @@ -24582,11 +24584,11 @@ }; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-canary-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-canary-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-canary-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-canary-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -24623,10 +24625,10 @@ !(function () { var internals = { bundleType: 1, - version: "19.1.0-canary-3b009b4c-20250102", + version: "19.1.0-canary-3ce77d55-20250106", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-canary-3b009b4c-20250102" + reconcilerVersion: "19.1.0-canary-3ce77d55-20250106" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -25102,7 +25104,7 @@ exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-canary-3b009b4c-20250102"; + exports.version = "19.1.0-canary-3ce77d55-20250106"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom-profiling.profiling.js b/packages/next/src/compiled/react-dom/cjs/react-dom-profiling.profiling.js index c1bda5e758d7c..a6c2b02aff24c 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom-profiling.profiling.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom-profiling.profiling.js @@ -8666,7 +8666,9 @@ function commitMutationEffectsOnFiber(finishedWork, root) { if ( ((hoistableRoot = maybeNodes[i]), hoistableRoot.getAttribute("href") === - (null == current.href ? null : current.href) && + (null == current.href || "" === current.href + ? null + : current.href) && hoistableRoot.getAttribute("rel") === (null == current.rel ? null : current.rel) && hoistableRoot.getAttribute("title") === @@ -14151,7 +14153,9 @@ function canHydrateInstance(instance, type, props, inRootOrSingleton) { else if ( name !== anyProps.rel || instance.getAttribute("href") !== - (null == anyProps.href ? null : anyProps.href) || + (null == anyProps.href || "" === anyProps.href + ? null + : anyProps.href) || instance.getAttribute("crossorigin") !== (null == anyProps.crossOrigin ? null : anyProps.crossOrigin) || instance.getAttribute("title") !== @@ -15787,14 +15791,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { }; var isomorphicReactPackageVersion$jscomp$inline_1802 = React.version; if ( - "19.1.0-canary-3b009b4c-20250102" !== + "19.1.0-canary-3ce77d55-20250106" !== isomorphicReactPackageVersion$jscomp$inline_1802 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1802, - "19.1.0-canary-3b009b4c-20250102" + "19.1.0-canary-3ce77d55-20250106" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -15816,10 +15820,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { }; var internals$jscomp$inline_1809 = { bundleType: 0, - version: "19.1.0-canary-3b009b4c-20250102", + version: "19.1.0-canary-3ce77d55-20250106", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-canary-3b009b4c-20250102", + reconcilerVersion: "19.1.0-canary-3ce77d55-20250106", getLaneLabelMap: function () { for ( var map = new Map(), lane = 1, index$281 = 0; @@ -16101,7 +16105,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-canary-3b009b4c-20250102"; +exports.version = "19.1.0-canary-3ce77d55-20250106"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.browser.development.js b/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.browser.development.js index 86384492a8629..c8f182be97385 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.browser.development.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.browser.development.js @@ -8556,5 +8556,5 @@ 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server' ); }; - exports.version = "19.1.0-canary-3b009b4c-20250102"; + exports.version = "19.1.0-canary-3ce77d55-20250106"; })(); diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.browser.production.js b/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.browser.production.js index ee82270971acf..62a85b9b071da 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.browser.production.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.browser.production.js @@ -5611,4 +5611,4 @@ exports.renderToString = function (children, options) { 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server' ); }; -exports.version = "19.1.0-canary-3b009b4c-20250102"; +exports.version = "19.1.0-canary-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.node.development.js b/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.node.development.js index 9ccb4a250dc00..98f811ac1db3a 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.node.development.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.node.development.js @@ -8556,5 +8556,5 @@ 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server' ); }; - exports.version = "19.1.0-canary-3b009b4c-20250102"; + exports.version = "19.1.0-canary-3ce77d55-20250106"; })(); diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.node.production.js b/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.node.production.js index 91346d84f74a3..95147acfaf59b 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.node.production.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom-server-legacy.node.production.js @@ -5688,4 +5688,4 @@ exports.renderToString = function (children, options) { 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server' ); }; -exports.version = "19.1.0-canary-3b009b4c-20250102"; +exports.version = "19.1.0-canary-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom-server.browser.development.js b/packages/next/src/compiled/react-dom/cjs/react-dom-server.browser.development.js index b76af1129912f..2b02921b2d251 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom-server.browser.development.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom-server.browser.development.js @@ -7292,11 +7292,11 @@ } function ensureCorrectIsomorphicReactVersion() { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-canary-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-canary-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-canary-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-canary-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); } var React = require("next/dist/compiled/react"), @@ -8938,5 +8938,5 @@ startWork(request); }); }; - exports.version = "19.1.0-canary-3b009b4c-20250102"; + exports.version = "19.1.0-canary-3ce77d55-20250106"; })(); diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom-server.browser.production.js b/packages/next/src/compiled/react-dom/cjs/react-dom-server.browser.production.js index b24719cd3de4c..7b61a1b218b9b 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom-server.browser.production.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom-server.browser.production.js @@ -5943,12 +5943,12 @@ function abort(request, reason) { } function ensureCorrectIsomorphicReactVersion() { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-canary-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-canary-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion, - "19.1.0-canary-3b009b4c-20250102" + "19.1.0-canary-3ce77d55-20250106" ) ); } @@ -6095,4 +6095,4 @@ exports.renderToReadableStream = function (children, options) { startWork(request); }); }; -exports.version = "19.1.0-canary-3b009b4c-20250102"; +exports.version = "19.1.0-canary-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom-server.bun.production.js b/packages/next/src/compiled/react-dom/cjs/react-dom-server.bun.production.js index 23d3084ac531f..c3afe67b5a160 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom-server.bun.production.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom-server.bun.production.js @@ -5580,13 +5580,13 @@ function abort(request, reason) { } var isomorphicReactPackageVersion$jscomp$inline_728 = React.version; if ( - "19.1.0-canary-3b009b4c-20250102" !== + "19.1.0-canary-3ce77d55-20250106" !== isomorphicReactPackageVersion$jscomp$inline_728 ) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion$jscomp$inline_728 + - "\n - react-dom: 19.1.0-canary-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-canary-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); exports.renderToReadableStream = function (children, options) { return new Promise(function (resolve, reject) { @@ -5677,4 +5677,4 @@ exports.renderToReadableStream = function (children, options) { startWork(request); }); }; -exports.version = "19.1.0-canary-3b009b4c-20250102"; +exports.version = "19.1.0-canary-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom-server.edge.development.js b/packages/next/src/compiled/react-dom/cjs/react-dom-server.edge.development.js index 619271100690c..a99210d5ac435 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom-server.edge.development.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom-server.edge.development.js @@ -7315,11 +7315,11 @@ } function ensureCorrectIsomorphicReactVersion() { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-canary-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-canary-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-canary-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-canary-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); } var React = require("next/dist/compiled/react"), @@ -8968,5 +8968,5 @@ const setTimeoutOrImmediate = ? globalThis['set' + 'Immediate'] : setTimeout; - exports.version = "19.1.0-canary-3b009b4c-20250102"; + exports.version = "19.1.0-canary-3ce77d55-20250106"; })(); diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom-server.edge.production.js b/packages/next/src/compiled/react-dom/cjs/react-dom-server.edge.production.js index b04e1f1fd849f..1b41c9a794dc4 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom-server.edge.production.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom-server.edge.production.js @@ -6035,11 +6035,11 @@ function abort(request, reason) { } function ensureCorrectIsomorphicReactVersion() { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-canary-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-canary-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-canary-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-canary-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); } ensureCorrectIsomorphicReactVersion(); @@ -6196,4 +6196,4 @@ const setTimeoutOrImmediate = ? globalThis['set' + 'Immediate'] : setTimeout; -exports.version = "19.1.0-canary-3b009b4c-20250102"; +exports.version = "19.1.0-canary-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom-server.node.development.js b/packages/next/src/compiled/react-dom/cjs/react-dom-server.node.development.js index 332fbfffe974b..f2ad1df8e3d5e 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom-server.node.development.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom-server.node.development.js @@ -7190,11 +7190,11 @@ } function ensureCorrectIsomorphicReactVersion() { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-canary-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-canary-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-canary-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-canary-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); } function createDrainHandler(destination, request) { @@ -8831,5 +8831,5 @@ } }; }; - exports.version = "19.1.0-canary-3b009b4c-20250102"; + exports.version = "19.1.0-canary-3ce77d55-20250106"; })(); diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom-server.node.production.js b/packages/next/src/compiled/react-dom/cjs/react-dom-server.node.production.js index 408b3a82578e0..86b78be9ce3a2 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom-server.node.production.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom-server.node.production.js @@ -5927,11 +5927,11 @@ function abort(request, reason) { } function ensureCorrectIsomorphicReactVersion() { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-canary-3b009b4c-20250102" !== isomorphicReactPackageVersion) + if ("19.1.0-canary-3ce77d55-20250106" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-canary-3b009b4c-20250102\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-canary-3ce77d55-20250106\nLearn more: https://react.dev/warnings/version-mismatch") ); } ensureCorrectIsomorphicReactVersion(); @@ -6080,4 +6080,4 @@ exports.renderToPipeableStream = function (children, options) { } }; }; -exports.version = "19.1.0-canary-3b009b4c-20250102"; +exports.version = "19.1.0-canary-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom.development.js b/packages/next/src/compiled/react-dom/cjs/react-dom.development.js index 778f585c4a00e..cdbd3cb08e800 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom.development.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom.development.js @@ -416,7 +416,7 @@ exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-canary-3b009b4c-20250102"; + exports.version = "19.1.0-canary-3ce77d55-20250106"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom.production.js b/packages/next/src/compiled/react-dom/cjs/react-dom.production.js index 5c6723dd2e7b1..97090eb0215ab 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom.production.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom.production.js @@ -207,4 +207,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-canary-3b009b4c-20250102"; +exports.version = "19.1.0-canary-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom.react-server.development.js b/packages/next/src/compiled/react-dom/cjs/react-dom.react-server.development.js index e9816c8b155bf..c5022b4f35de9 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom.react-server.development.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom.react-server.development.js @@ -336,5 +336,5 @@ })) : Internals.d.m(href)); }; - exports.version = "19.1.0-canary-3b009b4c-20250102"; + exports.version = "19.1.0-canary-3ce77d55-20250106"; })(); diff --git a/packages/next/src/compiled/react-dom/cjs/react-dom.react-server.production.js b/packages/next/src/compiled/react-dom/cjs/react-dom.react-server.production.js index d442dc308ed9e..97ab105513704 100644 --- a/packages/next/src/compiled/react-dom/cjs/react-dom.react-server.production.js +++ b/packages/next/src/compiled/react-dom/cjs/react-dom.react-server.production.js @@ -149,4 +149,4 @@ exports.preloadModule = function (href, options) { }); } else Internals.d.m(href); }; -exports.version = "19.1.0-canary-3b009b4c-20250102"; +exports.version = "19.1.0-canary-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-dom/package.json b/packages/next/src/compiled/react-dom/package.json index 746e966c63a49..4224827d3755f 100644 --- a/packages/next/src/compiled/react-dom/package.json +++ b/packages/next/src/compiled/react-dom/package.json @@ -67,10 +67,10 @@ "./package.json": "./package.json" }, "dependencies": { - "scheduler": "0.26.0-canary-3b009b4c-20250102" + "scheduler": "0.26.0-canary-3ce77d55-20250106" }, "peerDependencies": { - "react": "19.1.0-canary-3b009b4c-20250102" + "react": "19.1.0-canary-3ce77d55-20250106" }, "browser": { "./server.js": "./server.browser.js", diff --git a/packages/next/src/compiled/react-experimental/cjs/react.development.js b/packages/next/src/compiled/react-experimental/cjs/react.development.js index c4ce127b11165..d410457dd7e3f 100644 --- a/packages/next/src/compiled/react-experimental/cjs/react.development.js +++ b/packages/next/src/compiled/react-experimental/cjs/react.development.js @@ -1242,7 +1242,7 @@ exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.1.0-experimental-3b009b4c-20250102"; + exports.version = "19.1.0-experimental-3ce77d55-20250106"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/packages/next/src/compiled/react-experimental/cjs/react.production.js b/packages/next/src/compiled/react-experimental/cjs/react.production.js index 86bb087182a6f..0096ddcc242a5 100644 --- a/packages/next/src/compiled/react-experimental/cjs/react.production.js +++ b/packages/next/src/compiled/react-experimental/cjs/react.production.js @@ -565,4 +565,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-experimental-3b009b4c-20250102"; +exports.version = "19.1.0-experimental-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-experimental/cjs/react.react-server.development.js b/packages/next/src/compiled/react-experimental/cjs/react.react-server.development.js index a32aca9e224fa..c9c7db320778b 100644 --- a/packages/next/src/compiled/react-experimental/cjs/react.react-server.development.js +++ b/packages/next/src/compiled/react-experimental/cjs/react.react-server.development.js @@ -982,5 +982,5 @@ exports.useMemo = function (create, deps) { return resolveDispatcher().useMemo(create, deps); }; - exports.version = "19.1.0-experimental-3b009b4c-20250102"; + exports.version = "19.1.0-experimental-3ce77d55-20250106"; })(); diff --git a/packages/next/src/compiled/react-experimental/cjs/react.react-server.production.js b/packages/next/src/compiled/react-experimental/cjs/react.react-server.production.js index 9f72b6400b23b..a2f78d0d7d6ec 100644 --- a/packages/next/src/compiled/react-experimental/cjs/react.react-server.production.js +++ b/packages/next/src/compiled/react-experimental/cjs/react.react-server.production.js @@ -564,4 +564,4 @@ exports.useId = function () { exports.useMemo = function (create, deps) { return ReactSharedInternals.H.useMemo(create, deps); }; -exports.version = "19.1.0-experimental-3b009b4c-20250102"; +exports.version = "19.1.0-experimental-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react-is/package.json b/packages/next/src/compiled/react-is/package.json index abde321e6209c..960275f9d691d 100644 --- a/packages/next/src/compiled/react-is/package.json +++ b/packages/next/src/compiled/react-is/package.json @@ -1,6 +1,6 @@ { "name": "react-is", - "version": "19.1.0-canary-3b009b4c-20250102", + "version": "19.1.0-canary-3ce77d55-20250106", "description": "Brand checking of React Elements.", "main": "index.js", "sideEffects": false, diff --git a/packages/next/src/compiled/react-server-dom-turbopack-experimental/cjs/react-server-dom-turbopack-client.browser.development.js b/packages/next/src/compiled/react-server-dom-turbopack-experimental/cjs/react-server-dom-turbopack-client.browser.development.js index 4ba02f08626ac..c46cf6da364e4 100644 --- a/packages/next/src/compiled/react-server-dom-turbopack-experimental/cjs/react-server-dom-turbopack-client.browser.development.js +++ b/packages/next/src/compiled/react-server-dom-turbopack-experimental/cjs/react-server-dom-turbopack-client.browser.development.js @@ -2889,10 +2889,10 @@ return hook.checkDCE ? !0 : !1; })({ bundleType: 1, - version: "19.1.0-experimental-3b009b4c-20250102", + version: "19.1.0-experimental-3ce77d55-20250106", rendererPackageName: "react-server-dom-turbopack", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-experimental-3b009b4c-20250102", + reconcilerVersion: "19.1.0-experimental-3ce77d55-20250106", getCurrentComponentInfo: function () { return currentOwnerInDEV; } diff --git a/packages/next/src/compiled/react-server-dom-turbopack-experimental/package.json b/packages/next/src/compiled/react-server-dom-turbopack-experimental/package.json index 71472d6810955..601d5da7dee24 100644 --- a/packages/next/src/compiled/react-server-dom-turbopack-experimental/package.json +++ b/packages/next/src/compiled/react-server-dom-turbopack-experimental/package.json @@ -48,7 +48,7 @@ "neo-async": "^2.6.1" }, "peerDependencies": { - "react": "0.0.0-experimental-3b009b4c-20250102", - "react-dom": "0.0.0-experimental-3b009b4c-20250102" + "react": "0.0.0-experimental-3ce77d55-20250106", + "react-dom": "0.0.0-experimental-3ce77d55-20250106" } } \ No newline at end of file diff --git a/packages/next/src/compiled/react-server-dom-turbopack/cjs/react-server-dom-turbopack-client.browser.development.js b/packages/next/src/compiled/react-server-dom-turbopack/cjs/react-server-dom-turbopack-client.browser.development.js index 4861b61e9e124..064f9ede44f21 100644 --- a/packages/next/src/compiled/react-server-dom-turbopack/cjs/react-server-dom-turbopack-client.browser.development.js +++ b/packages/next/src/compiled/react-server-dom-turbopack/cjs/react-server-dom-turbopack-client.browser.development.js @@ -2460,10 +2460,10 @@ return hook.checkDCE ? !0 : !1; })({ bundleType: 1, - version: "19.1.0-canary-3b009b4c-20250102", + version: "19.1.0-canary-3ce77d55-20250106", rendererPackageName: "react-server-dom-turbopack", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-canary-3b009b4c-20250102", + reconcilerVersion: "19.1.0-canary-3ce77d55-20250106", getCurrentComponentInfo: function () { return currentOwnerInDEV; } diff --git a/packages/next/src/compiled/react-server-dom-turbopack/package.json b/packages/next/src/compiled/react-server-dom-turbopack/package.json index c8931ff2e1abc..0b89c6b2d9226 100644 --- a/packages/next/src/compiled/react-server-dom-turbopack/package.json +++ b/packages/next/src/compiled/react-server-dom-turbopack/package.json @@ -48,7 +48,7 @@ "neo-async": "^2.6.1" }, "peerDependencies": { - "react": "19.1.0-canary-3b009b4c-20250102", - "react-dom": "19.1.0-canary-3b009b4c-20250102" + "react": "19.1.0-canary-3ce77d55-20250106", + "react-dom": "19.1.0-canary-3ce77d55-20250106" } } \ No newline at end of file diff --git a/packages/next/src/compiled/react-server-dom-webpack-experimental/cjs/react-server-dom-webpack-client.browser.development.js b/packages/next/src/compiled/react-server-dom-webpack-experimental/cjs/react-server-dom-webpack-client.browser.development.js index 5224d6fda30a1..c5640284e4bec 100644 --- a/packages/next/src/compiled/react-server-dom-webpack-experimental/cjs/react-server-dom-webpack-client.browser.development.js +++ b/packages/next/src/compiled/react-server-dom-webpack-experimental/cjs/react-server-dom-webpack-client.browser.development.js @@ -2904,10 +2904,10 @@ return hook.checkDCE ? !0 : !1; })({ bundleType: 1, - version: "19.1.0-experimental-3b009b4c-20250102", + version: "19.1.0-experimental-3ce77d55-20250106", rendererPackageName: "react-server-dom-webpack", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-experimental-3b009b4c-20250102", + reconcilerVersion: "19.1.0-experimental-3ce77d55-20250106", getCurrentComponentInfo: function () { return currentOwnerInDEV; } diff --git a/packages/next/src/compiled/react-server-dom-webpack-experimental/package.json b/packages/next/src/compiled/react-server-dom-webpack-experimental/package.json index c09ac35bbfdb0..c4a86cdd55fde 100644 --- a/packages/next/src/compiled/react-server-dom-webpack-experimental/package.json +++ b/packages/next/src/compiled/react-server-dom-webpack-experimental/package.json @@ -64,8 +64,8 @@ "webpack-sources": "^3.2.0" }, "peerDependencies": { - "react": "0.0.0-experimental-3b009b4c-20250102", - "react-dom": "0.0.0-experimental-3b009b4c-20250102", + "react": "0.0.0-experimental-3ce77d55-20250106", + "react-dom": "0.0.0-experimental-3ce77d55-20250106", "webpack": "^5.59.0" } } \ No newline at end of file diff --git a/packages/next/src/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.development.js b/packages/next/src/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.development.js index 8fd9c608f6796..8a8dff82273c3 100644 --- a/packages/next/src/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.development.js +++ b/packages/next/src/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.development.js @@ -2475,10 +2475,10 @@ return hook.checkDCE ? !0 : !1; })({ bundleType: 1, - version: "19.1.0-canary-3b009b4c-20250102", + version: "19.1.0-canary-3ce77d55-20250106", rendererPackageName: "react-server-dom-webpack", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-canary-3b009b4c-20250102", + reconcilerVersion: "19.1.0-canary-3ce77d55-20250106", getCurrentComponentInfo: function () { return currentOwnerInDEV; } diff --git a/packages/next/src/compiled/react-server-dom-webpack/package.json b/packages/next/src/compiled/react-server-dom-webpack/package.json index 30032f08f6840..7ff94b22a8c2d 100644 --- a/packages/next/src/compiled/react-server-dom-webpack/package.json +++ b/packages/next/src/compiled/react-server-dom-webpack/package.json @@ -64,8 +64,8 @@ "webpack-sources": "^3.2.0" }, "peerDependencies": { - "react": "19.1.0-canary-3b009b4c-20250102", - "react-dom": "19.1.0-canary-3b009b4c-20250102", + "react": "19.1.0-canary-3ce77d55-20250106", + "react-dom": "19.1.0-canary-3ce77d55-20250106", "webpack": "^5.59.0" } } \ No newline at end of file diff --git a/packages/next/src/compiled/react/cjs/react.development.js b/packages/next/src/compiled/react/cjs/react.development.js index 38977de199084..2a974bdb55c2f 100644 --- a/packages/next/src/compiled/react/cjs/react.development.js +++ b/packages/next/src/compiled/react/cjs/react.development.js @@ -1518,7 +1518,7 @@ exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.1.0-canary-3b009b4c-20250102"; + exports.version = "19.1.0-canary-3ce77d55-20250106"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/packages/next/src/compiled/react/cjs/react.production.js b/packages/next/src/compiled/react/cjs/react.production.js index 8acb41f512846..43b8cdb77bea6 100644 --- a/packages/next/src/compiled/react/cjs/react.production.js +++ b/packages/next/src/compiled/react/cjs/react.production.js @@ -540,4 +540,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-canary-3b009b4c-20250102"; +exports.version = "19.1.0-canary-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/react/cjs/react.react-server.development.js b/packages/next/src/compiled/react/cjs/react.react-server.development.js index 9c507dd272d0b..e0fe914a3f9f1 100644 --- a/packages/next/src/compiled/react/cjs/react.react-server.development.js +++ b/packages/next/src/compiled/react/cjs/react.react-server.development.js @@ -1110,5 +1110,5 @@ exports.useMemo = function (create, deps) { return resolveDispatcher().useMemo(create, deps); }; - exports.version = "19.1.0-canary-3b009b4c-20250102"; + exports.version = "19.1.0-canary-3ce77d55-20250106"; })(); diff --git a/packages/next/src/compiled/react/cjs/react.react-server.production.js b/packages/next/src/compiled/react/cjs/react.react-server.production.js index 7f29898067c19..8d29b0590086d 100644 --- a/packages/next/src/compiled/react/cjs/react.react-server.production.js +++ b/packages/next/src/compiled/react/cjs/react.react-server.production.js @@ -423,4 +423,4 @@ exports.useId = function () { exports.useMemo = function (create, deps) { return ReactSharedInternals.H.useMemo(create, deps); }; -exports.version = "19.1.0-canary-3b009b4c-20250102"; +exports.version = "19.1.0-canary-3ce77d55-20250106"; diff --git a/packages/next/src/compiled/unistore/unistore.js b/packages/next/src/compiled/unistore/unistore.js index 2ae3da5287574..9c15594ac9bd9 100644 --- a/packages/next/src/compiled/unistore/unistore.js +++ b/packages/next/src/compiled/unistore/unistore.js @@ -1 +1 @@ -(()=>{var t={805:t=>{function n(t,i){for(var _ in i)t[_]=i[_];return t}t.exports=function(t){var i=[];function u(t){for(var _=[],a=0;a{var t={415:t=>{function n(t,i){for(var _ in i)t[_]=i[_];return t}t.exports=function(t){var i=[];function u(t){for(var _=[],a=0;a=14.0.0'} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106 '@storybook/instrumenter@8.4.7': resolution: {integrity: sha512-k6NSD3jaRCCHAFtqXZ7tw8jAzD/yTEWXGya+REgZqq5RCkmJ+9S4Ytp/6OhQMPtPFX23gAuJJzTQVLcCr+gjRg==} @@ -5082,8 +5082,8 @@ packages: resolution: {integrity: sha512-geTSBKyrBagVihil5MF7LkVFynbfHhCinvnbCZZqXW7M1vgcxvatunUENB+iV8eWg/0EJ+8O7scZL+BAxQ/2qg==} engines: {node: '>=18.0.0'} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106 storybook: ^8.4.7 typescript: '*' peerDependenciesMeta: @@ -5104,16 +5104,16 @@ packages: '@storybook/react-dom-shim@8.4.7': resolution: {integrity: sha512-6bkG2jvKTmWrmVzCgwpTxwIugd7Lu+2btsLAqhQSzDyIj2/uhMNp8xIMr/NBDtLgq3nomt9gefNa9xxLwk/OMg==} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106 storybook: ^8.4.7 '@storybook/react-webpack5@8.4.7': resolution: {integrity: sha512-T9GLqlsP4It4El7cC8rSkBPRWvORAsTDULeWlO36RST2TrYnmBOUytsi22mk7cAAAVhhD6rTrs1YdqWRMpfa1w==} engines: {node: '>=18.0.0'} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106 storybook: ^8.4.7 typescript: '>= 4.2.x' peerDependenciesMeta: @@ -5125,8 +5125,8 @@ packages: engines: {node: '>=18.0.0'} peerDependencies: '@storybook/test': 8.4.7 - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106 storybook: ^8.4.7 typescript: '>= 4.2.x' peerDependenciesMeta: @@ -5349,8 +5349,8 @@ packages: engines: {node: '>=18'} peerDependencies: '@types/react': 19.0.0 - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106 peerDependenciesMeta: '@types/react': optional: true @@ -11091,7 +11091,7 @@ packages: lucide-react@0.383.0: resolution: {integrity: sha512-13xlG0CQCJtzjSQYwwJ3WRqMHtRj3EXmLlorrARt7y+IHnxUCp3XyFNL1DfaGySWxHObDvnu1u1dV+0VMKHUSg==} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 lz-string@1.5.0: resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} @@ -13503,7 +13503,7 @@ packages: resolution: {integrity: sha512-7Ypx4vz0+g8ECVxr88W9zhcQpbeujJAVqL14ZnXJ3I23mOI9/oBVTQ3dkJhUmB0D6XOtCZEM6N0Gm9PMngkORw==} engines: {node: '>=10.18'} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 react-docgen-typescript@2.2.2: resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} @@ -13514,23 +13514,23 @@ packages: resolution: {integrity: sha512-APPU8HB2uZnpl6Vt/+0AFoVYgSRtfiP6FLrZgPPTDmqSb2R4qZRbgd0A3VzIFxDt5e+Fozjx79WjLWnF69DK8g==} engines: {node: '>=16.14.0'} - react-dom@0.0.0-experimental-3b009b4c-20250102: - resolution: {integrity: sha512-QdvWoPwyo5mdAJvCpwwjf+hkpjk5YJZP1hEF0CY1O7CRLoaLmqUU8fx5pNhbamqXip5u7M975Amt6Je010sCgA==} + react-dom@0.0.0-experimental-3ce77d55-20250106: + resolution: {integrity: sha512-EjnFpARwm2Fj6D1YdE4xi/KkE8jJ83f6XLCVCdrlFUpwVOqcgZH8Wj/HbE+Snr8T/JbrnE8znrqEuqtIjBrhNw==} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 - react-dom@19.1.0-canary-3b009b4c-20250102: - resolution: {integrity: sha512-khsr9iP6loj/jWjwnf0CRLExPnwRodhKvpCkRudshOO3RVmhg/pBLKXMl/HiuqiBypHgtBTqbQqz/JL3yedFfw==} + react-dom@19.1.0-canary-3ce77d55-20250106: + resolution: {integrity: sha512-5ESUqN2eFki8R2P6oJwfULh3Mpgzj/jAJLv2cZGUh7rVyvz3KABdFafxdgJWM/t7Kmw+tOZkIn4WMIj6qmq6jA==} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 react-dom@19.1.0-canary-518d06d2-20241219: resolution: {integrity: sha512-oixjdOc1WBtMEFcGNt4LntwKuua6upXROoRdaj8CWESdr7Sw2ZBDubiIVRHlJ+3NBE+DzXFycz6kj1W6z/t6sg==} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 - react-is@19.1.0-canary-3b009b4c-20250102: - resolution: {integrity: sha512-nQMmJiu+Q89TrHQg2wRLd8NFc4DAV/oyxeqI0ttn43gPjY3IuJ7BXHfwj6f3x1DobQmruErFxCd2NUFJQEIRAQ==} + react-is@19.1.0-canary-3ce77d55-20250106: + resolution: {integrity: sha512-hiUy8dKSDTwiUIzCdQY4EG2JLnJxqhDipk4ZKUxMZCcviceiWtP6hWfUhB2PgP20Tqx2IvXKQQqIwSEUhymu4g==} react-is@19.1.0-canary-518d06d2-20241219: resolution: {integrity: sha512-zjquJOa2EM9HV6eXZ+td1TVYglbi+PFyVs47Ez6OLVwTpsESLs5H2ZRZCSi/VdcGrrIls5GSyclhvJes92G19Q==} @@ -13541,8 +13541,8 @@ packages: react-number-format@5.4.0: resolution: {integrity: sha512-NWdICrqLhI7rAS8yUeLVd6Wr4cN7UjJ9IBTS0f/a9i7UB4x4Ti70kGnksBtZ7o4Z7YRbvCMMR/jQmkoOBa/4fg==} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106 react-refresh@0.12.0: resolution: {integrity: sha512-suLIhrU2IHKL5JEKR/fAwJv7bbeq4kJ+pJopf77jHwuR+HmJS/HbrPIGsTBUVfw7tXPOmYv7UJ7PCaN49e8x4A==} @@ -13553,7 +13553,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': 19.0.0 - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 peerDependenciesMeta: '@types/react': optional: true @@ -13563,58 +13563,58 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': 19.0.0 - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 peerDependenciesMeta: '@types/react': optional: true - react-server-dom-turbopack@0.0.0-experimental-3b009b4c-20250102: - resolution: {integrity: sha512-7C83mCKA1Z+DcDsUQm70N3/l28gJmG/LqJ3JTFShBAnazKWUYg7oAy8fuugxiechjgz6fC3+e+6siYVOrTk8CA==} + react-server-dom-turbopack@0.0.0-experimental-3ce77d55-20250106: + resolution: {integrity: sha512-fHjr4RUuojJ3hlp1Lw3eJJFYkaMvjtazVj80N0RCqo/f+2Hr3nK6rulwh44Fgz6JXDnwKMf3VBB4AWnTuZd8qA==} engines: {node: '>=0.10.0'} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106 - react-server-dom-turbopack@19.1.0-canary-3b009b4c-20250102: - resolution: {integrity: sha512-Ged8RIyGxFnXAW9FpokJH29IewRxL1iBuU+K/XzXWatvVe5gk/TzumYBIsh13usmafgbxZ6Z80dXN46isFwjZg==} + react-server-dom-turbopack@19.1.0-canary-3ce77d55-20250106: + resolution: {integrity: sha512-PUzbpPl57UV38WZ9cmAxYVpzJqI/SkVQjvLDlmTCEkSr+qCUQxYmKryL5FI6s6q5wycErL9RNM1hx3bFhTfqbg==} engines: {node: '>=0.10.0'} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106 - react-server-dom-webpack@0.0.0-experimental-3b009b4c-20250102: - resolution: {integrity: sha512-UChWoYaqgyxgbvANRJc2qfAekIq4RBGTdXy2fituYSuEjVasu2+iIEi+3Jl2SJnsgpfsYciZndV9rAewcQYHTg==} + react-server-dom-webpack@0.0.0-experimental-3ce77d55-20250106: + resolution: {integrity: sha512-pVDH4M1/HHHAz9IieAlyQqLq24w5HIr9yMDUivPhbnFUSX4mf56myhMYUICyf8RKfhzQH0E4UqM8jvjdZRmTSg==} engines: {node: '>=0.10.0'} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106 webpack: 5.96.1 - react-server-dom-webpack@19.1.0-canary-3b009b4c-20250102: - resolution: {integrity: sha512-LIgvU5Rt25EGKuYQ6OvIg+z3vpxmCnxUJIVmtv7dhn6d1lUa5aGDNXGRjJW+CmEnYcCXqan3KjkVXL5L6U9Zkg==} + react-server-dom-webpack@19.1.0-canary-3ce77d55-20250106: + resolution: {integrity: sha512-F4LFrCTNPOVkL/H+z0TA1nKkYt52rmOOjFVvh0WKOW0jfLSOfkL732cS+yfTX4qPjOYO8vuueBcfQqTBKAvfzQ==} engines: {node: '>=0.10.0'} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106 webpack: 5.96.1 react-shallow-renderer@16.15.0: resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 react-ssr-prepass@1.0.8: resolution: {integrity: sha512-O0gfRA1SaK+9ITKxqfnXsej2jF+OHGP/+GxD4unROQaM/0/UczGF9fuF+wTboxaQoKdIf4FvS3h/OigWh704VA==} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 - react-is: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-is: 19.1.0-canary-3ce77d55-20250106 react-style-singleton@2.2.1: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: '@types/react': 19.0.0 - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 peerDependenciesMeta: '@types/react': optional: true @@ -13622,26 +13622,26 @@ packages: react-test-renderer@18.2.0: resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 react-textarea-autosize@8.5.3: resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==} engines: {node: '>=10'} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 react-virtualized@9.22.3: resolution: {integrity: sha512-MKovKMxWTcwPSxE1kK1HcheQTWfuCxAuBoSTf2gwyMM21NdX/PXUhnoP8Uc5dRKd+nKm8v41R36OellhdCpkrw==} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106 - react@0.0.0-experimental-3b009b4c-20250102: - resolution: {integrity: sha512-BUx2N0x/wFcetV20EO8Xp6TXWgAfPu2GfogSsp1zddCosQe0mnPKdOd7KKF/V2N/ZZqpL/9uWiefQNPnWppoSQ==} + react@0.0.0-experimental-3ce77d55-20250106: + resolution: {integrity: sha512-VA+GwCaJ51EJ+OLO2SaWFII7C8d9pYoLAjHQpRWlCsh7LYDFQoO4S+fQZfSlhtAKK0i/+pnS7Iyq1lqoOvu+pA==} engines: {node: '>=0.10.0'} - react@19.1.0-canary-3b009b4c-20250102: - resolution: {integrity: sha512-g7eMePBCYJw9prZQd17dBKn7e8Ak84O9dE4iPiWqT2k9b6wBMkICToqyaRhTKd8D68DCYHWwoS/x3ixnRtKiqA==} + react@19.1.0-canary-3ce77d55-20250106: + resolution: {integrity: sha512-9FsZ8QZ77XbxywHnkD7R7Y2DVi31EtG6WsNpsvju3bP8682lRMD+6kZ3fyJ5ENRp1EF9jF1SdUAsEbpig/mhRQ==} engines: {node: '>=0.10.0'} react@19.1.0-canary-518d06d2-20241219: @@ -14181,11 +14181,11 @@ packages: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} engines: {node: '>=v12.22.7'} - scheduler@0.0.0-experimental-3b009b4c-20250102: - resolution: {integrity: sha512-eJcYgvq20m1mv/kBwi6GvOKcBqNy4hOItEiGCCjD63j/brAUi1XKhkfjIvWlNLQg/AW7RiJXkuUav5/1/jfNjQ==} + scheduler@0.0.0-experimental-3ce77d55-20250106: + resolution: {integrity: sha512-h3FtUYPu/TuA96Ycc0u7I281fwQ54dwE3pJYPugaUEzP8Sk5hE2DDYhEsasS/+6GH6aAJRm+1liMZh9y3nrtkQ==} - scheduler@0.26.0-canary-3b009b4c-20250102: - resolution: {integrity: sha512-yzP6NuQ/UuFC0y0aMyW6Q3Nae5GAWBJE3glqT9+l9sQAWSCCxpB+/wDKLQZ4oPGn9AuYdlSgzbH8PgE/d0mdIw==} + scheduler@0.26.0-canary-3ce77d55-20250106: + resolution: {integrity: sha512-qNVU9r3AB8BCvaGYEbRCbjJVDeTkukuYdHHtRkpXMVT/QYhZgunPgQlc/FMAI8u2fB2M7Vf4LMZfpbSaoNtkGA==} schema-utils@2.7.1: resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} @@ -14757,8 +14757,8 @@ packages: engines: {node: '>= 16'} peerDependencies: babel-plugin-styled-components: '>= 2' - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106 peerDependenciesMeta: babel-plugin-styled-components: optional: true @@ -14772,7 +14772,7 @@ packages: peerDependencies: '@babel/core': '*' babel-plugin-macros: '*' - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 peerDependenciesMeta: '@babel/core': optional: true @@ -14856,7 +14856,7 @@ packages: swr@2.2.4: resolution: {integrity: sha512-njiZ/4RiIhoOlAaLYDqwz5qH/KZXVilRLvomrx83HjzCWTfa+InyfAjv05PSFxnmLzZkNO9ZfvgoqzAaEI4sGQ==} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 symbol-observable@1.0.1: resolution: {integrity: sha512-Kb3PrPYz4HanVF1LVGuAdW6LoVgIwjUYJGzFe7NDrBLCN4lsV/5J0MFurV+ygS4bRVwrCEt2c7MQ1R2a72oJDw==} @@ -15622,7 +15622,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': 19.0.0 - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 peerDependenciesMeta: '@types/react': optional: true @@ -15630,13 +15630,13 @@ packages: use-composed-ref@1.3.0: resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 use-isomorphic-layout-effect@1.1.2: resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: '@types/react': '*' - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 peerDependenciesMeta: '@types/react': optional: true @@ -15645,7 +15645,7 @@ packages: resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} peerDependencies: '@types/react': '*' - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 peerDependenciesMeta: '@types/react': optional: true @@ -15655,7 +15655,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': 19.0.0 - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 peerDependenciesMeta: '@types/react': optional: true @@ -15663,7 +15663,7 @@ packages: use-sync-external-store@1.2.0: resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} peerDependencies: - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} @@ -18216,12 +18216,12 @@ snapshots: '@capsizecss/metrics@3.4.0': {} - '@chromatic-com/storybook@3.2.2(react@19.1.0-canary-3b009b4c-20250102)(storybook@8.4.7(prettier@3.3.3))': + '@chromatic-com/storybook@3.2.2(react@19.1.0-canary-3ce77d55-20250106)(storybook@8.4.7(prettier@3.3.3))': dependencies: chromatic: 11.20.2 filesize: 10.1.6 jsonfile: 6.1.0 - react-confetti: 6.1.0(react@19.1.0-canary-3b009b4c-20250102) + react-confetti: 6.1.0(react@19.1.0-canary-3ce77d55-20250106) storybook: 8.4.7(prettier@3.3.3) strip-ansi: 7.1.0 transitivePeerDependencies: @@ -18369,17 +18369,17 @@ snapshots: '@emotion/memoize@0.8.1': {} - '@emotion/react@11.11.1(@types/react@19.0.0)(react@19.1.0-canary-3b009b4c-20250102)': + '@emotion/react@11.11.1(@types/react@19.0.0)(react@19.1.0-canary-3ce77d55-20250106)': dependencies: '@babel/runtime': 7.22.5 '@emotion/babel-plugin': 11.11.0 '@emotion/cache': 11.11.0 '@emotion/serialize': 1.1.2 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@19.1.0-canary-3b009b4c-20250102) + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@19.1.0-canary-3ce77d55-20250106) '@emotion/utils': 1.2.1 '@emotion/weak-memoize': 0.3.1 hoist-non-react-statics: 3.3.2 - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 optionalDependencies: '@types/react': 19.0.0 transitivePeerDependencies: @@ -18397,9 +18397,9 @@ snapshots: '@emotion/unitless@0.8.1': {} - '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@19.1.0-canary-3b009b4c-20250102)': + '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@19.1.0-canary-3ce77d55-20250106)': dependencies: - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 '@emotion/utils@1.2.1': {} @@ -19841,11 +19841,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@mdx-js/react@2.2.1(react@19.1.0-canary-3b009b4c-20250102)': + '@mdx-js/react@2.2.1(react@19.1.0-canary-3ce77d55-20250106)': dependencies: '@types/mdx': 2.0.3 '@types/react': 19.0.0 - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 '@mdx-js/react@2.2.1(react@19.1.0-canary-518d06d2-20241219)': dependencies: @@ -19853,11 +19853,11 @@ snapshots: '@types/react': 19.0.0 react: 19.1.0-canary-518d06d2-20241219 - '@mdx-js/react@3.1.0(@types/react@19.0.0)(react@19.1.0-canary-3b009b4c-20250102)': + '@mdx-js/react@3.1.0(@types/react@19.0.0)(react@19.1.0-canary-3ce77d55-20250106)': dependencies: '@types/mdx': 2.0.3 '@types/react': 19.0.0 - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 '@mswjs/cookies@1.1.0': {} @@ -20427,12 +20427,12 @@ snapshots: '@storybook/addon-docs@8.4.7(@types/react@19.0.0)(storybook@8.4.7(prettier@3.3.3))': dependencies: - '@mdx-js/react': 3.1.0(@types/react@19.0.0)(react@19.1.0-canary-3b009b4c-20250102) - '@storybook/blocks': 8.4.7(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102)(storybook@8.4.7(prettier@3.3.3)) + '@mdx-js/react': 3.1.0(@types/react@19.0.0)(react@19.1.0-canary-3ce77d55-20250106) + '@storybook/blocks': 8.4.7(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106)(storybook@8.4.7(prettier@3.3.3)) '@storybook/csf-plugin': 8.4.7(storybook@8.4.7(prettier@3.3.3)) - '@storybook/react-dom-shim': 8.4.7(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102)(storybook@8.4.7(prettier@3.3.3)) - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102) + '@storybook/react-dom-shim': 8.4.7(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106)(storybook@8.4.7(prettier@3.3.3)) + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106) storybook: 8.4.7(prettier@3.3.3) ts-dedent: 2.2.0 transitivePeerDependencies: @@ -20474,9 +20474,9 @@ snapshots: storybook: 8.4.7(prettier@3.3.3) tiny-invariant: 1.3.3 - '@storybook/addon-onboarding@8.4.7(react@19.1.0-canary-3b009b4c-20250102)(storybook@8.4.7(prettier@3.3.3))': + '@storybook/addon-onboarding@8.4.7(react@19.1.0-canary-3ce77d55-20250106)(storybook@8.4.7(prettier@3.3.3))': dependencies: - react-confetti: 6.1.0(react@19.1.0-canary-3b009b4c-20250102) + react-confetti: 6.1.0(react@19.1.0-canary-3ce77d55-20250106) storybook: 8.4.7(prettier@3.3.3) transitivePeerDependencies: - react @@ -20504,15 +20504,15 @@ snapshots: - '@swc/helpers' - webpack - '@storybook/blocks@8.4.7(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102)(storybook@8.4.7(prettier@3.3.3))': + '@storybook/blocks@8.4.7(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106)(storybook@8.4.7(prettier@3.3.3))': dependencies: '@storybook/csf': 0.1.12 - '@storybook/icons': 1.3.0(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102) + '@storybook/icons': 1.3.0(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106) storybook: 8.4.7(prettier@3.3.3) ts-dedent: 2.2.0 optionalDependencies: - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102) + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106) '@storybook/builder-webpack5@8.4.7(@swc/core@1.9.3(@swc/helpers@0.5.15))(esbuild@0.23.1)(storybook@8.4.7(prettier@3.3.3))(typescript@5.7.2)': dependencies: @@ -20592,10 +20592,10 @@ snapshots: '@storybook/global@5.0.0': {} - '@storybook/icons@1.3.0(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102)': + '@storybook/icons@1.3.0(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106)': dependencies: - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102) + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106) '@storybook/instrumenter@8.4.7(storybook@8.4.7(prettier@3.3.3))': dependencies: @@ -20607,18 +20607,18 @@ snapshots: dependencies: storybook: 8.4.7(prettier@3.3.3) - '@storybook/preset-react-webpack@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(@swc/core@1.9.3(@swc/helpers@0.5.15))(esbuild@0.23.1)(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102)(storybook@8.4.7(prettier@3.3.3))(typescript@5.7.2)': + '@storybook/preset-react-webpack@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(@swc/core@1.9.3(@swc/helpers@0.5.15))(esbuild@0.23.1)(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106)(storybook@8.4.7(prettier@3.3.3))(typescript@5.7.2)': dependencies: '@storybook/core-webpack': 8.4.7(storybook@8.4.7(prettier@3.3.3)) - '@storybook/react': 8.4.7(patch_hash=3vtnbaj5dhujyrhznezprlo624)(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102)(storybook@8.4.7(prettier@3.3.3))(typescript@5.7.2) + '@storybook/react': 8.4.7(patch_hash=3vtnbaj5dhujyrhznezprlo624)(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106)(storybook@8.4.7(prettier@3.3.3))(typescript@5.7.2) '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.7.2)(webpack@5.96.1(@swc/core@1.9.3(@swc/helpers@0.5.15))(esbuild@0.23.1)) '@types/node': 20.17.6 '@types/semver': 7.5.6 find-up: 5.0.0 magic-string: 0.30.17 - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 react-docgen: 7.1.0 - react-dom: 19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102) + react-dom: 19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106) resolve: 1.22.8 semver: 7.6.3 storybook: 8.4.7(prettier@3.3.3) @@ -20652,20 +20652,20 @@ snapshots: transitivePeerDependencies: - supports-color - '@storybook/react-dom-shim@8.4.7(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102)(storybook@8.4.7(prettier@3.3.3))': + '@storybook/react-dom-shim@8.4.7(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106)(storybook@8.4.7(prettier@3.3.3))': dependencies: - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102) + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106) storybook: 8.4.7(prettier@3.3.3) - '@storybook/react-webpack5@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(@swc/core@1.9.3(@swc/helpers@0.5.15))(esbuild@0.23.1)(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102)(storybook@8.4.7(prettier@3.3.3))(typescript@5.7.2)': + '@storybook/react-webpack5@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(@swc/core@1.9.3(@swc/helpers@0.5.15))(esbuild@0.23.1)(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106)(storybook@8.4.7(prettier@3.3.3))(typescript@5.7.2)': dependencies: '@storybook/builder-webpack5': 8.4.7(@swc/core@1.9.3(@swc/helpers@0.5.15))(esbuild@0.23.1)(storybook@8.4.7(prettier@3.3.3))(typescript@5.7.2) - '@storybook/preset-react-webpack': 8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(@swc/core@1.9.3(@swc/helpers@0.5.15))(esbuild@0.23.1)(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102)(storybook@8.4.7(prettier@3.3.3))(typescript@5.7.2) - '@storybook/react': 8.4.7(patch_hash=3vtnbaj5dhujyrhznezprlo624)(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102)(storybook@8.4.7(prettier@3.3.3))(typescript@5.7.2) + '@storybook/preset-react-webpack': 8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(@swc/core@1.9.3(@swc/helpers@0.5.15))(esbuild@0.23.1)(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106)(storybook@8.4.7(prettier@3.3.3))(typescript@5.7.2) + '@storybook/react': 8.4.7(patch_hash=3vtnbaj5dhujyrhznezprlo624)(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106)(storybook@8.4.7(prettier@3.3.3))(typescript@5.7.2) '@types/node': 20.17.6 - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102) + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106) storybook: 8.4.7(prettier@3.3.3) optionalDependencies: typescript: 5.7.2 @@ -20678,16 +20678,16 @@ snapshots: - uglify-js - webpack-cli - '@storybook/react@8.4.7(patch_hash=3vtnbaj5dhujyrhznezprlo624)(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102)(storybook@8.4.7(prettier@3.3.3))(typescript@5.7.2)': + '@storybook/react@8.4.7(patch_hash=3vtnbaj5dhujyrhznezprlo624)(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106)(storybook@8.4.7(prettier@3.3.3))(typescript@5.7.2)': dependencies: '@storybook/components': 8.4.7(storybook@8.4.7(prettier@3.3.3)) '@storybook/global': 5.0.0 '@storybook/manager-api': 8.4.7(storybook@8.4.7(prettier@3.3.3)) '@storybook/preview-api': 8.4.7(storybook@8.4.7(prettier@3.3.3)) - '@storybook/react-dom-shim': 8.4.7(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102)(storybook@8.4.7(prettier@3.3.3)) + '@storybook/react-dom-shim': 8.4.7(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106)(storybook@8.4.7(prettier@3.3.3)) '@storybook/theming': 8.4.7(storybook@8.4.7(prettier@3.3.3)) - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102) + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106) storybook: 8.4.7(prettier@3.3.3) optionalDependencies: '@storybook/test': 8.4.7(storybook@8.4.7(prettier@3.3.3)) @@ -20923,13 +20923,13 @@ snapshots: lodash: 4.17.21 redent: 3.0.0 - '@testing-library/react@15.0.7(@types/react@19.0.0)(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102)': + '@testing-library/react@15.0.7(@types/react@19.0.0)(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106)': dependencies: '@babel/runtime': 7.22.5 '@testing-library/dom': 10.1.0 '@types/react-dom': 19.0.0 - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102) + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106) optionalDependencies: '@types/react': 19.0.0 @@ -26285,7 +26285,7 @@ snapshots: hoist-non-react-statics@3.3.2: dependencies: - react-is: 19.1.0-canary-3b009b4c-20250102 + react-is: 19.1.0-canary-3ce77d55-20250106 homedir-polyfill@1.0.3: dependencies: @@ -30941,31 +30941,31 @@ snapshots: '@jest/types': 24.9.0 ansi-regex: 4.1.0 ansi-styles: 3.2.1 - react-is: 19.1.0-canary-3b009b4c-20250102 + react-is: 19.1.0-canary-3ce77d55-20250106 pretty-format@27.5.1: dependencies: ansi-regex: 5.0.1 ansi-styles: 5.2.0 - react-is: 19.1.0-canary-3b009b4c-20250102 + react-is: 19.1.0-canary-3ce77d55-20250106 pretty-format@29.5.0: dependencies: '@jest/schemas': 29.4.3 ansi-styles: 5.2.0 - react-is: 19.1.0-canary-3b009b4c-20250102 + react-is: 19.1.0-canary-3ce77d55-20250106 pretty-format@29.7.0: dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 - react-is: 19.1.0-canary-3b009b4c-20250102 + react-is: 19.1.0-canary-3ce77d55-20250106 pretty-format@30.0.0-alpha.6: dependencies: '@jest/schemas': 30.0.0-alpha.6 ansi-styles: 5.2.0 - react-is: 19.1.0-canary-3b009b4c-20250102 + react-is: 19.1.0-canary-3ce77d55-20250106 pretty-ms@7.0.0: dependencies: @@ -31024,7 +31024,7 @@ snapshots: dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 - react-is: 19.1.0-canary-3b009b4c-20250102 + react-is: 19.1.0-canary-3ce77d55-20250106 property-information@5.6.0: dependencies: @@ -31194,9 +31194,9 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - react-confetti@6.1.0(react@19.1.0-canary-3b009b4c-20250102): + react-confetti@6.1.0(react@19.1.0-canary-3ce77d55-20250106): dependencies: - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 tween-functions: 1.2.0 react-docgen-typescript@2.2.2(typescript@5.7.2): @@ -31218,22 +31218,22 @@ snapshots: transitivePeerDependencies: - supports-color - react-dom@0.0.0-experimental-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102): + react-dom@0.0.0-experimental-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106): dependencies: - react: 19.1.0-canary-3b009b4c-20250102 - scheduler: 0.26.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + scheduler: 0.26.0-canary-3ce77d55-20250106 - react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102): + react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106): dependencies: - react: 19.1.0-canary-3b009b4c-20250102 - scheduler: 0.26.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + scheduler: 0.26.0-canary-3ce77d55-20250106 react-dom@19.1.0-canary-518d06d2-20241219(react@19.1.0-canary-518d06d2-20241219): dependencies: react: 19.1.0-canary-518d06d2-20241219 - scheduler: 0.26.0-canary-3b009b4c-20250102 + scheduler: 0.26.0-canary-3ce77d55-20250106 - react-is@19.1.0-canary-3b009b4c-20250102: {} + react-is@19.1.0-canary-3ce77d55-20250106: {} react-is@19.1.0-canary-518d06d2-20241219: {} @@ -31266,48 +31266,48 @@ snapshots: optionalDependencies: '@types/react': 19.0.0 - react-server-dom-turbopack@0.0.0-experimental-3b009b4c-20250102(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102): + react-server-dom-turbopack@0.0.0-experimental-3ce77d55-20250106(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106): dependencies: acorn-loose: 8.3.0 neo-async: 2.6.1 - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102) + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106) - react-server-dom-turbopack@19.1.0-canary-3b009b4c-20250102(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102): + react-server-dom-turbopack@19.1.0-canary-3ce77d55-20250106(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106): dependencies: acorn-loose: 8.3.0 neo-async: 2.6.1 - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102) + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106) - react-server-dom-webpack@0.0.0-experimental-3b009b4c-20250102(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102)(webpack@5.96.1(@swc/core@1.9.3(@swc/helpers@0.5.15))): + react-server-dom-webpack@0.0.0-experimental-3ce77d55-20250106(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106)(webpack@5.96.1(@swc/core@1.9.3(@swc/helpers@0.5.15))): dependencies: acorn-loose: 8.3.0 neo-async: 2.6.1 - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102) + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106) webpack: 5.96.1(@swc/core@1.9.3(@swc/helpers@0.5.15)) webpack-sources: 3.2.3(patch_hash=jbynf5dc46ambamq3wuyho6hkq) - react-server-dom-webpack@19.1.0-canary-3b009b4c-20250102(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102)(webpack@5.96.1(@swc/core@1.9.3(@swc/helpers@0.5.15))): + react-server-dom-webpack@19.1.0-canary-3ce77d55-20250106(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106)(webpack@5.96.1(@swc/core@1.9.3(@swc/helpers@0.5.15))): dependencies: acorn-loose: 8.3.0 neo-async: 2.6.1 - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102) + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106) webpack: 5.96.1(@swc/core@1.9.3(@swc/helpers@0.5.15)) webpack-sources: 3.2.3(patch_hash=jbynf5dc46ambamq3wuyho6hkq) - react-shallow-renderer@16.15.0(react@19.1.0-canary-3b009b4c-20250102): + react-shallow-renderer@16.15.0(react@19.1.0-canary-3ce77d55-20250106): dependencies: object-assign: 4.1.1 - react: 19.1.0-canary-3b009b4c-20250102 - react-is: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-is: 19.1.0-canary-3ce77d55-20250106 - react-ssr-prepass@1.0.8(react-is@19.1.0-canary-518d06d2-20241219)(react@19.1.0-canary-3b009b4c-20250102): + react-ssr-prepass@1.0.8(react-is@19.1.0-canary-518d06d2-20241219)(react@19.1.0-canary-3ce77d55-20250106): dependencies: object-is: 1.0.2 - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 react-is: 19.1.0-canary-518d06d2-20241219 react-style-singleton@2.2.1(@types/react@19.0.0)(react@19.1.0-canary-518d06d2-20241219): @@ -31319,12 +31319,12 @@ snapshots: optionalDependencies: '@types/react': 19.0.0 - react-test-renderer@18.2.0(react@19.1.0-canary-3b009b4c-20250102): + react-test-renderer@18.2.0(react@19.1.0-canary-3ce77d55-20250106): dependencies: - react: 19.1.0-canary-3b009b4c-20250102 - react-is: 19.1.0-canary-3b009b4c-20250102 - react-shallow-renderer: 16.15.0(react@19.1.0-canary-3b009b4c-20250102) - scheduler: 0.26.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 + react-is: 19.1.0-canary-3ce77d55-20250106 + react-shallow-renderer: 16.15.0(react@19.1.0-canary-3ce77d55-20250106) + scheduler: 0.26.0-canary-3ce77d55-20250106 react-textarea-autosize@8.5.3(@types/react@19.0.0)(react@19.1.0-canary-518d06d2-20241219): dependencies: @@ -31335,20 +31335,20 @@ snapshots: transitivePeerDependencies: - '@types/react' - react-virtualized@9.22.3(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102): + react-virtualized@9.22.3(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106): dependencies: '@babel/runtime': 7.22.5 clsx: 1.1.1 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102) + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106) react-lifecycles-compat: 3.0.4 - react@0.0.0-experimental-3b009b4c-20250102: {} + react@0.0.0-experimental-3ce77d55-20250106: {} - react@19.1.0-canary-3b009b4c-20250102: {} + react@19.1.0-canary-3ce77d55-20250106: {} react@19.1.0-canary-518d06d2-20241219: {} @@ -32088,9 +32088,9 @@ snapshots: dependencies: xmlchars: 2.2.0 - scheduler@0.0.0-experimental-3b009b4c-20250102: {} + scheduler@0.0.0-experimental-3ce77d55-20250106: {} - scheduler@0.26.0-canary-3b009b4c-20250102: {} + scheduler@0.26.0-canary-3ce77d55-20250106: {} schema-utils@2.7.1: dependencies: @@ -32728,7 +32728,7 @@ snapshots: dependencies: inline-style-parser: 0.1.1 - styled-components@6.0.0-rc.3(react-dom@19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102))(react@19.1.0-canary-3b009b4c-20250102): + styled-components@6.0.0-rc.3(react-dom@19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106))(react@19.1.0-canary-3ce77d55-20250106): dependencies: '@babel/cli': 7.21.5(@babel/core@7.22.5) '@babel/core': 7.22.5 @@ -32743,8 +32743,8 @@ snapshots: '@emotion/unitless': 0.8.1 css-to-react-native: 3.2.0 postcss: 8.4.31 - react: 19.1.0-canary-3b009b4c-20250102 - react-dom: 19.1.0-canary-3b009b4c-20250102(react@19.1.0-canary-3b009b4c-20250102) + react: 19.1.0-canary-3ce77d55-20250106 + react-dom: 19.1.0-canary-3ce77d55-20250106(react@19.1.0-canary-3ce77d55-20250106) shallowequal: 1.1.0 stylis: 4.2.0 tslib: 2.5.3 @@ -32756,10 +32756,10 @@ snapshots: postcss: 7.0.32 postcss-load-plugins: 2.3.0 - styled-jsx@5.1.6(@babel/core@7.22.5)(babel-plugin-macros@3.1.0)(react@19.1.0-canary-3b009b4c-20250102): + styled-jsx@5.1.6(@babel/core@7.22.5)(babel-plugin-macros@3.1.0)(react@19.1.0-canary-3ce77d55-20250106): dependencies: client-only: 0.0.1 - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 optionalDependencies: '@babel/core': 7.22.5 babel-plugin-macros: 3.1.0 @@ -32855,11 +32855,11 @@ snapshots: '@swc/counter': 0.1.3 webpack: 5.96.1(@swc/core@1.9.3(@swc/helpers@0.5.15))(esbuild@0.23.1) - swr@2.2.4(react@19.1.0-canary-3b009b4c-20250102): + swr@2.2.4(react@19.1.0-canary-3ce77d55-20250106): dependencies: client-only: 0.0.1 - react: 19.1.0-canary-3b009b4c-20250102 - use-sync-external-store: 1.2.0(react@19.1.0-canary-3b009b4c-20250102) + react: 19.1.0-canary-3ce77d55-20250106 + use-sync-external-store: 1.2.0(react@19.1.0-canary-3ce77d55-20250106) symbol-observable@1.0.1: {} @@ -33631,9 +33631,9 @@ snapshots: unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 - unistore@3.4.1(react@19.1.0-canary-3b009b4c-20250102): + unistore@3.4.1(react@19.1.0-canary-3ce77d55-20250106): optionalDependencies: - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 universal-github-app-jwt@1.1.1: dependencies: @@ -33759,9 +33759,9 @@ snapshots: optionalDependencies: '@types/react': 19.0.0 - use-sync-external-store@1.2.0(react@19.1.0-canary-3b009b4c-20250102): + use-sync-external-store@1.2.0(react@19.1.0-canary-3ce77d55-20250106): dependencies: - react: 19.1.0-canary-3b009b4c-20250102 + react: 19.1.0-canary-3ce77d55-20250106 util-deprecate@1.0.2: {}