nuxeo-development-framework 3.6.9 → 3.7.1
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 +19 -6
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/correspondence-relation/components/versions/versions.component.js +11 -2
- package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +2 -2
- package/esm2015/lib/components/dynamic-table/dynamic-table/dynamic-table.component.js +5 -2
- package/esm2015/lib/components/file-manger/components/sidepanel/sidepanel.component.js +1 -1
- package/esm2015/lib/components/table/table/table.component.js +3 -3
- package/esm2015/public-api.js +2 -1
- package/fesm2015/nuxeo-development-framework.js +19 -7
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/correspondence-relation/components/versions/versions.component.d.ts +4 -1
- package/lib/components/dynamic-table/dynamic-table/dynamic-table.component.d.ts +2 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -27,6 +27,9 @@ export declare class VersionsComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
27
27
|
file: any;
|
|
28
28
|
/** Actions on Version */
|
|
29
29
|
actions?: string[];
|
|
30
|
+
currentTranslation: string;
|
|
31
|
+
originTranslation: string;
|
|
32
|
+
historyTranslation: string;
|
|
30
33
|
handleActions: EventEmitter<any>;
|
|
31
34
|
versions: any[];
|
|
32
35
|
isArabic: boolean;
|
|
@@ -40,5 +43,5 @@ export declare class VersionsComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
40
43
|
handleAction(event: any): void;
|
|
41
44
|
ngOnDestroy(): void;
|
|
42
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<VersionsComponent, never>;
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VersionsComponent, "cts-versions", never, { "selectedVersion": "selectedVersion"; "file": "file"; "actions": "actions"; }, { "handleActions": "handleActions"; }, never, never>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VersionsComponent, "cts-versions", never, { "selectedVersion": "selectedVersion"; "file": "file"; "actions": "actions"; "currentTranslation": "currentTranslation"; "originTranslation": "originTranslation"; "historyTranslation": "historyTranslation"; }, { "handleActions": "handleActions"; }, never, never>;
|
|
44
47
|
}
|
|
@@ -89,6 +89,7 @@ export declare class DynamicTableComponent implements OnInit, OnDestroy {
|
|
|
89
89
|
highlightSelectedCard: boolean;
|
|
90
90
|
showActionsAsMenu: boolean;
|
|
91
91
|
filterParams: {};
|
|
92
|
+
format: string;
|
|
92
93
|
pageNum: number;
|
|
93
94
|
rows: any[];
|
|
94
95
|
totalRecords: number;
|
|
@@ -107,5 +108,5 @@ export declare class DynamicTableComponent implements OnInit, OnDestroy {
|
|
|
107
108
|
onMultiRowSelectValue(event: any): void;
|
|
108
109
|
PaginationChange(event: any): void;
|
|
109
110
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTableComponent, never>;
|
|
110
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTableComponent, "cts-dynamic-table", never, { "columns": "columns"; "responsiveColumns": "responsiveColumns"; "entityType": "entityType"; "prefix": "prefix"; "headers": "headers"; "fields": "fields"; "pageProvider": "pageProvider"; "pageSize": "pageSize"; "sortingBy": "sortingBy"; "queryParam": "queryParam"; "quickFilter": "quickFilter"; "report": "report"; "rowCursor": "rowCursor"; "fullWidth": "fullWidth"; "tableMode": "tableMode"; "tableActions": "tableActions"; "defultSort": "defultSort"; "range": "range"; "isSearchPage": "isSearchPage"; "multiSelectRows": "multiSelectRows"; "customFirstRow": "customFirstRow"; "highlightSelectedCard": "highlightSelectedCard"; "showActionsAsMenu": "showActionsAsMenu"; "filterParams": "filterParams"; }, { "onRowSelected": "onRowSelected"; "onRowIndexSelected": "onRowIndexSelected"; "actionOnRow": "actionOnRow"; "onGettingData": "onGettingData"; "onMultiRowSelected": "onMultiRowSelected"; "onLoading": "onLoading"; }, never, never>;
|
|
111
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTableComponent, "cts-dynamic-table", never, { "columns": "columns"; "responsiveColumns": "responsiveColumns"; "entityType": "entityType"; "prefix": "prefix"; "headers": "headers"; "fields": "fields"; "pageProvider": "pageProvider"; "pageSize": "pageSize"; "sortingBy": "sortingBy"; "queryParam": "queryParam"; "quickFilter": "quickFilter"; "report": "report"; "rowCursor": "rowCursor"; "fullWidth": "fullWidth"; "tableMode": "tableMode"; "tableActions": "tableActions"; "defultSort": "defultSort"; "range": "range"; "isSearchPage": "isSearchPage"; "multiSelectRows": "multiSelectRows"; "customFirstRow": "customFirstRow"; "highlightSelectedCard": "highlightSelectedCard"; "showActionsAsMenu": "showActionsAsMenu"; "filterParams": "filterParams"; "format": "format"; }, { "onRowSelected": "onRowSelected"; "onRowIndexSelected": "onRowIndexSelected"; "actionOnRow": "actionOnRow"; "onGettingData": "onGettingData"; "onMultiRowSelected": "onMultiRowSelected"; "onLoading": "onLoading"; }, never, never>;
|
|
111
112
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -223,3 +223,4 @@ export * from './lib/directive/drag-and-drop/drag-and-drop.directive';
|
|
|
223
223
|
export * from './lib/configuration/app-config.service';
|
|
224
224
|
export * from './lib/configuration/helpers/app-initializer';
|
|
225
225
|
export * from './lib/directive/permissions/evaluators.service';
|
|
226
|
+
export * from './lib/components/comments/services/comment-api.service';
|