Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
"eslint-plugin-jsdoc": "48.0.4",
"eslint-plugin-mdx": "3.1.5",
"eslint-plugin-react": "7.37.0",
"eslint-plugin-react-hooks": "0.0.0-experimental-0972e239-20251118",
"eslint-plugin-react-hooks": "0.0.0-experimental-eb89912e-20251118",
"event-stream": "4.0.1",
"execa": "2.0.3",
"expect": "29.7.0",
Expand Down Expand Up @@ -257,16 +257,16 @@
"pretty-ms": "7.0.0",
"random-seed": "0.3.0",
"react": "19.0.0",
"react-builtin": "npm:[email protected]0972e239-20251118",
"react-builtin": "npm:[email protected]eb89912e-20251118",
"react-dom": "19.0.0",
"react-dom-builtin": "npm:[email protected]0972e239-20251118",
"react-dom-experimental-builtin": "npm:[email protected]0972e239-20251118",
"react-experimental-builtin": "npm:[email protected]0972e239-20251118",
"react-is-builtin": "npm:[email protected]0972e239-20251118",
"react-server-dom-turbopack": "19.3.0-canary-0972e239-20251118",
"react-server-dom-turbopack-experimental": "npm:[email protected]0972e239-20251118",
"react-server-dom-webpack": "19.3.0-canary-0972e239-20251118",
"react-server-dom-webpack-experimental": "npm:[email protected]0972e239-20251118",
"react-dom-builtin": "npm:[email protected]eb89912e-20251118",
"react-dom-experimental-builtin": "npm:[email protected]eb89912e-20251118",
"react-experimental-builtin": "npm:[email protected]eb89912e-20251118",
"react-is-builtin": "npm:[email protected]eb89912e-20251118",
"react-server-dom-turbopack": "19.3.0-canary-eb89912e-20251118",
"react-server-dom-turbopack-experimental": "npm:[email protected]eb89912e-20251118",
"react-server-dom-webpack": "19.3.0-canary-eb89912e-20251118",
"react-server-dom-webpack-experimental": "npm:[email protected]eb89912e-20251118",
"react-ssr-prepass": "1.0.8",
"react-virtualized": "9.22.3",
"relay-compiler": "13.0.2",
Expand All @@ -276,8 +276,8 @@
"resolve-from": "5.0.0",
"sass": "1.54.0",
"satori": "0.15.2",
"scheduler-builtin": "npm:[email protected]0972e239-20251118",
"scheduler-experimental-builtin": "npm:[email protected]0972e239-20251118",
"scheduler-builtin": "npm:[email protected]eb89912e-20251118",
"scheduler-experimental-builtin": "npm:[email protected]eb89912e-20251118",
"seedrandom": "3.0.5",
"semver": "7.3.7",
"serve-handler": "6.1.6",
Expand Down Expand Up @@ -322,10 +322,10 @@
"@types/react-dom": "19.2.1",
"@types/retry": "0.12.0",
"jest-snapshot": "30.0.0-alpha.6",
"react": "19.3.0-canary-0972e239-20251118",
"react-dom": "19.3.0-canary-0972e239-20251118",
"react-is": "19.3.0-canary-0972e239-20251118",
"scheduler": "0.28.0-canary-0972e239-20251118"
"react": "19.3.0-canary-eb89912e-20251118",
"react-dom": "19.3.0-canary-eb89912e-20251118",
"react-is": "19.3.0-canary-eb89912e-20251118",
"scheduler": "0.28.0-canary-eb89912e-20251118"
},
"packageExtensions": {
"[email protected]": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5093,6 +5093,7 @@
(workInProgress.flags = 0),
(workInProgress.subtreeFlags = 0),
(workInProgress.deletions = null),
(workInProgress.key = current.key),
(workInProgress.actualDuration = -0),
(workInProgress.actualStartTime = -1.1));
workInProgress.flags = current.flags & 132120576;
Expand Down Expand Up @@ -5156,6 +5157,7 @@
(workInProgress.memoizedState = current.memoizedState),
(workInProgress.updateQueue = current.updateQueue),
(workInProgress.type = current.type),
(workInProgress.key = current.key),
(renderLanes = current.dependencies),
(workInProgress.dependencies =
null === renderLanes
Expand Down Expand Up @@ -6599,9 +6601,14 @@
}
function mapRemainingChildren(currentFirstChild) {
for (var existingChildren = new Map(); null !== currentFirstChild; )
null !== currentFirstChild.key
? existingChildren.set(currentFirstChild.key, currentFirstChild)
: existingChildren.set(currentFirstChild.index, currentFirstChild),
null === currentFirstChild.key
? existingChildren.set(currentFirstChild.index, currentFirstChild)
: currentFirstChild.key === REACT_OPTIMISTIC_KEY
? existingChildren.set(
-currentFirstChild.index - 1,
currentFirstChild
)
: existingChildren.set(currentFirstChild.key, currentFirstChild),
(currentFirstChild = currentFirstChild.sibling);
return existingChildren;
}
Expand Down Expand Up @@ -6697,32 +6704,34 @@
current.stateNode.implementation !== portal.implementation
)
return (
(current = createFiberFromPortal(portal, returnFiber.mode, lanes)),
(current.return = returnFiber),
(current._debugInfo = currentDebugInfo),
current
(portal = createFiberFromPortal(portal, returnFiber.mode, lanes)),
(portal.return = returnFiber),
(portal._debugInfo = currentDebugInfo),
portal
);
current = useFiber(current, portal.children || []);
current.key = portal.key;
current.return = returnFiber;
current._debugInfo = currentDebugInfo;
return current;
}
function updateFragment(returnFiber, current, fragment, lanes, key) {
if (null === current || 7 !== current.tag)
return (
(current = createFiberFromFragment(
(key = createFiberFromFragment(
fragment,
returnFiber.mode,
lanes,
key
)),
(current.return = returnFiber),
(current._debugOwner = returnFiber),
(current._debugTask = returnFiber._debugTask),
(current._debugInfo = currentDebugInfo),
current
(key.return = returnFiber),
(key._debugOwner = returnFiber),
(key._debugTask = returnFiber._debugTask),
(key._debugInfo = currentDebugInfo),
key
);
current = useFiber(current, fragment);
current.key = key;
current.return = returnFiber;
current._debugInfo = currentDebugInfo;
return current;
Expand Down Expand Up @@ -6931,7 +6940,9 @@
(newIdx =
existingChildren.get(
null === newChild.key ? newIdx : newChild.key
) || null),
) ||
existingChildren.get(-newIdx - 1) ||
null),
(existingChildren = pushDebugInfo(newChild._debugInfo)),
(returnFiber = updateElement(
returnFiber,
Expand All @@ -6947,7 +6958,9 @@
(existingChildren =
existingChildren.get(
null === newChild.key ? newIdx : newChild.key
) || null),
) ||
existingChildren.get(-newIdx - 1) ||
null),
updatePortal(returnFiber, existingChildren, newChild, lanes)
);
case REACT_LAZY_TYPE:
Expand Down Expand Up @@ -7133,10 +7146,13 @@
knownKeys
)),
shouldTrackSideEffects &&
null !== nextOldFiber.alternate &&
oldFiber.delete(
null === nextOldFiber.key ? newIdx : nextOldFiber.key
),
((newFiber = nextOldFiber.alternate),
null !== newFiber &&
(newFiber.key === REACT_OPTIMISTIC_KEY
? oldFiber.delete(-newIdx - 1)
: oldFiber.delete(
null === newFiber.key ? newIdx : newFiber.key
))),
(currentFirstChild = placeChild(
nextOldFiber,
currentFirstChild,
Expand Down Expand Up @@ -7276,10 +7292,11 @@
knownKeys
)),
shouldTrackSideEffects &&
null !== nextOldFiber.alternate &&
oldFiber.delete(
null === nextOldFiber.key ? newIdx : nextOldFiber.key
),
((step = nextOldFiber.alternate),
null !== step &&
(step.key === REACT_OPTIMISTIC_KEY
? oldFiber.delete(-newIdx - 1)
: oldFiber.delete(null === step.key ? newIdx : step.key))),
(currentFirstChild = placeChild(
nextOldFiber,
currentFirstChild,
Expand Down Expand Up @@ -7315,9 +7332,12 @@
var prevDebugInfo = pushDebugInfo(newChild._debugInfo);
a: {
for (var key = newChild.key; null !== currentFirstChild; ) {
if (currentFirstChild.key === key) {
key = newChild.type;
if (key === REACT_FRAGMENT_TYPE) {
if (
currentFirstChild.key === key ||
currentFirstChild.key === REACT_OPTIMISTIC_KEY
) {
var elementType = newChild.type;
if (elementType === REACT_FRAGMENT_TYPE) {
if (7 === currentFirstChild.tag) {
deleteRemainingChildren(
returnFiber,
Expand All @@ -7327,6 +7347,7 @@
currentFirstChild,
newChild.props.children
);
lanes.key = key;
coerceRef(lanes, newChild);
lanes.return = returnFiber;
lanes._debugOwner = newChild._owner;
Expand All @@ -7336,21 +7357,22 @@
break a;
}
} else if (
currentFirstChild.elementType === key ||
currentFirstChild.elementType === elementType ||
isCompatibleFamilyForHotReloading(
currentFirstChild,
newChild
) ||
("object" === typeof key &&
null !== key &&
key.$$typeof === REACT_LAZY_TYPE &&
resolveLazy(key) === currentFirstChild.type)
("object" === typeof elementType &&
null !== elementType &&
elementType.$$typeof === REACT_LAZY_TYPE &&
resolveLazy(elementType) === currentFirstChild.type)
) {
deleteRemainingChildren(
returnFiber,
currentFirstChild.sibling
);
lanes = useFiber(currentFirstChild, newChild.props);
lanes.key = key;
coerceRef(lanes, newChild);
lanes.return = returnFiber;
lanes._debugOwner = newChild._owner;
Expand Down Expand Up @@ -7392,28 +7414,31 @@
return returnFiber;
case REACT_PORTAL_TYPE:
a: {
prevDebugInfo = newChild;
for (
newChild = prevDebugInfo.key;
prevDebugInfo = newChild.key;
null !== currentFirstChild;

) {
if (currentFirstChild.key === newChild)
if (
currentFirstChild.key === prevDebugInfo ||
currentFirstChild.key === REACT_OPTIMISTIC_KEY
)
if (
4 === currentFirstChild.tag &&
currentFirstChild.stateNode.containerInfo ===
prevDebugInfo.containerInfo &&
newChild.containerInfo &&
currentFirstChild.stateNode.implementation ===
prevDebugInfo.implementation
newChild.implementation
) {
deleteRemainingChildren(
returnFiber,
currentFirstChild.sibling
);
lanes = useFiber(
currentFirstChild,
prevDebugInfo.children || []
newChild.children || []
);
lanes.key = prevDebugInfo;
lanes.return = returnFiber;
returnFiber = lanes;
break a;
Expand All @@ -7425,7 +7450,7 @@
currentFirstChild = currentFirstChild.sibling;
}
lanes = createFiberFromPortal(
prevDebugInfo,
newChild,
returnFiber.mode,
lanes
);
Expand Down Expand Up @@ -7466,14 +7491,14 @@
throw Error(
"An object is not an iterable. This error is likely caused by a bug in React. Please file an issue."
);
var newChildren = key.call(newChild);
if (newChildren === newChild) {
elementType = key.call(newChild);
if (elementType === newChild) {
if (
0 !== returnFiber.tag ||
"[object GeneratorFunction]" !==
Object.prototype.toString.call(returnFiber.type) ||
"[object Generator]" !==
Object.prototype.toString.call(newChildren)
Object.prototype.toString.call(elementType)
)
didWarnAboutGenerators ||
console.error(
Expand All @@ -7490,7 +7515,7 @@
returnFiber = reconcileChildrenIterator(
returnFiber,
currentFirstChild,
newChildren,
elementType,
lanes
);
currentDebugInfo = prevDebugInfo;
Expand Down Expand Up @@ -28263,6 +28288,7 @@
REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"),
MAYBE_ITERATOR_SYMBOL = Symbol.iterator,
ASYNC_ITERATOR = Symbol.asyncIterator,
REACT_OPTIMISTIC_KEY = Symbol.for("react.optimistic_key"),
REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"),
isArrayImpl = Array.isArray,
ReactSharedInternals =
Expand Down Expand Up @@ -32418,11 +32444,11 @@
};
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.3.0-experimental-0972e239-20251118" !== isomorphicReactPackageVersion)
if ("19.3.0-experimental-eb89912e-20251118" !== 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.3.0-experimental-0972e239-20251118\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.3.0-experimental-eb89912e-20251118\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
Expand Down Expand Up @@ -32459,10 +32485,10 @@
!(function () {
var internals = {
bundleType: 1,
version: "19.3.0-experimental-0972e239-20251118",
version: "19.3.0-experimental-eb89912e-20251118",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.3.0-experimental-0972e239-20251118"
reconcilerVersion: "19.3.0-experimental-eb89912e-20251118"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
Expand Down Expand Up @@ -32610,7 +32636,7 @@
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
exports.version = "19.3.0-experimental-0972e239-20251118";
exports.version = "19.3.0-experimental-eb89912e-20251118";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
Expand Down
Loading
Loading