@quenty/promptqueue 1.19.0-canary.ae8d76d.0 → 1.19.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,7 +3,7 @@
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.19.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/promptqueue@1.18.3...@quenty/promptqueue@1.19.0-canary.ae8d76d.0) (2025-05-10)
6
+ # [1.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/promptqueue@1.18.3...@quenty/promptqueue@1.19.0) (2025-05-10)
7
7
 
8
8
 
9
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/promptqueue",
3
- "version": "1.19.0-canary.ae8d76d.0",
3
+ "version": "1.19.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.8.3",
29
- "@quenty/loader": "10.8.3",
30
- "@quenty/promise": "10.11.0-canary.ae8d76d.0",
31
- "@quenty/signal": "7.10.3",
32
- "@quenty/transitionmodel": "7.20.0-canary.ae8d76d.0"
28
+ "@quenty/baseobject": "^10.9.0",
29
+ "@quenty/loader": "^10.9.0",
30
+ "@quenty/promise": "^10.11.0",
31
+ "@quenty/signal": "^7.11.0",
32
+ "@quenty/transitionmodel": "^7.20.0"
33
33
  },
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
37
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
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"
@@ -234,4 +234,4 @@ function PromptQueue._startQueueProcessing(self: PromptQueue)
234
234
  end)
235
235
  end
236
236
 
237
- return PromptQueue
237
+ return PromptQueue