1.0.0 • Published 1 year ago

@numetalsour/ngx-text v1.0.0

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

Angular 14+ Text

format(onkey)

Install project with npm

  npm i @numetalsour/ngx-text --save

Usage

...
import { NgxTextModule } from '@numetalsour/ngx-text';
...

@NgModule({
    declarations: [
        AppComponent,
    ],
    imports: [
        ...
        NgxTextModule
        ...
    ]
})
export class AppModule { }

Example

<form [formGroup]="form">
    <mat-form-field>
        <mat-label>text</mat-label>
        <input matInput ngxText formControlName="text" >
    </mat-form-field>
</form>


<input ngxText [(ngModel)]="text" >