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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@licuido-ui/ui_textarea-autosize

v4.0.5

Published

TextAreaAutoSize fields are an essential user interface design element, providing users with the means to enter non-standardized responses

Readme

TextAreaAutoSize

TextAreaAutoSize fields are an essential user interface design element, providing users with the means to enter non-standardized responses

Author

Link

Story Book Link TextAreaAutoSize

PlayGround

Try it have a fun codeBox

Installation

npm i @licuido-ui/ui_input-field

Import component

import { TextAreaAutoSize } from '@licuido-ui/ui_input-field';

Usage

<TextAreaAutoSize label={'input'} value={''} />

Image

alt text

Sample Code

<TextAreaAutoSize 
    fullWidth={true}
    variant={'outlined'}
    size={'small'}
    label={''}
    type={'text'}
    id={''}
    value={''}
    rowMax={Infinity}
    rowMin={1}
    isError={''}
    disabled={false}
    fullwidth={false}
    isMulti={false}
    isReadOnly={false}
    helperText={''}
    placeholder={''}
    className={''}
    endAdornment={null}
    defaultValue={null}
    inLineStyles={{}}
    startAdornments={null}
    onChange={undefined}  
  />

| Prop | Type | Description | | ------------------- | ---------------- | ----------------------------------------------------------------------------------- | | inputId | string | This id is unique. | | className | string | Override or extend the styles applied. | | sx | object | System overrides and additional CSS styles. | | label | string | To change label text. | | isReadOnly | boolean | Prevents the user from changing the value of the field. | | variant | 'outlined' | 'standard' | 'filled' | Declare variant types. | | value | unknown | The input value. Providing an empty string will select no options. | | rowMax | number | Maximum number of rows to display when multiline option is set to true. | | rows | string | number | Number of rows to display when multiline option is set to true. | | rowMin | number | Minimum number of rows to display when multiline option is set to true. | | disabled | boolean | If true, the component is disabled. | | fullWidth | boolean | If true, the input will take up the full width of its container. | | isMulti | boolean | If true, a TextareaAutosize element is rendered. | | placeholder | string | To change placeholder text. | | fullWidth | boolean | If true, the input will take up the full width of its container. | | defaultValue | unknown | Default value when the component is not controlled. | | inLineStyles | object | System overrides and additional CSS styles. | | onChange | function | Callback fired when the value is changed. | | inputStyle | object | System overrides and additional CSS styles for the input. | | multiline | boolean | If true, a textarea element is rendered instead of an input. | | required | boolean | If true, the label is displayed as required, and the input element is required. | | isErrorRequired | boolean | If true, the label is required in case of an error. | | errorMessage | string | Error message text. | | isError | string | State class applied to the root element if error. | | error | boolean | If true, an error state is displayed. | | startAdornment | any | Class applied to the startAdornment Props using a start Icon of the TextField. | | endAdornment | any | Class applied to the endAdornment Props using an end Icon of the TextField. | | errorVariant | any | error variant applied to the variant Props using an errorVariant of the Typography. |

Default Props:

TextAreaAutoSize.defaultProps = {
  label: '',
  variant: 'outlined',
  inputId: 'TextAreaAutoSize',
  value: '',
  rows: 5,
  fullWidth: false,
  multiline: false,
  rowMax: Infinity,
  rowMin: 1,
  disabled: false,
  fullwidth: false,
  isMulti: false,
  isReadOnly: false,
  placeholder: '',
  className: '',
  defaultValue: undefined,
  onChange: undefined,
  required: false,
  errorMessage: '',
  isError: '',
  fontSizeTextArea: '14px',
  textAreaPaddingFilledInput: '24px 16px 16px 16px',
  paddingYAxis: '4px 8px',
  lineHeightTextArea: '20px',
  fontWeightTextArea: 500,
  borderRadiusTextArea: '8px',
  borderTextArea: '1px solid',
  borderColorTextArea: '#E9E9E9',
  backgroundTextArea: '#fff !important',
  lableColor: '#4E585E',
  lableFontSize: '14px',
  lableFontWeight: 400,
  labelLineHeight: '20px',
  errorVariant: 'caption'
};