@ornikar/kitt-universal 7.0.4 → 7.1.0

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.
@@ -1795,6 +1795,8 @@ const InputText = /*#__PURE__*/react.forwardRef(({
1795
1795
  textContentType = 'none',
1796
1796
  autoCompleteType = 'off',
1797
1797
  keyboardType = 'default',
1798
+ multiline,
1799
+ onSubmitEditing,
1798
1800
  onFocus,
1799
1801
  onBlur,
1800
1802
  ...props
@@ -1810,6 +1812,7 @@ const InputText = /*#__PURE__*/react.forwardRef(({
1810
1812
  $isDisabled: disabled,
1811
1813
  children: [/*#__PURE__*/jsxRuntime.jsx(StyledTextInput, {
1812
1814
  ref: ref,
1815
+ multiline: multiline,
1813
1816
  nativeID: id,
1814
1817
  editable: !disabled,
1815
1818
  keyboardType: keyboardType,
@@ -1828,7 +1831,8 @@ const InputText = /*#__PURE__*/react.forwardRef(({
1828
1831
  onBlur: e => {
1829
1832
  setIsFocused(false);
1830
1833
  if (onBlur) onBlur(e);
1831
- }
1834
+ },
1835
+ onSubmitEditing: multiline ? () => null : onSubmitEditing
1832
1836
  }), right ? /*#__PURE__*/jsxRuntime.jsx(RightInputContainer, {
1833
1837
  children: right
1834
1838
  }) : null]