@quenty/transitionmodel 7.38.0 → 7.38.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,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
+ ## [7.38.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/transitionmodel@7.38.0...@quenty/transitionmodel@7.38.1) (2026-05-30)
7
+
8
+ **Note:** Version bump only for package @quenty/transitionmodel
9
+
6
10
  # [7.38.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/transitionmodel@7.37.0...@quenty/transitionmodel@7.38.0) (2026-05-29)
7
11
 
8
12
  **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.38.0",
3
+ "version": "7.38.1",
4
4
  "description": "Helps with Gui visiblity showing and hiding",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,21 +29,21 @@
29
29
  ],
30
30
  "dependencies": {
31
31
  "@quenty/baseobject": "10.13.0",
32
- "@quenty/basicpane": "13.31.0",
33
- "@quenty/blend": "12.36.0",
32
+ "@quenty/basicpane": "13.31.1",
33
+ "@quenty/blend": "12.36.1",
34
34
  "@quenty/ducktype": "5.11.0",
35
- "@quenty/instanceutils": "13.30.0",
35
+ "@quenty/instanceutils": "13.30.1",
36
36
  "@quenty/loader": "10.11.0",
37
37
  "@quenty/maid": "3.9.0",
38
- "@quenty/promise": "10.18.0",
39
- "@quenty/rx": "13.28.2",
40
- "@quenty/signal": "7.13.0",
38
+ "@quenty/promise": "10.18.1",
39
+ "@quenty/rx": "13.28.3",
40
+ "@quenty/signal": "7.13.1",
41
41
  "@quenty/spring": "10.12.0",
42
- "@quenty/timedtween": "7.36.0",
43
- "@quenty/valueobject": "13.31.0"
42
+ "@quenty/timedtween": "7.36.1",
43
+ "@quenty/valueobject": "13.31.1"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public"
47
47
  },
48
- "gitHead": "f4a374a0a294ee8900aa5cb68ab138b0acf3e0ae"
48
+ "gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
49
49
  }
@@ -224,7 +224,7 @@ end
224
224
  --[=[
225
225
  Shows the model and promises when the showing is complete.
226
226
 
227
- @param doNotAnimate boolean
227
+ @param doNotAnimate boolean?
228
228
  @return Promise
229
229
  ]=]
230
230
  function SpringTransitionModel.PromiseShow<T>(self: SpringTransitionModel<T>, doNotAnimate: boolean?): Promise.Promise<()>
@@ -232,9 +232,9 @@ function SpringTransitionModel.PromiseShow<T>(self: SpringTransitionModel<T>, do
232
232
  end
233
233
 
234
234
  --[=[
235
- Hides the model and promises when the showing is complete.
235
+ Hides the model and promises when the hiding is complete.
236
236
 
237
- @param doNotAnimate boolean
237
+ @param doNotAnimate boolean?
238
238
  @return Promise
239
239
  ]=]
240
240
  function SpringTransitionModel.PromiseHide<T>(self: SpringTransitionModel<T>, doNotAnimate: boolean?): Promise.Promise<()>
@@ -244,7 +244,7 @@ end
244
244
  --[=[
245
245
  Toggles the model and promises when the transition is complete.
246
246
 
247
- @param doNotAnimate boolean
247
+ @param doNotAnimate boolean?
248
248
  @return Promise
249
249
  ]=]
250
250
  function SpringTransitionModel.PromiseToggle<T>(
@@ -168,7 +168,7 @@ end
168
168
  --[=[
169
169
  Toggles the model and promises when the transition is complete.
170
170
 
171
- @param doNotAnimate boolean
171
+ @param doNotAnimate boolean?
172
172
  @return Promise
173
173
  ]=]
174
174
  function TimedTransitionModel.PromiseToggle(self: TimedTransitionModel, doNotAnimate: boolean?): Promise.Promise<()>
@@ -81,7 +81,7 @@ end
81
81
  --[=[
82
82
  Shows the model and promises when the showing is complete.
83
83
 
84
- @param doNotAnimate boolean
84
+ @param doNotAnimate boolean?
85
85
  @return Promise
86
86
  ]=]
87
87
  function TransitionModel.PromiseShow(self: TransitionModel, doNotAnimate: boolean?): Promise.Promise<()>
@@ -95,7 +95,7 @@ end
95
95
  --[=[
96
96
  Hides the model and promises when the showing is complete.
97
97
 
98
- @param doNotAnimate boolean
98
+ @param doNotAnimate boolean?
99
99
  @return Promise
100
100
  ]=]
101
101
  function TransitionModel.PromiseHide(self: TransitionModel, doNotAnimate: boolean?): Promise.Promise<()>
@@ -109,7 +109,7 @@ end
109
109
  --[=[
110
110
  Toggles the model and promises when the transition is complete.
111
111
 
112
- @param doNotAnimate boolean
112
+ @param doNotAnimate boolean?
113
113
  @return Promise
114
114
  ]=]
115
115
  function TransitionModel.PromiseToggle(self: TransitionModel, doNotAnimate: boolean?): Promise.Promise<()>