File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed
Source/InputMask/InputMask/Classes/Model Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
# 𝌡Changelog
2
2
3
+ ## 7.2.6
4
+
5
+ ** 🔄 Modified:**
6
+
7
+ * ` Country::findCountries ` → fix bloomer
8
+
3
9
## 7.2.1
4
10
5
11
** 🔄 Modified:**
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |spec |
2
2
spec . name = "InputMask"
3
- spec . version = "7.2.1 "
3
+ spec . version = "7.2.6 "
4
4
spec . summary = "InputMask"
5
5
spec . description = "User input masking library."
6
6
spec . homepage = "https://github.com/RedMadRobot/input-mask-ios"
Original file line number Diff line number Diff line change 1
1
<img src =" Documentation/Assets/logo.png " alt =" Input Mask " height =" 102 " />
2
2
3
- [](https://swiftpackageindex.com/RedMadRobot/input-mask-ios) [](https://swiftpackageindex.com/RedMadRobot/input-mask-ios) [](https://cocoapods.org/pods/InputMask) [](https://github.com/vsouza/awesome-ios) [](https://github.com/RedMadRobot/input-mask-ios/actions/workflows/swift.yml) [](https://github.com/RedMadRobot/input-mask-android) [](https://t.me/jeorge_taflanidi) [](#license)
3
+ [](https://swiftpackageindex.com/RedMadRobot/input-mask-ios) [](https://swiftpackageindex.com/RedMadRobot/input-mask-ios) [](https://cocoapods.org/pods/InputMask) [](https://github.com/vsouza/awesome-ios) [](https://github.com/RedMadRobot/input-mask-ios/actions/workflows/swift.yml) [](https://github.com/RedMadRobot/input-mask-android) [](https://t.me/jeorge_taflanidi) [](#license)
4
4
5
5
Input masks restrict data input and allow you to guide users to enter correct values.
6
6
Check out our [ wiki] ( https://github.com/RedMadRobot/input-mask-ios/wiki ) for quick start and further reading.
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ public struct Country {
111
111
let excludingTermsLowercased = ( excludingTerms ?? [ ] ) . map { $0. lowercased ( ) }
112
112
let phoneDigits = phone. extractDigits ( )
113
113
114
- return customCountries ?? all. filter { country in
114
+ return ( customCountries ?? all) . filter { country in
115
115
var include : Bool = false
116
116
117
117
if includingTerms != nil {
You can’t perform that action at this time.
0 commit comments