@quenty/inputkeymaputils 14.10.0 → 14.11.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,17 @@
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.11.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@14.10.0...@quenty/inputkeymaputils@14.11.0) (2024-10-04)
7
+
8
+
9
+ ### Features
10
+
11
+ * Default to SlottedTouchButton instead of "Tap" for ProximityPromptInput ([68518eb](https://github.com/Quenty/NevermoreEngine/commit/68518eb22ed3b7eb7aa1660f35d0819241ad0f87))
12
+
13
+
14
+
15
+
16
+
6
17
  # [14.10.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@14.9.0...@quenty/inputkeymaputils@14.10.0) (2024-09-25)
7
18
 
8
19
  **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.10.0",
3
+ "version": "14.11.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.5.0",
30
- "@quenty/brio": "^14.7.0",
31
- "@quenty/clienttranslator": "^14.8.0",
32
- "@quenty/ducktype": "^5.5.0",
29
+ "@quenty/baseobject": "^10.6.0",
30
+ "@quenty/brio": "^14.8.0",
31
+ "@quenty/clienttranslator": "^14.9.0",
32
+ "@quenty/ducktype": "^5.6.0",
33
33
  "@quenty/enumutils": "^3.3.0",
34
- "@quenty/inputmode": "^13.8.0",
35
- "@quenty/loader": "^10.5.0",
36
- "@quenty/maid": "^3.3.0",
37
- "@quenty/observablecollection": "^12.7.0",
34
+ "@quenty/inputmode": "^13.9.0",
35
+ "@quenty/loader": "^10.6.0",
36
+ "@quenty/maid": "^3.4.0",
37
+ "@quenty/observablecollection": "^12.8.0",
38
38
  "@quenty/pseudolocalize": "^3.4.0",
39
- "@quenty/rx": "^13.7.0",
40
- "@quenty/servicebag": "^11.7.0",
41
- "@quenty/statestack": "^14.8.0",
39
+ "@quenty/rx": "^13.8.0",
40
+ "@quenty/servicebag": "^11.8.0",
41
+ "@quenty/statestack": "^14.9.0",
42
42
  "@quenty/string": "^3.3.0",
43
43
  "@quenty/table": "^3.5.0",
44
- "@quenty/valuebaseutils": "^13.7.0",
45
- "@quenty/valueobject": "^13.7.0"
44
+ "@quenty/valuebaseutils": "^13.8.0",
45
+ "@quenty/valueobject": "^13.8.0"
46
46
  },
47
47
  "publishConfig": {
48
48
  "access": "public"
49
49
  },
50
- "gitHead": "9b17fe79cddd071f0f06a9d35184e76b44bd6fe6"
50
+ "gitHead": "035abfa088c854a73e1c65b350267eaa17669646"
51
51
  }
@@ -10,6 +10,7 @@ local InputKeyMapList = require("InputKeyMapList")
10
10
  local InputModeTypes = require("InputModeTypes")
11
11
  local InputKeyMap = require("InputKeyMap")
12
12
  local InputModeType = require("InputModeType")
13
+ local SlottedTouchButtonUtils = require("SlottedTouchButtonUtils")
13
14
 
14
15
  local ProximityPromptInputUtils = {}
15
16
 
@@ -25,7 +26,7 @@ function ProximityPromptInputUtils.newInputKeyMapFromPrompt(prompt)
25
26
  return InputKeyMapList.new("custom", {
26
27
  InputKeyMap.new(InputModeTypes.Gamepads, { prompt.GamepadKeyCode });
27
28
  InputKeyMap.new(InputModeTypes.KeyboardAndMouse, { prompt.KeyboardKeyCode });
28
- InputKeyMap.new(InputModeTypes.Touch, { "Tap" });
29
+ InputKeyMap.new(InputModeTypes.Touch, { SlottedTouchButtonUtils.createSlottedTouchButton("primary1") });
29
30
  }, {
30
31
  bindingName = prompt.ActionText;
31
32
  rebindable = false;