
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
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 1 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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.