simple-keyboard 3.4.187 → 3.4.188

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * simple-keyboard v3.4.187
3
+ * simple-keyboard v3.4.188
4
4
  * https://github.com/hodgef/simple-keyboard
5
5
  *
6
6
  * Copyright (c) Francisco Hodge (https://github.com/hodgef) and project contributors.
package/build/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * simple-keyboard v3.4.187
3
+ * simple-keyboard v3.4.188
4
4
  * https://github.com/hodgef/simple-keyboard
5
5
  *
6
6
  * Copyright (c) Francisco Hodge (https://github.com/hodgef) and project contributors.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * simple-keyboard v3.4.187 (index.modern.js - Modern Browsers bundle)
3
+ * simple-keyboard v3.4.188 (index.modern.js - Modern Browsers bundle)
4
4
  * https://github.com/hodgef/simple-keyboard
5
5
  *
6
6
  * NOTE: This modern browsers bundle (index.modern.js) removes all polyfills
@@ -3,7 +3,7 @@ import Utilities from "./services/Utilities";
3
3
  export interface KeyboardLayoutObject {
4
4
  [key: string]: string[];
5
5
  }
6
- export declare type KeyboardButtonTheme = {
6
+ export type KeyboardButtonTheme = {
7
7
  class: string;
8
8
  buttons: string;
9
9
  } | null;
@@ -15,23 +15,23 @@ export interface KeyboardButtonAttributes {
15
15
  export interface KeyboardInput {
16
16
  [key: string]: string;
17
17
  }
18
- export declare type CandidateBoxParams = {
18
+ export type CandidateBoxParams = {
19
19
  utilities: Utilities;
20
20
  };
21
- export declare type CandidateBoxShowParams = {
21
+ export type CandidateBoxShowParams = {
22
22
  candidateValue: string;
23
23
  targetElement: KeyboardElement;
24
24
  onSelect: (selectedCandidate: string, e: MouseEvent) => void;
25
25
  };
26
- export declare type CandidateBoxRenderParams = {
26
+ export type CandidateBoxRenderParams = {
27
27
  candidateListPages: string[][];
28
28
  targetElement: KeyboardElement;
29
29
  pageIndex: number;
30
30
  nbPages: number;
31
31
  onItemSelected: (selectedCandidate: string, e: MouseEvent) => void;
32
32
  };
33
- export declare type KeyboardElement = HTMLDivElement | HTMLButtonElement;
34
- export declare type KeyboardHandlerEvent = any;
33
+ export type KeyboardElement = HTMLDivElement | HTMLButtonElement;
34
+ export type KeyboardHandlerEvent = any;
35
35
  export interface KeyboardButtonElements {
36
36
  [key: string]: KeyboardElement[];
37
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simple-keyboard",
3
- "version": "3.4.187",
3
+ "version": "3.4.188",
4
4
  "description": "On-screen Javascript Virtual Keyboard",
5
5
  "main": "build/index.js",
6
6
  "scripts": {
@@ -64,10 +64,10 @@
64
64
  "postcss-loader": "^7.0.1",
65
65
  "style-loader": "^3.3.1",
66
66
  "terser-webpack-plugin": "^5.3.6",
67
- "typescript": "^4.8.4",
67
+ "typescript": "^4.9.3",
68
68
  "url-loader": "^4.1.1",
69
69
  "webpack": "^5.40.0",
70
- "webpack-cli": "^4.10.0",
70
+ "webpack-cli": "^5.0.0",
71
71
  "webpack-dev-server": "4.11.1"
72
72
  },
73
73
  "jest": {