@quenty/valuebaseutils 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
|
|
6
|
+
# [13.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valuebaseutils@13.17.3...@quenty/valuebaseutils@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/valuebaseutils",
|
|
3
|
-
"version": "13.18.0
|
|
3
|
+
"version": "13.18.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.18.0
|
|
29
|
-
"@quenty/instanceutils": "13.18.0
|
|
30
|
-
"@quenty/loader": "10.
|
|
31
|
-
"@quenty/promise": "10.11.0
|
|
32
|
-
"@quenty/rx": "13.18.0
|
|
33
|
-
"@quenty/rxsignal": "7.18.0
|
|
28
|
+
"@quenty/brio": "^14.18.0",
|
|
29
|
+
"@quenty/instanceutils": "^13.18.0",
|
|
30
|
+
"@quenty/loader": "^10.9.0",
|
|
31
|
+
"@quenty/promise": "^10.11.0",
|
|
32
|
+
"@quenty/rx": "^13.18.0",
|
|
33
|
+
"@quenty/rxsignal": "^7.18.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
|
|
39
39
|
}
|
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
local require = require(script.Parent.loader).load(script)
|
|
7
7
|
|
|
8
|
-
local RxInstanceUtils = require("RxInstanceUtils")
|
|
9
|
-
local RxBrioUtils = require("RxBrioUtils")
|
|
10
|
-
local Observable = require("Observable")
|
|
11
8
|
local Brio = require("Brio")
|
|
9
|
+
local Observable = require("Observable")
|
|
12
10
|
local Rx = require("Rx")
|
|
11
|
+
local RxBrioUtils = require("RxBrioUtils")
|
|
12
|
+
local RxInstanceUtils = require("RxInstanceUtils")
|
|
13
13
|
|
|
14
14
|
local RxValueBaseUtils = {}
|
|
15
15
|
|
|
@@ -63,7 +63,6 @@ function RxValueBaseUtils.observe(
|
|
|
63
63
|
}) :: any
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
-
|
|
67
66
|
--[=[
|
|
68
67
|
Observables a given value object's value
|
|
69
68
|
@param valueObject Instance
|
|
@@ -75,4 +74,4 @@ function RxValueBaseUtils.observeValue(valueObject: ValueBase): Observable.Obser
|
|
|
75
74
|
return RxInstanceUtils.observeProperty(valueObject, "Value")
|
|
76
75
|
end
|
|
77
76
|
|
|
78
|
-
return RxValueBaseUtils
|
|
77
|
+
return RxValueBaseUtils
|
|
@@ -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")
|
|
11
13
|
local Rx = require("Rx")
|
|
12
14
|
local RxSignal = require("RxSignal")
|
|
13
15
|
local RxValueBaseUtils = require("RxValueBaseUtils")
|
|
14
16
|
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
|