@quenty/observablecollection 12.15.0 → 12.16.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,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.16.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/observablecollection@12.15.0...@quenty/observablecollection@12.16.0) (2024-12-03)
7
+
8
+ **Note:** Version bump only for package @quenty/observablecollection
9
+
10
+
11
+
12
+
13
+
6
14
  # [12.15.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/observablecollection@12.14.0...@quenty/observablecollection@12.15.0) (2024-12-03)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/observablecollection",
3
- "version": "12.15.0",
3
+ "version": "12.16.0",
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": "66190e48c1ca93b07040326e9cfcf97e8eb4b0e1"
49
+ "gitHead": "bc1bdf404d38ffcdcc8aa97df305a8ec5a40b990"
50
50
  }
@@ -336,6 +336,15 @@ function ObservableMapList:ObserveListBrio(key)
336
336
  return self._observableMapOfLists:ObserveAtKeyBrio(key)
337
337
  end
338
338
 
339
+ --[=[
340
+ Observes all observable lists in the map.
341
+
342
+ @return Observable<Brio<ObservableList<TValue>>>
343
+ ]=]
344
+ function ObservableMapList:ObserveListsBrio()
345
+ return self._observableMapOfLists:ObserveValuesBrio()
346
+ end
347
+
339
348
  --[=[
340
349
  Observes the number of entries for the given key
341
350