-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into kve/element-usage-imp…
…rovements * origin/main: (123 commits) Update CHANGELOG.md (#508) Revert "Supplementary Tracking Fixes (#433)" Revert "Force layout before appear, to avoid animated updates (#505)" Force layout before appear, to avoid animated updates (#505) Update workaround versions (#506) Fix supplementary view + contained first responder reuse issue (#507) Supplementary Tracking Fixes (#433) Release 13.0.0 (#504) Update KeyboardObserver (#499) CONV-1435: Gravity layout frame change fix - Before: Layout gravity doesn't take into account frame changes. For example, when the orientation changes the scroll position (relative to the bottom) changes - After: Layout gravity takes frame changes into account so the when the frame changes the scroll position relative to the bottom remains unchanged Release 12.0.0 (#501) CONV-1435: Add scroll indicator insets to customScrollViewInsets (#500) CONV-1435: Gravity layout - Adds a new Chat App demo and a new behavior called verticalLayoutGravity. When verticalLayoutGravity is set to bottom, scrolling works the way you would expect for a messaging app. expose onKeyboardFrameWillChange on ListProperties onKeyboardFrameWillChange: Improve CHANGELOG, DocC CONV-1435: Custom keyboard adjustment mode - Adds a .custom KeyboardAdjustmentMode to fully customize inset behavior remove contentOffset from isContentScrollable calculation, improve comment Add ListView#isContentScrollable property - Add this property to ListView. It will be used in conjunction with upcoming so-called gravity scrolling changes to workaround an animation issue with paging Update CI script to reference the `xcodesorg/made/xcodes` package for installing simulator runtimes. (#494) Swipe Action Updates (#489) ...
- Loading branch information
Showing
614 changed files
with
142,199 additions
and
75,022 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,21 +3,25 @@ require_relative 'version' | |
Pod::Spec.new do |s| | ||
s.name = 'BlueprintUILists' | ||
s.version = LISTABLE_VERSION | ||
s.summary = 'Declarative list views for iOS apps that deploy back to iOS 11.0.' | ||
s.summary = 'Declarative list views for iOS apps that deploy back to iOS 14.0.' | ||
s.homepage = 'https://github.com/kyleve/Listable' | ||
s.license = 'Apache License, Version 2.0' | ||
s.author = { 'Kyle' => '[email protected]' } | ||
s.source = { git: 'https://github.com/kyleve/Listable.git', tag: "#{s.version}" } | ||
|
||
s.ios.deployment_target = '12.0' | ||
s.ios.deployment_target = LISTABLE_IOS_DEPLOYMENT_TARGET | ||
|
||
s.swift_versions = ['5.4'] | ||
s.swift_versions = [LISTABLE_SWIFT_VERSION] | ||
|
||
s.dependency 'ListableUI' | ||
s.dependency 'BlueprintUI' | ||
s.dependency 'BlueprintUI', *BLUEPRINT_VERSION | ||
|
||
s.source_files = 'BlueprintUILists/Sources/**/*.{swift}' | ||
|
||
s.pod_target_xcconfig = { | ||
'APPLICATION_EXTENSION_API_ONLY' => 'YES', | ||
} | ||
|
||
unless ENV['LISTABLE_PUBLISHING'] | ||
|
||
# These tests can only be run locally, because they depend on local pods. | ||
|
@@ -26,7 +30,7 @@ Pod::Spec.new do |s| | |
test_spec.source_files = 'BlueprintUILists/Tests/**/*.{swift}' | ||
test_spec.ios.resource_bundle = { 'BlueprintUIListsResources' => 'BlueprintUILists/Tests/Resources/**/*.*' } | ||
|
||
test_spec.dependency 'BlueprintUICommonControls' | ||
test_spec.dependency 'BlueprintUICommonControls', *BLUEPRINT_VERSION | ||
|
||
test_spec.framework = 'XCTest' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.