@quenty/inputobjectutils 4.18.2 → 4.18.3

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,14 @@
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
+ ## [4.18.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputobjectutils@4.18.2...@quenty/inputobjectutils@4.18.3) (2025-04-10)
7
+
8
+ **Note:** Version bump only for package @quenty/inputobjectutils
9
+
10
+
11
+
12
+
13
+
6
14
  ## [4.18.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputobjectutils@4.18.0...@quenty/inputobjectutils@4.18.2) (2025-04-07)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/inputobjectutils",
3
- "version": "4.18.2",
3
+ "version": "4.18.3",
4
4
  "description": "Provides utility functions involving input objects",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,11 +28,11 @@
28
28
  "access": "public"
29
29
  },
30
30
  "dependencies": {
31
- "@quenty/baseobject": "^10.8.2",
32
- "@quenty/loader": "^10.8.2",
33
- "@quenty/maid": "^3.4.2",
34
- "@quenty/rx": "^13.17.2",
35
- "@quenty/rxsignal": "^7.17.2"
31
+ "@quenty/baseobject": "^10.8.3",
32
+ "@quenty/loader": "^10.8.3",
33
+ "@quenty/maid": "^3.4.3",
34
+ "@quenty/rx": "^13.17.3",
35
+ "@quenty/rxsignal": "^7.17.3"
36
36
  },
37
- "gitHead": "64def70499ec067077ee39f279936b620b217847"
37
+ "gitHead": "b06c070ae91d5dab7bd8de6e290ad2caabb15d8f"
38
38
  }
@@ -48,7 +48,6 @@ InputObjectTracker.__index = InputObjectTracker
48
48
 
49
49
  export type InputObjectTracker = typeof(setmetatable(
50
50
  {} :: {
51
- _maid: _Maid.Maid,
52
51
  _initialPosition: Vector2,
53
52
  _initialInputObject: InputObject,
54
53
  _lastMousePosition: Vector2,
@@ -57,8 +56,8 @@ export type InputObjectTracker = typeof(setmetatable(
57
56
 
58
57
  InputEnded: RxSignal.RxSignal<()>,
59
58
  },
60
- { __index = InputObjectTracker }
61
- ))
59
+ {} :: typeof({ __index = InputObjectTracker })
60
+ )) & BaseObject.BaseObject
62
61
 
63
62
  local function toVector2(vector3: Vector3): Vector2
64
63
  return Vector2.new(vector3.X, vector3.Y)