Skip to content
Closed
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-55480b4d-20251208",
"eslint-plugin-react-hooks": "0.0.0-experimental-d763f313-20251210",
"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:react@19.3.0-canary-55480b4d-20251208",
"react-builtin": "npm:react@19.3.0-canary-d763f313-20251210",
"react-dom": "19.0.0",
"react-dom-builtin": "npm:react-dom@19.3.0-canary-55480b4d-20251208",
"react-dom-experimental-builtin": "npm:react-dom@0.0.0-experimental-55480b4d-20251208",
"react-experimental-builtin": "npm:react@0.0.0-experimental-55480b4d-20251208",
"react-is-builtin": "npm:react-is@19.3.0-canary-55480b4d-20251208",
"react-server-dom-turbopack": "19.3.0-canary-55480b4d-20251208",
"react-server-dom-turbopack-experimental": "npm:react-server-dom-turbopack@0.0.0-experimental-55480b4d-20251208",
"react-server-dom-webpack": "19.3.0-canary-55480b4d-20251208",
"react-server-dom-webpack-experimental": "npm:react-server-dom-webpack@0.0.0-experimental-55480b4d-20251208",
"react-dom-builtin": "npm:react-dom@19.3.0-canary-d763f313-20251210",
"react-dom-experimental-builtin": "npm:react-dom@0.0.0-experimental-d763f313-20251210",
"react-experimental-builtin": "npm:react@0.0.0-experimental-d763f313-20251210",
"react-is-builtin": "npm:react-is@19.3.0-canary-d763f313-20251210",
"react-server-dom-turbopack": "19.3.0-canary-d763f313-20251210",
"react-server-dom-turbopack-experimental": "npm:react-server-dom-turbopack@0.0.0-experimental-d763f313-20251210",
"react-server-dom-webpack": "19.3.0-canary-d763f313-20251210",
"react-server-dom-webpack-experimental": "npm:react-server-dom-webpack@0.0.0-experimental-d763f313-20251210",
"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:scheduler@0.28.0-canary-55480b4d-20251208",
"scheduler-experimental-builtin": "npm:scheduler@0.0.0-experimental-55480b4d-20251208",
"scheduler-builtin": "npm:scheduler@0.28.0-canary-d763f313-20251210",
"scheduler-experimental-builtin": "npm:scheduler@0.0.0-experimental-d763f313-20251210",
"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-55480b4d-20251208",
"react-dom": "19.3.0-canary-55480b4d-20251208",
"react-is": "19.3.0-canary-55480b4d-20251208",
"scheduler": "0.28.0-canary-55480b4d-20251208"
"react": "19.3.0-canary-d763f313-20251210",
"react-dom": "19.3.0-canary-d763f313-20251210",
"react-is": "19.3.0-canary-d763f313-20251210",
"scheduler": "0.28.0-canary-d763f313-20251210"
},
"packageExtensions": {
"eslint-plugin-react-hooks@0.0.0-experimental-6de32a5a-20250822": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25640,21 +25640,6 @@
var computedStyle = getComputedStyle(instance);
return createMeasurement(measuredRect, computedStyle, instance);
}
function cancelAllViewTransitionAnimations(scope) {
for (
var animations = scope.getAnimations({ subtree: !0 }), i = 0;
i < animations.length;
i++
) {
var anim = animations[i],
effect = anim.effect,
pseudo = effect.pseudoElement;
null != pseudo &&
pseudo.startsWith("::view-transition") &&
effect.target === scope &&
anim.cancel();
}
}
function customizeViewTransitionError(error, ignoreAbort) {
if ("object" === typeof error && null !== error)
switch (error.name) {
Expand Down Expand Up @@ -25789,6 +25774,7 @@
types: transitionTypes
});
ownerDocument.__reactViewTransition = transition;
var viewTransitionAnimations = [];
transition.ready.then(
function () {
for (
Expand All @@ -25799,25 +25785,26 @@
i < animations.length;
i++
) {
var effect = animations[i].effect,
var animation = animations[i],
effect = animation.effect,
pseudoElement = effect.pseudoElement;
if (
null != pseudoElement &&
pseudoElement.startsWith("::view-transition")
) {
pseudoElement = effect.getKeyframes();
viewTransitionAnimations.push(animation);
animation = effect.getKeyframes();
for (
var width = void 0,
height = void 0,
var height = (pseudoElement = void 0),
unchangedDimensions = !0,
j = 0;
j < pseudoElement.length;
j < animation.length;
j++
) {
var keyframe = pseudoElement[j],
var keyframe = animation[j],
w = keyframe.width;
if (void 0 === width) width = w;
else if (width !== w) {
if (void 0 === pseudoElement) pseudoElement = w;
else if (pseudoElement !== w) {
unchangedDimensions = !1;
break;
}
Expand All @@ -25832,23 +25819,22 @@
"none" === keyframe.transform && delete keyframe.transform;
}
unchangedDimensions &&
void 0 !== width &&
void 0 !== pseudoElement &&
void 0 !== height &&
(effect.setKeyframes(pseudoElement),
(effect.setKeyframes(animation),
(unchangedDimensions = getComputedStyle(
effect.target,
effect.pseudoElement
)),
unchangedDimensions.width !== width ||
unchangedDimensions.width !== pseudoElement ||
unchangedDimensions.height !== height) &&
((unchangedDimensions = pseudoElement[0]),
(unchangedDimensions.width = width),
((unchangedDimensions = animation[0]),
(unchangedDimensions.width = pseudoElement),
(unchangedDimensions.height = height),
(unchangedDimensions =
pseudoElement[pseudoElement.length - 1]),
(unchangedDimensions.width = width),
(unchangedDimensions = animation[animation.length - 1]),
(unchangedDimensions.width = pseudoElement),
(unchangedDimensions.height = height),
effect.setKeyframes(pseudoElement));
effect.setKeyframes(animation));
}
}
spawnedWorkCallback();
Expand All @@ -25868,7 +25854,8 @@
}
);
transition.finished.finally(function () {
cancelAllViewTransitionAnimations(ownerDocument.documentElement);
for (var i = 0; i < viewTransitionAnimations.length; i++)
viewTransitionAnimations[i].cancel();
ownerDocument.__reactViewTransition === transition &&
(ownerDocument.__reactViewTransition = null);
finishedAnimation();
Expand Down Expand Up @@ -26006,6 +25993,7 @@
});
ownerDocument.__reactViewTransition = transition;
var customTimelineCleanup = [],
viewTransitionAnimations = [],
readyCallback = function () {
for (
var documentElement = ownerDocument.documentElement,
Expand All @@ -26021,7 +26009,8 @@
pseudoElement = effect.pseudoElement;
null != pseudoElement &&
pseudoElement.startsWith("::view-transition") &&
((effect = effect.getTiming()),
(viewTransitionAnimations.push(animations[i]),
(effect = effect.getTiming()),
(effect =
effect.delay +
("number" === typeof effect.duration ? effect.duration : 0)),
Expand Down Expand Up @@ -26124,8 +26113,9 @@
}
});
transition.finished.finally(function () {
cancelAllViewTransitionAnimations(ownerDocument.documentElement);
for (var i = 0; i < customTimelineCleanup.length; i++)
for (var i = 0; i < viewTransitionAnimations.length; i++)
viewTransitionAnimations[i].cancel();
for (i = 0; i < customTimelineCleanup.length; i++)
(0, customTimelineCleanup[i])();
ownerDocument.__reactViewTransition === transition &&
(ownerDocument.__reactViewTransition = null);
Expand Down Expand Up @@ -32446,11 +32436,11 @@
};
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.3.0-experimental-55480b4d-20251208" !== isomorphicReactPackageVersion)
if ("19.3.0-experimental-d763f313-20251210" !== 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-55480b4d-20251208\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.3.0-experimental-d763f313-20251210\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
Expand Down Expand Up @@ -32487,10 +32477,10 @@
!(function () {
var internals = {
bundleType: 1,
version: "19.3.0-experimental-55480b4d-20251208",
version: "19.3.0-experimental-d763f313-20251210",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.3.0-experimental-55480b4d-20251208"
reconcilerVersion: "19.3.0-experimental-d763f313-20251210"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
Expand Down Expand Up @@ -32638,7 +32628,7 @@
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
exports.version = "19.3.0-experimental-55480b4d-20251208";
exports.version = "19.3.0-experimental-d763f313-20251210";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
Expand Down
Loading
Loading