├── packages ├── react-native-bots │ └── .babelrc ├── core-cli-utils │ ├── .gitignore │ └── .eslintrc.json ├── react-native │ ├── src │ │ ├── .npmignore │ │ └── private │ │ │ └── fusebox │ │ │ ├── .npmignore │ │ │ └── assets │ │ │ ├── backend-to-frontend.excalidraw-embedded.png │ │ │ └── frontend-to-backend.excalidraw-embedded.png │ ├── 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 │ │ ├── metro.config.js │ │ └── Gemfile │ ├── Libraries │ │ ├── .npmignore │ │ ├── ReactPrivate │ │ │ ├── README │ │ │ └── ReactNativePrivateInitializeCore.js │ │ ├── Image │ │ │ ├── __tests__ │ │ │ │ └── img │ │ │ │ │ ├── img1.png │ │ │ │ │ └── img2.png │ │ │ ├── RCTImageShadowView.h │ │ │ └── RCTImageViewManager.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 │ │ ├── Text │ │ │ └── VirtualText │ │ │ │ └── RCTVirtualTextView.mm │ │ └── Vibration │ │ │ └── RCTVibration.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 │ │ ├── CoreModules │ │ │ ├── RCTAppState.h │ │ │ ├── RCTClipboard.h │ │ │ └── RCTKeyboardObserver.h │ │ └── Views │ │ │ ├── RCTSwitchManager.h │ │ │ └── RCTActivityIndicatorView.h │ ├── ReactAndroid │ │ ├── hermes-engine │ │ │ ├── gradle.properties │ │ │ └── .npmignore │ │ ├── src │ │ │ ├── test │ │ │ │ └── resources │ │ │ │ │ ├── mockito-extensions │ │ │ │ │ └── org.mockito.plugins.MockMaker │ │ │ │ │ └── robolectric.properties │ │ │ └── main │ │ │ │ ├── jni │ │ │ │ ├── prebuilt │ │ │ │ │ └── lib │ │ │ │ │ │ └── DUMMY │ │ │ │ └── first-party │ │ │ │ │ └── fb │ │ │ │ │ └── include │ │ │ │ │ └── fb │ │ │ │ │ └── visibility.h │ │ │ │ ├── res │ │ │ │ ├── devsupport │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ └── ic_resume.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ └── ic_resume.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ └── ic_resume.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ │ └── ic_resume.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ │ └── ic_resume.png │ │ │ │ │ ├── values │ │ │ │ │ │ └── colors.xml │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-az │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-be │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-bn │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-gu │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-hy │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-is │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ka │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-kk │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-km │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-kn │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ky │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-lo │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mk │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ml │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mn │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mr │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ms │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-my │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ne │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-pa │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-si │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-sq │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ta │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-te │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ur │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-es-rES │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── strings.xml │ │ │ │ │ └── values-zh-rTW │ │ │ │ │ │ └── strings.xml │ │ │ │ ├── systeminfo │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── views │ │ │ │ │ ├── uimanager │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-is │ │ │ │ │ │ └── strings.xml │ │ │ │ │ └── values-zu │ │ │ │ │ │ └── strings.xml │ │ │ │ │ └── modal │ │ │ │ │ └── anim │ │ │ │ │ ├── catalyst_slide_down.xml │ │ │ │ │ └── catalyst_slide_up.xml │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── facebook │ │ │ │ └── react │ │ │ │ └── runtime │ │ │ │ └── README.md │ │ ├── external-artifacts │ │ │ └── .npmignore │ │ └── .npmignore │ ├── scripts │ │ ├── .npmignore │ │ └── featureflags │ │ │ └── assets │ │ │ └── react-native-feature-flags-architecture.excalidraw-embedded.png │ ├── ReactApple │ │ ├── Libraries │ │ │ └── RCTFoundation │ │ │ │ └── RCTDeprecation │ │ │ │ ├── README.md │ │ │ │ └── RCTDeprecation.m │ │ └── README.md │ └── ReactCommon │ │ ├── react │ │ ├── runtime │ │ │ └── README.md │ │ └── renderer │ │ │ ├── core │ │ │ ├── RawValue.cpp │ │ │ └── StateUpdate.cpp │ │ │ ├── mounting │ │ │ └── ShadowTreeRevision.cpp │ │ │ └── element │ │ │ ├── Element.cpp │ │ │ └── ElementFragment.cpp │ │ └── yoga │ │ └── cmake │ │ └── yoga-config.cmake.in ├── virtualized-lists │ ├── .npmignore │ └── index.d.ts ├── rn-tester │ ├── .gitignore │ ├── .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 │ │ │ ├── hotdog.jpg │ │ │ ├── liking.png │ │ │ ├── party.png │ │ │ ├── trees.jpg │ │ │ ├── victory.png │ │ │ ├── bandaged.png │ │ │ ├── imageMask.png │ │ │ ├── relay@3x.png │ │ │ ├── superlike.png │ │ │ ├── search-icon.png │ │ │ ├── documentation.png │ │ │ ├── uie_thumb_big.png │ │ │ ├── header-back-button.png │ │ │ ├── uie_thumb_normal@2x.png │ │ │ ├── uie_comment_normal@2x.png │ │ │ ├── uie_thumb_selected@2x.png │ │ │ ├── bottom-nav-apis-icon-dark.png │ │ │ ├── bottom-nav-apis-icon-light.png │ │ │ ├── uie_comment_highlighted@2x.png │ │ │ ├── bottom-nav-components-icon-dark.png │ │ │ ├── bottom-nav-components-icon-light.png │ │ │ └── tumblr_mfqekpMktw1rn90umo1_500.gif │ │ └── examples │ │ │ └── Accessibility │ │ │ ├── check.png │ │ │ ├── mixed.png │ │ │ └── uncheck.png │ ├── 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 │ │ │ └── IntegrationTests-IntegrationTestsApp │ │ │ ├── testImageSnapshotTest_1@2x.png │ │ │ ├── testImageSnapshotTest_1@3x.png │ │ │ ├── testSimpleSnapshotTest_1@2x.png │ │ │ └── testSimpleSnapshotTest_1@3x.png │ ├── 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 ├── assets │ └── .npmignore ├── polyfills │ └── .npmignore ├── rn-tester-e2e │ └── apps │ │ └── README.md ├── dev-middleware │ ├── src │ │ └── __tests__ │ │ │ ├── __fixtures__ │ │ │ └── mock-source-file.txt │ │ │ └── __snapshots__ │ │ │ └── InspectorProxyHttpApi-test.js.snap │ ├── .gitignore │ └── index.js.flow ├── 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 │ │ │ │ └── recorder-actions.js │ │ ├── application │ │ │ └── preloading │ │ │ │ └── helper │ │ │ │ └── helper.js │ │ └── console_counters │ │ │ └── console_counters-meta.js │ │ ├── Images │ │ ├── empty.svg │ │ ├── triangle-left.svg │ │ ├── favicon.ico │ │ ├── minus.svg │ │ ├── nodeIcon.avif │ │ ├── whatsnew.avif │ │ ├── chromeLeft.avif │ │ ├── chromeRight.avif │ │ ├── small-status-dot.svg │ │ ├── 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 │ │ ├── goto-filled.svg │ │ ├── send.svg │ │ ├── justify-content-space-around.svg │ │ ├── justify-content-space-evenly.svg │ │ ├── justify-items-end.svg │ │ ├── justify-items-start.svg │ │ ├── resizeVertical.svg │ │ ├── arrow-back.svg │ │ ├── arrow-forward.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 │ │ ├── file-fetch-xhr.svg │ │ └── breakpoint-crossed-filled.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 │ │ │ ├── propertyRuleInvalidNameIssue.md │ │ │ ├── federatedAuthUserInfoRequestNoReturningUserFromFetchedAccounts.md │ │ │ ├── federatedAuthUserInfoRequestNoAccountSharingPermission.md │ │ │ ├── genericResponseWasBlockedByORB.md │ │ │ ├── propertyRuleIssue.md │ │ │ ├── clientHintMetaTagAllowListInvalidOrigin.md │ │ │ ├── clientHintMetaTagModifiedHTML.md │ │ │ ├── cookieExcludeBlockedWithinRelatedWebsiteSet.md │ │ │ ├── genericFormAutocompleteAttributeEmptyError.md │ │ │ ├── genericFormLabelHasNeitherForNorNestedInput.md │ │ │ ├── arInvalidRegisterSourceHeader.md │ │ │ ├── arInvalidRegisterTriggerHeader.md │ │ │ ├── arInvalidRegisterOsSourceHeader.md │ │ │ ├── arInvalidRegisterOsTriggerHeader.md │ │ │ └── stylesheetLateImport.md │ │ ├── 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 │ │ └── 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 ├── helloworld │ ├── .bundle │ │ └── config │ ├── android │ │ ├── app │ │ │ ├── debug.keystore │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── res │ │ │ │ ├── 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 │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ └── gradle │ │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── ios │ │ └── HelloWorld │ │ │ ├── Images.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.h │ ├── Gemfile │ ├── README.md │ ├── jest.config.js │ └── babel.config.js ├── metro-config │ └── .gitignore ├── community-cli-plugin │ ├── .gitignore │ └── index.js.flow ├── react-native-babel-preset │ └── .npmignore ├── react-native-babel-transformer │ └── .npmignore ├── react-native-codegen │ ├── .prettierrc │ └── src │ │ ├── __tests__ │ │ └── __snapshots__ │ │ │ └── SchemaValidator-test.js.snap │ │ └── parsers │ │ └── errors.d.ts ├── react-native-test-library │ ├── android │ │ └── gradle.properties │ └── README.md ├── react-native-popup-menu-android │ └── android │ │ └── gradle.properties ├── typescript-config │ └── README.md └── eslint-plugin-react-native │ └── index.js ├── .bundle └── config ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── scripts ├── releases │ └── set-version │ │ └── __tests__ │ │ └── __fixtures__ │ │ ├── packages │ │ ├── react-native │ │ │ └── ReactAndroid │ │ │ │ └── gradle.properties │ │ ├── monorepo-pkg-c │ │ │ └── package.json │ │ ├── monorepo-pkg-b │ │ │ └── package.json │ │ └── monorepo-pkg-a │ │ │ └── package.json │ │ └── package.json └── releases-local │ └── README.md ├── .babelrc ├── tools └── eslint │ ├── package.json │ └── README.md ├── .prettierignore ├── .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 └── .circleci └── configurations └── test_workflows └── testE2E.yml /packages/react-native-bots/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /packages/core-cli-utils/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /packages/react-native/src/.npmignore: -------------------------------------------------------------------------------- 1 | __tests__ 2 | -------------------------------------------------------------------------------- /packages/react-native/template/_watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /packages/virtualized-lists/.npmignore: -------------------------------------------------------------------------------- 1 | __tests__ 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/react-native/src/private/fusebox/.npmignore: -------------------------------------------------------------------------------- 1 | assets 2 | -------------------------------------------------------------------------------- /packages/rn-tester/.gitignore: -------------------------------------------------------------------------------- 1 | rn-tester.xcodeproj.local/ 2 | -------------------------------------------------------------------------------- /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/dev-middleware/src/__tests__/__fixtures__/mock-source-file.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /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/react-native/React/I18n/.clang-format-ignore: -------------------------------------------------------------------------------- 1 | # Synced externally 2 | FBXXHashUtils.h 3 | -------------------------------------------------------------------------------- /packages/helloworld/.bundle/config: -------------------------------------------------------------------------------- 1 | BUNDLE_PATH: "vendor/bundle" 2 | BUNDLE_FORCE_RUBY_PLATFORM: 1 3 | -------------------------------------------------------------------------------- /packages/metro-config/.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | /node_modules 3 | 4 | # Build output 5 | /dist 6 | -------------------------------------------------------------------------------- /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/debugger-frontend/dist/third-party/front_end/panels/recorder/recorder-actions/recorder-actions.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /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/sync/react-native/main/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/sync/react-native/main/packages/rn-tester/js/assets/call.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/fist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/fist.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/hawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/hawk.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/like.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/poke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/packages/rn-tester/js/assets/bunny.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/dislike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/dislike.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/empty.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/flowers.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/flux@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/flux@3x.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/heart.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/hotdog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/hotdog.jpg -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/liking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/liking.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/party.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/trees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/trees.jpg -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/victory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/victory.png -------------------------------------------------------------------------------- /scripts/releases/set-version/__tests__/__fixtures__/packages/react-native/ReactAndroid/gradle.properties: -------------------------------------------------------------------------------- 1 | VERSION_NAME=1000.0.0 2 | -------------------------------------------------------------------------------- /packages/react-native-babel-preset/.npmignore: -------------------------------------------------------------------------------- 1 | **/__mocks__/ 2 | **/__tests__/ 3 | /build/ 4 | /src.real/ 5 | /types/ 6 | yarn.lock 7 | -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bandaged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/bandaged.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/imageMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/imageMask.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/relay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/relay@3x.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/superlike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/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/sync/react-native/main/packages/rn-tester/js/assets/search-icon.png -------------------------------------------------------------------------------- /packages/core-cli-utils/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "ignorePatterns": ["dist/**"], 3 | "rules": { 4 | "sort-keys": 2 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/helloworld/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/helloworld/android/app/debug.keystore -------------------------------------------------------------------------------- /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/rn-tester/RNTester/legacy_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/RNTester/legacy_image@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/documentation.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/uie_thumb_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/uie_thumb_big.png -------------------------------------------------------------------------------- /packages/helloworld/ios/HelloWorld/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /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/rn-tester/IntegrationTests/red_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/IntegrationTests/red_square.png -------------------------------------------------------------------------------- /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/rn-tester/IntegrationTests/blue_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/IntegrationTests/blue_square.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/header-back-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/header-back-button.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/uie_thumb_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/ReactApple/Libraries/RCTFoundation/RCTDeprecation/README.md: -------------------------------------------------------------------------------- 1 | RCTDeprecation contains C macros to identify deprecated APIs at build-time. 2 | -------------------------------------------------------------------------------- /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/uie_comment_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/uie_comment_normal@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/uie_thumb_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/uie_thumb_selected@2x.png -------------------------------------------------------------------------------- /packages/rn-tester/js/examples/Accessibility/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/examples/Accessibility/check.png -------------------------------------------------------------------------------- /packages/rn-tester/js/examples/Accessibility/mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/packages/react-native/template/android/app/debug.keystore -------------------------------------------------------------------------------- /packages/rn-tester/js/examples/Accessibility/uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/packages/react-native/Libraries/Image/__tests__/img/img1.png -------------------------------------------------------------------------------- /packages/react-native/Libraries/Image/__tests__/img/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/packages/rn-tester/RNTester/RNTesterBundle/ImageInBundle.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/blue_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/RNTesterIntegrationTests/blue_square.png -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/red_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/RNTesterIntegrationTests/red_square.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bottom-nav-apis-icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/bottom-nav-apis-icon-dark.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bottom-nav-apis-icon-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/bottom-nav-apis-icon-light.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/uie_comment_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/helloworld/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/helloworld/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.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/helloworld/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | ruby ">= 2.6.10" 4 | 5 | gem 'cocoapods', '>= 1.13', '< 1.15' 6 | gem 'activesupport', '>= 6.1.7.5', '< 7.1.0' 7 | -------------------------------------------------------------------------------- /packages/react-native/Libraries/LogBox/UI/LogBoxImages/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/react-native/Libraries/LogBox/UI/LogBoxImages/close.png -------------------------------------------------------------------------------- /packages/react-native/Libraries/LogBox/UI/LogBoxImages/loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/react-native/Libraries/LogBox/UI/LogBoxImages/loader.png -------------------------------------------------------------------------------- /packages/react-native/Libraries/NewAppScreen/components/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/react-native/Libraries/NewAppScreen/components/logo.png -------------------------------------------------------------------------------- /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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/packages/rn-tester/android/app/src/main/res/font/rubik_medium.ttf -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bottom-nav-components-icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/bottom-nav-components-icon-dark.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/bottom-nav-components-icon-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/rn-tester/js/assets/bottom-nav-components-icon-light.png -------------------------------------------------------------------------------- /packages/rn-tester/js/assets/tumblr_mfqekpMktw1rn90umo1_500.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/rn-tester/android/app/src/main/assets/fonts/notoserif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/packages/rn-tester/android/app/src/main/res/font/rubik_regular.ttf -------------------------------------------------------------------------------- /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/sync/react-native/main/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/sync/react-native/main/packages/rn-tester/android/app/src/main/res/drawable/legacy_image.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/helloworld/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/helloworld/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/helloworld/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/helloworld/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/react-native/Libraries/LogBox/UI/LogBoxImages/chevron-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/react-native/Libraries/LogBox/UI/LogBoxImages/chevron-left.png -------------------------------------------------------------------------------- /packages/react-native/Libraries/LogBox/UI/LogBoxImages/chevron-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/nodeIcon.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/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/helloworld/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/helloworld/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/helloworld/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/helloworld/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/helloworld/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/helloworld/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/packages/rn-tester/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /.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 | 8 | packages/*/dist 9 | vendor 10 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/chromeLeft.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/packages/debugger-frontend/dist/third-party/front_end/Images/chromeRight.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/small-status-dot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/touchCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/helloworld/README.md: -------------------------------------------------------------------------------- 1 | # Hello World Test Application 2 | 3 | This is the [**React Native**](https://reactnative.dev) HelloWorld test app. It is for internal use and shouldn't be dependend on. 4 | -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/zh-Hans.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/helloworld/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/helloworld/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/helloworld/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/helloworld/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/helloworld/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/helloworld/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/helloworld/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/helloworld/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/react-native/React/I18n/strings/zh-Hant-HK.lproj/fbt_language_pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/react-native/React/I18n/strings/zh-Hant-HK.lproj/fbt_language_pack.bin -------------------------------------------------------------------------------- /packages/rn-tester/RNTester/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/helloworld/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/helloworld/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/helloworld/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Hello App Display Name 3 | 4 | -------------------------------------------------------------------------------- /packages/react-native/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/ReactAndroid/src/main/res/devsupport/drawable-hdpi/ic_resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/react-native/ReactAndroid/src/main/res/devsupport/drawable-hdpi/ic_resume.png -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/drawable-mdpi/ic_resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/react-native/ReactAndroid/src/main/res/devsupport/drawable-mdpi/ic_resume.png -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/drawable-xhdpi/ic_resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/react-native/ReactAndroid/src/main/res/devsupport/drawable-xhdpi/ic_resume.png -------------------------------------------------------------------------------- /packages/react-native/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/packages/debugger-frontend/dist/third-party/front_end/Images/react_native/welcomeIcon.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/propertyRuleInvalidNameIssue.md: -------------------------------------------------------------------------------- 1 | # An @property rule was ignored 2 | 3 | An @property rule is ignored because the property name is invalid. 4 | -------------------------------------------------------------------------------- /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/ReactAndroid/src/main/res/devsupport/drawable-xxhdpi/ic_resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/react-native/ReactAndroid/src/main/res/devsupport/drawable-xxhdpi/ic_resume.png -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/drawable-xxxhdpi/ic_resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/react-native/ReactAndroid/src/main/res/devsupport/drawable-xxxhdpi/ic_resume.png -------------------------------------------------------------------------------- /packages/react-native/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/src/private/fusebox/assets/backend-to-frontend.excalidraw-embedded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/react-native/src/private/fusebox/assets/backend-to-frontend.excalidraw-embedded.png -------------------------------------------------------------------------------- /packages/react-native/src/private/fusebox/assets/frontend-to-backend.excalidraw-embedded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/react-native/src/private/fusebox/assets/frontend-to-backend.excalidraw-embedded.png -------------------------------------------------------------------------------- /packages/react-native/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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 | -------------------------------------------------------------------------------- /scripts/releases/set-version/__tests__/__fixtures__/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@react-native/monorepo", 3 | "private": true, 4 | "version": "1000.0.0", 5 | "devDependencies": { 6 | "@monorepo/pkg-c": "0.0.1" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /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.5', '< 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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/Images/goto-filled.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/send.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/Nexus5X-landscape.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/iPhone6Plus-portrait.avif -------------------------------------------------------------------------------- /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"];export{t as FORMATTABLE_MEDIA_TYPES}; 2 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/genericResponseWasBlockedByORB.md: -------------------------------------------------------------------------------- 1 | # Response was blocked by CORB (Cross-Origin Read Blocking) 2 | 3 | Cross-Origin Read Blocking (CORB) blocked a cross-origin response. 4 | 5 | -------------------------------------------------------------------------------- /packages/react-native-test-library/android/gradle.properties: -------------------------------------------------------------------------------- 1 | 2 | # We want to have more fine grained control on the Java version for 3 | # ReactAndroid, therefore we disable RGNP Java version alignment mechanism 4 | react.internal.disableJavaVersionAlignment=true 5 | -------------------------------------------------------------------------------- /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/sync/react-native/main/packages/rn-tester/RNTester/RNTesterBundle/OtherImages.xcassets/ImageInAssetCatalog.imageset/react-logo.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/arrow-back.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/arrow-forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-popup-menu-android/android/gradle.properties: -------------------------------------------------------------------------------- 1 | # We want to have more fine grained control on the Java version for 2 | # ReactAndroid, therefore we disable RGNP Java version alignment mechanism 3 | react.internal.disableJavaVersionAlignment=true 4 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nest-hub-horizontal.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/react-native/ReactAndroid/src/main/res/devsupport/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #eecc0000 4 | #ffffffff 5 | 6 | -------------------------------------------------------------------------------- /packages/react-native/scripts/featureflags/assets/react-native-feature-flags-architecture.excalidraw-embedded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/packages/react-native/scripts/featureflags/assets/react-native-feature-flags-architecture.excalidraw-embedded.png -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nest-hub-max-horizontal.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5-vertical-default-2x.avif -------------------------------------------------------------------------------- /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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-2x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/propertyRuleIssue.md: -------------------------------------------------------------------------------- 1 | # Ignored @property rule 2 | 3 | An @property rule is ignored because it contains an invalid property or is missing a required one: 4 | 5 | ``` 6 | {PLACEHOLDER_property} 7 | ``` 8 | -------------------------------------------------------------------------------- /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/react-native/ReactApple/README.md: -------------------------------------------------------------------------------- 1 | # ReactApple 2 | 3 | ReactApple contains code to ship React Native apps to Apple devices. The dominant language is Objective-C. 4 | 5 | New libraries built with Apple frameworks or intended to ship to Apple devices should live in this directory. 6 | -------------------------------------------------------------------------------- /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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/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/sync/react-native/main/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/sync/react-native/main/packages/debugger-frontend/dist/third-party/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-2x.avif -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/panels/application/preloading/helper/helper.js: -------------------------------------------------------------------------------- 1 | var e=Object.freeze({__proto__:null,RuleSetView:class{ruleSetId;constructor(e){this.ruleSetId=e}},AttemptViewWithFilter:class{ruleSetId;constructor(e){this.ruleSetId=e}}});export{e as PreloadingForward}; 2 | -------------------------------------------------------------------------------- /packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/IntegrationTests-IntegrationTestsApp/testImageSnapshotTest_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/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/sync/react-native/main/packages/rn-tester/RNTesterIntegrationTests/ReferenceImages/IntegrationTests-IntegrationTestsApp/testSimpleSnapshotTest_1@3x.png -------------------------------------------------------------------------------- /scripts/releases/set-version/__tests__/__fixtures__/packages/monorepo-pkg-c/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@monorepo/pkg-c", 3 | "version": "0.0.3", 4 | "description": "@monorepo/pkg-c", 5 | "dependencies": { 6 | "metro-config": "^0.80.3", 7 | "metro-runtime": "^0.80.3" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-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/dev-middleware/src/__tests__/__snapshots__/InspectorProxyHttpApi-test.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`inspector proxy HTTP API /json/version endpoint returns version 1`] = ` 4 | Object { 5 | "Browser": "Mobile JavaScript", 6 | "Protocol-Version": "1.1", 7 | } 8 | `; 9 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-af/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-ar/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-bg/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-bn/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-cs/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-da/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-el/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-es/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-et/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-fa/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-fi/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-fr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-gu/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-hi/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-hr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-hu/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-it/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-iw/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-ja/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-ka/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-km/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-kn/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-ko/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-lt/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-lv/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-mk/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-ml/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-mr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-ms/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-my/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-nl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-pa/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-pl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-pt/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-ro/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-ru/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-si/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-sk/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-sl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-sq/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-sr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-sv/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-sw/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-ta/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-te/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-th/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-tr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-uk/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-ur/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-vi/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/devsupport/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-es-rES/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-fr-rCA/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/devsupport/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /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-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 | -------------------------------------------------------------------------------- /scripts/releases-local/README.md: -------------------------------------------------------------------------------- 1 | # scripts/releases-local 2 | 3 | Local-only release scripts. 4 | 5 | ## Commands 6 | 7 | For information on command arguments, run `node --help`. 8 | 9 | ### `trigger-react-native-release.js` 10 | 11 | Trigger the external release publishing workflow on CircleCI. 12 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/justify-items-center.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/models/issues_manager/descriptions/cookieExcludeBlockedWithinRelatedWebsiteSet.md: -------------------------------------------------------------------------------- 1 | # Third-party cookie blocked within the same Related Website Set 2 | 3 | A cookie embedded by a site in the top-level page's Related Website Set was blocked 4 | by third-party cookie blocking. 5 | -------------------------------------------------------------------------------- /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/helloworld/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip 4 | networkTimeout=10000 5 | validateDistributionUrl=true 6 | zipStoreBase=GRADLE_USER_HOME 7 | zipStorePath=wrapper/dists 8 | -------------------------------------------------------------------------------- /scripts/releases/set-version/__tests__/__fixtures__/packages/monorepo-pkg-b/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@monorepo/pkg-b", 3 | "version": "0.0.2", 4 | "description": "@monorepo/pkg-b", 5 | "dependencies": { 6 | "@monorepo/pkg-c": "0.0.1", 7 | "metro-config": "^0.80.3", 8 | "metro-runtime": "^0.80.3" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /packages/helloworld/jest.config.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 | * @format 8 | */ 9 | 10 | module.exports = { 11 | preset: 'react-native', 12 | }; 13 | -------------------------------------------------------------------------------- /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.7-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.7-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 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/.npmignore: -------------------------------------------------------------------------------- 1 | # Make sure we never publish ReactAndroid/build (Gradle output) 2 | # or ReactAndroid/.cxx (CMake output) to npm. 3 | # Those folders are huge (> 100MB)! 4 | build/ 5 | .cxx/ 6 | # Exclude buck config/jars for third-party libraries 7 | src/main/third-party/ 8 | # Exclude Android & JVM tests 9 | src/test/ 10 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/views/modal/anim/catalyst_slide_down.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactAndroid/src/main/res/views/modal/anim/catalyst_slide_up.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /packages/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation/RCTDeprecation.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 | // Dummy file to make RCTDeprecation a valid framework. 9 | -------------------------------------------------------------------------------- /.circleci/configurations/test_workflows/testE2E.yml: -------------------------------------------------------------------------------- 1 | tests_e2e: 2 | when: 3 | and: 4 | - equal: [ false, << pipeline.parameters.run_release_workflow >> ] 5 | - equal: [ false, << pipeline.parameters.run_nightly_workflow >> ] 6 | jobs: 7 | - test_e2e_ios: 8 | ruby_version: "2.7.7" 9 | - test_e2e_android 10 | -------------------------------------------------------------------------------- /packages/debugger-frontend/dist/third-party/front_end/Images/bin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-test-library/README.md: -------------------------------------------------------------------------------- 1 | ## Important 2 | This package is for testing only. It is a subject to frequent change. It does not represent the recomended structure for React native libraries. It should not be used as a referece for such purposes. 3 | 4 | ## Building 5 | ``` 6 | yarn install 7 | yarn build 8 | npx react-native codegen 9 | ``` 10 | -------------------------------------------------------------------------------- /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 `