@quenty/inputmode 13.18.4-canary.559.339cfa7.0 → 13.19.0-canary.0a5db80.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 +2 -10
- package/package.json +10 -10
- package/src/Client/InputMode.lua +1 -1
- package/src/Client/InputModeProcessor.lua +1 -1
- package/src/Client/InputModeServiceClient.lua +5 -5
- package/src/Client/InputModeTypeSelector.lua +7 -7
- package/src/Shared/InputModeType.lua +1 -1
- package/src/Shared/InputModeTypes.lua +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,20 +3,12 @@
|
|
|
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
|
-
|
|
6
|
+
# [13.19.0-canary.0a5db80.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputmode@13.18.2...@quenty/inputmode@13.19.0-canary.0a5db80.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
* Additional type checking updates ([
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## [13.18.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputmode@13.18.2...@quenty/inputmode@13.18.3) (2025-04-10)
|
|
18
|
-
|
|
19
|
-
**Note:** Version bump only for package @quenty/inputmode
|
|
11
|
+
* Additional type checking updates ([7e008c5](https://github.com/Quenty/NevermoreEngine/commit/7e008c58547bd00b5904e56541454a38c8d72ccc))
|
|
20
12
|
|
|
21
13
|
|
|
22
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/inputmode",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.19.0-canary.0a5db80.0",
|
|
4
4
|
"description": "Trace input mode state and trigger changes correctly",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/ducktype": "5.
|
|
29
|
-
"@quenty/loader": "10.
|
|
30
|
-
"@quenty/maid": "3.
|
|
31
|
-
"@quenty/rx": "13.
|
|
32
|
-
"@quenty/servicebag": "11.
|
|
33
|
-
"@quenty/signal": "7.
|
|
34
|
-
"@quenty/table": "3.
|
|
35
|
-
"@quenty/valueobject": "13.
|
|
28
|
+
"@quenty/ducktype": "5.9.0-canary.0a5db80.0",
|
|
29
|
+
"@quenty/loader": "10.9.0-canary.0a5db80.0",
|
|
30
|
+
"@quenty/maid": "3.5.0-canary.0a5db80.0",
|
|
31
|
+
"@quenty/rx": "13.18.0-canary.0a5db80.0",
|
|
32
|
+
"@quenty/servicebag": "11.12.0-canary.0a5db80.0",
|
|
33
|
+
"@quenty/signal": "7.11.0-canary.0a5db80.0",
|
|
34
|
+
"@quenty/table": "3.8.0-canary.0a5db80.0",
|
|
35
|
+
"@quenty/valueobject": "13.18.0-canary.0a5db80.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "0a5db8004684dc3e76fd5944599a22602d48cfa9"
|
|
41
41
|
}
|
package/src/Client/InputMode.lua
CHANGED
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
local require = require(script.Parent.loader).load(script)
|
|
8
8
|
|
|
9
|
+
local UserInputService = game:GetService("UserInputService")
|
|
9
10
|
local GuiService = game:GetService("GuiService")
|
|
10
11
|
local RunService = game:GetService("RunService")
|
|
11
|
-
local UserInputService = game:GetService("UserInputService")
|
|
12
12
|
|
|
13
|
-
local InputMode = require("InputMode")
|
|
14
|
-
local InputModeProcessor = require("InputModeProcessor")
|
|
15
13
|
local InputModeType = require("InputModeType")
|
|
16
|
-
local InputModeTypes = require("InputModeTypes")
|
|
17
14
|
local Maid = require("Maid")
|
|
15
|
+
local InputModeProcessor = require("InputModeProcessor")
|
|
16
|
+
local InputModeTypes = require("InputModeTypes")
|
|
17
|
+
local InputMode = require("InputMode")
|
|
18
18
|
local ServiceBag = require("ServiceBag")
|
|
19
19
|
|
|
20
20
|
local THUMBSTICK_DEADZONE = 0.14
|
|
@@ -178,4 +178,4 @@ function InputModeServiceClient.Destroy(self: InputModeServiceClient)
|
|
|
178
178
|
self._maid:DoCleaning()
|
|
179
179
|
end
|
|
180
180
|
|
|
181
|
-
return InputModeServiceClient
|
|
181
|
+
return InputModeServiceClient
|
|
@@ -6,16 +6,16 @@
|
|
|
6
6
|
|
|
7
7
|
local require = require(script.Parent.loader).load(script)
|
|
8
8
|
|
|
9
|
-
local Brio = require("Brio")
|
|
10
|
-
local InputModeServiceClient = require("InputModeServiceClient")
|
|
11
|
-
local InputModeType = require("InputModeType")
|
|
12
9
|
local InputModeTypes = require("InputModeTypes")
|
|
13
10
|
local Maid = require("Maid")
|
|
14
|
-
local
|
|
15
|
-
local
|
|
11
|
+
local ValueObject = require("ValueObject")
|
|
12
|
+
local InputModeServiceClient = require("InputModeServiceClient")
|
|
16
13
|
local ServiceBag = require("ServiceBag")
|
|
14
|
+
local Rx = require("Rx")
|
|
15
|
+
local InputModeType = require("InputModeType")
|
|
16
|
+
local Observable = require("Observable")
|
|
17
17
|
local Signal = require("Signal")
|
|
18
|
-
local
|
|
18
|
+
local Brio = require("Brio")
|
|
19
19
|
|
|
20
20
|
local InputModeTypeSelector = {}
|
|
21
21
|
InputModeTypeSelector.ClassName = "InputModeTypeSelector"
|
|
@@ -309,4 +309,4 @@ function InputModeTypeSelector.Destroy(self: InputModeTypeSelector)
|
|
|
309
309
|
setmetatable(self :: any, nil)
|
|
310
310
|
end
|
|
311
311
|
|
|
312
|
-
return InputModeTypeSelector
|
|
312
|
+
return InputModeTypeSelector
|