@quenty/observablecollection 12.12.0 → 12.12.1-canary.517.2bd4a12.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,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
|
+
## [12.12.1-canary.517.2bd4a12.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/observablecollection@12.12.0...@quenty/observablecollection@12.12.1-canary.517.2bd4a12.0) (2024-11-09)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix ObserveAtIndex ([2bd4a12](https://github.com/Quenty/NevermoreEngine/commit/2bd4a120d54eda1d37e3227518fbdf81c469fd45))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [12.12.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/observablecollection@12.11.1...@quenty/observablecollection@12.12.0) (2024-11-06)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/observablecollection",
|
|
3
|
-
"version": "12.12.0",
|
|
3
|
+
"version": "12.12.1-canary.517.2bd4a12.0",
|
|
4
4
|
"description": "A set of observable collections, such as sets, maps, sorted lists, and more.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -27,24 +27,24 @@
|
|
|
27
27
|
"Quenty"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@quenty/baseobject": "
|
|
31
|
-
"@quenty/brio": "
|
|
32
|
-
"@quenty/ducktype": "
|
|
33
|
-
"@quenty/loader": "
|
|
34
|
-
"@quenty/maid": "
|
|
35
|
-
"@quenty/promise": "
|
|
36
|
-
"@quenty/rx": "
|
|
37
|
-
"@quenty/signal": "
|
|
38
|
-
"@quenty/steputils": "
|
|
39
|
-
"@quenty/symbol": "
|
|
40
|
-
"@quenty/table": "
|
|
41
|
-
"@quenty/valueobject": "
|
|
30
|
+
"@quenty/baseobject": "10.7.1",
|
|
31
|
+
"@quenty/brio": "14.12.0",
|
|
32
|
+
"@quenty/ducktype": "5.7.1",
|
|
33
|
+
"@quenty/loader": "10.7.1",
|
|
34
|
+
"@quenty/maid": "3.4.0",
|
|
35
|
+
"@quenty/promise": "10.8.0",
|
|
36
|
+
"@quenty/rx": "13.12.0",
|
|
37
|
+
"@quenty/signal": "7.9.0",
|
|
38
|
+
"@quenty/steputils": "3.5.2",
|
|
39
|
+
"@quenty/symbol": "3.3.0",
|
|
40
|
+
"@quenty/table": "3.6.0",
|
|
41
|
+
"@quenty/valueobject": "13.12.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@quenty/blend": "
|
|
44
|
+
"@quenty/blend": "12.12.0"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "2bd4a120d54eda1d37e3227518fbdf81c469fd45"
|
|
50
50
|
}
|
|
@@ -296,7 +296,7 @@ function ObservableSortedList:ObserveAtIndex(indexToObserve)
|
|
|
296
296
|
|
|
297
297
|
return self._indexObservers:Observe(indexToObserve)
|
|
298
298
|
:Pipe({
|
|
299
|
-
Rx.
|
|
299
|
+
Rx.map(function()
|
|
300
300
|
local node = self:_findNodeAtIndex(indexToObserve)
|
|
301
301
|
if node then
|
|
302
302
|
return node.data, node
|