@olenbetong/synergi-react 2.3.6 → 2.3.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olenbetong/synergi-react",
3
- "version": "2.3.6",
3
+ "version": "2.3.8",
4
4
  "description": "Standalone React component for SynergiWeb and Partner Portal",
5
5
  "type": "module",
6
6
  "exports": {
@@ -39,8 +39,8 @@
39
39
  "localforage": "^1.10.0",
40
40
  "mitt": "^3.0.1",
41
41
  "@olenbetong/appframe-core": "2.11.10",
42
- "@olenbetong/appframe-react": "1.21.23",
43
- "@olenbetong/appframe-mui": "6.0.10"
42
+ "@olenbetong/appframe-mui": "6.0.12",
43
+ "@olenbetong/appframe-react": "1.21.24"
44
44
  },
45
45
  "repository": {
46
46
  "type": "git",
@@ -6,7 +6,7 @@ export function useHIDScanner(onRead: (value: string) => void, enabled = false)
6
6
 
7
7
  let hexKeys = "ABCDEFabcdefxX0123456789";
8
8
  let buffer = "";
9
- let clearBufferTimeout: number;
9
+ let clearBufferTimeout: NodeJS.Timeout;
10
10
 
11
11
  function handleKeyDownEvent(event: KeyboardEvent) {
12
12
  if (hexKeys.includes(event.key)) {