@quenty/inputkeymaputils 14.28.7 → 14.28.8-canary.ba2274e.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [14.28.8-canary.ba2274e.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@14.28.7...@quenty/inputkeymaputils@14.28.8-canary.ba2274e.0) (2026-01-02)
7
+
8
+ **Note:** Version bump only for package @quenty/inputkeymaputils
9
+
10
+
11
+
12
+
13
+
6
14
  ## [14.28.7](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@14.28.6...@quenty/inputkeymaputils@14.28.7) (2025-12-31)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/inputkeymaputils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/inputkeymaputils",
3
- "version": "14.28.7",
3
+ "version": "14.28.8-canary.ba2274e.0",
4
4
  "description": "System to define rebindable key bindings and inputs for Roblox.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,26 +26,26 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/baseobject": "^10.9.0",
30
- "@quenty/brio": "^14.20.4",
31
- "@quenty/clienttranslator": "^14.23.6",
32
- "@quenty/ducktype": "^5.9.0",
33
- "@quenty/enumutils": "^3.4.2",
34
- "@quenty/inputmode": "^13.23.7",
35
- "@quenty/loader": "^10.9.0",
36
- "@quenty/maid": "^3.5.0",
37
- "@quenty/observablecollection": "^12.24.6",
38
- "@quenty/pseudolocalize": "^3.5.0",
39
- "@quenty/rx": "^13.20.3",
40
- "@quenty/servicebag": "^11.13.3",
41
- "@quenty/statestack": "^14.22.6",
42
- "@quenty/string": "^3.3.3",
43
- "@quenty/table": "^3.8.0",
44
- "@quenty/valuebaseutils": "^13.20.6",
45
- "@quenty/valueobject": "^13.21.6"
29
+ "@quenty/baseobject": "10.9.0",
30
+ "@quenty/brio": "14.20.4",
31
+ "@quenty/clienttranslator": "14.23.6",
32
+ "@quenty/ducktype": "5.9.0",
33
+ "@quenty/enumutils": "3.4.2",
34
+ "@quenty/inputmode": "13.23.7",
35
+ "@quenty/loader": "10.9.0",
36
+ "@quenty/maid": "3.5.0",
37
+ "@quenty/observablecollection": "12.24.6",
38
+ "@quenty/pseudolocalize": "3.5.0",
39
+ "@quenty/rx": "13.20.3",
40
+ "@quenty/servicebag": "11.13.3",
41
+ "@quenty/statestack": "14.22.6",
42
+ "@quenty/string": "3.3.3",
43
+ "@quenty/table": "3.8.0",
44
+ "@quenty/valuebaseutils": "13.20.6",
45
+ "@quenty/valueobject": "13.21.6"
46
46
  },
47
47
  "publishConfig": {
48
48
  "access": "public"
49
49
  },
50
- "gitHead": "ed3284dd547d8f9922043ca68ed16bf3769806bb"
50
+ "gitHead": "ba2274ec070356518a157d80f912b05de9f74451"
51
51
  }
@@ -22,7 +22,7 @@ local InputKeyMapListUtils = {}
22
22
  @param serviceBag ServiceBag
23
23
  @return InputModeTypeSelector
24
24
  ]=]
25
- function InputKeyMapListUtils.getNewInputModeTypeSelector(inputKeyMapList, serviceBag)
25
+ function InputKeyMapListUtils.getNewInputModeTypeSelector(inputKeyMapList, serviceBag: ServiceBag.ServiceBag)
26
26
  assert(InputKeyMapList.isInputKeyMapList(inputKeyMapList), "Bad inputKeyMapList")
27
27
  assert(ServiceBag.isServiceBag(serviceBag), "Bad serviceBag")
28
28
 
@@ -36,7 +36,7 @@ end
36
36
  @param serviceBag ServiceBag
37
37
  @return Observable<InputKeyMap>
38
38
  ]=]
39
- function InputKeyMapListUtils.observeActiveInputKeyMap(inputKeyMapList, serviceBag)
39
+ function InputKeyMapListUtils.observeActiveInputKeyMap(inputKeyMapList, serviceBag: ServiceBag.ServiceBag)
40
40
  assert(InputKeyMapList.isInputKeyMapList(inputKeyMapList), "Bad inputKeyMapList")
41
41
  assert(ServiceBag.isServiceBag(serviceBag), "Bad serviceBag")
42
42
 
@@ -63,7 +63,7 @@ end
63
63
  @param serviceBag ServiceBag
64
64
  @return Observable<{ InputType }?>
65
65
  ]=]
66
- function InputKeyMapListUtils.observeActiveInputTypesList(inputKeyMapList, serviceBag)
66
+ function InputKeyMapListUtils.observeActiveInputTypesList(inputKeyMapList, serviceBag: ServiceBag.ServiceBag)
67
67
  assert(InputKeyMapList.isInputKeyMapList(inputKeyMapList), "Bad inputKeyMapList")
68
68
  assert(ServiceBag.isServiceBag(serviceBag), "Bad serviceBag")
69
69
 
@@ -86,7 +86,7 @@ end
86
86
  @param serviceBag ServiceBag
87
87
  @return Observable<InputModeType?>
88
88
  ]=]
89
- function InputKeyMapListUtils.observeActiveInputModeType(inputKeyMapList, serviceBag)
89
+ function InputKeyMapListUtils.observeActiveInputModeType(inputKeyMapList, serviceBag: ServiceBag.ServiceBag)
90
90
  assert(InputKeyMapList.isInputKeyMapList(inputKeyMapList), "Bad inputKeyMapList")
91
91
  assert(ServiceBag.isServiceBag(serviceBag), "Bad serviceBag")
92
92