react-server-dom-parcel 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-parcel-client.browser.development.js +99 -58
- package/cjs/react-server-dom-parcel-client.edge.development.js +97 -56
- package/cjs/react-server-dom-parcel-client.node.development.js +97 -56
- package/cjs/react-server-dom-parcel-server.browser.development.js +8 -4
- package/cjs/react-server-dom-parcel-server.edge.development.js +8 -4
- package/cjs/react-server-dom-parcel-server.node.development.js +82 -71
- package/package.json +3 -3
|
@@ -1265,6 +1265,7 @@
|
|
|
1265
1265
|
}
|
|
1266
1266
|
})
|
|
1267
1267
|
);
|
|
1268
|
+
performance.clearMeasures(entryName);
|
|
1268
1269
|
} else
|
|
1269
1270
|
console.timeStamp(
|
|
1270
1271
|
entryName,
|
|
@@ -1283,6 +1284,7 @@
|
|
|
1283
1284
|
var description = getIODescription(error),
|
|
1284
1285
|
entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv),
|
|
1285
1286
|
debugTask = ioInfo.debugTask;
|
|
1287
|
+
entryName = "\u200b" + entryName;
|
|
1286
1288
|
debugTask
|
|
1287
1289
|
? ((error = [
|
|
1288
1290
|
[
|
|
@@ -1298,7 +1300,7 @@
|
|
|
1298
1300
|
getIOLongName(ioInfo, description, ioInfo.env, rootEnv) +
|
|
1299
1301
|
" Rejected"),
|
|
1300
1302
|
debugTask.run(
|
|
1301
|
-
performance.measure.bind(performance,
|
|
1303
|
+
performance.measure.bind(performance, entryName, {
|
|
1302
1304
|
start: 0 > startTime ? 0 : startTime,
|
|
1303
1305
|
end: endTime,
|
|
1304
1306
|
detail: {
|
|
@@ -1310,7 +1312,8 @@
|
|
|
1310
1312
|
}
|
|
1311
1313
|
}
|
|
1312
1314
|
})
|
|
1313
|
-
)
|
|
1315
|
+
),
|
|
1316
|
+
performance.clearMeasures(entryName))
|
|
1314
1317
|
: console.timeStamp(
|
|
1315
1318
|
entryName,
|
|
1316
1319
|
0 > startTime ? 0 : startTime,
|
|
@@ -1329,6 +1332,7 @@
|
|
|
1329
1332
|
entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv),
|
|
1330
1333
|
color = getIOColor(entryName),
|
|
1331
1334
|
debugTask = ioInfo.debugTask;
|
|
1335
|
+
entryName = "\u200b" + entryName;
|
|
1332
1336
|
if (debugTask) {
|
|
1333
1337
|
var properties = [];
|
|
1334
1338
|
"object" === typeof value && null !== value
|
|
@@ -1337,7 +1341,7 @@
|
|
|
1337
1341
|
addValueToProperties("Resolved", value, properties, 0, "");
|
|
1338
1342
|
ioInfo = getIOLongName(ioInfo, description, ioInfo.env, rootEnv);
|
|
1339
1343
|
debugTask.run(
|
|
1340
|
-
performance.measure.bind(performance,
|
|
1344
|
+
performance.measure.bind(performance, entryName, {
|
|
1341
1345
|
start: 0 > startTime ? 0 : startTime,
|
|
1342
1346
|
end: endTime,
|
|
1343
1347
|
detail: {
|
|
@@ -1350,6 +1354,7 @@
|
|
|
1350
1354
|
}
|
|
1351
1355
|
})
|
|
1352
1356
|
);
|
|
1357
|
+
performance.clearMeasures(entryName);
|
|
1353
1358
|
} else
|
|
1354
1359
|
console.timeStamp(
|
|
1355
1360
|
entryName,
|
|
@@ -1924,7 +1929,12 @@
|
|
|
1924
1929
|
(fulfilledChunk.status = "fulfilled"),
|
|
1925
1930
|
(fulfilledChunk.value = handler.value),
|
|
1926
1931
|
(fulfilledChunk.reason = handler.reason),
|
|
1927
|
-
null !== key
|
|
1932
|
+
null !== key
|
|
1933
|
+
? wakeChunk(key, handler.value, fulfilledChunk)
|
|
1934
|
+
: moveDebugInfoFromChunkToInnerValue(
|
|
1935
|
+
fulfilledChunk,
|
|
1936
|
+
handler.value
|
|
1937
|
+
)));
|
|
1928
1938
|
}
|
|
1929
1939
|
function rejectReference(reference, error) {
|
|
1930
1940
|
var handler = reference.handler;
|
|
@@ -2074,8 +2084,12 @@
|
|
|
2074
2084
|
((boundArgs = resolvedValue.value),
|
|
2075
2085
|
(resolvedValue.status = "fulfilled"),
|
|
2076
2086
|
(resolvedValue.value = handler.value),
|
|
2077
|
-
null !== boundArgs
|
|
2078
|
-
wakeChunk(boundArgs, handler.value, resolvedValue)
|
|
2087
|
+
null !== boundArgs
|
|
2088
|
+
? wakeChunk(boundArgs, handler.value, resolvedValue)
|
|
2089
|
+
: moveDebugInfoFromChunkToInnerValue(
|
|
2090
|
+
resolvedValue,
|
|
2091
|
+
handler.value
|
|
2092
|
+
)));
|
|
2079
2093
|
},
|
|
2080
2094
|
function (error) {
|
|
2081
2095
|
if (!handler.errored) {
|
|
@@ -2540,6 +2554,9 @@
|
|
|
2540
2554
|
'Trying to call a function from "use server" but the callServer option was not implemented in your router runtime.'
|
|
2541
2555
|
);
|
|
2542
2556
|
}
|
|
2557
|
+
function markIOStarted() {
|
|
2558
|
+
this._debugIOStarted = !0;
|
|
2559
|
+
}
|
|
2543
2560
|
function ResponseInstance(
|
|
2544
2561
|
bundlerConfig,
|
|
2545
2562
|
serverReferenceConfig,
|
|
@@ -2583,6 +2600,8 @@
|
|
|
2583
2600
|
'"use ' + environmentName.toLowerCase() + '"'
|
|
2584
2601
|
));
|
|
2585
2602
|
this._debugStartTime = performance.now();
|
|
2603
|
+
this._debugIOStarted = !1;
|
|
2604
|
+
setTimeout(markIOStarted.bind(this), 0);
|
|
2586
2605
|
this._debugFindSourceMapURL = findSourceMapURL;
|
|
2587
2606
|
this._debugChannel = debugChannel;
|
|
2588
2607
|
this._blockedConsole = null;
|
|
@@ -2640,7 +2659,7 @@
|
|
|
2640
2659
|
(streamState._debugTargetChunkSize = chunkLength + MIN_CHUNK_SIZE))
|
|
2641
2660
|
: ((debugInfo.end = endTime), (debugInfo.byteSize = chunkLength));
|
|
2642
2661
|
}
|
|
2643
|
-
function
|
|
2662
|
+
function addAsyncInfo(chunk, asyncInfo) {
|
|
2644
2663
|
var value = resolveLazy(chunk.value);
|
|
2645
2664
|
"object" !== typeof value ||
|
|
2646
2665
|
null === value ||
|
|
@@ -2648,22 +2667,23 @@
|
|
|
2648
2667
|
"function" !== typeof value[ASYNC_ITERATOR] &&
|
|
2649
2668
|
value.$$typeof !== REACT_ELEMENT_TYPE &&
|
|
2650
2669
|
value.$$typeof !== REACT_LAZY_TYPE)
|
|
2651
|
-
? chunk._debugInfo.push
|
|
2670
|
+
? chunk._debugInfo.push(asyncInfo)
|
|
2652
2671
|
: isArrayImpl(value._debugInfo)
|
|
2653
|
-
? value._debugInfo.push
|
|
2672
|
+
? value._debugInfo.push(asyncInfo)
|
|
2654
2673
|
: Object.defineProperty(value, "_debugInfo", {
|
|
2655
2674
|
configurable: !1,
|
|
2656
2675
|
enumerable: !1,
|
|
2657
2676
|
writable: !0,
|
|
2658
|
-
value:
|
|
2677
|
+
value: [asyncInfo]
|
|
2659
2678
|
});
|
|
2660
2679
|
}
|
|
2661
|
-
function resolveChunkDebugInfo(streamState, chunk) {
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2680
|
+
function resolveChunkDebugInfo(response, streamState, chunk) {
|
|
2681
|
+
response._debugIOStarted &&
|
|
2682
|
+
((response = { awaited: streamState._debugInfo }),
|
|
2683
|
+
"pending" === chunk.status || "blocked" === chunk.status
|
|
2684
|
+
? ((response = addAsyncInfo.bind(null, chunk, response)),
|
|
2685
|
+
chunk.then(response, response))
|
|
2686
|
+
: addAsyncInfo(chunk, response));
|
|
2667
2687
|
}
|
|
2668
2688
|
function resolveBuffer(response, id, buffer, streamState) {
|
|
2669
2689
|
var chunks = response._chunks,
|
|
@@ -2671,9 +2691,9 @@
|
|
|
2671
2691
|
chunk && "pending" !== chunk.status
|
|
2672
2692
|
? chunk.reason.enqueueValue(buffer)
|
|
2673
2693
|
: (chunk && releasePendingChunk(response, chunk),
|
|
2674
|
-
(
|
|
2675
|
-
resolveChunkDebugInfo(streamState,
|
|
2676
|
-
chunks.set(id,
|
|
2694
|
+
(buffer = new ReactPromise("fulfilled", buffer, null)),
|
|
2695
|
+
resolveChunkDebugInfo(response, streamState, buffer),
|
|
2696
|
+
chunks.set(id, buffer));
|
|
2677
2697
|
}
|
|
2678
2698
|
function resolveModule(response, id, model, streamState) {
|
|
2679
2699
|
var chunks = response._chunks,
|
|
@@ -2687,7 +2707,7 @@
|
|
|
2687
2707
|
} else
|
|
2688
2708
|
(blockedChunk = new ReactPromise("blocked", null, null)),
|
|
2689
2709
|
chunks.set(id, blockedChunk);
|
|
2690
|
-
resolveChunkDebugInfo(streamState, blockedChunk);
|
|
2710
|
+
resolveChunkDebugInfo(response, streamState, blockedChunk);
|
|
2691
2711
|
model.then(
|
|
2692
2712
|
function () {
|
|
2693
2713
|
return resolveModuleChunk(response, blockedChunk, clientReference);
|
|
@@ -2698,14 +2718,14 @@
|
|
|
2698
2718
|
);
|
|
2699
2719
|
} else
|
|
2700
2720
|
chunk
|
|
2701
|
-
? (resolveChunkDebugInfo(streamState, chunk),
|
|
2721
|
+
? (resolveChunkDebugInfo(response, streamState, chunk),
|
|
2702
2722
|
resolveModuleChunk(response, chunk, clientReference))
|
|
2703
2723
|
: ((chunk = new ReactPromise(
|
|
2704
2724
|
"resolved_module",
|
|
2705
2725
|
clientReference,
|
|
2706
2726
|
null
|
|
2707
2727
|
)),
|
|
2708
|
-
resolveChunkDebugInfo(streamState, chunk),
|
|
2728
|
+
resolveChunkDebugInfo(response, streamState, chunk),
|
|
2709
2729
|
chunks.set(id, chunk));
|
|
2710
2730
|
}
|
|
2711
2731
|
function resolveStream(response, id, stream, controller, streamState) {
|
|
@@ -2713,7 +2733,7 @@
|
|
|
2713
2733
|
chunk = chunks.get(id);
|
|
2714
2734
|
if (chunk) {
|
|
2715
2735
|
if (
|
|
2716
|
-
(resolveChunkDebugInfo(streamState, chunk),
|
|
2736
|
+
(resolveChunkDebugInfo(response, streamState, chunk),
|
|
2717
2737
|
"pending" === chunk.status)
|
|
2718
2738
|
) {
|
|
2719
2739
|
releasePendingChunk(response, chunk);
|
|
@@ -2745,12 +2765,14 @@
|
|
|
2745
2765
|
chunk.status = "fulfilled";
|
|
2746
2766
|
chunk.value = stream;
|
|
2747
2767
|
chunk.reason = controller;
|
|
2748
|
-
null !== id
|
|
2768
|
+
null !== id
|
|
2769
|
+
? wakeChunk(id, chunk.value, chunk)
|
|
2770
|
+
: moveDebugInfoFromChunkToInnerValue(chunk, stream);
|
|
2749
2771
|
}
|
|
2750
2772
|
} else
|
|
2751
|
-
(
|
|
2752
|
-
resolveChunkDebugInfo(streamState,
|
|
2753
|
-
chunks.set(id,
|
|
2773
|
+
(stream = new ReactPromise("fulfilled", stream, controller)),
|
|
2774
|
+
resolveChunkDebugInfo(response, streamState, stream),
|
|
2775
|
+
chunks.set(id, stream);
|
|
2754
2776
|
}
|
|
2755
2777
|
function startReadableStream(response, id, type, streamState) {
|
|
2756
2778
|
var controller = null;
|
|
@@ -3418,8 +3440,19 @@
|
|
|
3418
3440
|
previousResult.track = trackIdx$jscomp$6;
|
|
3419
3441
|
return previousResult;
|
|
3420
3442
|
}
|
|
3421
|
-
var children = root._children
|
|
3422
|
-
|
|
3443
|
+
var children = root._children;
|
|
3444
|
+
var debugInfo = root._debugInfo;
|
|
3445
|
+
if (0 === debugInfo.length && "fulfilled" === root.status) {
|
|
3446
|
+
var resolvedValue = resolveLazy(root.value);
|
|
3447
|
+
"object" === typeof resolvedValue &&
|
|
3448
|
+
null !== resolvedValue &&
|
|
3449
|
+
(isArrayImpl(resolvedValue) ||
|
|
3450
|
+
"function" === typeof resolvedValue[ASYNC_ITERATOR] ||
|
|
3451
|
+
resolvedValue.$$typeof === REACT_ELEMENT_TYPE ||
|
|
3452
|
+
resolvedValue.$$typeof === REACT_LAZY_TYPE) &&
|
|
3453
|
+
isArrayImpl(resolvedValue._debugInfo) &&
|
|
3454
|
+
(debugInfo = resolvedValue._debugInfo);
|
|
3455
|
+
}
|
|
3423
3456
|
if (debugInfo) {
|
|
3424
3457
|
for (var startTime$jscomp$0 = 0, i = 0; i < debugInfo.length; i++) {
|
|
3425
3458
|
var info = debugInfo[i];
|
|
@@ -3511,6 +3544,7 @@
|
|
|
3511
3544
|
void 0 === env
|
|
3512
3545
|
? name
|
|
3513
3546
|
: name + " [" + env + "]",
|
|
3547
|
+
measureName = "\u200b" + entryName$jscomp$0,
|
|
3514
3548
|
properties = [
|
|
3515
3549
|
[
|
|
3516
3550
|
"Error",
|
|
@@ -3536,7 +3570,7 @@
|
|
|
3536
3570
|
0,
|
|
3537
3571
|
""
|
|
3538
3572
|
);
|
|
3539
|
-
performance.measure(
|
|
3573
|
+
performance.measure(measureName, {
|
|
3540
3574
|
start: 0 > startTime$jscomp$2 ? 0 : startTime$jscomp$2,
|
|
3541
3575
|
end: childrenEndTime$jscomp$1,
|
|
3542
3576
|
detail: {
|
|
@@ -3549,6 +3583,7 @@
|
|
|
3549
3583
|
}
|
|
3550
3584
|
}
|
|
3551
3585
|
});
|
|
3586
|
+
performance.clearMeasures(measureName);
|
|
3552
3587
|
}
|
|
3553
3588
|
} else {
|
|
3554
3589
|
var componentInfo$jscomp$3 = componentInfo$jscomp$1,
|
|
@@ -3580,11 +3615,12 @@
|
|
|
3580
3615
|
? "primary-dark"
|
|
3581
3616
|
: "secondary-dark"
|
|
3582
3617
|
: "error",
|
|
3583
|
-
|
|
3584
|
-
|
|
3618
|
+
debugTask$jscomp$0 = componentInfo$jscomp$3.debugTask,
|
|
3619
|
+
measureName$jscomp$0 =
|
|
3620
|
+
"\u200b" +
|
|
3621
|
+
(isPrimaryEnv || void 0 === env$jscomp$0
|
|
3585
3622
|
? name$jscomp$0
|
|
3586
|
-
: name$jscomp$0 + " [" + env$jscomp$0 + "]"
|
|
3587
|
-
debugTask$jscomp$0 = componentInfo$jscomp$3.debugTask;
|
|
3623
|
+
: name$jscomp$0 + " [" + env$jscomp$0 + "]");
|
|
3588
3624
|
if (debugTask$jscomp$0) {
|
|
3589
3625
|
var properties$jscomp$0 = [];
|
|
3590
3626
|
null != componentInfo$jscomp$3.key &&
|
|
@@ -3605,7 +3641,7 @@
|
|
|
3605
3641
|
debugTask$jscomp$0.run(
|
|
3606
3642
|
performance.measure.bind(
|
|
3607
3643
|
performance,
|
|
3608
|
-
|
|
3644
|
+
measureName$jscomp$0,
|
|
3609
3645
|
{
|
|
3610
3646
|
start:
|
|
3611
3647
|
0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3,
|
|
@@ -3621,9 +3657,10 @@
|
|
|
3621
3657
|
}
|
|
3622
3658
|
)
|
|
3623
3659
|
);
|
|
3660
|
+
performance.clearMeasures(measureName$jscomp$0);
|
|
3624
3661
|
} else
|
|
3625
3662
|
console.timeStamp(
|
|
3626
|
-
|
|
3663
|
+
measureName$jscomp$0,
|
|
3627
3664
|
0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3,
|
|
3628
3665
|
childrenEndTime$jscomp$2,
|
|
3629
3666
|
trackNames[trackIdx$jscomp$2],
|
|
@@ -3665,7 +3702,7 @@
|
|
|
3665
3702
|
error$jscomp$0 = thenable.reason;
|
|
3666
3703
|
if (supportsUserTiming && 0 < endTime$jscomp$0) {
|
|
3667
3704
|
var description = getIODescription(error$jscomp$0),
|
|
3668
|
-
entryName$jscomp$
|
|
3705
|
+
entryName$jscomp$1 =
|
|
3669
3706
|
"await " +
|
|
3670
3707
|
getIOShortName(
|
|
3671
3708
|
asyncInfo$jscomp$0.awaited,
|
|
@@ -3697,7 +3734,7 @@
|
|
|
3697
3734
|
debugTask$jscomp$1.run(
|
|
3698
3735
|
performance.measure.bind(
|
|
3699
3736
|
performance,
|
|
3700
|
-
entryName$jscomp$
|
|
3737
|
+
entryName$jscomp$1,
|
|
3701
3738
|
{
|
|
3702
3739
|
start:
|
|
3703
3740
|
0 > startTime$jscomp$4
|
|
@@ -3716,9 +3753,10 @@
|
|
|
3716
3753
|
}
|
|
3717
3754
|
)
|
|
3718
3755
|
);
|
|
3756
|
+
performance.clearMeasures(entryName$jscomp$1);
|
|
3719
3757
|
} else
|
|
3720
3758
|
console.timeStamp(
|
|
3721
|
-
entryName$jscomp$
|
|
3759
|
+
entryName$jscomp$1,
|
|
3722
3760
|
0 > startTime$jscomp$4 ? 0 : startTime$jscomp$4,
|
|
3723
3761
|
endTime$jscomp$0,
|
|
3724
3762
|
trackNames[trackIdx$jscomp$3],
|
|
@@ -3764,10 +3802,11 @@
|
|
|
3764
3802
|
if (supportsUserTiming) {
|
|
3765
3803
|
var env$jscomp$2 = componentInfo$jscomp$4.env,
|
|
3766
3804
|
name$jscomp$1 = componentInfo$jscomp$4.name,
|
|
3767
|
-
entryName$jscomp$
|
|
3805
|
+
entryName$jscomp$2 =
|
|
3768
3806
|
env$jscomp$2 === _env || void 0 === env$jscomp$2
|
|
3769
3807
|
? name$jscomp$1
|
|
3770
3808
|
: name$jscomp$1 + " [" + env$jscomp$2 + "]",
|
|
3809
|
+
measureName$jscomp$1 = "\u200b" + entryName$jscomp$2,
|
|
3771
3810
|
properties$jscomp$2 = [
|
|
3772
3811
|
[
|
|
3773
3812
|
"Aborted",
|
|
@@ -3789,7 +3828,7 @@
|
|
|
3789
3828
|
0,
|
|
3790
3829
|
""
|
|
3791
3830
|
);
|
|
3792
|
-
performance.measure(
|
|
3831
|
+
performance.measure(measureName$jscomp$1, {
|
|
3793
3832
|
start: 0 > startTime$jscomp$5 ? 0 : startTime$jscomp$5,
|
|
3794
3833
|
end: childrenEndTime$jscomp$3,
|
|
3795
3834
|
detail: {
|
|
@@ -3797,11 +3836,12 @@
|
|
|
3797
3836
|
color: "warning",
|
|
3798
3837
|
track: trackNames[trackIdx$jscomp$4],
|
|
3799
3838
|
trackGroup: "Server Components \u269b",
|
|
3800
|
-
tooltipText: entryName$jscomp$
|
|
3839
|
+
tooltipText: entryName$jscomp$2 + " Aborted",
|
|
3801
3840
|
properties: properties$jscomp$2
|
|
3802
3841
|
}
|
|
3803
3842
|
}
|
|
3804
3843
|
});
|
|
3844
|
+
performance.clearMeasures(measureName$jscomp$1);
|
|
3805
3845
|
}
|
|
3806
3846
|
componentEndTime = time;
|
|
3807
3847
|
result.component = _componentInfo;
|
|
@@ -3821,7 +3861,7 @@
|
|
|
3821
3861
|
endTime$jscomp$1 = endTime,
|
|
3822
3862
|
rootEnv$jscomp$0 = _env2;
|
|
3823
3863
|
if (supportsUserTiming && 0 < endTime$jscomp$1) {
|
|
3824
|
-
var entryName$jscomp$
|
|
3864
|
+
var entryName$jscomp$3 =
|
|
3825
3865
|
"await " +
|
|
3826
3866
|
getIOShortName(
|
|
3827
3867
|
asyncInfo$jscomp$1.awaited,
|
|
@@ -3843,7 +3883,7 @@
|
|
|
3843
3883
|
debugTask$jscomp$2.run(
|
|
3844
3884
|
performance.measure.bind(
|
|
3845
3885
|
performance,
|
|
3846
|
-
entryName$jscomp$
|
|
3886
|
+
entryName$jscomp$3,
|
|
3847
3887
|
{
|
|
3848
3888
|
start:
|
|
3849
3889
|
0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6,
|
|
@@ -3865,9 +3905,10 @@
|
|
|
3865
3905
|
}
|
|
3866
3906
|
)
|
|
3867
3907
|
);
|
|
3908
|
+
performance.clearMeasures(entryName$jscomp$3);
|
|
3868
3909
|
} else
|
|
3869
3910
|
console.timeStamp(
|
|
3870
|
-
entryName$jscomp$
|
|
3911
|
+
entryName$jscomp$3,
|
|
3871
3912
|
0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6,
|
|
3872
3913
|
endTime$jscomp$1,
|
|
3873
3914
|
trackNames[trackIdx$jscomp$5],
|
|
@@ -4113,20 +4154,20 @@
|
|
|
4113
4154
|
var error = resolveErrorDev(response, row);
|
|
4114
4155
|
error.digest = row.digest;
|
|
4115
4156
|
chunk
|
|
4116
|
-
? (resolveChunkDebugInfo(streamState, chunk),
|
|
4157
|
+
? (resolveChunkDebugInfo(response, streamState, chunk),
|
|
4117
4158
|
triggerErrorOnChunk(response, chunk, error))
|
|
4118
|
-
: ((
|
|
4119
|
-
resolveChunkDebugInfo(streamState,
|
|
4120
|
-
tag.set(id,
|
|
4159
|
+
: ((row = new ReactPromise("rejected", null, error)),
|
|
4160
|
+
resolveChunkDebugInfo(response, streamState, row),
|
|
4161
|
+
tag.set(id, row));
|
|
4121
4162
|
break;
|
|
4122
4163
|
case 84:
|
|
4123
4164
|
tag = response._chunks;
|
|
4124
4165
|
(chunk = tag.get(id)) && "pending" !== chunk.status
|
|
4125
4166
|
? chunk.reason.enqueueValue(row)
|
|
4126
4167
|
: (chunk && releasePendingChunk(response, chunk),
|
|
4127
|
-
(
|
|
4128
|
-
resolveChunkDebugInfo(streamState,
|
|
4129
|
-
tag.set(id,
|
|
4168
|
+
(row = new ReactPromise("fulfilled", row, null)),
|
|
4169
|
+
resolveChunkDebugInfo(response, streamState, row),
|
|
4170
|
+
tag.set(id, row));
|
|
4130
4171
|
break;
|
|
4131
4172
|
case 78:
|
|
4132
4173
|
response._timeOrigin = +row - performance.timeOrigin;
|
|
@@ -4192,11 +4233,11 @@
|
|
|
4192
4233
|
} else
|
|
4193
4234
|
(tag = response._chunks),
|
|
4194
4235
|
(chunk = tag.get(id))
|
|
4195
|
-
? (resolveChunkDebugInfo(streamState, chunk),
|
|
4236
|
+
? (resolveChunkDebugInfo(response, streamState, chunk),
|
|
4196
4237
|
resolveModelChunk(response, chunk, row))
|
|
4197
|
-
: ((
|
|
4198
|
-
resolveChunkDebugInfo(streamState,
|
|
4199
|
-
tag.set(id,
|
|
4238
|
+
: ((row = createResolvedModelChunk(response, row)),
|
|
4239
|
+
resolveChunkDebugInfo(response, streamState, row),
|
|
4240
|
+
tag.set(id, row));
|
|
4200
4241
|
}
|
|
4201
4242
|
}
|
|
4202
4243
|
function processBinaryChunk(weakResponse, streamState, chunk) {
|
|
@@ -4774,10 +4815,10 @@
|
|
|
4774
4815
|
return hook.checkDCE ? !0 : !1;
|
|
4775
4816
|
})({
|
|
4776
4817
|
bundleType: 1,
|
|
4777
|
-
version: "19.3.0-canary-
|
|
4818
|
+
version: "19.3.0-canary-56e84692-20251014",
|
|
4778
4819
|
rendererPackageName: "react-server-dom-parcel",
|
|
4779
4820
|
currentDispatcherRef: ReactSharedInternals,
|
|
4780
|
-
reconcilerVersion: "19.3.0-canary-
|
|
4821
|
+
reconcilerVersion: "19.3.0-canary-56e84692-20251014",
|
|
4781
4822
|
getCurrentComponentInfo: function () {
|
|
4782
4823
|
return currentOwnerInDEV;
|
|
4783
4824
|
}
|