react-native-navigation 8.6.1 → 8.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/ReactNativeNavigation.podspec +23 -48
  2. package/android/src/main/java/com/reactnativenavigation/options/params/ReactPlatformColor.kt +1 -1
  3. package/android/src/main/java/com/reactnativenavigation/options/parsers/ColorParser.kt +1 -1
  4. package/android/src/test/java/com/reactnativenavigation/options/parsers/ColorParseTest.java +3 -1
  5. package/ios/RNNRefreshControll.m +91 -0
  6. package/ios/RNNSideMenu/MMDrawerController/MMDrawerController.mm +6 -1
  7. package/ios/TopBarAppearancePresenter.mm +6 -0
  8. package/lib/typescript/Mock/Application.d.ts +1 -3
  9. package/lib/typescript/Mock/Application.d.ts.map +1 -1
  10. package/lib/typescript/Mock/Components/BottomTabs.d.ts +1 -6
  11. package/lib/typescript/Mock/Components/BottomTabs.d.ts.map +1 -1
  12. package/lib/typescript/Mock/Components/ComponentScreen.d.ts +1 -3
  13. package/lib/typescript/Mock/Components/ComponentScreen.d.ts.map +1 -1
  14. package/lib/typescript/Mock/Components/LayoutComponent.d.ts +1 -6
  15. package/lib/typescript/Mock/Components/LayoutComponent.d.ts.map +1 -1
  16. package/lib/typescript/Mock/Components/Modals.d.ts +1 -6
  17. package/lib/typescript/Mock/Components/Modals.d.ts.map +1 -1
  18. package/lib/typescript/Mock/Components/NavigationButton.d.ts +1 -6
  19. package/lib/typescript/Mock/Components/NavigationButton.d.ts.map +1 -1
  20. package/lib/typescript/Mock/Components/Overlays.d.ts +1 -6
  21. package/lib/typescript/Mock/Components/Overlays.d.ts.map +1 -1
  22. package/lib/typescript/Mock/Components/SideMenu.d.ts +4 -24
  23. package/lib/typescript/Mock/Components/SideMenu.d.ts.map +1 -1
  24. package/lib/typescript/Mock/Components/Stack.d.ts +1 -6
  25. package/lib/typescript/Mock/Components/Stack.d.ts.map +1 -1
  26. package/lib/typescript/Mock/Components/TopBar.d.ts +1 -3
  27. package/lib/typescript/Mock/Components/TopBar.d.ts.map +1 -1
  28. package/package.json +14 -13
@@ -1,7 +1,10 @@
1
1
  require 'json'
2
2
 
3
3
  package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
4
- fabric_enabled = ENV['RCT_NEW_ARCH_ENABLED'] == '1'
4
+
5
+ folly_compiler_flags = folly_flags()
6
+ use_hermes = ENV['USE_HERMES'] == nil || ENV['USE_HERMES'] == '1'
7
+ use_hermes_flag = use_hermes ? "-DUSE_HERMES=1" : ""
5
8
 
6
9
  Pod::Spec.new do |s|
7
10
  s.name = "ReactNativeNavigation"
@@ -12,61 +15,33 @@ Pod::Spec.new do |s|
12
15
  s.authors = "Wix.com"
13
16
  s.homepage = package['homepage']
14
17
  s.license = package['license']
15
- s.platform = :ios, "11.0"
18
+ s.platform = :ios, min_ios_version_supported
16
19
 
17
20
  s.module_name = 'ReactNativeNavigation'
18
- s.default_subspec = 'Core'
19
-
20
- s.subspec 'Core' do |ss|
21
- s.source = { :git => "https://github.com/wix/react-native-navigation.git", :tag => "#{s.version}" }
22
- s.source_files = 'ios/**/*.{h,m,mm,cpp}'
23
- s.exclude_files = "ios/ReactNativeNavigationTests/**/*.*", "ios/OCMock/**/*.*"
24
-
25
- s.public_header_files = [
26
- 'ios/RNNAppDelegate.h',
27
- 'ios/ReactNativeVersionExtracted.h'
28
- ]
29
- end
30
21
 
31
- folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -DFOLLY_CFG_NO_COROUTINES=1'
22
+ s.source = { :git => "https://github.com/wix/react-native-navigation.git", :tag => "#{s.version}" }
23
+ s.source_files = 'ios/**/*.{h,m,mm,cpp}'
24
+ s.exclude_files = "ios/ReactNativeNavigationTests/**/*.*", "ios/OCMock/**/*.*"
32
25
 
33
- # Base xcconfig settings
34
- xcconfig_settings = {
35
- 'HEADER_SEARCH_PATHS' => '"$(PODS_ROOT)/boost" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/RCT-Folly" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_ROOT)/Headers/Private/Yoga"',
36
- "CLANG_CXX_LANGUAGE_STANDARD" => "c++20",
37
- "OTHER_CPLUSPLUSFLAGS" => "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
38
- }
26
+ s.public_header_files = [
27
+ 'ios/RNNAppDelegate.h',
28
+ 'ios/ReactNativeVersionExtracted.h'
29
+ ]
39
30
 
