@techmagic/ng-utils
v0.0.5
Published
Collection of utils for Angular application
Readme
ng-utils
Collection of utils for Angular application
Install
npm install --save @techmagic/ng-utilsimport { NgUtilsModule } from '@techmagic/ng-utils-lib'- Add NgUtilsModule to your
importsarray:imports: [ NgUtilsModule ]
Utils
Directives
nguThrottleClick
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
nguClickOutside
Listen for click outside the target element
<button (nguClickOutside)="onClick()">Click</button>Property | Type | Default value | Description -------- | ---- | ----------- | ------------- nguClickOutside | function | - | Method to handle click
