fix: layout DSL heuristics #16
|
|
@ -1,5 +1,9 @@
|
|||
# Changelog
|
||||
|
||||
### 1.53.1
|
||||
|
||||
- **Update**: Insets layout heuristics for `WrappedViewHodler` implementations
|
||||
|
||||
### 1.53.0
|
||||
|
||||
- **Added**: Custom string attributes to `BaseTextAttributes`
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -23,7 +23,7 @@ TIUIKitCore.target: TISwiftUtils.target
|
|||
MODULE_NAME="TIUIKitCore" ./project-scripts/push_to_podspecs.sh
|
||||
touch TIUIKitCore.target
|
||||
|
||||
TIUIElements.target: TIUIKitCore.target
|
||||
TIUIElements.target: TIUIKitCore.target TILogging.target
|
||||
MODULE_NAME="TIUIElements" ./project-scripts/push_to_podspecs.sh
|
||||
touch TIUIElements.target
|
||||
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ let package = Package(
|
|||
.target(name: "TIUIKitCore", dependencies: ["TISwiftUtils"], path: "TIUIKitCore/Sources"),
|
||||
|
||||
.target(name: "TIUIElements",
|
||||
dependencies: ["TIUIKitCore", "TISwiftUtils"],
|
||||
dependencies: ["TIUIKitCore", "TILogging"],
|
||||
path: "TIUIElements/Sources",
|
||||
exclude: ["../TIUIElements.app"],
|
||||
plugins: [.plugin(name: "TISwiftLintPlugin")]),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIAppleMapUtils'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Set of helpers for map objects clustering and interacting using Apple MapKit.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIApplication'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Application architecture.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIAuth'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Login, registration, confirmation and other related actions'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -10,4 +10,5 @@ target 'TIBottomSheet' do
|
|||
pod 'TIUIKitCore', :path => '../../../../TIUIKitCore/TIUIKitCore.podspec'
|
||||
pod 'TISwiftUtils', :path => '../../../../TISwiftUtils/TISwiftUtils.podspec'
|
||||
pod 'TIBottomSheet', :path => '../../../../TIBottomSheet/TIBottomSheet.podspec'
|
||||
pod 'TILogging', :path => '../../../../TILogging/TILogging.podspec'
|
||||
end
|
||||
|
|
|
|||
|
|
@ -10,4 +10,5 @@ target 'TIBottomSheet' do
|
|||
pod 'TIUIKitCore', :path => '../../../../TIUIKitCore/TIUIKitCore.podspec'
|
||||
pod 'TISwiftUtils', :path => '../../../../TISwiftUtils/TISwiftUtils.podspec'
|
||||
pod 'TIBottomSheet', :path => '../../../../TIBottomSheet/TIBottomSheet.podspec'
|
||||
pod 'TILogging', :path => '../../../../TILogging/TILogging.podspec'
|
||||
end
|
||||
|
|
|
|||
|
|
@ -87,9 +87,9 @@ detentsViewController.viewControllerAppearance.presentationDetents = [.headerOnl
|
|||
let shadowViewController = BaseModalViewController<UIView, UIView>()
|
||||
let dimmedView = PassthroughDimmedView()
|
||||
dimmedView.hitTestHandlerView = shadowViewController.view
|
||||
dimmedView.configureUIView(appearance: DefaultAppearance(shadow: UIViewShadow(radius: 8,
|
||||
color: .black,
|
||||
opacity: 0.3)))
|
||||
dimmedView.configureUIView(appearance: UIView.DefaultAppearance(shadow: UIViewShadow(radius: 8,
|
||||
color: .black,
|
||||
opacity: 0.3)))
|
||||
|
||||
shadowViewController.dimmedView = dimmedView
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIBottomSheet'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Base models for creating bottom sheet view controllers'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TICoreGraphicsUtils'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'CoreGraphics drawing helpers'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIDeeplink'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Deeplink service API'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIDeveloperUtils'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Universal web view API'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIEcommerce'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Cart, products, promocodes, bonuses and other related actions'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIFoundationUtils'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Set of helpers for Foundation framework classes.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIGoogleMapUtils'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Set of helpers for map objects clustering and interacting using Google Maps SDK.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIKeychainUtils'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Set of helpers for Keychain classes.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TILogging'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Logging for TI libraries.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIMapUtils'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Set of helpers for map objects clustering and interacting.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIMoyaNetworking'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Moya + Swagger network service.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TINetworking'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Swagger-frendly networking layer helpers.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TINetworkingCache'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Caching results of EndpointRequests.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIPagination'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Generic pagination component.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TISwiftUICore'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Core UI elements: protocols, views and helpers.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TISwiftUtils'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Bunch of useful helpers for Swift development.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TITableKitUtils'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Set of helpers for TableKit classes.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TITextProcessing'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'A text processing service helping to get a text mask and a placeholder from incoming regex.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -7,4 +7,5 @@ target 'TIUIElements' do
|
|||
pod 'TIUIElements', :path => '../../../../TIUIElements/TIUIElements.podspec'
|
||||
pod 'TIUIKitCore', :path => '../../../../TIUIKitCore/TIUIKitCore.podspec'
|
||||
pod 'TISwiftUtils', :path => '../../../../TISwiftUtils/TISwiftUtils.podspec'
|
||||
pod 'TILogging', :path => '../../../../TILogging/TILogging.podspec'
|
||||
end
|
||||
|
|
|
|||
|
|
@ -0,0 +1,34 @@
|
|||
//
|
||||
// Copyright (c) 2023 Touch Instinct
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the Software), to deal
|
||||
// in the Software without restriction, including without limitation the rights
|
||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
// copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
// THE SOFTWARE.
|
||||
//
|
||||
|
||||
import TILogging
|
||||
import os
|
||||
|
||||
public final class TIUIElementsLogger: DefaultOSLogErrorLogger {
|
||||
enum Category: String {
|
||||
case layout
|
||||
}
|
||||
|
||||
public init(category: String) {
|
||||
super.init(log: OSLog(subsystem: "TIUIElements", category: category))
|
||||
}
|
||||
}
|
||||
|
|
@ -22,6 +22,7 @@
|
|||
|
||||
import UIKit
|
||||
import TIUIKitCore
|
||||
import os
|
||||
|
||||
public protocol WrappedViewHolder: AnyObject {
|
||||
associatedtype View: UIView
|
||||
|
|
@ -71,10 +72,108 @@ public extension WrappedViewHolder {
|
|||
// MARK: - WrappedViewLayout shortcut
|
||||
|
||||
func updateContentLayout(from layout: some WrappedViewLayout) {
|
||||
wrappedContentInsets = layout.insets
|
||||
wrappedContentInsets = adjustInsets(of: layout)
|
||||
wrappedContentSize = layout.size
|
||||
wrappedContentCenterOffset = layout.centerOffset
|
||||
}
|
||||
|
||||
private func adjustInsets(of layout: some WrappedViewLayout) -> UIEdgeInsets {
|
||||
let logger = TIUIElementsLogger(category: TIUIElementsLogger.Category.layout.rawValue)
|
||||
|
||||
let adjustedHorizontalInsets = adjustHorizontal(insets: layout.insets,
|
||||
of: layout,
|
||||
log: logger.log)
|
||||
|
||||
return adjustVertical(insets: adjustedHorizontalInsets,
|
||||
of: layout,
|
||||
log: logger.log)
|
||||
}
|
||||
|
||||
private func adjustHorizontal(insets: UIEdgeInsets,
|
||||
of layout: some WrappedViewLayout,
|
||||
log: OSLog) -> UIEdgeInsets {
|
||||
|
||||
let horizontalInsetsDefined = insets.horizontal().isFinite
|
||||
let horizontalAlignmentDefined = layout.centerOffset.horizontal.isFinite
|
||||
|
||||
switch (horizontalInsetsDefined, horizontalAlignmentDefined) {
|
||||
case (true, true):
|
||||
os_log("""
|
||||
%{public}s:%{public}d:%{public}s: layout defines
|
||||
- horizontal insets %{public}s
|
||||
- horizontal center alignment %{public}s.
|
||||
This can lead to unpredictable placement of the element.
|
||||
""",
|
||||
log: log,
|
||||
type: .info,
|
||||
#file,
|
||||
#line,
|
||||
String(describing: type(of: self)),
|
||||
"UIEdgeInsets(left: \(insets.left), right: \(insets.right))",
|
||||
"UIOffset(horizontal: \(layout.centerOffset.horizontal))")
|
||||
|
||||
case (true, false), (false, true):
|
||||
break // everything is ok
|
||||
|
||||
case (false, false):
|
||||
os_log("""
|
||||
%{public}s:%{public}d:%{public}s: horizontal insets and horizontal center alignment
|
||||
is not defined. Falling back to zero insets.
|
||||
""",
|
||||
log: log,
|
||||
type: .info,
|
||||
#file,
|
||||
#line,
|
||||
String(describing: type(of: self)))
|
||||
|
||||
return insets.horizontal(.zero)
|
||||
}
|
||||
|
||||
return insets
|
||||
}
|
||||
|
||||
private func adjustVertical(insets: UIEdgeInsets,
|
||||
of layout: some WrappedViewLayout,
|
||||
log: OSLog) -> UIEdgeInsets {
|
||||
|
||||
let verticalInsetsDefined = insets.vertical().isFinite
|
||||
let verticalAlignmentDefined = layout.centerOffset.vertical.isFinite
|
||||
|
||||
switch (verticalInsetsDefined, verticalAlignmentDefined) {
|
||||
case (true, true):
|
||||
os_log("""
|
||||
%{public}s:%{public}d:%{public}s: layout defines
|
||||
- vertical insets %{public}s
|
||||
- vertical center alignment %{public}s
|
||||
This can lead to unpredictable placement of the element.
|
||||
""",
|
||||
log: log,
|
||||
type: .info,
|
||||
#file,
|
||||
#line,
|
||||
String(describing: type(of: self)),
|
||||
"UIEdgeInsets(top: \(insets.top), bottom: \(insets.bottom))",
|
||||
"UIOffset(vertical: \(layout.centerOffset.vertical))")
|
||||
|
||||
case (true, false), (false, true):
|
||||
break // everything is ok
|
||||
|
||||
case (false, false):
|
||||
os_log("""
|
||||
%{public}s:%{public}d:%{public}s: vertical insets and vertical center alignment
|
||||
is not defined. Falling back to zero insets.
|
||||
""",
|
||||
log: log,
|
||||
type: .info,
|
||||
#file,
|
||||
#line,
|
||||
String(describing: type(of: self)))
|
||||
|
||||
return insets.vertical(.zero)
|
||||
}
|
||||
|
||||
return insets
|
||||
}
|
||||
}
|
||||
|
||||
public extension WrappedViewHolder where Self: UIView {
|
||||
|
|
|
|||
|
|
@ -7,4 +7,5 @@ target 'TIUIElements' do
|
|||
pod 'TIUIElements', :path => '../../../../TIUIElements/TIUIElements.podspec'
|
||||
pod 'TISwiftUtils', :path => '../../../../TISwiftUtils/TISwiftUtils.podspec'
|
||||
pod 'TIUIKitCore', :path => '../../../../TIUIKitCore/TIUIKitCore.podspec'
|
||||
pod 'TILogging', :path => '../../../../TILogging/TILogging.podspec'
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIUIElements'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Bunch of useful protocols and views.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
@ -22,4 +22,5 @@ Pod::Spec.new do |s|
|
|||
|
||||
s.dependency 'TIUIKitCore', s.version.to_s
|
||||
s.dependency 'TISwiftUtils', s.version.to_s
|
||||
s.dependency 'TILogging', s.version.to_s
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIUIKitCore'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Core UI elements: protocols, views and helpers.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIWebView'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Universal web view API'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TIYandexMapUtils'
|
||||
s.version = '1.53.0'
|
||||
s.version = '1.53.1'
|
||||
s.summary = 'Set of helpers for map objects clustering and interacting using Yandex Maps SDK.'
|
||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
|
|
|
|||
|
|
@ -88,9 +88,9 @@ detentsViewController.viewControllerAppearance.presentationDetents = [.headerOnl
|
|||
let shadowViewController = BaseModalViewController<UIView, UIView>()
|
||||
let dimmedView = PassthroughDimmedView()
|
||||
dimmedView.hitTestHandlerView = shadowViewController.view
|
||||
dimmedView.configureUIView(appearance: DefaultAppearance(shadow: UIViewShadow(radius: 8,
|
||||
color: .black,
|
||||
opacity: 0.3)))
|
||||
dimmedView.configureUIView(appearance: UIView.DefaultAppearance(shadow: UIViewShadow(radius: 8,
|
||||
color: .black,
|
||||
opacity: 0.3)))
|
||||
|
||||
shadowViewController.dimmedView = dimmedView
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in New Issue