react-server-dom-parcel 19.3.0-canary-58bdc0bb-20251019 → 19.3.0-canary-f6a48828-20251019

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.
@@ -2570,6 +2570,7 @@
2570
2570
  findSourceMapURL,
2571
2571
  replayConsole,
2572
2572
  environmentName,
2573
+ debugStartTime,
2573
2574
  debugChannel
2574
2575
  ) {
2575
2576
  var chunks = new Map();
@@ -2601,7 +2602,8 @@
2601
2602
  (this._debugRootTask = console.createTask(
2602
2603
  '"use ' + environmentName.toLowerCase() + '"'
2603
2604
  ));
2604
- this._debugStartTime = performance.now();
2605
+ this._debugStartTime =
2606
+ null == debugStartTime ? performance.now() : debugStartTime;
2605
2607
  this._debugIOStarted = !1;
2606
2608
  setTimeout(markIOStarted.bind(this), 0);
2607
2609
  this._debugFindSourceMapURL = findSourceMapURL;
@@ -4472,6 +4474,7 @@
4472
4474
  findSourceMapURL,
4473
4475
  options ? !1 !== options.replayConsoleLogs : !0,
4474
4476
  options && options.environmentName ? options.environmentName : void 0,
4477
+ options && null != options.startTime ? options.startTime : void 0,
4475
4478
  debugChannel
4476
4479
  )._weakResponse;
4477
4480
  }
@@ -4817,10 +4820,10 @@
4817
4820
  return hook.checkDCE ? !0 : !1;
4818
4821
  })({
4819
4822
  bundleType: 1,
4820
- version: "19.3.0-canary-58bdc0bb-20251019",
4823
+ version: "19.3.0-canary-f6a48828-20251019",
4821
4824
  rendererPackageName: "react-server-dom-parcel",
4822
4825
  currentDispatcherRef: ReactSharedInternals,
4823
- reconcilerVersion: "19.3.0-canary-58bdc0bb-20251019",
4826
+ reconcilerVersion: "19.3.0-canary-f6a48828-20251019",
4824
4827
  getCurrentComponentInfo: function () {
4825
4828
  return currentOwnerInDEV;
4826
4829
  }
@@ -2740,6 +2740,7 @@
2740
2740
  findSourceMapURL,
2741
2741
  replayConsole,
2742
2742
  environmentName,
2743
+ debugStartTime,
2743
2744
  debugChannel
2744
2745
  ) {
2745
2746
  var chunks = new Map();
@@ -2771,7 +2772,8 @@
2771
2772
  (this._debugRootTask = console.createTask(
2772
2773
  '"use ' + environmentName.toLowerCase() + '"'
2773
2774
  ));
2774
- this._debugStartTime = performance.now();
2775
+ this._debugStartTime =
2776
+ null == debugStartTime ? performance.now() : debugStartTime;
2775
2777
  this._debugIOStarted = !1;
2776
2778
  setTimeout(markIOStarted.bind(this), 0);
2777
2779
  this._debugFindSourceMapURL = findSourceMapURL;
@@ -4511,6 +4513,7 @@
4511
4513
  findSourceMapURL,
4512
4514
  options ? !0 === options.replayConsoleLogs : !1,
4513
4515
  options && options.environmentName ? options.environmentName : void 0,
4516
+ options && null != options.startTime ? options.startTime : void 0,
4514
4517
  options && void 0 !== options.debugChannel
4515
4518
  ? {
4516
4519
  hasReadable: void 0 !== options.debugChannel.readable,
@@ -2740,6 +2740,7 @@
2740
2740
  findSourceMapURL,
2741
2741
  replayConsole,
2742
2742
  environmentName,
2743
+ debugStartTime,
2743
2744
  debugChannel
2744
2745
  ) {
2745
2746
  var chunks = new Map();
@@ -2771,7 +2772,8 @@
2771
2772
  (this._debugRootTask = console.createTask(
2772
2773
  '"use ' + environmentName.toLowerCase() + '"'
2773
2774
  ));
2774
- this._debugStartTime = performance.now();
2775
+ this._debugStartTime =
2776
+ null == debugStartTime ? performance.now() : debugStartTime;
2775
2777
  this._debugIOStarted = !1;
2776
2778
  setTimeout(markIOStarted.bind(this), 0);
2777
2779
  this._debugFindSourceMapURL = findSourceMapURL;
@@ -4626,6 +4628,7 @@
4626
4628
  findSourceMapURL$1,
4627
4629
  options ? !0 === options.replayConsoleLogs : !1,
4628
4630
  options && options.environmentName ? options.environmentName : void 0,
4631
+ options && null != options.startTime ? options.startTime : void 0,
4629
4632
  options && void 0 !== options.debugChannel
4630
4633
  ? {
4631
4634
  hasReadable: void 0 !== options.debugChannel.readable,
@@ -5011,6 +5014,7 @@
5011
5014
  findSourceMapURL,
5012
5015
  options ? !0 === options.replayConsoleLogs : !1,
5013
5016
  options && options.environmentName ? options.environmentName : void 0,
5017
+ options && null != options.startTime ? options.startTime : void 0,
5014
5018
  options && void 0 !== options.debugChannel
5015
5019
  ? {
5016
5020
  hasReadable: void 0 !== options.debugChannel.readable,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-server-dom-parcel",
3
3
  "description": "React Server Components bindings for DOM using Parcel. This is intended to be integrated into meta-frameworks. It is not intended to be imported directly.",
4
- "version": "19.3.0-canary-58bdc0bb-20251019",
4
+ "version": "19.3.0-canary-f6a48828-20251019",
5
5
  "keywords": [
6
6
  "react"
7
7
  ],
@@ -78,7 +78,7 @@
78
78
  "node": ">=0.10.0"
79
79
  },
80
80
  "peerDependencies": {
81
- "react": "19.3.0-canary-58bdc0bb-20251019",
82
- "react-dom": "19.3.0-canary-58bdc0bb-20251019"
81
+ "react": "19.3.0-canary-f6a48828-20251019",
82
+ "react-dom": "19.3.0-canary-f6a48828-20251019"
83
83
  }
84
84
  }