react-native-navigation 7.38.1 → 7.38.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.
@@ -1,8 +1,8 @@
1
- #import "Dictionary.h"
1
+ #import "RNNDictionary.h"
2
2
  #import <Foundation/Foundation.h>
3
3
 
4
4
  @interface DictionaryParser : NSObject
5
5
 
6
- + (Dictionary *)parse:(NSDictionary *)json key:(NSString *)key;
6
+ + (RNNDictionary *)parse:(NSDictionary *)json key:(NSString *)key;
7
7
 
8
8
  @end
@@ -3,8 +3,8 @@
3
3
 
4
4
  @implementation DictionaryParser
5
5
 
6
- + (Dictionary *)parse:(NSDictionary *)json key:(NSString *)key {
7
- return json[key] ? [[Dictionary alloc] initWithValue:json[key]] : [NullDictionary new];
6
+ + (RNNDictionary *)parse:(NSDictionary *)json key:(NSString *)key {
7
+ return json[key] ? [[RNNDictionary alloc] initWithValue:json[key]] : [NullDictionary new];
8
8
  }
9
9
 
10
10
  @end
@@ -1,5 +1,5 @@
1
- #import "Dictionary.h"
1
+ #import "RNNDictionary.h"
2
2
 
3
- @interface NullDictionary : Dictionary
3
+ @interface NullDictionary : RNNDictionary
4
4
 
5
5
  @end
@@ -18,7 +18,7 @@
18
18
  @property(nonatomic, strong) Color *iconColor;
19
19
  @property(nonatomic, strong) Color *selectedIconColor;
20
20
  @property(nonatomic, strong) Color *selectedTextColor;
21
- @property(nonatomic, strong) Dictionary *iconInsets;
21
+ @property(nonatomic, strong) RNNDictionary *iconInsets;
22
22
  @property(nonatomic, strong) Color *textColor;
23
23
  @property(nonatomic, strong) Number *fontSize;
24
24
  @property(nonatomic, strong) Bool *visible;
@@ -0,0 +1,5 @@
1
+ #import "Param.h"
2
+
3
+ @interface RNNDictionary : Param
4
+
5
+ @end
@@ -0,0 +1,11 @@
1
+ #import "RNNDictionary.h"
2
+
3
+ @interface RNNDictionary ()
4
+
5
+ @property(nonatomic, retain) NSDictionary *value;
6
+
7
+ @end
8
+
9
+ @implementation RNNDictionary
10
+
11
+ @end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-navigation",
3
- "version": "7.38.1",
3
+ "version": "7.38.2",
4
4
  "description": "React Native Navigation - truly native navigation for iOS and Android",
5
5
  "license": "MIT",
6
6
  "nativePackage": true,
@@ -1,5 +0,0 @@
1
- #import "Param.h"
2
-
3
- @interface Dictionary : Param
4
-
5
- @end
@@ -1,11 +0,0 @@
1
- #import "Dictionary.h"
2
-
3
- @interface Dictionary ()
4
-
5
- @property(nonatomic, retain) NSDictionary *value;
6
-
7
- @end
8
-
9
- @implementation Dictionary
10
-
11
- @end