@masterteam/discussion 0.0.2 → 0.0.4
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterteam/discussion",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/discussion",
|
|
6
6
|
"linkDirectory": true,
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"rxjs": "^7.8.2",
|
|
17
17
|
"tailwindcss": "^4.1.17",
|
|
18
18
|
"tailwindcss-primeui": "^0.6.1",
|
|
19
|
-
"@masterteam/components": "^0.0.
|
|
19
|
+
"@masterteam/components": "^0.0.114",
|
|
20
|
+
"@masterteam/icons": "^0.0.13"
|
|
20
21
|
},
|
|
21
22
|
"dependencies": {
|
|
22
23
|
"tslib": "^2.8.1"
|
|
@@ -254,10 +254,10 @@ declare class DiscussionThread {
|
|
|
254
254
|
protected readonly threadKey: _angular_core.Signal<string>;
|
|
255
255
|
protected readonly commentsAsc: _angular_core.Signal<DiscussionCommentDto[]>;
|
|
256
256
|
protected readonly commentsById: _angular_core.Signal<Map<number, DiscussionCommentDto>>;
|
|
257
|
+
protected readonly resolvedCurrentUserId: _angular_core.Signal<string>;
|
|
257
258
|
protected readonly replyToComment: _angular_core.Signal<DiscussionCommentDto | null>;
|
|
258
259
|
protected readonly readStateLike: _angular_core.Signal<DiscussionReadStateLike | null>;
|
|
259
260
|
protected readonly hasUnread: _angular_core.Signal<boolean>;
|
|
260
|
-
protected readonly unreadCount: _angular_core.Signal<number>;
|
|
261
261
|
protected readonly firstUnreadCommentId: _angular_core.Signal<number | null>;
|
|
262
262
|
protected readonly mentionPool: _angular_core.Signal<DiscussionMentionUser[]>;
|
|
263
263
|
protected readonly participantEntities: _angular_core.Signal<EntityData[]>;
|
|
@@ -265,7 +265,6 @@ declare class DiscussionThread {
|
|
|
265
265
|
protected readonly readyAttachmentFileIds: _angular_core.Signal<string[]>;
|
|
266
266
|
protected readonly canSend: _angular_core.Signal<boolean>;
|
|
267
267
|
protected readonly canSaveEdit: _angular_core.Signal<boolean>;
|
|
268
|
-
protected readonly charactersLeft: _angular_core.Signal<number>;
|
|
269
268
|
protected readonly visibleRevisions: _angular_core.Signal<DiscussionCommentRevisionDto[]>;
|
|
270
269
|
private readonly mentionSearchTerms;
|
|
271
270
|
private readonly mentionMenuMaxWidthPx;
|
|
@@ -292,7 +291,6 @@ declare class DiscussionThread {
|
|
|
292
291
|
protected loadOlder(): Promise<void>;
|
|
293
292
|
protected refreshThread(): Promise<void>;
|
|
294
293
|
protected markRead(): Promise<void>;
|
|
295
|
-
protected markUnread(): Promise<void>;
|
|
296
294
|
protected onViewportScroll(): void;
|
|
297
295
|
protected onComposerInput(event: Event): void;
|
|
298
296
|
protected onComposerCaretEvent(event: Event): void;
|