@quenty/tie 10.40.0 → 10.40.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,10 @@
|
|
|
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
|
+
## [10.40.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.40.0...@quenty/tie@10.40.1) (2026-05-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/tie
|
|
9
|
+
|
|
6
10
|
# [10.40.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.39.0...@quenty/tie@10.40.0) (2026-05-29)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @quenty/tie
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/tie",
|
|
3
|
-
"version": "10.40.
|
|
3
|
+
"version": "10.40.1",
|
|
4
4
|
"description": "Tie allows interfaces to be defined between Lua OOP and Roblox objects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -31,33 +31,33 @@
|
|
|
31
31
|
"Quenty"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@quenty/attributeutils": "14.30.
|
|
34
|
+
"@quenty/attributeutils": "14.30.1",
|
|
35
35
|
"@quenty/baseobject": "10.13.0",
|
|
36
|
-
"@quenty/brio": "14.30.
|
|
37
|
-
"@quenty/collectionserviceutils": "8.31.
|
|
36
|
+
"@quenty/brio": "14.30.1",
|
|
37
|
+
"@quenty/collectionserviceutils": "8.31.1",
|
|
38
38
|
"@quenty/enums": "1.3.0",
|
|
39
|
-
"@quenty/instanceutils": "13.30.
|
|
39
|
+
"@quenty/instanceutils": "13.30.1",
|
|
40
40
|
"@quenty/loader": "10.11.0",
|
|
41
41
|
"@quenty/maid": "3.9.0",
|
|
42
42
|
"@quenty/nevermore-test-runner": "1.4.0",
|
|
43
|
-
"@quenty/rx": "13.28.
|
|
44
|
-
"@quenty/rxsignal": "7.28.
|
|
45
|
-
"@quenty/servicebag": "11.18.
|
|
46
|
-
"@quenty/statestack": "14.32.
|
|
47
|
-
"@quenty/string": "3.3.
|
|
43
|
+
"@quenty/rx": "13.28.3",
|
|
44
|
+
"@quenty/rxsignal": "7.28.3",
|
|
45
|
+
"@quenty/servicebag": "11.18.1",
|
|
46
|
+
"@quenty/statestack": "14.32.1",
|
|
47
|
+
"@quenty/string": "3.3.7",
|
|
48
48
|
"@quenty/symbol": "3.5.2",
|
|
49
49
|
"@quenty/table": "3.9.2",
|
|
50
|
-
"@quenty/tuple": "1.8.
|
|
51
|
-
"@quenty/valuebaseutils": "13.30.
|
|
52
|
-
"@quenty/valueobject": "13.31.
|
|
50
|
+
"@quenty/tuple": "1.8.1",
|
|
51
|
+
"@quenty/valuebaseutils": "13.30.1",
|
|
52
|
+
"@quenty/valueobject": "13.31.1",
|
|
53
53
|
"@quentystudios/jest-lua": "3.10.0-quenty.2"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@quenty/promise": "10.18.
|
|
57
|
-
"@quenty/signal": "7.13.
|
|
56
|
+
"@quenty/promise": "10.18.1",
|
|
57
|
+
"@quenty/signal": "7.13.1"
|
|
58
58
|
},
|
|
59
59
|
"publishConfig": {
|
|
60
60
|
"access": "public"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
|
|
63
63
|
}
|
|
@@ -344,7 +344,7 @@ function TieDefinition.GetChildren<T>(
|
|
|
344
344
|
end
|
|
345
345
|
|
|
346
346
|
--[=[
|
|
347
|
-
Finds the implementation on the adornee.
|
|
347
|
+
Finds the implementation on the adornee. Alias for [TieDefinition:FindFirstImplementation]
|
|
348
348
|
|
|
349
349
|
@param adornee Adornee
|
|
350
350
|
@param tieRealm TieRealm?
|
|
@@ -695,10 +695,6 @@ end
|
|
|
695
695
|
Ensures implementation of the object, binding table values and Lua OOP objects
|
|
696
696
|
to Roblox objects that can be invoked generally.
|
|
697
697
|
|
|
698
|
-
```lua
|
|
699
|
-
|
|
700
|
-
```
|
|
701
|
-
|
|
702
698
|
@param adornee Instance -- Adornee to implement interface on
|
|
703
699
|
@param implementer table? -- Table with all interface values or nil
|
|
704
700
|
@param tieRealm TieRealm?
|
|
@@ -720,7 +716,7 @@ function TieDefinition.Implement<T>(
|
|
|
720
716
|
end
|
|
721
717
|
|
|
722
718
|
--[=[
|
|
723
|
-
Gets an interface to the tie definition.
|
|
719
|
+
Gets an interface to the tie definition. Note this can be done
|
|
724
720
|
on any Roblox instance. If the instance does not implement the interface,
|
|
725
721
|
invoking interface methods, or querying the interface will result
|
|
726
722
|
in errors.
|
|
@@ -791,7 +787,7 @@ function TieDefinition.GetValidContainerNameSet<T>(self: TieDefinition<T>, tieRe
|
|
|
791
787
|
end
|
|
792
788
|
|
|
793
789
|
--[=[
|
|
794
|
-
Gets a container name for a new container. See [GetValidContainerNameSet]
|
|
790
|
+
Gets a container name for a new container. See [TieDefinition:GetValidContainerNameSet]
|
|
795
791
|
for the full set of valid container names for the tie definition.
|
|
796
792
|
|
|
797
793
|
@param tieRealm TieRealm
|