simple-keyboard 3.4.80 → 3.4.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/css/index.css +1 -1
- package/build/index.js +2 -2
- package/build/index.modern.js +2 -2
- package/build/index.modern.js.map +1 -1
- package/build/interfaces.d.ts +4 -0
- package/package.json +1 -1
package/build/interfaces.d.ts
CHANGED
|
@@ -116,6 +116,10 @@ export interface KeyboardOptions {
|
|
|
116
116
|
* In other words, this calls button.click() on the highlighted button
|
|
117
117
|
*/
|
|
118
118
|
physicalKeyboardHighlightPressUseClick?: boolean;
|
|
119
|
+
/**
|
|
120
|
+
* Whether physicalKeyboardHighlightPress should use pointer events to trigger buttons.
|
|
121
|
+
*/
|
|
122
|
+
physicalKeyboardHighlightPressUsePointerEvents?: boolean;
|
|
119
123
|
/**
|
|
120
124
|
* Define the text color that the physical keyboard highlighted key should have.
|
|
121
125
|
*/
|