1.0.2 • Published 21 days ago

angular-weblineindia-text-box v1.0.2

Weekly downloads
3
License
-
Repository
-
Last release
21 days ago

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

ChromeFirefoxSafariEdgeIE
83.0 ✔77.0 ✔13.1.1 ✔83.0 ✔11.9 ✔

Demo

npm.io

Getting started

Install the npm package:

Demo

npm.io

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

PropTypedefaultDescription
idStringID for the input
nameStringNam for the input
valuestringValue of the component
classnameobjectClass to the input
placeholderStringThe input field will get this placeholder text
disabledBooleanfalseDisable component
maxlengthNumber25The input maxlength
regexRegExpThe input regex
isnumberonlyBooleanfalseThe input field will get number value
requiredBooleanfalseThe input field will required or not

Methods

NameDescription
focusGets triggered when the autocomplete input field receives focus.
blurGets triggered when the autocomplete input field loses focus.
changeGets triggered when the autocomplete results got changed.
KeyPressGets triggered when a key gets pressed.
KeyDownGets triggered when a key gets down.
KeyUpGets 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

MIT

Keywords

angular-weblineindia-text-box, textbox, input, angular, angular-component, textbox-component, textarea, text-box-input

1.0.2

21 days ago

0.0.1

1 month ago

1.0.1

1 month ago

1.0.0

4 years ago