@quenty/binder 14.19.2-canary.547.ba47c62.0 → 14.19.3-canary.550.afa1b3b.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,15 @@
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.19.2-canary.547.ba47c62.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.19.0...@quenty/binder@14.19.2-canary.547.ba47c62.0) (2025-04-07)
6
+ ## [14.19.3-canary.550.afa1b3b.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.19.2...@quenty/binder@14.19.3-canary.550.afa1b3b.0) (2025-04-10)
7
+
8
+ **Note:** Version bump only for package @quenty/binder
9
+
10
+
11
+
12
+
13
+
14
+ ## [14.19.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.19.0...@quenty/binder@14.19.2) (2025-04-07)
7
15
 
8
16
 
9
17
  ### Bug Fixes
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2014-2024 James Onnen (Quenty)
3
+ Copyright (c) 2014-2025 James Onnen (Quenty)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/binder",
3
- "version": "14.19.2-canary.547.ba47c62.0",
3
+ "version": "14.19.3-canary.550.afa1b3b.0",
4
4
  "description": "Utility object to Bind a class to Roblox object, and associated helper methods",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,19 +25,19 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "10.8.2-canary.547.ba47c62.0",
29
- "@quenty/brio": "14.17.2-canary.547.ba47c62.0",
30
- "@quenty/instanceutils": "13.17.2-canary.547.ba47c62.0",
31
- "@quenty/linkutils": "13.17.2-canary.547.ba47c62.0",
32
- "@quenty/loader": "10.8.2-canary.547.ba47c62.0",
33
- "@quenty/maid": "3.4.2-canary.547.ba47c62.0",
34
- "@quenty/promise": "10.10.3-canary.547.ba47c62.0",
35
- "@quenty/rx": "13.17.2-canary.547.ba47c62.0",
36
- "@quenty/signal": "7.10.2-canary.547.ba47c62.0",
37
- "@quenty/valueobject": "13.17.2-canary.547.ba47c62.0"
28
+ "@quenty/baseobject": "10.8.3-canary.550.afa1b3b.0",
29
+ "@quenty/brio": "14.17.3-canary.550.afa1b3b.0",
30
+ "@quenty/instanceutils": "13.17.3-canary.550.afa1b3b.0",
31
+ "@quenty/linkutils": "13.17.3-canary.550.afa1b3b.0",
32
+ "@quenty/loader": "10.8.3-canary.550.afa1b3b.0",
33
+ "@quenty/maid": "3.4.3-canary.550.afa1b3b.0",
34
+ "@quenty/promise": "10.10.4-canary.550.afa1b3b.0",
35
+ "@quenty/rx": "13.17.3-canary.550.afa1b3b.0",
36
+ "@quenty/signal": "7.10.3-canary.550.afa1b3b.0",
37
+ "@quenty/valueobject": "13.17.3-canary.550.afa1b3b.0"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "ba47c62e32170bf74377b0c658c60b84306dc294"
42
+ "gitHead": "afa1b3b99b862698c3ab46009497bd507150867c"
43
43
  }
@@ -74,7 +74,7 @@ export type Binder<T> = typeof(setmetatable(
74
74
  _classRemovingSignal: Signal.Signal<T, Instance>?,
75
75
  _classRemovedSignal: Signal.Signal<T, Instance>?,
76
76
  },
77
- Binder
77
+ {} :: typeof({ __index = Binder })
78
78
  ))
79
79
 
80
80
  --[=[
@@ -106,7 +106,7 @@ export type Binder<T> = typeof(setmetatable(
106
106
  function Binder.new<T>(tagName: string, constructor: BinderConstructor<T>, ...): Binder<T>
107
107
  assert(type(tagName) == "string", "Bad tagName")
108
108
 
109
- local self = setmetatable({}, Binder)
109
+ local self: Binder<T> = setmetatable({} :: any, Binder)
110
110
 
111
111
  self._tagName = assert(tagName, "Bad argument 'tagName', expected string")
112
112
  self._constructor = assert(constructor, "Bad argument 'constructor', expected table or function")
@@ -121,7 +121,7 @@ function Binder.new<T>(tagName: string, constructor: BinderConstructor<T>, ...):
121
121
  self._args = { ... }
122
122
  end
123
123
 
124
- return self :: Binder<T>
124
+ return self
125
125
  end
126
126
 
127
127
  --[=[