diff --git a/packages/react-common/src/components/TextInput/TextInput.tsx b/packages/react-common/src/components/TextInput/TextInput.tsx index 14ca99f..52a2074 100644 --- a/packages/react-common/src/components/TextInput/TextInput.tsx +++ b/packages/react-common/src/components/TextInput/TextInput.tsx @@ -263,6 +263,10 @@ const propTypes = { * Value of the component. */ value: PropTypes.any, + /** + * Name of the form field associated with this component. + */ + name: PropTypes.string, } type Props = PropTypes.InferProps @@ -291,6 +295,7 @@ const TextInput = React.forwardRef ( @@ -333,6 +338,7 @@ const TextInput = React.forwardRef )} {!multiline && ( @@ -352,6 +358,7 @@ const TextInput = React.forwardRef )}