@quenty/inputmode 13.19.0-canary.ae8d76d.0 → 13.19.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,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
- # [13.19.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputmode@13.18.3...@quenty/inputmode@13.19.0-canary.ae8d76d.0) (2025-05-10)
6
+ # [13.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputmode@13.18.3...@quenty/inputmode@13.19.0) (2025-05-10)
7
7
 
8
8
 
9
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/inputmode",
3
- "version": "13.19.0-canary.ae8d76d.0",
3
+ "version": "13.19.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.4",
29
- "@quenty/loader": "10.8.3",
30
- "@quenty/maid": "3.4.3",
31
- "@quenty/rx": "13.18.0-canary.ae8d76d.0",
32
- "@quenty/servicebag": "11.12.0-canary.ae8d76d.0",
33
- "@quenty/signal": "7.10.3",
34
- "@quenty/table": "3.7.4",
35
- "@quenty/valueobject": "13.18.0-canary.ae8d76d.0"
28
+ "@quenty/ducktype": "^5.9.0",
29
+ "@quenty/loader": "^10.9.0",
30
+ "@quenty/maid": "^3.5.0",
31
+ "@quenty/rx": "^13.18.0",
32
+ "@quenty/servicebag": "^11.12.0",
33
+ "@quenty/signal": "^7.11.0",
34
+ "@quenty/table": "^3.8.0",
35
+ "@quenty/valueobject": "^13.18.0"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
40
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
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")
10
9
  local GuiService = game:GetService("GuiService")
11
10
  local RunService = game:GetService("RunService")
11
+ local UserInputService = game:GetService("UserInputService")
12
12
 
13
- local InputModeType = require("InputModeType")
14
- local Maid = require("Maid")
13
+ local InputMode = require("InputMode")
15
14
  local InputModeProcessor = require("InputModeProcessor")
15
+ local InputModeType = require("InputModeType")
16
16
  local InputModeTypes = require("InputModeTypes")
17
- local InputMode = require("InputMode")
17
+ local Maid = require("Maid")
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 InputModeTypes = require("InputModeTypes")
10
- local Maid = require("Maid")
11
- local ValueObject = require("ValueObject")
9
+ local Brio = require("Brio")
12
10
  local InputModeServiceClient = require("InputModeServiceClient")
13
- local ServiceBag = require("ServiceBag")
14
- local Rx = require("Rx")
15
11
  local InputModeType = require("InputModeType")
12
+ local InputModeTypes = require("InputModeTypes")
13
+ local Maid = require("Maid")
16
14
  local Observable = require("Observable")
15
+ local Rx = require("Rx")
16
+ local ServiceBag = require("ServiceBag")
17
17
  local Signal = require("Signal")
18
- local Brio = require("Brio")
18
+ local ValueObject = require("ValueObject")
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 Table = require("Table")
10
9
  local InputModeType = require("InputModeType")
10
+ local Table = require("Table")
11
11
 
12
12
  local InputModeTypes = {}
13
13