@quenty/rxbinderutils 14.19.0 → 14.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,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
+ ## [14.19.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rxbinderutils@14.19.0...@quenty/rxbinderutils@14.19.1) (2025-04-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Add types to packages ([2374fb2](https://github.com/Quenty/NevermoreEngine/commit/2374fb2b043cfbe0e9b507b3316eec46a4e353a0))
12
+
13
+
14
+
15
+
16
+
6
17
  # [14.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rxbinderutils@14.18.2...@quenty/rxbinderutils@14.19.0) (2025-04-02)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/rxbinderutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/rxbinderutils",
3
- "version": "14.19.0",
3
+ "version": "14.19.1",
4
4
  "description": "Reactive extensions for binders",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,16 +26,16 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/binder": "^14.19.0",
30
- "@quenty/brio": "^14.17.0",
31
- "@quenty/instanceutils": "^13.17.0",
32
- "@quenty/linkutils": "^13.17.0",
33
- "@quenty/loader": "^10.8.0",
34
- "@quenty/maid": "^3.4.0",
35
- "@quenty/rx": "^13.17.0"
29
+ "@quenty/binder": "^14.19.1",
30
+ "@quenty/brio": "^14.17.1",
31
+ "@quenty/instanceutils": "^13.17.1",
32
+ "@quenty/linkutils": "^13.17.1",
33
+ "@quenty/loader": "^10.8.1",
34
+ "@quenty/maid": "^3.4.1",
35
+ "@quenty/rx": "^13.17.1"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "e8ea56930e65322fcffc05a1556d5df988068f0b"
40
+ "gitHead": "78c3ac0ab08dd18085b6e6e6e4f745e76ed99f68"
41
41
  }
@@ -27,7 +27,7 @@ function RxBinderGroupUtils.observeBinders(binderGroup)
27
27
  sub:Fire(binder)
28
28
  end))
29
29
 
30
- for _, binder in pairs(binderGroup:GetBinders()) do
30
+ for _, binder in binderGroup:GetBinders() do
31
31
  sub:Fire(binder)
32
32
  end
33
33
 
@@ -42,7 +42,7 @@ function RxBinderUtils.observeLinkedBoundClassBrio(linkName, parent, binder)
42
42
  RxBrioUtils.flatMapBrio(function(_, linkValue)
43
43
  return binder:ObserveBrio(linkValue)
44
44
  end);
45
- });
45
+ })
46
46
  end
47
47
 
48
48
  --[=[
@@ -188,7 +188,7 @@ function RxBinderUtils.observeBoundClassesBrio(binders, instance)
188
188
 
189
189
  local observables = {}
190
190
 
191
- for _, binder in pairs(binders) do
191
+ for _, binder in binders do
192
192
  table.insert(observables, RxBinderUtils.observeBoundClassBrio(binder, instance))
193
193
  end
194
194