Skip to content

Commit 0e39c53

Browse files
kkafarkligarski
authored andcommitted
fix: point to existing symbol names in ios.componentProvider (#2583)
## Description #2567 introduced `ios.componentProvider` field to package definition - and that's fine, but we're pointing to wrong names there. ## Changes Updated the names to existing symbol names. ## Test code and steps to reproduce This caused runtime errors when running the app on 0.77. I need this commit for the #2581 (0.77 support) ## Checklist - [ ] Included code example that can be used to test this change - [ ] Updated TS types - [ ] Updated documentation: <!-- For adding new props to native-stack --> - [ ] https://github.com/software-mansion/react-native-screens/blob/main/guides/GUIDE_FOR_LIBRARY_AUTHORS.md - [ ] https://github.com/software-mansion/react-native-screens/blob/main/native-stack/README.md - [ ] https://github.com/software-mansion/react-native-screens/blob/main/src/types.tsx - [ ] https://github.com/software-mansion/react-native-screens/blob/main/src/native-stack/types.tsx - [ ] Ensured that CI passes
1 parent ea1c383 commit 0e39c53

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,14 +161,14 @@
161161
"componentProvider": {
162162
"RNSFullWindowOverlay": "RNSFullWindowOverlay",
163163
"RNSModalScreen": "RNSModalScreen",
164-
"RNSScreenContainer": "RNSScreenContainer",
164+
"RNSScreenContainer": "RNSScreenContainerView",
165165
"RNSScreenContentWrapper": "RNSScreenContentWrapper",
166166
"RNSScreenFooter": "RNSScreenFooter",
167-
"RNSScreen": "RNSScreen",
168-
"RNSScreenNavigationContainer": "RNSScreenNavigationContainer",
167+
"RNSScreen": "RNSScreenView",
168+
"RNSScreenNavigationContainer": "RNSScreenNavigationContainerView",
169169
"RNSScreenStackHeaderConfig": "RNSScreenStackHeaderConfig",
170170
"RNSScreenStackHeaderSubview": "RNSScreenStackHeaderSubview",
171-
"RNSScreenStack": "RNSScreenStack",
171+
"RNSScreenStack": "RNSScreenStackView",
172172
"RNSSearchBar": "RNSSearchBar"
173173
}
174174
}

0 commit comments

Comments
 (0)