Build update

This commit is contained in:
Francisco Hodge 2021-07-31 05:25:55 +00:00
parent 792a71f38a
commit 012666bd39
3 changed files with 10 additions and 4 deletions

View File

@ -1,6 +1,6 @@
/*! /*!
* *
* simple-keyboard v3.2.29 * simple-keyboard v3.2.30
* https://github.com/hodgef/simple-keyboard * https://github.com/hodgef/simple-keyboard
* *
* Copyright (c) Francisco Hodge (https://github.com/hodgef) and project contributors. * Copyright (c) Francisco Hodge (https://github.com/hodgef) and project contributors.

File diff suppressed because one or more lines are too long

View File

@ -108,9 +108,15 @@ export interface KeyboardOptions {
*/ */
physicalKeyboardHighlight?: boolean; physicalKeyboardHighlight?: boolean;
/** /**
* Presses keys highlighted by physicalKeyboardHighlight * Calls handler for a button highlighted by physicalKeyboardHighlight
* In other words, this calls keyboard.handleButtonClicked(buttonName) on the highlighted button
*/ */
physicalKeyboardHighlightPress?: boolean; physicalKeyboardHighlightPress?: boolean;
/**
* Trigger click on a button's element when using physicalKeyboardHighlightPress
* In other words, this calls button.click() on the highlighted button
*/
physicalKeyboardHighlightPressUseClick?: boolean;
/** /**
* Define the text color that the physical keyboard highlighted key should have. * Define the text color that the physical keyboard highlighted key should have.
*/ */