TP-52887 | Bump Project Version to 1.3.6 (#425)

This commit is contained in:
Shivam Goyal
2024-04-30 18:05:09 +05:30
committed by GitHub
parent b6ecc5f760
commit 413f2c476b
3 changed files with 4 additions and 4 deletions

View File

@@ -68,8 +68,8 @@ class UiTronDependencyProvider : IUiTronDependencyProvider {
override fun getTransformedText(
value: String?,
data: OutlinedTextFieldValueTransformation?
): String {
return value.orEmpty()
): String? {
return null
}
override fun numberToWords(amount: String): String {

View File

@@ -5,7 +5,7 @@ plugins {
id 'maven-publish'
}
def VERSION_NAME = "1.3.5"
def VERSION_NAME = "1.3.6"
android {
namespace 'com.navi.uitron'

View File

@@ -23,7 +23,7 @@ interface IUiTronDependencyProvider {
fun getTransformedText(
value: String? = null,
data: OutlinedTextFieldValueTransformation? = null,
): String
): String?
enum class FontWeightEnum {
TT_MEDIUM,