simple-keyboard 3.7.89 → 3.7.92
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/components/Keyboard.d.ts +6 -1
- package/build/css/index.css +1 -1
- package/build/index.js +1 -1
- package/build/index.modern.esm.js +1 -1
- package/build/index.modern.esm.js.map +1 -1
- package/build/index.modern.js +1 -1
- package/build/index.modern.js.map +1 -1
- package/build/services/KeyboardLayout.d.ts +2 -4
- package/package.json +6 -7
|
@@ -3,6 +3,11 @@ import PhysicalKeyboard from "../services/PhysicalKeyboard";
|
|
|
3
3
|
import Utilities from "../services/Utilities";
|
|
4
4
|
import { KeyboardOptions, KeyboardInput, KeyboardButtonElements, KeyboardHandlerEvent, KeyboardElement } from "../interfaces";
|
|
5
5
|
import CandidateBox from "./CandidateBox";
|
|
6
|
+
declare global {
|
|
7
|
+
interface Window {
|
|
8
|
+
SimpleKeyboardInstances: any;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
/**
|
|
7
12
|
* Root class for simple-keyboard.
|
|
8
13
|
* This class:
|
|
@@ -41,7 +46,7 @@ declare class SimpleKeyboard {
|
|
|
41
46
|
activeInputElement: HTMLInputElement | HTMLTextAreaElement | null;
|
|
42
47
|
/**
|
|
43
48
|
* Creates an instance of SimpleKeyboard
|
|
44
|
-
* @param {Array}
|
|
49
|
+
* @param {Array} selectorOrOptions If first parameter is a string, it is considered the container class. The second parameter is then considered the options object. If first parameter is an object, it is considered the options object.
|
|
45
50
|
*/
|
|
46
51
|
constructor(selectorOrOptions?: string | HTMLDivElement | KeyboardOptions, keyboardOptions?: KeyboardOptions);
|
|
47
52
|
/**
|
package/build/css/index.css
CHANGED
package/build/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* simple-keyboard v3.7.
|
|
3
|
+
* simple-keyboard v3.7.92 (index.modern.esm.js - Modern Browsers bundle, ESM output)
|
|
4
4
|
* https://github.com/hodgef/simple-keyboard
|
|
5
5
|
*
|
|
6
6
|
* NOTE: This modern browsers bundle (index.modern.esm.js) removes all polyfills
|