react-markup 0.0.0-experimental-372ec00c-20241209 → 0.0.0-experimental-79ddf5b5-20241210

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.
@@ -8635,5 +8635,5 @@
8635
8635
  });
8636
8636
  });
8637
8637
  };
8638
- exports.version = "19.0.0-experimental-372ec00c-20241209";
8638
+ exports.version = "19.0.0-experimental-79ddf5b5-20241210";
8639
8639
  })();
@@ -5710,4 +5710,4 @@ exports.experimental_renderToHTML = function (children, options) {
5710
5710
  });
5711
5711
  });
5712
5712
  };
5713
- exports.version = "19.0.0-experimental-372ec00c-20241209";
5713
+ exports.version = "19.0.0-experimental-79ddf5b5-20241210";
@@ -823,8 +823,10 @@
823
823
  ? defaultFilterStackFrame
824
824
  : filterStackFrame;
825
825
  this.didWarnForKey = null;
826
- type = createTask(this, model, null, !1, abortSet, null, null, null);
827
- pingedTasks.push(type);
826
+ type = this.timeOrigin = performance.now();
827
+ emitTimeOriginChunk(this, type + performance.timeOrigin);
828
+ model = createTask(this, model, null, !1, abortSet, null, null, null);
829
+ pingedTasks.push(model);
828
830
  }
829
831
  function noop$3() {}
830
832
  function serializeThenable(request, task, thenable) {
@@ -848,21 +850,7 @@
848
850
  newTask.id
849
851
  );
850
852
  case "rejected":
851
- task = thenable.reason;
852
- if (
853
- "object" === typeof task &&
854
- null !== task &&
855
- task.$$typeof === REACT_POSTPONE_TYPE
856
- )
857
- logPostpone$1(request, task.message, newTask),
858
- emitPostponeChunk(request, newTask.id, task);
859
- else {
860
- var digest = logRecoverableError$1(request, task, null);
861
- emitErrorChunk(request, newTask.id, digest, task);
862
- }
863
- newTask.status = ERRORED$2;
864
- request.abortableTasks.delete(newTask);
865
- return newTask.id;
853
+ return erroredTask$1(request, newTask, thenable.reason), newTask.id;
866
854
  default:
867
855
  if (request.status === ABORTING$1)
868
856
  return (
@@ -894,24 +882,11 @@
894
882
  pingTask$1(request, newTask);
895
883
  },
896
884
  function (reason) {
897
- if (newTask.status === PENDING$3) {
898
- if (
899
- "object" === typeof reason &&
900
- null !== reason &&
901
- reason.$$typeof === REACT_POSTPONE_TYPE
902
- )
903
- logPostpone$1(request, reason.message, newTask),
904
- emitPostponeChunk(request, newTask.id, reason);
905
- else {
906
- var _digest = logRecoverableError$1(request, reason, newTask);
907
- emitErrorChunk(request, newTask.id, _digest, reason);
908
- }
909
- newTask.status = ERRORED$2;
910
- request.abortableTasks.delete(newTask);
911
- enqueueFlush(request);
912
- }
885
+ newTask.status === PENDING$3 &&
886
+ (erroredTask$1(request, newTask, reason), enqueueFlush(request));
913
887
  }
914
888
  );
889
+ newTask.timed = !0;
915
890
  return newTask.id;
916
891
  }
917
892
  function serializeReadableStream(request, task, stream) {
@@ -935,38 +910,22 @@
935
910
  }
936
911
  }
937
912
  function error(reason) {
938
- if (!aborted) {
939
- aborted = !0;
940
- request.abortListeners.delete(abortStream);
941
- var digest = logRecoverableError$1(request, reason, streamTask);
942
- emitErrorChunk(request, streamTask.id, digest, reason);
943
- enqueueFlush(request);
944
- reader.cancel(reason).then(error, error);
945
- }
913
+ aborted ||
914
+ ((aborted = !0),
915
+ request.abortListeners.delete(abortStream),
916
+ erroredTask$1(request, streamTask, reason),
917
+ enqueueFlush(request),
918
+ reader.cancel(reason).then(error, error));
946
919
  }
