@quenty/valuebaseutils 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
- ## [13.17.4-canary.559.339cfa7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valuebaseutils@13.17.3...@quenty/valuebaseutils@13.17.4-canary.559.339cfa7.0) (2025-05-10)
6
+ # [13.18.0-canary.0a5db80.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valuebaseutils@13.17.2...@quenty/valuebaseutils@13.18.0-canary.0a5db80.0) (2025-05-10)
7
7
 
8
8
 
9
9
  ### Bug Fixes
10
10
 
11
- * Additional type checking updates ([05ba29a](https://github.com/Quenty/NevermoreEngine/commit/05ba29a03efc9f3feed74b34f1d9dfb237496214))
12
-
13
-
14
-
15
-
16
-
17
- ## [13.17.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valuebaseutils@13.17.2...@quenty/valuebaseutils@13.17.3) (2025-04-10)
18
-
19
- **Note:** Version bump only for package @quenty/valuebaseutils
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/valuebaseutils",
3
- "version": "13.17.4-canary.559.339cfa7.0",
3
+ "version": "13.18.0-canary.0a5db80.0",
4
4
  "description": "Provides utilities for working with valuesbase objects, like IntValue or ObjectValue in Roblox.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,15 +25,15 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/brio": "14.17.4-canary.559.339cfa7.0",
29
- "@quenty/instanceutils": "13.17.4-canary.559.339cfa7.0",
30
- "@quenty/loader": "10.8.4-canary.559.339cfa7.0",
31
- "@quenty/promise": "10.10.5-canary.559.339cfa7.0",
32
- "@quenty/rx": "13.17.4-canary.559.339cfa7.0",
33
- "@quenty/rxsignal": "7.17.4-canary.559.339cfa7.0"
28
+ "@quenty/brio": "14.18.0-canary.0a5db80.0",
29
+ "@quenty/instanceutils": "13.18.0-canary.0a5db80.0",
30
+ "@quenty/loader": "10.9.0-canary.0a5db80.0",
31
+ "@quenty/promise": "10.11.0-canary.0a5db80.0",
32
+ "@quenty/rx": "13.18.0-canary.0a5db80.0",
33
+ "@quenty/rxsignal": "7.18.0-canary.0a5db80.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "339cfa778736f08768ed7305041f6221faa35bfc"
38
+ "gitHead": "0a5db8004684dc3e76fd5944599a22602d48cfa9"
39
39
  }
@@ -5,11 +5,11 @@
5
5
 
6
6
  local require = require(script.Parent.loader).load(script)
7
7
 
8
- local Brio = require("Brio")
8
+ local RxInstanceUtils = require("RxInstanceUtils")
9
+ local RxBrioUtils = require("RxBrioUtils")
9
10
  local Observable = require("Observable")
11
+ local Brio = require("Brio")
10
12
  local Rx = require("Rx")
11
- local RxBrioUtils = require("RxBrioUtils")
12
- local RxInstanceUtils = require("RxInstanceUtils")
13
13
 
14
14
  local RxValueBaseUtils = {}
15
15
 
@@ -63,6 +63,7 @@ function RxValueBaseUtils.observe(
63
63
  }) :: any
64
64
  end
65
65
 
66
+
66
67
  --[=[
67
68
  Observables a given value object's value
68
69
  @param valueObject Instance
@@ -74,4 +75,4 @@ function RxValueBaseUtils.observeValue(valueObject: ValueBase): Observable.Obser
74
75
  return RxInstanceUtils.observeProperty(valueObject, "Value")
75
76
  end
76
77
 
77
- return RxValueBaseUtils
78
+ return RxValueBaseUtils
@@ -218,4 +218,4 @@ function ValueBaseUtils.createGetSet(instanceType: ValueBaseType, name: string)
218
218
  end
219
219
  end
220
220
 
221
- return ValueBaseUtils
221
+ return ValueBaseUtils
@@ -8,12 +8,12 @@ local require = require(script.Parent.loader).load(script)
8
8
 
9
9
  local RunService = game:GetService("RunService")
10
10
 
11
- local Brio = require("Brio")
12
- local Observable = require("Observable")
13
11
  local Rx = require("Rx")
14
12
  local RxSignal = require("RxSignal")
15
13
  local RxValueBaseUtils = require("RxValueBaseUtils")
16
14
  local ValueBaseUtils = require("ValueBaseUtils")
15
+ local Observable = require("Observable")
16
+ local Brio = require("Brio")
17
17
 
18
18
  local ValueBaseValue = {}
19
19
  ValueBaseValue.ClassName = "ValueBaseValue"
@@ -111,4 +111,4 @@ function ValueBaseValue.__newindex(self: ValueBaseValue, index, value)
111
111
  end
112
112
  end
113
113
 
114
- return ValueBaseValue
114
+ return ValueBaseValue