react 19.2.0-canary-a00ca6f6-20250611 → 19.2.0-canary-79d9aed7-20250620
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.development.js
CHANGED
@@ -895,6 +895,9 @@
|
|
895
895
|
return fn.apply(null, arguments);
|
896
896
|
};
|
897
897
|
};
|
898
|
+
exports.cacheSignal = function () {
|
899
|
+
return null;
|
900
|
+
};
|
898
901
|
exports.captureOwnerStack = function () {
|
899
902
|
var getCurrentStack = ReactSharedInternals.getCurrentStack;
|
900
903
|
return null === getCurrentStack ? null : getCurrentStack();
|
@@ -1240,7 +1243,7 @@
|
|
1240
1243
|
exports.useTransition = function () {
|
1241
1244
|
return resolveDispatcher().useTransition();
|
1242
1245
|
};
|
1243
|
-
exports.version = "19.2.0-canary-
|
1246
|
+
exports.version = "19.2.0-canary-79d9aed7-20250620";
|
1244
1247
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
1245
1248
|
"function" ===
|
1246
1249
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
package/cjs/react.production.js
CHANGED
@@ -367,6 +367,9 @@ exports.cache = function (fn) {
|
|
367
367
|
return fn.apply(null, arguments);
|
368
368
|
};
|
369
369
|
};
|
370
|
+
exports.cacheSignal = function () {
|
371
|
+
return null;
|
372
|
+
};
|
370
373
|
exports.cloneElement = function (element, config, children) {
|
371
374
|
if (null === element || void 0 === element)
|
372
375
|
throw Error(
|
@@ -540,4 +543,4 @@ exports.useSyncExternalStore = function (
|
|
540
543
|
exports.useTransition = function () {
|
541
544
|
return ReactSharedInternals.H.useTransition();
|
542
545
|
};
|
543
|
-
exports.version = "19.2.0-canary-
|
546
|
+
exports.version = "19.2.0-canary-79d9aed7-20250620";
|
@@ -592,6 +592,10 @@
|
|
592
592
|
}
|
593
593
|
};
|
594
594
|
};
|
595
|
+
exports.cacheSignal = function () {
|
596
|
+
var dispatcher = ReactSharedInternals.A;
|
597
|
+
return dispatcher ? dispatcher.cacheSignal() : null;
|
598
|
+
};
|
595
599
|
exports.captureOwnerStack = function () {
|
596
600
|
var getCurrentStack = ReactSharedInternals.getCurrentStack;
|
597
601
|
return null === getCurrentStack ? null : getCurrentStack();
|
@@ -810,5 +814,5 @@
|
|
810
814
|
exports.useMemo = function (create, deps) {
|
811
815
|
return resolveDispatcher().useMemo(create, deps);
|
812
816
|
};
|
813
|
-
exports.version = "19.2.0-canary-
|
817
|
+
exports.version = "19.2.0-canary-79d9aed7-20250620";
|
814
818
|
})();
|
@@ -340,6 +340,10 @@ exports.cache = function (fn) {
|
|
340
340
|
}
|
341
341
|
};
|
342
342
|
};
|
343
|
+
exports.cacheSignal = function () {
|
344
|
+
var dispatcher = ReactSharedInternals.A;
|
345
|
+
return dispatcher ? dispatcher.cacheSignal() : null;
|
346
|
+
};
|
343
347
|
exports.captureOwnerStack = function () {
|
344
348
|
return null;
|
345
349
|
};
|
@@ -426,4 +430,4 @@ exports.useId = function () {
|
|
426
430
|
exports.useMemo = function (create, deps) {
|
427
431
|
return ReactSharedInternals.H.useMemo(create, deps);
|
428
432
|
};
|
429
|
-
exports.version = "19.2.0-canary-
|
433
|
+
exports.version = "19.2.0-canary-79d9aed7-20250620";
|