Releases: Skyscanner/SkyFloatingLabelTextField
Releases · Skyscanner/SkyFloatingLabelTextField
Swift 5 and SPM
- A new tag format for release has been introduced to be compatible with Swift Package Manager(SPM). The new format does not include the
vprefix in tag names. This will be the case for all tags going forward, previousvprefix tags remain in place and new tags without thevprefix has been pushed for these commits too. - Added support for Swift Package Manager #296. Thanks to acecilia.
- Added support for Swift 5 #290. Thanks to jessemx109.
v3.6.0
v3.5.2
v3.5.1
v3.5.0
- Marked
isLTRLanguagewith@objcso it can be set from Objective-C code #200. Thanks to behdad-keynejad - Added support for different colors for line, title, text when error is set #208. Thanks to InbarSletean
Use localizedUppercase for titleFormatter
- Use
localizedUppercasefortitleFormatterby default when available. Thanks to canaksoy.
v3.3.0
v3.2.0
v3.1.0
Improvements
- Made
isLTRLanguageopenso it can actually be set by users #121. - Silence warnings due to
M_PIbeing deprecated in Xcode 8.3 #116. Thanks to @z3bi. - Adds UIAppearance support #118. Thanks to mwfire.
- Fix for RTL issue while editing texts #126. Thanks to @mehrdadmaskull
No Functional Change
v3.0.0
Breaking
Change implementation of amimation callbacks to include boolean completed flag.
Before
textfield.setTitleVisible(false, animated: true) {
// Perform callback actions
}Now
textfield.setTitleVisible(false, animated: true) { completed in
// Perform callback actions using completed flag
}