@banta/sdk 4.6.5 → 4.6.7
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/bundles/banta-sdk.umd.js +78 -16
- package/bundles/banta-sdk.umd.js.map +1 -1
- package/bundles/banta-sdk.umd.min.js +1 -1
- package/bundles/banta-sdk.umd.min.js.map +1 -1
- package/esm2015/lib/banta-sdk.module.js +3 -2
- package/esm2015/lib/chat-source.js +9 -2
- package/esm2015/lib/comments/banta-comments/banta-comments.component.js +33 -5
- package/esm2015/lib/comments/comment-field/comment-field.component.js +4 -1
- package/esm2015/lib/comments/comment-view/comment-view.component.js +3 -1
- package/fesm2015/banta-sdk.js +46 -6
- package/fesm2015/banta-sdk.js.map +1 -1
- package/lib/comments/banta-comments/banta-comments.component.d.ts +2 -0
- package/package.json +1 -1
|
@@ -78,6 +78,7 @@ export declare class BantaCommentsComponent {
|
|
|
78
78
|
* For details about what CommentViewComponent affords you, see the commentView property.
|
|
79
79
|
*/
|
|
80
80
|
get threadView(): CommentViewComponent;
|
|
81
|
+
waitForThreadView(): Promise<CommentViewComponent>;
|
|
81
82
|
markLoaded: () => void;
|
|
82
83
|
loaded: Promise<void>;
|
|
83
84
|
private updateLoading;
|
|
@@ -151,6 +152,7 @@ export declare class BantaCommentsComponent {
|
|
|
151
152
|
unlikeMessage(source: ChatSourceBase, message: ChatMessage): Promise<void>;
|
|
152
153
|
reportMessage(message: ChatMessage): Promise<void>;
|
|
153
154
|
unselectMessage(): Promise<void>;
|
|
155
|
+
toggleSelectedMessage(message: ChatMessage): Promise<void>;
|
|
154
156
|
selectMessage(message: ChatMessage): Promise<ChatSourceBase>;
|
|
155
157
|
showSignIn(): Promise<void>;
|
|
156
158
|
showEditAvatar(): Promise<void>;
|