@quenty/inputmode 13.18.4-canary.559.9f38947.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 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
- ## [13.18.4-canary.559.9f38947.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputmode@13.18.3...@quenty/inputmode@13.18.4-canary.559.9f38947.0) (2025-05-10)
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 ([05ba29a](https://github.com/Quenty/NevermoreEngine/commit/05ba29a03efc9f3feed74b34f1d9dfb237496214))
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.18.4-canary.559.9f38947.0",
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.8.5-canary.559.9f38947.0",
29
- "@quenty/loader": "10.8.4-canary.559.9f38947.0",
30
- "@quenty/maid": "3.4.4-canary.559.9f38947.0",
31
- "@quenty/rx": "13.17.4-canary.559.9f38947.0",
32
- "@quenty/servicebag": "11.11.5-canary.559.9f38947.0",
33
- "@quenty/signal": "7.10.4-canary.559.9f38947.0",
34
- "@quenty/table": "3.7.5-canary.559.9f38947.0",
35
- "@quenty/valueobject": "13.17.4-canary.559.9f38947.0"
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": "9f38947767d202411936a5c98898033df5865da0"
40
+ "gitHead": "0a5db8004684dc3e76fd5944599a22602d48cfa9"
41
41
  }
@@ -117,4 +117,4 @@ function InputMode.Destroy(self: InputMode)
117
117
  self.Enabled:Destroy()
118
118
  end
119
119
 
120
- return InputMode
120
+ return InputMode
@@ -64,4 +64,4 @@ function InputModeProcessor.Evaluate(self: InputModeProcessor, inputObject: Inpu
64
64
  end
65
65
  end
66
66
 
67
- return InputModeProcessor
67
+ return InputModeProcessor
@@ -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 Observable = require("Observable")
15
- local Rx = require("Rx")
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 ValueObject = require("ValueObject")
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
@@ -98,4 +98,4 @@ function InputModeType._addInputModeType(self: InputModeType, inputModeType: Inp
98
98
  end
99
99
  end
100
100
 
101
- return InputModeType
101
+ return InputModeType
@@ -6,8 +6,8 @@
6
6
 
7
7
  local require = require(script.Parent.loader).load(script)
8
8
 
9
- local InputModeType = require("InputModeType")
10
9
  local Table = require("Table")
10
+ local InputModeType = require("InputModeType")
11
11
 
12
12
  local InputModeTypes = {}
13
13