react-markup 0.0.0-experimental-280ff6fe-20250606 → 0.0.0-experimental-b6c0aa88-20250609

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.
@@ -8273,7 +8273,7 @@
8273
8273
  Error(
8274
8274
  "This rendered a large document (>" +
8275
8275
  Math.round(blockingRenderMaxSize / 1e3) +
8276
- ") without any Suspense boundaries around most of it. That can delay initial paint longer than necessary. To improve load performance, add a <Suspense> or <SuspenseList> around the content you expect to be below the header or below the fold. In the meantime, the content will deopt to paint arbitrary incomplete pieces of HTML."
8276
+ " kB) without any Suspense boundaries around most of it. That can delay initial paint longer than necessary. To improve load performance, add a <Suspense> or <SuspenseList> around the content you expect to be below the header or below the fold. In the meantime, the content will deopt to paint arbitrary incomplete pieces of HTML."
8277
8277
  ),
8278
8278
  {},
8279
8279
  null
@@ -9710,5 +9710,5 @@
9710
9710
  });
9711
9711
  });
9712
9712
  };
9713
- exports.version = "19.2.0-experimental-280ff6fe-20250606";
9713
+ exports.version = "19.2.0-experimental-b6c0aa88-20250609";
9714
9714
  })();
@@ -6355,7 +6355,7 @@ function flushCompletedQueues(request, destination) {
6355
6355
  Error(
6356
6356
  "This rendered a large document (>" +
6357
6357
  Math.round(blockingRenderMaxSize / 1e3) +
6358
- ") without any Suspense boundaries around most of it. That can delay initial paint longer than necessary. To improve load performance, add a <Suspense> or <SuspenseList> around the content you expect to be below the header or below the fold. In the meantime, the content will deopt to paint arbitrary incomplete pieces of HTML."
6358
+ " kB) without any Suspense boundaries around most of it. That can delay initial paint longer than necessary. To improve load performance, add a <Suspense> or <SuspenseList> around the content you expect to be below the header or below the fold. In the meantime, the content will deopt to paint arbitrary incomplete pieces of HTML."
6359
6359
  ),
6360
6360
  {},
6361
6361
  null
@@ -6723,4 +6723,4 @@ exports.experimental_renderToHTML = function (children, options) {
6723
6723
  });
6724
6724
  });
6725
6725
  };
6726
- exports.version = "19.2.0-experimental-280ff6fe-20250606";
6726
+ exports.version = "19.2.0-experimental-b6c0aa88-20250609";
@@ -991,17 +991,22 @@
991
991
  task.debugStack,
992
992
  task.debugTask
993
993
  );
