Skip to content

Commit 78d6079

Browse files
update public
1 parent 23e0cce commit 78d6079

20 files changed

Lines changed: 22 additions & 27 deletions

ButtonClickStyle.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Pod::Spec.new do |s|
1010
s.name = 'ButtonClickStyle'
1111
s.version = '1.0.1'
12-
s.summary = 'This is a customizable designable button view. Inside layer you can style button, create your own subviews. Choose 9 click animation styles'
12+
s.summary = 'This is a customizable designable button view. Inside layer you can style button, create your own subviews. Choose 9 click animation styles'
1313

1414
# This description is used to generate tags and improve search results.
1515
# * Think: What does it do? Why did you write it? What is the focus?
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
1818
# * Finally, don't worry about the indent, CocoaPods strips it!
1919

2020
s.description = <<-DESC
21-
'This is a customizable designable button view. Inside layer you can style button, create your own subviews. Choose 9 click animation styles'
21+
'This is a customizable designable button view. Inside layer you can style button, create your own subviews. Choose 9 click animation styles'
2222
DESC
2323

2424
s.homepage = 'https://github.com/mrustaa/ButtonClickStyle'

Example/ButtonClickStyle/ButtonClickStyle/Animations/UIView+AnimationAlpha.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import UIKit
44

5-
extension UIView {
5+
public extension UIView {
66

77
// MARK: - Alpha
88

Example/ButtonClickStyle/ButtonClickStyle/Animations/UIView+AnimationAndroidPulse.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import UIKit
99

10-
extension UIView {
10+
public extension UIView {
1111

1212
// MARK: - Android Pulse
1313

Example/ButtonClickStyle/ButtonClickStyle/Animations/UIView+AnimationColor.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
import UIKit
33

4-
extension UIView {
4+
public extension UIView {
55

66
// MARK: - Color inversion
77

Example/ButtonClickStyle/ButtonClickStyle/Animations/UIView+AnimationColorFlat.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ private let flatBorderTag = 62
55
private let flatTextTag = 63
66
private let flatImageTag = 64
77

8-
extension UIView {
8+
public extension UIView {
99

1010
// MARK: - Add Animation Color Flat
1111

Example/ButtonClickStyle/ButtonClickStyle/Animations/UIView+AnimationFlash.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import UIKit
99

10-
extension UIView {
10+
public extension UIView {
1111

1212
// MARK: - Flash
1313

Example/ButtonClickStyle/ButtonClickStyle/Animations/UIView+AnimationPress.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
import UIKit
33

4-
extension UIView {
4+
public extension UIView {
55

66
// MARK: - Press
77

Example/ButtonClickStyle/ButtonClickStyle/Animations/UIView+AnimationPulsate.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77

88
import UIKit
99

10-
11-
extension UIView {
10+
public extension UIView {
1211

1312

1413
// MARK: - Pulsate

Example/ButtonClickStyle/ButtonClickStyle/Animations/UIView+AnimationPulse.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import UIKit
99

1010
//MARK: - Pulse Animation
1111

12-
class ButtonClickStylePulseAnimation: CALayer {
12+
public class ButtonClickStylePulseAnimation: CALayer {
1313

1414
var animationGroup = CAAnimationGroup()
1515
var animationDuration: TimeInterval = 1.5

Example/ButtonClickStyle/ButtonClickStyle/Animations/UIView+AnimationShadow.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import UIKit
44
private let shTag = 31
55
private let shColor: UIColor = .init(red: 10.0 / 255.0, green: 13.0 / 255.0, blue: 38.0 / 255.0, alpha: 1.0)
66

7-
extension UIView {
7+
public extension UIView {
88

99
// MARK: - Layer Gray
1010

0 commit comments

Comments
 (0)