react-server-dom-webpack 19.3.0-canary-ead92181-20251010 → 19.3.0-canary-56e84692-20251014
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-server-dom-webpack-client.browser.development.js +99 -58
- package/cjs/react-server-dom-webpack-client.edge.development.js +97 -56
- package/cjs/react-server-dom-webpack-client.node.development.js +97 -56
- package/cjs/react-server-dom-webpack-client.node.unbundled.development.js +97 -56
- package/cjs/react-server-dom-webpack-server.browser.development.js +8 -4
- package/cjs/react-server-dom-webpack-server.edge.development.js +8 -4
- package/cjs/react-server-dom-webpack-server.node.development.js +82 -71
- package/cjs/react-server-dom-webpack-server.node.unbundled.development.js +82 -71
- package/package.json +3 -3
|
@@ -1314,6 +1314,7 @@
|
|
|
1314
1314
|
}
|
|
1315
1315
|
})
|
|
1316
1316
|
);
|
|
1317
|
+
performance.clearMeasures(entryName);
|
|
1317
1318
|
} else
|
|
1318
1319
|
console.timeStamp(
|
|
1319
1320
|
entryName,
|
|
@@ -1332,6 +1333,7 @@
|
|
|
1332
1333
|
var description = getIODescription(error),
|
|
1333
1334
|
entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv),
|
|
1334
1335
|
debugTask = ioInfo.debugTask;
|
|
1336
|
+
entryName = "\u200b" + entryName;
|
|
1335
1337
|
debugTask
|
|
1336
1338
|
? ((error = [
|
|
1337
1339
|
[
|
|
@@ -1347,7 +1349,7 @@
|
|
|
1347
1349
|
getIOLongName(ioInfo, description, ioInfo.env, rootEnv) +
|
|
1348
1350
|
" Rejected"),
|
|
1349
1351
|
debugTask.run(
|
|
1350
|
-
performance.measure.bind(performance,
|
|
1352
|
+
performance.measure.bind(performance, entryName, {
|
|
1351
1353
|
start: 0 > startTime ? 0 : startTime,
|
|
1352
1354
|
end: endTime,
|
|
1353
1355
|
detail: {
|
|
@@ -1359,7 +1361,8 @@
|
|
|
1359
1361
|
}
|
|
1360
1362
|
}
|
|
1361
1363
|
})
|
|
1362
|
-
)
|
|
1364
|
+
),
|
|
1365
|
+
performance.clearMeasures(entryName))
|
|
1363
1366
|
: console.timeStamp(
|
|
1364
1367
|
entryName,
|
|
1365
1368
|
0 > startTime ? 0 : startTime,
|
|
@@ -1378,6 +1381,7 @@
|
|
|
1378
1381
|
entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv),
|
|
1379
1382
|
color = getIOColor(entryName),
|
|
1380
1383
|
debugTask = ioInfo.debugTask;
|
|
1384
|
+
entryName = "\u200b" + entryName;
|
|
1381
1385
|
if (debugTask) {
|
|
1382
1386
|
var properties = [];
|
|
1383
1387
|
"object" === typeof value && null !== value
|
|
@@ -1386,7 +1390,7 @@
|
|
|
1386
1390
|
addValueToProperties("Resolved", value, properties, 0, "");
|
|
1387
1391
|
ioInfo = getIOLongName(ioInfo, description, ioInfo.env, rootEnv);
|
|
1388
1392
|
debugTask.run(
|
|
1389
|
-
performance.measure.bind(performance,
|
|
1393
|
+
performance.measure.bind(performance, entryName, {
|
|
1390
1394
|
start: 0 > startTime ? 0 : startTime,
|
|
1391
1395
|
end: endTime,
|
|
1392
1396
|
detail: {
|
|
@@ -1399,6 +1403,7 @@
|
|
|
1399
1403
|
}
|
|
1400
1404
|
})
|
|
1401
1405
|
);
|
|
1406
|
+
performance.clearMeasures(entryName);
|
|
1402
1407
|
} else
|
|
1403
1408
|
console.timeStamp(
|
|
1404
1409
|
entryName,
|
|
@@ -2033,7 +2038,12 @@
|
|
|
2033
2038
|
(fulfilledChunk.status = "fulfilled"),
|
|
2034
2039
|
(fulfilledChunk.value = handler.value),
|
|
2035
2040
|
(fulfilledChunk.reason = handler.reason),
|
|
2036
|
-
null !== key
|
|
2041
|
+
null !== key
|
|
2042
|
+
? wakeChunk(key, handler.value, fulfilledChunk)
|
|
2043
|
+
: moveDebugInfoFromChunkToInnerValue(
|
|
2044
|
+
fulfilledChunk,
|
|
2045
|
+
handler.value
|
|
2046
|
+
)));
|
|
2037
2047
|
}
|
|
2038
2048
|
function rejectReference(reference, error) {
|
|
2039
2049
|
var handler = reference.handler;
|
|
@@ -2183,8 +2193,12 @@
|
|
|
2183
2193
|
((boundArgs = resolvedValue.value),
|
|
2184
2194
|
(resolvedValue.status = "fulfilled"),
|
|
2185
2195
|
(resolvedValue.value = handler.value),
|
|
2186
|
-
null !== boundArgs
|
|
2187
|
-
wakeChunk(boundArgs, handler.value, resolvedValue)
|
|
2196
|
+
null !== boundArgs
|
|
2197
|
+
? wakeChunk(boundArgs, handler.value, resolvedValue)
|
|
2198
|
+
: moveDebugInfoFromChunkToInnerValue(
|
|
2199
|
+
resolvedValue,
|
|
2200
|
+
handler.value
|
|
2201
|
+
)));
|
|
2188
2202
|
},
|
|
2189
2203
|
function (error) {
|
|
2190
2204
|
if (!handler.errored) {
|
|
@@ -2649,6 +2663,9 @@
|
|
|
2649
2663
|
'Trying to call a function from "use server" but the callServer option was not implemented in your router runtime.'
|
|
2650
2664
|
);
|
|
2651
2665
|
}
|
|
2666
|
+
function markIOStarted() {
|
|
2667
|
+
this._debugIOStarted = !0;
|
|
2668
|
+
}
|
|
2652
2669
|
function ResponseInstance(
|
|
2653
2670
|
bundlerConfig,
|
|
2654
2671
|
serverReferenceConfig,
|
|
@@ -2692,6 +2709,8 @@
|
|
|
2692
2709
|
'"use ' + environmentName.toLowerCase() + '"'
|
|
2693
2710
|
));
|
|
2694
2711
|
this._debugStartTime = performance.now();
|
|
2712
|
+
this._debugIOStarted = !1;
|
|
2713
|
+
setTimeout(markIOStarted.bind(this), 0);
|
|
2695
2714
|
this._debugFindSourceMapURL = findSourceMapURL;
|
|
2696
2715
|
this._debugChannel = debugChannel;
|
|
2697
2716
|
this._blockedConsole = null;
|
|
@@ -2749,7 +2768,7 @@
|
|
|
2749
2768
|
(streamState._debugTargetChunkSize = chunkLength + MIN_CHUNK_SIZE))
|
|
2750
2769
|
: ((debugInfo.end = endTime), (debugInfo.byteSize = chunkLength));
|
|
2751
2770
|
}
|
|
2752
|
-
function
|
|
2771
|
+
function addAsyncInfo(chunk, asyncInfo) {
|
|
2753
2772
|
var value = resolveLazy(chunk.value);
|
|
2754
2773
|
"object" !== typeof value ||
|
|
2755
2774
|
null === value ||
|
|
@@ -2757,22 +2776,23 @@
|
|
|
2757
2776
|
"function" !== typeof value[ASYNC_ITERATOR] &&
|
|
2758
2777
|
value.$$typeof !== REACT_ELEMENT_TYPE &&
|
|
2759
2778
|
value.$$typeof !== REACT_LAZY_TYPE)
|
|
2760
|
-
? chunk._debugInfo.push
|
|
2779
|
+
? chunk._debugInfo.push(asyncInfo)
|
|
2761
2780
|
: isArrayImpl(value._debugInfo)
|
|
2762
|
-
? value._debugInfo.push
|
|
2781
|
+
? value._debugInfo.push(asyncInfo)
|
|
2763
2782
|
: Object.defineProperty(value, "_debugInfo", {
|
|
2764
2783
|
configurable: !1,
|
|
2765
2784
|
enumerable: !1,
|
|
2766
2785
|
writable: !0,
|
|
2767
|
-
value:
|
|
2786
|
+
value: [asyncInfo]
|
|
2768
2787
|
});
|
|
2769
2788
|
}
|
|
2770
|
-
function resolveChunkDebugInfo(streamState, chunk) {
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2789
|
+
function resolveChunkDebugInfo(response, streamState, chunk) {
|
|
2790
|
+
response._debugIOStarted &&
|
|
2791
|
+
((response = { awaited: streamState._debugInfo }),
|
|
2792
|
+
"pending" === chunk.status || "blocked" === chunk.status
|
|
2793
|
+
? ((response = addAsyncInfo.bind(null, chunk, response)),
|
|
2794
|
+
chunk.then(response, response))
|
|
2795
|
+
: addAsyncInfo(chunk, response));
|
|
2776
2796
|
}
|
|
2777
2797
|
function resolveBuffer(response, id, buffer, streamState) {
|
|
2778
2798
|
var chunks = response._chunks,
|
|
@@ -2780,9 +2800,9 @@
|
|
|
2780
2800
|
chunk && "pending" !== chunk.status
|
|
2781
2801
|
? chunk.reason.enqueueValue(buffer)
|
|
2782
2802
|
: (chunk && releasePendingChunk(response, chunk),
|
|
2783
|
-
(
|
|
2784
|
-
resolveChunkDebugInfo(streamState,
|
|
2785
|
-
chunks.set(id,
|
|
2803
|
+
(buffer = new ReactPromise("fulfilled", buffer, null)),
|
|
2804
|
+
resolveChunkDebugInfo(response, streamState, buffer),
|
|
2805
|
+
chunks.set(id, buffer));
|
|
2786
2806
|
}
|
|
2787
2807
|
function resolveModule(response, id, model, streamState) {
|
|
2788
2808
|
var chunks = response._chunks,
|
|
@@ -2800,7 +2820,7 @@
|
|
|
2800
2820
|
} else
|
|
2801
2821
|
(blockedChunk = new ReactPromise("blocked", null, null)),
|
|
2802
2822
|
chunks.set(id, blockedChunk);
|
|
2803
|
-
resolveChunkDebugInfo(streamState, blockedChunk);
|
|
2823
|
+
resolveChunkDebugInfo(response, streamState, blockedChunk);
|
|
2804
2824
|
model.then(
|
|
2805
2825
|
function () {
|
|
2806
2826
|
return resolveModuleChunk(response, blockedChunk, clientReference);
|
|
@@ -2811,14 +2831,14 @@
|
|
|
2811
2831
|
);
|
|
2812
2832
|
} else
|
|
2813
2833
|
chunk
|
|
2814
|
-
? (resolveChunkDebugInfo(streamState, chunk),
|
|
2834
|
+
? (resolveChunkDebugInfo(response, streamState, chunk),
|
|
2815
2835
|
resolveModuleChunk(response, chunk, clientReference))
|
|
2816
2836
|
: ((chunk = new ReactPromise(
|
|
2817
2837
|
"resolved_module",
|
|
2818
2838
|
clientReference,
|
|
2819
2839
|
null
|
|
2820
2840
|
)),
|
|
2821
|
-
resolveChunkDebugInfo(streamState, chunk),
|
|
2841
|
+
resolveChunkDebugInfo(response, streamState, chunk),
|
|
2822
2842
|
chunks.set(id, chunk));
|
|
2823
2843
|
}
|
|
2824
2844
|
function resolveStream(response, id, stream, controller, streamState) {
|
|
@@ -2826,7 +2846,7 @@
|
|
|
2826
2846
|
chunk = chunks.get(id);
|
|
2827
2847
|
if (chunk) {
|
|
2828
2848
|
if (
|
|
2829
|
-
(resolveChunkDebugInfo(streamState, chunk),
|
|
2849
|
+
(resolveChunkDebugInfo(response, streamState, chunk),
|
|
2830
2850
|
"pending" === chunk.status)
|
|
2831
2851
|
) {
|
|
2832
2852
|
releasePendingChunk(response, chunk);
|
|
@@ -2858,12 +2878,14 @@
|
|
|
2858
2878
|
chunk.status = "fulfilled";
|
|
2859
2879
|
chunk.value = stream;
|
|
2860
2880
|
chunk.reason = controller;
|
|
2861
|
-
null !== id
|
|
2881
|
+
null !== id
|
|
2882
|
+
? wakeChunk(id, chunk.value, chunk)
|
|
2883
|
+
: moveDebugInfoFromChunkToInnerValue(chunk, stream);
|
|
2862
2884
|
}
|
|
2863
2885
|
} else
|
|
2864
|
-
(
|
|
2865
|
-
resolveChunkDebugInfo(streamState,
|
|
2866
|
-
chunks.set(id,
|
|
2886
|
+
(stream = new ReactPromise("fulfilled", stream, controller)),
|
|
2887
|
+
resolveChunkDebugInfo(response, streamState, stream),
|
|
2888
|
+
chunks.set(id, stream);
|
|
2867
2889
|
}
|
|
2868
2890
|
function startReadableStream(response, id, type, streamState) {
|
|
2869
2891
|
var controller = null;
|
|
@@ -3531,8 +3553,19 @@
|
|
|
3531
3553
|
previousResult.track = trackIdx$jscomp$6;
|
|
3532
3554
|
return previousResult;
|
|
3533
3555
|
}
|
|
3534
|
-
var children = root._children
|
|
3535
|
-
|
|
3556
|
+
var children = root._children;
|
|
3557
|
+
var debugInfo = root._debugInfo;
|
|
3558
|
+
if (0 === debugInfo.length && "fulfilled" === root.status) {
|
|
3559
|
+
var resolvedValue = resolveLazy(root.value);
|
|
3560
|
+
"object" === typeof resolvedValue &&
|
|
3561
|
+
null !== resolvedValue &&
|
|
3562
|
+
(isArrayImpl(resolvedValue) ||
|
|
3563
|
+
"function" === typeof resolvedValue[ASYNC_ITERATOR] ||
|
|
3564
|
+
resolvedValue.$$typeof === REACT_ELEMENT_TYPE ||
|
|
3565
|
+
resolvedValue.$$typeof === REACT_LAZY_TYPE) &&
|
|
3566
|
+
isArrayImpl(resolvedValue._debugInfo) &&
|
|
3567
|
+
(debugInfo = resolvedValue._debugInfo);
|
|
3568
|
+
}
|
|
3536
3569
|
if (debugInfo) {
|
|
3537
3570
|
for (var startTime$jscomp$0 = 0, i = 0; i < debugInfo.length; i++) {
|
|
3538
3571
|
var info = debugInfo[i];
|
|
@@ -3624,6 +3657,7 @@
|
|
|
3624
3657
|
void 0 === env
|
|
3625
3658
|
? name
|
|
3626
3659
|
: name + " [" + env + "]",
|
|
3660
|
+
measureName = "\u200b" + entryName$jscomp$0,
|
|
3627
3661
|
properties = [
|
|
3628
3662
|
[
|
|
3629
3663
|
"Error",
|
|
@@ -3649,7 +3683,7 @@
|
|
|
3649
3683
|
0,
|
|
3650
3684
|
""
|
|
3651
3685
|
);
|
|
3652
|
-
performance.measure(
|
|
3686
|
+
performance.measure(measureName, {
|
|
3653
3687
|
start: 0 > startTime$jscomp$2 ? 0 : startTime$jscomp$2,
|
|
3654
3688
|
end: childrenEndTime$jscomp$1,
|
|
3655
3689
|
detail: {
|
|
@@ -3662,6 +3696,7 @@
|
|
|
3662
3696
|
}
|
|
3663
3697
|
}
|
|
3664
3698
|
});
|
|
3699
|
+
performance.clearMeasures(measureName);
|
|
3665
3700
|
}
|
|
3666
3701
|
} else {
|
|
3667
3702
|
var componentInfo$jscomp$3 = componentInfo$jscomp$1,
|
|
@@ -3693,11 +3728,12 @@
|
|
|
3693
3728
|
? "primary-dark"
|
|
3694
3729
|
: "secondary-dark"
|
|
3695
3730
|
: "error",
|
|
3696
|
-
|
|
3697
|
-
|
|
3731
|
+
debugTask$jscomp$0 = componentInfo$jscomp$3.debugTask,
|
|
3732
|
+
measureName$jscomp$0 =
|
|
3733
|
+
"\u200b" +
|
|
3734
|
+
(isPrimaryEnv || void 0 === env$jscomp$0
|
|
3698
3735
|
? name$jscomp$0
|
|
3699
|
-
: name$jscomp$0 + " [" + env$jscomp$0 + "]"
|
|
3700
|
-
debugTask$jscomp$0 = componentInfo$jscomp$3.debugTask;
|
|
3736
|
+
: name$jscomp$0 + " [" + env$jscomp$0 + "]");
|
|
3701
3737
|
if (debugTask$jscomp$0) {
|
|
3702
3738
|
var properties$jscomp$0 = [];
|
|
3703
3739
|
null != componentInfo$jscomp$3.key &&
|
|
@@ -3718,7 +3754,7 @@
|
|
|
3718
3754
|
debugTask$jscomp$0.run(
|
|
3719
3755
|
performance.measure.bind(
|
|
3720
3756
|
performance,
|
|
3721
|
-
|
|
3757
|
+
measureName$jscomp$0,
|
|
3722
3758
|
{
|
|
3723
3759
|
start:
|
|
3724
3760
|
0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3,
|
|
@@ -3734,9 +3770,10 @@
|
|
|
3734
3770
|
}
|
|
3735
3771
|
)
|
|
3736
3772
|
);
|
|
3773
|
+
performance.clearMeasures(measureName$jscomp$0);
|
|
3737
3774
|
} else
|
|
3738
3775
|
console.timeStamp(
|
|
3739
|
-
|
|
3776
|
+
measureName$jscomp$0,
|
|
3740
3777
|
0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3,
|
|
3741
3778
|
childrenEndTime$jscomp$2,
|
|
3742
3779
|
trackNames[trackIdx$jscomp$2],
|
|
@@ -3778,7 +3815,7 @@
|
|
|
3778
3815
|
error$jscomp$0 = thenable.reason;
|
|
3779
3816
|
if (supportsUserTiming && 0 < endTime$jscomp$0) {
|
|
3780
3817
|
var description = getIODescription(error$jscomp$0),
|
|
3781
|
-
entryName$jscomp$
|
|
3818
|
+
entryName$jscomp$1 =
|
|
3782
3819
|
"await " +
|
|
3783
3820
|
getIOShortName(
|
|
3784
3821
|
asyncInfo$jscomp$0.awaited,
|
|
@@ -3810,7 +3847,7 @@
|
|
|
3810
3847
|
debugTask$jscomp$1.run(
|
|
3811
3848
|
performance.measure.bind(
|
|
3812
3849
|
performance,
|
|
3813
|
-
entryName$jscomp$
|
|
3850
|
+
entryName$jscomp$1,
|
|
3814
3851
|
{
|
|
3815
3852
|
start:
|
|
3816
3853
|
0 > startTime$jscomp$4
|
|
@@ -3829,9 +3866,10 @@
|
|
|
3829
3866
|
}
|
|
3830
3867
|
)
|
|
3831
3868
|
);
|
|
3869
|
+
performance.clearMeasures(entryName$jscomp$1);
|
|
3832
3870
|
} else
|
|
3833
3871
|
console.timeStamp(
|
|
3834
|
-
entryName$jscomp$
|
|
3872
|
+
entryName$jscomp$1,
|
|
3835
3873
|
0 > startTime$jscomp$4 ? 0 : startTime$jscomp$4,
|
|
3836
3874
|
endTime$jscomp$0,
|
|
3837
3875
|
trackNames[trackIdx$jscomp$3],
|
|
@@ -3877,10 +3915,11 @@
|
|
|
3877
3915
|
if (supportsUserTiming) {
|
|
3878
3916
|
var env$jscomp$2 = componentInfo$jscomp$4.env,
|
|
3879
3917
|
name$jscomp$1 = componentInfo$jscomp$4.name,
|
|
3880
|
-
entryName$jscomp$
|
|
3918
|
+
entryName$jscomp$2 =
|
|
3881
3919
|
env$jscomp$2 === _env || void 0 === env$jscomp$2
|
|
3882
3920
|
? name$jscomp$1
|
|
3883
3921
|
: name$jscomp$1 + " [" + env$jscomp$2 + "]",
|
|
3922
|
+
measureName$jscomp$1 = "\u200b" + entryName$jscomp$2,
|
|
3884
3923
|
properties$jscomp$2 = [
|
|
3885
3924
|
[
|
|
3886
3925
|
"Aborted",
|
|
@@ -3902,7 +3941,7 @@
|
|
|
3902
3941
|
0,
|
|
3903
3942
|
""
|
|
3904
3943
|
);
|
|
3905
|
-
performance.measure(
|
|
3944
|
+
performance.measure(measureName$jscomp$1, {
|
|
3906
3945
|
start: 0 > startTime$jscomp$5 ? 0 : startTime$jscomp$5,
|
|
3907
3946
|
end: childrenEndTime$jscomp$3,
|
|
3908
3947
|
detail: {
|
|
@@ -3910,11 +3949,12 @@
|
|
|
3910
3949
|
color: "warning",
|
|
3911
3950
|
track: trackNames[trackIdx$jscomp$4],
|
|
3912
3951
|
trackGroup: "Server Components \u269b",
|
|
3913
|
-
tooltipText: entryName$jscomp$
|
|
3952
|
+
tooltipText: entryName$jscomp$2 + " Aborted",
|
|
3914
3953
|
properties: properties$jscomp$2
|
|
3915
3954
|
}
|
|
3916
3955
|
}
|
|
3917
3956
|
});
|
|
3957
|
+
performance.clearMeasures(measureName$jscomp$1);
|
|
3918
3958
|
}
|
|
3919
3959
|
componentEndTime = time;
|
|
3920
3960
|
result.component = _componentInfo;
|
|
@@ -3934,7 +3974,7 @@
|
|
|
3934
3974
|
endTime$jscomp$1 = endTime,
|
|
3935
3975
|
rootEnv$jscomp$0 = _env2;
|
|
3936
3976
|
if (supportsUserTiming && 0 < endTime$jscomp$1) {
|
|
3937
|
-
var entryName$jscomp$
|
|
3977
|
+
var entryName$jscomp$3 =
|
|
3938
3978
|
"await " +
|
|
3939
3979
|
getIOShortName(
|
|
3940
3980
|
asyncInfo$jscomp$1.awaited,
|
|
@@ -3956,7 +3996,7 @@
|
|
|
3956
3996
|
debugTask$jscomp$2.run(
|
|
3957
3997
|
performance.measure.bind(
|
|
3958
3998
|
performance,
|
|
3959
|
-
entryName$jscomp$
|
|
3999
|
+
entryName$jscomp$3,
|
|
3960
4000
|
{
|
|
3961
4001
|
start:
|
|
3962
4002
|
0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6,
|
|
@@ -3978,9 +4018,10 @@
|
|
|
3978
4018
|
}
|
|
3979
4019
|
)
|
|
3980
4020
|
);
|
|
4021
|
+
performance.clearMeasures(entryName$jscomp$3);
|
|
3981
4022
|
} else
|
|
3982
4023
|
console.timeStamp(
|
|
3983
|
-
entryName$jscomp$
|
|
4024
|
+
entryName$jscomp$3,
|
|
3984
4025
|
0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6,
|
|
3985
4026
|
endTime$jscomp$1,
|
|
3986
4027
|
trackNames[trackIdx$jscomp$5],
|
|
@@ -4226,20 +4267,20 @@
|
|
|
4226
4267
|
var error = resolveErrorDev(response, row);
|
|
4227
4268
|
error.digest = row.digest;
|
|
4228
4269
|
chunk
|
|
4229
|
-
? (resolveChunkDebugInfo(streamState, chunk),
|
|
4270
|
+
? (resolveChunkDebugInfo(response, streamState, chunk),
|
|
4230
4271
|
triggerErrorOnChunk(response, chunk, error))
|
|
4231
|
-
: ((
|
|
4232
|
-
resolveChunkDebugInfo(streamState,
|
|
4233
|
-
tag.set(id,
|
|
4272
|
+
: ((row = new ReactPromise("rejected", null, error)),
|
|
4273
|
+
resolveChunkDebugInfo(response, streamState, row),
|
|
4274
|
+
tag.set(id, row));
|
|
4234
4275
|
break;
|
|
4235
4276
|
case 84:
|
|
4236
4277
|
tag = response._chunks;
|
|
4237
4278
|
(chunk = tag.get(id)) && "pending" !== chunk.status
|
|
4238
4279
|
? chunk.reason.enqueueValue(row)
|
|
4239
4280
|
: (chunk && releasePendingChunk(response, chunk),
|
|
4240
|
-
(
|
|
4241
|
-
resolveChunkDebugInfo(streamState,
|
|
4242
|
-
tag.set(id,
|
|
4281
|
+
(row = new ReactPromise("fulfilled", row, null)),
|
|
4282
|
+
resolveChunkDebugInfo(response, streamState, row),
|
|
4283
|
+
tag.set(id, row));
|
|
4243
4284
|
break;
|
|
4244
4285
|
case 78:
|
|
4245
4286
|
response._timeOrigin = +row - performance.timeOrigin;
|
|
@@ -4305,11 +4346,11 @@
|
|
|
4305
4346
|
} else
|
|
4306
4347
|
(tag = response._chunks),
|
|
4307
4348
|
(chunk = tag.get(id))
|
|
4308
|
-
? (resolveChunkDebugInfo(streamState, chunk),
|
|
4349
|
+
? (resolveChunkDebugInfo(response, streamState, chunk),
|
|
4309
4350
|
resolveModelChunk(response, chunk, row))
|
|
4310
|
-
: ((
|
|
4311
|
-
resolveChunkDebugInfo(streamState,
|
|
4312
|
-
tag.set(id,
|
|
4351
|
+
: ((row = createResolvedModelChunk(response, row)),
|
|
4352
|
+
resolveChunkDebugInfo(response, streamState, row),
|
|
4353
|
+
tag.set(id, row));
|
|
4313
4354
|
}
|
|
4314
4355
|
}
|
|
4315
4356
|
function processBinaryChunk(weakResponse, streamState, chunk) {
|
|
@@ -4879,10 +4920,10 @@
|
|
|
4879
4920
|
return hook.checkDCE ? !0 : !1;
|
|
4880
4921
|
})({
|
|
4881
4922
|
bundleType: 1,
|
|
4882
|
-
version: "19.3.0-canary-
|
|
4923
|
+
version: "19.3.0-canary-56e84692-20251014",
|
|
4883
4924
|
rendererPackageName: "react-server-dom-webpack",
|
|
4884
4925
|
currentDispatcherRef: ReactSharedInternals,
|
|
4885
|
-
reconcilerVersion: "19.3.0-canary-
|
|
4926
|
+
reconcilerVersion: "19.3.0-canary-56e84692-20251014",
|
|
4886
4927
|
getCurrentComponentInfo: function () {
|
|
4887
4928
|
return currentOwnerInDEV;
|
|
4888
4929
|
}
|