mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
b365e26593
Summary: As per the discussion on the previous [PR thread](https://github.com/facebook/react-native/pull/52028#issuecomment-2979481948), this PR uses `SwiftUI` to implement blur filter on iOS. ## Approach: To implement blur filter on iOS, we have two options: 1. Use `CAFilter` (private API, app can get rejected/API can break). Earlier [PR](https://github.com/facebook/react-native/pull/52028) was using that approach. Thanks to Nick for suggesting SwiftUI API. 2. Use `SwiftUI`. Wrap the view in a SwiftUI view and apply [blur](https://developer.apple.com/documentation/swiftui/view/blur(radius:opaque:)). This PR builds on top of that approach. This also enables a way to add `SwiftUI` only features like this one. Additional filters (grayscale, saturate, contrast, hueRotate) can also be added. There are a few ways we can implement the SwiftUI approach: 1. Create a new `RCTSwiftUIComponentView` -> do style flattening in View -> check if `filter` is present and conditionally render the `RCTSwiftUIComponentView` on iOS, wrap children with a `SwiftUI` view. Tradeoff with this approach is that it adds `StyleSheet.flatten` overhead on JS side. 2. Add a `SwiftUI` container view inside of `RCTViewComponentView`. Tradeoff with this approach is that it complicates `RCTViewComponentView` a bit. I decided to go with **2** to avoid the flattening tradeoff and try to minimize complicating `RCTViewComponentView`. it only adds the wrapper if it's required and removes if not (in this PR, blur filter style will add the wrapper, it will get removed if blur filter styling gets removed). It uses the existing container view pattern. ## Changelog: [IOS][ADDED] - Filter blur <!-- Help reviewers and the release process by writing your own changelog entry. Pick one each for the category and type tags: [ANDROID|GENERAL|IOS|INTERNAL] [BREAKING|ADDED|CHANGED|DEPRECATED|REMOVED|FIXED|SECURITY] - Message For more details, see: https://reactnative.dev/contributing/changelogs-in-pull-requests Pull Request resolved: https://github.com/facebook/react-native/pull/52495 Test Plan: Test filter blur example on iOS. SwiftUI view should be added to the hierarchy. <img src="https://github.com/user-attachments/assets/742539f4-a96d-45f4-94ba-5eb588d0ad5a" width="300px" /> ## Aside: - This PR also adds a new swift podspec. Creating a new podspec felt the right approach as adding swift in existing ones were adding some complexity. But open for changes here. Also, need some eyes on the podspec configs. cc - chrfalch 🙏 this might also affect the SPM migration. - Unrelated: Existing brightness filter has some inconsistency compared to android and web, it uses [self.layer.opacity](https://github.com/facebook/react-native/blob/6892dde36373bbef2d0afe535ae818b1a7164f08/packages/react-native/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm#L1008) so transparent background color do not blend well unless the view has an opacity. One solution would be to calculate true background color by using brightness or else use the `SwiftUI`'s [brightness](https://developer.apple.com/documentation/swiftui/view/brightness(_:)), which would be cleaner imo (tested and it works). Reviewed By: cipolleschi Differential Revision: D79666764 Pulled By: joevilches fbshipit-source-id: 05e43d75ce7b6f25b67b4eed632524a559ea1c2e
2790 lines
70 KiB
Plaintext
2790 lines
70 KiB
Plaintext
PODS:
|
|
- boost (1.84.0)
|
|
- DoubleConversion (1.1.6)
|
|
- fast_float (8.0.0)
|
|
- FBLazyVector (1000.0.0)
|
|
- fmt (11.0.2)
|
|
- glog (0.3.5)
|
|
- hermes-engine (1000.0.0):
|
|
- hermes-engine/cdp (= 1000.0.0)
|
|
- hermes-engine/Hermes (= 1000.0.0)
|
|
- hermes-engine/inspector (= 1000.0.0)
|
|
- hermes-engine/inspector_chrome (= 1000.0.0)
|
|
- hermes-engine/Public (= 1000.0.0)
|
|
- hermes-engine/cdp (1000.0.0)
|
|
- hermes-engine/Hermes (1000.0.0)
|
|
- hermes-engine/inspector (1000.0.0)
|
|
- hermes-engine/inspector_chrome (1000.0.0)
|
|
- hermes-engine/Public (1000.0.0)
|
|
- MyNativeView (0.82.0-main):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-ImageManager
|
|
- React-jsi
|
|
- React-NativeModulesApple
|
|
- React-RCTFabric
|
|
- React-renderercss
|
|
- React-rendererdebug
|
|
- React-utils
|
|
- ReactCodegen
|
|
- ReactCommon/turbomodule/bridging
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- NativeCxxModuleExample (0.82.0-main):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-ImageManager
|
|
- React-jsi
|
|
- React-NativeModulesApple
|
|
- React-RCTFabric
|
|
- React-renderercss
|
|
- React-rendererdebug
|
|
- React-utils
|
|
- ReactCodegen
|
|
- ReactCommon/turbomodule/bridging
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- OCMock (3.9.4)
|
|
- RCT-Folly (2024.11.18.00):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float (= 8.0.0)
|
|
- fmt (= 11.0.2)
|
|
- glog
|
|
- RCT-Folly/Default (= 2024.11.18.00)
|
|
- RCT-Folly/Default (2024.11.18.00):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float (= 8.0.0)
|
|
- fmt (= 11.0.2)
|
|
- glog
|
|
- RCT-Folly/Fabric (2024.11.18.00):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float (= 8.0.0)
|
|
- fmt (= 11.0.2)
|
|
- glog
|
|
- RCTDeprecation (1000.0.0)
|
|
- RCTRequired (1000.0.0)
|
|
- RCTSwiftUI (1000.0.0)
|
|
- RCTSwiftUIWrapper (1000.0.0):
|
|
- RCTSwiftUI
|
|
- RCTTypeSafety (1000.0.0):
|
|
- FBLazyVector (= 1000.0.0)
|
|
- RCTRequired (= 1000.0.0)
|
|
- React-Core (= 1000.0.0)
|
|
- React (1000.0.0):
|
|
- React-Core (= 1000.0.0)
|
|
- React-Core/DevSupport (= 1000.0.0)
|
|
- React-Core/RCTWebSocket (= 1000.0.0)
|
|
- React-RCTActionSheet (= 1000.0.0)
|
|
- React-RCTAnimation (= 1000.0.0)
|
|
- React-RCTBlob (= 1000.0.0)
|
|
- React-RCTImage (= 1000.0.0)
|
|
- React-RCTLinking (= 1000.0.0)
|
|
- React-RCTNetwork (= 1000.0.0)
|
|
- React-RCTSettings (= 1000.0.0)
|
|
- React-RCTText (= 1000.0.0)
|
|
- React-RCTVibration (= 1000.0.0)
|
|
- React-callinvoker (1000.0.0)
|
|
- React-Core (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTDeprecation
|
|
- React-Core/Default (= 1000.0.0)
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsitooling
|
|
- React-perflogger
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Core/CoreModulesHeaders (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTDeprecation
|
|
- React-Core/Default
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsitooling
|
|
- React-perflogger
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Core/Default (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTDeprecation
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsitooling
|
|
- React-perflogger
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Core/DevSupport (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTDeprecation
|
|
- React-Core/Default (= 1000.0.0)
|
|
- React-Core/RCTWebSocket (= 1000.0.0)
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsitooling
|
|
- React-perflogger
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Core/RCTActionSheetHeaders (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTDeprecation
|
|
- React-Core/Default
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsitooling
|
|
- React-perflogger
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Core/RCTAnimationHeaders (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTDeprecation
|
|
- React-Core/Default
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsitooling
|
|
- React-perflogger
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Core/RCTBlobHeaders (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTDeprecation
|
|
- React-Core/Default
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsitooling
|
|
- React-perflogger
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Core/RCTImageHeaders (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTDeprecation
|
|
- React-Core/Default
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsitooling
|
|
- React-perflogger
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Core/RCTLinkingHeaders (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTDeprecation
|
|
- React-Core/Default
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsitooling
|
|
- React-perflogger
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Core/RCTNetworkHeaders (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTDeprecation
|
|
- React-Core/Default
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsitooling
|
|
- React-perflogger
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Core/RCTPushNotificationHeaders (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTDeprecation
|
|
- React-Core/Default
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsitooling
|
|
- React-perflogger
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Core/RCTSettingsHeaders (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTDeprecation
|
|
- React-Core/Default
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsitooling
|
|
- React-perflogger
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Core/RCTTextHeaders (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTDeprecation
|
|
- React-Core/Default
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsitooling
|
|
- React-perflogger
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Core/RCTVibrationHeaders (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTDeprecation
|
|
- React-Core/Default
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsitooling
|
|
- React-perflogger
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Core/RCTWebSocket (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTDeprecation
|
|
- React-Core/Default (= 1000.0.0)
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsitooling
|
|
- React-perflogger
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-CoreModules (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTTypeSafety (= 1000.0.0)
|
|
- React-Core/CoreModulesHeaders (= 1000.0.0)
|
|
- React-jsi (= 1000.0.0)
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsinspectortracing
|
|
- React-NativeModulesApple
|
|
- React-RCTBlob
|
|
- React-RCTFBReactNativeSpec
|
|
- React-RCTImage (= 1000.0.0)
|
|
- React-runtimeexecutor
|
|
- ReactCommon
|
|
- SocketRocket
|
|
- React-cxxreact (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-callinvoker (= 1000.0.0)
|
|
- React-debug (= 1000.0.0)
|
|
- React-jsi (= 1000.0.0)
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsinspectortracing
|
|
- React-logger (= 1000.0.0)
|
|
- React-perflogger (= 1000.0.0)
|
|
- React-runtimeexecutor
|
|
- React-timing (= 1000.0.0)
|
|
- SocketRocket
|
|
- React-debug (1000.0.0)
|
|
- React-defaultsnativemodule (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-domnativemodule
|
|
- React-featureflagsnativemodule
|
|
- React-idlecallbacksnativemodule
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-microtasksnativemodule
|
|
- React-RCTFBReactNativeSpec
|
|
- SocketRocket
|
|
- React-domnativemodule (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-Fabric
|
|
- React-Fabric/bridging
|
|
- React-FabricComponents
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-RCTFBReactNativeSpec
|
|
- React-runtimeexecutor
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Fabric (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric/animations (= 1000.0.0)
|
|
- React-Fabric/attributedstring (= 1000.0.0)
|
|
- React-Fabric/bridging (= 1000.0.0)
|
|
- React-Fabric/componentregistry (= 1000.0.0)
|
|
- React-Fabric/componentregistrynative (= 1000.0.0)
|
|
- React-Fabric/components (= 1000.0.0)
|
|
- React-Fabric/consistency (= 1000.0.0)
|
|
- React-Fabric/core (= 1000.0.0)
|
|
- React-Fabric/dom (= 1000.0.0)
|
|
- React-Fabric/imagemanager (= 1000.0.0)
|
|
- React-Fabric/leakchecker (= 1000.0.0)
|
|
- React-Fabric/mounting (= 1000.0.0)
|
|
- React-Fabric/observers (= 1000.0.0)
|
|
- React-Fabric/scheduler (= 1000.0.0)
|
|
- React-Fabric/telemetry (= 1000.0.0)
|
|
- React-Fabric/templateprocessor (= 1000.0.0)
|
|
- React-Fabric/uimanager (= 1000.0.0)
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/animations (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/attributedstring (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/bridging (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/componentregistry (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/componentregistrynative (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/components (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric/components/legacyviewmanagerinterop (= 1000.0.0)
|
|
- React-Fabric/components/root (= 1000.0.0)
|
|
- React-Fabric/components/scrollview (= 1000.0.0)
|
|
- React-Fabric/components/view (= 1000.0.0)
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/components/legacyviewmanagerinterop (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/components/root (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/components/scrollview (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/components/view (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-renderercss
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-Fabric/consistency (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/core (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/dom (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/imagemanager (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/leakchecker (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/mounting (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/observers (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric/observers/events (= 1000.0.0)
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/observers/events (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/scheduler (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric/observers/events
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-performancecdpmetrics
|
|
- React-performancetimeline
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/telemetry (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/templateprocessor (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/uimanager (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric/uimanager/consistency (= 1000.0.0)
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererconsistency
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-Fabric/uimanager/consistency (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTSwiftUIWrapper
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-rendererconsistency
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-FabricComponents (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-FabricComponents/components (= 1000.0.0)
|
|
- React-FabricComponents/textlayoutmanager (= 1000.0.0)
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-RCTFBReactNativeSpec
|
|
- React-rendererdebug
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-FabricComponents/components (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-FabricComponents/components/inputaccessory (= 1000.0.0)
|
|
- React-FabricComponents/components/iostextinput (= 1000.0.0)
|
|
- React-FabricComponents/components/modal (= 1000.0.0)
|
|
- React-FabricComponents/components/rncore (= 1000.0.0)
|
|
- React-FabricComponents/components/safeareaview (= 1000.0.0)
|
|
- React-FabricComponents/components/scrollview (= 1000.0.0)
|
|
- React-FabricComponents/components/text (= 1000.0.0)
|
|
- React-FabricComponents/components/textinput (= 1000.0.0)
|
|
- React-FabricComponents/components/unimplementedview (= 1000.0.0)
|
|
- React-FabricComponents/components/virtualview (= 1000.0.0)
|
|
- React-FabricComponents/components/virtualviewexperimental (= 1000.0.0)
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-RCTFBReactNativeSpec
|
|
- React-rendererdebug
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-FabricComponents/components/inputaccessory (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-RCTFBReactNativeSpec
|
|
- React-rendererdebug
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-FabricComponents/components/iostextinput (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-RCTFBReactNativeSpec
|
|
- React-rendererdebug
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-FabricComponents/components/modal (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-RCTFBReactNativeSpec
|
|
- React-rendererdebug
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-FabricComponents/components/rncore (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-RCTFBReactNativeSpec
|
|
- React-rendererdebug
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-FabricComponents/components/safeareaview (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-RCTFBReactNativeSpec
|
|
- React-rendererdebug
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-FabricComponents/components/scrollview (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-RCTFBReactNativeSpec
|
|
- React-rendererdebug
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-FabricComponents/components/text (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-RCTFBReactNativeSpec
|
|
- React-rendererdebug
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-FabricComponents/components/textinput (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-RCTFBReactNativeSpec
|
|
- React-rendererdebug
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-FabricComponents/components/unimplementedview (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-RCTFBReactNativeSpec
|
|
- React-rendererdebug
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-FabricComponents/components/virtualview (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-RCTFBReactNativeSpec
|
|
- React-rendererdebug
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-FabricComponents/components/virtualviewexperimental (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-RCTFBReactNativeSpec
|
|
- React-rendererdebug
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-FabricComponents/textlayoutmanager (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-logger
|
|
- React-RCTFBReactNativeSpec
|
|
- React-rendererdebug
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-FabricImage (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired (= 1000.0.0)
|
|
- RCTTypeSafety (= 1000.0.0)
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-ImageManager
|
|
- React-jsi
|
|
- React-jsiexecutor (= 1000.0.0)
|
|
- React-logger
|
|
- React-rendererdebug
|
|
- React-utils
|
|
- ReactCommon
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-featureflags (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- SocketRocket
|
|
- React-featureflagsnativemodule (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-featureflags
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-RCTFBReactNativeSpec
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-graphics (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-utils
|
|
- SocketRocket
|
|
- React-hermes (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-cxxreact (= 1000.0.0)
|
|
- React-jsi
|
|
- React-jsiexecutor (= 1000.0.0)
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsinspectortracing
|
|
- React-perflogger (= 1000.0.0)
|
|
- React-runtimeexecutor
|
|
- SocketRocket
|
|
- React-idlecallbacksnativemodule (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-RCTFBReactNativeSpec
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-ImageManager (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-Core/Default
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-graphics
|
|
- React-rendererdebug
|
|
- React-utils
|
|
- SocketRocket
|
|
- React-jserrorhandler (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-jsi
|
|
- ReactCommon/turbomodule/bridging
|
|
- SocketRocket
|
|
- React-jsi (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- SocketRocket
|
|
- React-jsiexecutor (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-cxxreact (= 1000.0.0)
|
|
- React-jsi (= 1000.0.0)
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsinspectortracing
|
|
- React-perflogger (= 1000.0.0)
|
|
- React-runtimeexecutor
|
|
- SocketRocket
|
|
- React-jsinspector (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-featureflags
|
|
- React-jsi
|
|
- React-jsinspectorcdp
|
|
- React-jsinspectornetwork
|
|
- React-jsinspectortracing
|
|
- React-perflogger (= 1000.0.0)
|
|
- React-runtimeexecutor
|
|
- SocketRocket
|
|
- React-jsinspectorcdp (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- SocketRocket
|
|
- React-jsinspectornetwork (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-featureflags
|
|
- React-jsinspectorcdp
|
|
- React-performancetimeline
|
|
- React-timing
|
|
- SocketRocket
|
|
- React-jsinspectortracing (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-oscompat
|
|
- React-timing
|
|
- SocketRocket
|
|
- React-jsitooling (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-cxxreact (= 1000.0.0)
|
|
- React-jsi (= 1000.0.0)
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsinspectortracing
|
|
- React-runtimeexecutor
|
|
- SocketRocket
|
|
- React-jsitracing (1000.0.0):
|
|
- React-jsi
|
|
- React-logger (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- SocketRocket
|
|
- React-Mapbuffer (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-debug
|
|
- SocketRocket
|
|
- React-microtasksnativemodule (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-RCTFBReactNativeSpec
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-NativeModulesApple (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-callinvoker
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-jsi
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-runtimeexecutor
|
|
- ReactCommon/turbomodule/bridging
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- React-oscompat (1000.0.0)
|
|
- React-perflogger (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- SocketRocket
|
|
- React-performancecdpmetrics (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-jsi
|
|
- React-performancetimeline
|
|
- React-runtimeexecutor
|
|
- React-timing
|
|
- SocketRocket
|
|
- React-performancetimeline (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-featureflags
|
|
- React-jsinspectortracing
|
|
- React-perflogger
|
|
- React-timing
|
|
- SocketRocket
|
|
- React-RCTActionSheet (1000.0.0):
|
|
- React-Core/RCTActionSheetHeaders (= 1000.0.0)
|
|
- React-RCTAnimation (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTTypeSafety
|
|
- React-Core/RCTAnimationHeaders
|
|
- React-featureflags
|
|
- React-jsi
|
|
- React-NativeModulesApple
|
|
- React-RCTFBReactNativeSpec
|
|
- ReactCommon
|
|
- SocketRocket
|
|
- React-RCTAppDelegate (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-CoreModules
|
|
- React-debug
|
|
- React-defaultsnativemodule
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-hermes
|
|
- React-jsitooling
|
|
- React-NativeModulesApple
|
|
- React-RCTFabric
|
|
- React-RCTFBReactNativeSpec
|
|
- React-RCTImage
|
|
- React-RCTNetwork
|
|
- React-RCTRuntime
|
|
- React-rendererdebug
|
|
- React-RuntimeApple
|
|
- React-RuntimeCore
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- ReactCommon
|
|
- SocketRocket
|
|
- React-RCTBlob (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-Core/RCTBlobHeaders
|
|
- React-Core/RCTWebSocket
|
|
- React-jsi
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-NativeModulesApple
|
|
- React-RCTFBReactNativeSpec
|
|
- React-RCTNetwork
|
|
- ReactCommon
|
|
- SocketRocket
|
|
- React-RCTFabric (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-Core
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-FabricComponents
|
|
- React-FabricImage
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-ImageManager
|
|
- React-jsi
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsinspectornetwork
|
|
- React-jsinspectortracing
|
|
- React-performancetimeline
|
|
- React-RCTAnimation
|
|
- React-RCTFBReactNativeSpec
|
|
- React-RCTImage
|
|
- React-RCTText
|
|
- React-rendererconsistency
|
|
- React-renderercss
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-RCTFBReactNativeSpec (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-jsi
|
|
- React-NativeModulesApple
|
|
- React-RCTFBReactNativeSpec/components (= 1000.0.0)
|
|
- ReactCommon
|
|
- SocketRocket
|
|
- React-RCTFBReactNativeSpec/components (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-NativeModulesApple
|
|
- React-rendererdebug
|
|
- React-utils
|
|
- ReactCommon
|
|
- SocketRocket
|
|
- Yoga
|
|
- React-RCTImage (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTTypeSafety
|
|
- React-Core/RCTImageHeaders
|
|
- React-jsi
|
|
- React-NativeModulesApple
|
|
- React-RCTFBReactNativeSpec
|
|
- React-RCTNetwork
|
|
- ReactCommon
|
|
- SocketRocket
|
|
- React-RCTLinking (1000.0.0):
|
|
- React-Core/RCTLinkingHeaders (= 1000.0.0)
|
|
- React-jsi (= 1000.0.0)
|
|
- React-NativeModulesApple
|
|
- React-RCTFBReactNativeSpec
|
|
- ReactCommon
|
|
- ReactCommon/turbomodule/core (= 1000.0.0)
|
|
- React-RCTNetwork (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTTypeSafety
|
|
- React-Core/RCTNetworkHeaders
|
|
- React-featureflags
|
|
- React-jsi
|
|
- React-jsinspectorcdp
|
|
- React-jsinspectornetwork
|
|
- React-NativeModulesApple
|
|
- React-RCTFBReactNativeSpec
|
|
- ReactCommon
|
|
- SocketRocket
|
|
- React-RCTPushNotification (1000.0.0):
|
|
- RCTTypeSafety
|
|
- React-Core/RCTPushNotificationHeaders
|
|
- React-jsi
|
|
- React-NativeModulesApple
|
|
- React-RCTFBReactNativeSpec
|
|
- ReactCommon
|
|
- React-RCTRuntime (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-Core
|
|
- React-jsi
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsinspectortracing
|
|
- React-jsitooling
|
|
- React-RuntimeApple
|
|
- React-RuntimeCore
|
|
- React-runtimeexecutor
|
|
- React-RuntimeHermes
|
|
- SocketRocket
|
|
- React-RCTSettings (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTTypeSafety
|
|
- React-Core/RCTSettingsHeaders
|
|
- React-jsi
|
|
- React-NativeModulesApple
|
|
- React-RCTFBReactNativeSpec
|
|
- ReactCommon
|
|
- SocketRocket
|
|
- React-RCTTest (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-Core (= 1000.0.0)
|
|
- React-CoreModules (= 1000.0.0)
|
|
- React-jsi (= 1000.0.0)
|
|
- ReactCommon/turbomodule/core (= 1000.0.0)
|
|
- SocketRocket
|
|
- React-RCTText (1000.0.0):
|
|
- React-Core/RCTTextHeaders (= 1000.0.0)
|
|
- Yoga
|
|
- React-RCTVibration (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-Core/RCTVibrationHeaders
|
|
- React-jsi
|
|
- React-NativeModulesApple
|
|
- React-RCTFBReactNativeSpec
|
|
- ReactCommon
|
|
- SocketRocket
|
|
- React-rendererconsistency (1000.0.0)
|
|
- React-renderercss (1000.0.0):
|
|
- React-debug
|
|
- React-utils
|
|
- React-rendererdebug (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-debug
|
|
- SocketRocket
|
|
- React-RuntimeApple (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-callinvoker
|
|
- React-Core/Default
|
|
- React-CoreModules
|
|
- React-cxxreact
|
|
- React-featureflags
|
|
- React-jserrorhandler
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsitooling
|
|
- React-Mapbuffer
|
|
- React-NativeModulesApple
|
|
- React-RCTFabric
|
|
- React-RCTFBReactNativeSpec
|
|
- React-RuntimeCore
|
|
- React-runtimeexecutor
|
|
- React-RuntimeHermes
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- React-RuntimeCore (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-cxxreact
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-jserrorhandler
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-jsinspector
|
|
- React-jsitooling
|
|
- React-performancetimeline
|
|
- React-runtimeexecutor
|
|
- React-runtimescheduler
|
|
- React-utils
|
|
- SocketRocket
|
|
- React-runtimeexecutor (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-jsi (= 1000.0.0)
|
|
- React-utils
|
|
- SocketRocket
|
|
- React-RuntimeHermes (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-featureflags
|
|
- React-hermes
|
|
- React-jsi
|
|
- React-jsinspector
|
|
- React-jsinspectorcdp
|
|
- React-jsinspectortracing
|
|
- React-jsitooling
|
|
- React-jsitracing
|
|
- React-RuntimeCore
|
|
- React-runtimeexecutor
|
|
- React-utils
|
|
- SocketRocket
|
|
- React-runtimescheduler (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-callinvoker
|
|
- React-cxxreact
|
|
- React-debug
|
|
- React-featureflags
|
|
- React-jsi
|
|
- React-jsinspectortracing
|
|
- React-performancetimeline
|
|
- React-rendererconsistency
|
|
- React-rendererdebug
|
|
- React-runtimeexecutor
|
|
- React-timing
|
|
- React-utils
|
|
- SocketRocket
|
|
- React-timing (1000.0.0)
|
|
- React-utils (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-debug
|
|
- React-jsi (= 1000.0.0)
|
|
- SocketRocket
|
|
- ReactAppDependencyProvider (1000.0.0):
|
|
- ReactCodegen
|
|
- ReactCodegen (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-FabricImage
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-jsi
|
|
- React-jsiexecutor
|
|
- React-NativeModulesApple
|
|
- React-RCTAppDelegate
|
|
- React-rendererdebug
|
|
- React-utils
|
|
- ReactCommon/turbomodule/bridging
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- ReactCommon (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- ReactCommon/turbomodule (= 1000.0.0)
|
|
- SocketRocket
|
|
- ReactCommon-Samples (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-Core
|
|
- React-cxxreact
|
|
- React-jsi
|
|
- React-NativeModulesApple
|
|
- React-RCTFBReactNativeSpec
|
|
- ReactCommon
|
|
- SocketRocket
|
|
- ReactCommon/turbomodule (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-callinvoker (= 1000.0.0)
|
|
- React-cxxreact (= 1000.0.0)
|
|
- React-jsi (= 1000.0.0)
|
|
- React-logger (= 1000.0.0)
|
|
- React-perflogger (= 1000.0.0)
|
|
- ReactCommon/turbomodule/bridging (= 1000.0.0)
|
|
- ReactCommon/turbomodule/core (= 1000.0.0)
|
|
- SocketRocket
|
|
- ReactCommon/turbomodule/bridging (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-callinvoker (= 1000.0.0)
|
|
- React-cxxreact (= 1000.0.0)
|
|
- React-jsi (= 1000.0.0)
|
|
- React-logger (= 1000.0.0)
|
|
- React-perflogger (= 1000.0.0)
|
|
- SocketRocket
|
|
- ReactCommon/turbomodule/core (1000.0.0):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- React-callinvoker (= 1000.0.0)
|
|
- React-cxxreact (= 1000.0.0)
|
|
- React-debug (= 1000.0.0)
|
|
- React-featureflags (= 1000.0.0)
|
|
- React-jsi (= 1000.0.0)
|
|
- React-logger (= 1000.0.0)
|
|
- React-perflogger (= 1000.0.0)
|
|
- React-utils (= 1000.0.0)
|
|
- SocketRocket
|
|
- ScreenshotManager (0.82.0-main):
|
|
- boost
|
|
- DoubleConversion
|
|
- fast_float
|
|
- fmt
|
|
- glog
|
|
- hermes-engine
|
|
- RCT-Folly
|
|
- RCT-Folly/Fabric
|
|
- RCTRequired
|
|
- RCTTypeSafety
|
|
- React-Core
|
|
- React-debug
|
|
- React-Fabric
|
|
- React-featureflags
|
|
- React-graphics
|
|
- React-ImageManager
|
|
- React-jsi
|
|
- React-NativeModulesApple
|
|
- React-RCTFabric
|
|
- React-renderercss
|
|
- React-rendererdebug
|
|
- React-utils
|
|
- ReactCodegen
|
|
- ReactCommon/turbomodule/bridging
|
|
- ReactCommon/turbomodule/core
|
|
- SocketRocket
|
|
- Yoga
|
|
- SocketRocket (0.7.1)
|
|
- Yoga (0.0.0)
|
|
|
|
DEPENDENCIES:
|
|
- boost (from `../react-native/third-party-podspecs/boost.podspec`)
|
|
- DoubleConversion (from `../react-native/third-party-podspecs/DoubleConversion.podspec`)
|
|
- fast_float (from `../react-native/third-party-podspecs/fast_float.podspec`)
|
|
- FBLazyVector (from `../react-native/Libraries/FBLazyVector`)
|
|
- fmt (from `../react-native/third-party-podspecs/fmt.podspec`)
|
|
- glog (from `../react-native/third-party-podspecs/glog.podspec`)
|
|
- hermes-engine (from `../react-native/sdks/hermes-engine/hermes-engine.podspec`)
|
|
- MyNativeView (from `NativeComponentExample`)
|
|
- NativeCxxModuleExample (from `NativeCxxModuleExample`)
|
|
- OCMock (~> 3.9.1)
|
|
- RCT-Folly (from `../react-native/third-party-podspecs/RCT-Folly.podspec`)
|
|
- RCTDeprecation (from `../react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
|
|
- RCTRequired (from `../react-native/Libraries/Required`)
|
|
- RCTSwiftUI (from `../react-native/ReactApple/RCTSwiftUI`)
|
|
- RCTSwiftUIWrapper (from `../react-native/ReactApple/RCTSwiftUIWrapper`)
|
|
- RCTTypeSafety (from `../react-native/Libraries/TypeSafety`)
|
|
- React (from `../react-native/`)
|
|
- React-callinvoker (from `../react-native/ReactCommon/callinvoker`)
|
|
- React-Core (from `../react-native/`)
|
|
- React-Core/RCTWebSocket (from `../react-native/`)
|
|
- React-CoreModules (from `../react-native/React/CoreModules`)
|
|
- React-cxxreact (from `../react-native/ReactCommon/cxxreact`)
|
|
- React-debug (from `../react-native/ReactCommon/react/debug`)
|
|
- React-defaultsnativemodule (from `../react-native/ReactCommon/react/nativemodule/defaults`)
|
|
- React-domnativemodule (from `../react-native/ReactCommon/react/nativemodule/dom`)
|
|
- React-Fabric (from `../react-native/ReactCommon`)
|
|
- React-FabricComponents (from `../react-native/ReactCommon`)
|
|
- React-FabricImage (from `../react-native/ReactCommon`)
|
|
- React-featureflags (from `../react-native/ReactCommon/react/featureflags`)
|
|
- React-featureflagsnativemodule (from `../react-native/ReactCommon/react/nativemodule/featureflags`)
|
|
- React-graphics (from `../react-native/ReactCommon/react/renderer/graphics`)
|
|
- React-hermes (from `../react-native/ReactCommon/hermes`)
|
|
- React-idlecallbacksnativemodule (from `../react-native/ReactCommon/react/nativemodule/idlecallbacks`)
|
|
- React-ImageManager (from `../react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
|
|
- React-jserrorhandler (from `../react-native/ReactCommon/jserrorhandler`)
|
|
- React-jsi (from `../react-native/ReactCommon/jsi`)
|
|
- React-jsiexecutor (from `../react-native/ReactCommon/jsiexecutor`)
|
|
- React-jsinspector (from `../react-native/ReactCommon/jsinspector-modern`)
|
|
- React-jsinspectorcdp (from `../react-native/ReactCommon/jsinspector-modern/cdp`)
|
|
- React-jsinspectornetwork (from `../react-native/ReactCommon/jsinspector-modern/network`)
|
|
- React-jsinspectortracing (from `../react-native/ReactCommon/jsinspector-modern/tracing`)
|
|
- React-jsitooling (from `../react-native/ReactCommon/jsitooling`)
|
|
- React-jsitracing (from `../react-native/ReactCommon/hermes/executor/`)
|
|
- React-logger (from `../react-native/ReactCommon/logger`)
|
|
- React-Mapbuffer (from `../react-native/ReactCommon`)
|
|
- React-microtasksnativemodule (from `../react-native/ReactCommon/react/nativemodule/microtasks`)
|
|
- React-NativeModulesApple (from `../react-native/ReactCommon/react/nativemodule/core/platform/ios`)
|
|
- React-oscompat (from `../react-native/ReactCommon/oscompat`)
|
|
- React-perflogger (from `../react-native/ReactCommon/reactperflogger`)
|
|
- React-performancecdpmetrics (from `../react-native/ReactCommon/react/performance/cdpmetrics`)
|
|
- React-performancetimeline (from `../react-native/ReactCommon/react/performance/timeline`)
|
|
- React-RCTActionSheet (from `../react-native/Libraries/ActionSheetIOS`)
|
|
- React-RCTAnimation (from `../react-native/Libraries/NativeAnimation`)
|
|
- React-RCTAppDelegate (from `../react-native/Libraries/AppDelegate`)
|
|
- React-RCTBlob (from `../react-native/Libraries/Blob`)
|
|
- React-RCTFabric (from `../react-native/React`)
|
|
- React-RCTFBReactNativeSpec (from `../react-native/React`)
|
|
- React-RCTImage (from `../react-native/Libraries/Image`)
|
|
- React-RCTLinking (from `../react-native/Libraries/LinkingIOS`)
|
|
- React-RCTNetwork (from `../react-native/Libraries/Network`)
|
|
- React-RCTPushNotification (from `../react-native/Libraries/PushNotificationIOS`)
|
|
- React-RCTRuntime (from `../react-native/React/Runtime`)
|
|
- React-RCTSettings (from `../react-native/Libraries/Settings`)
|
|
- React-RCTTest (from `./RCTTest`)
|
|
- React-RCTText (from `../react-native/Libraries/Text`)
|
|
- React-RCTVibration (from `../react-native/Libraries/Vibration`)
|
|
- React-rendererconsistency (from `../react-native/ReactCommon/react/renderer/consistency`)
|
|
- React-renderercss (from `../react-native/ReactCommon/react/renderer/css`)
|
|
- React-rendererdebug (from `../react-native/ReactCommon/react/renderer/debug`)
|
|
- React-RuntimeApple (from `../react-native/ReactCommon/react/runtime/platform/ios`)
|
|
- React-RuntimeCore (from `../react-native/ReactCommon/react/runtime`)
|
|
- React-runtimeexecutor (from `../react-native/ReactCommon/runtimeexecutor`)
|
|
- React-RuntimeHermes (from `../react-native/ReactCommon/react/runtime`)
|
|
- React-runtimescheduler (from `../react-native/ReactCommon/react/renderer/runtimescheduler`)
|
|
- React-timing (from `../react-native/ReactCommon/react/timing`)
|
|
- React-utils (from `../react-native/ReactCommon/react/utils`)
|
|
- ReactAppDependencyProvider (from `build/generated/ios`)
|
|
- ReactCodegen (from `build/generated/ios`)
|
|
- ReactCommon-Samples (from `../react-native/ReactCommon/react/nativemodule/samples`)
|
|
- ReactCommon/turbomodule/core (from `../react-native/ReactCommon`)
|
|
- ScreenshotManager (from `NativeModuleExample`)
|
|
- SocketRocket (~> 0.7.1)
|
|
- Yoga (from `../react-native/ReactCommon/yoga`)
|
|
|
|
SPEC REPOS:
|
|
trunk:
|
|
- OCMock
|
|
- SocketRocket
|
|
|
|
EXTERNAL SOURCES:
|
|
boost:
|
|
:podspec: "../react-native/third-party-podspecs/boost.podspec"
|
|
DoubleConversion:
|
|
:podspec: "../react-native/third-party-podspecs/DoubleConversion.podspec"
|
|
fast_float:
|
|
:podspec: "../react-native/third-party-podspecs/fast_float.podspec"
|
|
FBLazyVector:
|
|
:path: "../react-native/Libraries/FBLazyVector"
|
|
fmt:
|
|
:podspec: "../react-native/third-party-podspecs/fmt.podspec"
|
|
glog:
|
|
:podspec: "../react-native/third-party-podspecs/glog.podspec"
|
|
hermes-engine:
|
|
:podspec: "../react-native/sdks/hermes-engine/hermes-engine.podspec"
|
|
:tag: ''
|
|
MyNativeView:
|
|
:path: NativeComponentExample
|
|
NativeCxxModuleExample:
|
|
:path: NativeCxxModuleExample
|
|
RCT-Folly:
|
|
:podspec: "../react-native/third-party-podspecs/RCT-Folly.podspec"
|
|
RCTDeprecation:
|
|
:path: "../react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
|
|
RCTRequired:
|
|
:path: "../react-native/Libraries/Required"
|
|
RCTSwiftUI:
|
|
:path: "../react-native/ReactApple/RCTSwiftUI"
|
|
RCTSwiftUIWrapper:
|
|
:path: "../react-native/ReactApple/RCTSwiftUIWrapper"
|
|
RCTTypeSafety:
|
|
:path: "../react-native/Libraries/TypeSafety"
|
|
React:
|
|
:path: "../react-native/"
|
|
React-callinvoker:
|
|
:path: "../react-native/ReactCommon/callinvoker"
|
|
React-Core:
|
|
:path: "../react-native/"
|
|
React-CoreModules:
|
|
:path: "../react-native/React/CoreModules"
|
|
React-cxxreact:
|
|
:path: "../react-native/ReactCommon/cxxreact"
|
|
React-debug:
|
|
:path: "../react-native/ReactCommon/react/debug"
|
|
React-defaultsnativemodule:
|
|
:path: "../react-native/ReactCommon/react/nativemodule/defaults"
|
|
React-domnativemodule:
|
|
:path: "../react-native/ReactCommon/react/nativemodule/dom"
|
|
React-Fabric:
|
|
:path: "../react-native/ReactCommon"
|
|
React-FabricComponents:
|
|
:path: "../react-native/ReactCommon"
|
|
React-FabricImage:
|
|
:path: "../react-native/ReactCommon"
|
|
React-featureflags:
|
|
:path: "../react-native/ReactCommon/react/featureflags"
|
|
React-featureflagsnativemodule:
|
|
:path: "../react-native/ReactCommon/react/nativemodule/featureflags"
|
|
React-graphics:
|
|
:path: "../react-native/ReactCommon/react/renderer/graphics"
|
|
React-hermes:
|
|
:path: "../react-native/ReactCommon/hermes"
|
|
React-idlecallbacksnativemodule:
|
|
:path: "../react-native/ReactCommon/react/nativemodule/idlecallbacks"
|
|
React-ImageManager:
|
|
:path: "../react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
|
|
React-jserrorhandler:
|
|
:path: "../react-native/ReactCommon/jserrorhandler"
|
|
React-jsi:
|
|
:path: "../react-native/ReactCommon/jsi"
|
|
React-jsiexecutor:
|
|
:path: "../react-native/ReactCommon/jsiexecutor"
|
|
React-jsinspector:
|
|
:path: "../react-native/ReactCommon/jsinspector-modern"
|
|
React-jsinspectorcdp:
|
|
:path: "../react-native/ReactCommon/jsinspector-modern/cdp"
|
|
React-jsinspectornetwork:
|
|
:path: "../react-native/ReactCommon/jsinspector-modern/network"
|
|
React-jsinspectortracing:
|
|
:path: "../react-native/ReactCommon/jsinspector-modern/tracing"
|
|
React-jsitooling:
|
|
:path: "../react-native/ReactCommon/jsitooling"
|
|
React-jsitracing:
|
|
:path: "../react-native/ReactCommon/hermes/executor/"
|
|
React-logger:
|
|
:path: "../react-native/ReactCommon/logger"
|
|
React-Mapbuffer:
|
|
:path: "../react-native/ReactCommon"
|
|
React-microtasksnativemodule:
|
|
:path: "../react-native/ReactCommon/react/nativemodule/microtasks"
|
|
React-NativeModulesApple:
|
|
:path: "../react-native/ReactCommon/react/nativemodule/core/platform/ios"
|
|
React-oscompat:
|
|
:path: "../react-native/ReactCommon/oscompat"
|
|
React-perflogger:
|
|
:path: "../react-native/ReactCommon/reactperflogger"
|
|
React-performancecdpmetrics:
|
|
:path: "../react-native/ReactCommon/react/performance/cdpmetrics"
|
|
React-performancetimeline:
|
|
:path: "../react-native/ReactCommon/react/performance/timeline"
|
|
React-RCTActionSheet:
|
|
:path: "../react-native/Libraries/ActionSheetIOS"
|
|
React-RCTAnimation:
|
|
:path: "../react-native/Libraries/NativeAnimation"
|
|
React-RCTAppDelegate:
|
|
:path: "../react-native/Libraries/AppDelegate"
|
|
React-RCTBlob:
|
|
:path: "../react-native/Libraries/Blob"
|
|
React-RCTFabric:
|
|
:path: "../react-native/React"
|
|
React-RCTFBReactNativeSpec:
|
|
:path: "../react-native/React"
|
|
React-RCTImage:
|
|
:path: "../react-native/Libraries/Image"
|
|
React-RCTLinking:
|
|
:path: "../react-native/Libraries/LinkingIOS"
|
|
React-RCTNetwork:
|
|
:path: "../react-native/Libraries/Network"
|
|
React-RCTPushNotification:
|
|
:path: "../react-native/Libraries/PushNotificationIOS"
|
|
React-RCTRuntime:
|
|
:path: "../react-native/React/Runtime"
|
|
React-RCTSettings:
|
|
:path: "../react-native/Libraries/Settings"
|
|
React-RCTTest:
|
|
:path: "./RCTTest"
|
|
React-RCTText:
|
|
:path: "../react-native/Libraries/Text"
|
|
React-RCTVibration:
|
|
:path: "../react-native/Libraries/Vibration"
|
|
React-rendererconsistency:
|
|
:path: "../react-native/ReactCommon/react/renderer/consistency"
|
|
React-renderercss:
|
|
:path: "../react-native/ReactCommon/react/renderer/css"
|
|
React-rendererdebug:
|
|
:path: "../react-native/ReactCommon/react/renderer/debug"
|
|
React-RuntimeApple:
|
|
:path: "../react-native/ReactCommon/react/runtime/platform/ios"
|
|
React-RuntimeCore:
|
|
:path: "../react-native/ReactCommon/react/runtime"
|
|
React-runtimeexecutor:
|
|
:path: "../react-native/ReactCommon/runtimeexecutor"
|
|
React-RuntimeHermes:
|
|
:path: "../react-native/ReactCommon/react/runtime"
|
|
React-runtimescheduler:
|
|
:path: "../react-native/ReactCommon/react/renderer/runtimescheduler"
|
|
React-timing:
|
|
:path: "../react-native/ReactCommon/react/timing"
|
|
React-utils:
|
|
:path: "../react-native/ReactCommon/react/utils"
|
|
ReactAppDependencyProvider:
|
|
:path: build/generated/ios
|
|
ReactCodegen:
|
|
:path: build/generated/ios
|
|
ReactCommon:
|
|
:path: "../react-native/ReactCommon"
|
|
ReactCommon-Samples:
|
|
:path: "../react-native/ReactCommon/react/nativemodule/samples"
|
|
ScreenshotManager:
|
|
:path: NativeModuleExample
|
|
Yoga:
|
|
:path: "../react-native/ReactCommon/yoga"
|
|
|
|
SPEC CHECKSUMS:
|
|
boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
|
|
DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
|
|
fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6
|
|
FBLazyVector: d3c2dd739a63c1a124e775df075dc7c517a719cb
|
|
fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
|
|
glog: 5683914934d5b6e4240e497e0f4a3b42d1854183
|
|
hermes-engine: 5a9adf9081befbac6b81bc0c81522430a7eb7da1
|
|
MyNativeView: 26b517931cc8bfc7b602c410572b323348185461
|
|
NativeCxxModuleExample: 6a9788a749d522f8b6cc55a56f4760a670e4e2eb
|
|
OCMock: 589f2c84dacb1f5aaf6e4cec1f292551fe748e74
|
|
RCT-Folly: 846fda9475e61ec7bcbf8a3fe81edfcaeb090669
|
|
RCTDeprecation: 3808e36294137f9ee5668f4df2e73dc079cd1dcf
|
|
RCTRequired: a00614e2da5344c2cda3d287050b6cee00e21dc6
|
|
RCTTypeSafety: 459a16418c6b413060d35434ba3e83f5b0bd2651
|
|
React: 170a01a19ba2525ab7f11243e2df6b19bf268093
|
|
React-callinvoker: f08f425e4043cd1998a158b6e39a6aed1fd1d718
|
|
React-Core: d35c5cf69898fd026e5cd93a0454b1d42e999d3e
|
|
React-CoreModules: 3ce1d43f6cc37f43759ec543ce1c0010080f1de1
|
|
React-cxxreact: 52ea845cf7eb1e0fb201ed36e2192de6522a1f60
|
|
React-debug: 195df38487d3f48a7af04deddeb4a5c6d4440416
|
|
React-defaultsnativemodule: 8afea5a4bd07addb523bf48489b8a684ea1bdff0
|
|
React-domnativemodule: 00a3d08568b4e573dcc21ecec829ed425ab10763
|
|
React-Fabric: e2ee903224e68c8fa24aa96e217bad36d7660f5a
|
|
React-FabricComponents: 82043c131381c8b1f6e91c559eb04cdf61decdb7
|
|
React-FabricImage: 264c9ce5241e43e25b94c8de55ac6c3c8a046472
|
|
React-featureflags: 595651ea13c63a9f77f06d9a1973b665b4a28b7e
|
|
React-featureflagsnativemodule: 06823479a2ee210cfa0e9c19447c2722a8d995f2
|
|
React-graphics: 1f99b9b5515eac389f0cf9c85b03abc366d6a933
|
|
React-hermes: f1034a4d5d8edaf78d47a4f21e9898c4bf6fe02f
|
|
React-idlecallbacksnativemodule: 4e65f183318b8a0fbabc481a4eafc0f0d62d1cbf
|
|
React-ImageManager: a6833445e17879933378b7c0ba45ee42115c14bc
|
|
React-jserrorhandler: bec134a192c50338193544404d45df24fb8a19ca
|
|
React-jsi: 4ad77650fb0ca4229569eb2532db7a87e3d12662
|
|
React-jsiexecutor: fa5b80bdbe1ceffc33a892da20fc07b4dfa4df7a
|
|
React-jsinspector: 10b5dc4eef2a3d05b80be2114ed676496c5bf59c
|
|
React-jsinspectorcdp: 5fb266e5f23d3a2819ba848e9d4d0b6b00f95934
|
|
React-jsinspectornetwork: 1655a81f3fe14789df41e063bd56dd130cc3562a
|
|
React-jsinspectortracing: 5b0be488e06958a572e1badfe8509929ae1cc83b
|
|
React-jsitooling: 9e563b89f94cf4baf872fe47105d60ae83f4ce4d
|
|
React-jsitracing: ce443686f52538d1033ce7db1e7d643e866262f0
|
|
React-logger: 116c3ae5a9906671d157aa00882a5ee75a5a7ebc
|
|
React-Mapbuffer: fc937cfa41140d7724c559c3d16c50dd725361c8
|
|
React-microtasksnativemodule: 09899c7389250279bdcc5384f0281bb069979855
|
|
React-NativeModulesApple: d05b718ccd8b68c184e76dbc1efb63385197595b
|
|
React-oscompat: 7133e0e945cda067ae36b22502df663d73002864
|
|
React-perflogger: ada3cdf3dfc8b7cd1fabe3c91b672e23981611ab
|
|
React-performancecdpmetrics: 89ea4585d30c7681ab1378afb3fd845cd0647860
|
|
React-performancetimeline: e7d5849d89ee39557dcd56dfb6e7b0d49003d925
|
|
React-RCTActionSheet: 1bf8cc8086ad1c15da3407dfb7bc9dd94dc7595d
|
|
React-RCTAnimation: 263593e66c89bf810604b1ace15dfa382a1ca2df
|
|
React-RCTAppDelegate: f66939ac7ce5da6eb839c3d84a7098e62498a791
|
|
React-RCTBlob: 7b76230c53fe87d305eeeb250b0aae031bb6cbae
|
|
React-RCTFabric: 2fd2ef899c7219fd39fd61c39750510f88a81434
|
|
React-RCTFBReactNativeSpec: bd9c8093cc3388fe55a8cce47e66712e326e967a
|
|
React-RCTImage: 3e28f3015bc7e8375298e01ebb2032aa05635c32
|
|
React-RCTLinking: 06742cfad41c506091403a414370743a4ed75af3
|
|
React-RCTNetwork: b4577eec0092c16d8996e415e4cac7a372d6d362
|
|
React-RCTPushNotification: ea11178d499696516e0ff9ae335edbe99b06f94b
|
|
React-RCTRuntime: 925039e78fc530e0421c308ccc607f214f3c7be1
|
|
React-RCTSettings: d3c2dd305ec81f7faf42762ec598d57f07fd43be
|
|
React-RCTTest: 2db46eda60bc2228cb67622a580e8e86b00088d9
|
|
React-RCTText: e416825b80c530647040ef91d23ffd35ccc87981
|
|
React-RCTVibration: 1837a27fc16eeffc9509779c3334fde54c012bcc
|
|
React-rendererconsistency: 777c894edc43dde01499189917ac54ee76ae6a6a
|
|
React-renderercss: a9cb6ba7f49a80dc4b4f7008bae1590d12f27049
|
|
React-rendererdebug: fea8bde927403a198742b2d940a5f1cd8230c0b4
|
|
React-RuntimeApple: 6a0c164a8855edb4987b90da2d4d8601302de72d
|
|
React-RuntimeCore: 6dec37113b759b76641bd028bfbbbec8cf923356
|
|
React-runtimeexecutor: f6ad01d321a3b99e772509b4d6f5c25b670103fa
|
|
React-RuntimeHermes: d4f661204d3061219a63951eb4efed4dcaf3f12f
|
|
React-runtimescheduler: ae44fe8b4170a9d59f62e8b7d7b060c179db739d
|
|
React-timing: 9d49179631e5e3c759e6e82d4c613c73da80a144
|
|
React-utils: 0944df8d553d66b27f486282c42a84a969fd2f6c
|
|
ReactAppDependencyProvider: 68f2d2cefd6c9b9f2865246be2bfe86ebd49238d
|
|
ReactCodegen: ff8d79aa6b195efceb75a7cd3cafa9f05d1cbfe0
|
|
ReactCommon: a53973ab35d399560ace331ec9e2b26db0592cec
|
|
ReactCommon-Samples: dcc128cbf51ac38d2578791750d0a046d1b8a5e9
|
|
ScreenshotManager: 370045f403c555760ae26d85a01dda89d257fa7b
|
|
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
|
|
Yoga: 59290f2ce3fc5c34797a21244288cad99b357b63
|
|
|
|
PODFILE CHECKSUM: 995beda3236c2c76801e7a4efc7fedcd390220e6
|
|
|
|
COCOAPODS: 1.16.2
|