react-dom 19.2.0-canary-c44e4a25-20250409 → 19.2.0-canary-1d6c8168-20250411

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.
@@ -428,12 +428,7 @@ function createResumableState(
428
428
  };
429
429
  }
430
430
  function createPreambleState() {
431
- return {
432
- htmlChunks: null,
433
- headChunks: null,
434
- bodyChunks: null,
435
- contribution: 0
436
- };
431
+ return { htmlChunks: null, headChunks: null, bodyChunks: null };
437
432
  }
438
433
  function createFormatContext(insertionMode, selectedValue, tagScope) {
439
434
  return {
@@ -1894,6 +1889,7 @@ function pushStartInstance(
1894
1889
  var preamble = preambleState || renderState.preamble;
1895
1890
  if (preamble.headChunks)
1896
1891
  throw Error("The `<head>` tag may only be rendered once.");
1892
+ null !== preambleState && target$jscomp$0.push("\x3c!--head--\x3e");
1897
1893
  preamble.headChunks = [];
1898
1894
  var JSCompiler_inline_result$jscomp$9 = pushStartSingletonElement(
1899
1895
  preamble.headChunks,
@@ -1912,6 +1908,7 @@ function pushStartInstance(
1912
1908
  var preamble$jscomp$0 = preambleState || renderState.preamble;
1913
1909
  if (preamble$jscomp$0.bodyChunks)
1914
1910
  throw Error("The `<body>` tag may only be rendered once.");
1911
+ null !== preambleState && target$jscomp$0.push("\x3c!--body--\x3e");
1915
1912
  preamble$jscomp$0.bodyChunks = [];
1916
1913
  var JSCompiler_inline_result$jscomp$10 = pushStartSingletonElement(
1917
1914
  preamble$jscomp$0.bodyChunks,
@@ -1930,6 +1927,7 @@ function pushStartInstance(
1930
1927
  var preamble$jscomp$1 = preambleState || renderState.preamble;
1931
1928
  if (preamble$jscomp$1.htmlChunks)
1932
1929
  throw Error("The `<html>` tag may only be rendered once.");
1930
+ null !== preambleState && target$jscomp$0.push("\x3c!--html--\x3e");
1933
1931
  preamble$jscomp$1.htmlChunks = ["<!DOCTYPE html>"];
1934
1932
  var JSCompiler_inline_result$jscomp$11 = pushStartSingletonElement(
1935
1933
  preamble$jscomp$1.htmlChunks,
@@ -2007,16 +2005,13 @@ function hoistPreambleState(renderState, preambleState) {
2007
2005
  renderState = renderState.preamble;
2008
2006
  null === renderState.htmlChunks &&
2009
2007
  preambleState.htmlChunks &&
2010
- ((renderState.htmlChunks = preambleState.htmlChunks),
2011
- (preambleState.contribution |= 1));
2008
+ (renderState.htmlChunks = preambleState.htmlChunks);
2012
2009
  null === renderState.headChunks &&
2013
2010
  preambleState.headChunks &&
2014
- ((renderState.headChunks = preambleState.headChunks),
2015
- (preambleState.contribution |= 4));
2011
+ (renderState.headChunks = preambleState.headChunks);
2016
2012
  null === renderState.bodyChunks &&
2017
2013
  preambleState.bodyChunks &&
2018
- ((renderState.bodyChunks = preambleState.bodyChunks),
2019
- (preambleState.contribution |= 2));
2014
+ (renderState.bodyChunks = preambleState.bodyChunks);
2020
2015
  }
2021
2016
  function writeBootstrap(destination, renderState) {
2022
2017
  renderState = renderState.bootstrapChunks;
@@ -2036,13 +2031,6 @@ function writeStartPendingSuspenseBoundary(destination, renderState, id) {
2036
2031
  writeChunk(destination, id.toString(16));
2037
2032
  return !!destination.write('"></template>');
2038
2033
  }
2039
- function writePreambleContribution(destination, preambleState) {
2040
- preambleState = preambleState.contribution;
2041
- 0 !== preambleState &&
2042
- (writeChunk(destination, "\x3c!--"),
2043
- writeChunk(destination, "" + preambleState),
2044
- writeChunk(destination, "--\x3e"));
2045
- }
2046
2034
  function writeStartSegment(destination, renderState, formatContext, id) {
2047
2035
  switch (formatContext.insertionMode) {
2048
2036
  case 0:
@@ -4114,27 +4102,21 @@ function renderElement(request, task, keyPath, type, props, ref) {
4114
4102
  return;
4115
4103
  case REACT_ACTIVITY_TYPE:
4116
4104
  type = task.blockedSegment;
4117
- if (null === type)
4118
- "hidden" !== props.mode &&
4105
+ null === type
4106
+ ? "hidden" !== props.mode &&
4119
4107
  ((type = task.keyPath),
4120
4108
  (task.keyPath = keyPath),
4121
4109
  renderNode(request, task, props.children, -1),
4122
- (task.keyPath = type));
4123
- else {
4124
- type.chunks.push("\x3c!--&--\x3e");
4125
- type.lastPushedText = !1;
4126
- "hidden" !== props.mode &&
4127
- ((newProps = task.keyPath),
4128
- (task.keyPath = keyPath),
4129
- renderNode(request, task, props.children, -1),
4130
- (task.keyPath = newProps));
4131
- request = type.chunks;
4132
- if ((task = task.blockedPreamble))
4133
- (task = task.contribution),
4134
- 0 !== task && request.push("\x3c!--", "" + task, "--\x3e");
4135
- request.push("\x3c!--/&--\x3e");
4136
- type.lastPushedText = !1;
4137
- }
4110
+ (task.keyPath = type))
4111
+ : (type.chunks.push("\x3c!--&--\x3e"),
4112
+ (type.lastPushedText = !1),
4113
+ "hidden" !== props.mode &&
4114
+ ((newProps = task.keyPath),
4115
+ (task.keyPath = keyPath),
4116
+ renderNode(request, task, props.children, -1),
4117
+ (task.keyPath = newProps)),
4118
+ type.chunks.push("\x3c!--/&--\x3e"),
4119
+ (type.lastPushedText = !1));
4138
4120
  return;
4139
4121
  case REACT_SUSPENSE_LIST_TYPE:
4140
4122
  type = task.keyPath;
@@ -5440,24 +5422,18 @@ function flushSegment(request, destination, segment, hoistableState) {
5440
5422
  if (null === boundary)
5441
5423
  return flushSubtree(request, destination, segment, hoistableState);
5442
5424
  boundary.parentFlushed = !0;
5443
- if (4 === boundary.status) {
5444
- var errorDigest = boundary.errorDigest;
5445
- destination.write("\x3c!--$!--\x3e");
5446
- writeChunk(destination, "<template");
5447
- errorDigest &&
5448
- (writeChunk(destination, ' data-dgst="'),
5449
- writeChunk(destination, escapeTextForBrowser(errorDigest)),
5450
- writeChunk(destination, '"'));
5451
- destination.write("></template>");
5452
- flushSubtree(request, destination, segment, hoistableState);
5453
- (request = boundary.fallbackPreamble) &&
5454
- writePreambleContribution(destination, request);
5455
- return !!destination.write("\x3c!--/$--\x3e");
5456
- }
5457
- if (1 !== boundary.status)
5458
- return (
5459
- 0 === boundary.status &&
5460
- (boundary.rootSegmentID = request.nextSegmentId++),
5425
+ if (4 === boundary.status)
5426
+ (boundary = boundary.errorDigest),
5427
+ destination.write("\x3c!--$!--\x3e"),
5428
+ writeChunk(destination, "<template"),
5429
+ boundary &&
5430
+ (writeChunk(destination, ' data-dgst="'),
5431
+ writeChunk(destination, escapeTextForBrowser(boundary)),
5432
+ writeChunk(destination, '"')),
5433
+ destination.write("></template>"),
5434
+ flushSubtree(request, destination, segment, hoistableState);
5435
+ else if (1 !== boundary.status)
5436
+ 0 === boundary.status && (boundary.rootSegmentID = request.nextSegmentId++),
5461
5437
  0 < boundary.completedSegments.length &&
5462
5438
  request.partialBoundaries.push(boundary),
5463
5439
  writeStartPendingSuspenseBoundary(
@@ -5472,34 +5448,29 @@ function flushSegment(request, destination, segment, hoistableState) {
5472
5448
  hoistStylesheetDependency,
5473
5449
  hoistableState
5474
5450
  )),
5475
- flushSubtree(request, destination, segment, hoistableState),
5476
- !!destination.write("\x3c!--/$--\x3e")
5477
- );
5478
- if (boundary.byteSize > request.progressiveChunkSize)
5479
- return (
5480
- (boundary.rootSegmentID = request.nextSegmentId++),
5451
+ flushSubtree(request, destination, segment, hoistableState);
5452
+ else if (boundary.byteSize > request.progressiveChunkSize)
5453
+ (boundary.rootSegmentID = request.nextSegmentId++),
5481
5454
  request.completedBoundaries.push(boundary),
5482
5455
  writeStartPendingSuspenseBoundary(
5483
5456
  destination,
5484
5457
  request.renderState,
5485
5458
  boundary.rootSegmentID
5486
5459
  ),
5487
- flushSubtree(request, destination, segment, hoistableState),
5488
- !!destination.write("\x3c!--/$--\x3e")
5489
- );
5490
- hoistableState &&
5491
- ((segment = boundary.contentState),
5492
- segment.styles.forEach(hoistStyleQueueDependency, hoistableState),
5493
- segment.stylesheets.forEach(hoistStylesheetDependency, hoistableState));
5494
- destination.write("\x3c!--$--\x3e");
5495
- segment = boundary.completedSegments;
5496
- if (1 !== segment.length)
5497
- throw Error(
5498
- "A previously unvisited boundary must have exactly one root segment. This is a bug in React."
5499
- );
5500
- flushSegment(request, destination, segment[0], hoistableState);
5501
- (request = boundary.contentPreamble) &&
5502
- writePreambleContribution(destination, request);
5460
+ flushSubtree(request, destination, segment, hoistableState);
5461
+ else {
5462
+ hoistableState &&
5463
+ ((segment = boundary.contentState),
5464
+ segment.styles.forEach(hoistStyleQueueDependency, hoistableState),
5465
+ segment.stylesheets.forEach(hoistStylesheetDependency, hoistableState));
5466
+ destination.write("\x3c!--$--\x3e");
5467
+ segment = boundary.completedSegments;
5468
+ if (1 !== segment.length)
5469
+ throw Error(
5470
+ "A previously unvisited boundary must have exactly one root segment. This is a bug in React."
5471
+ );
5472
+ flushSegment(request, destination, segment[0], hoistableState);
5473
+ }
5503
5474
  return !!destination.write("\x3c!--/$--\x3e");
5504
5475
  }
5505
5476
  function flushSegmentContainer(request, destination, segment, hoistableState) {
@@ -5882,15 +5853,15 @@ function abort(request, reason) {
5882
5853
  logRecoverableError(request, error$55, {}), fatalError(request, error$55);
5883
5854
  }
5884
5855
  }
5885
- var isomorphicReactPackageVersion$jscomp$inline_769 = React.version;
5856
+ var isomorphicReactPackageVersion$jscomp$inline_762 = React.version;
5886
5857
  if (
5887
- "19.2.0-canary-c44e4a25-20250409" !==
5888
- isomorphicReactPackageVersion$jscomp$inline_769
5858
+ "19.2.0-canary-1d6c8168-20250411" !==
5859
+ isomorphicReactPackageVersion$jscomp$inline_762
5889
5860
  )
5890
5861
  throw Error(
5891
5862
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
5892
- (isomorphicReactPackageVersion$jscomp$inline_769 +
5893
- "\n - react-dom: 19.2.0-canary-c44e4a25-20250409\nLearn more: https://react.dev/warnings/version-mismatch")
5863
+ (isomorphicReactPackageVersion$jscomp$inline_762 +
5864
+ "\n - react-dom: 19.2.0-canary-1d6c8168-20250411\nLearn more: https://react.dev/warnings/version-mismatch")
5894
5865
  );
5895
5866
  exports.renderToReadableStream = function (children, options) {
5896
5867
  return new Promise(function (resolve, reject) {
@@ -5981,4 +5952,4 @@ exports.renderToReadableStream = function (children, options) {
5981
5952
  startWork(request);
5982
5953
  });
5983
5954
  };
5984
- exports.version = "19.2.0-canary-c44e4a25-20250409";
5955
+ exports.version = "19.2.0-canary-1d6c8168-20250411";
@@ -1017,12 +1017,7 @@
1017
1017
  };
1018
1018
  }
1019
1019
  function createPreambleState() {
1020
- return {
1021
- htmlChunks: null,
1022
- headChunks: null,
1023
- bodyChunks: null,
1024
- contribution: NoContribution
1025
- };
1020
+ return { htmlChunks: null, headChunks: null, bodyChunks: null };
1026
1021
  }
1027
1022
  function createFormatContext(insertionMode, selectedValue, tagScope) {
1028
1023
  return {
@@ -3001,6 +2996,8 @@
3001
2996
  var preamble = preambleState || renderState.preamble;
3002
2997
  if (preamble.headChunks)
3003
2998
  throw Error("The `<head>` tag may only be rendered once.");
2999
+ null !== preambleState &&
3000
+ target$jscomp$0.push(headPreambleContributionChunk);
3004
3001
  preamble.headChunks = [];
3005
3002
  var JSCompiler_inline_result$jscomp$9 = pushStartSingletonElement(
3006
3003
  preamble.headChunks,
@@ -3019,6 +3016,8 @@
3019
3016
  var preamble$jscomp$0 = preambleState || renderState.preamble;
3020
3017
  if (preamble$jscomp$0.bodyChunks)
3021
3018
  throw Error("The `<body>` tag may only be rendered once.");
3019
+ null !== preambleState &&
3020
+ target$jscomp$0.push(bodyPreambleContributionChunk);
3022
3021
  preamble$jscomp$0.bodyChunks = [];
3023
3022
  var JSCompiler_inline_result$jscomp$10 = pushStartSingletonElement(
3024
3023
  preamble$jscomp$0.bodyChunks,
@@ -3037,6 +3036,8 @@
3037
3036
  var preamble$jscomp$1 = preambleState || renderState.preamble;
3038
3037
  if (preamble$jscomp$1.htmlChunks)
3039
3038
  throw Error("The `<html>` tag may only be rendered once.");
3039
+ null !== preambleState &&
3040
+ target$jscomp$0.push(htmlPreambleContributionChunk);
3040
3041
  preamble$jscomp$1.htmlChunks = [doctypeChunk];
3041
3042
  var JSCompiler_inline_result$jscomp$11 = pushStartSingletonElement(
3042
3043
  preamble$jscomp$1.htmlChunks,
@@ -3123,16 +3124,13 @@
3123
3124
  renderState = renderState.preamble;
3124
3125
  null === renderState.htmlChunks &&
3125
3126
  preambleState.htmlChunks &&
3126
- ((renderState.htmlChunks = preambleState.htmlChunks),
3127
- (preambleState.contribution |= 1));
3127
+ (renderState.htmlChunks = preambleState.htmlChunks);
3128
3128
  null === renderState.headChunks &&
3129
3129
  preambleState.headChunks &&
3130
- ((renderState.headChunks = preambleState.headChunks),
3131
- (preambleState.contribution |= 4));
3130
+ (renderState.headChunks = preambleState.headChunks);
3132
3131
  null === renderState.bodyChunks &&
3133
3132
  preambleState.bodyChunks &&
3134
- ((renderState.bodyChunks = preambleState.bodyChunks),
3135
- (preambleState.contribution |= 2));
3133
+ (renderState.bodyChunks = preambleState.bodyChunks);
3136
3134
  }
3137
3135
  function writeBootstrap(destination, renderState) {
3138
3136
  renderState = renderState.bootstrapChunks;
@@ -3154,13 +3152,6 @@
3154
3152
  writeChunk(destination, stringToChunk(id.toString(16)));
3155
3153
  return writeChunkAndReturn(destination, startPendingSuspenseBoundary2);
3156
3154
  }
3157
- function writePreambleContribution(destination, preambleState) {
3158
- preambleState = preambleState.contribution;
3159
- preambleState !== NoContribution &&
3160
- (writeChunk(destination, boundaryPreambleContributionChunkStart),
3161
- writeChunk(destination, stringToChunk("" + preambleState)),
3162
- writeChunk(destination, boundaryPreambleContributionChunkEnd));
3163
- }
3164
3155
  function writeStartSegment(destination, renderState, formatContext, id) {
3165
3156
  switch (formatContext.insertionMode) {
3166
3157
  case ROOT_HTML_MODE:
@@ -5530,18 +5521,7 @@
5530
5521
  renderNode(request, task, props.children, -1);
5531
5522
  task.keyPath = _prevKeyPath3;
5532
5523
  }
5533
- var target$jscomp$0 = segment$jscomp$0.chunks,
5534
- preambleState = task.blockedPreamble;
5535
- if (preambleState) {
5536
- var contribution = preambleState.contribution;
5537
- contribution !== NoContribution &&
5538
- target$jscomp$0.push(
5539
- boundaryPreambleContributionChunkStart,
5540
- stringToChunk("" + contribution),
5541
- boundaryPreambleContributionChunkEnd
5542
- );
5543
- }
5544
- target$jscomp$0.push(endActivityBoundary);
5524
+ segment$jscomp$0.chunks.push(endActivityBoundary);
5545
5525
  segment$jscomp$0.lastPushedText = !1;
5546
5526
  }
5547
5527
  return;
@@ -7182,8 +7162,8 @@
7182
7162
  if (boundary.status === CLIENT_RENDERED) {
7183
7163
  var errorDigest = boundary.errorDigest,
7184
7164
  errorMessage = boundary.errorMessage,
7185
- errorStack = boundary.errorStack,
7186
- errorComponentStack = boundary.errorComponentStack;
7165
+ errorStack = boundary.errorStack;
7166
+ boundary = boundary.errorComponentStack;
7187
7167
  writeChunkAndReturn(destination, startClientRenderedSuspenseBoundary);
7188
7168
  writeChunk(destination, clientRenderedSuspenseBoundaryError1);
7189
7169
  errorDigest &&
@@ -7216,11 +7196,11 @@
7216
7196
  destination,
7217
7197
  clientRenderedSuspenseBoundaryErrorAttrInterstitial
7218
7198
  ));
7219
- errorComponentStack &&
7199
+ boundary &&
7220
7200
  (writeChunk(destination, clientRenderedSuspenseBoundaryError1D),
7221
7201
  writeChunk(
7222
7202
  destination,
7223
- stringToChunk(escapeTextForBrowser(errorComponentStack))
7203
+ stringToChunk(escapeTextForBrowser(boundary))
7224
7204
  ),
7225
7205
  writeChunk(
7226
7206
  destination,
@@ -7228,14 +7208,9 @@
7228
7208
  ));
7229
7209
  writeChunkAndReturn(destination, clientRenderedSuspenseBoundaryError2);
7230
7210
  flushSubtree(request, destination, segment, hoistableState);
7231
- (request = boundary.fallbackPreamble) &&
7232
- writePreambleContribution(destination, request);
7233
- return writeChunkAndReturn(destination, endSuspenseBoundary);
7234
- }
7235
- if (boundary.status !== COMPLETED)
7236
- return (
7237
- boundary.status === PENDING &&
7238
- (boundary.rootSegmentID = request.nextSegmentId++),
7211
+ } else if (boundary.status !== COMPLETED)
7212
+ boundary.status === PENDING &&
7213
+ (boundary.rootSegmentID = request.nextSegmentId++),
7239
7214
  0 < boundary.completedSegments.length &&
7240
7215
  request.partialBoundaries.push(boundary),
7241
7216
  writeStartPendingSuspenseBoundary(
@@ -7250,34 +7225,32 @@
7250
7225
  hoistStylesheetDependency,
7251
7226
  hoistableState
7252
7227
  )),
7253
- flushSubtree(request, destination, segment, hoistableState),
7254
- writeChunkAndReturn(destination, endSuspenseBoundary)
7255
- );
7256
- if (boundary.byteSize > request.progressiveChunkSize)
7257
- return (
7258
- (boundary.rootSegmentID = request.nextSegmentId++),
7228
+ flushSubtree(request, destination, segment, hoistableState);
7229
+ else if (boundary.byteSize > request.progressiveChunkSize)
7230
+ (boundary.rootSegmentID = request.nextSegmentId++),
7259
7231
  request.completedBoundaries.push(boundary),
7260
7232
  writeStartPendingSuspenseBoundary(
7261
7233
  destination,
7262
7234
  request.renderState,
7263
7235
  boundary.rootSegmentID
7264
7236
  ),
7265
- flushSubtree(request, destination, segment, hoistableState),
7266
- writeChunkAndReturn(destination, endSuspenseBoundary)
7267
- );
7268
- hoistableState &&
7269
- ((segment = boundary.contentState),
7270
- segment.styles.forEach(hoistStyleQueueDependency, hoistableState),
7271
- segment.stylesheets.forEach(hoistStylesheetDependency, hoistableState));
7272
- writeChunkAndReturn(destination, startCompletedSuspenseBoundary);
7273
- segment = boundary.completedSegments;
7274
- if (1 !== segment.length)
7275
- throw Error(
7276
- "A previously unvisited boundary must have exactly one root segment. This is a bug in React."
7277
- );
7278
- flushSegment(request, destination, segment[0], hoistableState);
7279
- (request = boundary.contentPreamble) &&
7280
- writePreambleContribution(destination, request);
7237
+ flushSubtree(request, destination, segment, hoistableState);
7238
+ else {
7239
+ hoistableState &&
7240
+ ((segment = boundary.contentState),
7241
+ segment.styles.forEach(hoistStyleQueueDependency, hoistableState),
7242
+ segment.stylesheets.forEach(
7243
+ hoistStylesheetDependency,
7244
+ hoistableState
7245
+ ));
7246
+ writeChunkAndReturn(destination, startCompletedSuspenseBoundary);
7247
+ segment = boundary.completedSegments;
7248
+ if (1 !== segment.length)
7249
+ throw Error(
7250
+ "A previously unvisited boundary must have exactly one root segment. This is a bug in React."
7251
+ );
7252
+ flushSegment(request, destination, segment[0], hoistableState);
7253
+ }
7281
7254
  return writeChunkAndReturn(destination, endSuspenseBoundary);
7282
7255
  }
7283
7256
  function flushSegmentContainer(
@@ -7794,11 +7767,11 @@
7794
7767
  }
7795
7768
  function ensureCorrectIsomorphicReactVersion() {
7796
7769
  var isomorphicReactPackageVersion = React.version;
7797
- if ("19.2.0-canary-c44e4a25-20250409" !== isomorphicReactPackageVersion)
7770
+ if ("19.2.0-canary-1d6c8168-20250411" !== isomorphicReactPackageVersion)
7798
7771
  throw Error(
7799
7772
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7800
7773
  (isomorphicReactPackageVersion +
7801
- "\n - react-dom: 19.2.0-canary-c44e4a25-20250409\nLearn more: https://react.dev/warnings/version-mismatch")
7774
+ "\n - react-dom: 19.2.0-canary-1d6c8168-20250411\nLearn more: https://react.dev/warnings/version-mismatch")
7802
7775
  );
7803
7776
  }
7804
7777
  var React = require("react"),
@@ -8899,8 +8872,7 @@
8899
8872
  ),
8900
8873
  importMapScriptEnd = stringToPrecomputedChunk("\x3c/script>");
8901
8874
  var didWarnForNewBooleanPropsWithEmptyValue = {};
8902
- var NoContribution = 0,
8903
- ROOT_HTML_MODE = 0,
8875
+ var ROOT_HTML_MODE = 0,
8904
8876
  HTML_HTML_MODE = 1,
8905
8877
  HTML_MODE = 2,
8906
8878
  HTML_HEAD_MODE = 3,
@@ -8945,6 +8917,12 @@
8945
8917
  formStateMarkerIsMatching = stringToPrecomputedChunk("\x3c!--F!--\x3e"),
8946
8918
  formStateMarkerIsNotMatching = stringToPrecomputedChunk("\x3c!--F--\x3e"),
8947
8919
  styleRegex = /(<\/|<)(s)(tyle)/gi,
8920
+ headPreambleContributionChunk =
8921
+ stringToPrecomputedChunk("\x3c!--head--\x3e"),
8922
+ bodyPreambleContributionChunk =
8923
+ stringToPrecomputedChunk("\x3c!--body--\x3e"),
8924
+ htmlPreambleContributionChunk =
8925
+ stringToPrecomputedChunk("\x3c!--html--\x3e"),
8948
8926
  leadingNewline = stringToPrecomputedChunk("\n"),
8949
8927
  VALID_TAG_REGEX = /^[a-zA-Z][a-zA-Z:_\.\-\d]*$/,
8950
8928
  validatedTagCache = new Map(),
@@ -8977,9 +8955,6 @@
8977
8955
  stringToPrecomputedChunk(' data-cstck="'),
8978
8956
  clientRenderedSuspenseBoundaryError2 =
8979
8957
  stringToPrecomputedChunk("></template>"),
8980
- boundaryPreambleContributionChunkStart =
8981
- stringToPrecomputedChunk("\x3c!--"),
8982
- boundaryPreambleContributionChunkEnd = stringToPrecomputedChunk("--\x3e"),
8983
8958
  startSegmentHTML = stringToPrecomputedChunk('<div hidden id="'),
8984
8959
  startSegmentHTML2 = stringToPrecomputedChunk('">'),
8985
8960
  endSegmentHTML = stringToPrecomputedChunk("</div>"),
@@ -9466,5 +9441,5 @@
9466
9441
  startWork(request);
9467
9442
  });
9468
9443
  };
9469
- exports.version = "19.2.0-canary-c44e4a25-20250409";
9444
+ exports.version = "19.2.0-canary-1d6c8168-20250411";
9470
9445
  })();