@widergy/mobile-ui 1.29.1 → 1.29.2

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,10 @@
1
+ ## [1.29.2](https://github.com/widergy/mobile-ui/compare/v1.29.1...v1.29.2) (2024-10-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * [OUG-7312] utBaseInputField string cast ([9d45ca1](https://github.com/widergy/mobile-ui/commit/9d45ca189e851e9f0b9d73fed7eee6811c303000))
7
+
1
8
  ## [1.29.1](https://github.com/widergy/mobile-ui/compare/v1.29.0...v1.29.1) (2024-10-22)
2
9
 
3
10
 
@@ -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
@@ -2,7 +2,7 @@
2
2
  "name": "@widergy/mobile-ui",
3
3
  "description": "Widergy Mobile Components",
4
4
  "author": "widergy",
5
- "version": "1.29.1",
5
+ "version": "1.29.2",
6
6
  "repository": "https://github.com/widergy/mobile-ui.git",
7
7
  "main": "lib/index.js",
8
8
  "files": [