react-markup 0.0.0-experimental-a7a11657-20250708 → 0.0.0-experimental-60b5271a-20250709
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.
|
@@ -136,72 +136,77 @@
|
|
|
136
136
|
);
|
|
137
137
|
});
|
|
138
138
|
}
|
|
139
|
-
function
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
i < structuredStackTrace.length;
|
|
143
|
-
i++
|
|
144
|
-
) {
|
|
139
|
+
function collectStackTracePrivate(error, structuredStackTrace) {
|
|
140
|
+
error = [];
|
|
141
|
+
for (var i = framesToSkip; i < structuredStackTrace.length; i++) {
|
|
145
142
|
var callSite = structuredStackTrace[i],
|
|
146
|
-
|
|
147
|
-
if (
|
|
148
|
-
else if (callSite.isNative())
|
|
143
|
+
name = callSite.getFunctionName() || "<anonymous>";
|
|
144
|
+
if (name.includes("react_stack_bottom_frame")) break;
|
|
145
|
+
else if (callSite.isNative())
|
|
146
|
+
(callSite = callSite.isAsync()),
|
|
147
|
+
error.push([name, "", 0, 0, 0, 0, callSite]);
|
|
149
148
|
else {
|
|
150
|
-
if (callSite.isConstructor())
|
|
149
|
+
if (callSite.isConstructor()) name = "new " + name;
|
|
151
150
|
else if (!callSite.isToplevel()) {
|
|
152
151
|
var callSite$jscomp$0 = callSite;
|
|
153
|
-
|
|
152
|
+
name = callSite$jscomp$0.getTypeName();
|
|
154
153
|
var methodName = callSite$jscomp$0.getMethodName();
|
|
155
154
|
callSite$jscomp$0 = callSite$jscomp$0.getFunctionName();
|
|
156
|
-
var result
|
|
155
|
+
var result = "";
|
|
157
156
|
callSite$jscomp$0
|
|
158
|
-
? (
|
|
157
|
+
? (name &&
|
|
159
158
|
identifierRegExp.test(callSite$jscomp$0) &&
|
|
160
|
-
callSite$jscomp$0 !==
|
|
161
|
-
(result
|
|
162
|
-
(result
|
|
159
|
+
callSite$jscomp$0 !== name &&
|
|
160
|
+
(result += name + "."),
|
|
161
|
+
(result += callSite$jscomp$0),
|
|
163
162
|
!methodName ||
|
|
164
163
|
callSite$jscomp$0 === methodName ||
|
|
165
164
|
callSite$jscomp$0.endsWith("." + methodName) ||
|
|
166
165
|
callSite$jscomp$0.endsWith(" " + methodName) ||
|
|
167
|
-
(result
|
|
168
|
-
: (
|
|
169
|
-
(result
|
|
170
|
-
? result
|
|
171
|
-
: result
|
|
172
|
-
|
|
166
|
+
(result += " [as " + methodName + "]"))
|
|
167
|
+
: (name && (result += name + "."),
|
|
168
|
+
(result = methodName
|
|
169
|
+
? result + methodName
|
|
170
|
+
: result + "<anonymous>"));
|
|
171
|
+
name = result;
|
|
173
172
|
}
|
|
174
|
-
"<anonymous>" ===
|
|
173
|
+
"<anonymous>" === name && (name = "");
|
|
175
174
|
methodName = callSite.getScriptNameOrSourceURL() || "<anonymous>";
|
|
176
|
-
"<anonymous>" === methodName &&
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
175
|
+
"<anonymous>" === methodName &&
|
|
176
|
+
((methodName = ""),
|
|
177
|
+
callSite.isEval() &&
|
|
178
|
+
(callSite$jscomp$0 = callSite.getEvalOrigin()) &&
|
|
179
|
+
(methodName = callSite$jscomp$0.toString() + ", <anonymous>"));
|
|
181
180
|
callSite$jscomp$0 = callSite.getLineNumber() || 0;
|
|
182
|
-
result
|
|
181
|
+
result = callSite.getColumnNumber() || 0;
|
|
183
182
|
var enclosingLine =
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
183
|
+
"function" === typeof callSite.getEnclosingLineNumber
|
|
184
|
+
? callSite.getEnclosingLineNumber() || 0
|
|
185
|
+
: 0,
|
|
186
|
+
enclosingCol =
|
|
187
|
+
"function" === typeof callSite.getEnclosingColumnNumber
|
|
188
|
+
? callSite.getEnclosingColumnNumber() || 0
|
|
189
|
+
: 0;
|
|
190
|
+
callSite = callSite.isAsync();
|
|
191
|
+
error.push([
|
|
192
|
+
name,
|
|
193
193
|
methodName,
|
|
194
194
|
callSite$jscomp$0,
|
|
195
|
-
result
|
|
195
|
+
result,
|
|
196
196
|
enclosingLine,
|
|
197
|
+
enclosingCol,
|
|
197
198
|
callSite
|
|
198
199
|
]);
|
|
199
200
|
}
|
|
200
201
|
}
|
|
202
|
+
collectedStackTrace = error;
|
|
203
|
+
return "";
|
|
204
|
+
}
|
|
205
|
+
function collectStackTrace(error, structuredStackTrace) {
|
|
206
|
+
collectStackTracePrivate(error, structuredStackTrace);
|
|
201
207
|
error = (error.name || "Error") + ": " + (error.message || "");
|
|
202
|
-
for (i = 0; i < structuredStackTrace.length; i++)
|
|
208
|
+
for (var i = 0; i < structuredStackTrace.length; i++)
|
|
203
209
|
error += "\n at " + structuredStackTrace[i].toString();
|
|
204
|
-
collectedStackTrace = result;
|
|
205
210
|
return error;
|
|
206
211
|
}
|
|
207
212
|
function parseStackTrace(error, skipFrames) {
|
|
@@ -218,10 +223,10 @@
|
|
|
218
223
|
}
|
|
219
224
|
if (null !== collectedStackTrace)
|
|
220
225
|
return (
|
|
221
|
-
(
|
|
226
|
+
(stack = collectedStackTrace),
|
|
222
227
|
(collectedStackTrace = null),
|
|
223
|
-
stackTraceCache.set(error,
|
|
224
|
-
|
|
228
|
+
stackTraceCache.set(error, stack),
|
|
229
|
+
stack
|
|
225
230
|
);
|
|
226
231
|
stack.startsWith("Error: react-stack-top-frame\n") &&
|
|
227
232
|
(stack = stack.slice(29));
|
|
@@ -232,8 +237,12 @@
|
|
|
232
237
|
for (existing = []; skipFrames < stack.length; skipFrames++) {
|
|
233
238
|
var parsed = frameRegExp.exec(stack[skipFrames]);
|
|
234
239
|
if (parsed) {
|
|
235
|
-
var name = parsed[1] || ""
|
|
236
|
-
|
|
240
|
+
var name = parsed[1] || "",
|
|
241
|
+
isAsync = "async " === parsed[8];
|
|
242
|
+
"<anonymous>" === name
|
|
243
|
+
? (name = "")
|
|
244
|
+
: name.startsWith("async ") &&
|
|
245
|
+
((name = name.slice(5)), (isAsync = !0));
|
|
237
246
|
var filename = parsed[2] || parsed[5] || "";
|
|
238
247
|
"<anonymous>" === filename && (filename = "");
|
|
239
248
|
existing.push([
|
|
@@ -242,7 +251,8 @@
|
|
|
242
251
|
+(parsed[3] || parsed[6]),
|
|
243
252
|
+(parsed[4] || parsed[7]),
|
|
244
253
|
0,
|
|
245
|
-
0
|
|
254
|
+
0,
|
|
255
|
+
isAsync
|
|
246
256
|
]);
|
|
247
257
|
}
|
|
248
258
|
}
|
|
@@ -846,13 +856,29 @@
|
|
|
846
856
|
var wrapperMethod = function () {
|
|
847
857
|
var request = currentRequest ? currentRequest : null;
|
|
848
858
|
if (("assert" !== methodName || !arguments[0]) && null !== request) {
|
|
849
|
-
|
|
859
|
+
a: {
|
|
860
|
+
var error = Error("react-stack-top-frame");
|
|
861
|
+
collectedStackTrace = null;
|
|
862
|
+
framesToSkip = 1;
|
|
863
|
+
var previousPrepare = Error.prepareStackTrace;
|
|
864
|
+
Error.prepareStackTrace = collectStackTracePrivate;
|
|
865
|
+
try {
|
|
866
|
+
if ("" !== error.stack) {
|
|
867
|
+
var JSCompiler_inline_result = null;
|
|
868
|
+
break a;
|
|
869
|
+
}
|
|
870
|
+
} finally {
|
|
871
|
+
Error.prepareStackTrace = previousPrepare;
|
|
872
|
+
}
|
|
873
|
+
JSCompiler_inline_result = collectedStackTrace;
|
|
874
|
+
}
|
|
875
|
+
JSCompiler_inline_result = filterStackTrace(
|
|
850
876
|
request,
|
|
851
|
-
|
|
877
|
+
JSCompiler_inline_result || []
|
|
852
878
|
);
|
|
853
879
|
request.pendingDebugChunks++;
|
|
854
|
-
|
|
855
|
-
|
|
880
|
+
error = resolveOwner();
|
|
881
|
+
previousPrepare = Array.from(arguments);
|
|
856
882
|
a: {
|
|
857
883
|
var env = 0;
|
|
858
884
|
switch (methodName) {
|
|
@@ -865,35 +891,40 @@
|
|
|
865
891
|
case "assert":
|
|
866
892
|
env = 1;
|
|
867
893
|
}
|
|
868
|
-
var format =
|
|
869
|
-
badge =
|
|
894
|
+
var format = previousPrepare[env],
|
|
895
|
+
badge = previousPrepare[env + 1];
|
|
870
896
|
"string" === typeof format &&
|
|
871
897
|
format.startsWith("[%s] ") &&
|
|
872
898
|
"string" === typeof badge &&
|
|
873
899
|
badge.startsWith(" ") &&
|
|
874
900
|
badge.endsWith(" ")
|
|
875
|
-
? (
|
|
901
|
+
? (previousPrepare.splice(env, 2, format.slice(5)),
|
|
876
902
|
(env = badge.slice(1, badge.length - 1)))
|
|
877
903
|
: (env = null);
|
|
878
904
|
}
|
|
879
905
|
null === env && (env = (0, request.environmentName)());
|
|
880
|
-
null !=
|
|
881
|
-
format = [methodName,
|
|
882
|
-
format.push.apply(format,
|
|
883
|
-
|
|
906
|
+
null != error && outlineComponentInfo(request, error);
|
|
907
|
+
format = [methodName, JSCompiler_inline_result, error, env];
|
|
908
|
+
format.push.apply(format, previousPrepare);
|
|
909
|
+
previousPrepare = serializeDebugModel(
|
|
884
910
|
request,
|
|
885
|
-
(null === request.deferredDebugObjects ? 500 : 10) +
|
|
911
|
+
(null === request.deferredDebugObjects ? 500 : 10) +
|
|
912
|
+
JSCompiler_inline_result.length,
|
|
886
913
|
format
|
|
887
914
|
);
|
|
888
|
-
"[" !==
|
|
889
|
-
(
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
915
|
+
"[" !== previousPrepare[0] &&
|
|
916
|
+
(previousPrepare = serializeDebugModel(
|
|
917
|
+
request,
|
|
918
|
+
10 + JSCompiler_inline_result.length,
|
|
919
|
+
[
|
|
920
|
+
methodName,
|
|
921
|
+
JSCompiler_inline_result,
|
|
922
|
+
error,
|
|
923
|
+
env,
|
|
924
|
+
"Unknown Value: React could not send it from the server."
|
|
925
|
+
]
|
|
926
|
+
));
|
|
927
|
+
request.completedDebugChunks.push(":W" + previousPrepare + "\n");
|
|
897
928
|
}
|
|
898
929
|
return originalMethod.apply(this, arguments);
|
|
899
930
|
};
|
|
@@ -1061,6 +1092,14 @@
|
|
|
1061
1092
|
}
|
|
1062
1093
|
if (request.status === ABORTING$1)
|
|
1063
1094
|
return emitDebugHaltChunk(request, id), ref;
|
|
1095
|
+
var deferredDebugObjects = request.deferredDebugObjects;
|
|
1096
|
+
if (null !== deferredDebugObjects)
|
|
1097
|
+
return (
|
|
1098
|
+
deferredDebugObjects.retained.set(id, thenable),
|
|
1099
|
+
(ref = "$Y@" + id.toString(16)),
|
|
1100
|
+
request.writtenDebugObjects.set(thenable, ref),
|
|
1101
|
+
ref
|
|
1102
|
+
);
|
|
1064
1103
|
var cancelled = !1;
|
|
1065
1104
|
thenable.then(
|
|
1066
1105
|
function (value) {
|
|
@@ -1208,7 +1247,9 @@
|
|
|
1208
1247
|
signal.removeEventListener("abort", abortStream);
|
|
1209
1248
|
signal = signal.reason;
|
|
1210
1249
|
21 === request.type
|
|
1211
|
-
? (
|
|
1250
|
+
? (request.abortableTasks.delete(streamTask),
|
|
1251
|
+
haltTask(streamTask),
|
|
1252
|
+
finishHaltedTask(streamTask, request))
|
|
1212
1253
|
: (erroredTask$1(request, streamTask, signal),
|
|
1213
1254
|
enqueueFlush(request));
|
|
1214
1255
|
reader.cancel(signal).then(error, error);
|
|
@@ -1296,7 +1337,9 @@
|
|
|
1296
1337
|
signal.removeEventListener("abort", abortIterable);
|
|
1297
1338
|
var reason = signal.reason;
|
|
1298
1339
|
21 === request.type
|
|
1299
|
-
? (
|
|
1340
|
+
? (request.abortableTasks.delete(streamTask),
|
|
1341
|
+
haltTask(streamTask),
|
|
1342
|
+
finishHaltedTask(streamTask, request))
|
|
1300
1343
|
: (erroredTask$1(request, streamTask, signal.reason),
|
|
1301
1344
|
enqueueFlush(request));
|
|
1302
1345
|
"function" === typeof iterator.throw &&
|
|
@@ -2051,7 +2094,9 @@
|
|
|
2051
2094
|
signal.removeEventListener("abort", abortBlob);
|
|
2052
2095
|
signal = signal.reason;
|
|
2053
2096
|
21 === request.type
|
|
2054
|
-
?
|
|
2097
|
+
? (request.abortableTasks.delete(newTask),
|
|
2098
|
+
haltTask(newTask),
|
|
2099
|
+
finishHaltedTask(newTask, request))
|
|
2055
2100
|
: (erroredTask$1(request, newTask, signal), enqueueFlush(request));
|
|
2056
2101
|
reader.cancel(signal).then(error, error);
|
|
2057
2102
|
}
|
|
@@ -2691,6 +2736,8 @@
|
|
|
2691
2736
|
((existingDebugReference = tempRef.get(parent)),
|
|
2692
2737
|
void 0 !== existingDebugReference)
|
|
2693
2738
|
) {
|
|
2739
|
+
if (0 >= counter.objectLimit && !doNotLimit.has(value))
|
|
2740
|
+
return serializeDeferredObject(request, value);
|
|
2694
2741
|
var propertyName = parentPropertyName;
|
|
2695
2742
|
if (isArrayImpl(parent) && parent[0] === REACT_ELEMENT_TYPE)
|
|
2696
2743
|
switch (parentPropertyName) {
|
|
@@ -2707,11 +2754,12 @@
|
|
|
2707
2754
|
propertyName = "_owner";
|
|
2708
2755
|
}
|
|
2709
2756
|
tempRef.set(value, existingDebugReference + ":" + propertyName);
|
|
2710
|
-
} else if (debugNoOutline !== value)
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
);
|
|
2757
|
+
} else if (debugNoOutline !== value) {
|
|
2758
|
+
if ("function" === typeof value.then)
|
|
2759
|
+
return serializeDebugThenable(request, counter, value);
|
|
2760
|
+
request = outlineDebugModel(request, counter, value);
|
|
2761
|
+
return serializeByValueID$1(request);
|
|
2762
|
+
}
|
|
2715
2763
|
parent = request.writtenObjects.get(value);
|
|
2716
2764
|
if (void 0 !== parent) return parent;
|
|
2717
2765
|
if (0 >= counter.objectLimit && !doNotLimit.has(value))
|
|
@@ -5459,6 +5507,13 @@
|
|
|
5459
5507
|
}
|
|
5460
5508
|
case "Y":
|
|
5461
5509
|
if (2 < value.length && (ref = response._debugChannel)) {
|
|
5510
|
+
if ("@" === value[2])
|
|
5511
|
+
return (
|
|
5512
|
+
(parentObject = value.slice(3)),
|
|
5513
|
+
(key = parseInt(parentObject, 16)),
|
|
5514
|
+
response._chunks.has(key) || ref("P:" + parentObject),
|
|
5515
|
+
getChunk(response, key)
|
|
5516
|
+
);
|
|
5462
5517
|
value = value.slice(2);
|
|
5463
5518
|
var _id2 = parseInt(value, 16);
|
|
5464
5519
|
response._chunks.has(_id2) || ref("Q:" + value);
|
|
@@ -16448,5 +16503,5 @@
|
|
|
16448
16503
|
});
|
|
16449
16504
|
});
|
|
16450
16505
|
};
|
|
16451
|
-
exports.version = "19.2.0-experimental-
|
|
16506
|
+
exports.version = "19.2.0-experimental-60b5271a-20250709";
|
|
16452
16507
|
})();
|
|
@@ -344,16 +344,16 @@ function describeNativeComponentFrame(fn, construct) {
|
|
|
344
344
|
} else {
|
|
345
345
|
try {
|
|
346
346
|
Fake.call();
|
|
347
|
-
} catch (x$
|
|
348
|
-
control = x$
|
|
347
|
+
} catch (x$3) {
|
|
348
|
+
control = x$3;
|
|
349
349
|
}
|
|
350
350
|
fn.call(Fake.prototype);
|
|
351
351
|
}
|
|
352
352
|
} else {
|
|
353
353
|
try {
|
|
354
354
|
throw Error();
|
|
355
|
-
} catch (x$
|
|
356
|
-
control = x$
|
|
355
|
+
} catch (x$4) {
|
|
356
|
+
control = x$4;
|
|
357
357
|
}
|
|
358
358
|
(Fake = fn()) &&
|
|
359
359
|
"function" === typeof Fake.catch &&
|
|
@@ -661,8 +661,7 @@ function serializeThenable(request, task, thenable) {
|
|
|
661
661
|
return (
|
|
662
662
|
request.abortableTasks.delete(newTask),
|
|
663
663
|
21 === request.type
|
|
664
|
-
? (haltTask(newTask),
|
|
665
|
-
3 === newTask.status && request.pendingChunks--)
|
|
664
|
+
? (haltTask(newTask), finishHaltedTask(newTask, request))
|
|
666
665
|
: ((task = request.fatalError),
|
|
667
666
|
abortTask$1(newTask),
|
|
668
667
|
finishAbortedTask(newTask, request, task)),
|
|
@@ -715,8 +714,8 @@ function serializeReadableStream(request, task, stream) {
|
|
|
715
714
|
tryStreamTask(request, streamTask),
|
|
716
715
|
enqueueFlush(request),
|
|
717
716
|
reader.read().then(progress, error);
|
|
718
|
-
} catch (x$
|
|
719
|
-
error(x$
|
|
717
|
+
} catch (x$9) {
|
|
718
|
+
error(x$9);
|
|
720
719
|
}
|
|
721
720
|
}
|
|
722
721
|
function error(reason) {
|
|
@@ -732,7 +731,9 @@ function serializeReadableStream(request, task, stream) {
|
|
|
732
731
|
signal.removeEventListener("abort", abortStream);
|
|
733
732
|
signal = signal.reason;
|
|
734
733
|
21 === request.type
|
|
735
|
-
? (
|
|
734
|
+
? (request.abortableTasks.delete(streamTask),
|
|
735
|
+
haltTask(streamTask),
|
|
736
|
+
finishHaltedTask(streamTask, request))
|
|
736
737
|
: (erroredTask$1(request, streamTask, signal), enqueueFlush(request));
|
|
737
738
|
reader.cancel(signal).then(error, error);
|
|
738
739
|
}
|
|
@@ -793,8 +794,8 @@ function serializeAsyncIterable(request, task, iterable, iterator) {
|
|
|
793
794
|
tryStreamTask(request, streamTask),
|
|
794
795
|
enqueueFlush(request),
|
|
795
796
|
iterator.next().then(progress, error);
|
|
796
|
-
} catch (x$
|
|
797
|
-
error(x$
|
|
797
|
+
} catch (x$10) {
|
|
798
|
+
error(x$10);
|
|
798
799
|
}
|
|
799
800
|
}
|
|
800
801
|
function error(reason) {
|
|
@@ -814,7 +815,9 @@ function serializeAsyncIterable(request, task, iterable, iterator) {
|
|
|
814
815
|
signal.removeEventListener("abort", abortIterable);
|
|
815
816
|
var reason = signal.reason;
|
|
816
817
|
21 === request.type
|
|
817
|
-
? (
|
|
818
|
+
? (request.abortableTasks.delete(streamTask),
|
|
819
|
+
haltTask(streamTask),
|
|
820
|
+
finishHaltedTask(streamTask, request))
|
|
818
821
|
: (erroredTask$1(request, streamTask, signal.reason),
|
|
819
822
|
enqueueFlush(request));
|
|
820
823
|
"function" === typeof iterator.throw &&
|
|
@@ -1152,7 +1155,9 @@ function serializeBlob(request, blob) {
|
|
|
1152
1155
|
signal.removeEventListener("abort", abortBlob);
|
|
1153
1156
|
signal = signal.reason;
|
|
1154
1157
|
21 === request.type
|
|
1155
|
-
?
|
|
1158
|
+
? (request.abortableTasks.delete(newTask),
|
|
1159
|
+
haltTask(newTask),
|
|
1160
|
+
finishHaltedTask(newTask, request))
|
|
1156
1161
|
: (erroredTask$1(request, newTask, signal), enqueueFlush(request));
|
|
1157
1162
|
reader.cancel(signal).then(error, error);
|
|
1158
1163
|
}
|
|
@@ -1609,7 +1614,7 @@ function retryTask$1(request, task) {
|
|
|
1609
1614
|
(task.status = 0),
|
|
1610
1615
|
21 === request.type)
|
|
1611
1616
|
)
|
|
1612
|
-
haltTask(task),
|
|
1617
|
+
haltTask(task), finishHaltedTask(task, request);
|
|
1613
1618
|
else {
|
|
1614
1619
|
var errorId = request.fatalError;
|
|
1615
1620
|
abortTask$1(task);
|
|
@@ -1676,6 +1681,9 @@ function finishAbortedTask(task, request, errorId) {
|
|
|
1676
1681
|
function haltTask(task) {
|
|
1677
1682
|
0 === task.status && (task.status = 3);
|
|
1678
1683
|
}
|
|
1684
|
+
function finishHaltedTask(task, request) {
|
|
1685
|
+
3 === task.status && request.pendingChunks--;
|
|
1686
|
+
}
|
|
1679
1687
|
function flushCompletedChunks(request, destination) {
|
|
1680
1688
|
try {
|
|
1681
1689
|
for (
|
|
@@ -1746,7 +1754,7 @@ function callOnAllReadyIfReady(request) {
|
|
|
1746
1754
|
function finishHalt(request, abortedTasks) {
|
|
1747
1755
|
try {
|
|
1748
1756
|
abortedTasks.forEach(function (task) {
|
|
1749
|
-
|
|
1757
|
+
return finishHaltedTask(task, request);
|
|
1750
1758
|
});
|
|
1751
1759
|
var onAllReady = request.onAllReady;
|
|
1752
1760
|
onAllReady();
|
|
@@ -1809,14 +1817,14 @@ function abort$1(request, reason) {
|
|
|
1809
1817
|
)
|
|
1810
1818
|
: reason,
|
|
1811
1819
|
digest = logRecoverableError$1(request, error, null),
|
|
1812
|
-
errorId$
|
|
1813
|
-
request.fatalError = errorId$
|
|
1820
|
+
errorId$27 = request.nextChunkId++;
|
|
1821
|
+
request.fatalError = errorId$27;
|
|
1814
1822
|
request.pendingChunks++;
|
|
1815
|
-
emitErrorChunk(request, errorId$
|
|
1823
|
+
emitErrorChunk(request, errorId$27, digest, error, !1);
|
|
1816
1824
|
abortableTasks.forEach(function (task) {
|
|
1817
|
-
return abortTask$1(task, request, errorId$
|
|
1825
|
+
return abortTask$1(task, request, errorId$27);
|
|
1818
1826
|
});
|
|
1819
|
-
finishAbort(request, abortableTasks, errorId$
|
|
1827
|
+
finishAbort(request, abortableTasks, errorId$27);
|
|
1820
1828
|
}
|
|
1821
1829
|
else {
|
|
1822
1830
|
var onAllReady = request.onAllReady;
|
|
@@ -1824,9 +1832,9 @@ function abort$1(request, reason) {
|
|
|
1824
1832
|
null !== request.destination &&
|
|
1825
1833
|
flushCompletedChunks(request, request.destination);
|
|
1826
1834
|
}
|
|
1827
|
-
} catch (error$
|
|
1828
|
-
logRecoverableError$1(request, error$
|
|
1829
|
-
fatalError$1(request, error$
|
|
1835
|
+
} catch (error$28) {
|
|
1836
|
+
logRecoverableError$1(request, error$28, null),
|
|
1837
|
+
fatalError$1(request, error$28);
|
|
1830
1838
|
}
|
|
1831
1839
|
}
|
|
1832
1840
|
var bind$1 = Function.prototype.bind,
|
|
@@ -1933,11 +1941,11 @@ function processReply(
|
|
|
1933
1941
|
0 === pendingParts && resolve(data);
|
|
1934
1942
|
} else
|
|
1935
1943
|
try {
|
|
1936
|
-
var partJSON$
|
|
1937
|
-
data.append(formFieldPrefix + streamId, partJSON$
|
|
1944
|
+
var partJSON$29 = JSON.stringify(entry.value, resolveToJSON);
|
|
1945
|
+
data.append(formFieldPrefix + streamId, partJSON$29);
|
|
1938
1946
|
iterator.next().then(progress, reject);
|
|
1939
|
-
} catch (x$
|
|
1940
|
-
reject(x$
|
|
1947
|
+
} catch (x$30) {
|
|
1948
|
+
reject(x$30);
|
|
1941
1949
|
}
|
|
1942
1950
|
}
|
|
1943
1951
|
null === formData && (formData = new FormData());
|
|
@@ -1982,20 +1990,20 @@ function processReply(
|
|
|
1982
1990
|
"function" === typeof x.then
|
|
1983
1991
|
) {
|
|
1984
1992
|
pendingParts++;
|
|
1985
|
-
var lazyId$
|
|
1993
|
+
var lazyId$31 = nextPartId++;
|
|
1986
1994
|
parentReference = function () {
|
|
1987
1995
|
try {
|
|
1988
|
-
var partJSON$
|
|
1989
|
-
data$
|
|
1990
|
-
data$
|
|
1996
|
+
var partJSON$32 = serializeModel(value, lazyId$31),
|
|
1997
|
+
data$33 = formData;
|
|
1998
|
+
data$33.append(formFieldPrefix + lazyId$31, partJSON$32);
|
|
1991
1999
|
pendingParts--;
|
|
1992
|
-
0 === pendingParts && resolve(data$
|
|
2000
|
+
0 === pendingParts && resolve(data$33);
|
|
1993
2001
|
} catch (reason) {
|
|
1994
2002
|
reject(reason);
|
|
1995
2003
|
}
|
|
1996
2004
|
};
|
|
1997
2005
|
x.then(parentReference, parentReference);
|
|
1998
|
-
return "$" + lazyId$
|
|
2006
|
+
return "$" + lazyId$31.toString(16);
|
|
1999
2007
|
}
|
|
2000
2008
|
reject(x);
|
|
2001
2009
|
return null;
|
|
@@ -2009,9 +2017,9 @@ function processReply(
|
|
|
2009
2017
|
var promiseId = nextPartId++;
|
|
2010
2018
|
value.then(function (partValue) {
|
|
2011
2019
|
try {
|
|
2012
|
-
var partJSON$
|
|
2020
|
+
var partJSON$35 = serializeModel(partValue, promiseId);
|
|
2013
2021
|
partValue = formData;
|
|
2014
|
-
partValue.append(formFieldPrefix + promiseId, partJSON$
|
|
2022
|
+
partValue.append(formFieldPrefix + promiseId, partJSON$35);
|
|
2015
2023
|
pendingParts--;
|
|
2016
2024
|
0 === pendingParts && resolve(partValue);
|
|
2017
2025
|
} catch (reason) {
|
|
@@ -2035,11 +2043,11 @@ function processReply(
|
|
|
2035
2043
|
if (isArrayImpl(value)) return value;
|
|
2036
2044
|
if (value instanceof FormData) {
|
|
2037
2045
|
null === formData && (formData = new FormData());
|
|
2038
|
-
var data$
|
|
2046
|
+
var data$39 = formData;
|
|
2039
2047
|
key = nextPartId++;
|
|
2040
|
-
var prefix$
|
|
2048
|
+
var prefix$40 = formFieldPrefix + key + "_";
|
|
2041
2049
|
value.forEach(function (originalValue, originalKey) {
|
|
2042
|
-
data$
|
|
2050
|
+
data$39.append(prefix$40 + originalKey, originalValue);
|
|
2043
2051
|
});
|
|
2044
2052
|
return "$K" + key.toString(16);
|
|
2045
2053
|
}
|
|
@@ -3078,8 +3086,8 @@ function startReadableStream(response, id, type) {
|
|
|
3078
3086
|
(previousBlockedChunk = chunk));
|
|
3079
3087
|
} else {
|
|
3080
3088
|
chunk = previousBlockedChunk;
|
|
3081
|
-
var chunk$
|
|
3082
|
-
chunk$
|
|
3089
|
+
var chunk$61 = new ReactPromise("pending", null, null);
|
|
3090
|
+
chunk$61.then(
|
|
3083
3091
|
function (v) {
|
|
3084
3092
|
return controller.enqueue(v);
|
|
3085
3093
|
},
|
|
@@ -3087,10 +3095,10 @@ function startReadableStream(response, id, type) {
|
|
|
3087
3095
|
return controller.error(e);
|
|
3088
3096
|
}
|
|
3089
3097
|
);
|
|
3090
|
-
previousBlockedChunk = chunk$
|
|
3098
|
+
previousBlockedChunk = chunk$61;
|
|
3091
3099
|
chunk.then(function () {
|
|
3092
|
-
previousBlockedChunk === chunk$
|
|
3093
|
-
resolveModelChunk(response, chunk$
|
|
3100
|
+
previousBlockedChunk === chunk$61 && (previousBlockedChunk = null);
|
|
3101
|
+
resolveModelChunk(response, chunk$61, json);
|
|
3094
3102
|
});
|
|
3095
3103
|
}
|
|
3096
3104
|
},
|
|
@@ -4107,8 +4115,8 @@ function pushAttribute(target, name, value) {
|
|
|
4107
4115
|
case "symbol":
|
|
4108
4116
|
return;
|
|
4109
4117
|
case "boolean":
|
|
4110
|
-
var prefix$
|
|
4111
|
-
if ("data-" !== prefix$
|
|
4118
|
+
var prefix$71 = name.toLowerCase().slice(0, 5);
|
|
4119
|
+
if ("data-" !== prefix$71 && "aria-" !== prefix$71) return;
|
|
4112
4120
|
}
|
|
4113
4121
|
target.push(" ", name, '="', escapeTextForBrowser(value), '"');
|
|
4114
4122
|
}
|
|
@@ -4895,10 +4903,10 @@ function pushStartInstance$1(
|
|
|
4895
4903
|
styleQueue.sheets.set(href, resource);
|
|
4896
4904
|
hoistableState && hoistableState.stylesheets.add(resource);
|
|
4897
4905
|
} else if (styleQueue) {
|
|
4898
|
-
var resource$
|
|
4899
|
-
resource$
|
|
4906
|
+
var resource$72 = styleQueue.sheets.get(href);
|
|
4907
|
+
resource$72 &&
|
|
4900
4908
|
hoistableState &&
|
|
4901
|
-
hoistableState.stylesheets.add(resource$
|
|
4909
|
+
hoistableState.stylesheets.add(resource$72);
|
|
4902
4910
|
}
|
|
4903
4911
|
textEmbedded && target$jscomp$0.push("\x3c!-- --\x3e");
|
|
4904
4912
|
JSCompiler_inline_result$jscomp$4 = null;
|
|
@@ -6208,10 +6216,10 @@ function useActionState(action, initialState, permalink) {
|
|
|
6208
6216
|
var nextPostbackStateKey = null,
|
|
6209
6217
|
componentKeyPath = currentlyRenderingKeyPath;
|
|
6210
6218
|
request = request.formState;
|
|
6211
|
-
var isSignatureEqual$
|
|
6212
|
-
if (null !== request && "function" === typeof isSignatureEqual$
|
|
6219
|
+
var isSignatureEqual$75 = action.$$IS_SIGNATURE_EQUAL;
|
|
6220
|
+
if (null !== request && "function" === typeof isSignatureEqual$75) {
|
|
6213
6221
|
var postbackKey = request[1];
|
|
6214
|
-
isSignatureEqual$
|
|
6222
|
+
isSignatureEqual$75.call(action, request[2], request[3]) &&
|
|
6215
6223
|
((nextPostbackStateKey =
|
|
6216
6224
|
void 0 !== permalink
|
|
6217
6225
|
? "p" + permalink
|
|
@@ -6253,11 +6261,11 @@ function useActionState(action, initialState, permalink) {
|
|
|
6253
6261
|
});
|
|
6254
6262
|
return [initialState, action, !1];
|
|
6255
6263
|
}
|
|
6256
|
-
var boundAction$
|
|
6264
|
+
var boundAction$76 = action.bind(null, initialState);
|
|
6257
6265
|
return [
|
|
6258
6266
|
initialState,
|
|
6259
6267
|
function (payload) {
|
|
6260
|
-
boundAction$
|
|
6268
|
+
boundAction$76(payload);
|
|
6261
6269
|
},
|
|
6262
6270
|
!1
|
|
6263
6271
|
];
|
|
@@ -6985,9 +6993,9 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
6985
6993
|
var defaultProps = type.defaultProps;
|
|
6986
6994
|
if (defaultProps) {
|
|
6987
6995
|
newProps === props && (newProps = assign({}, newProps, props));
|
|
6988
|
-
for (var propName$
|
|
6989
|
-
void 0 === newProps[propName$
|
|
6990
|
-
(newProps[propName$
|
|
6996
|
+
for (var propName$98 in defaultProps)
|
|
6997
|
+
void 0 === newProps[propName$98] &&
|
|
6998
|
+
(newProps[propName$98] = defaultProps[propName$98]);
|
|
6991
6999
|
}
|
|
6992
7000
|
var JSCompiler_inline_result = newProps;
|
|
6993
7001
|
var context = emptyContextObject,
|
|
@@ -7154,13 +7162,13 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
7154
7162
|
textEmbedded
|
|
7155
7163
|
);
|
|
7156
7164
|
segment.lastPushedText = !1;
|
|
7157
|
-
var prevContext$
|
|
7158
|
-
prevKeyPath$
|
|
7165
|
+
var prevContext$96 = task.formatContext,
|
|
7166
|
+
prevKeyPath$97 = task.keyPath;
|
|
7159
7167
|
task.keyPath = keyPath;
|
|
7160
7168
|
if (
|
|
7161
7169
|
3 ===
|
|
7162
7170
|
(task.formatContext = getChildFormatContext(
|
|
7163
|
-
prevContext$
|
|
7171
|
+
prevContext$96,
|
|
7164
7172
|
type,
|
|
7165
7173
|
props
|
|
7166
7174
|
)).insertionMode
|
|
@@ -7183,8 +7191,8 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
7183
7191
|
task.blockedSegment = segment;
|
|
7184
7192
|
}
|
|
7185
7193
|
} else renderNode(request, task, JSCompiler_inline_result$jscomp$2, -1);
|
|
7186
|
-
task.formatContext = prevContext$
|
|
7187
|
-
task.keyPath = prevKeyPath$
|
|
7194
|
+
task.formatContext = prevContext$96;
|
|
7195
|
+
task.keyPath = prevKeyPath$97;
|
|
7188
7196
|
a: {
|
|
7189
7197
|
var target$jscomp$0 = segment.chunks,
|
|
7190
7198
|
resumableState$jscomp$0 = request.resumableState;
|
|
@@ -7209,19 +7217,19 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
7209
7217
|
case "wbr":
|
|
7210
7218
|
break a;
|
|
7211
7219
|
case "body":
|
|
7212
|
-
if (1 >= prevContext$
|
|
7220
|
+
if (1 >= prevContext$96.insertionMode) {
|
|
7213
7221
|
resumableState$jscomp$0.hasBody = !0;
|
|
7214
7222
|
break a;
|
|
7215
7223
|
}
|
|
7216
7224
|
break;
|
|
7217
7225
|
case "html":
|
|
7218
|
-
if (0 === prevContext$
|
|
7226
|
+
if (0 === prevContext$96.insertionMode) {
|
|
7219
7227
|
resumableState$jscomp$0.hasHtml = !0;
|
|
7220
7228
|
break a;
|
|
7221
7229
|
}
|
|
7222
7230
|
break;
|
|
7223
7231
|
case "head":
|
|
7224
|
-
if (1 >= prevContext$
|
|
7232
|
+
if (1 >= prevContext$96.insertionMode) break a;
|
|
7225
7233
|
}
|
|
7226
7234
|
target$jscomp$0.push(endChunkForTag(type));
|
|
7227
7235
|
}
|
|
@@ -7249,10 +7257,10 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
7249
7257
|
}
|
|
7250
7258
|
} else if ("hidden" !== props.mode) {
|
|
7251
7259
|
segment$jscomp$0.lastPushedText = !1;
|
|
7252
|
-
var prevKeyPath$
|
|
7260
|
+
var prevKeyPath$100 = task.keyPath;
|
|
7253
7261
|
task.keyPath = keyPath;
|
|
7254
7262
|
renderNode(request, task, props.children, -1);
|
|
7255
|
-
task.keyPath = prevKeyPath$
|
|
7263
|
+
task.keyPath = prevKeyPath$100;
|
|
7256
7264
|
segment$jscomp$0.lastPushedText = !1;
|
|
7257
7265
|
}
|
|
7258
7266
|
return;
|
|
@@ -7295,35 +7303,35 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
7295
7303
|
}
|
|
7296
7304
|
}
|
|
7297
7305
|
if ("function" === typeof children$jscomp$0[ASYNC_ITERATOR]) {
|
|
7298
|
-
var iterator$
|
|
7299
|
-
if (iterator$
|
|
7306
|
+
var iterator$91 = children$jscomp$0[ASYNC_ITERATOR]();
|
|
7307
|
+
if (iterator$91) {
|
|
7300
7308
|
var prevThenableState = task.thenableState;
|
|
7301
7309
|
task.thenableState = null;
|
|
7302
7310
|
thenableIndexCounter = 0;
|
|
7303
7311
|
thenableState = prevThenableState;
|
|
7304
7312
|
var rows = [],
|
|
7305
7313
|
done = !1;
|
|
7306
|
-
if (iterator$
|
|
7314
|
+
if (iterator$91 === children$jscomp$0)
|
|
7307
7315
|
for (
|
|
7308
|
-
var step$
|
|
7309
|
-
void 0 !== step$
|
|
7316
|
+
var step$92 = readPreviousThenableFromState();
|
|
7317
|
+
void 0 !== step$92;
|
|
7310
7318
|
|
|
7311
7319
|
) {
|
|
7312
|
-
if (step$
|
|
7320
|
+
if (step$92.done) {
|
|
7313
7321
|
done = !0;
|
|
7314
7322
|
break;
|
|
7315
7323
|
}
|
|
7316
|
-
rows.push(step$
|
|
7317
|
-
step$
|
|
7324
|
+
rows.push(step$92.value);
|
|
7325
|
+
step$92 = readPreviousThenableFromState();
|
|
7318
7326
|
}
|
|
7319
7327
|
if (!done)
|
|
7320
7328
|
for (
|
|
7321
|
-
var step$
|
|
7322
|
-
!step$
|
|
7329
|
+
var step$93 = unwrapThenable(iterator$91.next());
|
|
7330
|
+
!step$93.done;
|
|
7323
7331
|
|
|
7324
7332
|
)
|
|
7325
|
-
rows.push(step$
|
|
7326
|
-
(step$
|
|
7333
|
+
rows.push(step$93.value),
|
|
7334
|
+
(step$93 = unwrapThenable(iterator$91.next()));
|
|
7327
7335
|
renderSuspenseListRows(
|
|
7328
7336
|
request,
|
|
7329
7337
|
task,
|
|
@@ -7336,7 +7344,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
7336
7344
|
}
|
|
7337
7345
|
}
|
|
7338
7346
|
if ("together" === revealOrder) {
|
|
7339
|
-
var prevKeyPath$
|
|
7347
|
+
var prevKeyPath$94 = task.keyPath,
|
|
7340
7348
|
prevRow = task.row,
|
|
7341
7349
|
newRow = (task.row = createSuspenseListRow(null));
|
|
7342
7350
|
newRow.boundaries = [];
|
|
@@ -7345,7 +7353,7 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
7345
7353
|
renderNodeDestructive(request, task, children$jscomp$0, -1);
|
|
7346
7354
|
0 === --newRow.pendingTasks &&
|
|
7347
7355
|
finishSuspenseListRow(request, newRow);
|
|
7348
|
-
task.keyPath = prevKeyPath$
|
|
7356
|
+
task.keyPath = prevKeyPath$94;
|
|
7349
7357
|
task.row = prevRow;
|
|
7350
7358
|
null !== prevRow &&
|
|
7351
7359
|
0 < newRow.pendingTasks &&
|
|
@@ -7383,22 +7391,22 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
7383
7391
|
throw Error("ReactDOMServer does not yet support scope components.");
|
|
7384
7392
|
case REACT_SUSPENSE_TYPE:
|
|
7385
7393
|
a: if (null !== task.replay) {
|
|
7386
|
-
var prevKeyPath$
|
|
7387
|
-
prevContext$
|
|
7388
|
-
prevRow$
|
|
7394
|
+
var prevKeyPath$78 = task.keyPath,
|
|
7395
|
+
prevContext$79 = task.formatContext,
|
|
7396
|
+
prevRow$80 = task.row;
|
|
7389
7397
|
task.keyPath = keyPath;
|
|
7390
7398
|
task.formatContext = getSuspenseContentFormatContext(
|
|
7391
7399
|
request.resumableState,
|
|
7392
|
-
prevContext$
|
|
7400
|
+
prevContext$79
|
|
7393
7401
|
);
|
|
7394
7402
|
task.row = null;
|
|
7395
|
-
var content$
|
|
7403
|
+
var content$81 = props.children;
|
|
7396
7404
|
try {
|
|
7397
|
-
renderNode(request, task, content$
|
|
7405
|
+
renderNode(request, task, content$81, -1);
|
|
7398
7406
|
} finally {
|
|
7399
|
-
(task.keyPath = prevKeyPath$
|
|
7400
|
-
(task.formatContext = prevContext$
|
|
7401
|
-
(task.row = prevRow$
|
|
7407
|
+
(task.keyPath = prevKeyPath$78),
|
|
7408
|
+
(task.formatContext = prevContext$79),
|
|
7409
|
+
(task.row = prevRow$80);
|
|
7402
7410
|
}
|
|
7403
7411
|
} else {
|
|
7404
7412
|
var prevKeyPath$jscomp$5 = task.keyPath,
|
|
@@ -7542,12 +7550,12 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
|
7542
7550
|
null !== prevRow$jscomp$0 &&
|
|
7543
7551
|
prevRow$jscomp$0.together &&
|
|
7544
7552
|
tryToResolveTogetherRow(request, prevRow$jscomp$0);
|
|
7545
|
-
} catch (thrownValue$
|
|
7553
|
+
} catch (thrownValue$82) {
|
|
7546
7554
|
newBoundary.status = 4;
|
|
7547
7555
|
if (12 === request.status) {
|
|
7548
7556
|
contentRootSegment.status = 3;
|
|
7549
7557
|
var error = request.fatalError;
|
|
7550
|
-
} else (contentRootSegment.status = 4), (error = thrownValue$
|
|
7558
|
+
} else (contentRootSegment.status = 4), (error = thrownValue$82);
|
|
7551
7559
|
var thrownInfo = getThrownInfo(task.componentStack);
|
|
7552
7560
|
if (
|
|
7553
7561
|
"object" === typeof error &&
|
|
@@ -8288,15 +8296,15 @@ function renderNode(request, task, node, childIndex) {
|
|
|
8288
8296
|
chunkLength = segment.chunks.length;
|
|
8289
8297
|
try {
|
|
8290
8298
|
return renderNodeDestructive(request, task, node, childIndex);
|
|
8291
|
-
} catch (thrownValue$
|
|
8299
|
+
} catch (thrownValue$121) {
|
|
8292
8300
|
if (
|
|
8293
8301
|
(resetHooksState(),
|
|
8294
8302
|
(segment.children.length = childrenLength),
|
|
8295
8303
|
(segment.chunks.length = chunkLength),
|
|
8296
8304
|
(node =
|
|
8297
|
-
thrownValue$
|
|
8305
|
+
thrownValue$121 === SuspenseException
|
|
8298
8306
|
? getSuspendedThenable()
|
|
8299
|
-
: thrownValue$
|
|
8307
|
+
: thrownValue$121),
|
|
8300
8308
|
"object" === typeof node && null !== node)
|
|
8301
8309
|
) {
|
|
8302
8310
|
if ("function" === typeof node.then) {
|
|
@@ -8498,16 +8506,16 @@ function abortTask(task, request, error) {
|
|
|
8498
8506
|
0 === request.pendingRootTasks && completeShell(request);
|
|
8499
8507
|
}
|
|
8500
8508
|
} else {
|
|
8501
|
-
var trackedPostpones$
|
|
8509
|
+
var trackedPostpones$124 = request.trackedPostpones;
|
|
8502
8510
|
if (4 !== boundary.status) {
|
|
8503
|
-
if (null !== trackedPostpones$
|
|
8511
|
+
if (null !== trackedPostpones$124 && null !== segment)
|
|
8504
8512
|
return (
|
|
8505
8513
|
"object" === typeof error &&
|
|
8506
8514
|
null !== error &&
|
|
8507
8515
|
error.$$typeof === REACT_POSTPONE_TYPE
|
|
8508
8516
|
? logPostpone(request, error.message, errorInfo)
|
|
8509
8517
|
: logRecoverableError(request, error, errorInfo),
|
|
8510
|
-
trackPostpone(request, trackedPostpones$
|
|
8518
|
+
trackPostpone(request, trackedPostpones$124, task, segment),
|
|
8511
8519
|
boundary.fallbackAbortableTasks.forEach(function (fallbackTask) {
|
|
8512
8520
|
return abortTask(fallbackTask, request, error);
|
|
8513
8521
|
}),
|
|
@@ -8879,13 +8887,13 @@ function performWork(request$jscomp$1) {
|
|
|
8879
8887
|
null !== request.trackedPostpones &&
|
|
8880
8888
|
x$jscomp$0.$$typeof === REACT_POSTPONE_TYPE
|
|
8881
8889
|
) {
|
|
8882
|
-
var trackedPostpones$
|
|
8890
|
+
var trackedPostpones$130 = request.trackedPostpones;
|
|
8883
8891
|
task.abortSet.delete(task);
|
|
8884
8892
|
var postponeInfo = getThrownInfo(task.componentStack);
|
|
8885
8893
|
logPostpone(request, x$jscomp$0.message, postponeInfo);
|
|
8886
8894
|
trackPostpone(
|
|
8887
8895
|
request,
|
|
8888
|
-
trackedPostpones$
|
|
8896
|
+
trackedPostpones$130,
|
|
8889
8897
|
task,
|
|
8890
8898
|
segment$jscomp$0
|
|
8891
8899
|
);
|
|
@@ -9489,12 +9497,12 @@ function flushCompletedQueues(request, destination) {
|
|
|
9489
9497
|
completedBoundaries.splice(0, i);
|
|
9490
9498
|
var partialBoundaries = request.partialBoundaries;
|
|
9491
9499
|
for (i = 0; i < partialBoundaries.length; i++) {
|
|
9492
|
-
var boundary$
|
|
9500
|
+
var boundary$134 = partialBoundaries[i];
|
|
9493
9501
|
a: {
|
|
9494
9502
|
clientRenderedBoundaries = request;
|
|
9495
9503
|
boundary = destination;
|
|
9496
|
-
flushedByteSize = boundary$
|
|
9497
|
-
var completedSegments = boundary$
|
|
9504
|
+
flushedByteSize = boundary$134.byteSize;
|
|
9505
|
+
var completedSegments = boundary$134.completedSegments;
|
|
9498
9506
|
for (
|
|
9499
9507
|
JSCompiler_inline_result = 0;
|
|
9500
9508
|
JSCompiler_inline_result < completedSegments.length;
|
|
@@ -9504,7 +9512,7 @@ function flushCompletedQueues(request, destination) {
|
|
|
9504
9512
|
!flushPartiallyCompletedSegment(
|
|
9505
9513
|
clientRenderedBoundaries,
|
|
9506
9514
|
boundary,
|
|
9507
|
-
boundary$
|
|
9515
|
+
boundary$134,
|
|
9508
9516
|
completedSegments[JSCompiler_inline_result]
|
|
9509
9517
|
)
|
|
9510
9518
|
) {
|
|
@@ -9514,10 +9522,10 @@ function flushCompletedQueues(request, destination) {
|
|
|
9514
9522
|
break a;
|
|
9515
9523
|
}
|
|
9516
9524
|
completedSegments.splice(0, JSCompiler_inline_result);
|
|
9517
|
-
var row = boundary$
|
|
9525
|
+
var row = boundary$134.row;
|
|
9518
9526
|
null !== row &&
|
|
9519
9527
|
row.together &&
|
|
9520
|
-
1 === boundary$
|
|
9528
|
+
1 === boundary$134.pendingTasks &&
|
|
9521
9529
|
(1 === row.pendingTasks
|
|
9522
9530
|
? unblockSuspenseListRow(
|
|
9523
9531
|
clientRenderedBoundaries,
|
|
@@ -9527,7 +9535,7 @@ function flushCompletedQueues(request, destination) {
|
|
|
9527
9535
|
: row.pendingTasks--);
|
|
9528
9536
|
JSCompiler_inline_result$jscomp$0 = writeHoistablesForBoundary(
|
|
9529
9537
|
boundary,
|
|
9530
|
-
boundary$
|
|
9538
|
+
boundary$134.contentState,
|
|
9531
9539
|
clientRenderedBoundaries.renderState
|
|
9532
9540
|
);
|
|
9533
9541
|
}
|
|
@@ -9598,8 +9606,8 @@ function abort(request, reason) {
|
|
|
9598
9606
|
}
|
|
9599
9607
|
null !== request.destination &&
|
|
9600
9608
|
flushCompletedQueues(request, request.destination);
|
|
9601
|
-
} catch (error$
|
|
9602
|
-
logRecoverableError(request, error$
|
|
9609
|
+
} catch (error$136) {
|
|
9610
|
+
logRecoverableError(request, error$136, {}), fatalError(request, error$136);
|
|
9603
9611
|
}
|
|
9604
9612
|
}
|
|
9605
9613
|
function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
@@ -9905,4 +9913,4 @@ exports.experimental_renderToHTML = function (children, options) {
|
|
|
9905
9913
|
});
|
|
9906
9914
|
});
|
|
9907
9915
|
};
|
|
9908
|
-
exports.version = "19.2.0-experimental-
|
|
9916
|
+
exports.version = "19.2.0-experimental-60b5271a-20250709";
|
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-60b5271a-20250709",
|
|
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-60b5271a-20250709"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"LICENSE",
|