Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ember-autoresize-modifier

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-autoresize-modifier

Autoresize Element Modifier for Ember.js

  • 0.7.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.5K
decreased by-3.01%
Maintainers
1
Weekly downloads
 
Created
Source

ember-autoresize-modifier

Element Modifier that resizes a <textarea> accordingly to the input.

Compatibility

  • Ember.js v3.28 or above
  • Ember CLI v3.28 or above
  • Node.js v14 or above

Installation

ember install ember-autoresize-modifier

Usage

<textarea {{autoresize}}>
<textarea {{autoresize mode='width'}}>

If you bind a property to the value of the textarea, you must also pass it as an argument to {{autoresize}} modifier. Otherwise the textarea won't resize when the value is changed programmatically:

<textarea value={{this.foo}} {{autoresize this.foo}}>
<textarea value={{this.foo}} {{autoresize this.foo mode='width'}}>

The addon takes resizes the textarea by setting height / width CSS property. It overrules all custom values of the height / width property. Therefore styles of textareas using this modifier must not rely on height / width CSS property.

Use CSS min-height / min-width and max-height / max-width properties to enforce a minimum and/or maximum height / width.

Known Limitations

  • Element Modifiers are not executed in server-side rendering / FastBoot. The textarea won't be resized until rehydration.

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.

Keywords

FAQs

Package last updated on 07 Jan 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc