@quenty/observablecollection 12.13.0 → 12.13.1-canary.519.cd4d0d8.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.13.1-canary.519.cd4d0d8.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/observablecollection@12.13.0...@quenty/observablecollection@12.13.1-canary.519.cd4d0d8.0) (2024-11-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix :Observe() method in ObservableSortedList ([be780db](https://github.com/Quenty/NevermoreEngine/commit/be780db4695e9eee73aeef0600f6d2ebb14bc923))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [12.13.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/observablecollection@12.12.0...@quenty/observablecollection@12.13.0) (2024-11-12)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/observablecollection",
|
|
3
|
-
"version": "12.13.0",
|
|
3
|
+
"version": "12.13.1-canary.519.cd4d0d8.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": "cd4d0d82a87e31683ac8f4948962e2735ce28972"
|
|
50
50
|
}
|
|
@@ -20,6 +20,7 @@ local require = require(script.Parent.loader).load(script)
|
|
|
20
20
|
|
|
21
21
|
local Brio = require("Brio")
|
|
22
22
|
local DuckTypeUtils = require("DuckTypeUtils")
|
|
23
|
+
local ListIndexUtils = require("ListIndexUtils")
|
|
23
24
|
local Maid = require("Maid")
|
|
24
25
|
local Observable = require("Observable")
|
|
25
26
|
local ObservableSubscriptionTable = require("ObservableSubscriptionTable")
|
|
@@ -27,9 +28,8 @@ local Rx = require("Rx")
|
|
|
27
28
|
local Signal = require("Signal")
|
|
28
29
|
local SortedNode = require("SortedNode")
|
|
29
30
|
local SortedNodeValue = require("SortedNodeValue")
|
|
30
|
-
local ValueObject = require("ValueObject")
|
|
31
31
|
local SortFunctionUtils = require("SortFunctionUtils")
|
|
32
|
-
local
|
|
32
|
+
local ValueObject = require("ValueObject")
|
|
33
33
|
|
|
34
34
|
local ObservableSortedList = {}
|
|
35
35
|
ObservableSortedList.ClassName = "ObservableSortedList"
|
|
@@ -116,7 +116,11 @@ end
|
|
|
116
116
|
@return Observable<{ T }>
|
|
117
117
|
]=]
|
|
118
118
|
function ObservableSortedList:Observe()
|
|
119
|
-
return self._mainObservables:Observe("list")
|
|
119
|
+
return self._mainObservables:Observe("list"):Pipe({
|
|
120
|
+
Rx.start(function()
|
|
121
|
+
return self:GetList()
|
|
122
|
+
end)
|
|
123
|
+
})
|
|
120
124
|
end
|
|
121
125
|
|
|
122
126
|
--[=[
|