@quenty/timedtween 7.23.0 → 7.23.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 CHANGED
@@ -3,6 +3,17 @@
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.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/timedtween@7.23.0...@quenty/timedtween@7.23.1) (2026-01-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Transition times take a mountable value instead of just a number ([d63f252](https://github.com/Quenty/NevermoreEngine/commit/d63f2525ec29db3aaabab70fee0956806b4718a1))
12
+
13
+
14
+
15
+
16
+
6
17
  # [7.23.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/timedtween@7.22.7...@quenty/timedtween@7.23.0) (2026-01-04)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/timedtween
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2014-2025 James Onnen (Quenty)
3
+ Copyright (c) 2014-2026 James Onnen (Quenty)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/timedtween",
3
- "version": "7.23.0",
3
+ "version": "7.23.1",
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.22.0",
29
- "@quenty/blend": "^12.23.0",
28
+ "@quenty/basicpane": "^13.22.1",
29
+ "@quenty/blend": "^12.23.1",
30
30
  "@quenty/loader": "^10.9.1",
31
31
  "@quenty/maid": "^3.5.1",
32
32
  "@quenty/math": "^2.7.3",
@@ -35,10 +35,10 @@
35
35
  "@quenty/rx": "^13.21.0",
36
36
  "@quenty/signal": "^7.11.3",
37
37
  "@quenty/steputils": "^3.6.1",
38
- "@quenty/valueobject": "^13.22.0"
38
+ "@quenty/valueobject": "^13.22.1"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "22144a14aa443a177ff307edd3813a838f8c1d5f"
43
+ "gitHead": "5232cd2c58ca0dcdf591dd8ae78995211da2f3e2"
44
44
  }
@@ -54,10 +54,10 @@ export type TimedTween =
54
54
  --[=[
55
55
  Timed transition module
56
56
 
57
- @param transitionTime number? -- Optional
57
+ @param transitionTime ValueObject.Mountable<number>? -- Optional transition time
58
58
  @return TimedTween
59
59
  ]=]
60
- function TimedTween.new(transitionTime: number?): TimedTween
60
+ function TimedTween.new(transitionTime: ValueObject.Mountable<number>?): TimedTween
61
61
  local self: TimedTween = setmetatable(BasicPane.new() :: any, TimedTween)
62
62
 
63
63
  self._transitionTime = self._maid:Add(ValueObject.new(0.15, "number"))
@@ -87,10 +87,10 @@ end
87
87
  --[=[
88
88
  Sets the transition time
89
89
 
90
- @param transitionTime number | Observable<number>
91
- @return MaidTask
90
+ @param transitionTime ValueObject.Mountable<number>
91
+ @return () -> ()
92
92
  ]=]
93
- function TimedTween.SetTransitionTime(self: TimedTween, transitionTime: number | Observable.Observable<number>)
93
+ function TimedTween.SetTransitionTime(self: TimedTween, transitionTime: ValueObject.Mountable<number>): () -> ()
94
94
  return self._transitionTime:Mount(transitionTime)
95
95
  end
96
96