@quenty/inputkeymaputils 14.28.7 → 14.28.8-canary.90de6eb.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.90de6eb.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@14.28.7...@quenty/inputkeymaputils@14.28.8-canary.90de6eb.0) (2026-01-03)
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.90de6eb.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.1-canary.90de6eb.0",
30
+ "@quenty/brio": "14.20.5-canary.90de6eb.0",
31
+ "@quenty/clienttranslator": "14.23.7-canary.90de6eb.0",
32
+ "@quenty/ducktype": "5.9.1-canary.90de6eb.0",
33
+ "@quenty/enumutils": "3.4.3-canary.90de6eb.0",
34
+ "@quenty/inputmode": "13.23.8-canary.90de6eb.0",
35
+ "@quenty/loader": "10.9.1-canary.90de6eb.0",
36
+ "@quenty/maid": "3.5.1-canary.90de6eb.0",
37
+ "@quenty/observablecollection": "12.24.7-canary.90de6eb.0",
38
+ "@quenty/pseudolocalize": "3.5.0",
39
+ "@quenty/rx": "13.20.4-canary.90de6eb.0",
40
+ "@quenty/servicebag": "11.13.4-canary.90de6eb.0",
41
+ "@quenty/statestack": "14.22.7-canary.90de6eb.0",
42
+ "@quenty/string": "3.3.4-canary.90de6eb.0",
43
+ "@quenty/table": "3.8.0",
44
+ "@quenty/valuebaseutils": "13.20.7-canary.90de6eb.0",
45
+ "@quenty/valueobject": "13.21.7-canary.90de6eb.0"
46
46
  },
47
47
  "publishConfig": {
48
48
  "access": "public"
49
49
  },
50
- "gitHead": "ed3284dd547d8f9922043ca68ed16bf3769806bb"
50
+ "gitHead": "90de6ebb6e0cb5e6798e08b312cb1864c1d3354c"
51
51
  }
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Client side utility helpers for observing input modes for the current client.
3
4
 
@@ -22,7 +23,10 @@ local InputKeyMapListUtils = {}
22
23
  @param serviceBag ServiceBag
23
24
  @return InputModeTypeSelector
24
25
  ]=]
25
- function InputKeyMapListUtils.getNewInputModeTypeSelector(inputKeyMapList, serviceBag)
26
+ function InputKeyMapListUtils.getNewInputModeTypeSelector(
27
+ inputKeyMapList,
28
+ serviceBag: ServiceBag.ServiceBag
29
+ ): InputModeTypeSelector.InputModeTypeSelector
26
30
  assert(InputKeyMapList.isInputKeyMapList(inputKeyMapList), "Bad inputKeyMapList")
27
31
  assert(ServiceBag.isServiceBag(serviceBag), "Bad serviceBag")
28
32
 
@@ -36,7 +40,7 @@ end
36
40
  @param serviceBag ServiceBag
37
41
  @return Observable<InputKeyMap>
38
42
  ]=]
39
- function InputKeyMapListUtils.observeActiveInputKeyMap(inputKeyMapList, serviceBag)
43
+ function InputKeyMapListUtils.observeActiveInputKeyMap(inputKeyMapList, serviceBag: ServiceBag.ServiceBag)
40
44
  assert(InputKeyMapList.isInputKeyMapList(inputKeyMapList), "Bad inputKeyMapList")
41
45
  assert(ServiceBag.isServiceBag(serviceBag), "Bad serviceBag")
42
46
 
@@ -63,7 +67,7 @@ end
63
67
  @param serviceBag ServiceBag
64
68
  @return Observable<{ InputType }?>
65
69
  ]=]
66
- function InputKeyMapListUtils.observeActiveInputTypesList(inputKeyMapList, serviceBag)
70
+ function InputKeyMapListUtils.observeActiveInputTypesList(inputKeyMapList, serviceBag: ServiceBag.ServiceBag)
67
71
  assert(InputKeyMapList.isInputKeyMapList(inputKeyMapList), "Bad inputKeyMapList")
68
72
  assert(ServiceBag.isServiceBag(serviceBag), "Bad serviceBag")
69
73
 
@@ -86,7 +90,7 @@ end
86
90
  @param serviceBag ServiceBag
87
91
  @return Observable<InputModeType?>
88
92
  ]=]
89
- function InputKeyMapListUtils.observeActiveInputModeType(inputKeyMapList, serviceBag)
93
+ function InputKeyMapListUtils.observeActiveInputModeType(inputKeyMapList, serviceBag: ServiceBag.ServiceBag)
90
94
  assert(InputKeyMapList.isInputKeyMapList(inputKeyMapList), "Bad inputKeyMapList")
91
95
  assert(ServiceBag.isServiceBag(serviceBag), "Bad serviceBag")
92
96
 
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  @class InputKeyMapServiceClient
3
4
  ]=]
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  @class InputKeyMapService
3
4
  ]=]
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Provides retrieval of input key maps across the game. Available on both the client and the server.
3
4
 
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Standardized data type to define an input chord, such as Ctrl+Z.
3
4
 
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Test input key map provider
3
4
  @class TestInputKeyMap
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class ClientMain
3
4
  ]]
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class ServerMain
3
4
  ]]