@quenty/instanceutils 7.3.1 → 7.4.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 +11 -0
- package/package.json +4 -4
- package/src/Shared/RxInstanceUtils.lua +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
# [7.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/instanceutils@7.3.1...@quenty/instanceutils@7.4.0) (2023-01-01)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* RxInstanceUtils.observeDescendantsOfClassBrio(parent, className) only observed children ([900bda0](https://github.com/Quenty/NevermoreEngine/commit/900bda08abfc1fe3f2aa85f545ab5ef9750df607))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [7.3.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/instanceutils@7.3.0...@quenty/instanceutils@7.3.1) (2022-12-27)
|
|
7
18
|
|
|
8
19
|
**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": "7.
|
|
3
|
+
"version": "7.4.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": "^8.
|
|
29
|
+
"@quenty/brio": "^8.3.0",
|
|
30
30
|
"@quenty/loader": "^6.0.1",
|
|
31
31
|
"@quenty/maid": "^2.4.0",
|
|
32
|
-
"@quenty/rx": "^7.
|
|
32
|
+
"@quenty/rx": "^7.3.0",
|
|
33
33
|
"@quenty/symbol": "^2.1.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "b2393f15774341318803f9bdd1377a4aa9d2fb0e"
|
|
39
39
|
}
|
|
@@ -418,7 +418,7 @@ function RxInstanceUtils.observeDescendantsOfClassBrio(parent, className)
|
|
|
418
418
|
assert(typeof(parent) == "Instance", "Bad parent")
|
|
419
419
|
assert(type(className) == "string", "Bad className")
|
|
420
420
|
|
|
421
|
-
return RxInstanceUtils.
|
|
421
|
+
return RxInstanceUtils.observeDescendantsBrio(parent, function(child)
|
|
422
422
|
return child:IsA(className)
|
|
423
423
|
end)
|
|
424
424
|
end
|