@quenty/adorneedata 7.18.4-canary.559.9f38947.0 → 7.19.0-canary.559.b31717d.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
- ## [7.18.4-canary.559.9f38947.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneedata@7.18.3...@quenty/adorneedata@7.18.4-canary.559.9f38947.0) (2025-05-10)
6
+ # [7.19.0-canary.559.b31717d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneedata@7.18.3...@quenty/adorneedata@7.19.0-canary.559.b31717d.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/adorneedata",
3
- "version": "7.18.4-canary.559.9f38947.0",
3
+ "version": "7.19.0-canary.559.b31717d.0",
4
4
  "description": "Bridges attributes and serialization",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,17 +25,17 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/attributeutils": "14.17.4-canary.559.9f38947.0",
28
+ "@quenty/attributeutils": "14.18.0-canary.559.b31717d.0",
29
29
  "@quenty/defaultvalueutils": "1.2.2",
30
- "@quenty/ducktype": "5.8.5-canary.559.9f38947.0",
31
- "@quenty/loader": "10.8.4-canary.559.9f38947.0",
32
- "@quenty/rx": "13.17.4-canary.559.9f38947.0",
33
- "@quenty/rxsignal": "7.17.4-canary.559.9f38947.0",
34
- "@quenty/table": "3.7.5-canary.559.9f38947.0",
30
+ "@quenty/ducktype": "5.8.4",
31
+ "@quenty/loader": "10.8.3",
32
+ "@quenty/rx": "13.18.0-canary.559.b31717d.0",
33
+ "@quenty/rxsignal": "7.18.0-canary.559.b31717d.0",
34
+ "@quenty/table": "3.7.4",
35
35
  "@quentystudios/t": "^3.0.0"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "9f38947767d202411936a5c98898033df5865da0"
40
+ "gitHead": "b31717d8c9f7620c457f5018a2affa760a65334a"
41
41
  }
@@ -6,12 +6,12 @@
6
6
 
7
7
  local require = require(script.Parent.loader).load(script)
8
8
 
9
- local AttributeValue = require("AttributeValue")
10
- local DefaultValueUtils = require("DefaultValueUtils")
11
9
  local DuckTypeUtils = require("DuckTypeUtils")
10
+ local t = require("t")
11
+ local DefaultValueUtils = require("DefaultValueUtils")
12
+ local AttributeValue = require("AttributeValue")
12
13
  local Observable = require("Observable")
13
14
  local ValueObject = require("ValueObject")
14
- local t = require("t")
15
15
 
16
16
  local AdorneeDataEntry = {}
17
17
  AdorneeDataEntry.ClassName = "AdorneeDataEntry"
@@ -162,4 +162,4 @@ function AdorneeDataEntry.IsValid<T>(self: AdorneeDataEntry<T>, value: any): (bo
162
162
  return self._interface(value)
163
163
  end
164
164
 
165
- return AdorneeDataEntry
165
+ return AdorneeDataEntry
@@ -43,9 +43,9 @@ function AdorneeDataValue.new(adornee, prototype)
43
43
  assert(type(prototype) == "table", "Bad prototype")
44
44
 
45
45
  local self = {
46
- _adornee = adornee,
47
- _defaultValues = prototype,
48
- _valueObjects = {},
46
+ _adornee = adornee;
47
+ _defaultValues = prototype;
48
+ _valueObjects = {};
49
49
  }
50
50
 
51
51
  for key, value in prototype do
@@ -149,4 +149,4 @@ function AdorneeDataValue:_getOrCreateAttributeValue(key)
149
149
  end
150
150
  end
151
151
 
152
- return AdorneeDataValue
152
+ return AdorneeDataValue