947
920
  function abortStream(reason) {
948
- if (!aborted) {
949
- aborted = !0;
950
- request.abortListeners.delete(abortStream);
951
- if (
952
- "object" === typeof reason &&
953
- null !== reason &&
954
- reason.$$typeof === REACT_POSTPONE_TYPE
955
- )
956
- logPostpone$1(request, reason.message, streamTask),
957
- request.type === PRERENDER
958
- ? request.pendingChunks--
959
- : (emitPostponeChunk(request, streamTask.id, reason),
960
- enqueueFlush(request));
961
- else {
962
- var digest = logRecoverableError$1(request, reason, streamTask);
963
- request.type === PRERENDER
964
- ? request.pendingChunks--
965
- : (emitErrorChunk(request, streamTask.id, digest, reason),
966
- enqueueFlush(request));
967
- }
968
- reader.cancel(reason).then(error, error);
969
- }
921
+ aborted ||
922
+ ((aborted = !0),
923
+ request.abortListeners.delete(abortStream),
924
+ request.type === PRERENDER
925
+ ? request.pendingChunks--
926
+ : (erroredTask$1(request, streamTask, reason),
927
+ enqueueFlush(request)),
928
+ reader.cancel(reason).then(error, error));
970
929
  }
971
930
  var supportsBYOB = stream.supportsBYOB;
972
931
  if (void 0 === supportsBYOB)
@@ -1030,40 +989,24 @@
1030
989
  }
1031
990
  }
1032
991
  function error(reason) {
1033
- if (!aborted) {
1034
- aborted = !0;
1035
- request.abortListeners.delete(abortIterable);
1036
- var digest = logRecoverableError$1(request, reason, streamTask);
1037
- emitErrorChunk(request, streamTask.id, digest, reason);
1038
- enqueueFlush(request);
992
+ aborted ||
993
+ ((aborted = !0),
994
+ request.abortListeners.delete(abortIterable),
995
+ erroredTask$1(request, streamTask, reason),
996
+ enqueueFlush(request),
1039
997
  "function" === typeof iterator.throw &&
1040
- iterator.throw(reason).then(error, error);
1041
- }
998
+ iterator.throw(reason).then(error, error));
1042
999
  }
1043
1000
  function abortIterable(reason) {
1044
- if (!aborted) {
1045
- aborted = !0;
1046
- request.abortListeners.delete(abortIterable);
1047
- if (
1048
- "object" === typeof reason &&
1049
- null !== reason &&
1050
- reason.$$typeof === REACT_POSTPONE_TYPE
1051
- )
1052
- logPostpone$1(request, reason.message, streamTask),
1053
- request.type === PRERENDER
1054
- ? request.pendingChunks--
1055
- : (emitPostponeChunk(request, streamTask.id, reason),
1056
- enqueueFlush(request));
1057
- else {
1058
- var digest = logRecoverableError$1(request, reason, streamTask);
1059
- request.type === PRERENDER
1060
- ? request.pendingChunks--
1061
- : (emitErrorChunk(request, streamTask.id, digest, reason),
1062
- enqueueFlush(request));
1063
- }
1001
+ aborted ||
1002
+ ((aborted = !0),
1003
+ request.abortListeners.delete(abortIterable),
1004
+ request.type === PRERENDER
1005
+ ? request.pendingChunks--
1006
+ : (erroredTask$1(request, streamTask, reason),
1007
+ enqueueFlush(request)),
1064
1008
  "function" === typeof iterator.throw &&
1065
- iterator.throw(reason).then(error, error);
1066
- }
1009
+ iterator.throw(reason).then(error, error));
1067
1010
  }
1068
1011
  var isIterator = iterable === iterator,
1069
1012
  streamTask = createTask(
@@ -1237,6 +1180,8 @@
1237
1180
  componentDebugInfo.debugStack = task.debugStack;
1238
1181
  componentDebugInfo.debugTask = task.debugTask;
1239
1182
  outlineComponentInfo(request, componentDebugInfo);
1183
+ task.timed = !0;
1184
+ emitTimingChunk(request, componentDebugID, performance.now());
1240
1185
  emitDebugChunk(request, componentDebugID, componentDebugInfo);
1241
1186
  task.environmentName = componentEnv;
1242
1187
  2 === validated &&
@@ -1480,6 +1425,7 @@
1480
1425
  return task;
1481
1426
  }
1482
1427
  function pingTask$1(request, task) {
1428
+ task.timed = !0;
1483
1429
  var pingedTasks = request.pingedTasks;
1484
1430
  pingedTasks.push(task);
1485
1431
  1 === pingedTasks.length &&
@@ -1538,7 +1484,8 @@
1538
1484
  });
