@quenty/valueobject 13.17.4-canary.559.339cfa7.0 → 13.18.0-canary.0a5db80.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,20 +3,12 @@
|
|
|
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
|
+
# [13.18.0-canary.0a5db80.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valueobject@13.17.2...@quenty/valueobject@13.18.0-canary.0a5db80.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
* Additional type checking updates ([
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## [13.17.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valueobject@13.17.2...@quenty/valueobject@13.17.3) (2025-04-10)
|
|
18
|
-
|
|
19
|
-
**Note:** Version bump only for package @quenty/valueobject
|
|
11
|
+
* Additional type checking updates ([7e008c5](https://github.com/Quenty/NevermoreEngine/commit/7e008c58547bd00b5904e56541454a38c8d72ccc))
|
|
20
12
|
|
|
21
13
|
|
|
22
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/valueobject",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.18.0-canary.0a5db80.0",
|
|
4
4
|
"description": "To work like value objects in Roblox and track a single item with .Changed events",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,16 +26,16 @@
|
|
|
26
26
|
"Quenty"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@quenty/brio": "14.
|
|
30
|
-
"@quenty/ducktype": "5.
|
|
31
|
-
"@quenty/loader": "10.
|
|
32
|
-
"@quenty/maid": "3.
|
|
33
|
-
"@quenty/rx": "13.
|
|
34
|
-
"@quenty/signal": "7.
|
|
35
|
-
"@quenty/valuebaseutils": "13.
|
|
29
|
+
"@quenty/brio": "14.18.0-canary.0a5db80.0",
|
|
30
|
+
"@quenty/ducktype": "5.9.0-canary.0a5db80.0",
|
|
31
|
+
"@quenty/loader": "10.9.0-canary.0a5db80.0",
|
|
32
|
+
"@quenty/maid": "3.5.0-canary.0a5db80.0",
|
|
33
|
+
"@quenty/rx": "13.18.0-canary.0a5db80.0",
|
|
34
|
+
"@quenty/signal": "7.11.0-canary.0a5db80.0",
|
|
35
|
+
"@quenty/valuebaseutils": "13.18.0-canary.0a5db80.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "0a5db8004684dc3e76fd5944599a22602d48cfa9"
|
|
41
41
|
}
|
|
@@ -215,7 +215,10 @@ end
|
|
|
215
215
|
@param condition function | nil -- optional
|
|
216
216
|
@return Observable<Brio<T>>
|
|
217
217
|
]=]
|
|
218
|
-
function ValueObject.ObserveBrio<T>(
|
|
218
|
+
function ValueObject.ObserveBrio<T>(
|
|
219
|
+
self: ValueObject<T>,
|
|
220
|
+
condition: Rx.Predicate<T>?
|
|
221
|
+
): Observable.Observable<Brio.Brio<T>>
|
|
219
222
|
assert(type(condition) == "function" or condition == nil, "Bad condition")
|
|
220
223
|
|
|
221
224
|
return Observable.new(function(sub)
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
local require = require(script.Parent.loader).load(script)
|
|
8
8
|
|
|
9
|
-
local Brio = require("Brio")
|
|
10
9
|
local Maid = require("Maid")
|
|
10
|
+
local Brio = require("Brio")
|
|
11
11
|
local Observable = require("Observable")
|
|
12
12
|
local ValueObject = require("ValueObject")
|
|
13
13
|
|
|
@@ -68,4 +68,4 @@ function ValueObjectUtils.observeValueBrio<T>(valueObject: ValueObject.ValueObje
|
|
|
68
68
|
end) :: any
|
|
69
69
|
end
|
|
70
70
|
|
|
71
|
-
return ValueObjectUtils
|
|
71
|
+
return ValueObjectUtils
|