🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

systelab-virtual-keyboard

Package Overview
Dependencies
Maintainers
3
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

systelab-virtual-keyboard

Systelab Virtual Keyboard is a on-screen keyboard focused on touch devices.

latest
npmnpm
Version
20.3.1
Version published
Maintainers
3
Created
Source

SystelabVirtualKeyboard

Systelab Virtual Keyboard is a on-screen keyboard focused on touch devices.

Using the directive

Before use the directive you have to import the module into your application.

NgModule({
  imports: [
    ...,
    SystelabVirtualKeyboardModule.forRoot(config),
  ]
})

Where config is an object with type SystelabVirtualKeyboard.Config. See Config for details

Then the virtual keyboard can be enabled for inputs or textareas. To enable it the attribute vkEnabled can be used into the desire HTML element. It can be binding dynamically in the same way [vkEnabled]="vkEnabledVariable"

<input class="input" type="number" placeholder="Numeric input default layout" vkEnabled vkFixedBottom [vkConfig]="vkConfig">

Directive options

The default behaviour can be changed through some attributes:

NameTypeDefaultDescription
vkEnabledbooleantrueEnable the virtual keyboard for the element. If the property exists, the default value is true; if not, is false
vkFixedBottomboolestrueFix the virtual keyboard to the bottom of the page. If the property exists, the default value is true; if not, is false
vkConfigSystelabVirtualKeyboard.ConfigConfiguration object that overrides some default behaviours. See Config for details

Configuration object

The configuration params are describe into the interface Config

NameTypeDefaultDescription
layoutSystelabVirtualKeyboardLayoutsUsually the virtual keyboard select the layout between default or numeric depending on the input type. But with the config object you can override this behaviour and force the desired layout. The available layouts are described in the enum SystelabVirtualKeyboardLayouts
inputMethodSystelabVirtualKeyboardInputMethodsThe method detected for the keyboard to click or touch the keys
showButtonbooleanfalseShow or hide the button for showing the keyboard
showOnMouseClickbooleanfalseShows virtual keyboard upon mouse click on input field
numericCloseOnEnterbooleanfalseClose virtual keyboard on numeric layouts upon a enter action
actionTextstringnullSet the text for the action button ( enter one )

Styling variables

NameDefaultDescription
--systelab-virtual-keyboard-font-family'SF Mono', 'Menlo', 'Consolas', 'Courier New', monospaceFont family fonts to use
--systelab-virtual-keyboard-background-color#B2B2B2Background of the keyboard
--systelab-virtual-keyboard-button-color#E5E5E5Normal button background color
--systelab-virtual-keyboard-button-font-color#000000Normal button font color
--systelab-virtual-keyboard-action-button-color#06038DAction button background color
--systelab-virtual-keyboard-action-button-font-color#FFFFFFAction button font color
--systelab-virtual-keyboard-active-special-button-color#4D4D4DSpecial buttons activation background color
--systelab-virtual-keyboard-active-special-button-font-color#FFFFFFSpecial buttons activation font color

FAQs

Package last updated on 12 Nov 2025

Did you know?

Socket

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.

Install

Related posts