1539
1485
  return renderModel(request, task, parent, parentPropertyName, value);
1540
1486
  },
1541
- thenableState: null
1487
+ thenableState: null,
1488
+ timed: !1
1542
1489
  };
1543
1490
  task.environmentName = request.environmentName();
1544
1491
  task.debugOwner = debugOwner;
@@ -1622,38 +1569,21 @@
1622
1569
  );
1623
1570
  }
1624
1571
  function error(reason) {
1625
- if (!aborted) {
1626
- aborted = !0;
1627
- request.abortListeners.delete(abortBlob);
1628
- var digest = logRecoverableError$1(request, reason, newTask);
1629
- emitErrorChunk(request, newTask.id, digest, reason);
1630
- enqueueFlush(request);
1631
- reader.cancel(reason).then(error, error);
1632
- }
1572
+ aborted ||
1573
+ ((aborted = !0),
1574
+ request.abortListeners.delete(abortBlob),
1575
+ erroredTask$1(request, newTask, reason),
1576
+ enqueueFlush(request),
1577
+ reader.cancel(reason).then(error, error));
1633
1578
  }
1634
1579
  function abortBlob(reason) {
1635
- if (!aborted) {
1636
- aborted = !0;
1637
- request.abortListeners.delete(abortBlob);
1638
- if (
1639
- "object" === typeof reason &&
1640
- null !== reason &&
1641
- reason.$$typeof === REACT_POSTPONE_TYPE
1642
- )
1643
- logPostpone$1(request, reason.message, newTask),
1644
- request.type === PRERENDER
1645
- ? request.pendingChunks--
1646
- : (emitPostponeChunk(request, newTask.id, reason),
1647
- enqueueFlush(request));
1648
- else {
1649
- var digest = logRecoverableError$1(request, reason, newTask);
1650
- request.type === PRERENDER
1651
- ? request.pendingChunks--
1652
- : (emitErrorChunk(request, newTask.id, digest, reason),
1653
- enqueueFlush(request));
1654
- }
1655
- reader.cancel(reason).then(error, error);
1656
- }
1580
+ aborted ||
1581
+ ((aborted = !0),
1582
+ request.abortListeners.delete(abortBlob),
1583
+ request.type === PRERENDER
1584
+ ? request.pendingChunks--
1585
+ : (erroredTask$1(request, newTask, reason), enqueueFlush(request)),
1586
+ reader.cancel(reason).then(error, error));
1657
1587
  }
1658
1588
  var model = [blob.type],
1659
1589
  newTask = createTask(
@@ -1701,45 +1631,42 @@
1701
1631
  thrownValue === SuspenseException$1
1702
1632
  ? getSuspendedThenable$1()
1703
1633
  : thrownValue;
1704
- if ("object" === typeof key && null !== key) {
1705
- if ("function" === typeof key.then)
1706
- return (
1707
- (request = createTask(
1708
- request,
1709
- task.model,
1710
- task.keyPath,
1711
- task.implicitSlot,
1712
- request.abortableTasks,
1713
- task.debugOwner,
1714
- task.debugStack,
1715
- task.debugTask
1716
- )),
1717
- (value = request.ping),
1718
- key.then(value, value),
1719
- (request.thenableState = getThenableStateAfterSuspending$1()),
1720
- (task.keyPath = prevKeyPath),
1721
- (task.implicitSlot = prevImplicitSlot),
1722
- parent
1723
- ? "$L" + request.id.toString(16)
1724
- : serializeByValueID$1(request.id)
1725
- );
1726
- if (key.$$typeof === REACT_POSTPONE_TYPE)
1727
- return (
1728
- request.pendingChunks++,
1729
- (value = request.nextChunkId++),
1730
- logPostpone$1(request, key.message, task),
1731
- emitPostponeChunk(request, value, key),
1732
- (task.keyPath = prevKeyPath),
1733
- (task.implicitSlot = prevImplicitSlot),
1734
- parent ? "$L" + value.toString(16) : serializeByValueID$1(value)
1735
- );
1736
- }
1634
+ if (
1635
+ "object" === typeof key &&
1636
+ null !== key &&
1637
+ "function" === typeof key.then
1638
+ )
1639
+ return (
1640
+ (request = createTask(
1641
+ request,
1642
+ task.model,
1643
+ task.keyPath,
1644
+ task.implicitSlot,
1645
+ request.abortableTasks,
1646
+ task.debugOwner,
1647
+ task.debugStack,
1648
+ task.debugTask
1649
+ )),
1650
+ (value = request.ping),
1651
+ key.then(value, value),
1652
+ (request.thenableState = getThenableStateAfterSuspending$1()),
1653
+ (task.keyPath = prevKeyPath),
1654
+ (task.implicitSlot = prevImplicitSlot),
1655
+ parent
1656
+ ? "$L" + request.id.toString(16)
1657
+ : serializeByValueID$1(request.id)
1658
+ );
1737
1659
  task.keyPath = prevKeyPath;
1738
1660
  task.implicitSlot = prevImplicitSlot;
1739
1661
  request.pendingChunks++;
1740
1662
  prevKeyPath = request.nextChunkId++;
1741
- task = logRecoverableError$1(request, key, task);
1742
- emitErrorChunk(request, prevKeyPath, task, key);
1663
+ "object" === typeof key &&
1664
+ null !== key &&
1665
+ key.$$typeof === REACT_POSTPONE_TYPE
1666
+ ? (logPostpone$1(request, key.message, task),
1667
+ emitPostponeChunk(request, prevKeyPath, key))
1668
+ : ((task = logRecoverableError$1(request, key, task)),
1669
+ emitErrorChunk(request, prevKeyPath, task, key));
1743
1670
  return parent
1744
1671
  ? "$L" + prevKeyPath.toString(16)
1745
1672
  : serializeByValueID$1(prevKeyPath);
@@ -2486,12 +2413,24 @@
2486
2413
  }
