0.1.0 • Published 4 years ago

@swfz/ngx-filter-keyup-events v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

FilterKeyupEvents

Angular directive that recieves an event when there is no keyup input for a certain period of time.

using ng library

demo

Usage

npm install -S @swfz/ngx-filter-keyup-events

And import into your NgModule

import {NgModule} from '@angular/core';
import {FilterKeyupEventsModule} from '@swfz/ngx-filter-keyup-events';

@NgModule({
  imports: [FilterKeyupEventsModule],
})
  • your.component.html
<input
  libFilterKeyupEvents
  [intervalMs]="500"
  (filteredKeyup)="onFilteredKeyup($event)"
  type="text"
/>
  • your.component.ts
  onFilteredKeyup(event: string) {
    console.log(event);
  }

Reference

inputs

  • intervalMs
    • type: number
    • threshold for how many milliseconds of input are not fired

outputs

  • filteredKeyup
    • filtered input value
0.1.0

4 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago