@quenty/observablecollection 12.19.0 → 12.19.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 +8 -0
- package/package.json +2 -2
- package/src/Shared/FilteredObservableListView.lua +2 -0
- package/src/Shared/ObservableCountingMap.lua +2 -0
- package/src/Shared/ObservableList.lua +2 -0
- package/src/Shared/ObservableMap.lua +2 -0
- package/src/Shared/ObservableMapList.lua +2 -0
- package/src/Shared/ObservableMapSet.lua +2 -0
- package/src/Shared/ObservableSet.lua +2 -0
- package/src/Shared/SortedList/ObservableSortedList.lua +2 -0
- package/src/Shared/SortedList/ObservableSortedListOld.lua +2 -0
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
|
+
## [12.19.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/observablecollection@12.19.0...@quenty/observablecollection@12.19.1) (2025-03-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/observablecollection
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [12.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/observablecollection@12.18.1...@quenty/observablecollection@12.19.0) (2025-02-18)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/observablecollection
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/observablecollection",
|
|
3
|
-
"version": "12.19.
|
|
3
|
+
"version": "12.19.1",
|
|
4
4
|
"description": "A set of observable collections, such as sets, maps, sorted lists, and more.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "6721857f84fe0a63aa9eda4eb40e084921ba8534"
|
|
50
50
|
}
|
|
@@ -255,6 +255,8 @@ function ObservableCountingMap:GetTotalKeyCount()
|
|
|
255
255
|
return self._totalKeyCountValue.Value
|
|
256
256
|
end
|
|
257
257
|
|
|
258
|
+
ObservableCountingMap.__len = ObservableCountingMap.GetTotalKeyCount
|
|
259
|
+
|
|
258
260
|
--[=[
|
|
259
261
|
Observes the count of the keys in the map
|
|
260
262
|
@return Observable<number>
|