Skip to content

Tags: 0x000000000019b6/KioskBoard

Tags

v2.1.0

Toggle v2.1.0's commit message
Version 2.1.0

Added: Input based `data-kioskboard-placement` data attribute option has been added. This option sets the placement of the keyboard on `top` or `bottom` for each input/textarea element. The default value is `bottom`.
Added: TypeScript declaration has been added.
Changed: Refactor.

v2.0.0

Toggle v2.0.0's commit message
Version 2.0.0

Removed: The `KioskBoard.Merge()` method has been removed. (This method already has been deprecated in v1.4.0)

Changed: `KioskBoard.Init()` function name has been changed to `KioskBoard.init()`.

Changed: `KioskBoard.Run()` function name has been changed to `KioskBoard.run()`.

Changed: Auto-generated `kioskboard-aio.js` file has been moved from `src/all-in-one` folder to `build` folder.

Changed: The `specialCharactersObject` option has been changed to `keysSpecialCharsArrayOfStrings`. An Array of Strings can be set to override the built-in special characters. e.g. => `["#", "$", "%", "+", "-", "*"]`

Fixed: Custom key with multiple characters: ([furcan#31](furcan#31))

Added: The `keysNumpadArrayOfNumbers` option has been added: An Array of Numbers can be set to override the built-in numpad keys. (From 0 to 9, in any order.) e.g. => `[1, 2, 3, 4, 5, 6, 7, 8, 9, 0]` - ([furcan#30](furcan#30))

v1.4.0

Toggle v1.4.0's commit message
Version 1.4.0 Released.

Fixed: The dispatcher issue on the input change event has been fixed: ([furcan#11](furcan#11))

Fixed: The current text selection issue has been fixed: ([furcan#19](furcan#19))

Added: The `max` and `maxlength` attribute controls have been added: ([furcan#17](furcan#17))

Added: The `options` parameter has been added to the `Run()` function to set the initialize options. => `KioskBoard.Run(selector, options);`

Changed: The `selector` parameter has been changed to `selectorOrElement` that also can use an element instead of the query selector. => `KioskBoard.Run(selectorOrElement);`

Changed: The `Merge()` function has been deprecated.

Changed: Code Review.

v1.3.3

Toggle v1.3.3's commit message
Version 1.3.3 Released.

 Fixed: "AllowMobileKeyboard" option was not working properly on iOS devices. ([furcan#7](furcan#7))

v1.3.2

Toggle v1.3.2's commit message
Version 1.3.2 Released.

Added: Internet Explorer 11 compatibility. ([furcan#3](furcan#3))

Changed: Code Review.

v1.3.0

Toggle v1.3.0's commit message
Update README.md

v1.2.1

Toggle v1.2.1's commit message
Version 1.2.1 Released

Fixed: Document Object Model definition fixes.

v1.2.0

Toggle v1.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update README.md

v1.1.1

Toggle v1.1.1's commit message
Version 1.1.1 Released

Code Review

v1.1.0

Toggle v1.1.0's commit message
Version 1.1.0 Released

1- Added: "allowMobileKeyboard" option is added. Default value is "false" and prevents mobile keyboard.

2- Code Review