ripal-ui 1.0.84 → 1.0.85

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.
@@ -29,7 +29,6 @@ const Input: React.FC<InputProps> = ({
29
29
  secureTextEntry = false,
30
30
  onChangeText,
31
31
  }) => {
32
- // Detect focus
33
32
  const [isFocused, setFocused] = useState(false);
34
33
 
35
34
  return (
@@ -59,6 +58,7 @@ const Input: React.FC<InputProps> = ({
59
58
  onBlur={() => setFocused(false)}
60
59
  // Using 'default' for generic mode
61
60
  keyboardType={mode}
61
+ multiline={multiline}
62
62
  secureTextEntry={secureTextEntry}
63
63
  />
64
64
  {right !== null && right}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ripal-ui",
3
- "version": "1.0.84",
3
+ "version": "1.0.85",
4
4
  "description": "A collection of React elements and components",
5
5
  "main": "index.js",
6
6
  "scripts": {