@quenty/instanceutils 13.17.3 → 13.17.4-canary.559.339cfa7.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,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
|
+
## [13.17.4-canary.559.339cfa7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/instanceutils@13.17.3...@quenty/instanceutils@13.17.4-canary.559.339cfa7.0) (2025-05-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/instanceutils
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [13.17.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/instanceutils@13.17.2...@quenty/instanceutils@13.17.3) (2025-04-10)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/instanceutils
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/instanceutils",
|
|
3
|
-
"version": "13.17.
|
|
3
|
+
"version": "13.17.4-canary.559.339cfa7.0",
|
|
4
4
|
"description": "Utility functions involving instances in Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"Quenty"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@quenty/brio": "
|
|
30
|
-
"@quenty/loader": "
|
|
31
|
-
"@quenty/maid": "
|
|
32
|
-
"@quenty/rx": "
|
|
33
|
-
"@quenty/symbol": "
|
|
29
|
+
"@quenty/brio": "14.17.4-canary.559.339cfa7.0",
|
|
30
|
+
"@quenty/loader": "10.8.4-canary.559.339cfa7.0",
|
|
31
|
+
"@quenty/maid": "3.4.4-canary.559.339cfa7.0",
|
|
32
|
+
"@quenty/rx": "13.17.4-canary.559.339cfa7.0",
|
|
33
|
+
"@quenty/symbol": "3.4.3-canary.559.339cfa7.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "339cfa778736f08768ed7305041f6221faa35bfc"
|
|
39
39
|
}
|
|
@@ -450,7 +450,10 @@ end
|
|
|
450
450
|
@param className string
|
|
451
451
|
@return Observable<Instance>
|
|
452
452
|
]=]
|
|
453
|
-
function RxInstanceUtils.observeDescendantsOfClassBrio(
|
|
453
|
+
function RxInstanceUtils.observeDescendantsOfClassBrio(
|
|
454
|
+
parent: Instance,
|
|
455
|
+
className: string
|
|
456
|
+
): Observable.Observable<Brio.Brio<Instance>>
|
|
454
457
|
assert(typeof(parent) == "Instance", "Bad parent")
|
|
455
458
|
assert(type(className) == "string", "Bad className")
|
|
456
459
|
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
@class RxInstanceUtils.spec.lua
|
|
3
3
|
]]
|
|
4
4
|
|
|
5
|
-
local require =
|
|
5
|
+
local require =
|
|
6
|
+
require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
|
|
6
7
|
|
|
7
8
|
local Jest = require("Jest")
|
|
8
9
|
local RxInstanceUtils = require("RxInstanceUtils")
|
|
@@ -23,4 +24,4 @@ describe("RxInstanceUtils.observeChildrenBrio", function()
|
|
|
23
24
|
|
|
24
25
|
expect(externalResult).toEqual(nil)
|
|
25
26
|
end)
|
|
26
|
-
end)
|
|
27
|
+
end)
|