@quenty/promptqueue 1.18.3 → 1.18.4-canary.11a5dcf.0
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 +11 -0
- package/package.json +7 -7
- package/src/Shared/PromptQueue.lua +6 -6
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
|
+
## [1.18.4-canary.11a5dcf.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/promptqueue@1.18.3...@quenty/promptqueue@1.18.4-canary.11a5dcf.0) (2025-05-10)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Additional type checking updates ([05ba29a](https://github.com/Quenty/NevermoreEngine/commit/05ba29a03efc9f3feed74b34f1d9dfb237496214))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [1.18.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/promptqueue@1.18.2...@quenty/promptqueue@1.18.3) (2025-04-10)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/promptqueue
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/promptqueue",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.4-canary.11a5dcf.0",
|
|
4
4
|
"description": "Queue system for prompts and other UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/baseobject": "
|
|
29
|
-
"@quenty/loader": "
|
|
30
|
-
"@quenty/promise": "
|
|
31
|
-
"@quenty/signal": "
|
|
32
|
-
"@quenty/transitionmodel": "
|
|
28
|
+
"@quenty/baseobject": "10.8.4-canary.11a5dcf.0",
|
|
29
|
+
"@quenty/loader": "10.8.4-canary.11a5dcf.0",
|
|
30
|
+
"@quenty/promise": "10.10.5-canary.11a5dcf.0",
|
|
31
|
+
"@quenty/signal": "7.10.4-canary.11a5dcf.0",
|
|
32
|
+
"@quenty/transitionmodel": "7.19.4-canary.11a5dcf.0"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "11a5dcf7d4c7a0bfbf3337e97d30e8346ea09d3f"
|
|
38
38
|
}
|
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
|
|
8
8
|
local require = require(script.Parent.loader).load(script)
|
|
9
9
|
|
|
10
|
-
local Maid = require("Maid")
|
|
11
10
|
local BaseObject = require("BaseObject")
|
|
11
|
+
local Maid = require("Maid")
|
|
12
|
+
local Observable = require("Observable")
|
|
12
13
|
local Promise = require("Promise")
|
|
14
|
+
local Signal = require("Signal")
|
|
13
15
|
local TransitionModel = require("TransitionModel")
|
|
14
16
|
local ValueObject = require("ValueObject")
|
|
15
|
-
local Signal = require("Signal")
|
|
16
|
-
local _Observable = require("Observable")
|
|
17
17
|
|
|
18
18
|
local PromptQueue = setmetatable({}, BaseObject)
|
|
19
19
|
PromptQueue.ClassName = "PromptQueue"
|
|
@@ -67,7 +67,7 @@ function PromptQueue.Queue(self: PromptQueue, transitionModel: TransitionModel.T
|
|
|
67
67
|
local entry: PromptEntry = {
|
|
68
68
|
promise = promise,
|
|
69
69
|
execute = function()
|
|
70
|
-
|
|
70
|
+
assert(promise:IsPending(), "Not pending")
|
|
71
71
|
|
|
72
72
|
-- stylua: ignore
|
|
73
73
|
maid:GivePromise(transitionModel:PromiseShow())
|
|
@@ -200,7 +200,7 @@ end
|
|
|
200
200
|
|
|
201
201
|
@return Observable<boolean>
|
|
202
202
|
]=]
|
|
203
|
-
function PromptQueue.ObserveIsShowing(self: PromptQueue):
|
|
203
|
+
function PromptQueue.ObserveIsShowing(self: PromptQueue): Observable.Observable<boolean>
|
|
204
204
|
return self._isShowing:Observe()
|
|
205
205
|
end
|
|
206
206
|
|
|
@@ -234,4 +234,4 @@ function PromptQueue._startQueueProcessing(self: PromptQueue)
|
|
|
234
234
|
end)
|
|
235
235
|
end
|
|
236
236
|
|
|
237
|
-
return PromptQueue
|
|
237
|
+
return PromptQueue
|