@bluebillywig/react-native-bb-player 8.42.14 → 8.42.15
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/ios/BBPlayerModule.swift +1 -1
- package/ios/BBPlayerView.swift +300 -305
- package/ios/BBPlayerViewManager.swift +6 -0
- package/ios/BBShortsViewManager.swift +6 -0
- package/package.json +1 -1
- package/plugin/build/withIos.d.ts +6 -0
- package/plugin/build/withIos.d.ts.map +1 -1
- package/plugin/build/withIos.js +6 -33
- package/react-native-bb-player.podspec +12 -21
- package/ios/BBPlayerViewController.swift +0 -352
- package/ios/BBPlayerViewControllerDelegate.swift +0 -48
package/ios/BBPlayerModule.swift
CHANGED
|
@@ -212,7 +212,7 @@ class BBPlayerModule: NSObject {
|
|
|
212
212
|
|
|
213
213
|
@objc func getClipData(_ viewTag: NSNumber, resolver: @escaping RCTPromiseResolveBlock, rejecter: @escaping RCTPromiseRejectBlock) {
|
|
214
214
|
DispatchQueue.main.async {
|
|
215
|
-
let clipData = self.getView(viewTag)?.
|
|
215
|
+
let clipData = self.getView(viewTag)?.clipData()
|
|
216
216
|
resolver(clipData)
|
|
217
217
|
}
|
|
218
218
|
}
|