@quenty/promptqueue 1.22.2 → 1.22.3-canary.607f741.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 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
+ ## [1.22.3-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/promptqueue@1.22.2...@quenty/promptqueue@1.22.3-canary.607f741.0) (2025-12-28)
7
+
8
+ **Note:** Version bump only for package @quenty/promptqueue
9
+
10
+
11
+
12
+
13
+
6
14
  ## [1.22.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/promptqueue@1.22.1...@quenty/promptqueue@1.22.2) (2025-11-22)
7
15
 
8
16
  **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.22.2",
3
+ "version": "1.22.3-canary.607f741.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.9.0",
29
- "@quenty/loader": "^10.9.0",
30
- "@quenty/promise": "^10.12.0",
31
- "@quenty/signal": "^7.11.1",
32
- "@quenty/transitionmodel": "^7.23.2"
28
+ "@quenty/baseobject": "10.9.0",
29
+ "@quenty/loader": "10.9.0",
30
+ "@quenty/promise": "10.12.0",
31
+ "@quenty/signal": "7.11.1",
32
+ "@quenty/transitionmodel": "7.23.3-canary.607f741.0"
33
33
  },
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "b3a8753cbae8b4312b1ed66fce1577a94015c156"
37
+ "gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
38
38
  }
@@ -25,15 +25,17 @@ type PromptEntry = {
25
25
  cancel: (doNotAnimate: boolean?) -> (),
26
26
  }
27
27
 
28
- export type PromptQueue = typeof(setmetatable(
29
- {} :: {
30
- _isShowing: ValueObject.ValueObject<boolean>,
31
- _clearRequested: Signal.Signal<(boolean?)>,
32
- _queue: { PromptEntry },
33
- _currentProcessingEntry: PromptEntry?,
34
- },
35
- {} :: typeof({ __index = PromptQueue })
36
- )) & BaseObject.BaseObject
28
+ export type PromptQueue =
29
+ typeof(setmetatable(
30
+ {} :: {
31
+ _isShowing: ValueObject.ValueObject<boolean>,
32
+ _clearRequested: Signal.Signal<(boolean?)>,
33
+ _queue: { PromptEntry },
34
+ _currentProcessingEntry: PromptEntry?,
35
+ },
36
+ {} :: typeof({ __index = PromptQueue })
37
+ ))
38
+ & BaseObject.BaseObject
37
39
 
38
40
  --[=[
39
41
  Constructs a new prompt queue