react-markup 0.0.0-experimental-ec0fca31-20260701 → 0.0.0-experimental-e71a6393-20260702
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.
|
@@ -5170,12 +5170,12 @@
|
|
|
5170
5170
|
}
|
|
5171
5171
|
function fatalError(request, error, errorInfo, debugTask) {
|
|
5172
5172
|
errorInfo = request.onShellError;
|
|
5173
|
-
var onFatalError = request.onFatalError
|
|
5174
|
-
|
|
5173
|
+
var onFatalError = request.onFatalError,
|
|
5174
|
+
shellComplete = 0 === request.pendingRootTasks;
|
|
5175
5175
|
debugTask
|
|
5176
|
-
? (debugTask.run(errorInfo.bind(null, error)),
|
|
5176
|
+
? (shellComplete || debugTask.run(errorInfo.bind(null, error)),
|
|
5177
5177
|
debugTask.run(onFatalError.bind(null, error)))
|
|
5178
|
-
: (errorInfo(error), onFatalError(error));
|
|
5178
|
+
: (shellComplete || errorInfo(error), onFatalError(error));
|
|
5179
5179
|
null !== request.destination
|
|
5180
5180
|
? ((request.status = 13), request.destination.destroy(error))
|
|
5181
5181
|
: ((request.status = 12), (request.fatalError = error));
|
|
@@ -7743,7 +7743,6 @@
|
|
|
7743
7743
|
function completeShell(request) {
|
|
7744
7744
|
null === request.trackedPostpones && safelyEmitEarlyPreloads(request, !0);
|
|
7745
7745
|
null === request.trackedPostpones && preparePreamble(request);
|
|
7746
|
-
request.onShellError = noop;
|
|
7747
7746
|
request = request.onShellReady;
|
|
7748
7747
|
request();
|
|
7749
7748
|
}
|
|
@@ -8060,33 +8059,35 @@
|
|
|
8060
8059
|
errorInfo$jscomp$1,
|
|
8061
8060
|
debugTask
|
|
8062
8061
|
);
|
|
8063
|
-
else
|
|
8064
|
-
|
|
8065
|
-
4 !== boundary$jscomp$0.status)
|
|
8066
|
-
|
|
8067
|
-
|
|
8068
|
-
|
|
8069
|
-
|
|
8070
|
-
|
|
8071
|
-
|
|
8072
|
-
|
|
8073
|
-
|
|
8074
|
-
|
|
8075
|
-
|
|
8076
|
-
|
|
8077
|
-
|
|
8078
|
-
|
|
8079
|
-
|
|
8080
|
-
|
|
8081
|
-
|
|
8082
|
-
|
|
8083
|
-
|
|
8084
|
-
|
|
8085
|
-
|
|
8086
|
-
|
|
8087
|
-
|
|
8062
|
+
else {
|
|
8063
|
+
boundary$jscomp$0.pendingTasks--;
|
|
8064
|
+
if (4 !== boundary$jscomp$0.status) {
|
|
8065
|
+
boundary$jscomp$0.status = 4;
|
|
8066
|
+
encodeErrorForBoundary(
|
|
8067
|
+
boundary$jscomp$0,
|
|
8068
|
+
errorDigest$jscomp$0,
|
|
8069
|
+
x$jscomp$0,
|
|
8070
|
+
errorInfo$jscomp$1,
|
|
8071
|
+
!1
|
|
8072
|
+
);
|
|
8073
|
+
untrackBoundary(request, boundary$jscomp$0);
|
|
8074
|
+
var boundaryRow = boundary$jscomp$0.row;
|
|
8075
|
+
null !== boundaryRow &&
|
|
8076
|
+
(request.allPendingTasks++,
|
|
8077
|
+
0 === --boundaryRow.pendingTasks &&
|
|
8078
|
+
finishSuspenseListRow(request, boundaryRow),
|
|
8079
|
+
request.allPendingTasks--);
|
|
8080
|
+
boundary$jscomp$0.parentFlushed &&
|
|
8081
|
+
request.clientRenderedBoundaries.push(
|
|
8082
|
+
boundary$jscomp$0
|
|
8083
|
+
);
|
|
8084
|
+
0 === request.pendingRootTasks &&
|
|
8085
|
+
null === request.trackedPostpones &&
|
|
8086
|
+
null !== boundary$jscomp$0.preamble &&
|
|
8087
|
+
preparePreamble(request);
|
|
8088
|
+
}
|
|
8089
|
+
0 === request.allPendingTasks && completeAll(request);
|
|
8088
8090
|
}
|
|
8089
|
-
0 === request.allPendingTasks && completeAll(request);
|
|
8090
8091
|
}
|
|
8091
8092
|
} finally {
|
|
8092
8093
|
(request.currentTask = prevTask$jscomp$0),
|
|
@@ -9927,5 +9928,5 @@
|
|
|
9927
9928
|
});
|
|
9928
9929
|
});
|
|
9929
9930
|
};
|
|
9930
|
-
exports.version = "19.3.0-experimental-
|
|
9931
|
+
exports.version = "19.3.0-experimental-e71a6393-20260702";
|
|
9931
9932
|
})();
|
|
@@ -3885,8 +3885,7 @@ function logRecoverableError(request, error, errorInfo) {
|
|
|
3885
3885
|
function fatalError(request, error) {
|
|
3886
3886
|
var onShellError = request.onShellError,
|
|
3887
3887
|
onFatalError = request.onFatalError;
|
|
3888
|
-
request.
|
|
3889
|
-
onShellError(error);
|
|
3888
|
+
0 !== request.pendingRootTasks && onShellError(error);
|
|
3890
3889
|
onFatalError(error);
|
|
3891
3890
|
null !== request.destination
|
|
3892
3891
|
? ((request.status = 13), request.destination.destroy(error))
|
|
@@ -5701,7 +5700,6 @@ function safelyEmitEarlyPreloads(request, shellComplete) {
|
|
|
5701
5700
|
function completeShell(request) {
|
|
5702
5701
|
null === request.trackedPostpones && safelyEmitEarlyPreloads(request, !0);
|
|
5703
5702
|
null === request.trackedPostpones && preparePreamble(request);
|
|
5704
|
-
request.onShellError = noop;
|
|
5705
5703
|
request = request.onShellReady;
|
|
5706
5704
|
request();
|
|
5707
5705
|
}
|
|
@@ -5984,27 +5982,27 @@ function performWork(request$jscomp$1) {
|
|
|
5984
5982
|
errorInfo$jscomp$0
|
|
5985
5983
|
);
|
|
5986
5984
|
if (null === boundary$jscomp$0) fatalError(request, x$jscomp$0);
|
|
5987
|
-
else
|
|
5988
|
-
|
|
5989
|
-
4 !== boundary$jscomp$0.status)
|
|
5990
|
-
|
|
5991
|
-
|
|
5992
|
-
|
|
5993
|
-
|
|
5994
|
-
|
|
5995
|
-
|
|
5996
|
-
|
|
5997
|
-
|
|
5998
|
-
|
|
5999
|
-
|
|
6000
|
-
|
|
6001
|
-
request.
|
|
6002
|
-
|
|
6003
|
-
|
|
6004
|
-
|
|
6005
|
-
|
|
5985
|
+
else {
|
|
5986
|
+
boundary$jscomp$0.pendingTasks--;
|
|
5987
|
+
if (4 !== boundary$jscomp$0.status) {
|
|
5988
|
+
boundary$jscomp$0.status = 4;
|
|
5989
|
+
boundary$jscomp$0.errorDigest = errorDigest$jscomp$0;
|
|
5990
|
+
untrackBoundary(request, boundary$jscomp$0);
|
|
5991
|
+
var boundaryRow = boundary$jscomp$0.row;
|
|
5992
|
+
null !== boundaryRow &&
|
|
5993
|
+
(request.allPendingTasks++,
|
|
5994
|
+
0 === --boundaryRow.pendingTasks &&
|
|
5995
|
+
finishSuspenseListRow(request, boundaryRow),
|
|
5996
|
+
request.allPendingTasks--);
|
|
5997
|
+
boundary$jscomp$0.parentFlushed &&
|
|
5998
|
+
request.clientRenderedBoundaries.push(boundary$jscomp$0);
|
|
5999
|
+
0 === request.pendingRootTasks &&
|
|
6000
|
+
null === request.trackedPostpones &&
|
|
6001
|
+
null !== boundary$jscomp$0.preamble &&
|
|
6002
|
+
preparePreamble(request);
|
|
6003
|
+
}
|
|
6004
|
+
0 === request.allPendingTasks && completeAll(request);
|
|
6006
6005
|
}
|
|
6007
|
-
0 === request.allPendingTasks && completeAll(request);
|
|
6008
6006
|
}
|
|
6009
6007
|
} finally {
|
|
6010
6008
|
request.currentTask = prevTask$jscomp$0;
|
|
@@ -6754,4 +6752,4 @@ exports.experimental_renderToHTML = function (children, options) {
|
|
|
6754
6752
|
});
|
|
6755
6753
|
});
|
|
6756
6754
|
};
|
|
6757
|
-
exports.version = "19.3.0-experimental-
|
|
6755
|
+
exports.version = "19.3.0-experimental-e71a6393-20260702";
|
|
@@ -4620,24 +4620,26 @@
|
|
|
4620
4620
|
return kind;
|
|
4621
4621
|
}
|
|
4622
4622
|
function addObjectToProperties(object, properties, indent, prefix) {
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
|
|
4638
|
-
|
|
4639
|
-
|
|
4640
|
-
|
|
4623
|
+
if (!ArrayBuffer.isView(object)) {
|
|
4624
|
+
var addedProperties = 0,
|
|
4625
|
+
key;
|
|
4626
|
+
for (key in object)
|
|
4627
|
+
if (
|
|
4628
|
+
hasOwnProperty.call(object, key) &&
|
|
4629
|
+
"_" !== key[0] &&
|
|
4630
|
+
(addedProperties++,
|
|
4631
|
+
addValueToProperties(key, object[key], properties, indent, prefix),
|
|
4632
|
+
100 <= addedProperties)
|
|
4633
|
+
) {
|
|
4634
|
+
properties.push([
|
|
4635
|
+
prefix +
|
|
4636
|
+
"\u00a0\u00a0".repeat(indent) +
|
|
4637
|
+
"Only 100 properties are shown. React will not log more properties of this object.",
|
|
4638
|
+
""
|
|
4639
|
+
]);
|
|
4640
|
+
break;
|
|
4641
|
+
}
|
|
4642
|
+
}
|
|
4641
4643
|
}
|
|
4642
4644
|
function addValueToProperties(
|
|
4643
4645
|
propertyName,
|
|
@@ -4716,15 +4718,23 @@
|
|
|
4716
4718
|
return;
|
|
4717
4719
|
}
|
|
4718
4720
|
typeName = Object.prototype.toString.call(value);
|
|
4719
|
-
|
|
4720
|
-
if (
|
|
4721
|
+
typeName = typeName.slice(8, typeName.length - 1);
|
|
4722
|
+
if (ArrayBuffer.isView(value)) {
|
|
4723
|
+
value = value.length;
|
|
4724
|
+
value =
|
|
4725
|
+
"number" === typeof value
|
|
4726
|
+
? typeName + "(" + value + ")"
|
|
4727
|
+
: typeName;
|
|
4728
|
+
break;
|
|
4729
|
+
}
|
|
4730
|
+
if ("Array" === typeName)
|
|
4721
4731
|
if (
|
|
4722
|
-
((
|
|
4732
|
+
((propKey = 100 < value.length),
|
|
4723
4733
|
(key = getArrayKind(value)),
|
|
4724
4734
|
2 === key || 0 === key)
|
|
4725
4735
|
) {
|
|
4726
4736
|
value = JSON.stringify(
|
|
4727
|
-
|
|
4737
|
+
propKey ? value.slice(0, 100).concat("\u2026") : value
|
|
4728
4738
|
);
|
|
4729
4739
|
break;
|
|
4730
4740
|
} else if (3 === key) {
|
|
@@ -4737,15 +4747,15 @@
|
|
|
4737
4747
|
propertyName < value.length && 100 > propertyName;
|
|
4738
4748
|
propertyName++
|
|
4739
4749
|
)
|
|
4740
|
-
(
|
|
4750
|
+
(typeName = value[propertyName]),
|
|
4741
4751
|
addValueToProperties(
|
|
4742
|
-
|
|
4743
|
-
|
|
4752
|
+
typeName[0],
|
|
4753
|
+
typeName[1],
|
|
4744
4754
|
properties,
|
|
4745
4755
|
indent + 1,
|
|
4746
4756
|
prefix
|
|
4747
4757
|
);
|
|
4748
|
-
|
|
4758
|
+
propKey &&
|
|
4749
4759
|
addValueToProperties(
|
|
4750
4760
|
(100).toString(),
|
|
4751
4761
|
"\u2026",
|
|
@@ -4755,7 +4765,7 @@
|
|
|
4755
4765
|
);
|
|
4756
4766
|
return;
|
|
4757
4767
|
}
|
|
4758
|
-
if ("Promise" ===
|
|
4768
|
+
if ("Promise" === typeName) {
|
|
4759
4769
|
if ("fulfilled" === value.status) {
|
|
4760
4770
|
if (
|
|
4761
4771
|
((typeName = properties.length),
|
|
@@ -4795,13 +4805,13 @@
|
|
|
4795
4805
|
]);
|
|
4796
4806
|
return;
|
|
4797
4807
|
}
|
|
4798
|
-
"Object" ===
|
|
4799
|
-
(
|
|
4800
|
-
"function" === typeof
|
|
4801
|
-
(
|
|
4808
|
+
"Object" === typeName &&
|
|
4809
|
+
(propKey = Object.getPrototypeOf(value)) &&
|
|
4810
|
+
"function" === typeof propKey.constructor &&
|
|
4811
|
+
(typeName = propKey.constructor.name);
|
|
4802
4812
|
properties.push([
|
|
4803
4813
|
prefix + "\u00a0\u00a0".repeat(indent) + propertyName,
|
|
4804
|
-
"Object" ===
|
|
4814
|
+
"Object" === typeName ? (3 > indent ? "" : "\u2026") : typeName
|
|
4805
4815
|
]);
|
|
4806
4816
|
3 > indent &&
|
|
4807
4817
|
addObjectToProperties(value, properties, indent + 1, prefix);
|
|
@@ -12262,12 +12272,12 @@
|
|
|
12262
12272
|
}
|
|
12263
12273
|
function fatalError(request, error, errorInfo, debugTask) {
|
|
12264
12274
|
errorInfo = request.onShellError;
|
|
12265
|
-
var onFatalError = request.onFatalError
|
|
12266
|
-
|
|
12275
|
+
var onFatalError = request.onFatalError,
|
|
12276
|
+
shellComplete = 0 === request.pendingRootTasks;
|
|
12267
12277
|
debugTask
|
|
12268
|
-
? (debugTask.run(errorInfo.bind(null, error)),
|
|
12278
|
+
? (shellComplete || debugTask.run(errorInfo.bind(null, error)),
|
|
12269
12279
|
debugTask.run(onFatalError.bind(null, error)))
|
|
12270
|
-
: (errorInfo(error), onFatalError(error));
|
|
12280
|
+
: (shellComplete || errorInfo(error), onFatalError(error));
|
|
12271
12281
|
null !== request.destination
|
|
12272
12282
|
? ((request.status = 13), request.destination.destroy(error))
|
|
12273
12283
|
: ((request.status = 12), (request.fatalError = error));
|
|
@@ -14835,7 +14845,6 @@
|
|
|
14835
14845
|
function completeShell(request) {
|
|
14836
14846
|
null === request.trackedPostpones && safelyEmitEarlyPreloads(request, !0);
|
|
14837
14847
|
null === request.trackedPostpones && preparePreamble(request);
|
|
14838
|
-
request.onShellError = noop;
|
|
14839
14848
|
request = request.onShellReady;
|
|
14840
14849
|
request();
|
|
14841
14850
|
}
|
|
@@ -15152,33 +15161,35 @@
|
|
|
15152
15161
|
errorInfo$jscomp$1,
|
|
15153
15162
|
debugTask
|
|
15154
15163
|
);
|
|
15155
|
-
else
|
|
15156
|
-
|
|
15157
|
-
4 !== boundary$jscomp$0.status)
|
|
15158
|
-
|
|
15159
|
-
|
|
15160
|
-
|
|
15161
|
-
|
|
15162
|
-
|
|
15163
|
-
|
|
15164
|
-
|
|
15165
|
-
|
|
15166
|
-
|
|
15167
|
-
|
|
15168
|
-
|
|
15169
|
-
|
|
15170
|
-
|
|
15171
|
-
|
|
15172
|
-
|
|
15173
|
-
|
|
15174
|
-
|
|
15175
|
-
|
|
15176
|
-
|
|
15177
|
-
|
|
15178
|
-
|
|
15179
|
-
|
|
15164
|
+
else {
|
|
15165
|
+
boundary$jscomp$0.pendingTasks--;
|
|
15166
|
+
if (4 !== boundary$jscomp$0.status) {
|
|
15167
|
+
boundary$jscomp$0.status = 4;
|
|
15168
|
+
encodeErrorForBoundary(
|
|
15169
|
+
boundary$jscomp$0,
|
|
15170
|
+
errorDigest$jscomp$0,
|
|
15171
|
+
x$jscomp$0,
|
|
15172
|
+
errorInfo$jscomp$1,
|
|
15173
|
+
!1
|
|
15174
|
+
);
|
|
15175
|
+
untrackBoundary(request, boundary$jscomp$0);
|
|
15176
|
+
var boundaryRow = boundary$jscomp$0.row;
|
|
15177
|
+
null !== boundaryRow &&
|
|
15178
|
+
(request.allPendingTasks++,
|
|
15179
|
+
0 === --boundaryRow.pendingTasks &&
|
|
15180
|
+
finishSuspenseListRow(request, boundaryRow),
|
|
15181
|
+
request.allPendingTasks--);
|
|
15182
|
+
boundary$jscomp$0.parentFlushed &&
|
|
15183
|
+
request.clientRenderedBoundaries.push(
|
|
15184
|
+
boundary$jscomp$0
|
|
15185
|
+
);
|
|
15186
|
+
0 === request.pendingRootTasks &&
|
|
15187
|
+
null === request.trackedPostpones &&
|
|
15188
|
+
null !== boundary$jscomp$0.preamble &&
|
|
15189
|
+
preparePreamble(request);
|
|
15190
|
+
}
|
|
15191
|
+
0 === request.allPendingTasks && completeAll(request);
|
|
15180
15192
|
}
|
|
15181
|
-
0 === request.allPendingTasks && completeAll(request);
|
|
15182
15193
|
}
|
|
15183
15194
|
} finally {
|
|
15184
15195
|
(request.currentTask = prevTask$jscomp$0),
|
|
@@ -17671,5 +17682,5 @@
|
|
|
17671
17682
|
});
|
|
17672
17683
|
});
|
|
17673
17684
|
};
|
|
17674
|
-
exports.version = "19.3.0-experimental-
|
|
17685
|
+
exports.version = "19.3.0-experimental-e71a6393-20260702";
|
|
17675
17686
|
})();
|
|
@@ -7066,8 +7066,7 @@ function logRecoverableError(request, error, errorInfo) {
|
|
|
7066
7066
|
function fatalError(request, error) {
|
|
7067
7067
|
var onShellError = request.onShellError,
|
|
7068
7068
|
onFatalError = request.onFatalError;
|
|
7069
|
-
request.
|
|
7070
|
-
onShellError(error);
|
|
7069
|
+
0 !== request.pendingRootTasks && onShellError(error);
|
|
7071
7070
|
onFatalError(error);
|
|
7072
7071
|
null !== request.destination
|
|
7073
7072
|
? ((request.status = 13), request.destination.destroy(error))
|
|
@@ -8882,7 +8881,6 @@ function safelyEmitEarlyPreloads(request, shellComplete) {
|
|
|
8882
8881
|
function completeShell(request) {
|
|
8883
8882
|
null === request.trackedPostpones && safelyEmitEarlyPreloads(request, !0);
|
|
8884
8883
|
null === request.trackedPostpones && preparePreamble(request);
|
|
8885
|
-
request.onShellError = noop;
|
|
8886
8884
|
request = request.onShellReady;
|
|
8887
8885
|
request();
|
|
8888
8886
|
}
|
|
@@ -9165,27 +9163,27 @@ function performWork(request$jscomp$1) {
|
|
|
9165
9163
|
errorInfo$jscomp$0
|
|
9166
9164
|
);
|
|
9167
9165
|
if (null === boundary$jscomp$0) fatalError(request, x$jscomp$0);
|
|
9168
|
-
else
|
|
9169
|
-
|
|
9170
|
-
4 !== boundary$jscomp$0.status)
|
|
9171
|
-
|
|
9172
|
-
|
|
9173
|
-
|
|
9174
|
-
|
|
9175
|
-
|
|
9176
|
-
|
|
9177
|
-
|
|
9178
|
-
|
|
9179
|
-
|
|
9180
|
-
|
|
9181
|
-
|
|
9182
|
-
request.
|
|
9183
|
-
|
|
9184
|
-
|
|
9185
|
-
|
|
9186
|
-
|
|
9166
|
+
else {
|
|
9167
|
+
boundary$jscomp$0.pendingTasks--;
|
|
9168
|
+
if (4 !== boundary$jscomp$0.status) {
|
|
9169
|
+
boundary$jscomp$0.status = 4;
|
|
9170
|
+
boundary$jscomp$0.errorDigest = errorDigest$jscomp$0;
|
|
9171
|
+
untrackBoundary(request, boundary$jscomp$0);
|
|
9172
|
+
var boundaryRow = boundary$jscomp$0.row;
|
|
9173
|
+
null !== boundaryRow &&
|
|
9174
|
+
(request.allPendingTasks++,
|
|
9175
|
+
0 === --boundaryRow.pendingTasks &&
|
|
9176
|
+
finishSuspenseListRow(request, boundaryRow),
|
|
9177
|
+
request.allPendingTasks--);
|
|
9178
|
+
boundary$jscomp$0.parentFlushed &&
|
|
9179
|
+
request.clientRenderedBoundaries.push(boundary$jscomp$0);
|
|
9180
|
+
0 === request.pendingRootTasks &&
|
|
9181
|
+
null === request.trackedPostpones &&
|
|
9182
|
+
null !== boundary$jscomp$0.preamble &&
|
|
9183
|
+
preparePreamble(request);
|
|
9184
|
+
}
|
|
9185
|
+
0 === request.allPendingTasks && completeAll(request);
|
|
9187
9186
|
}
|
|
9188
|
-
0 === request.allPendingTasks && completeAll(request);
|
|
9189
9187
|
}
|
|
9190
9188
|
} finally {
|
|
9191
9189
|
request.currentTask = prevTask$jscomp$0;
|
|
@@ -9894,20 +9892,20 @@ exports.experimental_renderToHTML = function (children, options) {
|
|
|
9894
9892
|
void 0,
|
|
9895
9893
|
!1
|
|
9896
9894
|
),
|
|
9897
|
-
|
|
9898
|
-
|
|
9899
|
-
|
|
9900
|
-
|
|
9901
|
-
|
|
9895
|
+
JSCompiler_object_inline__rowState_2250 = 0,
|
|
9896
|
+
JSCompiler_object_inline__rowID_2251 = 0,
|
|
9897
|
+
JSCompiler_object_inline__rowTag_2252 = 0,
|
|
9898
|
+
JSCompiler_object_inline__rowLength_2253 = 0,
|
|
9899
|
+
JSCompiler_object_inline__buffer_2254 = [],
|
|
9902
9900
|
flightDestination = {
|
|
9903
9901
|
push: function (chunk) {
|
|
9904
9902
|
if (null !== chunk) {
|
|
9905
9903
|
for (
|
|
9906
9904
|
var i = 0,
|
|
9907
|
-
rowState =
|
|
9908
|
-
rowID =
|
|
9909
|
-
rowTag =
|
|
9910
|
-
rowLength =
|
|
9905
|
+
rowState = JSCompiler_object_inline__rowState_2250,
|
|
9906
|
+
rowID = JSCompiler_object_inline__rowID_2251,
|
|
9907
|
+
rowTag = JSCompiler_object_inline__rowTag_2252,
|
|
9908
|
+
rowLength = JSCompiler_object_inline__rowLength_2253,
|
|
9911
9909
|
chunkLength = chunk.length;
|
|
9912
9910
|
i < chunkLength;
|
|
9913
9911
|
|
|
@@ -9968,7 +9966,7 @@ exports.experimental_renderToHTML = function (children, options) {
|
|
|
9968
9966
|
lastIdx = chunk.length;
|
|
9969
9967
|
}
|
|
9970
9968
|
if (-1 < lastIdx) {
|
|
9971
|
-
if (0 <
|
|
9969
|
+
if (0 < JSCompiler_object_inline__buffer_2254.length)
|
|
9972
9970
|
throw Error(
|
|
9973
9971
|
"String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams."
|
|
9974
9972
|
);
|
|
@@ -10043,16 +10041,16 @@ exports.experimental_renderToHTML = function (children, options) {
|
|
|
10043
10041
|
i = lastIdx;
|
|
10044
10042
|
3 === rowState && i++;
|
|
10045
10043
|
rowLength = rowID = rowTag = rowState = 0;
|
|
10046
|
-
|
|
10044
|
+
JSCompiler_object_inline__buffer_2254.length = 0;
|
|
10047
10045
|
} else if (chunk.length !== i)
|
|
10048
10046
|
throw Error(
|
|
10049
10047
|
"String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams."
|
|
10050
10048
|
);
|
|
10051
10049
|
}
|
|
10052
|
-
|
|
10053
|
-
|
|
10054
|
-
|
|
10055
|
-
|
|
10050
|
+
JSCompiler_object_inline__rowState_2250 = rowState;
|
|
10051
|
+
JSCompiler_object_inline__rowID_2251 = rowID;
|
|
10052
|
+
JSCompiler_object_inline__rowTag_2252 = rowTag;
|
|
10053
|
+
JSCompiler_object_inline__rowLength_2253 = rowLength;
|
|
10056
10054
|
} else close(flightResponse);
|
|
10057
10055
|
return !0;
|
|
10058
10056
|
},
|
|
@@ -10161,4 +10159,4 @@ exports.experimental_renderToHTML = function (children, options) {
|
|
|
10161
10159
|
});
|
|
10162
10160
|
});
|
|
10163
10161
|
};
|
|
10164
|
-
exports.version = "19.3.0-experimental-
|
|
10162
|
+
exports.version = "19.3.0-experimental-e71a6393-20260702";
|
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-e71a6393-20260702",
|
|
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-e71a6393-20260702"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"LICENSE",
|