@banta/sdk 4.6.25 → 4.6.27
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/README.md +2 -2
- package/bundles/banta-sdk.umd.js +79 -61
- package/bundles/banta-sdk.umd.js.map +1 -1
- package/esm2015/lib/banta/banta.component.js +3 -4
- package/esm2015/lib/chat/banta-chat/banta-chat.component.js +4 -5
- package/esm2015/lib/chat/chat-message/chat-message.component.js +1 -1
- package/esm2015/lib/chat/chat-view/chat-view.component.js +1 -1
- package/esm2015/lib/chat/live-chat-message.component.js +2 -2
- package/esm2015/lib/chat-backend.js +1 -1
- package/esm2015/lib/chat-source.js +4 -10
- package/esm2015/lib/comments/attachment-button/attachment-button.component.js +3 -3
- package/esm2015/lib/comments/attachment-scraper.directive.js +1 -1
- package/esm2015/lib/comments/banta-comments/banta-comments.component.js +4 -4
- package/esm2015/lib/comments/comment/comment.component.js +2 -2
- package/esm2015/lib/comments/comment-field/comment-field.component.js +4 -4
- package/esm2015/lib/comments/comment-sort/comment-sort.component.js +1 -1
- package/esm2015/lib/comments/comment-view/comment-view.component.js +3 -3
- package/esm2015/lib/comments/live-comment.component.js +2 -2
- package/esm2015/lib/common/attachment/attachment.component.js +2 -2
- package/esm2015/lib/common/attachments/attachments.component.js +2 -3
- package/esm2015/lib/common/lightbox/lightbox.component.js +3 -3
- package/esm2015/lib/common/markdown-to-html.pipe.js +21 -20
- package/esm2015/lib/emoji/emoji-selector-button.component.js +2 -3
- package/esm2015/lib/emoji/emoji-selector-panel/emoji-selector-panel.component.js +1 -1
- package/esm2015/lib/giphy-attachments.js +1 -1
- package/esm2015/lib/live-message.component.js +2 -2
- package/esm2015/lib/url-attachments.js +1 -1
- package/esm2015/public-api.js +1 -1
- package/fesm2015/banta-sdk.js +399 -404
- package/fesm2015/banta-sdk.js.map +1 -1
- package/lib/chat-source.d.ts +3 -3
- package/package.json +1 -1
- package/bundles/banta-sdk.umd.min.js +0 -2
- package/bundles/banta-sdk.umd.min.js.map +0 -1
package/lib/chat-source.d.ts
CHANGED
|
@@ -14,10 +14,10 @@ export declare class ChatSource extends SocketRPC implements ChatSourceBase {
|
|
|
14
14
|
ready: Promise<void>;
|
|
15
15
|
permissions: ChatPermissions;
|
|
16
16
|
private _state;
|
|
17
|
-
get state(): "
|
|
18
|
-
set state(value: "
|
|
17
|
+
get state(): "connected" | "connecting" | "lost" | "restored";
|
|
18
|
+
set state(value: "connected" | "connecting" | "lost" | "restored");
|
|
19
19
|
private _connectionStateChanged;
|
|
20
|
-
get connectionStateChanged(): Observable<"
|
|
20
|
+
get connectionStateChanged(): Observable<"connected" | "connecting" | "lost" | "restored">;
|
|
21
21
|
bind(socket: DurableSocket): Promise<this>;
|
|
22
22
|
private mapOrUpdateMessages;
|
|
23
23
|
private mapOrUpdateMessage;
|