Components

TextArea

TextArea allows your app to accept a potentially lengthy text value from the user.

Examples #

Import Syntax #

import TextArea from 'mineral-ui/TextArea';

Note

TextAreas should be wrapped in a FormField to provide an accessible label and other features. Examples here omit labels for clarity and brevity.

Uncontrolled #

Uncontrolled TextAreas behave just like HTML textarea elements. The value is handled by the DOM. The only difference is that defaultValue must be used to set the initial value rather than value.

<TextArea defaultValue="Hello World" />

Controlled #

In a controlled TextArea, the value is handled by a React component. Set the value with the value prop and provide an onChange handler.

() => {
  class MyForm extends Component {
    constructor(props) {
      super(props);

      this.state = {
        value: 'Hello World'
      };

      this.handleChange = this.handleChange.bind(this);
    }

    handleChange(event) {
      this.setState({
        value: event.target.value
      });
    }

    render() {
      return (
        <TextArea
          value={this.state.value}
          onChange={this.handleChange} />
      );
    }
  }

  return <MyForm />;
}

Placeholder Text #

Provide a placeholder as a helpful prompt of the expected content.

<TextArea placeholder="Leave a comment" />

Disabled #

Use the disabled prop to indicate that the input is not available for interaction.

<TextArea defaultValue="Hello World" disabled />

Read Only #

The readOnly prop indicates that the input value cannot be modified by the user.

<TextArea defaultValue="Hello World" readOnly />

Required #

The required prop on a TextArea does nothing visually on its own, but is important for accessibility. See FormField's Required and Validation examples for more information.

<TextArea required />

Invalid #

The invalid prop on a TextArea does nothing visually on its own, but is important for accessibility. See FormField's Validation example for more info.

<TextArea invalid />

Available Sizes #

TextArea is available in a few different sizes. Note that the rows prop is complementary to size and can be used to adjust the number of lines displayed. See the Rows example for more details.

<DemoLayout>
  <TextArea size="small" defaultValue="Small" />
  <TextArea size="medium" defaultValue="Medium" />
  <TextArea defaultValue="Large" />
  <TextArea size="jumbo" defaultValue="Jumbo" />
</DemoLayout>

Rows #

Use the rows prop to adjust the number of lines displayed. Note that the rows prop is complementary to size.

<DemoLayout>
  <TextArea rows={1} size="small" defaultValue="Small" />
  <TextArea rows={1} size="medium" defaultValue="Medium" />
  <TextArea rows={1} defaultValue="Large" />
  <TextArea rows={1} size="jumbo" defaultValue="Jumbo" />
</DemoLayout>

Auto Size #

Use the autoSize prop to automatically adjust the height of the input to fit the content. Note that you can also use this prop in conjunction with the rows and size props.

<DemoLayout>
  <TextArea spellCheck={false} defaultValue={loremIpsum} autoSize />
  <TextArea rows={1} defaultValue="Hello World" autoSize />
  <TextArea rows={1} size="small" defaultValue="Hello World" autoSize />
</DemoLayout>

Variants #

TextArea is available in a few variants, mostly for use with validation. Be sure to use the appropriate variant for your intent.

<DemoLayout>
  <TextArea variant="success" defaultValue="Success" />
  <TextArea variant="warning" defaultValue="Warning" />
  <TextArea variant="danger" defaultValue="Danger" />
</DemoLayout>

Input ref #

The following example demonstrates how to get a reference to the underlying input element.

() => {
  class MyForm extends Component {
    constructor() {
      super();

      this.focus = this.focus.bind(this);
    }

    focus() {
      this.input.focus();
    }

    render() {
      return (
        <DemoLayout>
          <TextArea inputRef={ref => { this.input = ref; }} />
          <Button onClick={ this.focus }>Focus the input</Button>
        </DemoLayout>
      )
    }
  }

  return <MyForm />;
}

Bidirectionality #

TextAreas support right-to-left (RTL) languages.

<div dir="rtl">
  <ThemeProvider theme={{ direction: 'rtl' }}>
    <TextArea defaultValue="مرحبا بالعالم" />
  </ThemeProvider>
</div>

FormField #

Use a FormField to provide an accessible label and other features as well as a more streamlined API.

Please keep comments brief and descriptive
<DemoLayout>
  <FormField
    input={TextArea}
    label="Comments"
    caption="Please keep comments brief and descriptive"
    rows={2}
    autoSize
    required />
</DemoLayout>

API & Theme #

TextArea Props #

The TextArea component takes the following React props.

NameTypeDefaultDescription
autoSizeboolean

Automatically adjust the height of the input to fit the content

defaultValuestring

Initial value of the input. Primarily for use with uncontrolled components

disabledboolean

Disables the input

inputRef

ref for the input

invalidboolean

Indicates that the value of the element is invalid

onChange

Called when input value changes

readOnlyboolean

Indicates that the user cannot modify the value of the input

requiredboolean

Indicates that the user must fill in a value before submitting a form

resizeableboolean

Indicates whether input is resizable. Not currently supported in IE/Edge.

rootPropsObject

Props to be applied directly to the root element, rather than the input

rowsnumber

The number of visible text lines in the input

size'small' | 'medium' | 'large' | 'jumbo''large'

Available sizes

valuestring

The initial value of the input. Primarily for use with controlled components. If this prop is specified, an onChange handler must also be specified. Also see defaultValue.

variant'danger' | 'success' | 'warning'

Available variants

Note

Unlike most other components, which apply undocumented properties to the root element, TextArea applies undocumented properties, including as and css, to the textarea.

TextArea Theme Variables #

These variables can be used as hooks to override this component's style at either a local or global level. The theme referenced below is whatever theme is available from props to the instance of this component.

VariableValue
TextArea_backgroundColortheme.input_backgroundColor
TextArea_borderColortheme.borderColor
TextArea_borderColor_activetheme.borderColor
TextArea_borderColor_focustheme.borderColor
TextArea_borderColor_hovertheme.borderColor_theme_hover
TextArea_borderRadiustheme.borderRadius_1
TextArea_borderWidth1px
TextArea_boxShadow_active0 0 0 1px boxShadow_focusInner, 0 0 0 2px borderColor_theme_active
TextArea_boxShadow_focus0 0 0 1px boxShadow_focusInner, 0 0 0 2px borderColor_theme_focus
TextArea_colortheme.color
TextArea_color_placeholdertheme.input_color_placeholder
TextArea_color_readOnlytheme.color_readOnly
TextArea_fontSizetheme.fontSize_ui
TextArea_fontSize_small0.75em
TextArea_paddingHorizontaltheme.space_inset_md
TextArea_paddingHorizontal_smalltheme.space_inset_sm
TextAreaIcon_marginHorizontaltheme.space_inline_sm
TextArea_paddingVertical_jumbo0.90625em
TextArea_paddingVertical_large0.53125em
TextArea_paddingVertical_medium0.28125em
TextArea_paddingVertical_small0.125em

Usage #

When/How to Use #

Use a TextArea to accept potentially lengthy, free-form input from a user.

TextAreas should always have an associated label for accessibility and so the user knows what information to provide. See FormField.

Best Practices #

Wrap TextArea in a FormField and provide a brief, descriptive label.

Use a placeholder to hint at the expected content.

Don't use a placeholder as a field label. This is not accessible and a poor experience.