@quenty/buttondragmodel 1.30.0 → 1.30.1
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 +4 -0
- package/package.json +7 -7
- package/src/Client/ButtonDragModel.lua +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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.30.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/buttondragmodel@1.30.0...@quenty/buttondragmodel@1.30.1) (2026-05-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/buttondragmodel
|
|
9
|
+
|
|
6
10
|
# [1.30.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/buttondragmodel@1.29.2...@quenty/buttondragmodel@1.30.0) (2026-05-29)
|
|
7
11
|
|
|
8
12
|
**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.30.
|
|
3
|
+
"version": "1.30.1",
|
|
4
4
|
"description": "Model for dragging buttons around",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -29,16 +29,16 @@
|
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@quenty/baseobject": "10.13.0",
|
|
32
|
-
"@quenty/brio": "14.30.
|
|
33
|
-
"@quenty/inputobjectutils": "4.30.
|
|
32
|
+
"@quenty/brio": "14.30.1",
|
|
33
|
+
"@quenty/inputobjectutils": "4.30.1",
|
|
34
34
|
"@quenty/loader": "10.11.0",
|
|
35
35
|
"@quenty/maid": "3.9.0",
|
|
36
|
-
"@quenty/rx": "13.28.
|
|
37
|
-
"@quenty/signal": "7.13.
|
|
38
|
-
"@quenty/valueobject": "13.31.
|
|
36
|
+
"@quenty/rx": "13.28.3",
|
|
37
|
+
"@quenty/signal": "7.13.1",
|
|
38
|
+
"@quenty/valueobject": "13.31.1"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
|
|
44
44
|
}
|
|
@@ -41,7 +41,7 @@ export type ButtonDragModel =
|
|
|
41
41
|
& BaseObject.BaseObject
|
|
42
42
|
|
|
43
43
|
--[=[
|
|
44
|
-
|
|
44
|
+
Constructs a new drag model for the button
|
|
45
45
|
|
|
46
46
|
@param initialButton GuiButton? -- Optional
|
|
47
47
|
@return ButtonDragModel
|
|
@@ -131,7 +131,7 @@ end
|
|
|
131
131
|
--[=[
|
|
132
132
|
Returns the scale position on the Gui from 0 to 1
|
|
133
133
|
|
|
134
|
-
This is
|
|
134
|
+
This is relative to the GUI, so top left is 0, 0
|
|
135
135
|
|
|
136
136
|
@return Vector2?
|
|
137
137
|
]=]
|
|
@@ -142,7 +142,7 @@ end
|
|
|
142
142
|
--[=[
|
|
143
143
|
Observes the scale position on the Gui from 0 to 1
|
|
144
144
|
|
|
145
|
-
This is
|
|
145
|
+
This is relative to the GUI, so top left is 0, 0
|
|
146
146
|
|
|
147
147
|
@return Observable<Vector2?>
|
|
148
148
|
]=]
|