
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@cloudfour/elastic-textarea
Advanced tools
A web component for progressively-enhanced auto-expanding textareas
A web component for progressively-enhanced auto-expanding textareas.
This web component progressively enhances the native textarea: as a user types in the textarea, its height increases so that its content is never clipped. When the user deletes content in the textarea it shrinks back down to a minimum number of rows.
(Note: if a user manually resizes a textarea it will no longer be elastic.)
You can install via npm:
npm i @cloudfour/elastic-textarea
Then you'll need to import the component code:
import "@cloudfour/elastic-textarea";
Alternately, you can load the script via CDN:
<script
type="module"
src="https://unpkg.com/@cloudfour/elastic-textarea/index.min.js"
></script>
Once the JavaScript has been loaded, you can use elastic-textarea
in your HTML.
elastic-textarea
is meant to wrap one or more textarea
elements. This ensures that before the JS loads and runs, the textarea is still usable.
<elastic-textarea>
<label>
Textarea 1
<textarea name="textarea-1"></textarea>
</label>
</elastic-textarea>
If multiple textarea
elements are wrapped in an elastic-textarea
they will all be initialized. This allows you to easily wrap an entire form or page and enhance all the textareas within:
<elastic-textarea>
<label>
Textarea 1
<textarea name="textarea-1"></textarea>
</label>
<label>
Textarea 2
<textarea name="textarea-2"></textarea>
</label>
</elastic-textarea>
FAQs
A web component for progressively-enhanced auto-expanding textareas
The npm package @cloudfour/elastic-textarea receives a total of 11 weekly downloads. As such, @cloudfour/elastic-textarea popularity was classified as not popular.
We found that @cloudfour/elastic-textarea demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.