# rainx-keyboard

> Demo Application :

Latest version **0.3.0** (published 2021-01-05) · 0 weekly downloads

## Install

```sh
npm install rainx-keyboard
pnpm add rainx-keyboard
yarn add rainx-keyboard
bun add rainx-keyboard
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.3.0 |
| Published | 2021-01-05 |
| First published | 2020-11-22 |
| Weekly downloads | 0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 912.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | emirhan.npm, hakam.fstk |

## Links

- npm: https://www.npmjs.com/package/rainx-keyboard
- npm.io page: https://npm.io/package/rainx-keyboard

## Dependencies (1)

- [tslib](https://npm.io/package/tslib.md) ^2.0.0

## Recent versions

- 0.3.0 (latest) — 2021-01-05
- 0.2.0 — 2020-12-03
- 0.1.2 — 2020-11-30
- 0.1.1 — 2020-11-30
- 0.1.0 — 2020-11-28
- 0.0.1 — 2020-11-22

## README

# Virtual Keyboard Component

 Demo Application :
  
 https://stackblitz.com/edit/angular-ivy-difzur

 This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 11.0.0.

 This library has peer dependencies.

 Peer Dependencies :
  
   "bootstrap": "^4.3.1"

 Installation :

    npm install rainx-keyboard
    
  Usage :

    This keyboard component is able to bind data for ngModel and formcontrol.If an input has ngControl , the keyboard directly sets it , if has not it sets the html value.

  
   Module Import :
      
      import { BrowserModule } from '@angular/platform-browser';
      import { NgModule } from '@angular/core';
      import { AppRoutingModule } from './app-routing.module';
      import { AppComponent } from './app.component';
      import { RainxKeyboard } from 'rainx-keyboard';

     @NgModule({
       declarations: [
         AppComponent,
       ],
       imports: [
         BrowserModule,
         AppRoutingModule,
         RainxKeyboardModule
       ],
       providers: [],
       bootstrap: [AppComponent]
    })
    export class AppModule { }
    
   In html :

      <input  type="text" [(ngModel)]="value" />

      <input  type="text" formControlName="value" />

      <input  type="text" />

      <rainx-keyboard [showOnlyFocus]="false">

      </rainx-keyboard>  

    Properties :
   
   - showOnlyFocus : Show keyboard only focus an input element
      
      type : booelan
      defaut : false

---
_Source: https://npm.io/package/rainx-keyboard · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
