raise-common-lib-new 0.0.37 → 0.0.135
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/esm2022/lib/commentary/constants.mjs +1 -1
- package/esm2022/lib/commentary/index.component.mjs +17 -26
- package/esm2022/lib/layout/multi-tab/index.component.mjs +4 -26
- package/fesm2022/raise-common-lib-new.mjs +19 -50
- package/fesm2022/raise-common-lib-new.mjs.map +1 -1
- package/lib/commentary/constants.d.ts +9 -9
- package/lib/commentary/index.component.d.ts +1 -8
- package/lib/layout/multi-tab/index.component.d.ts +1 -3
- package/package.json +1 -1
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
export interface MessageItem {
|
|
2
|
-
messageId
|
|
3
|
-
messageBody
|
|
4
|
-
ownerName
|
|
5
|
-
lastModifiedOn
|
|
2
|
+
messageId: string;
|
|
3
|
+
messageBody: string;
|
|
4
|
+
ownerName: string;
|
|
5
|
+
lastModifiedOn: any;
|
|
6
6
|
[key: string]: any;
|
|
7
7
|
}
|
|
8
8
|
export interface MessageGroup {
|
|
9
|
-
messageId
|
|
10
|
-
messageBody
|
|
11
|
-
ownerName
|
|
12
|
-
lastModifiedOn
|
|
13
|
-
commentaries?: MessageItem[];
|
|
9
|
+
messageId: string;
|
|
10
|
+
messageBody: string;
|
|
11
|
+
ownerName: string;
|
|
12
|
+
lastModifiedOn: any;
|
|
14
13
|
[key: string]: any;
|
|
14
|
+
commentaries: MessageItem[];
|
|
15
15
|
}
|
|
@@ -13,13 +13,6 @@ export declare class RsCommentaryComponent implements OnInit {
|
|
|
13
13
|
editPermission: boolean;
|
|
14
14
|
deletePermission: boolean;
|
|
15
15
|
isReadOnly: boolean;
|
|
16
|
-
filedsKey: {
|
|
17
|
-
commentaries: string;
|
|
18
|
-
messageId: string;
|
|
19
|
-
ownerName: string;
|
|
20
|
-
lastModifiedOn: string;
|
|
21
|
-
messageBody: string;
|
|
22
|
-
};
|
|
23
16
|
actionComplete: EventEmitter<{
|
|
24
17
|
action: "addComment" | "updateComment" | "deleteComment" | "replyComment";
|
|
25
18
|
data: any;
|
|
@@ -41,5 +34,5 @@ export declare class RsCommentaryComponent implements OnInit {
|
|
|
41
34
|
addReply(item: any): void;
|
|
42
35
|
adjustTextareaHeight(e: any): void;
|
|
43
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<RsCommentaryComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RsCommentaryComponent, "rs-commentary", never, { "displayName": { "alias": "displayName"; "required": false; }; "commentData": { "alias": "commentData"; "required": false; }; "editPermission": { "alias": "editPermission"; "required": false; }; "deletePermission": { "alias": "deletePermission"; "required": false; }; "isReadOnly": { "alias": "isReadOnly"; "required": false; };
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RsCommentaryComponent, "rs-commentary", never, { "displayName": { "alias": "displayName"; "required": false; }; "commentData": { "alias": "commentData"; "required": false; }; "editPermission": { "alias": "editPermission"; "required": false; }; "deletePermission": { "alias": "deletePermission"; "required": false; }; "isReadOnly": { "alias": "isReadOnly"; "required": false; }; }, { "actionComplete": "actionComplete"; }, never, never, false, never>;
|
|
45
38
|
}
|
|
@@ -16,8 +16,6 @@ export declare class MultiTabComponent implements OnInit, AfterViewInit, OnDestr
|
|
|
16
16
|
keepAlive: KeepAliveService;
|
|
17
17
|
singleReuseUrls: string[];
|
|
18
18
|
noGenerateTabUrls: string[];
|
|
19
|
-
flattenMenu: any[];
|
|
20
|
-
defaultTabUrl: string;
|
|
21
19
|
onRefreshTab: EventEmitter<any>;
|
|
22
20
|
private subscriptions;
|
|
23
21
|
TAB_WIDTH: number;
|
|
@@ -51,5 +49,5 @@ export declare class MultiTabComponent implements OnInit, AfterViewInit, OnDestr
|
|
|
51
49
|
cleanAllCache(): void;
|
|
52
50
|
private urlWithoutQuery;
|
|
53
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiTabComponent, never>;
|
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiTabComponent, "rs-multi-tab", never, { "singleReuseUrls": { "alias": "singleReuseUrls"; "required": false; }; "noGenerateTabUrls": { "alias": "noGenerateTabUrls"; "required": false; };
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiTabComponent, "rs-multi-tab", never, { "singleReuseUrls": { "alias": "singleReuseUrls"; "required": false; }; "noGenerateTabUrls": { "alias": "noGenerateTabUrls"; "required": false; }; }, { "onRefreshTab": "onRefreshTab"; }, never, never, false, never>;
|
|
55
53
|
}
|