@quenty/buttondragmodel 1.19.2 → 1.19.3-canary.607f741.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,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
+ ## [1.19.3-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/buttondragmodel@1.19.2...@quenty/buttondragmodel@1.19.3-canary.607f741.0) (2025-12-28)
7
+
8
+ **Note:** Version bump only for package @quenty/buttondragmodel
9
+
10
+
11
+
12
+
13
+
6
14
  ## [1.19.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/buttondragmodel@1.19.1...@quenty/buttondragmodel@1.19.2) (2025-11-22)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/buttondragmodel
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/buttondragmodel",
3
- "version": "1.19.2",
3
+ "version": "1.19.3-canary.607f741.0",
4
4
  "description": "Model for dragging buttons around",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,15 +25,15 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "^10.9.0",
29
- "@quenty/inputobjectutils": "^4.21.0",
30
- "@quenty/loader": "^10.9.0",
31
- "@quenty/maid": "^3.5.0",
32
- "@quenty/rx": "^13.20.0",
33
- "@quenty/valueobject": "^13.21.2"
28
+ "@quenty/baseobject": "10.9.0",
29
+ "@quenty/inputobjectutils": "4.21.1-canary.607f741.0",
30
+ "@quenty/loader": "10.9.0",
31
+ "@quenty/maid": "3.5.0",
32
+ "@quenty/rx": "13.20.0",
33
+ "@quenty/valueobject": "13.21.3-canary.607f741.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "b3a8753cbae8b4312b1ed66fce1577a94015c156"
38
+ "gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
39
39
  }
@@ -21,22 +21,24 @@ local ButtonDragModel = setmetatable({}, BaseObject)
21
21
  ButtonDragModel.ClassName = "ButtonDragModel"
22
22
  ButtonDragModel.__index = ButtonDragModel
23
23
 
24
- export type ButtonDragModel = typeof(setmetatable(
25
- {} :: {
26
- _dragPosition: ValueObject.ValueObject<Vector2?>,
27
- _dragDelta: ValueObject.ValueObject<Vector2?>,
28
- _isMouseDown: ValueObject.ValueObject<boolean>,
29
- _button: ValueObject.ValueObject<GuiButton?>,
30
- _absoluteSize: ValueObject.ValueObject<Vector2>,
31
- _isPressed: ValueObject.ValueObject<boolean>,
32
- _clampWithinButton: ValueObject.ValueObject<boolean>,
33
- _activePositions: { [InputObject | string]: Vector2? },
34
-
35
- DragPositionChanged: Signal.Signal<Vector2>,
36
- IsDraggingChanged: Signal.Signal<boolean>,
37
- },
38
- {} :: typeof({ __index = ButtonDragModel })
39
- )) & BaseObject.BaseObject
24
+ export type ButtonDragModel =
25
+ typeof(setmetatable(
26
+ {} :: {
27
+ _dragPosition: ValueObject.ValueObject<Vector2?>,
28
+ _dragDelta: ValueObject.ValueObject<Vector2?>,
29
+ _isMouseDown: ValueObject.ValueObject<boolean>,
30
+ _button: ValueObject.ValueObject<GuiButton?>,
31
+ _absoluteSize: ValueObject.ValueObject<Vector2>,
32
+ _isPressed: ValueObject.ValueObject<boolean>,
33
+ _clampWithinButton: ValueObject.ValueObject<boolean>,
34
+ _activePositions: { [InputObject | string]: Vector2? },
35
+
36
+ DragPositionChanged: Signal.Signal<Vector2>,
37
+ IsDraggingChanged: Signal.Signal<boolean>,
38
+ },
39
+ {} :: typeof({ __index = ButtonDragModel })
40
+ ))
41
+ & BaseObject.BaseObject
40
42
 
41
43
  --[=[
42
44
  Construst a new drag model for the button