@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 +8 -0
- package/package.json +19 -19
- package/src/Client/InputKeyMapListUtils.lua +8 -4
- package/src/Client/InputKeyMapServiceClient.lua +1 -0
- package/src/Server/InputKeyMapService.lua +1 -0
- package/src/Shared/InputKeyMapRegistryServiceShared.lua +1 -0
- package/src/Shared/Types/InputChordUtils.lua +1 -0
- package/test/modules/Shared/TestInputKeyMap.lua +1 -0
- package/test/scripts/Client/ClientMain.client.lua +1 -0
- package/test/scripts/Server/ServerMain.server.lua +1 -0
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.
|
|
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": "
|
|
30
|
-
"@quenty/brio": "
|
|
31
|
-
"@quenty/clienttranslator": "
|
|
32
|
-
"@quenty/ducktype": "
|
|
33
|
-
"@quenty/enumutils": "
|
|
34
|
-
"@quenty/inputmode": "
|
|
35
|
-
"@quenty/loader": "
|
|
36
|
-
"@quenty/maid": "
|
|
37
|
-
"@quenty/observablecollection": "
|
|
38
|
-
"@quenty/pseudolocalize": "
|
|
39
|
-
"@quenty/rx": "
|
|
40
|
-
"@quenty/servicebag": "
|
|
41
|
-
"@quenty/statestack": "
|
|
42
|
-
"@quenty/string": "
|
|
43
|
-
"@quenty/table": "
|
|
44
|
-
"@quenty/valuebaseutils": "
|
|
45
|
-
"@quenty/valueobject": "
|
|
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": "
|
|
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(
|
|
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
|
|