http-request-manager 18.6.0 → 18.6.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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "http-request-manager",
|
|
3
|
-
"version": "18.6.
|
|
3
|
+
"version": "18.6.1",
|
|
4
4
|
"homepage": "https://wavecoders.ca",
|
|
5
5
|
"author": "Mike Bonifacio <wavecoders@gmail.com> (http://wavecoders@gmail.com/)",
|
|
6
6
|
"description": "This is an Angular Module containing Components/Services using Material",
|
|
@@ -1684,11 +1684,19 @@ declare class WsMessagingComponent implements OnInit, OnDestroy {
|
|
|
1684
1684
|
* Auto-adds PUB- prefix for outgoing communication
|
|
1685
1685
|
*/
|
|
1686
1686
|
onUnsubscribeFromChannel(channel: string): void;
|
|
1687
|
+
/**
|
|
1688
|
+
* Handle chip toggle for subscribe/unsubscribe
|
|
1689
|
+
*/
|
|
1690
|
+
onChipToggle(channel: string, event: any): void;
|
|
1687
1691
|
/**
|
|
1688
1692
|
* Check if currently subscribed to a channel
|
|
1689
1693
|
* Compares display names (without PUB- prefix)
|
|
1690
1694
|
*/
|
|
1691
1695
|
isSubscribed(channel: string, subscribedChannels: string[]): boolean;
|
|
1696
|
+
/**
|
|
1697
|
+
* Handle chip click - toggle subscription state
|
|
1698
|
+
*/
|
|
1699
|
+
onChipClick(channel: string, subscribedChannels: string[]): void;
|
|
1692
1700
|
onSendMessage(user: WSUser): void;
|
|
1693
1701
|
static ɵfac: i0.ɵɵFactoryDeclaration<WsMessagingComponent, never>;
|
|
1694
1702
|
static ɵcmp: i0.ɵɵComponentDeclaration<WsMessagingComponent, "app-ws-messaging", never, { "server": { "alias": "server"; "required": false; }; "wsServer": { "alias": "wsServer"; "required": false; }; "jwtToken": { "alias": "jwtToken"; "required": false; }; "user": { "alias": "user"; "required": false; }; }, {}, never, never, false, never>;
|
|
Binary file
|