@quenty/rx 13.22.0 → 13.22.1-canary.45a29f2.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
|
+
## [13.22.1-canary.45a29f2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rx@13.22.0...@quenty/rx@13.22.1-canary.45a29f2.0) (2026-01-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Add ObservableSubscriptionTable.GetRawSubscriptionMap<T...>( ([1b7e45d](https://github.com/Quenty/NevermoreEngine/commit/1b7e45d2a11e568f7078111fe2194a0b68446b27))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [13.22.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rx@13.21.2...@quenty/rx@13.22.0) (2026-01-13)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/rx
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/rx",
|
|
3
|
-
"version": "13.22.0",
|
|
3
|
+
"version": "13.22.1-canary.45a29f2.0",
|
|
4
4
|
"description": "Quenty's reactive library for Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "45a29f21a00d72d7971299695e28129d5b9d0cfb"
|
|
49
49
|
}
|
|
@@ -51,6 +51,12 @@ function ObservableSubscriptionTable.Fire<T...>(self: ObservableSubscriptionTabl
|
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
+
function ObservableSubscriptionTable.GetRawSubscriptionMap<T...>(
|
|
55
|
+
self: ObservableSubscriptionTable<T...>
|
|
56
|
+
): { [any]: { Subscription.Subscription<T...> } }
|
|
57
|
+
return self._subMap
|
|
58
|
+
end
|
|
59
|
+
|
|
54
60
|
--[=[
|
|
55
61
|
Returns true if subscription exists
|
|
56
62
|
|
|
@@ -61,6 +67,10 @@ function ObservableSubscriptionTable.HasSubscriptions<T...>(self: ObservableSubs
|
|
|
61
67
|
return self._subMap[key] ~= nil
|
|
62
68
|
end
|
|
63
69
|
|
|
70
|
+
function ObservableSubscriptionTable.HasAnySubscriptions<T...>(self: ObservableSubscriptionTable<T...>): boolean
|
|
71
|
+
return next(self._subMap) ~= nil
|
|
72
|
+
end
|
|
73
|
+
|
|
64
74
|
--[=[
|
|
65
75
|
Completes the subscription
|
|
66
76
|
|