
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
ngx-virtual-keyboard
Advanced tools
# npm
npm i --save ngx-virtual-keyboard
import { NgxVirtualKeyboardModule } from 'ngx-virtual-keyboard';
@NgModule({
...
imports: [
...
NgxVirtualKeyboardModule,
],
...
})
export class AppModule { }
import { Component } from '@angular/core';
@Component({
...
})
export class NgxVirtualKeyboardComponent implements OnInit {
private layout: any = 'alphanumeric';
// You can create your own layout
// private layout: string = [
// ['1', '2', '0', 'Backspace'],
// ['3', '4', '6', 'Enter'],
// ['a', 'b', 'c']
// ]'
constructor() { }
ngOnInit() {}
}
<input type="text" value=""
[ngx-virtual-keyboard]="true"
[ngx-virtual-keyboard-layout]="layout"
[ngx-virtual-keyboard-disabled]="false"
/>
Attribute | Description |
---|---|
[ngx-virtual-keyboard] | Required to initialize Virtual Keyboard to specified input. Can take boolean true or false to activate |
[ngx-virtual-keyboard-layout] | Used layout on keyboard, following keyboards are defaults that you can use alphanumeric, azerty, extended, numeric, phone |
[ngx-virtual-keyboard-disabled] | Disable keyboard keys if true |
https://vtllr.github.io/ngx-virtual-keyboard/
ngx-virtual-keyboard is Open Source, If you are interested in helping, please read the following:
When in doubt, keep your pull requests small. To give a PR the best chance of getting accepted, do not bundle more than one "feature" or bug fix in one PR. Doing so makes it very hard to accept it if one of the fixes has issues.
It's always best to create two smaller PRs than one big one.
Follow .editconfig
FAQs
Virtual keyboard for ngx application
The npm package ngx-virtual-keyboard receives a total of 12 weekly downloads. As such, ngx-virtual-keyboard popularity was classified as not popular.
We found that ngx-virtual-keyboard demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.