994
- (task = thenable._debugInfo) &&
995
- forwardDebugInfo(request, newTask.id, task);
996
994
  switch (thenable.status) {
997
995
  case "fulfilled":
998
996
  return (
997
+ (task = thenable._debugInfo) &&
998
+ forwardDebugInfo(request, newTask, task),
999
999
  (newTask.model = thenable.value),
1000
1000
  pingTask$1(request, newTask),
1001
1001
  newTask.id
1002
1002
  );
1003
1003
  case "rejected":
1004
- return erroredTask$1(request, newTask, thenable.reason), newTask.id;
1004
+ return (
1005
+ (task = thenable._debugInfo) &&
1006
+ forwardDebugInfo(request, newTask, task),
1007
+ erroredTask$1(request, newTask, thenable.reason),
1008
+ newTask.id
1009
+ );
1005
1010
  default:
1006
1011
  if (request.status === ABORTING$1)
1007
1012
  return (
@@ -1029,10 +1034,14 @@
1029
1034
  }
1030
1035
  thenable.then(
1031
1036
  function (value) {
1037
+ var _debugInfo2 = thenable._debugInfo;
1038
+ _debugInfo2 && forwardDebugInfo(request, newTask, _debugInfo2);
1032
1039
  newTask.model = value;
1033
1040
  pingTask$1(request, newTask);
1034
1041
  },
1035
1042
  function (reason) {
1043
+ var _debugInfo3 = thenable._debugInfo;
1044
+ _debugInfo3 && forwardDebugInfo(request, newTask, _debugInfo3);
1036
1045
  newTask.status === PENDING$3 &&
1037
1046
  (erroredTask$1(request, newTask, reason), enqueueFlush(request));
1038
1047
  }
@@ -1179,7 +1188,7 @@
1179
1188
  task = streamTask.id.toString(16) + ":" + (isIterator ? "x" : "X") + "\n";
1180
1189
  request.completedRegularChunks.push(task);
1181
1190
  (iterable = iterable._debugInfo) &&
1182
- forwardDebugInfo(request, streamTask.id, iterable);
1191
+ forwardDebugInfo(request, streamTask, iterable);
1183
1192
  var aborted = !1;
1184
1193
  request.abortListeners.add(abortIterable);
1185
1194
  callIteratorInDEV(iterator, progress, error);
@@ -1313,39 +1322,45 @@
1313
1322
  ) {
1314
1323
  var prevThenableState = task.thenableState;
1315
1324
  task.thenableState = null;
1316
- if (null === debugID) return outlineTask(request, task);
1317
- if (null !== prevThenableState)
1318
- var componentDebugInfo = prevThenableState._componentDebugInfo;
1319
- else {
1320
- var componentDebugID = debugID;
1321
- componentDebugInfo = Component.displayName || Component.name || "";
1322
- var componentEnv = (0, request.environmentName)();
1323
- request.pendingChunks++;
1324
- componentDebugInfo = {
1325
- name: componentDebugInfo,
1326
- env: componentEnv,
1327
- key: key,
1328
- owner: task.debugOwner
1329
- };
1330
- componentDebugInfo.stack =
1331
- null === task.debugStack
1332
- ? null
1333
- : filterStackTrace(request, parseStackTrace(task.debugStack, 1));
1334
- componentDebugInfo.props = props;
1335
- componentDebugInfo.debugStack = task.debugStack;
1336
- componentDebugInfo.debugTask = task.debugTask;
1337
- outlineComponentInfo(request, componentDebugInfo);
1338
- task.timed = !0;
1339
- emitTimingChunk(
1340
- request,
1341
- componentDebugID,
1342
- (task.time = performance.now())
1343
- );
1344
- emitDebugChunk(request, componentDebugID, componentDebugInfo);
1345
- task.environmentName = componentEnv;
1346
- 2 === validated &&
1347
- warnForMissingKey$1(request, key, componentDebugInfo, task.debugTask);
1348
- }
1325
+ if (canEmitDebugInfo)
1326
+ if (null !== prevThenableState)
1327
+ var componentDebugInfo = prevThenableState._componentDebugInfo;
1328
+ else {
1329
+ var componentDebugID = task.id;
1330
+ componentDebugInfo = Component.displayName || Component.name || "";
1331
+ var componentEnv = (0, request.environmentName)();
1332
+ request.pendingChunks++;
1333
+ componentDebugInfo = {
1334
+ name: componentDebugInfo,
1335
+ env: componentEnv,
1336
+ key: key,
1337
+ owner: task.debugOwner
1338
+ };
1339
+ componentDebugInfo.stack =
1340
+ null === task.debugStack
1341
+ ? null
1342
+ : filterStackTrace(request, parseStackTrace(task.debugStack, 1));
1343
+ componentDebugInfo.props = props;
1344
+ componentDebugInfo.debugStack = task.debugStack;
1345
+ componentDebugInfo.debugTask = task.debugTask;
1346
+ outlineComponentInfo(request, componentDebugInfo);
1347
+ task.timed = !0;
1348
+ emitTimingChunk(
1349
+ request,
1350
+ componentDebugID,
1351
+ (task.time = performance.now())
1352
+ );
1353
+ emitDebugChunk(request, componentDebugID, componentDebugInfo);
1354
+ task.environmentName = componentEnv;
1355
+ 2 === validated &&
1356
+ warnForMissingKey$1(
1357
+ request,
1358
+ key,
1359
+ componentDebugInfo,
1360
+ task.debugTask
1361
+ );
1362
+ }
1363
+ else return outlineTask(request, task);
1349
1364
  thenableIndexCounter$1 = 0;
1350
1365
  thenableState$1 = prevThenableState;
1351
1366
  currentComponentDebugInfo = componentDebugInfo;
@@ -1434,8 +1449,8 @@
1434
1449
  task.implicitSlot ? [request] : request
1435
1450
  );
1436
1451
  if ((i = children._debugInfo)) {
1437
- if (null === debugID) return outlineTask(request, task);
1438
- forwardDebugInfo(request, debugID, i);
1452
+ if (canEmitDebugInfo) forwardDebugInfo(request, task, i);
1453
+ else return outlineTask(request, task);
1439
1454
  children = Array.from(children);
1440
1455
  }
1441
1456
  return children;
@@ -1885,10 +1900,10 @@
1885
1900
  _writtenObjects.set(value, elementReference)));
