@quenty/attributeutils 14.30.0 → 14.30.1
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 +4 -0
- package/package.json +7 -7
- package/src/Shared/AttributeValue.lua +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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
|
+
## [14.30.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/attributeutils@14.30.0...@quenty/attributeutils@14.30.1) (2026-05-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/attributeutils
|
|
9
|
+
|
|
6
10
|
# [14.30.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/attributeutils@14.29.2...@quenty/attributeutils@14.30.0) (2026-05-29)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @quenty/attributeutils
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/attributeutils",
|
|
3
|
-
"version": "14.30.
|
|
3
|
+
"version": "14.30.1",
|
|
4
4
|
"description": "Provides utility functions to work with attributes in Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -29,17 +29,17 @@
|
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@quenty/baseobject": "10.13.0",
|
|
32
|
-
"@quenty/brio": "14.30.
|
|
33
|
-
"@quenty/canceltoken": "11.19.
|
|
32
|
+
"@quenty/brio": "14.30.1",
|
|
33
|
+
"@quenty/canceltoken": "11.19.1",
|
|
34
34
|
"@quenty/loader": "10.11.0",
|
|
35
35
|
"@quenty/maid": "3.9.0",
|
|
36
|
-
"@quenty/promise": "10.18.
|
|
37
|
-
"@quenty/rx": "13.28.
|
|
38
|
-
"@quenty/rxsignal": "7.28.
|
|
36
|
+
"@quenty/promise": "10.18.1",
|
|
37
|
+
"@quenty/rx": "13.28.3",
|
|
38
|
+
"@quenty/rxsignal": "7.28.3",
|
|
39
39
|
"@quenty/symbol": "3.5.2"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
|
|
45
45
|
}
|
|
@@ -70,7 +70,7 @@ function AttributeValue.new<T>(object: Instance, attributeName: string, defaultV
|
|
|
70
70
|
end
|
|
71
71
|
|
|
72
72
|
--[=[
|
|
73
|
-
Handles observing the value
|
|
73
|
+
Handles observing the value conditionally
|
|
74
74
|
|
|
75
75
|
@param condition function | nil
|
|
76
76
|
@return Observable<Brio<any>>
|
|
@@ -91,7 +91,7 @@ function AttributeValue.Observe<T>(self: AttributeValue<T>): Observable.Observab
|
|
|
91
91
|
end
|
|
92
92
|
|
|
93
93
|
--[=[
|
|
94
|
-
The current property of the Attribute. Can be assigned to
|
|
94
|
+
The current property of the Attribute. Can be assigned to write
|
|
95
95
|
the attribute.
|
|
96
96
|
@prop Value T
|
|
97
97
|
@within AttributeValue
|