├── packages ├── react-native-bots │ └── .babelrc ├── react-native │ ├── template │ │ ├── _watchmanconfig │ │ ├── jest.config.js │ │ ├── _bundle │ │ │ └── config │ │ ├── app.json │ │ ├── _eslintrc.js │ │ ├── tsconfig.json │ │ ├── babel.config.js │ │ ├── ios │ │ │ └── HelloWorld │ │ │ │ ├── Images.xcassets │ │ │ │ └── Contents.json │ │ │ │ ├── AppDelegate.h │ │ │ │ └── main.m │ │ ├── android │ │ │ ├── app │ │ │ │ ├── debug.keystore │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── res │ │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── _prettierrc.js │ │ ├── index.js │ │ ├── Gemfile │ │ └── metro.config.js │ ├── Libraries │ │ ├── .npmignore │ │ ├── ReactPrivate │ │ │ ├── README │ │ │ └── ReactNativePrivateInitializeCore.js │ │ ├── Image │ │ │ ├── __tests__ │ │ │ │ └── img │ │ │ │ │ ├── img1.png │ │ │ │ │ └── img2.png │ │ │ ├── RCTImageShadowView.h │ │ │ ├── RCTImageViewManager.h │ │ │ ├── RCTGIFImageDecoder.h │ │ │ └── RCTImageEditingManager.h │ │ ├── LogBox │ │ │ └── UI │ │ │ │ └── LogBoxImages │ │ │ │ ├── close.png │ │ │ │ ├── loader.png │ │ │ │ ├── chevron-left.png │ │ │ │ ├── chevron-right.png │ │ │ │ └── alert-triangle.png │ │ ├── NewAppScreen │ │ │ └── components │ │ │ │ └── logo.png │ │ ├── TurboModule │ │ │ └── RCTExport.d.ts │ │ ├── Types │ │ │ └── RootTagTypes.js │ │ ├── Animated │ │ │ └── AnimatedPlatformConfig.js │ │ ├── Text │ │ │ ├── VirtualText │ │ │ │ └── RCTVirtualTextView.mm │ │ │ └── TextInput │ │ │ │ └── RCTInputAccessoryViewContent.h │ │ ├── Vibration │ │ │ └── RCTVibration.h │ │ ├── ReactNative │ │ │ └── HeadlessJsTaskError.js │ │ ├── Blob │ │ │ └── RCTFileReaderModule.h │ │ ├── StyleSheet │ │ │ └── __tests__ │ │ │ │ └── __snapshots__ │ │ │ │ └── processTransformOrigin-test.js.snap │ │ └── NativeAnimation │ │ │ └── Nodes │ │ │ └── RCTTrackingAnimatedNode.h │ ├── types │ │ ├── .npmignore │ │ └── private │ │ │ └── Utilities.d.ts │ ├── gradle.properties │ ├── React │ │ ├── I18n │ │ │ ├── .clang-format-ignore │ │ │ └── strings │ │ │ │ ├── ar.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── cs.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── da.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── de.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── el.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ │ ├── es.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── fi.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── fr.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── he.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── hi.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── hr.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── hu.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── id.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── it.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── ja.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── ko.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── ms.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── nb.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── nl.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── pl.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── pt.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── ro.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── ru.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── sk.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── sv.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── th.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── tr.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── uk.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── vi.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── zu.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── en-GB.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── es-ES.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── pt-PT.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── zh-Hans.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ ├── zh-Hant.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ │ │ └── zh-Hant-HK.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── fbt_language_pack.bin │ │ ├── Fabric │ │ │ └── RCTPrimitives.h │ │ ├── Base │ │ │ ├── RCTCxxConvert.m │ │ │ ├── RCTInitializing.h │ │ │ └── RCTInvalidating.h │ │ ├── CoreModules │ │ │ ├── RCTAppState.h │ │ │ ├── RCTClipboard.h │ │ │ └── RCTKeyboardObserver.h │ │ └── Views │ │ │ ├── RCTSwitchManager.h │ │ │ ├── RCTActivityIndicatorView.h │ │ │ └── RCTSegmentedControlManager.h │ ├── ReactCommon │ │ ├── yoga │ │ │ ├── .clang-tidy │ │ │ └── cmake │ │ │ │ └── yoga-config.cmake.in │ │ ├── butter │ │ │ └── .clang-tidy │ │ ├── hermes │ │ │ ├── .clang-tidy │ │ │ └── inspector-modern │ │ │ │ └── docs │ │ │ │ ├── InspectorFSM.pdf │ │ │ │ └── GenerateInspectorFSM.sh │ │ ├── jsc │ │ │ └── .clang-tidy │ │ ├── jsi │ │ │ └── .clang-tidy │ │ ├── callinvoker │ │ │ └── .clang-tidy │ │ ├── cxxreact │ │ │ └── .clang-tidy │ │ ├── jsiexecutor │ │ │ └── .clang-tidy │ │ ├── react │ │ │ ├── utils │ │ │ │ └── .clang-tidy │ │ │ ├── config │ │ │ │ └── .clang-tidy │ │ │ ├── nativemodule │ │ │ │ └── .clang-tidy │ │ │ ├── runtime │ │ │ │ └── README.md │ │ │ └── renderer │ │ │ │ ├── core │ │ │ │ ├── RawValue.cpp │ │ │ │ ├── StateUpdate.cpp │ │ │ │ └── ShadowNodeTraits.cpp │ │ │ │ ├── mounting │ │ │ │ └── ShadowTreeRevision.cpp │ │ │ │ └── element │ │ │ │ ├── Element.cpp │ │ │ │ └── ElementFragment.cpp │ │ ├── jsengineinstance │ │ │ └── .clang-tidy │ │ ├── reactperflogger │ │ │ └── .clang-tidy │ │ ├── runtimeexecutor │ │ │ └── .clang-tidy │ │ └── jsinspector-modern │ │ │ └── .clang-tidy │ ├── sdks │ │ └── .hermesversion │ ├── ReactAndroid │ │ ├── hermes-engine │ │ │ ├── gradle.properties │ │ │ └── .npmignore │ │ ├── src │ │ │ ├── test │ │ │ │ └── resources │ │ │ │ │ ├── mockito-extensions │ │ │ │ │ └── org.mockito.plugins.MockMaker │ │ │ │ │ └── robolectric.properties │ │ │ └── main │ │ │ │ ├── jni │ │ │ │ ├── first-party │ │ │ │ │ ├── yogajni │ │ │ │ │ │ └── .clang-tidy │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ ├── fb │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── fb │ │ │ │ │ │ │ └── visibility.h │ │ │ │ │ └── jni-hack │ │ │ │ │ │ └── README.md │ │ │ │ ├── react │ │ │ │ │ ├── mapbuffer │ │ │ │ │ │ └── react │ │ │ │ │ │ │ └── common │ │ │ │ │ │ │ └── mapbuffer │ │ │ │ │ │ │ └── .clang-tidy │ │ │ │ │ ├── hermes │ │ │ │ │ │ └── .clang-tidy │ │ │ │ │ ├── jni │ │ │ │ │ │ └── .clang-tidy │ │ │ │ │ └── reactperflogger │ │ │ │ │ │ └── reactperflogger │ │ │ │ │ │ └── .clang-tidy │ │ │ │ └── prebuilt │ │ │ │ │ └── lib │ │ │ │ │ └── DUMMY │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── facebook │ │ │ │ │ └── react │ │ │ │ │ ├── fabric │ │ │ │ │ └── .clang-tidy │ │ │ │ │ ├── modules │ │ │ │ │ └── .clang-tidy │ │ │ │ │ ├── turbomodule │ │ │ │ │ └── .clang-tidy │ │ │ │ │ └── runtime │ │ │ │ │ └── README.md │ │ │ │ └── res │ │ │ │ ├── devsupport │ │ │ │ ├── values │ │ │ │ │ └── colors.xml │ │ │ │ ├── values-as │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-az │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-be │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ca │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-de │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-hy │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-is │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-kk │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ku │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ky │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-lo │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-mn │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ne │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-ps │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-qz │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-sn │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-so │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-tg │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-tk │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-uz │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-wo │ │ │ │ │ └── strings.xml │ │ │ │ └── values-zu │ │ │ │ │ └── strings.xml │ │ │ │ ├── systeminfo │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ │ └── views │ │ │ │ ├── uimanager │ │ │ │ ├── values-ca │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-is │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-qz │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-sn │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-tk │ │ │ │ │ └── strings.xml │ │ │ │ ├── values-wo │ │ │ │ │ └── strings.xml │ │ │ │ └── values-zu │ │ │ │ │ └── strings.xml │ │ │ │ └── modal │ │ │ │ └── anim │ │ │ │ ├── reactandroid_catalyst_slide_down.xml │ │ │ │ └── reactandroid_catalyst_slide_up.xml │ │ ├── flipper-integration │ │ │ └── .npmignore │ │ ├── external-artifacts │ │ │ └── .npmignore │ │ ├── .npmignore │ │ └── gradle.properties │ ├── scripts │ │ ├── .npmignore │ │ └── native_modules.rb │ ├── rn-get-polyfills.js │ └── jest │ │ └── ReactNativeInternalFeatureFlagsMock.js ├── virtualized-lists │ ├── .npmignore │ └── index.d.ts ├── assets │ └── .npmignore ├── polyfills │ └── .npmignore ├── rn-tester-e2e │ └── apps │ │ └── README.md ├── react-native-codegen-typescript-test │ └── __generated__ │ │ └── .gitignore ├── hermes-inspector-msggen │ ├── .gitignore │ └── .babelrc ├── normalize-color │ ├── .npmignore │ └── index.js.flow ├── react-native-gradle-plugin │ ├── gradle.properties │ └── gradle │ │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── debugger-frontend │ └── dist │ │ └── third-party │ │ └── front_end │ │ ├── panels │ │ ├── js_profiler │ │ │ └── js_profiler.js │ │ ├── recorder │ │ │ └── recorder-actions.js │ │ ├── changes │ │ │ └── changes-legacy.js │ │ ├── lighthouse │ │ │ └── lighthouse-legacy.js │ │ └── search │ │ │ └── search-legacy.js │ │ ├── Images │ │ ├── empty.svg │ │ ├── triangle-left.svg │ │ ├── favicon.ico │ │ ├── minus.svg │ │ ├── minus_icon.svg │ │ ├── nodeIcon.avif │ │ ├── whatsnew.avif │ │ ├── chromeLeft.avif │ │ ├── chromeRight.avif │ │ ├── touchCursor.png │ │ ├── triangle-bottom-right.svg │ │ ├── triangle-down.svg │ │ ├── triangle-right.svg │ │ ├── arrow-drop-down-dark.svg │ │ ├── arrow-drop-down-light.svg │ │ ├── chromeMiddle.avif │ │ ├── popoverArrows.png │ │ ├── touchCursor_2x.png │ │ ├── accelerometer-top.png │ │ ├── triangle-up.svg │ │ ├── accelerometer-bottom.png │ │ ├── accelerometer-left.png │ │ ├── accelerometer-right.png │ │ ├── align-self-end.svg │ │ ├── align-self-start.svg │ │ ├── navigationControls.png │ │ ├── stop.svg │ │ ├── colon.svg │ │ ├── cssoverview_icons_2x.avif │ │ ├── exclamation.svg │ │ ├── navigationControls_2x.png │ │ ├── toolbarResizerVertical.png │ │ ├── large-arrow-right-filled.svg │ │ ├── play.svg │ │ ├── plus.svg │ │ ├── react_native │ │ │ └── welcomeIcon.png │ │ ├── align-items-end.svg │ │ ├── align-items-start.svg │ │ ├── chevron-down.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right.svg │ │ ├── chevron-up.svg │ │ ├── justify-content-end.svg │ │ ├── align-self-center.svg │ │ ├── pause.svg │ │ ├── align-self-stretch.svg │ │ ├── resume.svg │ │ ├── align-content-space-between.svg │ │ ├── align-content-stretch.svg │ │ ├── arrow-down.svg │ │ ├── arrow-up.svg │ │ ├── checkmark.svg │ │ ├── justify-content-space-between.svg │ │ ├── align-items-stretch.svg │ │ ├── justify-content-space-around.svg │ │ ├── justify-content-space-evenly.svg │ │ ├── justify-items-end.svg │ │ ├── justify-items-start.svg │ │ ├── resizeVertical.svg │ │ ├── justify-items-stretch.svg │ │ ├── layers-filled.svg │ │ ├── resizeHorizontal.svg │ │ ├── code.svg │ │ ├── chevron-left-dot.svg │ │ ├── width.svg │ │ ├── chevron-double-right.svg │ │ ├── cross.svg │ │ ├── align-content-end.svg │ │ ├── align-content-start.svg │ │ ├── justify-content-start.svg │ │ ├── align-content-center.svg │ │ ├── align-items-center.svg │ │ ├── justify-content-center.svg │ │ ├── warning-filled.svg │ │ ├── layers.svg │ │ ├── align-content-space-around.svg │ │ ├── align-content-space-evenly.svg │ │ ├── arrow-up-down.svg │ │ ├── fold-more.svg │ │ ├── justify-items-center.svg │ │ ├── record-stop.svg │ │ ├── checker.svg │ │ ├── record-start.svg │ │ ├── refresh.svg │ │ ├── custom-typography.svg │ │ ├── clear.svg │ │ ├── bin.svg │ │ ├── errorWave.svg │ │ ├── document.svg │ │ ├── flex-direction.svg │ │ ├── align-items-baseline.svg │ │ ├── check-double.svg │ │ ├── clear-list.svg │ │ ├── download.svg │ │ ├── import.svg │ │ ├── star.svg │ │ ├── node_search_icon.svg │ │ ├── breakpoint-crossed-filled.svg │ │ ├── 3d-center.svg │ │ ├── flex-no-wrap.svg │ │ ├── frame-icon.svg │ │ ├── edit.svg │ │ ├── filter-filled.svg │ │ ├── frame.svg │ │ ├── issue-text-filled.svg │ │ └── snippet.svg │ │ ├── models │ │ ├── issues_manager │ │ │ └── descriptions │ │ │ │ ├── federatedAuthRequestCanceled.md │ │ │ │ ├── federatedAuthRequestErrorIdToken.md │ │ │ │ ├── deprecation.md │ │ │ │ ├── federatedAuthRequestApprovalDeclined.md │ │ │ │ ├── federatedAuthRequestIdTokenInvalidResponse.md │ │ │ │ ├── federatedAuthRequestAccountsInvalidResponse.md │ │ │ │ ├── federatedAuthRequestIdTokenInvalidRequest.md │ │ │ │ ├── federatedAuthUserInfoRequestNotIframe.md │ │ │ │ ├── federatedAuthRequestInvalidSigninResponse.md │ │ │ │ ├── federatedAuthRequestClientMetadataInvalidResponse.md │ │ │ │ ├── federatedAuthRequestIdTokenHttpNotFound.md │ │ │ │ ├── federatedAuthRequestAccountsHttpNotFound.md │ │ │ │ ├── federatedAuthRequestManifestInvalidResponse.md │ │ │ │ ├── federatedAuthRequestErrorFetchingSignin.md │ │ │ │ ├── federatedAuthRequestIdTokenNoResponse.md │ │ │ │ ├── federatedAuthUserInfoRequestNoApiPermission.md │ │ │ │ ├── federatedAuthUserInfoRequestNotSameOrigin.md │ │ │ │ ├── federatedAuthRequestClientMetadataHttpNotFound.md │ │ │ │ ├── federatedAuthRequestManifestHttpNotFound.md │ │ │ │ ├── stylesheetRequestFailed.md │ │ │ │ ├── federatedAuthRequestAccountsNoResponse.md │ │ │ │ ├── federatedAuthRequestTooManyRequests.md │ │ │ │ ├── federatedAuthUserInfoRequestInvalidAccountsResponse.md │ │ │ │ ├── federatedAuthRequestClientMetadataNoResponse.md │ │ │ │ ├── federatedAuthUserInfoRequestNotSignedInWithIdp.md │ │ │ │ ├── federatedAuthRequestManifestNoResponse.md │ │ │ │ ├── federatedAuthUserInfoRequestInvalidConfigOrWellKnown.md │ │ │ │ ├── federatedAuthUserInfoRequestNotPotentiallyTrustworthy.md │ │ │ │ ├── federatedAuthUserInfoRequestNoReturningUserFromFetchedAccounts.md │ │ │ │ ├── federatedAuthUserInfoRequestNoAccountSharingPermission.md │ │ │ │ ├── clientHintMetaTagAllowListInvalidOrigin.md │ │ │ │ ├── cookieExcludeBlockedWithinFirstPartySet.md │ │ │ │ ├── clientHintMetaTagModifiedHTML.md │ │ │ │ ├── genericFormAutocompleteAttributeEmptyError.md │ │ │ │ ├── genericFormLabelHasNeitherForNorNestedInput.md │ │ │ │ ├── arInvalidRegisterSourceHeader.md │ │ │ │ ├── arInvalidRegisterTriggerHeader.md │ │ │ │ ├── arInvalidRegisterOsSourceHeader.md │ │ │ │ ├── arInvalidRegisterOsTriggerHeader.md │ │ │ │ ├── stylesheetLateImport.md │ │ │ │ ├── genericFormDuplicateIdForInputError.md │ │ │ │ ├── genericFormInputHasWrongButWellIntendedAutocompleteValueError.md │ │ │ │ └── bounceTrackingMitigations.md │ │ └── formatter │ │ │ └── formatter-legacy.js │ │ ├── entrypoints │ │ ├── ndb_app │ │ │ └── ndb_app.js │ │ ├── formatter_worker │ │ │ └── FormatterActions.js │ │ ├── device_mode_emulation_frame │ │ │ └── device_mode_emulation_frame.js │ │ ├── wasmparser_worker │ │ │ └── wasmparser_worker-entrypoint.js │ │ └── heap_snapshot_worker │ │ │ └── heap_snapshot_worker-entrypoint.js │ │ ├── third_party │ │ └── diff │ │ │ └── diff-legacy.js │ │ ├── emulated_devices │ │ └── optimized │ │ │ ├── iPad-landscape.avif │ │ │ ├── iPad-portrait.avif │ │ │ ├── MotoG4-landscape.avif │ │ │ ├── MotoG4-portrait.avif │ │ │ ├── Nexus5X-portrait.avif │ │ │ ├── Nexus6P-portrait.avif │ │ │ ├── iPhone5-portrait.avif │ │ │ ├── iPhone6-portrait.avif │ │ │ ├── Nexus5X-landscape.avif │ │ │ ├── Nexus6P-landscape.avif │ │ │ ├── iPhone5-landscape.avif │ │ │ ├── iPhone6-landscape.avif │ │ │ ├── iPhone6Plus-landscape.avif │ │ │ ├── iPhone6Plus-portrait.avif │ │ │ ├── google-nest-hub-horizontal.avif │ │ │ ├── google-nest-hub-max-horizontal.avif │ │ │ ├── google-nexus-5-vertical-default-1x.avif │ │ │ ├── google-nexus-5-vertical-default-2x.avif │ │ │ ├── google-nexus-5-horizontal-default-1x.avif │ │ │ ├── google-nexus-5-horizontal-default-2x.avif │ │ │ ├── google-nexus-5-vertical-keyboard-1x.avif │ │ │ ├── google-nexus-5-vertical-keyboard-2x.avif │ │ │ ├── google-nexus-5x-vertical-default-1x.avif │ │ │ ├── google-nexus-5x-vertical-default-2x.avif │ │ │ ├── google-nexus-5x-vertical-keyboard-1x.avif │ │ │ ├── google-nexus-5x-vertical-keyboard-2x.avif │ │ │ ├── google-nexus-5-horizontal-keyboard-1x.avif │ │ │ ├── google-nexus-5-horizontal-keyboard-2x.avif │ │ │ ├── google-nexus-5-horizontal-navigation-1x.avif │ │ │ ├── google-nexus-5-horizontal-navigation-2x.avif │ │ │ ├── google-nexus-5-vertical-navigation-1x.avif │ │ │ ├── google-nexus-5-vertical-navigation-2x.avif │ │ │ ├── google-nexus-5x-horizontal-default-1x.avif │ │ │ ├── google-nexus-5x-horizontal-default-2x.avif │ │ │ ├── google-nexus-5x-horizontal-keyboard-1x.avif │ │ │ ├── google-nexus-5x-horizontal-keyboard-2x.avif │ │ │ ├── google-nexus-5x-vertical-navigation-1x.avif │ │ │ ├── google-nexus-5x-vertical-navigation-2x.avif │ │ │ ├── google-nexus-5x-horizontal-navigation-1x.avif │ │ │ └── google-nexus-5x-horizontal-navigation-2x.avif │ │ ├── ui │ │ └── legacy │ │ │ └── components │ │ │ ├── cookie_table │ │ │ └── cookie_table-legacy.js │ │ │ └── object_ui │ │ │ └── object_ui-meta.js │ │ └── core │ │ └── root │ │ └── root-legacy.js ├── dev-middleware │ ├── .gitignore │ └── index.js.flow ├── rn-tester │ ├── .eslintrc │ ├── js │ │ ├── assets │ │ │ ├── call.png │ │ │ ├── fist.png │ │ │ ├── hawk.png │ │ │ ├── like.png │ │ │ ├── poke.png │ │ │ ├── bunny.png │ │ │ ├── dislike.png │ │ │ ├── empty.png │ │ │ ├── flowers.png │ │ │ ├── flux@3x.png │ │ │ ├── heart.png │ │ │ ├── liking.png │ │ │ ├── party.png │ │ │ ├── slider.png │ │ │ ├── trees.jpg │ │ │ ├── victory.png │ │ │ ├── bandaged.png │ │ │ ├── imageMask.png │ │ │ ├── relay@3x.png │ │ │ ├── slider@2x.png │ │ │ ├── superlike.png │ │ │ ├── search-icon.png │ │ │ ├── slider-left.png │ │ │ ├── slider-right.png │ │ │ ├── documentation.png │ │ │ ├── slider-left@2x.png │ │ │ ├── uie_thumb_big.png │ │ │ ├── bookmark-filled.png │ │ │ ├── bookmark-outline.png │ │ │ ├── slider-right@2x.png │ │ │ ├── header-back-button.png │ │ │ ├── uie_thumb_normal@2x.png │ │ │ ├── bookmark-outline-blue.png │ │ │ ├── bookmark-outline-gray.png │ │ │ ├── uie_comment_normal@2x.png │ │ │ ├── uie_thumb_selected@2x.png │ │ │ ├── bottom-nav-bookmark-fill.png │ │ │ ├── bottom-nav-apis-icon-active.png │ │ │ ├── bottom-nav-bookmark-outline.png │ │ │ ├── uie_comment_highlighted@2x.png │ │ │ ├── bottom-nav-apis-icon-inactive.png │ │ │ ├── tumblr_mfqekpMktw1rn90umo1_500.gif │ │ │ ├── bottom-nav-components-icon-active.png │ │ │ └── bottom-nav-components-icon-inactive.png │ │ ├── examples │ │ │ └── Accessibility │ │ │ │ ├── check.png │ │ │ │ ├── mixed.png │ │ │ │ └── uncheck.png │ │ └── RNTesterApp.js.flow │ ├── RNTester │ │ ├── Images.xcassets │ │ │ ├── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ ├── Icon-83.5@2x.png │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ ├── Icon-Small@3x.png │ │ │ │ ├── Icon-Small-40@2x.png │ │ │ │ ├── Icon-Small-40@3x.png │ │ │ │ └── iTunesArtwork@1x.png │ │ │ ├── tabnav_list.imageset │ │ │ │ └── tabnav_list@3x.png │ │ │ ├── tabnav_settings.imageset │ │ │ │ └── tabnav_settings@3x.png │ │ │ ├── NavBarButtonPlus.imageset │ │ │ │ └── NavBarButtonPlus@3x.png │ │ │ ├── story-background.imageset │ │ │ │ └── story-background@2x.png │ │ │ └── tabnav_notification.imageset │ │ │ │ └── tabnav_notification@3x.png │ │ ├── legacy_image@2x.png │ │ ├── RNTesterBundle │ │ │ ├── OtherImages.xcassets │ │ │ │ ├── Contents.json │ │ │ │ └── ImageInAssetCatalog.imageset │ │ │ │ │ └── react-logo.png │ │ │ └── ImageInBundle.png │ │ └── AppDelegate.h │ ├── IntegrationTests │ │ ├── red_square.png │ │ └── blue_square.png │ ├── RNTesterIntegrationTests │ │ ├── blue_square.png │ │ ├── red_square.png │ │ └── ReferenceImages │ │ │ ├── RNTester-js-RNTesterApp.ios │ │ │ ├── testLayoutExample_1-iOS12@2x.png │ │ │ ├── testLayoutExample_1-iOS13@2x.png │ │ │ ├── testSliderExample_1-iOS12@2x.png │ │ │ ├── testSwitchExample_1-iOS12@2x.png │ │ │ ├── testSwitchExample_1-iOS13@2x.png │ │ │ ├── testTextExample_1-iOS12@2x.png │ │ │ ├── testTextExample_1-iOS13@2x.png │ │ │ ├── testViewExample_1-iOS12@2x.png │ │ │ ├── testViewExample_1-iOS13@2x.png │ │ │ ├── testScrollViewExample_1-iOS12@2x.png │ │ │ └── testScrollViewExample_1-iOS13@2x.png │ │ │ ├── IntegrationTests-IntegrationTestsApp │ │ │ ├── testImageSnapshotTest_1@2x.png │ │ │ ├── testImageSnapshotTest_1@3x.png │ │ │ ├── testSimpleSnapshotTest_1@2x.png │ │ │ └── testSimpleSnapshotTest_1@3x.png │ │ │ └── packages-rn-tester-js-RNTesterApp.ios │ │ │ ├── testLayoutExample_1-iOS16@3x.png │ │ │ ├── testSwitchExample_1-iOS16@3x.png │ │ │ ├── testTextExample_1-iOS16@3x.png │ │ │ └── testViewExample_1-iOS16@3x.png │ ├── Gemfile │ ├── android │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ ├── ic_launcher-playstore.png │ │ │ ├── res │ │ │ ├── font │ │ │ │ ├── rubik_bold.ttf │ │ │ │ ├── rubik_light.ttf │ │ │ │ ├── rubik_medium.ttf │ │ │ │ ├── rubik_regular.ttf │ │ │ │ └── rubik_medium_italic.ttf │ │ │ ├── drawable │ │ │ │ ├── tv_banner.png │ │ │ │ ├── legacy_image.png │ │ │ │ ├── ic_menu_black_24dp.png │ │ │ │ ├── ic_create_black_48dp.png │ │ │ │ └── ic_settings_black_48dp.png │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── assets │ │ │ └── fonts │ │ │ ├── notoserif.ttf │ │ │ └── notoserif_bold_italic.ttf │ ├── .babelrc │ ├── RNTesterPods.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── NativeModuleExample │ │ └── Screenshot.h │ └── RCTTest │ │ └── RCTSnapshotManager.h ├── community-cli-plugin │ ├── .gitignore │ └── index.js.flow ├── react-native-babel-preset │ └── .npmignore ├── react-native-babel-transformer │ └── .npmignore ├── react-native-codegen │ ├── .prettierrc │ ├── lib │ │ ├── CodegenSchema.js │ │ └── parsers │ │ │ ├── parser.js │ │ │ └── errors.d.ts │ └── src │ │ ├── __tests__ │ │ └── __snapshots__ │ │ │ └── SchemaValidator-test.js.snap │ │ └── parsers │ │ └── errors.d.ts ├── typescript-config │ └── README.md └── eslint-plugin-react-native │ └── index.js ├── .buckjavaargs ├── .bundle └── config ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .prettierignore ├── .babelrc ├── tools └── eslint │ ├── package.json │ └── README.md ├── .github └── ISSUE_TEMPLATE.md ├── Gemfile ├── flow-typed └── npm │ ├── base64-js_v1.x.x.js │ ├── ansi-regex_v5.x.x.js │ ├── stacktrace-parser_v0.1.x.js │ ├── @tsconfig │ └── node18_v1.x.x.js │ └── temp-dir_2.x.x.js ├── .circleci ├── README.md └── configurations │ └── test_workflows │ └── testE2E.yml └── .eslintignore /packages/react-native-bots/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /packages/react-native/template/_watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /packages/virtualized-lists/.npmignore: -------------------------------------------------------------------------------- 1 | __tests__ 2 | -------------------------------------------------------------------------------- /.buckjavaargs: -------------------------------------------------------------------------------- 1 | -Xmx512m -XX:+HeapDumpOnOutOfMemoryError 2 | -------------------------------------------------------------------------------- /packages/react-native/Libraries/.npmignore: -------------------------------------------------------------------------------- 1 | __tests__ 2 | -------------------------------------------------------------------------------- /packages/react-native/types/.npmignore: -------------------------------------------------------------------------------- 1 | __typetests__ 2 | -------------------------------------------------------------------------------- /packages/react-native/gradle.properties: -------------------------------------------------------------------------------- 1 | android.useAndroidX=true -------------------------------------------------------------------------------- /packages/assets/.npmignore: -------------------------------------------------------------------------------- 1 | **/__mocks__/** 2 | **/__tests__/** 3 | BUCK 4 | -------------------------------------------------------------------------------- /packages/polyfills/.npmignore: -------------------------------------------------------------------------------- 1 | **/__mocks__/** 2 | **/__tests__/** 3 | BUCK 4 | -------------------------------------------------------------------------------- /packages/rn-tester-e2e/apps/README.md: -------------------------------------------------------------------------------- 1 | Put the *.app and *.apk files here. 2 | -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- 1 | BUNDLE_PATH: "vendor/bundle" 2 | BUNDLE_FORCE_RUBY_PLATFORM: 1 3 | -------------------------------------------------------------------------------- /packages/react-native-codegen-typescript-test/__generated__/.gitignore: -------------------------------------------------------------------------------- 1 | *.ts 2 | -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /packages/normalize-color/.npmignore: -------------------------------------------------------------------------------- 1 | **/__mocks__/** 2 | **/__tests__/** 3 | BUCK 4 | -------------------------------------------------------------------------------- /packages/react-native-gradle-plugin/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.caching=true 2 | 3 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/panels/js_profiler/js_profiler.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/panels/recorder/recorder-actions.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/.clang-format-ignore: -------------------------------------------------------------------------------- 1 | # Synced externally 2 | FBXXHashUtils.h 3 | -------------------------------------------------------------------------------- /packages/dev-middleware/.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | /node_modules 3 | 4 | # Build output 5 | /dist 6 | -------------------------------------------------------------------------------- /packages/react-native/template/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /packages/rn-tester/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "react-native/no-inline-styles": 0 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /packages/community-cli-plugin/.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | /node_modules 3 | 4 | # Build output 5 | /dist 6 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/yoga/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | ... 6 | -------------------------------------------------------------------------------- /packages/react-native/sdks/.hermesversion: -------------------------------------------------------------------------------- 1 | hermes-2023-11-17-RNv0.73.0-21043a3fc062be445e56a2c10ecd8be028dd9cc5 -------------------------------------------------------------------------------- /packages/react-native/template/_bundle/config: -------------------------------------------------------------------------------- 1 | BUNDLE_PATH: "vendor/bundle" 2 | BUNDLE_FORCE_RUBY_PLATFORM: 1 3 | -------------------------------------------------------------------------------- /packages/react-native/template/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "HelloWorld", 3 | "displayName": "HelloWorld" 4 | } 5 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/hermes-engine/gradle.properties: -------------------------------------------------------------------------------- 1 | android.disableAutomaticComponentCreation=true 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /packages/react-native/template/_eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /packages/react-native/template/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@react-native/typescript-config/tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker: -------------------------------------------------------------------------------- 1 | mock-maker-inline 2 | -------------------------------------------------------------------------------- /packages/react-native/scripts/.npmignore: -------------------------------------------------------------------------------- 1 | # Make sure we never publish __test__ folders (Gradle output) 2 | **/__*tests__/ 3 | -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/call.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/fist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/fist.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/hawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/hawk.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/like.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/poke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/poke.png -------------------------------------------------------------------------------- /packages/react-native/template/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:@react-native/babel-preset'], 3 | }; 4 | -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/bunny.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/dislike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/dislike.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/empty.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/flowers.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/flux@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/flux@3x.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/heart.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/liking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/liking.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/party.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/slider.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/trees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/trees.jpg -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/victory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/victory.png -------------------------------------------------------------------------------- /packages/react-native-babel-preset/.npmignore: -------------------------------------------------------------------------------- 1 | **/__mocks__/ 2 | **/__tests__/ 3 | /build/ 4 | /src.real/ 5 | /types/ 6 | yarn.lock 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/flipper-integration/.npmignore: -------------------------------------------------------------------------------- 1 | # Make sure we never publish the build folders to npm. 2 | build/ 3 | -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bandaged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/bandaged.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/imageMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/imageMask.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/relay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/relay@3x.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/slider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/slider@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/superlike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/superlike.png -------------------------------------------------------------------------------- /packages/react-native-babel-transformer/.npmignore: -------------------------------------------------------------------------------- 1 | **/__mocks__/ 2 | **/__tests__/ 3 | /build/ 4 | /src.real/ 5 | /types/ 6 | yarn.lock 7 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/zu.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/hermes-engine/.npmignore: -------------------------------------------------------------------------------- 1 | # Make sure we never publish the build folders to npm. 2 | build/ 3 | .cxx/ 4 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/jni/first-party/yogajni/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | ... 6 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/butter/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | InheritParentConfig: true 3 | Checks: '> 4 | clang-diagnostic-*, 5 | ' 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/hermes/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/jsc/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/jsi/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/search-icon.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/slider-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/slider-left.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/slider-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/slider-right.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/en-GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/es-ES.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/jni/react/mapbuffer/react/common/mapbuffer/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | InheritParentConfig: true 3 | ... 4 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/callinvoker/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/cxxreact/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/jsiexecutor/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/react/utils/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/legacy_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/legacy_image@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/documentation.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/slider-left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/slider-left@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/uie_thumb_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/uie_thumb_big.png -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/zh-Hant-HK.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | // @generated SignedSource<<6c4053ad9f2da7cd9f9d1bc0789bd1e5>> 2 | 3 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/test/resources/robolectric.properties: -------------------------------------------------------------------------------- 1 | # Set this to minimum supported API level for React Native. 2 | sdk=33 3 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/jsengineinstance/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/react/config/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/reactperflogger/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/runtimeexecutor/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/rn-tester/IntegrationTests/red_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/IntegrationTests/red_square.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bookmark-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/bookmark-filled.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bookmark-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/bookmark-outline.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/slider-right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/slider-right@2x.png -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore Pods 2 | **/Pods 3 | 4 | # Ignore hermes as it is downloaded from the react_native_pods 5 | **/sdks/hermes 6 | **/sdks/downloads 7 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestCanceled.md: -------------------------------------------------------------------------------- 1 | # The request has been aborted. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestErrorIdToken.md: -------------------------------------------------------------------------------- 1 | # Error retrieving a token. 2 | -------------------------------------------------------------------------------- /packages/react-native/Libraries/ReactPrivate/README: -------------------------------------------------------------------------------- 1 | JS modules in this folder are forwarding modules to allow React to require React Native internals. 2 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/jsinspector-modern/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/react/nativemodule/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/rn-tester/IntegrationTests/blue_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/IntegrationTests/blue_square.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/header-back-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/header-back-button.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/uie_thumb_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/uie_thumb_normal@2x.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/deprecation.md: -------------------------------------------------------------------------------- 1 | # {PLACEHOLDER_title} 2 | 3 | {PLACEHOLDER_message} 4 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/external-artifacts/.npmignore: -------------------------------------------------------------------------------- 1 | # Make sure we never publish the build and artifacts folders to npm. 2 | build/ 3 | artifacts/ 4 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/jni/first-party/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/jni/react/hermes/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | InheritParentConfig: true 3 | Checks: '> 4 | clang-diagnostic-*, 5 | ' 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/jni/react/jni/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/template/ios/HelloWorld/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/RNTesterBundle/OtherImages.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bookmark-outline-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/bookmark-outline-blue.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bookmark-outline-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/bookmark-outline-gray.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/uie_comment_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/uie_comment_normal@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/uie_thumb_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/uie_thumb_selected@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/js/examples/Accessibility/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/examples/Accessibility/check.png -------------------------------------------------------------------------------- /packages/rn-tester/js/examples/Accessibility/mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/examples/Accessibility/mixed.png -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/jni/prebuilt/lib/DUMMY: -------------------------------------------------------------------------------- 1 | # just a dummy temporarily to make BUCK happy about folder not present before Gradle built it 2 | -------------------------------------------------------------------------------- /packages/react-native/template/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/template/android/app/debug.keystore -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bottom-nav-bookmark-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/bottom-nav-bookmark-fill.png -------------------------------------------------------------------------------- /packages/rn-tester/js/examples/Accessibility/uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/examples/Accessibility/uncheck.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/entrypoints/ndb_app/ndb_app.js: -------------------------------------------------------------------------------- 1 | import"../shell/shell.js";import*as m from"../main/main.js";new m.MainImpl.MainImpl; 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestApprovalDeclined.md: -------------------------------------------------------------------------------- 1 | # User declined the sign-in attempt. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenInvalidResponse.md: -------------------------------------------------------------------------------- 1 | # Provider's token is invalid. 2 | -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/__tests__/img/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/Libraries/Image/__tests__/img/img1.png -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/__tests__/img/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/Libraries/Image/__tests__/img/img2.png -------------------------------------------------------------------------------- /packages/react-native/template/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Hello App Display Name 3 | 4 | -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/RNTesterBundle/ImageInBundle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/RNTesterBundle/ImageInBundle.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/blue_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/blue_square.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/red_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/red_square.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bottom-nav-apis-icon-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/bottom-nav-apis-icon-active.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bottom-nav-bookmark-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/bottom-nav-bookmark-outline.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/uie_comment_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/uie_comment_highlighted@2x.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestAccountsInvalidResponse.md: -------------------------------------------------------------------------------- 1 | # Provider's accounts list is invalid. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenInvalidRequest.md: -------------------------------------------------------------------------------- 1 | # The token fetching request is invalid. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotIframe.md: -------------------------------------------------------------------------------- 1 | # getUserInfo() caller is not an iframe. 2 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/java/com/facebook/react/fabric/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/rn-tester/Gemfile: -------------------------------------------------------------------------------- 1 | # Gemfile 2 | source 'https://rubygems.org' 3 | 4 | gem 'cocoapods', '~> 1.12' 5 | gem 'rexml' 6 | gem 'activesupport', '>= 6.1.7.3', '< 7.1.0' 7 | -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bottom-nav-apis-icon-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/bottom-nav-apis-icon-inactive.png -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "module:@react-native/babel-preset" 4 | ], 5 | "plugins": [ 6 | "babel-plugin-transform-flow-enums" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/triangle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestInvalidSigninResponse.md: -------------------------------------------------------------------------------- 1 | # Provider's sign-in response is invalid. 2 | -------------------------------------------------------------------------------- /packages/react-native/Libraries/LogBox/UI/LogBoxImages/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/Libraries/LogBox/UI/LogBoxImages/close.png -------------------------------------------------------------------------------- /packages/react-native/Libraries/LogBox/UI/LogBoxImages/loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/Libraries/LogBox/UI/LogBoxImages/loader.png -------------------------------------------------------------------------------- /packages/react-native/Libraries/NewAppScreen/components/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/Libraries/NewAppScreen/components/logo.png -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/java/com/facebook/react/turbomodule/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | Checks: '> 3 | clang-diagnostic-*, 4 | ' 5 | InheritParentConfig: true 6 | ... 7 | -------------------------------------------------------------------------------- /packages/react-native/template/ios/HelloWorld/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : RCTAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/font/rubik_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/font/rubik_bold.ttf -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/font/rubik_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/font/rubik_light.ttf -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/font/rubik_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/font/rubik_medium.ttf -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/tumblr_mfqekpMktw1rn90umo1_500.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/tumblr_mfqekpMktw1rn90umo1_500.gif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestClientMetadataInvalidResponse.md: -------------------------------------------------------------------------------- 1 | # Provider's client metadata is invalid. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenHttpNotFound.md: -------------------------------------------------------------------------------- 1 | # The provider's id token endpoint cannot be found. 2 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/jni/react/reactperflogger/reactperflogger/.clang-tidy: -------------------------------------------------------------------------------- 1 | --- 2 | InheritParentConfig: true 3 | Checks: '> 4 | clang-diagnostic-*, 5 | ' 6 | ... 7 | -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/assets/fonts/notoserif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/assets/fonts/notoserif.ttf -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/drawable/tv_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/drawable/tv_banner.png -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/font/rubik_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/font/rubik_regular.ttf -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bottom-nav-components-icon-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/bottom-nav-components-icon-active.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestAccountsHttpNotFound.md: -------------------------------------------------------------------------------- 1 | # The provider's accounts list endpoint cannot be found. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestManifestInvalidResponse.md: -------------------------------------------------------------------------------- 1 | # Provider's FedCM manifest configuration is invalid. 2 | -------------------------------------------------------------------------------- /packages/react-native-gradle-plugin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native-gradle-plugin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/drawable/legacy_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/drawable/legacy_image.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bottom-nav-components-icon-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/js/assets/bottom-nav-components-icon-inactive.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/favicon.ico -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestErrorFetchingSignin.md: -------------------------------------------------------------------------------- 1 | # Error attempting to reach the provider's sign-in endpoint. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenNoResponse.md: -------------------------------------------------------------------------------- 1 | # The response body is empty when fetching the provider's token. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNoApiPermission.md: -------------------------------------------------------------------------------- 1 | # getUserInfo() is disabled because FedCM is disabled. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotSameOrigin.md: -------------------------------------------------------------------------------- 1 | # getUserInfo() caller is not same origin as the config URL. 2 | -------------------------------------------------------------------------------- /packages/react-native/Libraries/LogBox/UI/LogBoxImages/chevron-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/Libraries/LogBox/UI/LogBoxImages/chevron-left.png -------------------------------------------------------------------------------- /packages/react-native/Libraries/LogBox/UI/LogBoxImages/chevron-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/Libraries/LogBox/UI/LogBoxImages/chevron-right.png -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ar.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/ar.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/cs.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/cs.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/da.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/da.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/de.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/de.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/el.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/el.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/es.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/es.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/fi.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/fi.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/fr.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/fr.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/he.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/he.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/hi.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/hi.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/hr.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/hr.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/hu.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/hu.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/id.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/id.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/it.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/it.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ja.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/ja.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ko.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/ko.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ms.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/ms.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/nb.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/nb.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/nl.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/nl.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/pl.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/pl.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/pt.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/pt.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ro.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/ro.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/ru.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/ru.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/sk.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/sk.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/sv.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/sv.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/th.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/th.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/tr.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/tr.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/uk.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/uk.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/vi.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/vi.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/zu.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/zu.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/template/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/template/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /packages/rn-tester/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "module:@react-native/babel-preset" 4 | ], 5 | "plugins": [ 6 | "babel-plugin-transform-flow-enums" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/font/rubik_medium_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/font/rubik_medium_italic.ttf -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /tools/eslint/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@react-native/eslint", 3 | "private": true, 4 | "version": "0.0.0", 5 | "dependencies": { 6 | "jsonc-eslint-parser": "^2.3.0" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/minus_icon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/nodeIcon.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/nodeIcon.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/whatsnew.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/whatsnew.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestClientMetadataHttpNotFound.md: -------------------------------------------------------------------------------- 1 | # The provider's client metadata endpoint cannot be found. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestManifestHttpNotFound.md: -------------------------------------------------------------------------------- 1 | # The provider's FedCM manifest configuration cannot be found. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/stylesheetRequestFailed.md: -------------------------------------------------------------------------------- 1 | # Verify stylesheet URLs 2 | 3 | This page failed to load a stylesheet from a URL. 4 | -------------------------------------------------------------------------------- /packages/hermes-inspector-msggen/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ "@babel/preset-flow", ["@babel/preset-env", { 3 | "targets": { 4 | "node": "current" 5 | } 6 | }] 7 | ], 8 | } 9 | -------------------------------------------------------------------------------- /packages/react-native/Libraries/LogBox/UI/LogBoxImages/alert-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/Libraries/LogBox/UI/LogBoxImages/alert-triangle.png -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/en-GB.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/en-GB.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/es-ES.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/es-ES.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/pt-PT.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/pt-PT.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/drawable/ic_menu_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/drawable/ic_menu_black_24dp.png -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/chromeLeft.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/chromeLeft.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/chromeRight.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/chromeRight.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/touchCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/touchCursor.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/triangle-bottom-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/triangle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/triangle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestAccountsNoResponse.md: -------------------------------------------------------------------------------- 1 | # The response body is empty when fetching the provider's accounts list. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestTooManyRequests.md: -------------------------------------------------------------------------------- 1 | # Only one navigator.credentials.get request may be outstanding at one time. 2 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/zh-Hans.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/zh-Hans.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/zh-Hant.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/zh-Hant.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/drawable/ic_create_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/drawable/ic_create_black_48dp.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/arrow-drop-down-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/arrow-drop-down-light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/chromeMiddle.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/chromeMiddle.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/popoverArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/popoverArrows.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/touchCursor_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/touchCursor_2x.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestInvalidAccountsResponse.md: -------------------------------------------------------------------------------- 1 | # getUserInfo() failed because of an invalid accounts response. 2 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/zh-Hant-HK.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/React/I18n/strings/zh-Hant-HK.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/hermes/inspector-modern/docs/InspectorFSM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/ReactCommon/hermes/inspector-modern/docs/InspectorFSM.pdf -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/assets/fonts/notoserif_bold_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/assets/fonts/notoserif_bold_italic.ttf -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/drawable/ic_settings_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/drawable/ic_settings_black_48dp.png -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/accelerometer-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/accelerometer-top.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/triangle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestClientMetadataNoResponse.md: -------------------------------------------------------------------------------- 1 | # The response body is empty when fetching the provider's client metadata. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotSignedInWithIdp.md: -------------------------------------------------------------------------------- 1 | # getUserInfo() is disabled because the IDP Sign-In Status is signed-out. 2 | -------------------------------------------------------------------------------- /packages/react-native/template/_prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | arrowParens: 'avoid', 3 | bracketSameLine: true, 4 | bracketSpacing: false, 5 | singleQuote: true, 6 | trailingComma: 'all', 7 | }; 8 | -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ✋ To keep the backlog clean and actionable, issues will be 2 | 🚫 closed if they do not follow one of the issue templates: 3 | 👉 https://github.com/facebook/react-native/issues/new/choose 4 | 5 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/accelerometer-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/accelerometer-bottom.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/accelerometer-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/accelerometer-left.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/accelerometer-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/accelerometer-right.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/align-self-end.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/align-self-start.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/navigationControls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/navigationControls.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthRequestManifestNoResponse.md: -------------------------------------------------------------------------------- 1 | # The response body is empty when fetching the provider's FedCM manifest configuration. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/third_party/diff/diff-legacy.js: -------------------------------------------------------------------------------- 1 | import*as f from"./diff.js";self.Diff=self.Diff||{},Diff=Diff||{},Diff.Diff=f.Diff.DiffWrapper,Diff.Diff.Operation=f.Diff.Operation; 2 | -------------------------------------------------------------------------------- /packages/react-native/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/react-native/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/react-native/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/react-native/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/iTunesArtwork@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/iTunesArtwork@1x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/tabnav_list.imageset/tabnav_list@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/Images.xcassets/tabnav_list.imageset/tabnav_list@3x.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/colon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/cssoverview_icons_2x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/cssoverview_icons_2x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/exclamation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/navigationControls_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/navigationControls_2x.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/toolbarResizerVertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/toolbarResizerVertical.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestInvalidConfigOrWellKnown.md: -------------------------------------------------------------------------------- 1 | # getUserInfo() failed because the config and well-known files were invalid. 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotPotentiallyTrustworthy.md: -------------------------------------------------------------------------------- 1 | # getUserInfo() failed because the config URL is not potentially trustworthy. 2 | -------------------------------------------------------------------------------- /packages/react-native/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/large-arrow-right-filled.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/react_native/welcomeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/Images/react_native/welcomeIcon.png -------------------------------------------------------------------------------- /packages/react-native-codegen/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "arrowParens": "avoid", 3 | "bracketSameLine": true, 4 | "bracketSpacing": false, 5 | "requirePragma": true, 6 | "singleQuote": true, 7 | "trailingComma": "all" 8 | } 9 | -------------------------------------------------------------------------------- /packages/react-native/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/react-native/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/react-native/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/align-items-end.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/align-items-start.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/chevron-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/chevron-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/chevron-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/justify-content-end.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNoReturningUserFromFetchedAccounts.md: -------------------------------------------------------------------------------- 1 | # getUserInfo() failed because no account received was a returning account. 2 | -------------------------------------------------------------------------------- /packages/react-native/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/react-native/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/react-native/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/tabnav_settings.imageset/tabnav_settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/Images.xcassets/tabnav_settings.imageset/tabnav_settings@3x.png -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RNTester App 3 | com.facebook.react.uiapp.blobs 4 | 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version 4 | ruby ">= 2.6.10" 5 | 6 | gem 'cocoapods', '~> 1.12' 7 | gem 'activesupport', '>= 6.1.7.3', '< 7.1.0' 8 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/align-self-center.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/NavBarButtonPlus.imageset/NavBarButtonPlus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/Images.xcassets/NavBarButtonPlus.imageset/NavBarButtonPlus@3x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/story-background.imageset/story-background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/Images.xcassets/story-background.imageset/story-background@2x.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/align-self-stretch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/resume.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/align-content-space-between.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/align-content-stretch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPad-landscape.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPad-landscape.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPad-portrait.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPad-portrait.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNoAccountSharingPermission.md: -------------------------------------------------------------------------------- 1 | # getUserInfo() failed because the user has not yet used FedCM on this site with the provided IDP. 2 | -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/tabnav_notification.imageset/tabnav_notification@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/Images.xcassets/tabnav_notification.imageset/tabnav_notification@3x.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/checkmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/justify-content-space-between.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/MotoG4-landscape.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/MotoG4-landscape.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/MotoG4-portrait.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/MotoG4-portrait.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/Nexus5X-portrait.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/Nexus5X-portrait.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/Nexus6P-portrait.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/Nexus6P-portrait.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPhone5-portrait.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPhone5-portrait.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPhone6-portrait.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPhone6-portrait.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/align-items-stretch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/Nexus5X-landscape.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/Nexus5X-landscape.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/Nexus6P-landscape.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/Nexus6P-landscape.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPhone5-landscape.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPhone5-landscape.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPhone6-landscape.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPhone6-landscape.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/justify-content-space-around.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/justify-content-space-evenly.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/justify-items-end.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/justify-items-start.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/resizeVertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPhone6Plus-landscape.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPhone6Plus-landscape.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPhone6Plus-portrait.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPhone6Plus-portrait.avif -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/react/runtime/README.md: -------------------------------------------------------------------------------- 1 | # Bridgeless Mode for iOS 2 | 3 | This library is not ready for integration for production nor local experimentation. Expect breaking changes regularly if you use any of these APIs. Use at your own risk! 4 | -------------------------------------------------------------------------------- /packages/react-native/template/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/RNTesterBundle/OtherImages.xcassets/ImageInAssetCatalog.imageset/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTester/RNTesterBundle/OtherImages.xcassets/ImageInAssetCatalog.imageset/react-logo.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/justify-items-stretch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/layers-filled.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/resizeHorizontal.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native/template/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version 4 | ruby ">= 2.6.10" 5 | 6 | gem 'cocoapods', '~> 1.13' 7 | gem 'activesupport', '>= 6.1.7.3', '< 7.1.0' 8 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nest-hub-horizontal.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nest-hub-horizontal.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/entrypoints/formatter_worker/FormatterActions.js: -------------------------------------------------------------------------------- 1 | const t=["application/javascript","application/json","application/manifest+json","text/css","text/html","text/javascript","text/x-scss"];export{t as FORMATTABLE_MEDIA_TYPES}; 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nest-hub-max-horizontal.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nest-hub-max-horizontal.avif -------------------------------------------------------------------------------- /packages/rn-tester/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/chevron-left-dot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/width.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-vertical-default-1x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-vertical-default-1x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-vertical-default-2x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-vertical-default-2x.avif -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testLayoutExample_1-iOS12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testLayoutExample_1-iOS12@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testLayoutExample_1-iOS13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testLayoutExample_1-iOS13@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testSliderExample_1-iOS12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testSliderExample_1-iOS12@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testSwitchExample_1-iOS12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testSwitchExample_1-iOS12@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testSwitchExample_1-iOS13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testSwitchExample_1-iOS13@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testTextExample_1-iOS12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testTextExample_1-iOS12@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testTextExample_1-iOS13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testTextExample_1-iOS13@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testViewExample_1-iOS12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testViewExample_1-iOS12@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testViewExample_1-iOS13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testViewExample_1-iOS13@2x.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/chevron-double-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/cross.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-horizontal-default-1x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-horizontal-default-1x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-horizontal-default-2x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-horizontal-default-2x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-vertical-keyboard-1x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-vertical-keyboard-1x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-vertical-keyboard-2x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-vertical-keyboard-2x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-vertical-default-1x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-vertical-default-1x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-vertical-default-2x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-vertical-default-2x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-1x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-1x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-2x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-2x.avif -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/java/com/facebook/react/runtime/README.md: -------------------------------------------------------------------------------- 1 | # Bridgeless Mode for Android 2 | 3 | This library is not ready for integration for production nor local experimentation. Expect breaking changes regularly if you use any of these APIs. Use at your own risk! 4 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/align-content-end.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/align-content-start.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/justify-content-start.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-1x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-1x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-2x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-2x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-horizontal-navigation-1x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-horizontal-navigation-1x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-horizontal-navigation-2x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-horizontal-navigation-2x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-vertical-navigation-1x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-vertical-navigation-1x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-vertical-navigation-2x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-vertical-navigation-2x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-default-1x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-default-1x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-default-2x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-default-2x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-1x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-1x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-2x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-2x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-vertical-navigation-1x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-vertical-navigation-1x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-vertical-navigation-2x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-vertical-navigation-2x.avif -------------------------------------------------------------------------------- /packages/react-native/template/ios/HelloWorld/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char *argv[]) 6 | { 7 | @autoreleasepool { 8 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testScrollViewExample_1-iOS12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testScrollViewExample_1-iOS12@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testScrollViewExample_1-iOS13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testScrollViewExample_1-iOS13@2x.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/align-content-center.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/align-items-center.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/justify-content-center.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/warning-filled.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-1x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-1x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-2x.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-2x.avif -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #eecc0000 4 | #ffffffff 5 | 6 | -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/IntegrationTests-IntegrationTestsApp/testImageSnapshotTest_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/IntegrationTests-IntegrationTestsApp/testImageSnapshotTest_1@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/IntegrationTests-IntegrationTestsApp/testImageSnapshotTest_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/IntegrationTests-IntegrationTestsApp/testImageSnapshotTest_1@3x.png -------------------------------------------------------------------------------- /packages/typescript-config/README.md: -------------------------------------------------------------------------------- 1 | # @react-native/typescript-config 2 | 3 | This package provides the default `tsconfig.json` used by newly built React Native apps. 4 | 5 | This template is customized for specific versions of React Native, and should be updated in sync with the rest of your app. 6 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/layers.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/react/renderer/core/RawValue.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #include "RawValue.h" 9 | -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/IntegrationTests-IntegrationTestsApp/testSimpleSnapshotTest_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/IntegrationTests-IntegrationTestsApp/testSimpleSnapshotTest_1@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/IntegrationTests-IntegrationTestsApp/testSimpleSnapshotTest_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/IntegrationTests-IntegrationTestsApp/testSimpleSnapshotTest_1@3x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/packages-rn-tester-js-RNTesterApp.ios/testLayoutExample_1-iOS16@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/packages-rn-tester-js-RNTesterApp.ios/testLayoutExample_1-iOS16@3x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/packages-rn-tester-js-RNTesterApp.ios/testSwitchExample_1-iOS16@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/packages-rn-tester-js-RNTesterApp.ios/testSwitchExample_1-iOS16@3x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/packages-rn-tester-js-RNTesterApp.ios/testTextExample_1-iOS16@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/packages-rn-tester-js-RNTesterApp.ios/testTextExample_1-iOS16@3x.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/packages-rn-tester-js-RNTesterApp.ios/testViewExample_1-iOS16@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/react-native/HEAD/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/packages-rn-tester-js-RNTesterApp.ios/testViewExample_1-iOS16@3x.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip 4 | networkTimeout=10000 5 | validateDistributionUrl=true 6 | zipStoreBase=GRADLE_USER_HOME 7 | zipStorePath=wrapper/dists 8 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/entrypoints/device_mode_emulation_frame/device_mode_emulation_frame.js: -------------------------------------------------------------------------------- 1 | import"../../core/dom_extension/dom_extension.js";import"../../Images/Images.js";if(window.opener){window.opener.Emulation.AdvancedApp.instance().deviceModeEmulationFrameLoaded(document)} 2 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/react/renderer/core/StateUpdate.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #include "StateUpdate.h" 9 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/clientHintMetaTagAllowListInvalidOrigin.md: -------------------------------------------------------------------------------- 1 | # Client Hint meta tag contained invalid origin 2 | 3 | Items in the delegate-ch meta tag allow list must be valid origins. 4 | No special values (e.g. self, none, and *) are permitted. 5 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/cookieExcludeBlockedWithinFirstPartySet.md: -------------------------------------------------------------------------------- 1 | # Third-party cookie blocked within the same First-Party Set 2 | 3 | A cookie embedded by a site in the top-level page's First-Party Set was blocked 4 | by third-party cookie blocking. 5 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/ui/legacy/components/cookie_table/cookie_table-legacy.js: -------------------------------------------------------------------------------- 1 | import*as e from"./cookie_table.js";self.CookieTable=self.CookieTable||{},CookieTable=CookieTable||{},CookieTable.CookiesTable=e.CookiesTable.CookiesTable,CookieTable.DataGridNode=e.CookiesTable.DataGridNode; 2 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-as/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-az/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-be/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-ca/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-de/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-hy/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-is/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-kk/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-ku/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-ky/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-lo/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-mn/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-ne/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-ps/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-qz/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-sn/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-so/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-tg/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-tk/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-uz/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-wo/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-zu/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/systeminfo/values/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8081 4 | @integer/react_native_dev_server_port 5 | 6 | -------------------------------------------------------------------------------- /flow-typed/npm/base64-js_v1.x.x.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @flow strict 3 | * @format 4 | */ 5 | 6 | declare module 'base64-js' { 7 | declare module.exports: { 8 | byteLength: string => number, 9 | fromByteArray: (Uint8Array | Array) => string, 10 | toByteArray: string => Uint8Array, 11 | }; 12 | } 13 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/align-content-space-around.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/align-content-space-evenly.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/arrow-up-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/fold-more.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/clientHintMetaTagModifiedHTML.md: -------------------------------------------------------------------------------- 1 | # Client Hint meta tag modified by javascript 2 | 3 | Only delegate-ch meta tags in the original HTML sent from the server 4 | are respected. Any injected via javascript (or other means) are ignored. 5 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/views/uimanager/values-ca/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/views/uimanager/values-is/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/views/uimanager/values-qz/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/views/uimanager/values-sn/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/views/uimanager/values-tk/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/views/uimanager/values-wo/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/views/uimanager/values-zu/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/template/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'HelloWorld' 2 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 3 | include ':app' 4 | includeBuild('../node_modules/@react-native/gradle-plugin') 5 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/justify-items-center.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-codegen/lib/CodegenSchema.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | * 7 | * 8 | * @format 9 | */ 10 | 11 | 'use strict'; 12 | -------------------------------------------------------------------------------- /packages/react-native-codegen/lib/parsers/parser.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | * 7 | * 8 | * @format 9 | */ 10 | 11 | 'use strict'; 12 | -------------------------------------------------------------------------------- /packages/react-native/scripts/native_modules.rb: -------------------------------------------------------------------------------- 1 | # Copyright (c) Meta Platforms, Inc. and affiliates. 2 | # 3 | # This source code is licensed under the MIT license found in the 4 | # LICENSE file in the root directory of this source tree. 5 | 6 | require_relative '../../@react-native-community/cli-platform-ios/native_modules' 7 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/record-stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/entrypoints/wasmparser_worker/wasmparser_worker-entrypoint.js: -------------------------------------------------------------------------------- 1 | import*as s from"./wasmparser_worker.js";self.onmessage=e=>{"disassemble"===e.data.method&&self.postMessage(s.WasmParserWorker.dissambleWASM(e.data.params,(s=>{self.postMessage(s)})))},self.postMessage("workerReady"); 2 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/react/renderer/mounting/ShadowTreeRevision.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #include "ShadowTreeRevision.h" 9 | -------------------------------------------------------------------------------- /packages/virtualized-lists/index.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | * 7 | * @format 8 | */ 9 | 10 | export * from './Lists/VirtualizedList'; 11 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/checker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-codegen/src/__tests__/__snapshots__/SchemaValidator-test.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`SchemaValidator fails on components across modules with same name 1`] = ` 4 | Array [ 5 | "Duplicate components found with name Component1. Found in modules Module1, Module2", 6 | ] 7 | `; 8 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/record-start.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/hermes/inspector-modern/docs/GenerateInspectorFSM.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Copyright (c) Meta Platforms, Inc. and affiliates. 3 | # 4 | # This source code is licensed under the MIT license found in the 5 | # LICENSE file in the root directory of this source tree. 6 | 7 | dot -Tpdf InspectorFSM.gv -o InspectorFSM.pdf 8 | -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterPods.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterPods.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/refresh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-gradle-plugin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip 4 | networkTimeout=10000 5 | validateDistributionUrl=true 6 | zipStoreBase=GRADLE_USER_HOME 7 | zipStorePath=wrapper/dists 8 | -------------------------------------------------------------------------------- /packages/react-native/React/Fabric/RCTPrimitives.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | typedef NSInteger ReactTag; 11 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/react/renderer/element/Element.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #include "Element.h" 9 | 10 | // Intentionally empty. 11 | -------------------------------------------------------------------------------- /packages/react-native/template/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip 4 | networkTimeout=10000 5 | validateDistributionUrl=true 6 | zipStoreBase=GRADLE_USER_HOME 7 | zipStorePath=wrapper/dists 8 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/custom-typography.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/dev-middleware/index.js.flow: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | * 7 | * @flow 8 | * @format 9 | * @oncall react_native 10 | */ 11 | 12 | export * from './src'; 13 | -------------------------------------------------------------------------------- /packages/react-native/React/Base/RCTCxxConvert.m: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "RCTCxxConvert.h" 9 | 10 | @implementation RCTCxxConvert 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /packages/react-native/types/private/Utilities.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | * 7 | * @format 8 | */ 9 | 10 | export type Constructor = new (...args: any[]) => T; 11 | -------------------------------------------------------------------------------- /flow-typed/npm/ansi-regex_v5.x.x.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @flow strict 3 | * @format 4 | */ 5 | 6 | declare module 'ansi-regex' { 7 | declare export type Options = { 8 | /** 9 | * Match only the first ANSI escape. 10 | */ 11 | +onlyFirst?: boolean, 12 | }; 13 | declare export default function ansiRegex(options?: Options): RegExp; 14 | } 15 | -------------------------------------------------------------------------------- /packages/community-cli-plugin/index.js.flow: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | * 7 | * @flow 8 | * @format 9 | * @oncall react_native 10 | */ 11 | 12 | export * from './src'; 13 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/clear.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.circleci/README.md: -------------------------------------------------------------------------------- 1 | # Circle CI 2 | 3 | This directory is home to the Circle CI configuration file. Circle is our continuous integration service provider. You can see the overall status of React Native's builds at https://circleci.com/gh/facebook/react-native 4 | 5 | You may also see an individual PR's build status by scrolling down to the Checks section in the PR. 6 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/bin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/core/root/root-legacy.js: -------------------------------------------------------------------------------- 1 | import*as t from"./root.js";self.Root=self.Root||{},Root=Root||{},Root.Runtime=t.Runtime.Runtime,Root.Runtime.experiments=t.Runtime.experiments,Root.Runtime.queryParam=t.Runtime.Runtime.queryParam,Root.runtime,Root.Runtime.Extension=t.Runtime.Extension,Root.Runtime.Module=t.Runtime.Module; 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/genericFormAutocompleteAttributeEmptyError.md: -------------------------------------------------------------------------------- 1 | # Incorrect use of autocomplete attribute 2 | 3 | A form field's `autocomplete` attribute is empty. This might prevent the browser from correctly autofilling the form. 4 | 5 | To fix this issue, provide a valid `autocomplete` value. 6 | -------------------------------------------------------------------------------- /packages/normalize-color/index.js.flow: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | * 7 | * @flow strict 8 | */ 9 | 10 | declare module.exports: (color: ?(string | number)) => null | number; 11 | -------------------------------------------------------------------------------- /packages/react-native/ReactCommon/react/renderer/element/ElementFragment.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #include "ElementFragment.h" 9 | 10 | // Intentionally empty. 11 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/errorWave.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/entrypoints/heap_snapshot_worker/heap_snapshot_worker-entrypoint.js: -------------------------------------------------------------------------------- 1 | import*as e from"./heap_snapshot_worker.js";const s=self,a=new e.HeapSnapshotWorkerDispatcher.HeapSnapshotWorkerDispatcher(s,(e=>self.postMessage(e)));var r;r=a.dispatchMessage.bind(a),s.addEventListener("message",r,!1),self.postMessage("workerReady"); 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/genericFormLabelHasNeitherForNorNestedInput.md: -------------------------------------------------------------------------------- 1 | # No label associated with a form field 2 | 3 | A `