Skip to content

Commit cca4c3c

Browse files
committed
chore: v1.0.7 Release
1 parent 8abce32 commit cca4c3c

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

android/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,14 @@ android {
2323
lintOptions {
2424
abortOnError false
2525
}
26+
buildFeatures {
27+
viewBinding true
28+
}
2629
}
2730

2831
buildscript {
2932
ext {
30-
kotlinVersion = '1.4.31'
33+
kotlinVersion = '1.5.20'
3134
}
3235
repositories {
3336
jcenter()

android/src/main/java/com/inkind/RNMoneyInput/RNMoneyInputModule.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,6 @@ open class MoneyTextWatcher(
184184

185185
// Create reference to end of number section of string
186186
val endOfInput = if (isSuffixSymbol) maskedText.length - 2 else maskedText.length + 1
187-
println("Cursor: ${cursorPosition}")
188187

189188
// Is the cursor on leading edge of numbers?
190189
val isLeadingEdge = if (isSuffixSymbol) cursorPosition >= inputText.length - 3 else cursorPosition >= inputText.length - 1

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@inkindcards/react-native-money",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"description": "A fully native TextInput component that allows currency input with a right to left text aligment",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",

0 commit comments

Comments
 (0)