react-native-navigation 8.8.2-snapshot.2496 → 8.8.2-snapshot.2499
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.
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
self.name = [TextParser parse:dict key:@"name"];
|
|
10
10
|
self.componentId = [TextParser parse:dict key:@"componentId"];
|
|
11
11
|
self.alignment = [TextParser parse:dict key:@"alignment"];
|
|
12
|
-
|
|
12
|
+
self.waitForRender = [BoolParser parse:dict key:@"waitForRender"];
|
|
13
13
|
|
|
14
14
|
return self;
|
|
15
15
|
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
self.content = [[RNNEnterExitAnimation alloc] initWithDict:dict[@"content"]];
|
|
12
12
|
self.bottomTabs = [[ElementTransitionOptions alloc] initWithDict:dict[@"bottomTabs"]];
|
|
13
13
|
self.enable = [BoolParser parse:dict key:@"enabled"];
|
|
14
|
-
|
|
14
|
+
self.waitForRender = [BoolParser parse:dict key:@"waitForRender"];
|
|
15
15
|
self.duration = [TimeIntervalParser parse:dict key:@"duration"];
|
|
16
16
|
self.sharedElementTransitions = [OptionsArrayParser parse:dict
|
|
17
17
|
key:@"sharedElementTransitions"
|
package/ios/TransitionOptions.mm
CHANGED
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
self.translationY = [[TransitionDetailsOptions alloc] initWithDict:dict[@"translationY"]];
|
|
16
16
|
self.rotationX = [[TransitionDetailsOptions alloc] initWithDict:dict[@"rotationX"]];
|
|
17
17
|
self.rotationY = [[TransitionDetailsOptions alloc] initWithDict:dict[@"rotationY"]];
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
|
|
19
|
+
self.waitForRender = [BoolParser parse:dict key:@"waitForRender"];
|
|
20
20
|
self.enable = [BoolParser parse:dict key:@"enabled"];
|
|
21
21
|
|
|
22
22
|
return self;
|
package/package.json
CHANGED