This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

@triptyk/tpk-ember-textarea

0.0.9 • Public • Published

tpk-ember-textarea

This addon will give you a simple textarea alternative in TailwindCSS

Compatibility

  • Ember.js v3.20 or above
  • Ember CLI v3.20 or above
  • Node.js v12 or above
  • You need tailwind v2 or above to use this simple textarea

Installation

ember install @triptyk/tpk-ember-textarea

OR

pnpm add -D @triptyk/tpk-ember-textarea

Usage

Features

  • Limit of characters
  • Add class error trigger when @hasError is true and you can add a yield with the error
  • A info tooltip under the textarea with @infoTooltip

Integration example

Template .hbs

<Ui::Textarea
  @label="Add your favorite JS framework"
  @value={{this.value}}
  @containerStyle=""
  @labelStyle=""
  @textareaStyle=""
  @col=""
  @row=""
  @limitStyle=""
  @tooltipStyle=""
  @mandatory={{true}}
  @infoTooltip="A good info"
  @hasError={{true}}
  @updateValue={{this.setValue}}
  @value={{this.value}}
  @placeholder="Write a value"
  @key="text"
  type="nothing | text | date | string | password"
  {{on "focus" this.focusOtherTextarea}}
/>

Controller .ts/.js

@tracked value = '';

@action
setValue(value: string | number) {
  this.value = value;
}

Contributing

See the Contributing guide for details. You can also contact info@triptyk for more informations on how contributing on this project.

License

This project is licensed under the MIT License.

Package Sidebar

Install

npm i @triptyk/tpk-ember-textarea

Weekly Downloads

0

Version

0.0.9

License

MIT

Unpacked Size

11.9 kB

Total Files

13

Last publish

Collaborators

  • amauryd
  • dramixdw
  • remadex
  • tcdp
  • vesass