File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
3
3
s . name = 'SPAlert'
4
- s . version = '3.0.3 '
4
+ s . version = '3.0.4 '
5
5
s . summary = 'Native alert from Apple Music & Feedback. Contains Done, Heart & Message and other presets.'
6
6
s . homepage = 'https://github.com/varabeis/SPAlert'
7
7
s . license = { :type => "MIT" , :file => "LICENSE" }
Original file line number Diff line number Diff line change @@ -29,19 +29,19 @@ open class SPAlertLayout {
29
29
/**
30
30
Icon size.
31
31
*/
32
- var iconSize : CGSize
32
+ open var iconSize : CGSize
33
33
34
34
/**
35
35
Alert margings for each side.
36
36
*/
37
- var margins : UIEdgeInsets
37
+ open var margins : UIEdgeInsets
38
38
39
39
/**
40
40
Space between icon and title if both available.
41
41
*/
42
- var spaceBetweenIconAndTitle : CGFloat
42
+ open var spaceBetweenIconAndTitle : CGFloat
43
43
44
- init ( iconSize: CGSize , margins: UIEdgeInsets , spaceBetweenIconAndTitle: CGFloat ) {
44
+ public init ( iconSize: CGSize , margins: UIEdgeInsets , spaceBetweenIconAndTitle: CGFloat ) {
45
45
self . iconSize = iconSize
46
46
self . margins = margins
47
47
self . spaceBetweenIconAndTitle = spaceBetweenIconAndTitle
You can’t perform that action at this time.
0 commit comments