angular-weblineindia-text-box
v1.0.2
Published
A Angular based Text Box component used to specify an input field where the user can enter data.
Downloads
6
Readme
Angular - Text Box Component
A Angular based Text Box component used to specify an input field where the user can enter data.
Table of contents
- Browser Support
- Getting started
- Usage
- Available Props
- Methods
- Want to Contribute?
- Collection of Components
- Changelog
- License
- Keywords
Browser Support
| | | | | | | ---------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | | 83.0 ✔ | 77.0 ✔ | 13.1.1 ✔ | 83.0 ✔ | 11.9 ✔ |
Demo
Getting started
Install the npm package:
Demo
Getting started
Install the npm package:
npm install angular-weblineindia-text-box
#OR
yarn add angular-weblineindia-text-box
Usage
Use the <angular-weblineindia-text-box>
component:
Add in app.module.ts file
import { NgModule } from "@angular/core";
import { AngularWeblineindiaTextBoxModule } from "angular-weblineindia-text-box";
@NgModule({
imports: [AngularWeblineindiaTextBoxModule],
})
export class AppModule {}
Add in app.component.ts file
export class AppComponent {
myRegex: RegExp = /^[a-zA-Z0-9]+$/;
onFocusHandler(event: any): void {}
onBlurHandler(event: any): void {}
onChangeHandler(event: any): void {
}
onKeyPressHandler(event: KeyboardEvent): void {
}
onKeyDownHandler(event: KeyboardEvent): void {
}
onKeyUpHandler(event: KeyboardEvent): void {
}
Add in app.component.html file
<angular-weblineindia-text-box id="myInputId" name="myInputName" value="initial value" classname="my-custom-class" placeholder="Enter text here" [disabled]="false" [maxlength]="25" [regex]="myRegex" [isnumberonly]="false" [required]="true" (focus)="onFocusHandler($event)" (blur)="onBlurHandler($event)" (change)="onChangeHandler($event)" (KeyPress)="onKeyPressHandler($event)" (KeyDown)="onKeyDownHandler($event)" (KeyUp)="onKeyUpHandler($event)"></angular-weblineindia-text-box>
Add in app.component.css file
::ng-deep .my-custom-class {
color: aqua;
}
Available Props
| Prop | Type | default | Description | | ------------ | ------- | ------- | ---------------------------------------------- | | id | String | | ID for the input | | name | String | | Nam for the input | | value | string | | Value of the component | | classname | object | | Class to the input | | placeholder | String | | The input field will get this placeholder text | | disabled | Boolean | false | Disable component | | maxlength | Number | 25 | The input maxlength | | regex | RegExp | | The input regex | | isnumberonly | Boolean | false | The input field will get number value | | required | Boolean | false | The input field will required or not |
Methods
| Name | Description | | -------- | ---------------------------------------------------------------- | | focus | Gets triggered when the autocomplete input field receives focus. | | blur | Gets triggered when the autocomplete input field loses focus. | | change | Gets triggered when the autocomplete results got changed. | | KeyPress | Gets triggered when a key gets pressed. | | KeyDown | Gets triggered when a key gets down. | | KeyUp | Gets triggered when a key gets up. |
Want to Contribute?
- Created something awesome, made this code better, added some functionality, or whatever (this is the hardest part).
- Fork it.
- Create new branch to contribute your changes.
- Commit all your changes to your branch.
- Submit a pull request.
Collection of Components
We have built many other components and free resources for software development in various programming languages. Kindly click here to view our Free Resources for Software Development
Changelog
Detailed changes for each release are documented in CHANGELOG.md.
License
Keywords
angular-weblineindia-text-box, textbox, input, angular, angular-component, textbox-component, textarea, text-box-input