lenix 1.8.16 → 1.8.17

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/client/control.ts CHANGED
@@ -29,7 +29,7 @@ export const TYPES = {
29
29
  camera: 1,
30
30
  frontend: 2,
31
31
  } as const
32
- // TODO: add [PAUSE, END, SNAPSHOT, 0, i, j, o, LWIN, RWIN, NUMPAD[1-3], MULTIPLY, DECIMAL, DIVIDE, NUMPADEQUALS, NUMPADENTER, F[4, 13-24], NUMLOCK, SCROLL, RMENU, SEMICOLON, PLUS, SLASH, BACKSLASH, APOSTROPHE, , mouse axis, extra mouse bns, scrollwheels]
32
+ // TODO: add [PAUSE, END, SNAPSHOT, 0, i, j, o, LWIN, RWIN, NUMPAD[1-3], MULTIPLY, DECIMAL, DIVIDE, NUMPADEQUALS, NUMPADENTER, F[4, 13-24], NUMLOCK, SCROLL, RMENU, SEMICOLON, PLUS, SLASH, BACKSLASH, APOSTROPHE, mouse axis, extra mouse bns, scrollwheels]
33
33
  // NONE: [3, 5, 7, 28, 53, 65, 93, 94, 156, 193, 226, 227, 228, 230, 231, 239, 240, 247, 248, 258, 259, 260, 265, 292, 293, 294, 295]
34
34
  export const CONTROLS = {
35
35
  MOUSE_LEFT: [18, 24, 69, 92, 106, 122, 135, 142, 144, 176, 223, 229, 237, 257, 329, 346],
package/nui/focus.ts CHANGED
@@ -12,5 +12,5 @@ export const setFocus = (
12
12
  cursor: boolean
13
13
  }>>('__nuiFocus', { keyboard, cursor })
14
14
 
15
- export const focus = () => setFocus(true, true);
16
- export const unFocus = () => setFocus(false, false);
15
+ export const focusNui = () => setFocus(true, true);
16
+ export const unFocusNui = () => setFocus(false, false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lenix",
3
- "version": "1.8.16",
3
+ "version": "1.8.17",
4
4
  "description": "Typed FiveM utilities for client, server, shared, and NUI scripts",
5
5
  "author": "Lenix",
6
6
  "license": "MIT",