nuxeo-development-framework 1.3.3 → 1.3.6
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/nuxeo-development-framework.umd.js +49 -41
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/comments/components/comment-item/comment-item.component.js +11 -7
- package/esm2015/lib/components/comments/components/comments-dashlet/comments-dashlet.component.js +5 -2
- package/esm2015/lib/components/comments/components/comments-list/comments-list.component.js +4 -2
- package/esm2015/lib/components/table/table/table.component.js +4 -4
- package/fesm2015/nuxeo-development-framework.js +18 -10
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/comments/components/comment-item/comment-item.component.d.ts +2 -1
- package/lib/components/comments/components/comments-dashlet/comments-dashlet.component.d.ts +2 -1
- package/lib/components/comments/components/comments-list/comments-list.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -11,6 +11,7 @@ export declare class CommentItemComponent implements OnInit {
|
|
|
11
11
|
private dialog;
|
|
12
12
|
comment: any;
|
|
13
13
|
loaderType: string;
|
|
14
|
+
showCommentActions: boolean;
|
|
14
15
|
lang: string;
|
|
15
16
|
langSubscription: Subscription;
|
|
16
17
|
dialogRef: any;
|
|
@@ -19,5 +20,5 @@ export declare class CommentItemComponent implements OnInit {
|
|
|
19
20
|
ngOnInit(): void;
|
|
20
21
|
executeFunction(type: any): void;
|
|
21
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommentItemComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CommentItemComponent, "app-comment-item", never, { "comment": "comment"; "loaderType": "loaderType"; }, { "refreshCommentList": "refreshCommentList"; }, never, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentItemComponent, "app-comment-item", never, { "comment": "comment"; "loaderType": "loaderType"; "showCommentActions": "showCommentActions"; }, { "refreshCommentList": "refreshCommentList"; }, never, never>;
|
|
23
24
|
}
|
|
@@ -30,6 +30,7 @@ export declare class CommentsDashletComponent implements OnInit {
|
|
|
30
30
|
row?: boolean;
|
|
31
31
|
/** disable/enable add comment section */
|
|
32
32
|
showaddcomment?: boolean;
|
|
33
|
+
showCommentActions: boolean;
|
|
33
34
|
comment: any;
|
|
34
35
|
comments: any[];
|
|
35
36
|
throttle: number;
|
|
@@ -41,5 +42,5 @@ export declare class CommentsDashletComponent implements OnInit {
|
|
|
41
42
|
ngOnInit(): void;
|
|
42
43
|
onPost(): void;
|
|
43
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommentsDashletComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsDashletComponent, "app-comments-dashlet", never, { "entityId": "entityId"; "correspondence": "correspondence"; "row": "row"; "showaddcomment": "showaddcomment"; }, {}, never, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsDashletComponent, "app-comments-dashlet", never, { "entityId": "entityId"; "correspondence": "correspondence"; "row": "row"; "showaddcomment": "showaddcomment"; "showCommentActions": "showCommentActions"; }, {}, never, never>;
|
|
45
46
|
}
|
|
@@ -9,6 +9,7 @@ export declare class CommentsListComponent implements OnInit {
|
|
|
9
9
|
entityId: any;
|
|
10
10
|
pageSize: number;
|
|
11
11
|
loaderType: string;
|
|
12
|
+
showCommentActions: any;
|
|
12
13
|
comments: any[];
|
|
13
14
|
throttle: number;
|
|
14
15
|
distance: number;
|
|
@@ -23,5 +24,5 @@ export declare class CommentsListComponent implements OnInit {
|
|
|
23
24
|
onScroll(event: any): void;
|
|
24
25
|
refreshList(): void;
|
|
25
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommentsListComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsListComponent, "app-comments-list", never, { "entityId": "entityId"; "pageSize": "pageSize"; "loaderType": "loaderType"; }, {}, never, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsListComponent, "app-comments-list", never, { "entityId": "entityId"; "pageSize": "pageSize"; "loaderType": "loaderType"; "showCommentActions": "showCommentActions"; }, {}, never, never>;
|
|
27
28
|
}
|