@quenty/timedtween 7.18.2 → 7.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
+ ## [7.18.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/timedtween@7.18.2...@quenty/timedtween@7.18.3) (2025-04-10)
7
+
8
+ **Note:** Version bump only for package @quenty/timedtween
9
+
10
+
11
+
12
+
13
+
6
14
  ## [7.18.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/timedtween@7.18.0...@quenty/timedtween@7.18.2) (2025-04-07)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/timedtween",
3
- "version": "7.18.2",
3
+ "version": "7.18.3",
4
4
  "description": "Linear timed tweening model",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,19 +25,19 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/basicpane": "^13.17.2",
29
- "@quenty/blend": "^12.18.2",
30
- "@quenty/loader": "^10.8.2",
31
- "@quenty/maid": "^3.4.2",
28
+ "@quenty/basicpane": "^13.17.3",
29
+ "@quenty/blend": "^12.18.3",
30
+ "@quenty/loader": "^10.8.3",
31
+ "@quenty/maid": "^3.4.3",
32
32
  "@quenty/math": "^2.7.3",
33
- "@quenty/promise": "^10.10.3",
34
- "@quenty/promisemaid": "^5.10.3",
35
- "@quenty/rx": "^13.17.2",
33
+ "@quenty/promise": "^10.10.4",
34
+ "@quenty/promisemaid": "^5.10.4",
35
+ "@quenty/rx": "^13.17.3",
36
36
  "@quenty/steputils": "^3.5.5",
37
- "@quenty/valueobject": "^13.17.2"
37
+ "@quenty/valueobject": "^13.17.3"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "64def70499ec067077ee39f279936b620b217847"
42
+ "gitHead": "b06c070ae91d5dab7bd8de6e290ad2caabb15d8f"
43
43
  }
@@ -37,7 +37,6 @@ type ComputedState = {
37
37
 
38
38
  export type TimedTween = typeof(setmetatable(
39
39
  {} :: {
40
- _maid: Maid.Maid,
41
40
  _state: ValueObject.ValueObject<TimedTweenState>,
42
41
  _transitionTime: ValueObject.ValueObject<number>,
43
42
 
@@ -47,8 +46,8 @@ export type TimedTween = typeof(setmetatable(
47
46
  VisibleChanged: _Signal.Signal<boolean, boolean>,
48
47
  Destroy: (self: TimedTween) -> (),
49
48
  },
50
- { __index = TimedTween }
51
- ))
49
+ {} :: typeof({ __index = TimedTween })
50
+ )) & BasicPane.BasicPane
52
51
 
53
52
  --[=[
54
53
  Timed transition module
@@ -180,14 +179,14 @@ function TimedTween.PromiseFinished(self: TimedTween): Promise.Promise<()>
180
179
  end)
181
180
  end))
182
181
 
183
- self._maid[promise :: any] = maid
182
+ self._maid[promise] = maid
184
183
 
185
184
  promise:Finally(function()
186
- self._maid[promise :: any] = nil
185
+ self._maid[promise] = nil
187
186
  end)
188
187
 
189
188
  maid:GiveTask(function()
190
- self._maid[promise :: any] = nil
189
+ self._maid[promise] = nil
191
190
  end)
192
191
  return promise
193
192
  end