@quenty/timedtween 7.22.2 → 7.22.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.22.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/timedtween@7.22.2...@quenty/timedtween@7.22.3) (2025-12-28)
7
+
8
+ **Note:** Version bump only for package @quenty/timedtween
9
+
10
+
11
+
12
+
13
+
6
14
  ## [7.22.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/timedtween@7.22.1...@quenty/timedtween@7.22.2) (2025-11-22)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/timedtween
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/timedtween",
3
- "version": "7.22.2",
3
+ "version": "7.22.3",
4
4
  "description": "Linear timed tweening model",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,8 +25,8 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/basicpane": "^13.21.2",
29
- "@quenty/blend": "^12.22.2",
28
+ "@quenty/basicpane": "^13.21.3",
29
+ "@quenty/blend": "^12.22.3",
30
30
  "@quenty/loader": "^10.9.0",
31
31
  "@quenty/maid": "^3.5.0",
32
32
  "@quenty/math": "^2.7.3",
@@ -34,10 +34,10 @@
34
34
  "@quenty/promisemaid": "^5.12.0",
35
35
  "@quenty/rx": "^13.20.0",
36
36
  "@quenty/steputils": "^3.6.0",
37
- "@quenty/valueobject": "^13.21.2"
37
+ "@quenty/valueobject": "^13.21.3"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "b3a8753cbae8b4312b1ed66fce1577a94015c156"
42
+ "gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
43
43
  }
@@ -35,19 +35,21 @@ type ComputedState = {
35
35
  rtime: number,
36
36
  }
37
37
 
38
- export type TimedTween = typeof(setmetatable(
39
- {} :: {
40
- _state: ValueObject.ValueObject<TimedTweenState>,
41
- _transitionTime: ValueObject.ValueObject<number>,
42
-
43
- -- From BasicPane
44
- IsVisible: (self: TimedTween) -> boolean,
45
- SetVisible: (self: TimedTween, isVisible: boolean, doNotAnimate: boolean?) -> (),
46
- VisibleChanged: Signal.Signal<boolean, boolean>,
47
- Destroy: (self: TimedTween) -> (),
48
- },
49
- {} :: typeof({ __index = TimedTween })
50
- )) & BasicPane.BasicPane
38
+ export type TimedTween =
39
+ typeof(setmetatable(
40
+ {} :: {
41
+ _state: ValueObject.ValueObject<TimedTweenState>,
42
+ _transitionTime: ValueObject.ValueObject<number>,
43
+
44
+ -- From BasicPane
45
+ IsVisible: (self: TimedTween) -> boolean,
46
+ SetVisible: (self: TimedTween, isVisible: boolean, doNotAnimate: boolean?) -> (),
47
+ VisibleChanged: Signal.Signal<boolean, boolean>,
48
+ Destroy: (self: TimedTween) -> (),
49
+ },
50
+ {} :: typeof({ __index = TimedTween })
51
+ ))
52
+ & BasicPane.BasicPane
51
53
 
52
54
  --[=[
53
55
  Timed transition module