react-dom 19.1.0-canary-ebc22ef7-20250225 → 19.1.0-canary-2980f277-20250301
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/react-dom-client.development.js +231 -157
- package/cjs/react-dom-client.production.js +97 -29
- package/cjs/react-dom-profiling.development.js +231 -157
- package/cjs/react-dom-profiling.profiling.js +97 -29
- package/cjs/react-dom-server-legacy.browser.development.js +1 -1
- package/cjs/react-dom-server-legacy.browser.production.js +1 -1
- package/cjs/react-dom-server-legacy.node.development.js +1 -1
- package/cjs/react-dom-server-legacy.node.production.js +1 -1
- package/cjs/react-dom-server.browser.development.js +3 -3
- package/cjs/react-dom-server.browser.production.js +3 -3
- package/cjs/react-dom-server.bun.development.js +3 -3
- package/cjs/react-dom-server.bun.production.js +3 -3
- package/cjs/react-dom-server.edge.development.js +3 -3
- package/cjs/react-dom-server.edge.production.js +3 -3
- package/cjs/react-dom-server.node.development.js +3 -3
- package/cjs/react-dom-server.node.production.js +3 -3
- package/cjs/react-dom.development.js +1 -1
- package/cjs/react-dom.production.js +1 -1
- package/cjs/react-dom.react-server.development.js +1 -1
- package/cjs/react-dom.react-server.production.js +1 -1
- package/package.json +3 -3
@@ -11819,7 +11819,7 @@ function flushSpawnedWork() {
|
|
11819
11819
|
0 !== (finishedWork.flags & 10256)
|
11820
11820
|
? (pendingEffectsStatus = 5)
|
11821
11821
|
: ((pendingEffectsStatus = 0),
|
11822
|
-
(pendingEffectsRoot = null),
|
11822
|
+
(pendingFinishedWork = pendingEffectsRoot = null),
|
11823
11823
|
releaseRootPooledCache(root, root.pendingLanes));
|
11824
11824
|
var remainingLanes = root.pendingLanes;
|
11825
11825
|
0 === remainingLanes && (legacyErrorBoundariesThatAlreadyFailed = null);
|
@@ -11887,6 +11887,45 @@ function flushSpawnedWork() {
|
|
11887
11887
|
markCommitStopped();
|
11888
11888
|
}
|
11889
11889
|
}
|
11890
|
+
function flushGestureMutations() {
|
11891
|
+
if (6 === pendingEffectsStatus) {
|
11892
|
+
pendingEffectsStatus = 0;
|
11893
|
+
var root = pendingEffectsRoot,
|
11894
|
+
prevTransition = ReactSharedInternals.T;
|
11895
|
+
ReactSharedInternals.T = null;
|
11896
|
+
var previousPriority = ReactDOMSharedInternals.p;
|
11897
|
+
ReactDOMSharedInternals.p = 2;
|
11898
|
+
var prevExecutionContext = executionContext;
|
11899
|
+
executionContext |= 4;
|
11900
|
+
try {
|
11901
|
+
var rootContainer = root.containerInfo,
|
11902
|
+
documentElement =
|
11903
|
+
9 === rootContainer.nodeType
|
11904
|
+
? rootContainer.documentElement
|
11905
|
+
: rootContainer.ownerDocument.documentElement;
|
11906
|
+
null !== documentElement &&
|
11907
|
+
"" === documentElement.style.viewTransitionName &&
|
11908
|
+
((documentElement.style.viewTransitionName = "none"),
|
11909
|
+
documentElement.animate(
|
11910
|
+
{ opacity: [0, 0], pointerEvents: ["none", "none"] },
|
11911
|
+
{
|
11912
|
+
duration: 0,
|
11913
|
+
fill: "forwards",
|
11914
|
+
pseudoElement: "::view-transition-group(root)"
|
11915
|
+
}
|
11916
|
+
),
|
11917
|
+
documentElement.animate(
|
11918
|
+
{ width: [0, 0], height: [0, 0] },
|
11919
|
+
{ duration: 0, fill: "forwards", pseudoElement: "::view-transition" }
|
11920
|
+
));
|
11921
|
+
} finally {
|
11922
|
+
(executionContext = prevExecutionContext),
|
11923
|
+
(ReactDOMSharedInternals.p = previousPriority),
|
11924
|
+
(ReactSharedInternals.T = prevTransition);
|
11925
|
+
}
|
11926
|
+
pendingEffectsStatus = 7;
|
11927
|
+
}
|
11928
|
+
}
|
11890
11929
|
function releaseRootPooledCache(root, remainingLanes) {
|
11891
11930
|
0 === (root.pooledCacheLanes &= remainingLanes) &&
|
11892
11931
|
((remainingLanes = root.pooledCache),
|
@@ -11894,6 +11933,35 @@ function releaseRootPooledCache(root, remainingLanes) {
|
|
11894
11933
|
((root.pooledCache = null), releaseCache(remainingLanes)));
|
11895
11934
|
}
|
11896
11935
|
function flushPendingEffects(wasDelayedCommit) {
|
11936
|
+
flushGestureMutations();
|
11937
|
+
flushGestureMutations();
|
11938
|
+
if (7 === pendingEffectsStatus) {
|
11939
|
+
pendingEffectsStatus = 0;
|
11940
|
+
var root = pendingEffectsRoot;
|
11941
|
+
pendingFinishedWork = pendingEffectsRoot = null;
|
11942
|
+
pendingEffectsLanes = 0;
|
11943
|
+
var prevTransition = ReactSharedInternals.T;
|
11944
|
+
ReactSharedInternals.T = null;
|
11945
|
+
var previousPriority = ReactDOMSharedInternals.p;
|
11946
|
+
ReactDOMSharedInternals.p = 2;
|
11947
|
+
var prevExecutionContext = executionContext;
|
11948
|
+
executionContext |= 4;
|
11949
|
+
try {
|
11950
|
+
var rootContainer = root.containerInfo,
|
11951
|
+
documentElement =
|
11952
|
+
9 === rootContainer.nodeType
|
11953
|
+
? rootContainer.documentElement
|
11954
|
+
: rootContainer.ownerDocument.documentElement;
|
11955
|
+
null !== documentElement &&
|
11956
|
+
"none" === documentElement.style.viewTransitionName &&
|
11957
|
+
(documentElement.style.viewTransitionName = "");
|
11958
|
+
} finally {
|
11959
|
+
(executionContext = prevExecutionContext),
|
11960
|
+
(ReactDOMSharedInternals.p = previousPriority),
|
11961
|
+
(ReactSharedInternals.T = prevTransition);
|
11962
|
+
}
|
11963
|
+
ensureRootIsScheduled(root);
|
11964
|
+
}
|
11897
11965
|
flushMutationEffects();
|
11898
11966
|
flushLayoutEffects();
|
11899
11967
|
flushSpawnedWork();
|
@@ -11915,7 +11983,7 @@ function flushPassiveEffects() {
|
|
11915
11983
|
var root$jscomp$0 = pendingEffectsRoot,
|
11916
11984
|
lanes = pendingEffectsLanes;
|
11917
11985
|
pendingEffectsStatus = 0;
|
11918
|
-
pendingEffectsRoot = null;
|
11986
|
+
pendingFinishedWork = pendingEffectsRoot = null;
|
11919
11987
|
pendingEffectsLanes = 0;
|
11920
11988
|
if (0 !== (executionContext & 6)) throw Error(formatProdErrorMessage(331));
|
11921
11989
|
null !== injectedProfilingHooks &&
|
@@ -12373,20 +12441,20 @@ function extractEvents$1(
|
|
12373
12441
|
}
|
12374
12442
|
}
|
12375
12443
|
for (
|
12376
|
-
var i$jscomp$
|
12377
|
-
i$jscomp$
|
12378
|
-
i$jscomp$
|
12444
|
+
var i$jscomp$inline_1630 = 0;
|
12445
|
+
i$jscomp$inline_1630 < simpleEventPluginEvents.length;
|
12446
|
+
i$jscomp$inline_1630++
|
12379
12447
|
) {
|
12380
|
-
var eventName$jscomp$
|
12381
|
-
simpleEventPluginEvents[i$jscomp$
|
12382
|
-
domEventName$jscomp$
|
12383
|
-
eventName$jscomp$
|
12384
|
-
capitalizedEvent$jscomp$
|
12385
|
-
eventName$jscomp$
|
12386
|
-
eventName$jscomp$
|
12448
|
+
var eventName$jscomp$inline_1631 =
|
12449
|
+
simpleEventPluginEvents[i$jscomp$inline_1630],
|
12450
|
+
domEventName$jscomp$inline_1632 =
|
12451
|
+
eventName$jscomp$inline_1631.toLowerCase(),
|
12452
|
+
capitalizedEvent$jscomp$inline_1633 =
|
12453
|
+
eventName$jscomp$inline_1631[0].toUpperCase() +
|
12454
|
+
eventName$jscomp$inline_1631.slice(1);
|
12387
12455
|
registerSimpleEvent(
|
12388
|
-
domEventName$jscomp$
|
12389
|
-
"on" + capitalizedEvent$jscomp$
|
12456
|
+
domEventName$jscomp$inline_1632,
|
12457
|
+
"on" + capitalizedEvent$jscomp$inline_1633
|
12390
12458
|
);
|
12391
12459
|
}
|
12392
12460
|
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
@@ -15898,16 +15966,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
15898
15966
|
0 === i && attemptExplicitHydrationTarget(target);
|
15899
15967
|
}
|
15900
15968
|
};
|
15901
|
-
var isomorphicReactPackageVersion$jscomp$
|
15969
|
+
var isomorphicReactPackageVersion$jscomp$inline_1884 = React.version;
|
15902
15970
|
if (
|
15903
|
-
"19.1.0-canary-
|
15904
|
-
isomorphicReactPackageVersion$jscomp$
|
15971
|
+
"19.1.0-canary-2980f277-20250301" !==
|
15972
|
+
isomorphicReactPackageVersion$jscomp$inline_1884
|
15905
15973
|
)
|
15906
15974
|
throw Error(
|
15907
15975
|
formatProdErrorMessage(
|
15908
15976
|
527,
|
15909
|
-
isomorphicReactPackageVersion$jscomp$
|
15910
|
-
"19.1.0-canary-
|
15977
|
+
isomorphicReactPackageVersion$jscomp$inline_1884,
|
15978
|
+
"19.1.0-canary-2980f277-20250301"
|
15911
15979
|
)
|
15912
15980
|
);
|
15913
15981
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -15927,12 +15995,12 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
15927
15995
|
null === componentOrElement ? null : componentOrElement.stateNode;
|
15928
15996
|
return componentOrElement;
|
15929
15997
|
};
|
15930
|
-
var internals$jscomp$
|
15998
|
+
var internals$jscomp$inline_1891 = {
|
15931
15999
|
bundleType: 0,
|
15932
|
-
version: "19.1.0-canary-
|
16000
|
+
version: "19.1.0-canary-2980f277-20250301",
|
15933
16001
|
rendererPackageName: "react-dom",
|
15934
16002
|
currentDispatcherRef: ReactSharedInternals,
|
15935
|
-
reconcilerVersion: "19.1.0-canary-
|
16003
|
+
reconcilerVersion: "19.1.0-canary-2980f277-20250301",
|
15936
16004
|
getLaneLabelMap: function () {
|
15937
16005
|
for (
|
15938
16006
|
var map = new Map(), lane = 1, index$281 = 0;
|
@@ -15950,16 +16018,16 @@ var internals$jscomp$inline_1867 = {
|
|
15950
16018
|
}
|
15951
16019
|
};
|
15952
16020
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
15953
|
-
var hook$jscomp$
|
16021
|
+
var hook$jscomp$inline_2344 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
15954
16022
|
if (
|
15955
|
-
!hook$jscomp$
|
15956
|
-
hook$jscomp$
|
16023
|
+
!hook$jscomp$inline_2344.isDisabled &&
|
16024
|
+
hook$jscomp$inline_2344.supportsFiber
|
15957
16025
|
)
|
15958
16026
|
try {
|
15959
|
-
(rendererID = hook$jscomp$
|
15960
|
-
internals$jscomp$
|
16027
|
+
(rendererID = hook$jscomp$inline_2344.inject(
|
16028
|
+
internals$jscomp$inline_1891
|
15961
16029
|
)),
|
15962
|
-
(injectedHook = hook$jscomp$
|
16030
|
+
(injectedHook = hook$jscomp$inline_2344);
|
15963
16031
|
} catch (err) {}
|
15964
16032
|
}
|
15965
16033
|
function noop() {}
|
@@ -16212,7 +16280,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
16212
16280
|
exports.useFormStatus = function () {
|
16213
16281
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
16214
16282
|
};
|
16215
|
-
exports.version = "19.1.0-canary-
|
16283
|
+
exports.version = "19.1.0-canary-2980f277-20250301";
|
16216
16284
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
16217
16285
|
"function" ===
|
16218
16286
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -9010,5 +9010,5 @@
|
|
9010
9010
|
'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'
|
9011
9011
|
);
|
9012
9012
|
};
|
9013
|
-
exports.version = "19.1.0-canary-
|
9013
|
+
exports.version = "19.1.0-canary-2980f277-20250301";
|
9014
9014
|
})();
|
@@ -5887,4 +5887,4 @@ exports.renderToString = function (children, options) {
|
|
5887
5887
|
'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'
|
5888
5888
|
);
|
5889
5889
|
};
|
5890
|
-
exports.version = "19.1.0-canary-
|
5890
|
+
exports.version = "19.1.0-canary-2980f277-20250301";
|
@@ -9010,5 +9010,5 @@
|
|
9010
9010
|
'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'
|
9011
9011
|
);
|
9012
9012
|
};
|
9013
|
-
exports.version = "19.1.0-canary-
|
9013
|
+
exports.version = "19.1.0-canary-2980f277-20250301";
|
9014
9014
|
})();
|
@@ -5967,4 +5967,4 @@ exports.renderToString = function (children, options) {
|
|
5967
5967
|
'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'
|
5968
5968
|
);
|
5969
5969
|
};
|
5970
|
-
exports.version = "19.1.0-canary-
|
5970
|
+
exports.version = "19.1.0-canary-2980f277-20250301";
|
@@ -7740,11 +7740,11 @@
|
|
7740
7740
|
}
|
7741
7741
|
function ensureCorrectIsomorphicReactVersion() {
|
7742
7742
|
var isomorphicReactPackageVersion = React.version;
|
7743
|
-
if ("19.1.0-canary-
|
7743
|
+
if ("19.1.0-canary-2980f277-20250301" !== isomorphicReactPackageVersion)
|
7744
7744
|
throw Error(
|
7745
7745
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7746
7746
|
(isomorphicReactPackageVersion +
|
7747
|
-
"\n - react-dom: 19.1.0-canary-
|
7747
|
+
"\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
|
7748
7748
|
);
|
7749
7749
|
}
|
7750
7750
|
var React = require("react"),
|
@@ -9399,5 +9399,5 @@
|
|
9399
9399
|
startWork(request);
|
9400
9400
|
});
|
9401
9401
|
};
|
9402
|
-
exports.version = "19.1.0-canary-
|
9402
|
+
exports.version = "19.1.0-canary-2980f277-20250301";
|
9403
9403
|
})();
|
@@ -6227,12 +6227,12 @@ function abort(request, reason) {
|
|
6227
6227
|
}
|
6228
6228
|
function ensureCorrectIsomorphicReactVersion() {
|
6229
6229
|
var isomorphicReactPackageVersion = React.version;
|
6230
|
-
if ("19.1.0-canary-
|
6230
|
+
if ("19.1.0-canary-2980f277-20250301" !== isomorphicReactPackageVersion)
|
6231
6231
|
throw Error(
|
6232
6232
|
formatProdErrorMessage(
|
6233
6233
|
527,
|
6234
6234
|
isomorphicReactPackageVersion,
|
6235
|
-
"19.1.0-canary-
|
6235
|
+
"19.1.0-canary-2980f277-20250301"
|
6236
6236
|
)
|
6237
6237
|
);
|
6238
6238
|
}
|
@@ -6379,4 +6379,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6379
6379
|
startWork(request);
|
6380
6380
|
});
|
6381
6381
|
};
|
6382
|
-
exports.version = "19.1.0-canary-
|
6382
|
+
exports.version = "19.1.0-canary-2980f277-20250301";
|
@@ -8618,13 +8618,13 @@ function abort(request, reason) {
|
|
8618
8618
|
}
|
8619
8619
|
var isomorphicReactPackageVersion$jscomp$inline_740 = React.version;
|
8620
8620
|
if (
|
8621
|
-
"19.1.0-canary-
|
8621
|
+
"19.1.0-canary-2980f277-20250301" !==
|
8622
8622
|
isomorphicReactPackageVersion$jscomp$inline_740
|
8623
8623
|
)
|
8624
8624
|
throw Error(
|
8625
8625
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8626
8626
|
(isomorphicReactPackageVersion$jscomp$inline_740 +
|
8627
|
-
"\n - react-dom: 19.1.0-canary-
|
8627
|
+
"\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
|
8628
8628
|
);
|
8629
8629
|
exports.renderToReadableStream = function (children, options) {
|
8630
8630
|
return new Promise(function (resolve, reject) {
|
@@ -8717,4 +8717,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
8717
8717
|
startWork(request$jscomp$0);
|
8718
8718
|
});
|
8719
8719
|
};
|
8720
|
-
exports.version = "19.1.0-canary-
|
8720
|
+
exports.version = "19.1.0-canary-2980f277-20250301";
|
@@ -5865,13 +5865,13 @@ function abort(request, reason) {
|
|
5865
5865
|
}
|
5866
5866
|
var isomorphicReactPackageVersion$jscomp$inline_761 = React.version;
|
5867
5867
|
if (
|
5868
|
-
"19.1.0-canary-
|
5868
|
+
"19.1.0-canary-2980f277-20250301" !==
|
5869
5869
|
isomorphicReactPackageVersion$jscomp$inline_761
|
5870
5870
|
)
|
5871
5871
|
throw Error(
|
5872
5872
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
5873
5873
|
(isomorphicReactPackageVersion$jscomp$inline_761 +
|
5874
|
-
"\n - react-dom: 19.1.0-canary-
|
5874
|
+
"\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
|
5875
5875
|
);
|
5876
5876
|
exports.renderToReadableStream = function (children, options) {
|
5877
5877
|
return new Promise(function (resolve, reject) {
|
@@ -5962,4 +5962,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
5962
5962
|
startWork(request);
|
5963
5963
|
});
|
5964
5964
|
};
|
5965
|
-
exports.version = "19.1.0-canary-
|
5965
|
+
exports.version = "19.1.0-canary-2980f277-20250301";
|
@@ -7763,11 +7763,11 @@
|
|
7763
7763
|
}
|
7764
7764
|
function ensureCorrectIsomorphicReactVersion() {
|
7765
7765
|
var isomorphicReactPackageVersion = React.version;
|
7766
|
-
if ("19.1.0-canary-
|
7766
|
+
if ("19.1.0-canary-2980f277-20250301" !== isomorphicReactPackageVersion)
|
7767
7767
|
throw Error(
|
7768
7768
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7769
7769
|
(isomorphicReactPackageVersion +
|
7770
|
-
"\n - react-dom: 19.1.0-canary-
|
7770
|
+
"\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
|
7771
7771
|
);
|
7772
7772
|
}
|
7773
7773
|
var React = require("react"),
|
@@ -9418,5 +9418,5 @@
|
|
9418
9418
|
startWork(request);
|
9419
9419
|
});
|
9420
9420
|
};
|
9421
|
-
exports.version = "19.1.0-canary-
|
9421
|
+
exports.version = "19.1.0-canary-2980f277-20250301";
|
9422
9422
|
})();
|
@@ -6322,11 +6322,11 @@ function abort(request, reason) {
|
|
6322
6322
|
}
|
6323
6323
|
function ensureCorrectIsomorphicReactVersion() {
|
6324
6324
|
var isomorphicReactPackageVersion = React.version;
|
6325
|
-
if ("19.1.0-canary-
|
6325
|
+
if ("19.1.0-canary-2980f277-20250301" !== isomorphicReactPackageVersion)
|
6326
6326
|
throw Error(
|
6327
6327
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
6328
6328
|
(isomorphicReactPackageVersion +
|
6329
|
-
"\n - react-dom: 19.1.0-canary-
|
6329
|
+
"\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
|
6330
6330
|
);
|
6331
6331
|
}
|
6332
6332
|
ensureCorrectIsomorphicReactVersion();
|
@@ -6472,4 +6472,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6472
6472
|
startWork(request);
|
6473
6473
|
});
|
6474
6474
|
};
|
6475
|
-
exports.version = "19.1.0-canary-
|
6475
|
+
exports.version = "19.1.0-canary-2980f277-20250301";
|
@@ -7638,11 +7638,11 @@
|
|
7638
7638
|
}
|
7639
7639
|
function ensureCorrectIsomorphicReactVersion() {
|
7640
7640
|
var isomorphicReactPackageVersion = React.version;
|
7641
|
-
if ("19.1.0-canary-
|
7641
|
+
if ("19.1.0-canary-2980f277-20250301" !== isomorphicReactPackageVersion)
|
7642
7642
|
throw Error(
|
7643
7643
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7644
7644
|
(isomorphicReactPackageVersion +
|
7645
|
-
"\n - react-dom: 19.1.0-canary-
|
7645
|
+
"\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
|
7646
7646
|
);
|
7647
7647
|
}
|
7648
7648
|
function createDrainHandler(destination, request) {
|
@@ -9292,5 +9292,5 @@
|
|
9292
9292
|
}
|
9293
9293
|
};
|
9294
9294
|
};
|
9295
|
-
exports.version = "19.1.0-canary-
|
9295
|
+
exports.version = "19.1.0-canary-2980f277-20250301";
|
9296
9296
|
})();
|
@@ -6214,11 +6214,11 @@ function abort(request, reason) {
|
|
6214
6214
|
}
|
6215
6215
|
function ensureCorrectIsomorphicReactVersion() {
|
6216
6216
|
var isomorphicReactPackageVersion = React.version;
|
6217
|
-
if ("19.1.0-canary-
|
6217
|
+
if ("19.1.0-canary-2980f277-20250301" !== isomorphicReactPackageVersion)
|
6218
6218
|
throw Error(
|
6219
6219
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
6220
6220
|
(isomorphicReactPackageVersion +
|
6221
|
-
"\n - react-dom: 19.1.0-canary-
|
6221
|
+
"\n - react-dom: 19.1.0-canary-2980f277-20250301\nLearn more: https://react.dev/warnings/version-mismatch")
|
6222
6222
|
);
|
6223
6223
|
}
|
6224
6224
|
ensureCorrectIsomorphicReactVersion();
|
@@ -6367,4 +6367,4 @@ exports.renderToPipeableStream = function (children, options) {
|
|
6367
6367
|
}
|
6368
6368
|
};
|
6369
6369
|
};
|
6370
|
-
exports.version = "19.1.0-canary-
|
6370
|
+
exports.version = "19.1.0-canary-2980f277-20250301";
|
@@ -416,7 +416,7 @@
|
|
416
416
|
exports.useFormStatus = function () {
|
417
417
|
return resolveDispatcher().useHostTransitionStatus();
|
418
418
|
};
|
419
|
-
exports.version = "19.1.0-canary-
|
419
|
+
exports.version = "19.1.0-canary-2980f277-20250301";
|
420
420
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
421
421
|
"function" ===
|
422
422
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -207,4 +207,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
207
207
|
exports.useFormStatus = function () {
|
208
208
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
209
209
|
};
|
210
|
-
exports.version = "19.1.0-canary-
|
210
|
+
exports.version = "19.1.0-canary-2980f277-20250301";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-dom",
|
3
|
-
"version": "19.1.0-canary-
|
3
|
+
"version": "19.1.0-canary-2980f277-20250301",
|
4
4
|
"description": "React package for working with the DOM.",
|
5
5
|
"main": "index.js",
|
6
6
|
"repository": {
|
@@ -17,10 +17,10 @@
|
|
17
17
|
},
|
18
18
|
"homepage": "https://react.dev/",
|
19
19
|
"dependencies": {
|
20
|
-
"scheduler": "0.26.0-canary-
|
20
|
+
"scheduler": "0.26.0-canary-2980f277-20250301"
|
21
21
|
},
|
22
22
|
"peerDependencies": {
|
23
|
-
"react": "19.1.0-canary-
|
23
|
+
"react": "19.1.0-canary-2980f277-20250301"
|
24
24
|
},
|
25
25
|
"files": [
|
26
26
|
"LICENSE",
|