From 0c72ab15709dc461b19446b1aaa7422d59d9994a Mon Sep 17 00:00:00 2001 From: Ilya Lobanov Date: Mon, 14 Jun 2021 17:49:42 +0300 Subject: [PATCH] Make ScrollDrawerViewContent interface open --- Example/Podfile.lock | 4 ++-- .../Pods/Local Podspecs/UltraDrawerView.podspec.json | 4 ++-- Example/Pods/Manifest.lock | 4 ++-- .../UltraDrawerView/UltraDrawerView-Info.plist | 2 +- .../UltraDrawerView/ScrollDrawerViewContent.swift | 12 ++++++------ UltraDrawerView.podspec | 2 +- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 3bed6a6..8001dce 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,5 +1,5 @@ PODS: - - UltraDrawerView (0.6.2) + - UltraDrawerView (0.6.3) DEPENDENCIES: - UltraDrawerView (from `../`) @@ -9,7 +9,7 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - UltraDrawerView: b2e00b770cbb5250d9996514c9b1b07e420ab4c9 + UltraDrawerView: 3ab63988c79c4e344f3d39e4096883efd66e8841 PODFILE CHECKSUM: cc087438ce029e9b937501385b99a39651026ba8 diff --git a/Example/Pods/Local Podspecs/UltraDrawerView.podspec.json b/Example/Pods/Local Podspecs/UltraDrawerView.podspec.json index a8991c5..519d0e0 100644 --- a/Example/Pods/Local Podspecs/UltraDrawerView.podspec.json +++ b/Example/Pods/Local Podspecs/UltraDrawerView.podspec.json @@ -1,6 +1,6 @@ { "name": "UltraDrawerView", - "version": "0.6.2", + "version": "0.6.3", "summary": "Simple swipe up view", "homepage": "https://github.com/super-ultra/UltraDrawerView", "license": { @@ -12,7 +12,7 @@ }, "source": { "git": "https://github.com/super-ultra/UltraDrawerView.git", - "tag": "0.6.2" + "tag": "0.6.3" }, "platforms": { "ios": "9.0" diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index 3bed6a6..8001dce 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -1,5 +1,5 @@ PODS: - - UltraDrawerView (0.6.2) + - UltraDrawerView (0.6.3) DEPENDENCIES: - UltraDrawerView (from `../`) @@ -9,7 +9,7 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - UltraDrawerView: b2e00b770cbb5250d9996514c9b1b07e420ab4c9 + UltraDrawerView: 3ab63988c79c4e344f3d39e4096883efd66e8841 PODFILE CHECKSUM: cc087438ce029e9b937501385b99a39651026ba8 diff --git a/Example/Pods/Target Support Files/UltraDrawerView/UltraDrawerView-Info.plist b/Example/Pods/Target Support Files/UltraDrawerView/UltraDrawerView-Info.plist index 5c31b75..535587f 100644 --- a/Example/Pods/Target Support Files/UltraDrawerView/UltraDrawerView-Info.plist +++ b/Example/Pods/Target Support Files/UltraDrawerView/UltraDrawerView-Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.6.2 + 0.6.3 CFBundleSignature ???? CFBundleVersion diff --git a/Sources/UltraDrawerView/ScrollDrawerViewContent.swift b/Sources/UltraDrawerView/ScrollDrawerViewContent.swift index 2f8c558..c495d9f 100644 --- a/Sources/UltraDrawerView/ScrollDrawerViewContent.swift +++ b/Sources/UltraDrawerView/ScrollDrawerViewContent.swift @@ -28,11 +28,11 @@ open class ScrollDrawerViewContent: DrawerViewContent { // MARK: - DrawerViewContent - public var view: UIView { + open var view: UIView { return impl.view } - public var contentOffset: CGPoint { + open var contentOffset: CGPoint { get { return impl.contentOffset } @@ -41,19 +41,19 @@ open class ScrollDrawerViewContent: DrawerViewContent { } } - public var contentSize: CGSize { + open var contentSize: CGSize { return impl.contentSize } - public var contentInset: UIEdgeInsets { + open var contentInset: UIEdgeInsets { return impl.contentInset } - public func addListener(_ listener: DrawerViewContentListener) { + open func addListener(_ listener: DrawerViewContentListener) { impl.addListener(listener) } - public func removeListener(_ listener: DrawerViewContentListener) { + open func removeListener(_ listener: DrawerViewContentListener) { impl.removeListener(listener) } diff --git a/UltraDrawerView.podspec b/UltraDrawerView.podspec index c4231dc..b0891e1 100644 --- a/UltraDrawerView.podspec +++ b/UltraDrawerView.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'UltraDrawerView' - s.version = '0.6.2' + s.version = '0.6.3' s.summary = 'Simple swipe up view' s.homepage = 'https://github.com/super-ultra/UltraDrawerView' s.license = { :type => 'MIT', :file => 'LICENSE' }