
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
ngx-lower-case-directive
Advanced tools
This directive helps to convert an input text value to lower case.
Supply Chain Security
Vulnerability
Quality
Maintenance
License
Unpopular package
QualityThis package is not very popular.
Found 1 instance in 1 package
This directive helps to convert an input text value to lower case.
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 directive works 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 ngx-lower-case-directive
.
npm i -S ngx-lower-case-directive
2.Import NgxLowerCaseDirectiveModule
to your Angular module.
Angular 4
import { NgxLowerCaseDirectiveModule } from 'ngx-lower-case-directive/src';
@NgModule({
imports: [
...
NgxLowerCaseDirectiveModule,
...
],
...
Angular 5+
import { NgxLowerCaseDirectiveModule } from 'ngx-lower-case-directive';
@NgModule({
imports: [
...
NgxLowerCaseDirectiveModule,
...
],
...
3.Add the "lowerCase" attribute to an input element or a textarea element.
<input type="text" ... lowerCase>
4.If you want to convert the value ONLY on blur event, you should set the value of lowerCase attribute to blur
.
<textarea type="text" ... lowerCase="blur"></textarea>
Good luck.
FAQs
This directive helps to convert an input text value to lower case.
The npm package ngx-lower-case-directive receives a total of 233 weekly downloads. As such, ngx-lower-case-directive popularity was classified as not popular.
We found that ngx-lower-case-directive 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.