Build update

This commit is contained in:
Francisco Hodge
2021-06-09 05:05:50 +00:00
parent e2669bd87b
commit d72584b439
6 changed files with 15 additions and 10 deletions
+1
View File
@@ -37,6 +37,7 @@ declare class SimpleKeyboard {
candidateBox: CandidateBox | null;
keyboardRowsDOM: KeyboardElement;
defaultName: string;
activeInputElement: HTMLInputElement | HTMLTextAreaElement | null;
/**
* Creates an instance of SimpleKeyboard
* @param {Array} params 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.
+4
View File
@@ -133,6 +133,10 @@ declare class Utilities {
* @param {boolean} moveCaret Whether to update simple-keyboard's cursor
*/
addStringAt(source: string, str: string, position?: number, positionEnd?: number, moveCaret?: boolean): string;
/**
* Check whether the button is a standard button
*/
isStandardButton: (button: string) => boolean | "";
/**
* Removes an amount of characters before a given position
*