-
-
Notifications
You must be signed in to change notification settings - Fork 597
feat: add support for [email protected]
#2581
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 18 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
b1e3464
mark: start upgrade
kkafar f4121bd
Node deps in FE
kkafar 3d52718
Code changes for FabricExample
kkafar 393d686
Reinstall native iOS deps
kkafar c8c4635
TOREVERT: Remove dependency on gesture-handler and reanimated
kkafar e26d131
TOREVERT: use only single test in apps
kkafar 428bc0a
TOREVERT: update podfiles after removal of GH and REA
kkafar 7ce428a
Add AppDelegate.swift to project targets in FE
kkafar c1b9ac4
Add missing bridging header
kkafar 92a6ee4
Merge branch 'main' into @kkafar/support-0.77
kkafar 09af0d7
Update yarn lock once again
kkafar a8cd2b5
feat: Use `BaseReactPackage` instead of `TurboReactPackage` (#2546)
mrousavy 7c89096
Bump RN in libarary to 0.77.0-rc.3
kkafar f968e05
Update view manager interfaces & delegates for Paper
kkafar ad13f41
Bump RNSAC to 5.0.0 in FE
kkafar 381ae77
POSSIBLY TO REVERT: Remove patches for gesture handler 2.20.0
kkafar 1bc4a9c
Update patch for react-native-safe-area-context
kkafar 937c5e0
All Android + iOS non-appdelegate-related changes for Example
kkafar d8daf6c
Rest of iOS changes for Example
kkafar 7ad8e06
Workaround for autolinking on older rncli versions
kkafar 13905c1
Merge branch 'main' into @kkafar/support-0.77
kkafar 6216502
Bump RN to rc.4
kkafar cf86e79
Bump RN to rc.6
kkafar 2c690d4
Restore reanimated with a patch
kkafar 6a31905
Restore gesture-handler (current main)
kkafar 683905d
Restore App.tsx
kkafar 48b0a89
Restore apps/tests/index.ts
kkafar b8d896c
Update locks in hope that yarn lets my CI run
kkafar 6b608f7
Patch for reanimated
kkafar 7753fd0
Final patch for reanimated
kkafar 7259db1
Fix reanimated patch in FabricExample
kkafar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
30 changes: 0 additions & 30 deletions
30
Example/patches/react-native-safe-area-context+4.10.5.patch
This file was deleted.
Oops, something went wrong.
39 changes: 39 additions & 0 deletions
39
Example/patches/react-native-safe-area-context+5.0.0.patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| diff --git a/node_modules/react-native-safe-area-context/android/src/paper/java/com/facebook/react/viewmanagers/RNCSafeAreaProviderManagerDelegate.java b/node_modules/react-native-safe-area-context/android/src/paper/java/com/facebook/react/viewmanagers/RNCSafeAreaProviderManagerDelegate.java | ||
| index dd4ef6c..5043a0f 100644 | ||
| --- a/node_modules/react-native-safe-area-context/android/src/paper/java/com/facebook/react/viewmanagers/RNCSafeAreaProviderManagerDelegate.java | ||
| +++ b/node_modules/react-native-safe-area-context/android/src/paper/java/com/facebook/react/viewmanagers/RNCSafeAreaProviderManagerDelegate.java | ||
| @@ -11,12 +11,13 @@ package com.facebook.react.viewmanagers; | ||
|
|
||
| import android.view.View; | ||
| import androidx.annotation.Nullable; | ||
| +import com.facebook.react.uimanager.BaseViewManager; | ||
| import com.facebook.react.uimanager.BaseViewManagerDelegate; | ||
| -import com.facebook.react.uimanager.BaseViewManagerInterface; | ||
| +import com.facebook.react.uimanager.LayoutShadowNode; | ||
|
|
||
| public class RNCSafeAreaProviderManagerDelegate< | ||
| T extends View, | ||
| - U extends BaseViewManagerInterface<T> & RNCSafeAreaProviderManagerInterface<T>> | ||
| + U extends BaseViewManager<T, ? extends LayoutShadowNode> & RNCSafeAreaProviderManagerInterface<T>> | ||
| extends BaseViewManagerDelegate<T, U> { | ||
| public RNCSafeAreaProviderManagerDelegate(U viewManager) { | ||
| super(viewManager); | ||
| diff --git a/node_modules/react-native-safe-area-context/android/src/paper/java/com/facebook/react/viewmanagers/RNCSafeAreaViewManagerDelegate.java b/node_modules/react-native-safe-area-context/android/src/paper/java/com/facebook/react/viewmanagers/RNCSafeAreaViewManagerDelegate.java | ||
| index de1686c..2c077ce 100644 | ||
| --- a/node_modules/react-native-safe-area-context/android/src/paper/java/com/facebook/react/viewmanagers/RNCSafeAreaViewManagerDelegate.java | ||
| +++ b/node_modules/react-native-safe-area-context/android/src/paper/java/com/facebook/react/viewmanagers/RNCSafeAreaViewManagerDelegate.java | ||
| @@ -12,11 +12,12 @@ package com.facebook.react.viewmanagers; | ||
| import android.view.View; | ||
| import androidx.annotation.Nullable; | ||
| import com.facebook.react.bridge.ReadableMap; | ||
| +import com.facebook.react.uimanager.BaseViewManager; | ||
| import com.facebook.react.uimanager.BaseViewManagerDelegate; | ||
| -import com.facebook.react.uimanager.BaseViewManagerInterface; | ||
| +import com.facebook.react.uimanager.LayoutShadowNode; | ||
|
|
||
| public class RNCSafeAreaViewManagerDelegate< | ||
| - T extends View, U extends BaseViewManagerInterface<T> & RNCSafeAreaViewManagerInterface<T>> | ||
| + T extends View, U extends BaseViewManager<T, ? extends LayoutShadowNode> & RNCSafeAreaViewManagerInterface<T>> | ||
| extends BaseViewManagerDelegate<T, U> { | ||
| public RNCSafeAreaViewManagerDelegate(U viewManager) { | ||
| super(viewManager); |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not required for Fabric, as these files are auto generated there.