simple-keyboard 3.4.191 → 3.4.193
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.
|
@@ -189,6 +189,10 @@ declare class Utilities {
|
|
|
189
189
|
* Escape regex input
|
|
190
190
|
*/
|
|
191
191
|
escapeRegex(str: string): string;
|
|
192
|
+
/**
|
|
193
|
+
* Calculate caret position offset when using rtl option
|
|
194
|
+
*/
|
|
195
|
+
getRtlOffset(index: number, input: string): number;
|
|
192
196
|
/**
|
|
193
197
|
* Reusable empty function
|
|
194
198
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simple-keyboard",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.193",
|
|
4
4
|
"description": "On-screen Javascript Virtual Keyboard",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"license": "MIT",
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@babel/cli": "^7.18.10",
|
|
43
|
-
"@babel/core": "^7.20.
|
|
43
|
+
"@babel/core": "^7.20.5",
|
|
44
44
|
"@babel/plugin-proposal-class-properties": "^7.17.12",
|
|
45
45
|
"@babel/plugin-transform-typescript": "^7.20.2",
|
|
46
46
|
"@babel/polyfill": "^7.12.1",
|
|
47
47
|
"@babel/preset-env": "^7.20.2",
|
|
48
48
|
"@types/jest": "^27.5.0",
|
|
49
49
|
"@typescript-eslint/eslint-plugin": "^5.42.1",
|
|
50
|
-
"@typescript-eslint/parser": "^5.
|
|
50
|
+
"@typescript-eslint/parser": "^5.45.0",
|
|
51
51
|
"autoprefixer": "^10.4.13",
|
|
52
52
|
"babel-eslint": "^10.1.0",
|
|
53
53
|
"babel-loader": "^9.1.0",
|