2.3.4 • Published 4 years ago

ng2-trim-directive v2.3.4

Weekly downloads
3,927
License
MIT
Repository
github
Last release
4 years ago

ng2-trim-directive

Build Status npm

The directive trims whitespaces from the end of an input text value.

Demo

Play with the directive here https://anein.github.io/angular2-trim-directive/.

Usage

  1. Install ng2-trim-directive.

      npm i ng2-trim-directive

    or using Yarn

      yarn add ng2-trim-directive
  2. Import InputTrimModule to your Angular module.

import { InputTrimModule } from 'ng2-trim-directive';
@NgModule({
  imports: [
    ...
    InputTrimModule,
    ...
  ],
  ...
  1. Add the "trim" attribute to a text input or textarea element.

       <input type="text" trim />
       <textarea ... trim ></textarea>

    or with an option: trim value only on the blur event.

       <input type="text" trim="blur" />
       <textarea ... trim="blur" ></textarea>

    note: if you use the directive with without setting the blur event, it will behave like the text input element.


Good luck.

2.3.4

4 years ago

2.3.3

4 years ago

2.3.2

5 years ago

2.3.1

5 years ago

2.3.0

5 years ago

2.2.1

5 years ago

2.2.0

5 years ago

2.1.7

6 years ago

2.1.5

6 years ago

2.1.4

6 years ago

2.1.3

6 years ago

2.1.2

6 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.0

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago