@quenty/propertyvalue 7.16.0 → 7.16.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 CHANGED
@@ -3,6 +3,14 @@
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.16.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/propertyvalue@7.16.0...@quenty/propertyvalue@7.16.1) (2025-03-21)
7
+
8
+ **Note:** Version bump only for package @quenty/propertyvalue
9
+
10
+
11
+
12
+
13
+
6
14
  # [7.16.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/propertyvalue@7.15.0...@quenty/propertyvalue@7.16.0) (2025-02-18)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/propertyvalue
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/propertyvalue",
3
- "version": "7.16.0",
3
+ "version": "7.16.1",
4
4
  "description": "Property value for Roblox instances",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,11 +25,11 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/instanceutils": "^13.16.0",
28
+ "@quenty/instanceutils": "^13.16.1",
29
29
  "@quenty/loader": "^10.8.0"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "184a407d8d7366c39009444c3c9a7023cb176471"
34
+ "gitHead": "6b7c3e15e60cdb185986207b574e2b5591261e7a"
35
35
  }
@@ -8,12 +8,11 @@ local require = require(script.Parent.loader).load(script)
8
8
 
9
9
  local RxInstanceUtils = require("RxInstanceUtils")
10
10
 
11
-
12
11
  local PropertyValue = {}
13
12
  PropertyValue.ClassName = "PropertyValue"
14
13
  PropertyValue.__index = PropertyValue
15
14
 
16
- function PropertyValue.new(instance, propertyName)
15
+ function PropertyValue.new(instance: Instance, propertyName: string)
17
16
  assert(typeof(instance) == "Instance", "Bad argument 'instance'")
18
17
  assert(type(propertyName) == "string", "Bad argument 'propertyName'")
19
18
 
@@ -53,5 +52,4 @@ function PropertyValue:__newindex(index, value)
53
52
  end
54
53
  end
55
54
 
56
-
57
- return PropertyValue
55
+ return PropertyValue