react-dom 19.0.0-rc.1 → 19.1.0-canary-130095f7-20241212
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.
- package/cjs/react-dom-client.development.js +3229 -3174
- package/cjs/react-dom-client.production.js +2469 -2409
- package/cjs/react-dom-profiling.development.js +3229 -3174
- package/cjs/react-dom-profiling.profiling.js +2477 -2416
- package/cjs/react-dom-server-legacy.browser.development.js +2 -2
- package/cjs/react-dom-server-legacy.browser.production.js +1 -1
- package/cjs/react-dom-server-legacy.node.development.js +2 -2
- package/cjs/react-dom-server-legacy.node.production.js +2 -2
- package/cjs/react-dom-server.browser.development.js +4 -4
- package/cjs/react-dom-server.browser.production.js +3 -3
- package/cjs/react-dom-server.bun.development.js +4 -4
- package/cjs/react-dom-server.bun.production.js +4 -4
- package/cjs/react-dom-server.edge.development.js +4 -4
- package/cjs/react-dom-server.edge.production.js +4 -4
- package/cjs/react-dom-server.node.development.js +4 -4
- package/cjs/react-dom-server.node.production.js +4 -4
- package/cjs/react-dom.development.js +1 -1
- package/cjs/react-dom.production.js +1 -1
- package/cjs/react-dom.react-server.development.js +1 -1
- package/cjs/react-dom.react-server.production.js +1 -1
- package/package.json +3 -3
@@ -8373,7 +8373,7 @@
|
|
8373
8373
|
log = Math.log,
|
8374
8374
|
LN2 = Math.LN2,
|
8375
8375
|
SuspenseException = Error(
|
8376
|
-
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use
|
8376
|
+
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
8377
8377
|
),
|
8378
8378
|
suspendedThenable = null,
|
8379
8379
|
objectIs = "function" === typeof Object.is ? Object.is : is,
|
@@ -8570,5 +8570,5 @@
|
|
8570
8570
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
8571
8571
|
);
|
8572
8572
|
};
|
8573
|
-
exports.version = "19.
|
8573
|
+
exports.version = "19.1.0-canary-130095f7-20241212";
|
8574
8574
|
})();
|
@@ -5623,4 +5623,4 @@ exports.renderToString = function (children, options) {
|
|
5623
5623
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
5624
5624
|
);
|
5625
5625
|
};
|
5626
|
-
exports.version = "19.
|
5626
|
+
exports.version = "19.1.0-canary-130095f7-20241212";
|
@@ -8373,7 +8373,7 @@
|
|
8373
8373
|
log = Math.log,
|
8374
8374
|
LN2 = Math.LN2,
|
8375
8375
|
SuspenseException = Error(
|
8376
|
-
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use
|
8376
|
+
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
8377
8377
|
),
|
8378
8378
|
suspendedThenable = null,
|
8379
8379
|
objectIs = "function" === typeof Object.is ? Object.is : is,
|
@@ -8570,5 +8570,5 @@
|
|
8570
8570
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
|
8571
8571
|
);
|
8572
8572
|
};
|
8573
|
-
exports.version = "19.
|
8573
|
+
exports.version = "19.1.0-canary-130095f7-20241212";
|
8574
8574
|
})();
|
@@ -2905,7 +2905,7 @@ function clz32Fallback(x) {
|
|
2905
2905
|
return 0 === x ? 32 : (31 - ((log(x) / LN2) | 0)) | 0;
|
2906
2906
|
}
|
2907
2907
|
var SuspenseException = Error(
|
2908
|
-
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use
|
2908
|
+
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
2909
2909
|
);
|
2910
2910
|
function noop$2() {}
|
2911
2911
|
function trackUsedThenable(thenableState, thenable, index) {
|
@@ -5701,4 +5701,4 @@ exports.renderToString = function (children, options) {
|
|
5701
5701
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
|
5702
5702
|
);
|
5703
5703
|
};
|
5704
|
-
exports.version = "19.
|
5704
|
+
exports.version = "19.1.0-canary-130095f7-20241212";
|
@@ -7296,11 +7296,11 @@
|
|
7296
7296
|
}
|
7297
7297
|
function ensureCorrectIsomorphicReactVersion() {
|
7298
7298
|
var isomorphicReactPackageVersion = React.version;
|
7299
|
-
if ("19.
|
7299
|
+
if ("19.1.0-canary-130095f7-20241212" !== isomorphicReactPackageVersion)
|
7300
7300
|
throw Error(
|
7301
7301
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7302
7302
|
(isomorphicReactPackageVersion +
|
7303
|
-
"\n - react-dom: 19.
|
7303
|
+
"\n - react-dom: 19.1.0-canary-130095f7-20241212\nLearn more: https://react.dev/warnings/version-mismatch")
|
7304
7304
|
);
|
7305
7305
|
}
|
7306
7306
|
var React = require("react"),
|
@@ -8628,7 +8628,7 @@
|
|
8628
8628
|
log = Math.log,
|
8629
8629
|
LN2 = Math.LN2,
|
8630
8630
|
SuspenseException = Error(
|
8631
|
-
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use
|
8631
|
+
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
8632
8632
|
),
|
8633
8633
|
suspendedThenable = null,
|
8634
8634
|
objectIs = "function" === typeof Object.is ? Object.is : is,
|
@@ -8952,5 +8952,5 @@
|
|
8952
8952
|
startWork(request);
|
8953
8953
|
});
|
8954
8954
|
};
|
8955
|
-
exports.version = "19.
|
8955
|
+
exports.version = "19.1.0-canary-130095f7-20241212";
|
8956
8956
|
})();
|
@@ -5956,12 +5956,12 @@ function abort(request, reason) {
|
|
5956
5956
|
}
|
5957
5957
|
function ensureCorrectIsomorphicReactVersion() {
|
5958
5958
|
var isomorphicReactPackageVersion = React.version;
|
5959
|
-
if ("19.
|
5959
|
+
if ("19.1.0-canary-130095f7-20241212" !== isomorphicReactPackageVersion)
|
5960
5960
|
throw Error(
|
5961
5961
|
formatProdErrorMessage(
|
5962
5962
|
527,
|
5963
5963
|
isomorphicReactPackageVersion,
|
5964
|
-
"19.
|
5964
|
+
"19.1.0-canary-130095f7-20241212"
|
5965
5965
|
)
|
5966
5966
|
);
|
5967
5967
|
}
|
@@ -6108,4 +6108,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6108
6108
|
startWork(request);
|
6109
6109
|
});
|
6110
6110
|
};
|
6111
|
-
exports.version = "19.
|
6111
|
+
exports.version = "19.1.0-canary-130095f7-20241212";
|
@@ -4689,7 +4689,7 @@ function clz32Fallback(x) {
|
|
4689
4689
|
return 0 === x ? 32 : (31 - ((log(x) / LN2) | 0)) | 0;
|
4690
4690
|
}
|
4691
4691
|
var SuspenseException = Error(
|
4692
|
-
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use
|
4692
|
+
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
4693
4693
|
);
|
4694
4694
|
function noop$2() {}
|
4695
4695
|
function trackUsedThenable(thenableState, thenable, index) {
|
@@ -8191,13 +8191,13 @@ function abort(request, reason) {
|
|
8191
8191
|
}
|
8192
8192
|
var isomorphicReactPackageVersion$jscomp$inline_702 = React.version;
|
8193
8193
|
if (
|
8194
|
-
"19.
|
8194
|
+
"19.1.0-canary-130095f7-20241212" !==
|
8195
8195
|
isomorphicReactPackageVersion$jscomp$inline_702
|
8196
8196
|
)
|
8197
8197
|
throw Error(
|
8198
8198
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8199
8199
|
(isomorphicReactPackageVersion$jscomp$inline_702 +
|
8200
|
-
"\n - react-dom: 19.
|
8200
|
+
"\n - react-dom: 19.1.0-canary-130095f7-20241212\nLearn more: https://react.dev/warnings/version-mismatch")
|
8201
8201
|
);
|
8202
8202
|
exports.renderToReadableStream = function (children, options) {
|
8203
8203
|
return new Promise(function (resolve, reject) {
|
@@ -8289,4 +8289,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
8289
8289
|
startWork(request$jscomp$0);
|
8290
8290
|
});
|
8291
8291
|
};
|
8292
|
-
exports.version = "19.
|
8292
|
+
exports.version = "19.1.0-canary-130095f7-20241212";
|
@@ -2874,7 +2874,7 @@ function clz32Fallback(x) {
|
|
2874
2874
|
return 0 === x ? 32 : (31 - ((log(x) / LN2) | 0)) | 0;
|
2875
2875
|
}
|
2876
2876
|
var SuspenseException = Error(
|
2877
|
-
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use
|
2877
|
+
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
2878
2878
|
);
|
2879
2879
|
function noop$2() {}
|
2880
2880
|
function trackUsedThenable(thenableState, thenable, index) {
|
@@ -5594,13 +5594,13 @@ function abort(request, reason) {
|
|
5594
5594
|
}
|
5595
5595
|
var isomorphicReactPackageVersion$jscomp$inline_731 = React.version;
|
5596
5596
|
if (
|
5597
|
-
"19.
|
5597
|
+
"19.1.0-canary-130095f7-20241212" !==
|
5598
5598
|
isomorphicReactPackageVersion$jscomp$inline_731
|
5599
5599
|
)
|
5600
5600
|
throw Error(
|
5601
5601
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
5602
5602
|
(isomorphicReactPackageVersion$jscomp$inline_731 +
|
5603
|
-
"\n - react-dom: 19.
|
5603
|
+
"\n - react-dom: 19.1.0-canary-130095f7-20241212\nLearn more: https://react.dev/warnings/version-mismatch")
|
5604
5604
|
);
|
5605
5605
|
exports.renderToReadableStream = function (children, options) {
|
5606
5606
|
return new Promise(function (resolve, reject) {
|
@@ -5691,4 +5691,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
5691
5691
|
startWork(request);
|
5692
5692
|
});
|
5693
5693
|
};
|
5694
|
-
exports.version = "19.
|
5694
|
+
exports.version = "19.1.0-canary-130095f7-20241212";
|
@@ -7319,11 +7319,11 @@
|
|
7319
7319
|
}
|
7320
7320
|
function ensureCorrectIsomorphicReactVersion() {
|
7321
7321
|
var isomorphicReactPackageVersion = React.version;
|
7322
|
-
if ("19.
|
7322
|
+
if ("19.1.0-canary-130095f7-20241212" !== isomorphicReactPackageVersion)
|
7323
7323
|
throw Error(
|
7324
7324
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7325
7325
|
(isomorphicReactPackageVersion +
|
7326
|
-
"\n - react-dom: 19.
|
7326
|
+
"\n - react-dom: 19.1.0-canary-130095f7-20241212\nLearn more: https://react.dev/warnings/version-mismatch")
|
7327
7327
|
);
|
7328
7328
|
}
|
7329
7329
|
var React = require("react"),
|
@@ -8647,7 +8647,7 @@
|
|
8647
8647
|
log = Math.log,
|
8648
8648
|
LN2 = Math.LN2,
|
8649
8649
|
SuspenseException = Error(
|
8650
|
-
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use
|
8650
|
+
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
8651
8651
|
),
|
8652
8652
|
suspendedThenable = null,
|
8653
8653
|
objectIs = "function" === typeof Object.is ? Object.is : is,
|
@@ -8971,5 +8971,5 @@
|
|
8971
8971
|
startWork(request);
|
8972
8972
|
});
|
8973
8973
|
};
|
8974
|
-
exports.version = "19.
|
8974
|
+
exports.version = "19.1.0-canary-130095f7-20241212";
|
8975
8975
|
})();
|
@@ -3254,7 +3254,7 @@ function clz32Fallback(x) {
|
|
3254
3254
|
return 0 === x ? 32 : (31 - ((log(x) / LN2) | 0)) | 0;
|
3255
3255
|
}
|
3256
3256
|
var SuspenseException = Error(
|
3257
|
-
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use
|
3257
|
+
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
3258
3258
|
);
|
3259
3259
|
function noop$2() {}
|
3260
3260
|
function trackUsedThenable(thenableState, thenable, index) {
|
@@ -6049,11 +6049,11 @@ function abort(request, reason) {
|
|
6049
6049
|
}
|
6050
6050
|
function ensureCorrectIsomorphicReactVersion() {
|
6051
6051
|
var isomorphicReactPackageVersion = React.version;
|
6052
|
-
if ("19.
|
6052
|
+
if ("19.1.0-canary-130095f7-20241212" !== isomorphicReactPackageVersion)
|
6053
6053
|
throw Error(
|
6054
6054
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
6055
6055
|
(isomorphicReactPackageVersion +
|
6056
|
-
"\n - react-dom: 19.
|
6056
|
+
"\n - react-dom: 19.1.0-canary-130095f7-20241212\nLearn more: https://react.dev/warnings/version-mismatch")
|
6057
6057
|
);
|
6058
6058
|
}
|
6059
6059
|
ensureCorrectIsomorphicReactVersion();
|
@@ -6199,4 +6199,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6199
6199
|
startWork(request);
|
6200
6200
|
});
|
6201
6201
|
};
|
6202
|
-
exports.version = "19.
|
6202
|
+
exports.version = "19.1.0-canary-130095f7-20241212";
|
@@ -7194,11 +7194,11 @@
|
|
7194
7194
|
}
|
7195
7195
|
function ensureCorrectIsomorphicReactVersion() {
|
7196
7196
|
var isomorphicReactPackageVersion = React.version;
|
7197
|
-
if ("19.
|
7197
|
+
if ("19.1.0-canary-130095f7-20241212" !== isomorphicReactPackageVersion)
|
7198
7198
|
throw Error(
|
7199
7199
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7200
7200
|
(isomorphicReactPackageVersion +
|
7201
|
-
"\n - react-dom: 19.
|
7201
|
+
"\n - react-dom: 19.1.0-canary-130095f7-20241212\nLearn more: https://react.dev/warnings/version-mismatch")
|
7202
7202
|
);
|
7203
7203
|
}
|
7204
7204
|
function createDrainHandler(destination, request) {
|
@@ -8572,7 +8572,7 @@
|
|
8572
8572
|
log = Math.log,
|
8573
8573
|
LN2 = Math.LN2,
|
8574
8574
|
SuspenseException = Error(
|
8575
|
-
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use
|
8575
|
+
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
8576
8576
|
),
|
8577
8577
|
suspendedThenable = null,
|
8578
8578
|
objectIs = "function" === typeof Object.is ? Object.is : is,
|
@@ -8845,5 +8845,5 @@
|
|
8845
8845
|
}
|
8846
8846
|
};
|
8847
8847
|
};
|
8848
|
-
exports.version = "19.
|
8848
|
+
exports.version = "19.1.0-canary-130095f7-20241212";
|
8849
8849
|
})();
|
@@ -3157,7 +3157,7 @@ function clz32Fallback(x) {
|
|
3157
3157
|
return 0 === x ? 32 : (31 - ((log(x) / LN2) | 0)) | 0;
|
3158
3158
|
}
|
3159
3159
|
var SuspenseException = Error(
|
3160
|
-
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use
|
3160
|
+
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
3161
3161
|
);
|
3162
3162
|
function noop$2() {}
|
3163
3163
|
function trackUsedThenable(thenableState, thenable, index) {
|
@@ -5941,11 +5941,11 @@ function abort(request, reason) {
|
|
5941
5941
|
}
|
5942
5942
|
function ensureCorrectIsomorphicReactVersion() {
|
5943
5943
|
var isomorphicReactPackageVersion = React.version;
|
5944
|
-
if ("19.
|
5944
|
+
if ("19.1.0-canary-130095f7-20241212" !== isomorphicReactPackageVersion)
|
5945
5945
|
throw Error(
|
5946
5946
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
5947
5947
|
(isomorphicReactPackageVersion +
|
5948
|
-
"\n - react-dom: 19.
|
5948
|
+
"\n - react-dom: 19.1.0-canary-130095f7-20241212\nLearn more: https://react.dev/warnings/version-mismatch")
|
5949
5949
|
);
|
5950
5950
|
}
|
5951
5951
|
ensureCorrectIsomorphicReactVersion();
|
@@ -6094,4 +6094,4 @@ exports.renderToPipeableStream = function (children, options) {
|
|
6094
6094
|
}
|
6095
6095
|
};
|
6096
6096
|
};
|
6097
|
-
exports.version = "19.
|
6097
|
+
exports.version = "19.1.0-canary-130095f7-20241212";
|
@@ -416,7 +416,7 @@
|
|
416
416
|
exports.useFormStatus = function () {
|
417
417
|
return resolveDispatcher().useHostTransitionStatus();
|
418
418
|
};
|
419
|
-
exports.version = "19.
|
419
|
+
exports.version = "19.1.0-canary-130095f7-20241212";
|
420
420
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
421
421
|
"function" ===
|
422
422
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -207,4 +207,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
207
207
|
exports.useFormStatus = function () {
|
208
208
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
209
209
|
};
|
210
|
-
exports.version = "19.
|
210
|
+
exports.version = "19.1.0-canary-130095f7-20241212";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-dom",
|
3
|
-
"version": "19.
|
3
|
+
"version": "19.1.0-canary-130095f7-20241212",
|
4
4
|
"description": "React package for working with the DOM.",
|
5
5
|
"main": "index.js",
|
6
6
|
"repository": {
|
@@ -17,10 +17,10 @@
|
|
17
17
|
},
|
18
18
|
"homepage": "https://react.dev/",
|
19
19
|
"dependencies": {
|
20
|
-
"scheduler": "0.
|
20
|
+
"scheduler": "0.26.0-canary-130095f7-20241212"
|
21
21
|
},
|
22
22
|
"peerDependencies": {
|
23
|
-
"react": "19.
|
23
|
+
"react": "19.1.0-canary-130095f7-20241212"
|
24
24
|
},
|
25
25
|
"files": [
|
26
26
|
"LICENSE",
|