@capgo/capacitor-stream-call 7.1.24 → 7.1.25

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.
@@ -23,8 +23,8 @@ class CallOverlayViewFactory: ViewFactory {
23
23
  call: call
24
24
  )
25
25
  }
26
-
27
- public func makeVideoCallParticipantModifier(
26
+
27
+ func makeVideoCallParticipantModifier(
28
28
  participant: CallParticipant,
29
29
  call: Call?,
30
30
  availableFrame: CGRect,
@@ -40,19 +40,19 @@ class CallOverlayViewFactory: ViewFactory {
40
40
  decorations: [.speaking] // Here we only want the speaking decoration
41
41
  )
42
42
  }
43
-
44
- public func makeLocalParticipantViewModifier(
43
+
44
+ func makeLocalParticipantViewModifier(
45
45
  localParticipant: CallParticipant,
46
46
  callSettings: Binding<CallSettings>,
47
47
  call: Call?
48
48
  ) -> some ViewModifier {
49
49
  LocalParticipantViewModifier(
50
- localParticipant: localParticipant,
51
- call: call,
52
- callSettings: callSettings,
53
- showAllInfo: true,
50
+ localParticipant: localParticipant,
51
+ call: call,
52
+ callSettings: callSettings,
53
+ showAllInfo: true,
54
54
  decorations: [.speaking] // Here we only need the speaking decoration
55
- )
55
+ )
56
56
  }
57
57
  }
58
58