@capgo/capacitor-stream-call 0.0.5 → 0.0.18
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/CapgoCapacitorStreamCall.podspec +2 -2
- package/Package.swift +1 -1
- package/README.md +265 -11
- package/android/build.gradle +22 -4
- package/android/src/main/java/ee/forgr/capacitor/streamcall/CustomNotificationHandler.kt +2 -2
- package/android/src/main/java/ee/forgr/capacitor/streamcall/StreamCallPlugin.kt +338 -260
- package/dist/docs.json +761 -12
- package/dist/esm/definitions.d.ts +57 -23
- package/dist/esm/definitions.js.map +1 -1
- package/dist/esm/web.d.ts +2 -1
- package/dist/esm/web.js +58 -22
- package/dist/esm/web.js.map +1 -1
- package/dist/plugin.cjs.js +58 -22
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +58 -22
- package/dist/plugin.js.map +1 -1
- package/ios/Sources/StreamCallPlugin/StreamCallPlugin.swift +151 -142
- package/ios/Sources/StreamCallPlugin/TouchInterceptView.swift +3 -3
- package/package.json +2 -2
|
@@ -132,8 +132,8 @@ class TouchInterceptView: UIView {
|
|
|
132
132
|
// Convert point to global coordinates for labeled frame checking
|
|
133
133
|
let globalPoint = convert(point, to: nil)
|
|
134
134
|
|
|
135
|
-
//print("TouchInterceptView - Hit test at global point: \(globalPoint)")
|
|
136
|
-
//print("Current labeled frames: \(labeledFrames.map { "\($0.label): \($0.frame)" }.joined(separator: ", "))")
|
|
135
|
+
// print("TouchInterceptView - Hit test at global point: \(globalPoint)")
|
|
136
|
+
// print("Current labeled frames: \(labeledFrames.map { "\($0.label): \($0.frame)" }.joined(separator: ", "))")
|
|
137
137
|
|
|
138
138
|
// Convert point for both views
|
|
139
139
|
let webViewPoint = convert(point, to: webView)
|
|
@@ -142,7 +142,7 @@ class TouchInterceptView: UIView {
|
|
|
142
142
|
// First check if the point is inside any labeled frame
|
|
143
143
|
for labeledFrame in labeledFrames {
|
|
144
144
|
if labeledFrame.frame.contains(globalPoint) {
|
|
145
|
-
//print("Hit labeled frame: \(labeledFrame.label)")
|
|
145
|
+
// print("Hit labeled frame: \(labeledFrame.label)")
|
|
146
146
|
// If it's in a labeled frame, let the overlay handle it
|
|
147
147
|
if overlayView.point(inside: overlayPoint, with: event),
|
|
148
148
|
let overlayHitView = overlayView.hitTest(overlayPoint, with: event) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/capacitor-stream-call",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"description": "Uses the https://getstream.io/ SDK to implement calling in Capacitor",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|
|
22
|
-
"url": "
|
|
22
|
+
"url": "https://github.com/Cap-go/capacitor-streamcall"
|
|
23
23
|
},
|
|
24
24
|
"bugs": {
|
|
25
25
|
"url": "https://github.com/Cap-go/StreamCall/issues"
|