react-native-firework-sdk 2.17.0-beta.10 → 2.17.0-beta.11
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.
package/android/src/main/java/com/fireworksdk/bridge/reactnative/manager/FWStoryBlockManager.kt
CHANGED
|
@@ -289,7 +289,7 @@ class FWStoryBlockManager : ViewGroupManager<StoryBlockFrameLayout>() {
|
|
|
289
289
|
super.onDropViewInstance(storyBlockFrameLayout)
|
|
290
290
|
}
|
|
291
291
|
|
|
292
|
-
override fun getExportedCustomBubblingEventTypeConstants():
|
|
292
|
+
override fun getExportedCustomBubblingEventTypeConstants(): Map<String, Any>? {
|
|
293
293
|
return MapBuilder.builder<String, Any>()
|
|
294
294
|
.put(FWStoryBlockEventName.StoryBlockLoadFinished.rawValue, MapBuilder.of("phasedRegistrationNames", MapBuilder.of("bubbled", FWStoryBlockEventName.StoryBlockLoadFinished.rawValue)))
|
|
295
295
|
.put(FWStoryBlockEventName.StoryBlockFullScreenStateChanged.rawValue, MapBuilder.of("phasedRegistrationNames", MapBuilder.of("bubbled", FWStoryBlockEventName.StoryBlockFullScreenStateChanged.rawValue)))
|
package/android/src/main/java/com/fireworksdk/bridge/reactnative/manager/FWVideoFeedManager.kt
CHANGED
|
@@ -259,7 +259,7 @@ class FWVideoFeedManager : SimpleViewManager<FWVideoFeed>() {
|
|
|
259
259
|
* first onVideoFeedLoadFinished is event name
|
|
260
260
|
* second onVideoFeedLoadFinished is callback prop in JavaScript
|
|
261
261
|
*/
|
|
262
|
-
override fun getExportedCustomBubblingEventTypeConstants():
|
|
262
|
+
override fun getExportedCustomBubblingEventTypeConstants(): Map<String, Any>? {
|
|
263
263
|
return MapBuilder.builder<String, Any>()
|
|
264
264
|
.put(FWFeedViewEventName.VideoFeedLoadFinished.rawValue, MapBuilder.of("phasedRegistrationNames", MapBuilder.of("bubbled", FWFeedViewEventName.VideoFeedLoadFinished.rawValue)))
|
|
265
265
|
.put(FWFeedViewEventName.VideoFeedEmpty.rawValue, MapBuilder.of("phasedRegistrationNames", MapBuilder.of("bubbled", FWFeedViewEventName.VideoFeedEmpty.rawValue)))
|