2487
2414
  request.completedRegularChunks.push(":W" + json + "\n");
2488
2415
  }
2416
+ function emitTimeOriginChunk(request, timeOrigin) {
2417
+ request.pendingChunks++;
2418
+ request.completedRegularChunks.push(":N" + timeOrigin + "\n");
2419
+ }
2489
2420
  function forwardDebugInfo(request, id, debugInfo) {
2490
2421
  for (var i = 0; i < debugInfo.length; i++)
2491
2422
  request.pendingChunks++,
2492
- "string" === typeof debugInfo[i].name &&
2493
- outlineComponentInfo(request, debugInfo[i]),
2494
- emitDebugChunk(request, id, debugInfo[i]);
2423
+ "number" === typeof debugInfo[i].time
2424
+ ? emitTimingChunk(request, id, debugInfo[i].time)
2425
+ : ("string" === typeof debugInfo[i].name &&
2426
+ outlineComponentInfo(request, debugInfo[i]),
2427
+ emitDebugChunk(request, id, debugInfo[i]));
2428
+ }
2429
+ function emitTimingChunk(request, id, timestamp) {
2430
+ request.pendingChunks++;
2431
+ timestamp -= request.timeOrigin;
2432
+ id = id.toString(16) + ':D{"time":' + timestamp + "}\n";
2433
+ request.completedRegularChunks.push(id);
2495
2434
  }
2496
2435
  function emitChunk(request, task, value) {
2497
2436
  var id = task.id;
@@ -2524,6 +2463,22 @@
2524
2463
  : ((value = stringify(value, task.toJSON)),
2525
2464
  emitModelChunk(request, task.id, value));
2526
2465
  }
