@quenty/binder 14.25.2 → 14.25.3

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
+ ## [14.25.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.25.2...@quenty/binder@14.25.3) (2025-12-28)
7
+
8
+ **Note:** Version bump only for package @quenty/binder
9
+
10
+
11
+
12
+
13
+
6
14
  ## [14.25.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.25.1...@quenty/binder@14.25.2) (2025-11-22)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/binder
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/binder",
3
- "version": "14.25.2",
3
+ "version": "14.25.3",
4
4
  "description": "Utility object to Bind a class to Roblox object, and associated helper methods",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -36,10 +36,10 @@
36
36
  "@quenty/rx": "^13.20.0",
37
37
  "@quenty/signal": "^7.11.1",
38
38
  "@quenty/table": "^3.8.0",
39
- "@quenty/valueobject": "^13.21.2"
39
+ "@quenty/valueobject": "^13.21.3"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "b3a8753cbae8b4312b1ed66fce1577a94015c156"
44
+ "gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
45
45
  }
@@ -15,17 +15,19 @@ local BoundChildCollection = setmetatable({}, BaseObject)
15
15
  BoundChildCollection.ClassName = "BoundChildCollection"
16
16
  BoundChildCollection.__index = BoundChildCollection
17
17
 
18
- export type BoundChildCollection<T> = typeof(setmetatable(
19
- {} :: {
20
- _binder: Binder.Binder<T>,
21
- _parent: Instance,
22
- _classes: Set.Set<T>,
23
- ClassAdded: Signal.Signal<T>,
24
- ClassRemoved: Signal.Signal<T>,
25
- _size: number,
26
- },
27
- {} :: typeof({ __index = BoundChildCollection })
28
- )) & BaseObject.BaseObject
18
+ export type BoundChildCollection<T> =
19
+ typeof(setmetatable(
20
+ {} :: {
21
+ _binder: Binder.Binder<T>,
22
+ _parent: Instance,
23
+ _classes: Set.Set<T>,
24
+ ClassAdded: Signal.Signal<T>,
25
+ ClassRemoved: Signal.Signal<T>,
26
+ _size: number,
27
+ },
28
+ {} :: typeof({ __index = BoundChildCollection })
29
+ ))
30
+ & BaseObject.BaseObject
29
31
 
30
32
  --[=[
31
33
  Constructcs a new BoundChildCollection.