0.0.4 • Published 2 years ago

ngx-thaana-input v0.0.4

Weekly downloads
7
License
-
Repository
-
Last release
2 years ago

Angular Thaana Input

npm install ngx-thaana-input --save

Version

ThaanaInputAngular
0.0.111+

Usage

// app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

import { ThaanaInputModule } from 'ngx-thaana-input'; // <-- import module

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    ThaanaInputModule // <-- add here
  ],
  providers: [],
  bootstrap: [
    AppComponent
  ]
})
export class AppModule { }

/*****************/

// app.component.ts
import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  template: '<input type="text" thaanaInput/>',
  styleUrls: ['./app.component.scss']
})
export class AppComponent {
  
}
0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

3 years ago

0.0.1

3 years ago