@quenty/inputkeymaputils 14.28.4-canary.7b02662.0 → 14.28.4

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,7 +3,7 @@
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.4-canary.7b02662.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@14.28.3...@quenty/inputkeymaputils@14.28.4-canary.7b02662.0) (2025-12-13)
6
+ ## [14.28.4](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@14.28.3...@quenty/inputkeymaputils@14.28.4) (2025-12-28)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/inputkeymaputils
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/inputkeymaputils",
3
- "version": "14.28.4-canary.7b02662.0",
3
+ "version": "14.28.4",
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.1",
31
- "@quenty/clienttranslator": "14.23.2",
32
- "@quenty/ducktype": "5.9.0",
33
- "@quenty/enumutils": "3.4.2",
34
- "@quenty/inputmode": "13.23.4-canary.7b02662.0",
35
- "@quenty/loader": "10.9.0",
36
- "@quenty/maid": "3.5.0",
37
- "@quenty/observablecollection": "12.24.2",
38
- "@quenty/pseudolocalize": "3.5.0",
39
- "@quenty/rx": "13.20.0",
40
- "@quenty/servicebag": "11.13.1",
41
- "@quenty/statestack": "14.22.2",
42
- "@quenty/string": "3.3.3",
43
- "@quenty/table": "3.8.0",
44
- "@quenty/valuebaseutils": "13.20.2",
45
- "@quenty/valueobject": "13.21.2"
29
+ "@quenty/baseobject": "^10.9.0",
30
+ "@quenty/brio": "^14.20.1",
31
+ "@quenty/clienttranslator": "^14.23.3",
32
+ "@quenty/ducktype": "^5.9.0",
33
+ "@quenty/enumutils": "^3.4.2",
34
+ "@quenty/inputmode": "^13.23.4",
35
+ "@quenty/loader": "^10.9.0",
36
+ "@quenty/maid": "^3.5.0",
37
+ "@quenty/observablecollection": "^12.24.3",
38
+ "@quenty/pseudolocalize": "^3.5.0",
39
+ "@quenty/rx": "^13.20.0",
40
+ "@quenty/servicebag": "^11.13.2",
41
+ "@quenty/statestack": "^14.22.3",
42
+ "@quenty/string": "^3.3.3",
43
+ "@quenty/table": "^3.8.0",
44
+ "@quenty/valuebaseutils": "^13.20.3",
45
+ "@quenty/valueobject": "^13.21.3"
46
46
  },
47
47
  "publishConfig": {
48
48
  "access": "public"
49
49
  },
50
- "gitHead": "7b02662beb4f525456f6e2ee3d13e0b8613939b1"
50
+ "gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
51
51
  }
@@ -22,14 +22,16 @@ InputKeyMap.__index = InputKeyMap
22
22
 
23
23
  type InputType = InputTypeUtils.InputType
24
24
 
25
- export type InputKeyMap = typeof(setmetatable(
26
- {} :: {
27
- _inputModeType: InputModeType.InputModeType,
28
- _defaultInputTypes: { InputTypeUtils.InputType },
29
- _inputTypeList: ValueObject.ValueObject<{ InputTypeUtils.InputType }>,
30
- },
31
- {} :: typeof({ __index = InputKeyMap })
32
- )) & BaseObject.BaseObject
25
+ export type InputKeyMap =
26
+ typeof(setmetatable(
27
+ {} :: {
28
+ _inputModeType: InputModeType.InputModeType,
29
+ _defaultInputTypes: { InputTypeUtils.InputType },
30
+ _inputTypeList: ValueObject.ValueObject<{ InputTypeUtils.InputType }>,
31
+ },
32
+ {} :: typeof({ __index = InputKeyMap })
33
+ ))
34
+ & BaseObject.BaseObject
33
35
 
34
36
  --[=[
35
37
  Constructs a new InputKeyMap. Generally this would be sent immediately to an
@@ -64,17 +64,19 @@ local InputKeyMapList = setmetatable({}, BaseObject)
64
64
  InputKeyMapList.ClassName = "InputKeyMapList"
65
65
  InputKeyMapList.__index = InputKeyMapList
66
66
 
67
- export type InputKeyMapList = typeof(setmetatable(
68
- {} :: {
69
- _inputKeyMapListName: string,
70
- _inputModeTypeToInputKeyMap: any, -- ObservableMap.ObservableMap<InputModeType.InputModeType, InputKeyMap.InputKeyMap>,
71
- _inputTypesForBinding: any, -- ObservableCountingMap.ObservableCountingMap<InputTypeUtils.InputType>,
72
- _isTapInWorld: StateStack.StateStack<boolean>,
73
- _isRobloxTouchButton: StateStack.StateStack<boolean>,
74
- _options: InputKeyMapListOptions,
75
- },
76
- {} :: typeof({ __index = InputKeyMapList })
77
- )) & BaseObject.BaseObject
67
+ export type InputKeyMapList =
68
+ typeof(setmetatable(
69
+ {} :: {
70
+ _inputKeyMapListName: string,
71
+ _inputModeTypeToInputKeyMap: any, -- ObservableMap.ObservableMap<InputModeType.InputModeType, InputKeyMap.InputKeyMap>,
72
+ _inputTypesForBinding: any, -- ObservableCountingMap.ObservableCountingMap<InputTypeUtils.InputType>,
73
+ _isTapInWorld: StateStack.StateStack<boolean>,
74
+ _isRobloxTouchButton: StateStack.StateStack<boolean>,
75
+ _options: InputKeyMapListOptions,
76
+ },
77
+ {} :: typeof({ __index = InputKeyMapList })
78
+ ))
79
+ & BaseObject.BaseObject
78
80
 
79
81
  export type InputKeyMapListOptions = {
80
82
  bindingName: string,