tex
@rmwc/textfield
npm i @rmwc/textfield
tex

@rmwc/textfield

A React wrapper for Material Design (Web) Components

by James Friedman

8.0.7 (see all)License:MITTypeScript:Built-In
npm i @rmwc/textfield
Readme

Text Fields

Text fields allow users to input, edit, and select text.

  • Module @rmwc/textfield
  • Import styles:
    • Using CSS Loader
      • import '@rmwc/textfield/styles';
    • Or include stylesheets
      • '@material/textfield/dist/mdc.textfield.css'
      • '@material/floating-label/dist/mdc.floating-label.css'
      • '@material/notched-outline/dist/mdc.notched-outline.css'
      • '@material/line-ripple/dist/mdc.line-ripple.css'
      • '@material/ripple/dist/mdc.ripple.css'
      • '@rmwc/icon/icon.css'
  • MDC Docs: https://material.io/develop/web/components/input-controls/text-field/

TextField Variants

<TextField label="standard..." />
<TextField outlined label="outlined..." />
<TextField placeholder="No label" />
<>
  {/* Leading and trailing icons can be used.*/}
  <TextField icon="search" trailingIcon="close" label="icon..." />
  {/* If you need full control over the icon, you can pass the icon as options with your own props. Dont forget the TabIndex to make it clickable*/}
  <TextField
    label="trailingIcon..."
    trailingIcon={{
      icon: 'close',
      tabIndex: 0,
      onClick: () => console.log('Clear')
    }}
  />
</>

Textareas

You can make the TextField a textarea. Make sure to include outlined for proper styling You can optionally make help text always visible by passing an object as props with persistent set to true. Textareas can also have an optional character counter which will work with the maxLength property.

<div>
  <TextField
    textarea
    label="textarea..."
    rows={8}
    maxLength={20}
    characterCount
    resizeable
    helpText={{
      persistent: true,
      validationMsg: true,
      children: 'The field is required'
    }}
  />
</div>

Validation

<TextField disabled label="Disabled..." />
<TextField required label="Required..." value="" />
<TextField
  invalid
  label="Invalid..."
  value="#@!$"
  onChange={() => {}}
/>
<TextField label="Validate Pattern" pattern="[A-Za-z]{3}" />

HTML Input Types

A preview of how material-components-web handles styling input types for your browser.

<>
  <TextField label="text" type="text" />
  <TextField label="color" type="color" style={{ width: '6rem' }} />
  <TextField label="date" type="date" />
  <TextField label="datetime-local" type="datetime-local" />
  <TextField label="month" type="month" />
  <TextField label="range" type="range" />
  <TextField label="time" type="time" />
  <TextField label="week" type="week" />
</>

TextField

A TextField component for accepting text input from a user.

Props

NameTypeDescription
align"start" \| "end"How to align the text inside the TextField. Defaults to 'start'.
characterCountundefined \| false \| trueShows the character count, must be used in conjunction with maxLength.
disabledundefined \| false \| trueMakes the Textfield disabled.
floatLabelundefined \| false \| trueThe label floats automatically based on value, but you can use this prop for manual control.
foundationRefReact.Ref<MDCTextFieldFoundation \| null>Advanced: A reference to the MDCFoundation.
helpTextReact.ReactNode \| TextFieldHelperTextPropsAdds help text to the field
iconRMWC.IconPropTAdd a leading icon.
inputRefReact.Ref<HTMLInputElement \| HTMLTextAreaElement \| null>A reference to the native input or textarea.
invalidundefined \| false \| trueMakes the TextField visually invalid. This is sometimes automatically applied in cases where required or pattern is used.
labelReact.ReactNodeA label for the input.
outlinedundefined \| false \| trueOutline the TextField.
prefixundefined \| stringAdd prefix.
requiredundefined \| false \| trueMakes the Textfield required.
resizeableundefined \| false \| trueMake textarea resizeable
rootPropsObjectBy default, props spread to the input. These props are for the component's root container.
suffixundefined \| stringAdd suffix.
textareaundefined \| false \| trueMakes a multiline TextField.
trailingIconRMWC.IconPropTAdd a trailing icon.
typeundefined \| stringThe type of input field to render, search, number, etc
valuestring \| numberSets the value for controlled TextFields.
VersionTagPublished
8.0.7
latest
3d ago
6.0.0-rc.4
next
3yrs ago
No alternatives found
No tutorials found
Add a tutorial
No dependencies found

Rate & Review

100
No reviews found
Be the first to rate