
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.
ang-virtual-keyboard
Advanced tools
Angular Virtual Keyboard is an angular library that can be used to add a virtual keyboard on an input control. It is simple to use and can be implemented by just importing and adding a directive
Angular Virtual Keyboard is an angular library that can be used to add a virtual keyboard on an input control. It is simple to use and can be implemented by just importing and adding a directive
Install ang-virtual-keyboard.
npm i ang-virtual-keyboard
1. Three Layouts avaliable
- Keyboard without side numpad
- Keyboard with side numpad
- Keyboard with only numpad
2. Shuffle on key press
3. Mask on key press
<!-- Two way binding with property in which you want to store value -->
<input type="text" name="enterhere"
[(ngModel)] = "inputString"
[(appVirtualKeyboard)] = "inputString"
[isKeyboardDirectiveActive] = "true" [kboardType]="'alphaNumericType2'">
<div class="setKeyBoardWidth">
<input type="text" name="reactiveControl" [formControl]="reactiveControl" [appVirtualKeyboard]="''"
(appVirtualKeyboardChange)="valueChange($event)" [isKeyboardDirectiveActive]="true"
[kboardType]="'alphaNumericType2'">
</div>
reactiveControl = new FormControl('');
// Read value from event and set in formControl
valueChange(e: string) {
console.log(e);
this.reactiveControl.setValue(e);
}
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
FAQs
Angular Virtual Keyboard is an angular library that can be used to add a virtual keyboard on an input control. It is simple to use and can be implemented by just importing and adding a directive
The npm package ang-virtual-keyboard receives a total of 11 weekly downloads. As such, ang-virtual-keyboard popularity was classified as not popular.
We found that ang-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.