nuxeo-development-framework 0.9.7 → 0.9.8
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 +18 -8
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/comments/components/comments-dashlet/comments-dashlet.component.js +9 -2
- package/esm2015/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.js +2 -2
- package/esm2015/lib/components/documents/components/document-scan/document-scan.service.js +1 -1
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.js +6 -3
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.component.js +2 -2
- package/esm2015/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.js +2 -2
- package/esm2015/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.js +2 -2
- package/esm2015/lib/components/dynamic-view/dynamic-viewe.service.js +1 -1
- package/esm2015/lib/components/filter/filter/filter.component.js +1 -1
- package/esm2015/lib/directive/app-has-role/app-has-role.directive.js +1 -1
- package/fesm2015/nuxeo-development-framework.js +18 -8
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/comments/components/comments-dashlet/comments-dashlet.component.d.ts +4 -1
- package/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -30,6 +30,9 @@ export declare class CommentsDashletComponent implements OnInit {
|
|
|
30
30
|
row?: boolean;
|
|
31
31
|
/** disable/enable add comment section */
|
|
32
32
|
showaddcomment?: boolean;
|
|
33
|
+
/** reverse sections order (addcomment , comments list) */
|
|
34
|
+
reverseSections: boolean;
|
|
35
|
+
showExtraActions: boolean;
|
|
33
36
|
comment: any;
|
|
34
37
|
comments: any[];
|
|
35
38
|
throttle: number;
|
|
@@ -41,5 +44,5 @@ export declare class CommentsDashletComponent implements OnInit {
|
|
|
41
44
|
ngOnInit(): void;
|
|
42
45
|
onPost(): void;
|
|
43
46
|
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>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsDashletComponent, "app-comments-dashlet", never, { "entityId": "entityId"; "correspondence": "correspondence"; "row": "row"; "showaddcomment": "showaddcomment"; "reverseSections": "reverseSections"; "showExtraActions": "showExtraActions"; }, {}, never, never>;
|
|
45
48
|
}
|
|
@@ -45,6 +45,7 @@ export declare class DynamicFormDepartmentComponent implements ControlValueAcces
|
|
|
45
45
|
useCustomAddEditAction: any;
|
|
46
46
|
/** to allow custom parent property name to be paassed from outside the component */
|
|
47
47
|
customParentProperty: any;
|
|
48
|
+
returnItemUid: boolean;
|
|
48
49
|
/** emitted when item is selected */
|
|
49
50
|
onSelecting: EventEmitter<any>;
|
|
50
51
|
/** emitted when action is clicked */
|
|
@@ -72,5 +73,5 @@ export declare class DynamicFormDepartmentComponent implements ControlValueAcces
|
|
|
72
73
|
hasErrors(): boolean;
|
|
73
74
|
onAction(e: any): void;
|
|
74
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormDepartmentComponent, [null, null, { optional: true; self: true; }]>;
|
|
75
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormDepartmentComponent, "app-dynamic-form-department", never, { "treeview": "treeview"; "treeViewAsFormControl": "treeViewAsFormControl"; "placeholder": "placeholder"; "multiple": "multiple"; "searchable": "searchable"; "label": "label"; "defaultSelect": "defaultSelect"; "pp_departmentNestedTree": "pp_departmentNestedTree"; "pp_departmentTree": "pp_departmentTree"; "customPrefix": "customPrefix"; "useCustomAddEditAction": "useCustomAddEditAction"; "customParentProperty": "customParentProperty"; }, { "onSelecting": "onSelecting"; "actionClicked": "actionClicked"; }, never, never>;
|
|
76
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormDepartmentComponent, "app-dynamic-form-department", never, { "treeview": "treeview"; "treeViewAsFormControl": "treeViewAsFormControl"; "placeholder": "placeholder"; "multiple": "multiple"; "searchable": "searchable"; "label": "label"; "defaultSelect": "defaultSelect"; "pp_departmentNestedTree": "pp_departmentNestedTree"; "pp_departmentTree": "pp_departmentTree"; "customPrefix": "customPrefix"; "useCustomAddEditAction": "useCustomAddEditAction"; "customParentProperty": "customParentProperty"; "returnItemUid": "returnItemUid"; }, { "onSelecting": "onSelecting"; "actionClicked": "actionClicked"; }, never, never>;
|
|
76
77
|
}
|