@@ -1987,8 +1987,8 @@ interface RCTScrollView : public RCTView <UIScrollViewDelegate, RCTScrollablePro
19871987interface RCTScrollViewComponentView {
19881988 protected __pad0__;
19891989 public @property (assign) CGRect firstResponderFocus;
1990+ public @property (strong) UIScrollView* scrollView;
19901991 public @property (strong, readonly) RCTGenericDelegateSplitter<id<UIScrollViewDelegate>>* scrollViewDelegateSplitter;
1991- public @property (strong, readonly) UIScrollView* scrollView;
19921992 public @property (strong, readonly) UIView* containerView;
19931993 public @property (weak) UIView* firstResponderViewOutsideScrollView;
19941994 public virtual static _Nullable RCTScrollViewComponentView* findScrollViewComponentViewForView:(UIView* view);
@@ -6469,6 +6469,11 @@ class facebook::react::NativeVibrationSpecJSI : public facebook::react::ObjCTurb
64696469 public NativeVibrationSpecJSI(const facebook::react::ObjCTurboModule::InitParams& params);
64706470}
64716471
6472+ class facebook::react::NativeViewTransition : public facebook::react::NativeViewTransitionCxxSpec<facebook::react::NativeViewTransition> {
6473+ public NativeViewTransition(std::shared_ptr<facebook::react::CallInvoker> jsInvoker);
6474+ public std::optional<facebook::jsi::Object> getViewTransitionInstance(facebook::jsi::Runtime& rt, const std::string& name, const std::string& pseudo);
6475+ }
6476+
64726477class facebook::react::NativeWebSocketModuleSpecJSI : public facebook::react::ObjCTurboModule {
64736478 public NativeWebSocketModuleSpecJSI(const facebook::react::ObjCTurboModule::InitParams& params);
64746479}
@@ -8262,6 +8267,7 @@ enum facebook::react::BlendMode {
82628267 Multiply,
82638268 Normal,
82648269 Overlay,
8270+ PlusLighter,
82658271 Saturation,
82668272 Screen,
82678273 SoftLight,
@@ -11295,6 +11301,12 @@ class facebook::react::NativeVibrationCxxSpec : public facebook::react::TurboMod
1129511301 public static constexpr std::string_view kModuleName;
1129611302}
1129711303
11304+ template <typename T>
11305+ class facebook::react::NativeViewTransitionCxxSpec : public facebook::react::TurboModule {
11306+ protected NativeViewTransitionCxxSpec(std::shared_ptr<facebook::react::CallInvoker> jsInvoker);
11307+ public static constexpr std::string_view kModuleName;
11308+ }
11309+
1129811310template <typename T>
1129911311class facebook::react::NativeWebSocketModuleCxxSpec : public facebook::react::TurboModule {
1130011312 protected NativeWebSocketModuleCxxSpec(std::shared_ptr<facebook::react::CallInvoker> jsInvoker);
@@ -12964,6 +12976,7 @@ class facebook::react::jsinspector_modern::RuntimeAgent {
1296412976 public const facebook::react::jsinspector_modern::ExecutionContextDescription& getExecutionContextDescription() const;
1296512977 public facebook::react::jsinspector_modern::RuntimeAgent::ExportedState getExportedState();
1296612978 public void notifyBindingCalled(const std::string& bindingName, const std::string& payload);
12979+ public void notifyFastRefreshComplete();
1296712980 public ~RuntimeAgent();
1296812981}
1296912982
0 commit comments