File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Sources/StreamChatSwiftUI/ChatChannel/MessageList/AsyncVoiceMessages Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ open class WaveformView: UIView {
12
12
13
13
@Injected ( \. images) var images
14
14
15
- var onSliderChanged : ( ( TimeInterval ) -> Void ) ?
16
- var onSliderTapped : ( ( ) -> Void ) ?
15
+ open var onSliderChanged : ( ( TimeInterval ) -> Void ) ?
16
+ open var onSliderTapped : ( ( ) -> Void ) ?
17
17
18
18
public struct Content : Equatable {
19
19
/// When set to `true` the waveform will be updating with the data live (scrolling to the trailing side
@@ -49,7 +49,7 @@ open class WaveformView: UIView {
49
49
}
50
50
}
51
51
52
- var content : Content = . initial {
52
+ open var content : Content = . initial {
53
53
didSet { updateContent ( ) }
54
54
}
55
55
@@ -69,10 +69,10 @@ open class WaveformView: UIView {
69
69
70
70
// MARK: - UI Components
71
71
72
- open private ( set ) lazy var audioVisualizationView : AudioVisualizationView = . init( )
72
+ open lazy var audioVisualizationView : AudioVisualizationView = . init( )
73
73
. withoutAutoresizingMaskConstraints
74
74
75
- open private ( set ) lazy var slider : UISlider = . init( )
75
+ open lazy var slider : UISlider = . init( )
76
76
. withoutAutoresizingMaskConstraints
77
77
78
78
// MARK: - UI Lifecycle
You can’t perform that action at this time.
0 commit comments