Collection of utils for Angular application
npm install --save @techmagic/ng-utilsimport { NgUtilsModule } from '@techmagic/ng-utils-lib'- Add NgUtilsModule to your
importsarray: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 |