@@ -2753,6 +2753,7 @@ __DEV__ &&
2753
2753
for (var child = fiber.child; child; )
2754
2754
(fiber.actualDuration += child.actualDuration), (child = child.sibling);
2755
2755
}
2756
+ function noop() {}
2756
2757
function ensureRootIsScheduled(root) {
2757
2758
root !== lastScheduledRoot &&
2758
2759
null === root.next &&
@@ -2818,7 +2819,6 @@ __DEV__ &&
2818
2819
didScheduleMicrotask_act =
2819
2820
didScheduleMicrotask =
2820
2821
!1;
2821
- 0 !== currentEventTransitionLane && (currentEventTransitionLane = 0);
2822
2822
for (
2823
2823
var currentTime = now$1(), prev = null, root = firstScheduledRoot;
2824
2824
null !== root;
@@ -2837,6 +2837,7 @@ __DEV__ &&
2837
2837
(pendingEffectsStatus !== NO_PENDING_EFFECTS &&
2838
2838
pendingEffectsStatus !== PENDING_PASSIVE_PHASE) ||
2839
2839
flushSyncWorkAcrossRoots_impl(0, !1);
2840
+ 0 !== currentEventTransitionLane && (currentEventTransitionLane = 0);
2840
2841
}
2841
2842
function scheduleTaskForRootDuringMicrotask(root, currentTime) {
2842
2843
var pendingLanes = root.pendingLanes,
@@ -2971,8 +2972,11 @@ __DEV__ &&
2971
2972
scheduleCallback$3(ImmediatePriority, processRootScheduleInImmediateTask);
2972
2973
}
2973
2974
function requestTransitionLane() {
2974
- 0 === currentEventTransitionLane &&
2975
- (currentEventTransitionLane = claimNextTransitionLane());
2975
+ if (0 === currentEventTransitionLane) {
2976
+ var actionScopeLane = currentEntangledLane;
2977
+ currentEventTransitionLane =
2978
+ 0 !== actionScopeLane ? actionScopeLane : claimNextTransitionLane();
2979
+ }
2976
2980
return currentEventTransitionLane;
2977
2981
}
2978
2982
function entangleAsyncAction(transition, thenable) {
@@ -3096,7 +3100,6 @@ __DEV__ &&
3096
3100
}
3097
3101
return !0;
3098
3102
}
3099
- function noop() {}
3100
3103
function createThenableState() {
3101
3104
return { didWarnAboutUncachedPromise: !1, thenables: [] };
3102
3105
}
@@ -12121,9 +12124,11 @@ __DEV__ &&
12121
12124
break;
12122
12125
case 3:
12123
12126
flags = pushNestedEffectDurations();
12127
+ enableViewTransition && (viewTransitionMutationContext = !1);
12124
12128
recursivelyTraverseMutationEffects(root, finishedWork, lanes);
12125
12129
commitReconciliationEffects(finishedWork);
12126
12130
root.effectDuration += popNestedEffectDurations(flags);
12131
+ enableViewTransition && (viewTransitionMutationContext = !1);
12127
12132
break;
12128
12133
case 4:
12129
12134
flags = pushMutationContext();
@@ -13911,8 +13916,7 @@ __DEV__ &&
13911
13916
return null !== transition
13912
13917
? (transition._updatedFibers || (transition._updatedFibers = new Set()),
13913
13918
transition._updatedFibers.add(fiber),
13914
- (fiber = currentEntangledLane),
13915
- 0 !== fiber ? fiber : requestTransitionLane())
13919
+ requestTransitionLane())
13916
13920
: currentUpdatePriority || DefaultEventPriority;
13917
13921
}
13918
13922
function requestDeferredLane() {
@@ -15535,9 +15539,9 @@ __DEV__ &&
15535
15539
if (0 !== (finishedWork.subtreeFlags & 8772) || rootHasLayoutEffect) {
15536
15540
rootHasLayoutEffect = ReactSharedInternals.T;
15537
15541
ReactSharedInternals.T = null;
15538
- var previousPriority = currentUpdatePriority;
15542
+ var _previousPriority = currentUpdatePriority;
15539
15543
currentUpdatePriority = DiscreteEventPriority;
15540
- var prevExecutionContext = executionContext;
15544
+ var _prevExecutionContext = executionContext;
15541
15545
executionContext |= CommitContext;
15542
15546
try {
15543
15547
enableSchedulingProfiler &&
@@ -15562,8 +15566,8 @@ __DEV__ &&
15562
15566
typeof injectedProfilingHooks.markLayoutEffectsStopped &&
15563
15567
injectedProfilingHooks.markLayoutEffectsStopped();
15564
15568
} finally {
15565
- (executionContext = prevExecutionContext ),
15566
- (currentUpdatePriority = previousPriority ),
15569
+ (executionContext = _prevExecutionContext ),
15570
+ (currentUpdatePriority = _previousPriority ),
15567
15571
(ReactSharedInternals.T = rootHasLayoutEffect);
15568
15572
}
15569
15573
}
@@ -17014,6 +17018,35 @@ __DEV__ &&
17014
17018
};
17015
17019
}
17016
17020
var objectIs = "function" === typeof Object.is ? Object.is : is,
17021
+ reportGlobalError =
17022
+ "function" === typeof reportError
17023
+ ? reportError
17024
+ : function (error) {
17025
+ if (
17026
+ "object" === typeof window &&
17027
+ "function" === typeof window.ErrorEvent
17028
+ ) {
17029
+ var event = new window.ErrorEvent("error", {
17030
+ bubbles: !0,
17031
+ cancelable: !0,
17032
+ message:
17033
+ "object" === typeof error &&
17034
+ null !== error &&
17035
+ "string" === typeof error.message
17036
+ ? String(error.message)
17037
+ : String(error),
17038
+ error: error
17039
+ });
17040
+ if (!window.dispatchEvent(event)) return;
17041
+ } else if (
17042
+ "object" === typeof process &&
17043
+ "function" === typeof process.emit
17044
+ ) {
17045
+ process.emit("uncaughtException", error);
17046
+ return;
17047
+ }
17048
+ console.error(error);
17049
+ },
17017
17050
supportsUserTiming =
17018
17051
"undefined" !== typeof console &&
17019
17052
"function" === typeof console.timeStamp,
@@ -18665,35 +18698,6 @@ __DEV__ &&
18665
18698
injectedProfilingHooks.markForceUpdateScheduled(inst, lane);
18666
18699
}
18667
18700
},
18668
- reportGlobalError =
18669
- "function" === typeof reportError
18670
- ? reportError
18671
- : function (error) {
18672
- if (
18673
- "object" === typeof window &&
18674
- "function" === typeof window.ErrorEvent
18675
- ) {
18676
- var event = new window.ErrorEvent("error", {
18677
- bubbles: !0,
18678
- cancelable: !0,
18679
- message:
18680
- "object" === typeof error &&
18681
- null !== error &&
18682
- "string" === typeof error.message
18683
- ? String(error.message)
18684
- : String(error),
18685
- error: error
18686
- });
18687
- if (!window.dispatchEvent(event)) return;
18688
- } else if (
18689
- "object" === typeof process &&
18690
- "function" === typeof process.emit
18691
- ) {
18692
- process.emit("uncaughtException", error);
18693
- return;
18694
- }
18695
- console.error(error);
18696
- },
18697
18701
componentName = null,
18698
18702
errorBoundaryName = null,
18699
18703
TransitionRoot = 0,
@@ -19065,10 +19069,10 @@ __DEV__ &&
19065
19069
(function () {
19066
19070
var internals = {
19067
19071
bundleType: 1,
19068
- version: "19.2.0-www-classic-3820740a-20250509 ",
19072
+ version: "19.2.0-www-classic-3a5b326d-20250513 ",
19069
19073
rendererPackageName: "react-art",
19070
19074
currentDispatcherRef: ReactSharedInternals,
19071
- reconcilerVersion: "19.2.0-www-classic-3820740a-20250509 "
19075
+ reconcilerVersion: "19.2.0-www-classic-3a5b326d-20250513 "
19072
19076
};
19073
19077
internals.overrideHookState = overrideHookState;
19074
19078
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -19102,7 +19106,7 @@ __DEV__ &&
19102
19106
exports.Shape = Shape;
19103
19107
exports.Surface = Surface;
19104
19108
exports.Text = Text;
19105
- exports.version = "19.2.0-www-classic-3820740a-20250509 ";
19109
+ exports.version = "19.2.0-www-classic-3a5b326d-20250513 ";
19106
19110
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
19107
19111
"function" ===
19108
19112
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
0 commit comments