mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Update entry point exports (#21488)
The following APIs have been added to the `react` stable entry point: * `SuspenseList` * `startTransition` * `unstable_createMutableSource` * `unstable_useMutableSource` * `useDeferredValue` * `useTransition` The following APIs have been added or removed from the `react-dom` stable entry point: * `createRoot` * `unstable_createPortal` (removed) The following APIs have been added to the `react-is` stable entry point: * `SuspenseList` * `isSuspenseList` The following feature flags have been changed from experimental to true: * `enableLazyElements` * `enableSelectiveHydration` * `enableSuspenseServerRenderer`
This commit is contained in:
+2
-2
@@ -149,7 +149,7 @@ describe('commit tree', () => {
|
||||
|
||||
it('should support Lazy components (createRoot)', async () => {
|
||||
const container = document.createElement('div');
|
||||
const root = ReactDOM.unstable_createRoot(container);
|
||||
const root = ReactDOM.createRoot(container);
|
||||
|
||||
utils.act(() => store.profilerStore.startProfiling());
|
||||
utils.act(() => root.render(<App renderChildren={true} />));
|
||||
@@ -226,7 +226,7 @@ describe('commit tree', () => {
|
||||
|
||||
it('should support Lazy components that are unmounted before resolving (createRoot)', async () => {
|
||||
const container = document.createElement('div');
|
||||
const root = ReactDOM.unstable_createRoot(container);
|
||||
const root = ReactDOM.createRoot(container);
|
||||
|
||||
utils.act(() => store.profilerStore.startProfiling());
|
||||
utils.act(() => root.render(<App renderChildren={true} />));
|
||||
|
||||
Reference in New Issue
Block a user