@quenty/statestack 14.19.0-canary.ae8d76d.0 → 14.19.1-canary.39d0eda.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,15 @@
|
|
|
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
|
-
|
|
6
|
+
## [14.19.1-canary.39d0eda.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/statestack@14.19.0...@quenty/statestack@14.19.1-canary.39d0eda.0) (2025-08-29)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/statestack
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [14.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/statestack@14.18.3...@quenty/statestack@14.19.0) (2025-05-10)
|
|
7
15
|
|
|
8
16
|
|
|
9
17
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/statestack",
|
|
3
|
-
"version": "14.19.
|
|
3
|
+
"version": "14.19.1-canary.39d0eda.0",
|
|
4
4
|
"description": "Stack of values that allows multiple systems to enable or disable a state",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/baseobject": "10.
|
|
29
|
-
"@quenty/brio": "14.18.
|
|
30
|
-
"@quenty/loader": "10.
|
|
31
|
-
"@quenty/maid": "3.
|
|
32
|
-
"@quenty/rx": "13.18.
|
|
33
|
-
"@quenty/valueobject": "13.18.
|
|
28
|
+
"@quenty/baseobject": "10.9.0",
|
|
29
|
+
"@quenty/brio": "14.18.1-canary.39d0eda.0",
|
|
30
|
+
"@quenty/loader": "10.9.0",
|
|
31
|
+
"@quenty/maid": "3.5.0",
|
|
32
|
+
"@quenty/rx": "13.18.1-canary.39d0eda.0",
|
|
33
|
+
"@quenty/valueobject": "13.18.1-canary.39d0eda.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "39d0edaa45d0c4812b43f2a64ad543fac3f79423"
|
|
39
39
|
}
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
|
|
6
6
|
local require = require(script.Parent.loader).load(script)
|
|
7
7
|
|
|
8
|
-
local StateStack = require("StateStack")
|
|
9
|
-
local Observable = require("Observable")
|
|
10
|
-
local Maid = require("Maid")
|
|
11
8
|
local Brio = require("Brio")
|
|
9
|
+
local Maid = require("Maid")
|
|
10
|
+
local Observable = require("Observable")
|
|
11
|
+
local StateStack = require("StateStack")
|
|
12
12
|
|
|
13
13
|
local RxStateStackUtils = {}
|
|
14
14
|
|
|
@@ -71,4 +71,4 @@ function RxStateStackUtils.createStateStack<T>(observable: Observable.Observable
|
|
|
71
71
|
return stateStack
|
|
72
72
|
end
|
|
73
73
|
|
|
74
|
-
return RxStateStackUtils
|
|
74
|
+
return RxStateStackUtils
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
local require = require(script.Parent.loader).load(script)
|
|
26
26
|
|
|
27
27
|
local BaseObject = require("BaseObject")
|
|
28
|
-
local ValueObject = require("ValueObject")
|
|
29
28
|
local Brio = require("Brio")
|
|
30
|
-
local Signal = require("Signal")
|
|
31
29
|
local Observable = require("Observable")
|
|
32
30
|
local Rx = require("Rx")
|
|
31
|
+
local Signal = require("Signal")
|
|
32
|
+
local ValueObject = require("ValueObject")
|
|
33
33
|
|
|
34
34
|
local StateStack = setmetatable({}, BaseObject)
|
|
35
35
|
StateStack.ClassName = "StateStack"
|
|
@@ -173,4 +173,4 @@ end
|
|
|
173
173
|
@within StateStack
|
|
174
174
|
]=]
|
|
175
175
|
|
|
176
|
-
return StateStack
|
|
176
|
+
return StateStack
|