2466
+ function erroredTask$1(request, task, error) {
2467
+ task.timed && emitTimingChunk(request, task.id, performance.now());
2468
+ request.abortableTasks.delete(task);
2469
+ task.status = ERRORED$2;
2470
+ if (
2471
+ "object" === typeof error &&
2472
+ null !== error &&
2473
+ error.$$typeof === REACT_POSTPONE_TYPE
2474
+ )
2475
+ logPostpone$1(request, error.message, task),
2476
+ emitPostponeChunk(request, task.id, error);
2477
+ else {
2478
+ var digest = logRecoverableError$1(request, error, task);
2479
+ emitErrorChunk(request, task.id, digest, error);
2480
+ }
2481
+ }
2527
2482
  function retryTask$1(request, task) {
2528
2483
  if (task.status === PENDING$3) {
2529
2484
  var prevDebugID = debugID;
@@ -2542,22 +2497,19 @@
2542
2497
  modelRoot = resolvedModel;
2543
2498
  task.keyPath = null;
2544
2499
  task.implicitSlot = !1;
2545
- if ("object" === typeof resolvedModel && null !== resolvedModel) {
2500
+ var currentEnv = (0, request.environmentName)();
2501
+ currentEnv !== task.environmentName &&
2502
+ (request.pendingChunks++,
2503
+ emitDebugChunk(request, task.id, { env: currentEnv }));
2504
+ task.timed && emitTimingChunk(request, task.id, performance.now());
2505
+ if ("object" === typeof resolvedModel && null !== resolvedModel)
2546
2506
  request.writtenObjects.set(
2547
2507
  resolvedModel,
2548
2508
  serializeByValueID$1(task.id)
2549
- );
2550
- var currentEnv = (0, request.environmentName)();
2551
- currentEnv !== task.environmentName &&
2552
- (request.pendingChunks++,
2553
- emitDebugChunk(request, task.id, { env: currentEnv }));
2554
- emitChunk(request, task, resolvedModel);
2555
- } else {
2556
- var json = stringify(resolvedModel),
2557
- _currentEnv = (0, request.environmentName)();
2558
- _currentEnv !== task.environmentName &&
2559
- (request.pendingChunks++,
2560
- emitDebugChunk(request, task.id, { env: _currentEnv }));
2509
+ ),
2510
+ emitChunk(request, task, resolvedModel);
2511
+ else {
2512
+ var json = stringify(resolvedModel);
2561
2513
  emitModelChunk(request, task.id, json);
2562
2514
  }
2563
2515
  request.abortableTasks.delete(task);
@@ -2579,26 +2531,16 @@
2579
2531
  thrownValue === SuspenseException$1
2580
2532
  ? getSuspendedThenable$1()
2581
2533
  : thrownValue;
2582
- if ("object" === typeof x && null !== x) {
2583
- if ("function" === typeof x.then) {
2584
- task.status = PENDING$3;
2585
- task.thenableState = getThenableStateAfterSuspending$1();
2586
- var ping = task.ping;
2587
- x.then(ping, ping);
2588
- return;
2589
- }
2590
- if (x.$$typeof === REACT_POSTPONE_TYPE) {
2591
- request.abortableTasks.delete(task);
2592
- task.status = ERRORED$2;
2593
- logPostpone$1(request, x.message, task);
2594
- emitPostponeChunk(request, task.id, x);
2595
- return;
2596
- }
2597
- }
2598
- request.abortableTasks.delete(task);
2599
- task.status = ERRORED$2;
2600
- var digest = logRecoverableError$1(request, x, task);
2601
- emitErrorChunk(request, task.id, digest, x);
2534
+ if (
2535
+ "object" === typeof x &&
2536
+ null !== x &&
2537
+ "function" === typeof x.then
2538
+ ) {
2539
+ task.status = PENDING$3;
2540
+ task.thenableState = getThenableStateAfterSuspending$1();
2541
+ var ping = task.ping;
2542
+ x.then(ping, ping);
2543
+ } else erroredTask$1(request, task, x);
2602
2544
  }
2603
2545
  } finally {
2604
2546
  debugID = prevDebugID;
@@ -2643,6 +2585,7 @@
2643
2585
  function abortTask$1(task, request, errorId) {
2644
2586
  task.status !== RENDERING$1 &&
2645
2587
  ((task.status = ABORTED$1),
2588
+ task.timed && emitTimingChunk(request, task.id, performance.now()),
2646
2589
  (errorId = serializeByValueID$1(errorId)),
2647
2590
  (task = encodeReferenceChunk(request, task.id, errorId)),
2648
2591
  request.completedErrorChunks.push(task));
@@ -2727,29 +2670,25 @@
2727
2670
  11 >= request.status && (request.status = ABORTING$1);
2728
2671
  var abortableTasks = request.abortableTasks;
2729
2672
  if (0 < abortableTasks.size) {
2730
- if (
2673
+ if (request.type === PRERENDER)
2674
+ abortableTasks.forEach(function (task) {
2675
+ task.status !== RENDERING$1 &&
2676
+ ((task.status = ABORTED$1), request.pendingChunks--);
2677
+ });
2678
+ else if (
2731
2679
  "object" === typeof reason &&
2732
2680
  null !== reason &&
2733
2681
  reason.$$typeof === REACT_POSTPONE_TYPE
2734
- )
2735
- if (
2736
- (logPostpone$1(request, reason.message, null),
2737
- request.type === PRERENDER)
2738
- )
2739
- abortableTasks.forEach(function (task) {
2740
- task.status !== RENDERING$1 &&
2741
- ((task.status = ABORTED$1), request.pendingChunks--);
2742
- });
2743
- else {
2744
- var errorId = request.nextChunkId++;
2745
- request.fatalError = errorId;
2746
- request.pendingChunks++;
2747
- emitPostponeChunk(request, errorId, reason);
2748
- abortableTasks.forEach(function (task) {
2749
- return abortTask$1(task, request, errorId);
2750
- });
2751
- }
2752
- else {
2682
+ ) {
2683
+ logPostpone$1(request, reason.message, null);
2684
+ var errorId = request.nextChunkId++;
2685
+ request.fatalError = errorId;
2686
+ request.pendingChunks++;
2687
+ emitPostponeChunk(request, errorId, reason);
2688
+ abortableTasks.forEach(function (task) {
2689
+ return abortTask$1(task, request, errorId);
2690
+ });
2691
+ } else {
2753
2692
  var error =
2754
2693
  void 0 === reason
2755
2694
  ? Error(
@@ -2762,21 +2701,14 @@
2762
2701
  "The render was aborted by the server with a promise."
2763
2702
  )
2764
2703
  : reason,
2765
- digest = logRecoverableError$1(request, error, null);
2766
- if (request.type === PRERENDER)
2767
- abortableTasks.forEach(function (task) {
2768
- task.status !== RENDERING$1 &&
2769
- ((task.status = ABORTED$1), request.pendingChunks--);
2770
- });
2771
- else {
2772
- var _errorId2 = request.nextChunkId++;
2773
- request.fatalError = _errorId2;
2774
- request.pendingChunks++;
2775
- emitErrorChunk(request, _errorId2, digest, error);
2776
- abortableTasks.forEach(function (task) {
2777
- return abortTask$1(task, request, _errorId2);
2778
- });
2779
- }
2704
+ digest = logRecoverableError$1(request, error, null),
2705
+ _errorId2 = request.nextChunkId++;
2706
+ request.fatalError = _errorId2;
2707
+ request.pendingChunks++;
2708
+ emitErrorChunk(request, _errorId2, digest, error);
2709
+ abortableTasks.forEach(function (task) {
2710
+ return abortTask$1(task, request, _errorId2);
2711
+ });
2780
2712
  }
2781
2713
  abortableTasks.clear();
2782
2714
  var onAllReady = request.onAllReady;
@@ -4069,6 +4001,7 @@
4069
4001
  this._rowLength = this._rowTag = this._rowID = this._rowState = 0;
4070
4002
  this._buffer = [];
4071
4003
  this._tempRefs = temporaryReferences;
4004
+ this._timeOrigin = 0;
4072
4005
  this._debugRootOwner = bundlerConfig =
4073
4006
  void 0 === ReactSharedInteralsServer ||
4074
4007
  null === ReactSharedInteralsServer.A
@@ -4492,10 +4425,13 @@
4492
4425
  void 0 !== debugInfo.stack &&
4493
4426
  initializeFakeTask(response, debugInfo, env);
4494
4427
  null === debugInfo.owner && null != response._debugRootOwner
4495
- ? ((debugInfo.owner = response._debugRootOwner),
4496
- (debugInfo.debugStack = response._debugRootStack))
4428
+ ? ((env = debugInfo),
4429
+ (env.owner = response._debugRootOwner),
4430
+ (env.debugStack = response._debugRootStack))
4497
4431
  : void 0 !== debugInfo.stack &&
4498
4432
  initializeFakeStack(response, debugInfo);
4433
+ "number" === typeof debugInfo.time &&
4434
+ (debugInfo = { time: debugInfo.time + response._timeOrigin });
4499
4435
  response = getChunk(response, id);
4500
4436
  (response._debugInfo || (response._debugInfo = [])).push(debugInfo);
4501
4437
  }
@@ -4542,6 +4478,9 @@
4542
4478
  case 84:
4543
4479
  resolveText(response, id, row);
4544
4480
  break;
4481
+ case 78:
4482
+ response._timeOrigin = +row - performance.timeOrigin;
4483
+ break;
4545
4484
  case 68:
4546
4485
  tag = new ReactPromise("resolved_model", row, null, response);
4547
4486
  initializeModelChunk(tag);
@@ -13177,5 +13116,5 @@
13177
13116
  });
13178
13117
  });
13179
13118
  };
13180
- exports.version = "19.0.0-experimental-372ec00c-20241209";
13119
+ exports.version = "19.0.0-experimental-79ddf5b5-20241210";
13181
13120
  })();