Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@
"node-fetch": "^2.2.0",
"nullthrows": "^1.1.1",
"prettier": "3.9.4",
"react": "19.2.3",
"react-test-renderer": "19.2.3",
"react": "19.3.0",
"react-test-renderer": "19.3.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"signedsource": "^2.0.0",
Expand All @@ -121,7 +121,7 @@
"ws": "^7.5.10"
},
"resolutions": {
"react-is": "19.2.3",
"react-is": "19.3.0",
"on-headers": "1.1.0",
"compression": "1.8.1",
"@microsoft/api-extractor/minimatch": "3.1.4",
Expand Down
4 changes: 0 additions & 4 deletions packages/eslint-plugin-react-native/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -519,10 +519,6 @@ const publicAPIMapping = {
default: null,
types: ['ErrorUtils'],
},
'Libraries/ReactPrivate/ReactNativePrivateInterface': {
default: null,
types: ['PublicRootInstance', 'PublicTextInstance'],
},
};

module.exports = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import type {AnimatedStyleAllowlist} from './AnimatedStyle';
import NativeAnimatedHelper from '../../../src/private/animated/NativeAnimatedHelper';
import * as ReactNativeFeatureFlags from '../../../src/private/featureflags/ReactNativeFeatureFlags';
import {getFabricUIManager} from '../../ReactNative/FabricUIManager';
import {getNodeFromPublicInstance} from '../../ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance';
import {findNodeHandle} from '../../ReactNative/RendererProxy';
import {getNodeFromPublicInstance} from '../../ReactPrivate/ReactNativePrivateInterface';
import flattenStyle from '../../StyleSheet/flattenStyle';
import {AnimatedEvent} from '../AnimatedEvent';
import AnimatedNode from './AnimatedNode';
Expand Down
6 changes: 0 additions & 6 deletions packages/react-native/Libraries/Core/setUpTimers.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,6 @@ if (__DEV__) {

// In bridgeless mode, timers are host functions installed from cpp.
if (global.RN$Bridgeless === true) {
// This is the flag that tells React to use `queueMicrotask` to batch state
// updates, instead of using the scheduler to schedule a regular task.
// We use a global variable because we don't currently have any other
// mechanism to pass feature flags from RN to React in OSS.
global.RN$enableMicrotasksInReact = true;

polyfillGlobal(
'queueMicrotask',
() =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ export function createPublicTextInstance(
return new ReadOnlyText(internalInstanceHandle, ownerDocument);
}

export type PublicTextInstance = ReturnType<typeof createPublicTextInstance>;

export function getNativeTagFromPublicInstance(
publicInstance: ReactNativeElement,
): number {
Expand Down
1 change: 0 additions & 1 deletion packages/react-native/Libraries/ReactPrivate/README

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading