@quenty/binder 14.19.2 → 14.19.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 +8 -0
- package/package.json +12 -12
- package/src/Shared/Binder.lua +3 -3
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.19.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.19.2...@quenty/binder@14.19.3) (2025-04-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/binder
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
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
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/binder",
|
|
3
|
-
"version": "14.19.
|
|
3
|
+
"version": "14.19.3",
|
|
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.
|
|
29
|
-
"@quenty/brio": "^14.17.
|
|
30
|
-
"@quenty/instanceutils": "^13.17.
|
|
31
|
-
"@quenty/linkutils": "^13.17.
|
|
32
|
-
"@quenty/loader": "^10.8.
|
|
33
|
-
"@quenty/maid": "^3.4.
|
|
34
|
-
"@quenty/promise": "^10.10.
|
|
35
|
-
"@quenty/rx": "^13.17.
|
|
36
|
-
"@quenty/signal": "^7.10.
|
|
37
|
-
"@quenty/valueobject": "^13.17.
|
|
28
|
+
"@quenty/baseobject": "^10.8.3",
|
|
29
|
+
"@quenty/brio": "^14.17.3",
|
|
30
|
+
"@quenty/instanceutils": "^13.17.3",
|
|
31
|
+
"@quenty/linkutils": "^13.17.3",
|
|
32
|
+
"@quenty/loader": "^10.8.3",
|
|
33
|
+
"@quenty/maid": "^3.4.3",
|
|
34
|
+
"@quenty/promise": "^10.10.4",
|
|
35
|
+
"@quenty/rx": "^13.17.3",
|
|
36
|
+
"@quenty/signal": "^7.10.3",
|
|
37
|
+
"@quenty/valueobject": "^13.17.3"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "b06c070ae91d5dab7bd8de6e290ad2caabb15d8f"
|
|
43
43
|
}
|
package/src/Shared/Binder.lua
CHANGED
|
@@ -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
|
|
124
|
+
return self
|
|
125
125
|
end
|
|
126
126
|
|
|
127
127
|
--[=[
|