@omnia/fx 7.8.1-preview → 7.8.2-preview
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.
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { IWebComponentInstance } from "../..";
|
|
2
|
-
import { Comment, OmitProperties, ThemeDefinition, ResolvedUserIdentity, IOmniaContext, IBlockInstance } from "../../models";
|
|
3
|
-
import { ICommentComponent } from "./IComment";
|
|
4
|
-
import { CommentLocalization } from "./loc/localize";
|
|
5
|
-
import "./Comment.css";
|
|
6
1
|
import { CommentStyles, VueComponentBase } from "..";
|
|
7
|
-
import {
|
|
2
|
+
import { IWebComponentInstance } from "../..";
|
|
3
|
+
import { Comment, IBlockInstance, IOmniaContext, OmitProperties, ResolvedUserIdentity, ThemeDefinition } from "../../models";
|
|
8
4
|
import { CommentSorting } from "../../models/Social";
|
|
9
5
|
import { DirectionRuleStore, FeatureStore } from "../../stores";
|
|
6
|
+
import { IRichTextEditor } from "../richtexteditor";
|
|
7
|
+
import "./Comment.css";
|
|
8
|
+
import { ICommentComponent } from "./IComment";
|
|
9
|
+
import { CommentLocalization } from "./loc/localize";
|
|
10
10
|
export declare class CommentComponent extends VueComponentBase implements IWebComponentInstance, ICommentComponent {
|
|
11
11
|
private userIdentityStore;
|
|
12
12
|
directionStore: DirectionRuleStore;
|
|
@@ -34,10 +34,10 @@ export declare class CommentComponent extends VueComponentBase implements IWebCo
|
|
|
34
34
|
contextParams?: {
|
|
35
35
|
[key: string]: string | number;
|
|
36
36
|
};
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
37
|
+
markedBestReply?: () => void;
|
|
38
|
+
commented?: () => void;
|
|
39
|
+
commentedReply?: () => void;
|
|
40
|
+
reactedSocial?: () => void;
|
|
41
41
|
private reverseSortOrder;
|
|
42
42
|
isLoading: boolean;
|
|
43
43
|
showOnlyBestReply: boolean;
|
|
@@ -33,7 +33,7 @@ export declare class LikeComponent extends VueComponentBase implements IWebCompo
|
|
|
33
33
|
styles?: typeof LikeStyles;
|
|
34
34
|
isCompactMode?: boolean;
|
|
35
35
|
isSummaryMode?: boolean;
|
|
36
|
-
|
|
36
|
+
reactedSocial?: () => void;
|
|
37
37
|
currentUser: ResolvedUserIdentity;
|
|
38
38
|
showLikeListing: boolean;
|
|
39
39
|
socialReactionStylings: Array<ISocialReactionStyling>;
|
|
@@ -24,10 +24,10 @@ export declare class CommentLikeTemplate extends VueComponentBase<{}, {}, {}> im
|
|
|
24
24
|
cardStyle?: ThemeDefinition;
|
|
25
25
|
hideEdit?: boolean;
|
|
26
26
|
readOnly?: boolean;
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
markedBestReply?: () => void;
|
|
28
|
+
commented?: () => void;
|
|
29
|
+
commentedReply?: () => void;
|
|
30
|
+
reactedSocial?: () => void;
|
|
31
31
|
private omniaUxLocalization;
|
|
32
32
|
private commentLoc;
|
|
33
33
|
identityLoc: IdentitiesLocalization.locInterface;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "7.8.
|
|
4
|
+
"version": "7.8.2-preview",
|
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
],
|
|
21
21
|
"author": "Precio Fishbone",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@omnia/fx-models": "7.8.
|
|
23
|
+
"@omnia/fx-models": "7.8.2-preview",
|
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
|
25
25
|
"broadcast-channel": "4.8.0",
|
|
26
26
|
"dayjs": "1.10.7",
|