40
- xcconfig_settings["DEFINES_MODULE"] = "YES"
41
-
42
- s.pod_target_xcconfig = xcconfig_settings
31
+ # Add Folly compiler flags to prevent coroutines header issues
32
+ # Add Hermes flag when using Hermes engine
33
+ s.compiler_flags = "#{folly_compiler_flags} #{use_hermes_flag}"
43
34
 
44
- if fabric_enabled
45
- install_modules_dependencies(s)
46
-
47
- s.compiler_flags = folly_compiler_flags + ' ' + '-DRCT_NEW_ARCH_ENABLED' + ' ' + '-DUSE_HERMES=1'
48
- s.requires_arc = true
35
+ # Add header search paths for React-Core private headers (needed for RCTCxxBridgeDelegate.h, etc.)
36
+ s.pod_target_xcconfig = {
37
+ 'HEADER_SEARCH_PATHS' => '"$(PODS_ROOT)/Headers/Private/React-Core"',
38
+ 'DEFINES_MODULE' => 'YES'
39
+ }
49
40
 
50
- s.dependency "React"
51
- s.dependency "React-RCTFabric"
52
- s.dependency "React-cxxreact"
53
- s.dependency "React-Fabric"
54
- s.dependency "React-Codegen"
55
- s.dependency "RCT-Folly"
56
- s.dependency "RCTRequired"
57
- s.dependency "RCTTypeSafety"
58
- s.dependency "ReactCommon"
59
- s.dependency "React-runtimeexecutor"
60
- s.dependency "React-rncore"
61
- s.dependency "React-RuntimeCore"
62
- else
63
- s.compiler_flags = folly_compiler_flags
64
- end
41
+ # Let install_modules_dependencies handle all React Native dependencies
42
+ install_modules_dependencies(s)
65
43
 
66
- s.dependency 'React-Core'
67
- s.dependency 'React-CoreModules'
68
- s.dependency 'React-RCTImage'
69
- s.dependency 'React-RCTText'
44
+ s.requires_arc = true
70
45
  s.dependency 'HMSegmentedControl'
71
46
  s.frameworks = 'UIKit'
72
47
  end
@@ -5,7 +5,7 @@ import com.facebook.react.bridge.ReadableMap
5
5
  import com.reactnativenavigation.NavigationApplication
6
6
 
7
7
  private fun parsePlatformColor(paths: ReadableMap) =
8
- ColorPropConverter.getColor(paths, NavigationApplication.instance)
8
+ ColorPropConverter.getColor(paths, NavigationApplication.instance) ?: 0 // The default implementation
9
9
 
10
10
  class ReactPlatformColor(private val paths: ReadableMap) :
