react-markup 0.0.0-experimental-d7215b49-20251013 → 0.0.0-experimental-5f2b5718-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.
|
@@ -3228,10 +3228,11 @@
|
|
|
3228
3228
|
parseStackTrace(ioInfo$jscomp$0.debugStack, 1)
|
|
3229
3229
|
)
|
|
3230
3230
|
: ioInfo$jscomp$0.stack;
|
|
3231
|
+
var env = ioInfo$jscomp$0.env;
|
|
3232
|
+
null == env && (env = (0, request.environmentName)());
|
|
3231
3233
|
var request$jscomp$0 = request,
|
|
3232
3234
|
id$jscomp$1 = id$jscomp$0,
|
|
3233
3235
|
value = ioInfo$jscomp$0.value,
|
|
3234
|
-
env = ioInfo$jscomp$0.env,
|
|
3235
3236
|
objectLimit = 10;
|
|
3236
3237
|
debugStack && (objectLimit += debugStack.length);
|
|
3237
3238
|
var debugIOInfo = {
|
|
@@ -3243,12 +3244,12 @@
|
|
|
3243
3244
|
null != debugStack && (debugIOInfo.stack = debugStack);
|
|
3244
3245
|
null != owner && (debugIOInfo.owner = owner);
|
|
3245
3246
|
void 0 !== value && (debugIOInfo.value = value);
|
|
3246
|
-
|
|
3247
|
+
env = serializeDebugModel(
|
|
3247
3248
|
request$jscomp$0,
|
|
3248
3249
|
objectLimit,
|
|
3249
3250
|
debugIOInfo
|
|
3250
3251
|
);
|
|
3251
|
-
id$jscomp$1 = id$jscomp$1.toString(16) + ":J" +
|
|
3252
|
+
id$jscomp$1 = id$jscomp$1.toString(16) + ":J" + env + "\n";
|
|
3252
3253
|
request$jscomp$0.completedDebugChunks.push(id$jscomp$1);
|
|
3253
3254
|
request.writtenDebugObjects.set(
|
|
3254
3255
|
ioInfo$jscomp$0,
|
|
@@ -3265,7 +3266,10 @@
|
|
|
3265
3266
|
)
|
|
3266
3267
|
: info.stack;
|
|
3267
3268
|
ioInfo = { awaited: ioInfo };
|
|
3268
|
-
|
|
3269
|
+
ioInfo.env =
|
|
3270
|
+
null != info.env
|
|
3271
|
+
? info.env
|
|
3272
|
+
: (0, request$jscomp$1.environmentName)();
|
|
3269
3273
|
null != info.owner && (ioInfo.owner = info.owner);
|
|
3270
3274
|
null != request && (ioInfo.stack = request);
|
|
3271
3275
|
request$jscomp$1.pendingChunks++;
|
|
@@ -4857,6 +4861,7 @@
|
|
|
4857
4861
|
}
|
|
4858
4862
|
})
|
|
4859
4863
|
);
|
|
4864
|
+
performance.clearMeasures(entryName);
|
|
4860
4865
|
} else
|
|
4861
4866
|
console.timeStamp(
|
|
4862
4867
|
entryName,
|
|
@@ -4875,6 +4880,7 @@
|
|
|
4875
4880
|
var description = getIODescription(error),
|
|
4876
4881
|
entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv),
|
|
4877
4882
|
debugTask = ioInfo.debugTask;
|
|
4883
|
+
entryName = "\u200b" + entryName;
|
|
4878
4884
|
debugTask
|
|
4879
4885
|
? ((error = [
|
|
4880
4886
|
[
|
|
@@ -4890,7 +4896,7 @@
|
|
|
4890
4896
|
getIOLongName(ioInfo, description, ioInfo.env, rootEnv) +
|
|
4891
4897
|
" Rejected"),
|
|
4892
4898
|
debugTask.run(
|
|
4893
|
-
performance.measure.bind(performance,
|
|
4899
|
+
performance.measure.bind(performance, entryName, {
|
|
4894
4900
|
start: 0 > startTime ? 0 : startTime,
|
|
4895
4901
|
end: endTime,
|
|
4896
4902
|
detail: {
|
|
@@ -4902,7 +4908,8 @@
|
|
|
4902
4908
|
}
|
|
4903
4909
|
}
|
|
4904
4910
|
})
|
|
4905
|
-
)
|
|
4911
|
+
),
|
|
4912
|
+
performance.clearMeasures(entryName))
|
|
4906
4913
|
: console.timeStamp(
|
|
4907
4914
|
entryName,
|
|
4908
4915
|
0 > startTime ? 0 : startTime,
|
|
@@ -4921,6 +4928,7 @@
|
|
|
4921
4928
|
entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv),
|
|
4922
4929
|
color = getIOColor(entryName),
|
|
4923
4930
|
debugTask = ioInfo.debugTask;
|
|
4931
|
+
entryName = "\u200b" + entryName;
|
|
4924
4932
|
if (debugTask) {
|
|
4925
4933
|
var properties = [];
|
|
4926
4934
|
"object" === typeof value && null !== value
|
|
@@ -4929,7 +4937,7 @@
|
|
|
4929
4937
|
addValueToProperties("Resolved", value, properties, 0, "");
|
|
4930
4938
|
ioInfo = getIOLongName(ioInfo, description, ioInfo.env, rootEnv);
|
|
4931
4939
|
debugTask.run(
|
|
4932
|
-
performance.measure.bind(performance,
|
|
4940
|
+
performance.measure.bind(performance, entryName, {
|
|
4933
4941
|
start: 0 > startTime ? 0 : startTime,
|
|
4934
4942
|
end: endTime,
|
|
4935
4943
|
detail: {
|
|
@@ -4942,6 +4950,7 @@
|
|
|
4942
4950
|
}
|
|
4943
4951
|
})
|
|
4944
4952
|
);
|
|
4953
|
+
performance.clearMeasures(entryName);
|
|
4945
4954
|
} else
|
|
4946
4955
|
console.timeStamp(
|
|
4947
4956
|
entryName,
|
|
@@ -5507,7 +5516,12 @@
|
|
|
5507
5516
|
(fulfilledChunk.status = "fulfilled"),
|
|
5508
5517
|
(fulfilledChunk.value = handler.value),
|
|
5509
5518
|
(fulfilledChunk.reason = handler.reason),
|
|
5510
|
-
null !== key
|
|
5519
|
+
null !== key
|
|
5520
|
+
? wakeChunk(key, handler.value, fulfilledChunk)
|
|
5521
|
+
: moveDebugInfoFromChunkToInnerValue(
|
|
5522
|
+
fulfilledChunk,
|
|
5523
|
+
handler.value
|
|
5524
|
+
)));
|
|
5511
5525
|
}
|
|
5512
5526
|
function rejectReference(reference, error) {
|
|
5513
5527
|
var handler = reference.handler;
|
|
@@ -6031,6 +6045,9 @@
|
|
|
6031
6045
|
'Trying to call a function from "use server" but the callServer option was not implemented in your router runtime.'
|
|
6032
6046
|
);
|
|
6033
6047
|
}
|
|
6048
|
+
function markIOStarted() {
|
|
6049
|
+
this._debugIOStarted = !0;
|
|
6050
|
+
}
|
|
6034
6051
|
function ResponseInstance(
|
|
6035
6052
|
bundlerConfig,
|
|
6036
6053
|
serverReferenceConfig,
|
|
@@ -6073,6 +6090,8 @@
|
|
|
6073
6090
|
'"use ' + environmentName.toLowerCase() + '"'
|
|
6074
6091
|
));
|
|
6075
6092
|
this._debugStartTime = performance.now();
|
|
6093
|
+
this._debugIOStarted = !1;
|
|
6094
|
+
setTimeout(markIOStarted.bind(this), 0);
|
|
6076
6095
|
this._debugFindSourceMapURL = findSourceMapURL;
|
|
6077
6096
|
this._debugChannel = debugChannel;
|
|
6078
6097
|
this._blockedConsole = null;
|
|
@@ -6110,7 +6129,7 @@
|
|
|
6110
6129
|
streamState._debugTargetChunkSize = MIN_CHUNK_SIZE;
|
|
6111
6130
|
return streamState;
|
|
6112
6131
|
}
|
|
6113
|
-
function
|
|
6132
|
+
function addAsyncInfo(chunk, asyncInfo) {
|
|
6114
6133
|
var value = resolveLazy(chunk.value);
|
|
6115
6134
|
"object" !== typeof value ||
|
|
6116
6135
|
null === value ||
|
|
@@ -6118,29 +6137,30 @@
|
|
|
6118
6137
|
"function" !== typeof value[ASYNC_ITERATOR] &&
|
|
6119
6138
|
value.$$typeof !== REACT_ELEMENT_TYPE &&
|
|
6120
6139
|
value.$$typeof !== REACT_LAZY_TYPE)
|
|
6121
|
-
? chunk._debugInfo.push
|
|
6140
|
+
? chunk._debugInfo.push(asyncInfo)
|
|
6122
6141
|
: isArrayImpl(value._debugInfo)
|
|
6123
|
-
? value._debugInfo.push
|
|
6142
|
+
? value._debugInfo.push(asyncInfo)
|
|
6124
6143
|
: Object.defineProperty(value, "_debugInfo", {
|
|
6125
6144
|
configurable: !1,
|
|
6126
6145
|
enumerable: !1,
|
|
6127
6146
|
writable: !0,
|
|
6128
|
-
value:
|
|
6147
|
+
value: [asyncInfo]
|
|
6129
6148
|
});
|
|
6130
6149
|
}
|
|
6131
|
-
function resolveChunkDebugInfo(streamState, chunk) {
|
|
6132
|
-
|
|
6133
|
-
|
|
6134
|
-
|
|
6135
|
-
|
|
6136
|
-
|
|
6150
|
+
function resolveChunkDebugInfo(response, streamState, chunk) {
|
|
6151
|
+
response._debugIOStarted &&
|
|
6152
|
+
((response = { awaited: streamState._debugInfo }),
|
|
6153
|
+
"pending" === chunk.status || "blocked" === chunk.status
|
|
6154
|
+
? ((response = addAsyncInfo.bind(null, chunk, response)),
|
|
6155
|
+
chunk.then(response, response))
|
|
6156
|
+
: addAsyncInfo(chunk, response));
|
|
6137
6157
|
}
|
|
6138
6158
|
function resolveStream(response, id, stream, controller, streamState) {
|
|
6139
6159
|
var chunks = response._chunks,
|
|
6140
6160
|
chunk = chunks.get(id);
|
|
6141
6161
|
if (chunk) {
|
|
6142
6162
|
if (
|
|
6143
|
-
(resolveChunkDebugInfo(streamState, chunk),
|
|
6163
|
+
(resolveChunkDebugInfo(response, streamState, chunk),
|
|
6144
6164
|
"pending" === chunk.status)
|
|
6145
6165
|
) {
|
|
6146
6166
|
releasePendingChunk(response, chunk);
|
|
@@ -6172,12 +6192,14 @@
|
|
|
6172
6192
|
chunk.status = "fulfilled";
|
|
6173
6193
|
chunk.value = stream;
|
|
6174
6194
|
chunk.reason = controller;
|
|
6175
|
-
null !== id
|
|
6195
|
+
null !== id
|
|
6196
|
+
? wakeChunk(id, chunk.value, chunk)
|
|
6197
|
+
: moveDebugInfoFromChunkToInnerValue(chunk, stream);
|
|
6176
6198
|
}
|
|
6177
6199
|
} else
|
|
6178
|
-
(
|
|
6179
|
-
resolveChunkDebugInfo(streamState,
|
|
6180
|
-
chunks.set(id,
|
|
6200
|
+
(stream = new ReactPromise("fulfilled", stream, controller)),
|
|
6201
|
+
resolveChunkDebugInfo(response, streamState, stream),
|
|
6202
|
+
chunks.set(id, stream);
|
|
6181
6203
|
}
|
|
6182
6204
|
function startReadableStream(response, id, type, streamState) {
|
|
6183
6205
|
var controller = null;
|
|
@@ -6758,8 +6780,19 @@
|
|
|
6758
6780
|
previousResult.track = trackIdx$jscomp$6;
|
|
6759
6781
|
return previousResult;
|
|
6760
6782
|
}
|
|
6761
|
-
var children = root._children
|
|
6762
|
-
|
|
6783
|
+
var children = root._children;
|
|
6784
|
+
var debugInfo = root._debugInfo;
|
|
6785
|
+
if (0 === debugInfo.length && "fulfilled" === root.status) {
|
|
6786
|
+
var resolvedValue = resolveLazy(root.value);
|
|
6787
|
+
"object" === typeof resolvedValue &&
|
|
6788
|
+
null !== resolvedValue &&
|
|
6789
|
+
(isArrayImpl(resolvedValue) ||
|
|
6790
|
+
"function" === typeof resolvedValue[ASYNC_ITERATOR] ||
|
|
6791
|
+
resolvedValue.$$typeof === REACT_ELEMENT_TYPE ||
|
|
6792
|
+
resolvedValue.$$typeof === REACT_LAZY_TYPE) &&
|
|
6793
|
+
isArrayImpl(resolvedValue._debugInfo) &&
|
|
6794
|
+
(debugInfo = resolvedValue._debugInfo);
|
|
6795
|
+
}
|
|
6763
6796
|
if (debugInfo) {
|
|
6764
6797
|
for (var startTime$jscomp$0 = 0, i = 0; i < debugInfo.length; i++) {
|
|
6765
6798
|
var info = debugInfo[i];
|
|
@@ -6851,6 +6884,7 @@
|
|
|
6851
6884
|
void 0 === env
|
|
6852
6885
|
? name
|
|
6853
6886
|
: name + " [" + env + "]",
|
|
6887
|
+
measureName = "\u200b" + entryName$jscomp$0,
|
|
6854
6888
|
properties = [
|
|
6855
6889
|
[
|
|
6856
6890
|
"Error",
|
|
@@ -6876,7 +6910,7 @@
|
|
|
6876
6910
|
0,
|
|
6877
6911
|
""
|
|
6878
6912
|
);
|
|
6879
|
-
performance.measure(
|
|
6913
|
+
performance.measure(measureName, {
|
|
6880
6914
|
start: 0 > startTime$jscomp$2 ? 0 : startTime$jscomp$2,
|
|
6881
6915
|
end: childrenEndTime$jscomp$1,
|
|
6882
6916
|
detail: {
|
|
@@ -6889,6 +6923,7 @@
|
|
|
6889
6923
|
}
|
|
6890
6924
|
}
|
|
6891
6925
|
});
|
|
6926
|
+
performance.clearMeasures(measureName);
|
|
6892
6927
|
}
|
|
6893
6928
|
} else {
|
|
6894
6929
|
var componentInfo$jscomp$3 = componentInfo$jscomp$1,
|
|
@@ -6920,11 +6955,12 @@
|
|
|
6920
6955
|
? "primary-dark"
|
|
6921
6956
|
: "secondary-dark"
|
|
6922
6957
|
: "error",
|
|
6923
|
-
|
|
6924
|
-
|
|
6958
|
+
debugTask$jscomp$0 = componentInfo$jscomp$3.debugTask,
|
|
6959
|
+
measureName$jscomp$0 =
|
|
6960
|
+
"\u200b" +
|
|
6961
|
+
(isPrimaryEnv || void 0 === env$jscomp$0
|
|
6925
6962
|
? name$jscomp$0
|
|
6926
|
-
: name$jscomp$0 + " [" + env$jscomp$0 + "]"
|
|
6927
|
-
debugTask$jscomp$0 = componentInfo$jscomp$3.debugTask;
|
|
6963
|
+
: name$jscomp$0 + " [" + env$jscomp$0 + "]");
|
|
6928
6964
|
if (debugTask$jscomp$0) {
|
|
6929
6965
|
var properties$jscomp$0 = [];
|
|
6930
6966
|
null != componentInfo$jscomp$3.key &&
|
|
@@ -6945,7 +6981,7 @@
|
|
|
6945
6981
|
debugTask$jscomp$0.run(
|
|
6946
6982
|
performance.measure.bind(
|
|
6947
6983
|
performance,
|
|
6948
|
-
|
|
6984
|
+
measureName$jscomp$0,
|
|
6949
6985
|
{
|
|
6950
6986
|
start:
|
|
6951
6987
|
0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3,
|
|
@@ -6961,9 +6997,10 @@
|
|
|
6961
6997
|
}
|
|
6962
6998
|
)
|
|
6963
6999
|
);
|
|
7000
|
+
performance.clearMeasures(measureName$jscomp$0);
|
|
6964
7001
|
} else
|
|
6965
7002
|
console.timeStamp(
|
|
6966
|
-
|
|
7003
|
+
measureName$jscomp$0,
|
|
6967
7004
|
0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3,
|
|
6968
7005
|
childrenEndTime$jscomp$2,
|
|
6969
7006
|
trackNames[trackIdx$jscomp$2],
|
|
@@ -7005,7 +7042,7 @@
|
|
|
7005
7042
|
error$jscomp$0 = thenable.reason;
|
|
7006
7043
|
if (supportsUserTiming && 0 < endTime$jscomp$0) {
|
|
7007
7044
|
var description = getIODescription(error$jscomp$0),
|
|
7008
|
-
entryName$jscomp$
|
|
7045
|
+
entryName$jscomp$1 =
|
|
7009
7046
|
"await " +
|
|
7010
7047
|
getIOShortName(
|
|
7011
7048
|
asyncInfo$jscomp$0.awaited,
|
|
@@ -7037,7 +7074,7 @@
|
|
|
7037
7074
|
debugTask$jscomp$1.run(
|
|
7038
7075
|
performance.measure.bind(
|
|
7039
7076
|
performance,
|
|
7040
|
-
entryName$jscomp$
|
|
7077
|
+
entryName$jscomp$1,
|
|
7041
7078
|
{
|
|
7042
7079
|
start:
|
|
7043
7080
|
0 > startTime$jscomp$4
|
|
@@ -7056,9 +7093,10 @@
|
|
|
7056
7093
|
}
|
|
7057
7094
|
)
|
|
7058
7095
|
);
|
|
7096
|
+
performance.clearMeasures(entryName$jscomp$1);
|
|
7059
7097
|
} else
|
|
7060
7098
|
console.timeStamp(
|
|
7061
|
-
entryName$jscomp$
|
|
7099
|
+
entryName$jscomp$1,
|
|
7062
7100
|
0 > startTime$jscomp$4 ? 0 : startTime$jscomp$4,
|
|
7063
7101
|
endTime$jscomp$0,
|
|
7064
7102
|
trackNames[trackIdx$jscomp$3],
|
|
@@ -7104,10 +7142,11 @@
|
|
|
7104
7142
|
if (supportsUserTiming) {
|
|
7105
7143
|
var env$jscomp$2 = componentInfo$jscomp$4.env,
|
|
7106
7144
|
name$jscomp$1 = componentInfo$jscomp$4.name,
|
|
7107
|
-
entryName$jscomp$
|
|
7145
|
+
entryName$jscomp$2 =
|
|
7108
7146
|
env$jscomp$2 === _env || void 0 === env$jscomp$2
|
|
7109
7147
|
? name$jscomp$1
|
|
7110
7148
|
: name$jscomp$1 + " [" + env$jscomp$2 + "]",
|
|
7149
|
+
measureName$jscomp$1 = "\u200b" + entryName$jscomp$2,
|
|
7111
7150
|
properties$jscomp$2 = [
|
|
7112
7151
|
[
|
|
7113
7152
|
"Aborted",
|
|
@@ -7129,7 +7168,7 @@
|
|
|
7129
7168
|
0,
|
|
7130
7169
|
""
|
|
7131
7170
|
);
|
|
7132
|
-
performance.measure(
|
|
7171
|
+
performance.measure(measureName$jscomp$1, {
|
|
7133
7172
|
start: 0 > startTime$jscomp$5 ? 0 : startTime$jscomp$5,
|
|
7134
7173
|
end: childrenEndTime$jscomp$3,
|
|
7135
7174
|
detail: {
|
|
@@ -7137,11 +7176,12 @@
|
|
|
7137
7176
|
color: "warning",
|
|
7138
7177
|
track: trackNames[trackIdx$jscomp$4],
|
|
7139
7178
|
trackGroup: "Server Components \u269b",
|
|
7140
|
-
tooltipText: entryName$jscomp$
|
|
7179
|
+
tooltipText: entryName$jscomp$2 + " Aborted",
|
|
7141
7180
|
properties: properties$jscomp$2
|
|
7142
7181
|
}
|
|
7143
7182
|
}
|
|
7144
7183
|
});
|
|
7184
|
+
performance.clearMeasures(measureName$jscomp$1);
|
|
7145
7185
|
}
|
|
7146
7186
|
componentEndTime = time;
|
|
7147
7187
|
result.component = _componentInfo;
|
|
@@ -7161,7 +7201,7 @@
|
|
|
7161
7201
|
endTime$jscomp$1 = endTime,
|
|
7162
7202
|
rootEnv$jscomp$0 = _env2;
|
|
7163
7203
|
if (supportsUserTiming && 0 < endTime$jscomp$1) {
|
|
7164
|
-
var entryName$jscomp$
|
|
7204
|
+
var entryName$jscomp$3 =
|
|
7165
7205
|
"await " +
|
|
7166
7206
|
getIOShortName(
|
|
7167
7207
|
asyncInfo$jscomp$1.awaited,
|
|
@@ -7183,7 +7223,7 @@
|
|
|
7183
7223
|
debugTask$jscomp$2.run(
|
|
7184
7224
|
performance.measure.bind(
|
|
7185
7225
|
performance,
|
|
7186
|
-
entryName$jscomp$
|
|
7226
|
+
entryName$jscomp$3,
|
|
7187
7227
|
{
|
|
7188
7228
|
start:
|
|
7189
7229
|
0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6,
|
|
@@ -7205,9 +7245,10 @@
|
|
|
7205
7245
|
}
|
|
7206
7246
|
)
|
|
7207
7247
|
);
|
|
7248
|
+
performance.clearMeasures(entryName$jscomp$3);
|
|
7208
7249
|
} else
|
|
7209
7250
|
console.timeStamp(
|
|
7210
|
-
entryName$jscomp$
|
|
7251
|
+
entryName$jscomp$3,
|
|
7211
7252
|
0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6,
|
|
7212
7253
|
endTime$jscomp$1,
|
|
7213
7254
|
trackNames[trackIdx$jscomp$5],
|
|
@@ -17034,11 +17075,15 @@
|
|
|
17034
17075
|
endTime = resolveErrorDev(i, newByteLength);
|
|
17035
17076
|
endTime.digest = newByteLength.digest;
|
|
17036
17077
|
previousEndTime
|
|
17037
|
-
? (resolveChunkDebugInfo(
|
|
17078
|
+
? (resolveChunkDebugInfo(
|
|
17079
|
+
i,
|
|
17080
|
+
rowLength,
|
|
17081
|
+
previousEndTime
|
|
17082
|
+
),
|
|
17038
17083
|
triggerErrorOnChunk(i, previousEndTime, endTime))
|
|
17039
|
-
: ((
|
|
17040
|
-
resolveChunkDebugInfo(rowLength,
|
|
17041
|
-
rowTag.set(rowID,
|
|
17084
|
+
: ((endTime = createErrorChunk(i, endTime)),
|
|
17085
|
+
resolveChunkDebugInfo(i, rowLength, endTime),
|
|
17086
|
+
rowTag.set(rowID, endTime));
|
|
17042
17087
|
break;
|
|
17043
17088
|
case 84:
|
|
17044
17089
|
rowTag = i._chunks;
|
|
@@ -17047,9 +17092,13 @@
|
|
|
17047
17092
|
? previousEndTime.reason.enqueueValue(endTime)
|
|
17048
17093
|
: (previousEndTime &&
|
|
17049
17094
|
releasePendingChunk(i, previousEndTime),
|
|
17050
|
-
(
|
|
17051
|
-
|
|
17052
|
-
|
|
17095
|
+
(endTime = new ReactPromise(
|
|
17096
|
+
"fulfilled",
|
|
17097
|
+
endTime,
|
|
17098
|
+
null
|
|
17099
|
+
)),
|
|
17100
|
+
resolveChunkDebugInfo(i, rowLength, endTime),
|
|
17101
|
+
rowTag.set(rowID, endTime));
|
|
17053
17102
|
break;
|
|
17054
17103
|
case 78:
|
|
17055
17104
|
i._timeOrigin = +endTime - performance.timeOrigin;
|
|
@@ -17118,11 +17167,15 @@
|
|
|
17118
17167
|
endTime.$$typeof = REACT_POSTPONE_TYPE;
|
|
17119
17168
|
rowTag = i._chunks;
|
|
17120
17169
|
(previousEndTime = rowTag.get(rowID))
|
|
17121
|
-
? (resolveChunkDebugInfo(
|
|
17170
|
+
? (resolveChunkDebugInfo(
|
|
17171
|
+
i,
|
|
17172
|
+
rowLength,
|
|
17173
|
+
previousEndTime
|
|
17174
|
+
),
|
|
17122
17175
|
triggerErrorOnChunk(i, previousEndTime, endTime))
|
|
17123
|
-
: ((
|
|
17124
|
-
resolveChunkDebugInfo(rowLength,
|
|
17125
|
-
rowTag.set(rowID,
|
|
17176
|
+
: ((endTime = createErrorChunk(i, endTime)),
|
|
17177
|
+
resolveChunkDebugInfo(i, rowLength, endTime),
|
|
17178
|
+
rowTag.set(rowID, endTime));
|
|
17126
17179
|
break;
|
|
17127
17180
|
default:
|
|
17128
17181
|
if ("" === endTime) {
|
|
@@ -17145,13 +17198,17 @@
|
|
|
17145
17198
|
(rowTag = i._chunks),
|
|
17146
17199
|
(previousEndTime = rowTag.get(rowID))
|
|
17147
17200
|
? (resolveChunkDebugInfo(
|
|
17201
|
+
i,
|
|
17148
17202
|
rowLength,
|
|
17149
17203
|
previousEndTime
|
|
17150
17204
|
),
|
|
17151
17205
|
resolveModelChunk(i, previousEndTime, endTime))
|
|
17152
|
-
: ((
|
|
17153
|
-
|
|
17154
|
-
|
|
17206
|
+
: ((endTime = createResolvedModelChunk(
|
|
17207
|
+
i,
|
|
17208
|
+
endTime
|
|
17209
|
+
)),
|
|
17210
|
+
resolveChunkDebugInfo(i, rowLength, endTime),
|
|
17211
|
+
rowTag.set(rowID, endTime));
|
|
17155
17212
|
}
|
|
17156
17213
|
i = debugInfo;
|
|
17157
17214
|
3 === rowState && i++;
|
|
@@ -17191,5 +17248,5 @@
|
|
|
17191
17248
|
});
|
|
17192
17249
|
});
|
|
17193
17250
|
};
|
|
17194
|
-
exports.version = "19.3.0-experimental-
|
|
17251
|
+
exports.version = "19.3.0-experimental-5f2b5718-20251014";
|
|
17195
17252
|
})();
|
|
@@ -10064,4 +10064,4 @@ exports.experimental_renderToHTML = function (children, options) {
|
|
|
10064
10064
|
});
|
|
10065
10065
|
});
|
|
10066
10066
|
};
|
|
10067
|
-
exports.version = "19.3.0-experimental-
|
|
10067
|
+
exports.version = "19.3.0-experimental-5f2b5718-20251014";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-markup",
|
|
3
|
-
"version": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-5f2b5718-20251014",
|
|
4
4
|
"description": "React package generating embedded markup such as e-mails with support for Server Components.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://react.dev/",
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"react": "0.0.0-experimental-
|
|
20
|
+
"react": "0.0.0-experimental-5f2b5718-20251014"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"LICENSE",
|