npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@pmwcs/textfield

v1.1.0

Published

PMWCS textfield component

Downloads

9

Readme

Text Fields

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

  • Module @pmwcs/textfield
  • Import styles:
    • Using CSS Loader
      • import '@pmwcs/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'
      • '@pmwcs/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 fullwidth placeholder="fullWidth..." />
<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.

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

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

| Name | Type | Description | |------|------|-------------| | align | "start" \| "end" | How to align the text inside the TextField. Defaults to 'start'. | | characterCount | undefined \| false \| true | Shows the character count, must be used in conjunction with maxLength. | | disabled | undefined \| false \| true | Makes the Textfield disabled. | | floatLabel | undefined \| false \| true | The label floats automatically based on value, but you can use this prop for manual control. | | foundationRef | React.Ref<MDCTextFieldFoundation \| null> | Advanced: A reference to the MDCFoundation. | | fullwidth | undefined \| false \| true | Makes the TextField fullwidth. | | helpText | React.ReactNode \| TextFieldHelperTextProps | Adds help text to the field | | icon | PMWCS.IconPropT | Add a leading icon. | | inputRef | React.Ref<HTMLInputElement \| HTMLTextAreaElement \| null> | A reference to the native input or textarea. | | invalid | undefined \| false \| true | Makes the TextField visually invalid. This is sometimes automatically applied in cases where required or pattern is used. | | label | React.ReactNode | A label for the input. | | outlined | undefined \| false \| true | Outline the TextField. | | required | undefined \| false \| true | Makes the Textfield required. | | ripple | RipplePropT | Adds a ripple effect to the component | | rootProps | Object | By default, props spread to the input. These props are for the component's root container. | | textarea | undefined \| false \| true | Makes a multiline TextField. | | trailingIcon | PMWCS.IconPropT | Add a trailing icon. | | type | undefined \| string | The type of input field to render, search, number, etc | | value | string \| number | Sets the value for controlled TextFields. |