Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
ng2-trim-on-blur
Advanced tools
The directive helps to trim whitespaces of an input text value on blur.
It lies on a simple fact that Angular listens to input
event to bring the view-to-model binding into being.
* According to the description of updateOn property of AbstractControlOptions interface, when updateOn is set to blur
or submit
, Angular listens to blur
or submit
event for model update. In this directive, update-on-blur
case is handled in a hack way. No further processing is required for update-on-submit
case.
Since extra input
and blur
events are dispatched, if you bind a callback to input
event or blur
event, the callback will be invoked twice on input
or blur
.
To overcome the disadvantage, a debounced function is recommended for the event binding.
The compiled package is tested with Angular 5 and 6. To use it in Angular 4, you may import the .ts file directly (see Usage). For Angular 2, you may try it in Angular 4's way, but it's not tested.
1.Install ng2-trim-on-blur
.
npm i -S ng2-trim-on-blur
2.Import TrimOnBlurModule
to your Angular module.
Angular 4
import { TrimOnBlurModule } from 'ng2-trim-on-blur/src';
@NgModule({
imports: [
...
TrimOnBlurModule,
...
],
...
Angular 5+
import { TrimOnBlurModule } from 'ng2-trim-on-blur';
@NgModule({
imports: [
...
TrimOnBlurModule,
...
],
...
3.Add the "trimOnBlur" attribute to an input element.
<input type="text" ... trimOnBlur>
4.Want to trim the value on input? Try ngx-trim-directive.
Good luck.
FAQs
angular2 trim on blur directive
The npm package ng2-trim-on-blur receives a total of 82 weekly downloads. As such, ng2-trim-on-blur popularity was classified as not popular.
We found that ng2-trim-on-blur demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.