1886
1901
  }
1887
1902
  if (serializedSize > MAX_ROW_SIZE) return deferTask(request, task);
1888
- if ((_existingReference = value._debugInfo)) {
1889
- if (null === debugID) return outlineTask(request, task);
1890
- forwardDebugInfo(request, debugID, _existingReference);
1891
- }
1903
+ if ((_existingReference = value._debugInfo))
1904
+ if (canEmitDebugInfo)
1905
+ forwardDebugInfo(request, task, _existingReference);
1906
+ else return outlineTask(request, task);
1892
1907
  _existingReference = value.props;
1893
1908
  var refProp = _existingReference.ref;
1894
1909
  task.debugOwner = value._owner;
@@ -1914,10 +1929,10 @@
1914
1929
  task.thenableState = null;
1915
1930
  elementReference = callLazyInitInDEV$1(value);
1916
1931
  if (request.status === ABORTING$1) throw null;
1917
- if ((_writtenObjects = value._debugInfo)) {
1918
- if (null === debugID) return outlineTask(request, task);
1919
- forwardDebugInfo(request, debugID, _writtenObjects);
1920
- }
1932
+ if ((_writtenObjects = value._debugInfo))
1933
+ if (canEmitDebugInfo)
1934
+ forwardDebugInfo(request, task, _writtenObjects);
1935
+ else return outlineTask(request, task);
1921
1936
  return renderModelDestructive(
1922
1937
  request,
1923
1938
  task,
@@ -2317,11 +2332,19 @@
2317
2332
  objectLimit = { objectLimit: objectLimit };
2318
2333
  var componentDebugInfo = {
2319
2334
  name: componentInfo.name,
2320
- env: componentInfo.env,
2321
- key: componentInfo.key,
2322
- owner: componentInfo.owner
2335
+ key: componentInfo.key
2323
2336
  };
2324
- componentDebugInfo.stack = componentInfo.stack;
2337
+ null != componentInfo.env &&
2338
+ (componentDebugInfo.env = componentInfo.env);
2339
+ null != componentInfo.owner &&
2340
+ (componentDebugInfo.owner = componentInfo.owner);
2341
+ null == componentInfo.stack && null != componentInfo.debugStack
2342
+ ? (componentDebugInfo.stack = filterStackTrace(
2343
+ request,
2344
+ parseStackTrace(componentInfo.debugStack, 1)
2345
+ ))
2346
+ : null != componentInfo.stack &&
2347
+ (componentDebugInfo.stack = componentInfo.stack);
2325
2348
  componentDebugInfo.props = componentInfo.props;
2326
2349
  objectLimit = outlineConsoleValue(
2327
2350
  request,
@@ -2645,47 +2668,72 @@
2645
2668
  request.pendingChunks++;
2646
2669
  request.completedRegularChunks.push(":N" + timeOrigin + "\n");
2647
2670
  }
2648
- function forwardDebugInfo(request$jscomp$0, id$jscomp$0, debugInfo) {
2649
- for (var i = 0; i < debugInfo.length; i++)
2650
- if ("number" === typeof debugInfo[i].time)
2651
- emitTimingChunk(request$jscomp$0, id$jscomp$0, debugInfo[i].time);
2652
- else if (
2653
- (request$jscomp$0.pendingChunks++,
2654
- "string" === typeof debugInfo[i].name)
2655
- )
2656
- outlineComponentInfo(request$jscomp$0, debugInfo[i]),
2657
- emitDebugChunk(request$jscomp$0, id$jscomp$0, debugInfo[i]);
2658
- else if (debugInfo[i].awaited) {
2659
- var ioInfo = debugInfo[i].awaited;
2660
- var request = request$jscomp$0,
2661
- ioInfo$jscomp$0 = ioInfo;
2662
- if (!request.writtenObjects.has(ioInfo$jscomp$0)) {
2663
- request.pendingChunks++;
2664
- var id = request.nextChunkId++,
2665
- owner = ioInfo$jscomp$0.owner;
2666
- null != owner && outlineComponentInfo(request, owner);
2667
- emitIOInfoChunk(
2668
- request,
2669
- id,
2670
- ioInfo$jscomp$0.name,
2671
- ioInfo$jscomp$0.start,
2672
- ioInfo$jscomp$0.end,
2673
- ioInfo$jscomp$0.env,
2674
- owner,
2675
- ioInfo$jscomp$0.stack
2676
- );
2677
- request.writtenObjects.set(
2678
- ioInfo$jscomp$0,
2679
- serializeByValueID$1(id)
2680
- );
2671
+ function forwardDebugInfo(request$jscomp$0, task, debugInfo) {
2672
+ var id = task.id;
2673
+ task = task.time;
2674
+ for (var i = 0; i < debugInfo.length; i++) {
2675
+ var info = debugInfo[i];
2676
+ if ("number" === typeof info.time)
2677
+ emitTimingChunk(
2678
+ request$jscomp$0,
2679
+ id,
2680
+ info.time < task ? task : info.time
2681
+ );
2682
+ else if ("string" === typeof info.name)
2683
+ outlineComponentInfo(request$jscomp$0, info),
2684
+ request$jscomp$0.pendingChunks++,
2685
+ emitDebugChunk(request$jscomp$0, id, info);
2686
+ else if (info.awaited) {
2687
+ var ioInfo = info.awaited;
2688
+ if (!(ioInfo.end <= request$jscomp$0.timeOrigin)) {
2689
+ var request = request$jscomp$0,
2690
+ ioInfo$jscomp$0 = ioInfo;
2691
+ if (!request.writtenObjects.has(ioInfo$jscomp$0)) {
2692
+ request.pendingChunks++;
2693
+ var id$jscomp$0 = request.nextChunkId++,
2694
+ owner = ioInfo$jscomp$0.owner;
2695
+ null != owner && outlineComponentInfo(request, owner);
2696
+ var debugStack =
2697
+ null == ioInfo$jscomp$0.stack &&
2698
+ null != ioInfo$jscomp$0.debugStack
2699
+ ? filterStackTrace(
2700
+ request,
2701
+ parseStackTrace(ioInfo$jscomp$0.debugStack, 1)
2702
+ )
2703
+ : ioInfo$jscomp$0.stack;
2704
+ emitIOInfoChunk(
2705
+ request,
2706
+ id$jscomp$0,
2707
+ ioInfo$jscomp$0.name,
2708
+ ioInfo$jscomp$0.start,
2709
+ ioInfo$jscomp$0.end,
2710
+ ioInfo$jscomp$0.env,
2711
+ owner,
2712
+ debugStack
2713
+ );
2714
+ request.writtenObjects.set(
2715
+ ioInfo$jscomp$0,
2716
+ serializeByValueID$1(id$jscomp$0)
2717
+ );
2718
+ }
2719
+ debugStack =
2720
+ null == info.stack && null != info.debugStack
2721
+ ? filterStackTrace(
2722
+ request$jscomp$0,
2723
+ parseStackTrace(info.debugStack, 1)
2724
+ )
2725
+ : info.stack;
2726
+ ioInfo = { awaited: ioInfo };
2727
+ null != info.env && (ioInfo.env = info.env);
2728
+ null != info.owner && (ioInfo.owner = info.owner);
2729
+ null != debugStack && (ioInfo.stack = debugStack);
2730
+ request$jscomp$0.pendingChunks++;
2731
+ emitDebugChunk(request$jscomp$0, id, ioInfo);
2681
2732
  }
2682
- emitDebugChunk(request$jscomp$0, id$jscomp$0, {
2683
- awaited: ioInfo,
2684
- env: debugInfo[i].env,
2685
- owner: debugInfo[i].owner,
2686
- stack: debugInfo[i].stack
2687
- });
2688
- } else emitDebugChunk(request$jscomp$0, id$jscomp$0, debugInfo[i]);
2733
+ } else
2734
+ request$jscomp$0.pendingChunks++,
2735
+ emitDebugChunk(request$jscomp$0, id, info);
2736
+ }
2689
2737
  }
2690
2738
  function emitTimingChunk(request, id, timestamp) {
2691
2739
  request.pendingChunks++;
@@ -2744,12 +2792,12 @@
2744
2792
  }
2745
2793
  function retryTask$1(request, task) {
2746
2794
  if (task.status === PENDING$3) {
2747
- var prevDebugID = debugID;
2795
+ var prevCanEmitDebugInfo = canEmitDebugInfo;
2748
2796
  task.status = RENDERING$1;
2749
2797
  var parentSerializedSize = serializedSize;
2750
2798
  try {
2751
2799
  modelRoot = task.model;
2752
- debugID = task.id;
2800
+ canEmitDebugInfo = !0;
2753
2801
  var resolvedModel = renderModelDestructive(
2754
2802
  request,
2755
2803
  task,
@@ -2757,7 +2805,7 @@
2757
2805
  "",
2758
2806
  task.model
2759
2807
  );
2760
- debugID = null;
2808
+ canEmitDebugInfo = !1;
2761
2809
  modelRoot = resolvedModel;
2762
2810
  task.keyPath = null;
2763
2811
  task.implicitSlot = !1;
@@ -2809,18 +2857,20 @@
2809
2857
  } else erroredTask$1(request, task, x);
2810
2858
  }
2811
2859
  } finally {
2812
- (debugID = prevDebugID), (serializedSize = parentSerializedSize);
2860
+ (canEmitDebugInfo = prevCanEmitDebugInfo),
2861
+ (serializedSize = parentSerializedSize);
2813
2862
  }
2814
2863
  }
2815
2864
  }
2816
2865
  function tryStreamTask(request, task) {
2817
- var prevDebugID = debugID;
2818
- debugID = null;
2866
+ var prevCanEmitDebugInfo = canEmitDebugInfo;
2867
+ canEmitDebugInfo = !1;
2819
2868
  var parentSerializedSize = serializedSize;
2820
2869
  try {
2821
2870
  emitChunk(request, task, task.model);
2822
2871
  } finally {
2823
- (serializedSize = parentSerializedSize), (debugID = prevDebugID);
2872
+ (serializedSize = parentSerializedSize),
2873
+ (canEmitDebugInfo = prevCanEmitDebugInfo);
2824
2874
  }
2825
2875
  }
2826
2876
  function performWork$1(request) {
@@ -4771,66 +4821,46 @@
4771
4821
  : rootTask
4772
4822
  : null;
4773
4823
  }
4774
- function initializeFakeTask(response, debugInfo, childEnvironmentName) {
4824
+ function initializeFakeTask(response, debugInfo) {
4775
4825
  if (!supportsCreateTask || null == debugInfo.stack) return null;
4826
+ var cachedEntry = debugInfo.debugTask;
4827
+ if (void 0 !== cachedEntry) return cachedEntry;
4776
4828
  var useEnclosingLine = void 0 === debugInfo.key,
4777
4829
  stack = debugInfo.stack,
4778
4830
  env =
4779
4831
  null == debugInfo.env ? response._rootEnvironmentName : debugInfo.env;
4780
- if (env !== childEnvironmentName)
4781
- return (
4782
- (debugInfo =
4783
- null == debugInfo.owner
4784
- ? null
4785
- : initializeFakeTask(response, debugInfo.owner, env)),
4786
- buildFakeTask(
4787
- response,
4788
- debugInfo,
4789
- stack,
4790
- '"use ' + childEnvironmentName.toLowerCase() + '"',
4791
- env,
4792
- useEnclosingLine
4793
- )
4794
- );
4795
- childEnvironmentName = debugInfo.debugTask;
4796
- if (void 0 !== childEnvironmentName) return childEnvironmentName;
4797
- childEnvironmentName =
4832
+ cachedEntry =
4833
+ null == debugInfo.owner || null == debugInfo.owner.env
4834
+ ? response._rootEnvironmentName
4835
+ : debugInfo.owner.env;
4836
+ var ownerTask =
4798
4837
  null == debugInfo.owner
4799
4838
  ? null
4800
- : initializeFakeTask(response, debugInfo.owner, env);
4801
- return (debugInfo.debugTask = buildFakeTask(
4802
- response,
4803
- childEnvironmentName,
4804
- stack,
4805
- void 0 !== debugInfo.key
4806
- ? "<" + (debugInfo.name || "...") + ">"
4807
- : void 0 !== debugInfo.name
4808
- ? debugInfo.name || "unknown"
4809
- : "await " + (debugInfo.awaited.name || "unknown"),
4810
- env,
4811
- useEnclosingLine
4812
- ));
4813
- }
4814
- function buildFakeTask(
4815
- response,
4816
- ownerTask,
4817
- stack,
4818
- taskName,
4819
- env,
4820
- useEnclosingLine
4821
- ) {
4822
- taskName = console.createTask.bind(console, taskName);
4823
- stack = buildFakeCallStack(
4839
+ : initializeFakeTask(response, debugInfo.owner);
4840
+ env =
4841
+ env !== cachedEntry
4842
+ ? '"use ' + env.toLowerCase() + '"'
4843
+ : void 0 !== debugInfo.key
4844
+ ? "<" + (debugInfo.name || "...") + ">"
4845
+ : void 0 !== debugInfo.name
4846
+ ? debugInfo.name || "unknown"
4847
+ : "await " + (debugInfo.awaited.name || "unknown");
4848
+ env = console.createTask.bind(console, env);
4849
+ useEnclosingLine = buildFakeCallStack(
4824
4850
  response,
4825
4851
  stack,
4826
- env,
4852
+ cachedEntry,
4827
4853
  useEnclosingLine,
4828
- taskName
4854
+ env
4829
4855
  );
4830
- return null === ownerTask
4831
- ? ((response = getRootTask(response, env)),
4832
- null != response ? response.run(stack) : stack())
4833
- : ownerTask.run(stack);
4856
+ null === ownerTask
4857
+ ? ((response = getRootTask(response, cachedEntry)),
4858
+ (response =
4859
+ null != response
4860
+ ? response.run(useEnclosingLine)
4861
+ : useEnclosingLine()))
4862
+ : (response = ownerTask.run(useEnclosingLine));
4863
+ return (debugInfo.debugTask = response);
4834
4864
  }
4835
4865
  function fakeJSXCallSite() {
4836
4866
  return Error("react-stack-top-frame");
@@ -4847,18 +4877,15 @@
4847
4877
  initializeFakeStack(response, debugInfo.owner));
4848
4878
  }
4849
4879
  function resolveDebugInfo(response, id, debugInfo) {
4850
- var env =
4851
- void 0 === debugInfo.env
4852
- ? response._rootEnvironmentName
4853
- : debugInfo.env;
4854
- void 0 !== debugInfo.stack &&
4855
- initializeFakeTask(response, debugInfo, env);
4856
- null === debugInfo.owner && null != response._debugRootOwner
4857
- ? ((env = debugInfo),
4858
- (env.owner = response._debugRootOwner),
4859
- (env.debugStack = response._debugRootStack))
4860
- : void 0 !== debugInfo.stack &&
4861
- initializeFakeStack(response, debugInfo);
4880
+ void 0 !== debugInfo.stack && initializeFakeTask(response, debugInfo);
4881
+ if (null == debugInfo.owner && null != response._debugRootOwner) {
4882
+ var _componentInfoOrAsyncInfo = debugInfo;
4883
+ _componentInfoOrAsyncInfo.owner = response._debugRootOwner;
4884
+ _componentInfoOrAsyncInfo.stack = null;
4885
+ _componentInfoOrAsyncInfo.debugStack = response._debugRootStack;
4886
+ _componentInfoOrAsyncInfo.debugTask = response._debugRootTask;
4887
+ } else
4888
+ void 0 !== debugInfo.stack && initializeFakeStack(response, debugInfo);
4862
4889
  "number" === typeof debugInfo.time &&
4863
4890
  (debugInfo = { time: debugInfo.time + response._timeOrigin });
4864
4891
  response = getChunk(response, id);
@@ -4887,23 +4914,20 @@
4887
4914
  }
4888
4915
  }
4889
4916
  function initializeIOInfo(response, ioInfo) {
4890
- var env =
4891
- void 0 === ioInfo.env ? response._rootEnvironmentName : ioInfo.env;
4892
4917
  void 0 !== ioInfo.stack &&
4893
- (initializeFakeTask(response, ioInfo, env),
4918
+ (initializeFakeTask(response, ioInfo),
4894
4919
  initializeFakeStack(response, ioInfo));
4895
4920
  ioInfo.start += response._timeOrigin;
4896
4921
  ioInfo.end += response._timeOrigin;
4897
- env = ioInfo.start;
4898
- var endTime = ioInfo.end;
4922
+ var startTime = ioInfo.start,
4923
+ endTime = ioInfo.end;
4899
4924
  if (supportsUserTiming && 0 <= endTime) {
4900
4925
  var name = ioInfo.name,
4901
- env$jscomp$0 = ioInfo.env;
4926
+ env = ioInfo.env;
4902
4927
  response =
4903
- env$jscomp$0 === response._rootEnvironmentName ||
4904
- void 0 === env$jscomp$0
4928
+ env === response._rootEnvironmentName || void 0 === env
4905
4929
  ? name
4906
- : name + " [" + env$jscomp$0 + "]";
4930
+ : name + " [" + env + "]";
4907
4931
  ioInfo = ioInfo.debugTask;
4908
4932
  name = getIOColor(name);
4909
4933
  ioInfo
@@ -4911,7 +4935,7 @@
4911
4935
  console.timeStamp.bind(
4912
4936
  console,
4913
4937
  response,
4914
- 0 > env ? 0 : env,
4938
+ 0 > startTime ? 0 : startTime,
4915
4939
  endTime,
4916
4940
  "Server Requests \u269b",
4917
4941
  void 0,
@@ -4920,7 +4944,7 @@
4920
4944
  )
4921
4945
  : console.timeStamp(
4922
4946
  response,
4923
- 0 > env ? 0 : env,
4947
+ 0 > startTime ? 0 : startTime,
4924
4948
  endTime,
4925
4949
  "Server Requests \u269b",
4926
4950
  void 0,
@@ -5333,10 +5357,7 @@
5333
5357
  !1,
5334
5358
  type
5335
5359
  )),
5336
- (type =
5337
- null === key
5338
- ? null
5339
- : initializeFakeTask(response, key, validated)),
5360
+ (type = null === key ? null : initializeFakeTask(response, key)),
5340
5361
  null === type
5341
5362
  ? ((type = response._debugRootTask),
5342
5363
  (normalizedStackTrace =
@@ -13039,7 +13060,7 @@
13039
13060
  Error(
13040
13061
  "This rendered a large document (>" +
13041
13062
  Math.round(blockingRenderMaxSize / 1e3) +
13042
- ") without any Suspense boundaries around most of it. That can delay initial paint longer than necessary. To improve load performance, add a <Suspense> or <SuspenseList> around the content you expect to be below the header or below the fold. In the meantime, the content will deopt to paint arbitrary incomplete pieces of HTML."
13063
+ " kB) without any Suspense boundaries around most of it. That can delay initial paint longer than necessary. To improve load performance, add a <Suspense> or <SuspenseList> around the content you expect to be below the header or below the fold. In the meantime, the content will deopt to paint arbitrary incomplete pieces of HTML."
13043
13064
  ),
13044
13065
  {},
13045
13066
  null
@@ -13704,7 +13725,7 @@
13704
13725
  ReactSharedInternalsServer.TaintRegistryPendingRequests,
13705
13726
  defaultPostponeHandler = noop,
13706
13727
  currentRequest = null,
13707
- debugID = null,
13728
+ canEmitDebugInfo = !1,
13708
13729
  serializedSize = 0,
13709
13730
  MAX_ROW_SIZE = 3200,
13710
13731
  modelRoot = !1,
@@ -13814,7 +13835,7 @@
13814
13835
  bindToConsole(methodName, args, env)
13815
13836
  );
13816
13837
  if (null != owner) {
13817
- var task = initializeFakeTask(response, owner, env);
13838
+ var task = initializeFakeTask(response, owner);
13818
13839
  initializeFakeStack(response, owner);
13819
13840
  if (null !== task) {
13820
13841
  task.run(callStack);
@@ -14951,5 +14972,5 @@
14951
14972
  });
14952
14973
  });
14953
14974
  };
14954
- exports.version = "19.2.0-experimental-280ff6fe-20250606";
14975
+ exports.version = "19.2.0-experimental-b6c0aa88-20250609";
14955
14976
  })();
