appuniversum / ember-appuniversum

Ember addon wrapping the appuniversum components.
https://appuniversum.github.io/ember-appuniversum
MIT License
14 stars 11 forks source link

Deprecate the `AuTextarea` `@value` argument #437

Closed Windvis closed 12 months ago

Windvis commented 12 months ago

This removes the 2-way-binding setup in the AuTextarea component.

Migration guide

Simply replace the @value argument with a value property and event handler that updates the value instead.

- <AuTextarea @value={{this.someValue}} />
+ <AuTextarea value={{this.someValue}} {{on "change" this.handleChange}} />

Closes #436