@quenty/attributeutils 14.4.0-canary.490.601c967.0 → 14.5.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,18 @@
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.4.0-canary.490.601c967.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/attributeutils@14.3.0...@quenty/attributeutils@14.4.0-canary.490.601c967.0) (2024-08-27)
6
+ # [14.5.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/attributeutils@14.4.0...@quenty/attributeutils@14.5.0) (2024-09-12)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add AttributeValue.AttributeName ([25863db](https://github.com/Quenty/NevermoreEngine/commit/25863db3d88e7bb524c28bebff6fc687c072a53b))
12
+
13
+
14
+
15
+
16
+
17
+ # [14.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/attributeutils@14.3.0...@quenty/attributeutils@14.4.0) (2024-08-09)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/attributeutils
9
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/attributeutils",
3
- "version": "14.4.0-canary.490.601c967.0",
3
+ "version": "14.5.0",
4
4
  "description": "Provides utility functions to work with attributes in Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,17 +25,17 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/brio": "14.4.0-canary.490.601c967.0",
29
- "@quenty/canceltoken": "11.4.0-canary.490.601c967.0",
30
- "@quenty/loader": "10.4.0-canary.490.601c967.0",
31
- "@quenty/maid": "3.2.0",
32
- "@quenty/promise": "10.4.0-canary.490.601c967.0",
33
- "@quenty/rx": "13.4.0-canary.490.601c967.0",
34
- "@quenty/rxsignal": "7.4.0-canary.490.601c967.0",
35
- "@quenty/symbol": "3.1.0"
28
+ "@quenty/brio": "^14.5.0",
29
+ "@quenty/canceltoken": "^11.4.0",
30
+ "@quenty/loader": "^10.4.0",
31
+ "@quenty/maid": "^3.3.0",
32
+ "@quenty/promise": "^10.4.0",
33
+ "@quenty/rx": "^13.5.0",
34
+ "@quenty/rxsignal": "^7.5.0",
35
+ "@quenty/symbol": "^3.1.0"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "601c9671f09638be4f326e41fcfe3343ccfe76d8"
40
+ "gitHead": "fb172906f3ee725269ec1e5f4daf9dca227e729d"
41
41
  }
@@ -93,6 +93,8 @@ function AttributeValue:__index(index)
93
93
  end
94
94
  elseif index == "Changed" then
95
95
  return self._object:GetAttributeChangedSignal(self._attributeName)
96
+ elseif index == "AttributeName" then
97
+ return rawget(self, "_attributeName")
96
98
  elseif AttributeValue[index] then
97
99
  return AttributeValue[index]
98
100
  else