react-native
Advanced tools
@@ -108,2 +108,6 @@ /** | ||
onPressIn?: ?(event: GestureResponderEvent) => mixed, | ||
/** | ||
* Called when the press location moves. | ||
*/ | ||
onPressMove?: ?(event: GestureResponderEvent) => mixed, | ||
@@ -189,2 +193,3 @@ /** | ||
onPressIn, | ||
onPressMove, | ||
onPressOut, | ||
@@ -268,3 +273,8 @@ pressRetentionOffset, | ||
}, | ||
onPressMove: android_rippleConfig?.onPressMove, | ||
onPressMove(event: GestureResponderEvent): void { | ||
android_rippleConfig?.onPressMove(event); | ||
if (onPressMove != null) { | ||
onPressMove(event); | ||
} | ||
}, | ||
onPressOut(event: GestureResponderEvent): void { | ||
@@ -294,2 +304,3 @@ if (android_rippleConfig != null) { | ||
onPressIn, | ||
onPressMove, | ||
onPressOut, | ||
@@ -296,0 +307,0 @@ pressRetentionOffset, |
@@ -20,3 +20,3 @@ /** | ||
patch: 0, | ||
prerelease: 'nightly-20250319-adbcaef1e', | ||
prerelease: 'nightly-20250320-146d809b6', | ||
}; |
@@ -22,2 +22,3 @@ /** | ||
____TextStyleProp_Internal, | ||
____TransformStyle_Internal, | ||
____ViewStyle_Internal, | ||
@@ -42,2 +43,7 @@ ____ViewStyleProp_Internal, | ||
/** | ||
* This type is an object of the properties related to transforms. | ||
*/ | ||
export type TransformStyle = ____TransformStyle_Internal; | ||
/** | ||
* This type should be used as the type for a prop that is passed through | ||
@@ -44,0 +50,0 @@ * to a <View>'s `style` prop. This ensures call sites of the component |
@@ -24,2 +24,4 @@ /** | ||
export type {____TransformStyle_Internal}; | ||
declare export opaque type NativeColorValue; | ||
@@ -26,0 +28,0 @@ export type ____ColorValue_Internal = null | string | number | NativeColorValue; |
{ | ||
"name": "react-native", | ||
"version": "0.80.0-nightly-20250319-adbcaef1e", | ||
"version": "0.80.0-nightly-20250320-146d809b6", | ||
"description": "A framework for building native apps using React", | ||
@@ -111,9 +111,9 @@ "license": "MIT", | ||
"@jest/create-cache-key-function": "^29.7.0", | ||
"@react-native/assets-registry": "0.80.0-nightly-20250319-adbcaef1e", | ||
"@react-native/codegen": "0.80.0-nightly-20250319-adbcaef1e", | ||
"@react-native/community-cli-plugin": "0.80.0-nightly-20250319-adbcaef1e", | ||
"@react-native/gradle-plugin": "0.80.0-nightly-20250319-adbcaef1e", | ||
"@react-native/js-polyfills": "0.80.0-nightly-20250319-adbcaef1e", | ||
"@react-native/normalize-colors": "0.80.0-nightly-20250319-adbcaef1e", | ||
"@react-native/virtualized-lists": "0.80.0-nightly-20250319-adbcaef1e", | ||
"@react-native/assets-registry": "0.80.0-nightly-20250320-146d809b6", | ||
"@react-native/codegen": "0.80.0-nightly-20250320-146d809b6", | ||
"@react-native/community-cli-plugin": "0.80.0-nightly-20250320-146d809b6", | ||
"@react-native/gradle-plugin": "0.80.0-nightly-20250320-146d809b6", | ||
"@react-native/js-polyfills": "0.80.0-nightly-20250320-146d809b6", | ||
"@react-native/normalize-colors": "0.80.0-nightly-20250320-146d809b6", | ||
"@react-native/virtualized-lists": "0.80.0-nightly-20250320-146d809b6", | ||
"abort-controller": "^3.0.0", | ||
@@ -153,3 +153,21 @@ "anser": "^1.4.9", | ||
"type": "modules", | ||
"ios": {}, | ||
"ios": { | ||
"modules": { | ||
"AccessibilityManager": { | ||
"unstableRequiresMainQueueSetup": true | ||
}, | ||
"AppState": { | ||
"unstableRequiresMainQueueSetup": true | ||
}, | ||
"DeviceInfo": { | ||
"unstableRequiresMainQueueSetup": true | ||
}, | ||
"PlatformConstants": { | ||
"unstableRequiresMainQueueSetup": true | ||
}, | ||
"StatusBarManager": { | ||
"unstableRequiresMainQueueSetup": true | ||
} | ||
} | ||
}, | ||
"android": {}, | ||
@@ -156,0 +174,0 @@ "jsSrcsDir": "src" |
@@ -81,5 +81,5 @@ /** | ||
export RCT_SCRIPT_RN_DIR="$RCT_SCRIPT_POD_INSTALLATION_ROOT/${path.relative(outputPath, REACT_NATIVE_PACKAGE_ROOT_FOLDER)}" | ||
export RCT_SCRIPT_APP_PATH="$RCT_SCRIPT_POD_INSTALLATION_ROOT/${relativeAppPath.length === 0 ? '.' : relativeAppPath}", | ||
export RCT_SCRIPT_OUTPUT_DIR="$RCT_SCRIPT_POD_INSTALLATION_ROOT", | ||
export RCT_SCRIPT_TYPE="withCodegenDiscovery", | ||
export RCT_SCRIPT_APP_PATH="$RCT_SCRIPT_POD_INSTALLATION_ROOT/${relativeAppPath.length === 0 ? '.' : relativeAppPath}" | ||
export RCT_SCRIPT_OUTPUT_DIR="$RCT_SCRIPT_POD_INSTALLATION_ROOT" | ||
export RCT_SCRIPT_TYPE="withCodegenDiscovery" | ||
@@ -86,0 +86,0 @@ SCRIPT_PHASES_SCRIPT="$RCT_SCRIPT_RN_DIR/scripts/react_native_pods_utils/script_phases.sh" |
@@ -31,2 +31,5 @@ /** | ||
const { | ||
generateUnstableModulesRequiringMainQueueSetupProvider, | ||
} = require('./generateUnstableModulesRequiringMainQueueSetupProvider'); | ||
const { | ||
buildCodegenIfNeeded, | ||
@@ -119,2 +122,6 @@ cleanupEmptyFilesAndFolders, | ||
generateCustomURLHandlers(libraries, outputPath); | ||
generateUnstableModulesRequiringMainQueueSetupProvider( | ||
libraries, | ||
outputPath, | ||
); | ||
generateAppDependencyProvider(outputPath); | ||
@@ -121,0 +128,0 @@ } |
@@ -7,3 +7,3 @@ /** | ||
* | ||
* @generated SignedSource<<e76d584cb67e2feae209795beb2009d6>> | ||
* @generated SignedSource<<8e4f25dbb96b6c7a9fe645d67172d0ab>> | ||
* @flow strict | ||
@@ -66,2 +66,3 @@ */ | ||
enableLongTaskAPI: Getter<boolean>, | ||
enableMainQueueModulesOnIOS: Getter<boolean>, | ||
enableNativeCSSParsing: Getter<boolean>, | ||
@@ -226,2 +227,6 @@ enableNewBackgroundAndBorderDrawables: Getter<boolean>, | ||
/** | ||
* Makes modules requiring main queue setup initialize on the main thread, during React Native init. | ||
*/ | ||
export const enableMainQueueModulesOnIOS: Getter<boolean> = createNativeFlagGetter('enableMainQueueModulesOnIOS', false); | ||
/** | ||
* Parse CSS strings using the Fabric CSS parser instead of ViewConfig processing | ||
@@ -228,0 +233,0 @@ */ |
@@ -7,3 +7,3 @@ /** | ||
* | ||
* @generated SignedSource<<22d8e7623a2eee5182c786f2ec914401>> | ||
* @generated SignedSource<<b305837c79b4099dad5dac1431ec27a0>> | ||
* @flow strict | ||
@@ -43,2 +43,3 @@ */ | ||
+enableLongTaskAPI?: () => boolean; | ||
+enableMainQueueModulesOnIOS?: () => boolean; | ||
+enableNativeCSSParsing?: () => boolean; | ||
@@ -45,0 +46,0 @@ +enableNewBackgroundAndBorderDrawables?: () => boolean; |
@@ -15,5 +15,13 @@ /** | ||
export const LearnMoreLinks: any; | ||
export const Colors: any; | ||
export const Colors: { | ||
primary: string; | ||
white: string; | ||
lighter: string; | ||
light: string; | ||
dark: string; | ||
darker: string; | ||
black: string; | ||
}; | ||
export const DebugInstructions: any; | ||
export const ReloadInstructions: any; | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
74373523
0214742
0.06%4004
-0.15%35
2.94%