@@ -9078,7 +9078,7 @@ function flushCompletedQueues(request, destination) {
9078
9078
  Error(
9079
9079
  "This rendered a large document (>" +
9080
9080
  Math.round(blockingRenderMaxSize / 1e3) +
9081
- ") without any Suspense boundaries around most of it. That can delay initial paint longer than necessary. To improve load performance, add a <Suspense> or <SuspenseList> around the content you expect to be below the header or below the fold. In the meantime, the content will deopt to paint arbitrary incomplete pieces of HTML."
9081
+ " kB) without any Suspense boundaries around most of it. That can delay initial paint longer than necessary. To improve load performance, add a <Suspense> or <SuspenseList> around the content you expect to be below the header or below the fold. In the meantime, the content will deopt to paint arbitrary incomplete pieces of HTML."
9082
9082
  ),
9083
9083
  {},
9084
9084
  null
@@ -9684,4 +9684,4 @@ exports.experimental_renderToHTML = function (children, options) {
9684
9684
  });
9685
9685
  });
9686
9686
  };
9687
- exports.version = "19.2.0-experimental-280ff6fe-20250606";
9687
+ exports.version = "19.2.0-experimental-b6c0aa88-20250609";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-markup",
3
- "version": "0.0.0-experimental-280ff6fe-20250606",
3
+ "version": "0.0.0-experimental-b6c0aa88-20250609",
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-280ff6fe-20250606"
20
+ "react": "0.0.0-experimental-b6c0aa88-20250609"
21
21
  },
22
22
  "files": [
23
23
  "LICENSE",