@quenty/transitionmodel 7.23.2 → 7.23.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
|
+
## [7.23.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/transitionmodel@7.23.2...@quenty/transitionmodel@7.23.3) (2025-12-28)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/transitionmodel
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [7.23.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/transitionmodel@7.23.1...@quenty/transitionmodel@7.23.2) (2025-11-22)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/transitionmodel
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/transitionmodel",
|
|
3
|
-
"version": "7.23.
|
|
3
|
+
"version": "7.23.3",
|
|
4
4
|
"description": "Helps with Gui visiblity showing and hiding",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@quenty/baseobject": "^10.9.0",
|
|
29
|
-
"@quenty/basicpane": "^13.21.
|
|
30
|
-
"@quenty/blend": "^12.22.
|
|
29
|
+
"@quenty/basicpane": "^13.21.3",
|
|
30
|
+
"@quenty/blend": "^12.22.3",
|
|
31
31
|
"@quenty/ducktype": "^5.9.0",
|
|
32
32
|
"@quenty/instanceutils": "^13.20.2",
|
|
33
33
|
"@quenty/loader": "^10.9.0",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"@quenty/rx": "^13.20.0",
|
|
37
37
|
"@quenty/signal": "^7.11.1",
|
|
38
38
|
"@quenty/spring": "^10.9.1",
|
|
39
|
-
"@quenty/timedtween": "^7.22.
|
|
40
|
-
"@quenty/valueobject": "^13.21.
|
|
39
|
+
"@quenty/timedtween": "^7.22.3",
|
|
40
|
+
"@quenty/valueobject": "^13.21.3"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
|
|
46
46
|
}
|
|
@@ -17,15 +17,17 @@ local SpringTransitionModel = setmetatable({}, BasicPane)
|
|
|
17
17
|
SpringTransitionModel.ClassName = "SpringTransitionModel"
|
|
18
18
|
SpringTransitionModel.__index = SpringTransitionModel
|
|
19
19
|
|
|
20
|
-
export type SpringTransitionModel<T> =
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
20
|
+
export type SpringTransitionModel<T> =
|
|
21
|
+
typeof(setmetatable(
|
|
22
|
+
{} :: {
|
|
23
|
+
_showTarget: any,
|
|
24
|
+
_hideTarget: any,
|
|
25
|
+
_springObject: any,
|
|
26
|
+
_transitionModel: TransitionModel.TransitionModel,
|
|
27
|
+
},
|
|
28
|
+
{} :: typeof({ __index = SpringTransitionModel })
|
|
29
|
+
))
|
|
30
|
+
& BasicPane.BasicPane
|
|
29
31
|
|
|
30
32
|
--[=[
|
|
31
33
|
A transition model that has a spring underlying it. Very useful
|
|
@@ -20,15 +20,17 @@ SustainModel.__index = SustainModel
|
|
|
20
20
|
|
|
21
21
|
export type SustainCallback = (Maid.Maid, boolean?) -> Promise.Promise<()> | any
|
|
22
22
|
|
|
23
|
-
export type SustainModel =
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
23
|
+
export type SustainModel =
|
|
24
|
+
typeof(setmetatable(
|
|
25
|
+
{} :: {
|
|
26
|
+
_isSustained: boolean,
|
|
27
|
+
_sustainCallback: SustainCallback?,
|
|
28
|
+
_maid: Maid.Maid,
|
|
29
|
+
SustainChanged: Signal.Signal<(boolean, boolean?)>,
|
|
30
|
+
},
|
|
31
|
+
{} :: typeof({ __index = SustainModel })
|
|
32
|
+
))
|
|
33
|
+
& BaseObject.BaseObject
|
|
32
34
|
|
|
33
35
|
function SustainModel.new(): SustainModel
|
|
34
36
|
local self: SustainModel = setmetatable(BaseObject.new() :: any, SustainModel)
|
|
@@ -16,13 +16,15 @@ local TimedTransitionModel = setmetatable({}, BasicPane)
|
|
|
16
16
|
TimedTransitionModel.ClassName = "TimedTransitionModel"
|
|
17
17
|
TimedTransitionModel.__index = TimedTransitionModel
|
|
18
18
|
|
|
19
|
-
export type TimedTransitionModel =
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
19
|
+
export type TimedTransitionModel =
|
|
20
|
+
typeof(setmetatable(
|
|
21
|
+
{} :: {
|
|
22
|
+
_transitionModel: TransitionModel.TransitionModel,
|
|
23
|
+
_timedTween: TimedTween.TimedTween,
|
|
24
|
+
},
|
|
25
|
+
{} :: typeof({ __index = TimedTransitionModel })
|
|
26
|
+
))
|
|
27
|
+
& BasicPane.BasicPane
|
|
26
28
|
|
|
27
29
|
--[=[
|
|
28
30
|
A transition model that has a spring underlying it. Very useful
|
|
@@ -21,15 +21,17 @@ TransitionModel.__index = TransitionModel
|
|
|
21
21
|
|
|
22
22
|
export type ShowHideCallback = (maid: Maid.Maid, doNotAnimate: boolean?) -> Promise.Promise<()>
|
|
23
23
|
|
|
24
|
-
export type TransitionModel =
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
24
|
+
export type TransitionModel =
|
|
25
|
+
typeof(setmetatable(
|
|
26
|
+
{} :: {
|
|
27
|
+
_isShowingComplete: ValueObject.ValueObject<boolean>,
|
|
28
|
+
_isHidingComplete: ValueObject.ValueObject<boolean>,
|
|
29
|
+
_hideCallback: ShowHideCallback?,
|
|
30
|
+
_showCallback: ShowHideCallback?,
|
|
31
|
+
},
|
|
32
|
+
{} :: typeof({ __index = TransitionModel })
|
|
33
|
+
))
|
|
34
|
+
& BasicPane.BasicPane
|
|
33
35
|
|
|
34
36
|
--[=[
|
|
35
37
|
A transition model that takes a set amount of time to show
|