mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 00:20:04 +01:00
Follow up to #28783 and #28786. Since we've changed the implementations of these we can rename them to something a bit more descriptive while we're at it, since anyone depending on them will need to upgrade their code anyway. "react" with no condition: `__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE` "react" with "react-server" condition: `__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE` "react-dom": `__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE`
64 lines
1.6 KiB
JavaScript
64 lines
1.6 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
import * as React from 'react';
|
|
|
|
const ReactInternals =
|
|
React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
|
|
|
|
const {
|
|
unstable_cancelCallback,
|
|
unstable_now,
|
|
unstable_scheduleCallback,
|
|
unstable_shouldYield,
|
|
unstable_requestPaint,
|
|
unstable_getFirstCallbackNode,
|
|
unstable_runWithPriority,
|
|
unstable_next,
|
|
unstable_continueExecution,
|
|
unstable_pauseExecution,
|
|
unstable_getCurrentPriorityLevel,
|
|
unstable_ImmediatePriority,
|
|
unstable_UserBlockingPriority,
|
|
unstable_NormalPriority,
|
|
unstable_LowPriority,
|
|
unstable_IdlePriority,
|
|
unstable_forceFrameRate,
|
|
|
|
// this doesn't actually exist on the scheduler, but it *does*
|
|
// on scheduler/unstable_mock, which we'll need inside act()
|
|
// and for internal testing
|
|
unstable_flushAllWithoutAsserting,
|
|
log,
|
|
unstable_setDisableYieldValue,
|
|
} = ((ReactInternals: any).Scheduler: any);
|
|
|
|
export {
|
|
unstable_cancelCallback,
|
|
unstable_now,
|
|
unstable_scheduleCallback,
|
|
unstable_shouldYield,
|
|
unstable_requestPaint,
|
|
unstable_getFirstCallbackNode,
|
|
unstable_runWithPriority,
|
|
unstable_next,
|
|
unstable_continueExecution,
|
|
unstable_pauseExecution,
|
|
unstable_getCurrentPriorityLevel,
|
|
unstable_ImmediatePriority,
|
|
unstable_UserBlockingPriority,
|
|
unstable_NormalPriority,
|
|
unstable_LowPriority,
|
|
unstable_IdlePriority,
|
|
unstable_forceFrameRate,
|
|
unstable_flushAllWithoutAsserting,
|
|
log,
|
|
unstable_setDisableYieldValue,
|
|
};
|