@quenty/promptqueue 1.14.0-canary.524.4bb843b.0 → 1.15.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 +12 -1
- package/package.json +7 -7
- package/src/Shared/PromptQueue.lua +18 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,18 @@
|
|
|
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.
|
|
6
|
+
# [1.15.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/promptqueue@1.14.0...@quenty/promptqueue@1.15.0) (2025-01-08)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* PromptQueue - Expose showing state ([#525](https://github.com/Quenty/NevermoreEngine/issues/525)) ([0081f30](https://github.com/Quenty/NevermoreEngine/commit/0081f302c3700cf2d381d54201649f47217b557f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [1.14.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/promptqueue@1.13.0...@quenty/promptqueue@1.14.0) (2024-12-15)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/promptqueue
|
|
9
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/promptqueue",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.15.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": "10.7.1",
|
|
29
|
-
"@quenty/loader": "10.7.1",
|
|
30
|
-
"@quenty/promise": "10.9.0
|
|
31
|
-
"@quenty/signal": "7.9.0",
|
|
32
|
-
"@quenty/transitionmodel": "7.16.0
|
|
28
|
+
"@quenty/baseobject": "^10.7.1",
|
|
29
|
+
"@quenty/loader": "^10.7.1",
|
|
30
|
+
"@quenty/promise": "^10.9.0",
|
|
31
|
+
"@quenty/signal": "^7.9.0",
|
|
32
|
+
"@quenty/transitionmodel": "^7.16.0"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "983dd19fe900614dc698e5dba172439d81b8b4b1"
|
|
38
38
|
}
|
|
@@ -166,6 +166,24 @@ function PromptQueue:HideCurrent(doNotAnimate)
|
|
|
166
166
|
end
|
|
167
167
|
end
|
|
168
168
|
|
|
169
|
+
--[=[
|
|
170
|
+
Returns whether or not the PromptQueue is currently showing its contents.
|
|
171
|
+
|
|
172
|
+
@return boolean
|
|
173
|
+
]=]
|
|
174
|
+
function PromptQueue:IsShowing()
|
|
175
|
+
return self._isShowing.Value
|
|
176
|
+
end
|
|
177
|
+
|
|
178
|
+
--[=[
|
|
179
|
+
Observes the current state of the PromptQueue, emitting true when showing and false if not.
|
|
180
|
+
|
|
181
|
+
@return Observable<boolean>
|
|
182
|
+
]=]
|
|
183
|
+
function PromptQueue:ObserveIsShowing()
|
|
184
|
+
return self._isShowing:Observe()
|
|
185
|
+
end
|
|
186
|
+
|
|
169
187
|
function PromptQueue:_startQueueProcessing()
|
|
170
188
|
if self._maid._processing then
|
|
171
189
|
return
|