@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 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.0",
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": "184a407d8d7366c39009444c3c9a7023cb176471"
49
+ "gitHead": "6721857f84fe0a63aa9eda4eb40e084921ba8534"
50
50
  }
@@ -96,6 +96,8 @@ function FilteredObservableListView:GetCount()
96
96
  return self._scoredList:GetCount()
97
97
  end
98
98
 
99
+ FilteredObservableListView.__len = FilteredObservableListView.GetCount
100
+
99
101
  --[=[
100
102
  Observes the count of the list
101
103
  @return Observable<number>
@@ -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>
@@ -263,6 +263,8 @@ function ObservableList:GetCount()
263
263
  return self._countValue.Value or 0
264
264
  end
265
265
 
266
+ ObservableList.__len = ObservableList.GetCount
267
+
266
268
  --[=[
267
269
  Observes the count of the list
268
270
  @return Observable<number>
@@ -175,6 +175,8 @@ function ObservableMap:GetCount()
175
175
  return self._countValue.Value or 0
176
176
  end
177
177
 
178
+ ObservableMap.__len = ObservableMap.GetCount
179
+
178
180
  --[=[
179
181
  Observes the count of the set
180
182
 
@@ -146,6 +146,8 @@ function ObservableMapList:GetListCount()
146
146
  return self._observableMapOfLists:GetCount()
147
147
  end
148
148
 
149
+ ObservableMapList.__len = ObservableMapList.GetListCount
150
+
149
151
  --[=[
150
152
  Observes how many lists exist
151
153
 
@@ -150,6 +150,8 @@ function ObservableMapSet:GetSetCount()
150
150
  return self._observableMapOfSets:GetCount()
151
151
  end
152
152
 
153
+ ObservableMapSet.__len = ObservableMapSet.GetSetCount
154
+
153
155
  --[=[
154
156
  Observes how many sets exist
155
157
  @return Observable<number>
@@ -173,6 +173,8 @@ function ObservableSet:GetCount()
173
173
  return self._countValue.Value or 0
174
174
  end
175
175
 
176
+ ObservableSet.__len = ObservableSet.GetCount
177
+
176
178
  --[=[
177
179
  Observes the count of the set
178
180
  @return Observable<number>
@@ -346,6 +346,8 @@ function ObservableSortedList:GetCount()
346
346
  return self._countValue.Value or 0
347
347
  end
348
348
 
349
+ ObservableSortedList.__len = ObservableSortedList.GetCount
350
+
349
351
  --[=[
350
352
  Gets a list of all entries.
351
353
  @return { T }
@@ -286,6 +286,8 @@ function ObservableSortedList:GetCount()
286
286
  return self._countValue.Value or 0
287
287
  end
288
288
 
289
+ ObservableSortedList.__len = ObservableSortedList.GetCount
290
+
289
291
  --[=[
290
292
  Gets a list of all entries.
291
293
  @return { T }