11
11
  Colour(parsePlatformColor(paths)) {
@@ -13,7 +13,7 @@ object ColorParser {
13
13
  private const val VAL_NO_COLOR = "NoColor"
14
14
 
15
15
  @JvmStatic
16
- fun parse(context: Context?, json: JSONObject, colorName: String?): Colour {
16
+ fun parse(context: Context, json: JSONObject, colorName: String?): Colour {
17
17
  if (json.has(KEY_RESOURCE_PATHS)) {
18
18
  return ReactPlatformColor(JSONParser.convert(json))
19
19
  }
@@ -2,6 +2,8 @@ package com.reactnativenavigation.options.parsers;
2
2
 
3
3
  import static org.assertj.core.api.Java6Assertions.assertThat;
4
4
 
5
+ import android.content.Context;
6
+
5
7
  import com.facebook.react.bridge.Arguments;
6
8
  import com.facebook.react.bridge.JavaOnlyArray;
7
9
  import com.facebook.react.bridge.JavaOnlyMap;
@@ -23,7 +25,7 @@ public class ColorParseTest extends BaseRobolectricTest {
23
25
  public void nullIsParsedAsNoColor() throws JSONException {
24
26
  JSONObject json = new JSONObject();
25
27
  json.put("color", "NoColor");
26
- assertThat(ColorParser.parse(null, json, "color")).isInstanceOf(DontApplyColour.class);
28
+ assertThat(ColorParser.parse(Mockito.mock(Context.class), json, "color")).isInstanceOf(DontApplyColour.class);
27
29
  }
28
30
 
29
31
  @Test
@@ -0,0 +1,91 @@
1
+ /**
2
+ * Fix for UIRefreshControl spinner flicker with large titles.
3
+ * iOS UIKit internally toggles hidden state during layout changes,
4
+ * causing the spinner to flicker. This swizzles setHidden to block
5
+ * visibility changes while the control is actively refreshing.
6
+ */
7
+
8
+ #import <UIKit/UIKit.h>
9
+ #import <objc/runtime.h>
10
+
11
+ static char kRNNIsEndingRefreshKey;
12
+
13
+ @implementation UIRefreshControl (RNNStable)
14
+
15
+ + (void)load {
16
+ static dispatch_once_t onceToken;
17
+ dispatch_once(&onceToken, ^{
18
+ Class class = [self class];
19
+
20
+ // Swizzle setHidden
21
+ SEL originalSelector = @selector(setHidden:);
22
+ SEL swizzledSelector = @selector(rnn_setHidden:);
23
+
24
+ Method originalMethod = class_getInstanceMethod(class, originalSelector);
25
+ Method swizzledMethod = class_getInstanceMethod(class, swizzledSelector);
26
+
27
+ BOOL didAddMethod = class_addMethod(class,
28
+ originalSelector,
29
+ method_getImplementation(swizzledMethod),
30
+ method_getTypeEncoding(swizzledMethod));
31
+
32
+ if (didAddMethod) {
33
+ class_replaceMethod(class,
34
+ swizzledSelector,
35
+ method_getImplementation(originalMethod),
36
+ method_getTypeEncoding(originalMethod));
37
+ } else {
38
+ method_exchangeImplementations(originalMethod, swizzledMethod);
39
+ }
40
+
41
+ // Swizzle endRefreshing
42
+ SEL originalEndSelector = @selector(endRefreshing);
43
+ SEL swizzledEndSelector = @selector(rnn_endRefreshing);
44
+
45
+ Method originalEndMethod = class_getInstanceMethod(class, originalEndSelector);
46
+ Method swizzledEndMethod = class_getInstanceMethod(class, swizzledEndSelector);
47
+
48
+ didAddMethod = class_addMethod(class,
49
+ originalEndSelector,
50
+ method_getImplementation(originalEndMethod),
51
+ method_getTypeEncoding(originalEndMethod));
52
+
53
+ if (didAddMethod) {
54
+ class_replaceMethod(class,
55
+ swizzledEndSelector,
56
+ method_getImplementation(originalEndMethod),
57
+ method_getTypeEncoding(originalEndMethod));
58
+ } else {
59
+ method_exchangeImplementations(originalEndMethod, swizzledEndMethod);
60
+ }
61
+ });
62
+ }
63
+
64
+ - (BOOL)rnn_isEndingRefresh {
65
+ return [objc_getAssociatedObject(self, &kRNNIsEndingRefreshKey) boolValue];
66
+ }
67
+
68
+ - (void)rnn_setIsEndingRefresh:(BOOL)value {
69
+ objc_setAssociatedObject(self, &kRNNIsEndingRefreshKey, @(value), OBJC_ASSOCIATION_RETAIN_NONATOMIC);
70
+ }
71
+
72
+ - (void)rnn_endRefreshing {
73
+ [self rnn_setIsEndingRefresh:YES];
74
+ [self rnn_endRefreshing];
75
+ [self rnn_setIsEndingRefresh:NO];
76
+ }
77
+
78
+ - (void)rnn_setHidden:(BOOL)hidden {
79
+ if ([self rnn_isEndingRefresh]) {
80
+ [self rnn_setHidden:hidden];
81
+ return;
82
+ }
83
+
84
+ if (self.isRefreshing) {
85
+ return;
86
+ }
87
+
88
+ [self rnn_setHidden:hidden];
89
+ }
90
+
91
+ @end
@@ -387,7 +387,12 @@ static NSString *MMDrawerOpenSideKey = @"MMDrawerOpenSide";
387
387
  [self.centerContainerView bringSubviewToFront:self.centerContentOverlay];
388
388
  self.centerContentOverlay.alpha = 0.5;
389
389
  }
390
-
390
+
391
+ //Reset the centerContainerView frame if it deviated
392
+ if (self.centerContainerView.frame.origin.x == visibleSide == MMDrawerSideLeft ? _maximumLeftDrawerWidth : _maximumRightDrawerWidth) {
393
+ [self.centerContainerView setFrame:self.childControllerContainerView.bounds];
394
+ }
395
+
391
396
  CGFloat distance = ABS(currentFrame.origin.x - finalFrame.origin.x);
392
397
  NSTimeInterval duration = [self animationDurationForDistance:distance velocity:velocity];
393
398
 
@@ -148,6 +148,12 @@
148
148
  color:fontColor
149
149
  centered:YES];
150
150
 
151
+ // Let's not forget to set our UINavigationBarAppearance's lineBreakMode to TruncatingTail!
152
+ id attrib = titleTextAttributes[NSParagraphStyleAttributeName];
153
+ if ([attrib isKindOfClass:[NSMutableParagraphStyle class]]) {
154
+ ((NSMutableParagraphStyle*)titleTextAttributes[NSParagraphStyleAttributeName]).lineBreakMode = NSLineBreakByTruncatingTail;
155
+ }
156
+
151
157
  self.getAppearance.titleTextAttributes = titleTextAttributes;
152
158
  self.getScrollEdgeAppearance.titleTextAttributes = titleTextAttributes;
153
159
  }
@@ -10,9 +10,6 @@ export declare const Application: {
10
10
  forceUpdate(callback?: (() => void) | undefined): void;
11
11
  readonly props: Readonly<ApplicationProps>;
12
12
  state: Readonly<{}>;
13
- refs: {
14
- [key: string]: React.ReactInstance;
15
- };
16
13
  componentDidMount?(): void;
17
14
  shouldComponentUpdate?(nextProps: Readonly<ApplicationProps>, nextState: Readonly<{}>, nextContext: any): boolean;
18
15
  componentWillUnmount?(): void;
@@ -27,6 +24,7 @@ export declare const Application: {
27
24
  UNSAFE_componentWillUpdate?(nextProps: Readonly<ApplicationProps>, nextState: Readonly<{}>, nextContext: any): void;
28
25
  };
29
26
  contextType?: React.Context<any> | undefined;
27
+ propTypes?: any;
30
28
  };
31
29
  export {};
32
30
  //# sourceMappingURL=Application.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Application.d.ts","sourceRoot":"","sources":["../../../Mock/Application.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,UAAU,gBAAgB;IACxB,UAAU,EAAE,MAAM,IAAI,CAAC;CACxB;AAED,eAAO,MAAM,WAAW;gBAED,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;CAmBtC,CAAC"}
1
+ {"version":3,"file":"Application.d.ts","sourceRoot":"","sources":["../../../Mock/Application.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,UAAU,gBAAgB;IACxB,UAAU,EAAE,MAAM,IAAI,CAAC;CACxB;AAED,eAAO,MAAM,WAAW;gBAED,gBAAgB;;;;;;;;;;;;;;;;;;;;;;CAmBtC,CAAC"}
@@ -8,9 +8,6 @@ export declare const BottomTabs: {
8
8
  forceUpdate(callback?: (() => void) | undefined): void;
9
9
  readonly props: Readonly<ComponentProps>;
10
10
  state: Readonly<{}>;
11
- refs: {
12
- [key: string]: React.ReactInstance;
13
- };
14
11
  componentDidMount?(): void;
15
12
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
16
13
  componentWillUnmount?(): void;
@@ -31,9 +28,6 @@ export declare const BottomTabs: {
31
28
  forceUpdate(callback?: (() => void) | undefined): void;
32
29
  readonly props: Readonly<ComponentProps>;
33
30
  state: Readonly<{}>;
34
- refs: {
35
- [key: string]: React.ReactInstance;
36
- };
37
31
  componentDidMount?(): void;
38
32
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
39
33
  componentWillUnmount?(): void;
@@ -48,5 +42,6 @@ export declare const BottomTabs: {
48
42
  UNSAFE_componentWillUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): void;
49
43
  };
50
44
  contextType?: React.Context<any> | undefined;
45
+ propTypes?: any;
51
46
  };
52
47
  //# sourceMappingURL=BottomTabs.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"BottomTabs.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/BottomTabs.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAGnD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQtB,CAAC"}
1
+ {"version":3,"file":"BottomTabs.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/BottomTabs.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAGnD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQtB,CAAC"}
@@ -11,9 +11,6 @@ export declare const ComponentScreen: {
11
11
  forceUpdate(callback?: (() => void) | undefined): void;
12
12
  readonly props: Readonly<ComponentProps>;
13
13
  state: Readonly<{}>;
14
- refs: {
15
- [key: string]: React.ReactInstance;
16
- };
17
14
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
18
15
  componentWillUnmount?(): void;
19
16
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
@@ -27,5 +24,6 @@ export declare const ComponentScreen: {
27
24
  UNSAFE_componentWillUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): void;
28
25
  };
29
26
  contextType?: React.Context<any> | undefined;
27
+ propTypes?: any;
30
28
  };
31
29
  //# sourceMappingURL=ComponentScreen.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ComponentScreen.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/ComponentScreen.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAGzC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAanD,eAAO,MAAM,eAAe;gBAEL,cAAc;;qBAQpB,OAAO;;;;;;;;;;;;;;;;;;;;;;;;CAgFvB,CAAC"}
1
+ {"version":3,"file":"ComponentScreen.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/ComponentScreen.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAGzC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAanD,eAAO,MAAM,eAAe;gBAEL,cAAc;;qBAQpB,OAAO;;;;;;;;;;;;;;;;;;;;;;CAgFvB,CAAC"}
@@ -9,9 +9,6 @@ export declare const LayoutComponent: {
9
9
  forceUpdate(callback?: (() => void) | undefined): void;
10
10
  readonly props: Readonly<ComponentProps>;
11
11
  state: Readonly<{}>;
12
- refs: {
13
- [key: string]: React.ReactInstance;
14
- };
15
12
  componentDidMount?(): void;
16
13
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
17
14
  componentWillUnmount?(): void;
@@ -32,9 +29,6 @@ export declare const LayoutComponent: {
32
29
  forceUpdate(callback?: (() => void) | undefined): void;
33
30
  readonly props: Readonly<ComponentProps>;
34
31
  state: Readonly<{}>;
35
- refs: {
36
- [key: string]: React.ReactInstance;
37
- };
38
32
  componentDidMount?(): void;
39
33
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
40
34
  componentWillUnmount?(): void;
@@ -48,5 +42,6 @@ export declare const LayoutComponent: {
48
42
  UNSAFE_componentWillUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): void;
49
43
  };
50
44
  contextType?: React.Context<any> | undefined;
45
+ propTypes?: any;
51
46
  };
52
47
  //# sourceMappingURL=LayoutComponent.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"LayoutComponent.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/LayoutComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAGzC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAKnD,eAAO,MAAM,eAAe;;;iCAqBD,KAAK,aAAa,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;iCAAjC,KAAK,aAAa,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;CAO3D,CAAC"}
1
+ {"version":3,"file":"LayoutComponent.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/LayoutComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAGzC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAKnD,eAAO,MAAM,eAAe;;;iCAqBD,KAAK,aAAa,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;iCAAjC,KAAK,aAAa,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;CAO3D,CAAC"}
@@ -8,9 +8,6 @@ export declare const Modals: {
8
8
  forceUpdate(callback?: (() => void) | undefined): void;
9
9
  readonly props: Readonly<ComponentProps>;
10
10
  state: Readonly<{}>;
11
- refs: {
12
- [key: string]: React.ReactInstance;
13
- };
14
11
  componentDidMount?(): void;
15
12
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
16
13
  componentWillUnmount?(): void;
@@ -31,9 +28,6 @@ export declare const Modals: {
31
28
  forceUpdate(callback?: (() => void) | undefined): void;
32
29
  readonly props: Readonly<ComponentProps>;
33
30
  state: Readonly<{}>;
34
- refs: {
35
- [key: string]: React.ReactInstance;
36
- };
37
31
  componentDidMount?(): void;
38
32
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
39
33
  componentWillUnmount?(): void;
@@ -48,5 +42,6 @@ export declare const Modals: {
48
42
  UNSAFE_componentWillUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): void;
49
43
  };
50
44
  contextType?: React.Context<any> | undefined;
45
+ propTypes?: any;
51
46
  };
52
47
  //# sourceMappingURL=Modals.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Modals.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/Modals.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAMnD,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAalB,CAAC"}
1
+ {"version":3,"file":"Modals.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/Modals.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAMnD,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAalB,CAAC"}
@@ -15,9 +15,6 @@ export declare const NavigationButton: {
15
15
  forceUpdate(callback?: (() => void) | undefined): void;
16
16
  readonly props: Readonly<ButtonProps>;
17
17
  state: Readonly<{}>;
18
- refs: {
19
- [key: string]: React.ReactInstance;
20
- };
21
18
  componentDidMount?(): void;
22
19
  shouldComponentUpdate?(nextProps: Readonly<ButtonProps>, nextState: Readonly<{}>, nextContext: any): boolean;
23
20
  componentWillUnmount?(): void;
@@ -41,9 +38,6 @@ export declare const NavigationButton: {
41
38
  forceUpdate(callback?: (() => void) | undefined): void;
42
39
  readonly props: Readonly<ButtonProps>;
43
40
  state: Readonly<{}>;
44
- refs: {
45
- [key: string]: React.ReactInstance;
46
- };
47
41
  componentDidMount?(): void;
48
42
  shouldComponentUpdate?(nextProps: Readonly<ButtonProps>, nextState: Readonly<{}>, nextContext: any): boolean;
49
43
  componentWillUnmount?(): void;
@@ -58,6 +52,7 @@ export declare const NavigationButton: {
58
52
  UNSAFE_componentWillUpdate?(nextProps: Readonly<ButtonProps>, nextState: Readonly<{}>, nextContext: any): void;
59
53
  };
60
54
  contextType?: React.Context<any> | undefined;
55
+ propTypes?: any;
61
56
  };
62
57
  export {};
63
58
  //# sourceMappingURL=NavigationButton.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"NavigationButton.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/NavigationButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,EAAc,mBAAmB,EAAE,MAAM,KAAK,CAAC;AAGtD,UAAU,WAAW;IACnB,MAAM,EAAE,mBAAmB,CAAC;IAC5B,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,eAAO,MAAM,gBAAgB;;;;;iCA4DF,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;iCAAH,GAAG;;;;;;;;;;;;;;;;;;;;;;;CAe7B,CAAC"}
1
+ {"version":3,"file":"NavigationButton.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/NavigationButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,EAAc,mBAAmB,EAAE,MAAM,KAAK,CAAC;AAGtD,UAAU,WAAW;IACnB,MAAM,EAAE,mBAAmB,CAAC;IAC5B,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,eAAO,MAAM,gBAAgB;;;;;iCA4DF,GAAG;;;;;;;;;;;;;;;;;;;;;;;iCAAH,GAAG;;;;;;;;;;;;;;;;;;;;;CAe7B,CAAC"}
@@ -8,9 +8,6 @@ export declare const Overlays: {
8
8
  forceUpdate(callback?: (() => void) | undefined): void;
9
9
  readonly props: Readonly<ComponentProps>;
10
10
  state: Readonly<{}>;
11
- refs: {
12
- [key: string]: React.ReactInstance;
13
- };
14
11
  componentDidMount?(): void;
15
12
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
16
13
  componentWillUnmount?(): void;
@@ -31,9 +28,6 @@ export declare const Overlays: {
31
28
  forceUpdate(callback?: (() => void) | undefined): void;
32
29
  readonly props: Readonly<ComponentProps>;
33
30
  state: Readonly<{}>;
34
- refs: {
35
- [key: string]: React.ReactInstance;
36
- };
37
31
  componentDidMount?(): void;
38
32
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
39
33
  componentWillUnmount?(): void;
@@ -48,5 +42,6 @@ export declare const Overlays: {
48
42
  UNSAFE_componentWillUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): void;
49
43
  };
50
44
  contextType?: React.Context<any> | undefined;
45
+ propTypes?: any;
51
46
  };
52
47
  //# sourceMappingURL=Overlays.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Overlays.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/Overlays.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAOnD,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAapB,CAAC"}
1
+ {"version":3,"file":"Overlays.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/Overlays.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAOnD,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAapB,CAAC"}
@@ -8,9 +8,6 @@ export declare const SideMenuRoot: {
8
8
  forceUpdate(callback?: (() => void) | undefined): void;
9
9
  readonly props: Readonly<ComponentProps>;
10
10
  state: Readonly<{}>;
11
- refs: {
12
- [key: string]: React.ReactInstance;
13
- };
14
11
  componentDidMount?(): void;
15
12
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
16
13
  componentWillUnmount?(): void;
@@ -31,9 +28,6 @@ export declare const SideMenuRoot: {
31
28
  forceUpdate(callback?: (() => void) | undefined): void;
32
29
  readonly props: Readonly<ComponentProps>;
33
30
  state: Readonly<{}>;
34
- refs: {
35
- [key: string]: React.ReactInstance;
36
- };
37
31
  componentDidMount?(): void;
38
32
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
39
33
  componentWillUnmount?(): void;
@@ -48,6 +42,7 @@ export declare const SideMenuRoot: {
48
42
  UNSAFE_componentWillUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): void;
49
43
  };
50
44
  contextType?: React.Context<any> | undefined;
45
+ propTypes?: any;
51
46
  };
52
47
  export declare const SideMenuLeft: {
53
48
  new (props: ComponentProps): {
@@ -57,9 +52,6 @@ export declare const SideMenuLeft: {
57
52
  forceUpdate(callback?: (() => void) | undefined): void;
58
53
  readonly props: Readonly<ComponentProps>;
59
54
  state: Readonly<{}>;
60
- refs: {
61
- [key: string]: React.ReactInstance;
62
- };
63
55
  componentDidMount?(): void;
64
56
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
65
57
  componentWillUnmount?(): void;
@@ -80,9 +72,6 @@ export declare const SideMenuLeft: {
80
72
  forceUpdate(callback?: (() => void) | undefined): void;
81
73
  readonly props: Readonly<ComponentProps>;
82
74
  state: Readonly<{}>;
83
- refs: {
84
- [key: string]: React.ReactInstance;
85
- };
86
75
  componentDidMount?(): void;
87
76
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
88
77
  componentWillUnmount?(): void;
@@ -97,6 +86,7 @@ export declare const SideMenuLeft: {
97
86
  UNSAFE_componentWillUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): void;
98
87
  };
99
88
  contextType?: React.Context<any> | undefined;
89
+ propTypes?: any;
100
90
  };
101
91
  export declare const SideMenuCenter: {
102
92
  new (props: ComponentProps): {
@@ -106,9 +96,6 @@ export declare const SideMenuCenter: {
106
96
  forceUpdate(callback?: (() => void) | undefined): void;
107
97
  readonly props: Readonly<ComponentProps>;
108
98
  state: Readonly<{}>;
109
- refs: {
110
- [key: string]: React.ReactInstance;
111
- };
112
99
  componentDidMount?(): void;
113
100
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
114
101
  componentWillUnmount?(): void;
@@ -129,9 +116,6 @@ export declare const SideMenuCenter: {
129
116
  forceUpdate(callback?: (() => void) | undefined): void;
130
117
  readonly props: Readonly<ComponentProps>;
131
118
  state: Readonly<{}>;
132
- refs: {
133
- [key: string]: React.ReactInstance;
134
- };
135
119
  componentDidMount?(): void;
136
120
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
137
121
  componentWillUnmount?(): void;
@@ -146,6 +130,7 @@ export declare const SideMenuCenter: {
146
130
  UNSAFE_componentWillUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): void;
147
131
  };
148
132
  contextType?: React.Context<any> | undefined;
133
+ propTypes?: any;
149
134
  };
150
135
  export declare const SideMenuRight: {
151
136
  new (props: ComponentProps): {
@@ -155,9 +140,6 @@ export declare const SideMenuRight: {
155
140
  forceUpdate(callback?: (() => void) | undefined): void;
156
141
  readonly props: Readonly<ComponentProps>;
157
142
  state: Readonly<{}>;
158
- refs: {
159
- [key: string]: React.ReactInstance;
160
- };
161
143
  componentDidMount?(): void;
162
144
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
163
145
  componentWillUnmount?(): void;
@@ -178,9 +160,6 @@ export declare const SideMenuRight: {
178
160
  forceUpdate(callback?: (() => void) | undefined): void;
179
161
  readonly props: Readonly<ComponentProps>;
180
162
  state: Readonly<{}>;
181
- refs: {
182
- [key: string]: React.ReactInstance;
183
- };
184
163
  componentDidMount?(): void;
185
164
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
186
165
  componentWillUnmount?(): void;
@@ -195,5 +174,6 @@ export declare const SideMenuRight: {
195
174
  UNSAFE_componentWillUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): void;
196
175
  };
197
176
  contextType?: React.Context<any> | undefined;
177
+ propTypes?: any;
198
178
  };
199
179
  //# sourceMappingURL=SideMenu.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"SideMenu.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/SideMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAInD,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CASxB,CAAC;AASF,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAoB,CAAC;AAC9C,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAoB,CAAC;AAChD,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAoB,CAAC"}
1
+ {"version":3,"file":"SideMenu.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/SideMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAInD,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CASxB,CAAC;AASF,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAoB,CAAC;AAC9C,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAoB,CAAC;AAChD,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAoB,CAAC"}
@@ -8,9 +8,6 @@ export declare const Stack: {
8
8
  forceUpdate(callback?: (() => void) | undefined): void;
9
9
  readonly props: Readonly<ComponentProps>;
10
10
  state: Readonly<{}>;
11
- refs: {
12
- [key: string]: React.ReactInstance;
13
- };
14
11
  componentDidMount?(): void;
15
12
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
16
13
  componentWillUnmount?(): void;
@@ -31,9 +28,6 @@ export declare const Stack: {
31
28
  forceUpdate(callback?: (() => void) | undefined): void;
32
29
  readonly props: Readonly<ComponentProps>;
33
30
  state: Readonly<{}>;
34
- refs: {
35
- [key: string]: React.ReactInstance;
36
- };
37
31
  componentDidMount?(): void;
38
32
  shouldComponentUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): boolean;
39
33
  componentWillUnmount?(): void;
@@ -48,5 +42,6 @@ export declare const Stack: {
48
42
  UNSAFE_componentWillUpdate?(nextProps: Readonly<ComponentProps>, nextState: Readonly<{}>, nextContext: any): void;
49
43
  };
50
44
  contextType?: React.Context<any> | undefined;
45
+ propTypes?: any;
51
46
  };
52
47
  //# sourceMappingURL=Stack.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Stack.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/Stack.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AACzC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAKnD,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CASjB,CAAC"}
1
+ {"version":3,"file":"Stack.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/Stack.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AACzC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAKnD,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CASjB,CAAC"}
@@ -18,9 +18,6 @@ export declare const TopBar: {
18
18
  forceUpdate(callback?: (() => void) | undefined): void;
19
19
  readonly props: Readonly<TopBarProps>;
20
20
  state: Readonly<{}>;
21
- refs: {
22
- [key: string]: React.ReactInstance;
23
- };
24
21
  componentDidMount?(): void;
25
22
  shouldComponentUpdate?(nextProps: Readonly<TopBarProps>, nextState: Readonly<{}>, nextContext: any): boolean;
26
23
  componentWillUnmount?(): void;
@@ -35,5 +32,6 @@ export declare const TopBar: {
35
32
  UNSAFE_componentWillUpdate?(nextProps: Readonly<TopBarProps>, nextState: Readonly<{}>, nextContext: any): void;
36
33
  };
37
34
  contextType?: React.Context<any> | undefined;
35
+ propTypes?: any;
38
36
  };
39
37
  //# sourceMappingURL=TopBar.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TopBar.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/TopBar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,EAEL,aAAa,EACb,uBAAuB,EACvB,mBAAmB,EACpB,MAAM,KAAK,CAAC;AACb,OAAO,UAAU,MAAM,uBAAuB,CAAC;AAO/C,MAAM,WAAW,WAAW;IAC1B,UAAU,EAAE,UAAU,CAAC;IACvB,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,iBAAiB,CAAC,EAAE,uBAAuB,CAAC;CAC7C;AAED,eAAO,MAAM,MAAM;gBACE,WAAW;;2CA2BK,UAAU;gCAKtB,mBAAmB,EAAE;;4BAgCxB,MAAM,QAAQ,MAAM,WAAW,MAAM;;;;;;;;;;;;;;;;;;;;;;;CAS1D,CAAC"}
1
+ {"version":3,"file":"TopBar.d.ts","sourceRoot":"","sources":["../../../../Mock/Components/TopBar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,EAEL,aAAa,EACb,uBAAuB,EACvB,mBAAmB,EACpB,MAAM,KAAK,CAAC;AACb,OAAO,UAAU,MAAM,uBAAuB,CAAC;AAO/C,MAAM,WAAW,WAAW;IAC1B,UAAU,EAAE,UAAU,CAAC;IACvB,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,iBAAiB,CAAC,EAAE,uBAAuB,CAAC;CAC7C;AAED,eAAO,MAAM,MAAM;gBACE,WAAW;;2CA2BK,UAAU;gCAKtB,mBAAmB,EAAE;;4BAgCxB,MAAM,QAAQ,MAAM,WAAW,MAAM;;;;;;;;;;;;;;;;;;;;;CAS1D,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-navigation",
3
- "version": "8.6.1",
3
+ "version": "8.6.2",
4
4
  "description": "React Native Navigation - truly native navigation for iOS and Android",
5
5
  "license": "MIT",
6
6
  "nativePackage": true,
@@ -88,23 +88,24 @@
88
88
  "@babel/preset-env": "^7.25.3",
89
89
  "@babel/runtime": "^7.25.0",
90
90
  "@babel/types": "7.25.0",
91
- "@react-native-community/cli": "18.0.0",
92
- "@react-native-community/cli-platform-android": "18.0.0",
93
- "@react-native-community/cli-platform-ios": "18.0.0",
91
+ "@react-native-community/cli": "19.1.1",
92
+ "@react-native-community/cli-platform-android": "19.1.1",
93
+ "@react-native-community/cli-platform-ios": "19.1.1",
94
94
  "@react-native-community/datetimepicker": "^8.2.0",
95
95
  "@react-native-community/netinfo": "^11.4.1",
96
- "@react-native/babel-preset": "0.79.7",
97
- "@react-native/eslint-config": "0.79.7",
98
- "@react-native/metro-config": "0.79.7",
99
- "@react-native/typescript-config": "0.79.7",
96
+ "@react-native/babel-preset": "0.80.2",
97
+ "@react-native/eslint-config": "0.80.2",
98
+ "@react-native/metro-config": "0.80.2",
99
+ "@react-native/typescript-config": "0.80.2",
100
100
  "@testing-library/jest-native": "^5.4.2",
101
101
  "@testing-library/react-native": "^13.0.1",
102
102
  "@types/hoist-non-react-statics": "^3.3.6",
103
103
  "@types/jasmine": "3.5.10",
104
104
  "@types/jest": "^29.5.13",
105
105
  "@types/lodash": "^4.17.20",
106
- "@types/react": "^18.2.6",
107
- "@types/react-test-renderer": "^18.0.0",
106
+ "@types/prop-types": "^15.7.14",
107
+ "@types/react": "^19.1.0",
108
+ "@types/react-test-renderer": "^19.1.0",
108
109
  "@typescript-eslint/eslint-plugin": "8.21.0",
109
110
  "@typescript-eslint/parser": "8.21.0",
110
111
  "clang-format": "^1.4.0",
@@ -123,15 +124,15 @@
123
124
  "pixelmatch": "^5.2.1",
124
125
  "pngjs": "^6.0.0",
125
126
  "prettier": "2.8.8",
126
- "react": "19.0.0",
127
- "react-native": "0.79.7",
127
+ "react": "19.1.0",
128
+ "react-native": "0.80.2",
128
129
  "react-native-builder-bob": "^0.40.13",
129
130
  "react-native-fast-image": "^8.6.3",
130
131
  "react-native-gesture-handler": "^2.22.1",
131
132
  "react-native-reanimated": "4.1.5",
132
133
  "react-native-worklets": "0.5.0",
133
134
  "react-redux": "9.1.2",
134
- "react-test-renderer": "19.0.0",
135
+ "react-test-renderer": "19.1.0",
135
136
  "redux": "^5.0.1",
136
137
  "remx": "3.x.x",
137
138
  "semver": "5.x.x",