@widergy/mobile-ui 1.29.1 → 1.29.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.29.3](https://github.com/widergy/mobile-ui/compare/v1.29.2...v1.29.3) (2024-10-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* banner themed styles ([#376](https://github.com/widergy/mobile-ui/issues/376)) ([6c23c2e](https://github.com/widergy/mobile-ui/commit/6c23c2ea5bc7a82b3eb79892786be50c6c31d224))
|
|
7
|
+
|
|
8
|
+
## [1.29.2](https://github.com/widergy/mobile-ui/compare/v1.29.1...v1.29.2) (2024-10-23)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* [OUG-7312] utBaseInputField string cast ([9d45ca1](https://github.com/widergy/mobile-ui/commit/9d45ca189e851e9f0b9d73fed7eee6811c303000))
|
|
14
|
+
|
|
1
15
|
## [1.29.1](https://github.com/widergy/mobile-ui/compare/v1.29.0...v1.29.1) (2024-10-22)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -16,8 +16,8 @@ const UTBanner = ({ text, icon, style, withMarkdown }) => {
|
|
|
16
16
|
|
|
17
17
|
return (
|
|
18
18
|
<View style={themedStyles.banner}>
|
|
19
|
-
{icon && <UTIcon name={icon.name} colorTheme={icon.colorTheme} style={
|
|
20
|
-
<UTLabel withMarkdown={withMarkdown} style={
|
|
19
|
+
{icon && <UTIcon name={icon.name} colorTheme={icon.colorTheme} style={themedStyles.icon} />}
|
|
20
|
+
<UTLabel withMarkdown={withMarkdown} style={themedStyles.text}>
|
|
21
21
|
{text}
|
|
22
22
|
</UTLabel>
|
|
23
23
|
</View>
|
|
@@ -43,11 +43,12 @@ const UTBaseInputField = forwardRef(
|
|
|
43
43
|
showCharacterCount,
|
|
44
44
|
style,
|
|
45
45
|
type,
|
|
46
|
-
value = null,
|
|
46
|
+
value: value_ = null,
|
|
47
47
|
variant = 'white'
|
|
48
48
|
},
|
|
49
49
|
ref
|
|
50
50
|
) => {
|
|
51
|
+
const value = String(value_);
|
|
51
52
|
const [focused, setFocused] = useState(false);
|
|
52
53
|
const inputWidthRef = useRef(null);
|
|
53
54
|
const inputRef = useRef(null);
|
package/package.json
CHANGED