Collection of utils for Angular application
npm install --save @techmagic/ng-utils
import { NgUtilsModule } from '@techmagic/ng-utils-lib'
- Add NgUtilsModule to your
imports
array:imports: [ NgUtilsModule ]
Throttle click to declared number of milliseconds
<button (nguThrottleClick)="onClick()">Click</button>
Property | Type | Default value | Description |
---|---|---|---|
nguThrottleClick | function | - | Method to handle click |
throttleTime | number | 1000 | Time to throttle click event |
Listen for click outside the target element
<button (nguClickOutside)="onClick()">Click</button>
Property | Type | Default value | Description |
---|---|---|---|
nguClickOutside | function | - | Method to handle click |