@quenty/valueobject 13.18.0-canary.ae8d76d.0 → 13.18.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
- # [13.18.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valueobject@13.17.3...@quenty/valueobject@13.18.0-canary.ae8d76d.0) (2025-05-10)
6
+ # [13.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valueobject@13.17.3...@quenty/valueobject@13.18.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/valueobject",
3
- "version": "13.18.0-canary.ae8d76d.0",
3
+ "version": "13.18.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.18.0-canary.ae8d76d.0",
30
- "@quenty/ducktype": "5.8.4",
31
- "@quenty/loader": "10.8.3",
32
- "@quenty/maid": "3.4.3",
33
- "@quenty/rx": "13.18.0-canary.ae8d76d.0",
34
- "@quenty/signal": "7.10.3",
35
- "@quenty/valuebaseutils": "13.18.0-canary.ae8d76d.0"
29
+ "@quenty/brio": "^14.18.0",
30
+ "@quenty/ducktype": "^5.9.0",
31
+ "@quenty/loader": "^10.9.0",
32
+ "@quenty/maid": "^3.5.0",
33
+ "@quenty/rx": "^13.18.0",
34
+ "@quenty/signal": "^7.11.0",
35
+ "@quenty/valuebaseutils": "^13.18.0"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
40
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
41
41
  }
@@ -215,10 +215,7 @@ end
215
215
  @param condition function | nil -- optional
216
216
  @return Observable<Brio<T>>
217
217
  ]=]
218
- function ValueObject.ObserveBrio<T>(
219
- self: ValueObject<T>,
220
- condition: Rx.Predicate<T>?
221
- ): Observable.Observable<Brio.Brio<T>>
218
+ function ValueObject.ObserveBrio<T>(self: ValueObject<T>, condition: Rx.Predicate<T>?): Observable.Observable<Brio.Brio<T>>
222
219
  assert(type(condition) == "function" or condition == nil, "Bad condition")
223
220
 
224
221
  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 Maid = require("Maid")
10
9
  local Brio = require("Brio")
10
+ local Maid = require("Maid")
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