nuxeo-development-framework 1.9.0 → 1.9.2
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 +34 -4
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.js +12 -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 +13 -2
- package/esm2015/lib/components/table/table/table.component.js +11 -2
- package/fesm2015/nuxeo-development-framework.js +34 -4
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.d.ts +1 -0
- package/lib/components/dynamic-table/dynamic-table/dynamic-table.component.d.ts +6 -1
- package/lib/components/table/table/table.component.d.ts +5 -1
- package/package.json +1 -1
|
@@ -48,6 +48,7 @@ export declare class DynamicFilterComponent implements OnInit {
|
|
|
48
48
|
ngOnInit(): void;
|
|
49
49
|
onFilterSelect(committeeName: any, e: any): void;
|
|
50
50
|
EntityType(fetchedKey: any): any;
|
|
51
|
+
isWhiteOrClosetToWhite(colorCode: any): boolean;
|
|
51
52
|
ngOnDestroy(): void;
|
|
52
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFilterComponent, never>;
|
|
53
54
|
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFilterComponent, "cts-dynamic-filter", never, { "title": "title"; "filters": "filters"; "selections": "selections"; "id": "id"; "entityType": "entityType"; "prefix": "prefix"; "department": "department"; "componentType": "componentType"; "customPageProvider": "customPageProvider"; "config": "config"; }, { "onFilterSelected": "onFilterSelected"; }, never, never>;
|
|
@@ -43,6 +43,8 @@ export declare class DynamicTableComponent implements OnInit, OnDestroy {
|
|
|
43
43
|
actionOnRow: EventEmitter<any>;
|
|
44
44
|
/** event to emit to the higher level when getting data from api is finished */
|
|
45
45
|
onGettingData: EventEmitter<any>;
|
|
46
|
+
/** event t emit when selecting multiple row */
|
|
47
|
+
onMultiRowSelected: EventEmitter<any>;
|
|
46
48
|
/** Array of columns */
|
|
47
49
|
columns: any;
|
|
48
50
|
/** Array of columns on smaller screens */
|
|
@@ -78,6 +80,8 @@ export declare class DynamicTableComponent implements OnInit, OnDestroy {
|
|
|
78
80
|
}[];
|
|
79
81
|
range: any;
|
|
80
82
|
isSearchPage: boolean;
|
|
83
|
+
/** allow multiselect rows with checkbox */
|
|
84
|
+
multiSelectRows: boolean;
|
|
81
85
|
highlightSelectedCard: boolean;
|
|
82
86
|
filterParams: {};
|
|
83
87
|
pageNum: number;
|
|
@@ -95,7 +99,8 @@ export declare class DynamicTableComponent implements OnInit, OnDestroy {
|
|
|
95
99
|
indexDetails(event: any): void;
|
|
96
100
|
performAction(action: any): void;
|
|
97
101
|
onSort(sortObject: any): void;
|
|
102
|
+
onMultiRowSelectValue(event: any): void;
|
|
98
103
|
PaginationChange(event: any): void;
|
|
99
104
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTableComponent, never>;
|
|
100
|
-
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"; "highlightSelectedCard": "highlightSelectedCard"; }, { "onRowSelected": "onRowSelected"; "onRowIndexSelected": "onRowIndexSelected"; "actionOnRow": "actionOnRow"; "onGettingData": "onGettingData"; }, never, never>;
|
|
105
|
+
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"; "highlightSelectedCard": "highlightSelectedCard"; }, { "onRowSelected": "onRowSelected"; "onRowIndexSelected": "onRowIndexSelected"; "actionOnRow": "actionOnRow"; "onGettingData": "onGettingData"; "onMultiRowSelected": "onMultiRowSelected"; }, never, never>;
|
|
101
106
|
}
|
|
@@ -51,6 +51,8 @@ export declare class TableComponent implements OnInit {
|
|
|
51
51
|
actionOnRow: EventEmitter<any>;
|
|
52
52
|
/** event t emit when sorting table */
|
|
53
53
|
onSorting: EventEmitter<any>;
|
|
54
|
+
/** event t emit when selecting multiple row */
|
|
55
|
+
onMultiRowSelected: EventEmitter<any>;
|
|
54
56
|
/** aray of rows passed from out side the component */
|
|
55
57
|
rows: any;
|
|
56
58
|
/** array of columns paased from out side the component */
|
|
@@ -79,6 +81,8 @@ export declare class TableComponent implements OnInit {
|
|
|
79
81
|
defultSort: any;
|
|
80
82
|
langSubscription: Subscription;
|
|
81
83
|
highlightSelectedCard: boolean;
|
|
84
|
+
/** allow multiselect rows with checkbox */
|
|
85
|
+
multiSelectRows: boolean;
|
|
82
86
|
isArabic: boolean;
|
|
83
87
|
tableWidth: string;
|
|
84
88
|
tableColumns: any[];
|
|
@@ -97,5 +101,5 @@ export declare class TableComponent implements OnInit {
|
|
|
97
101
|
cardSelected(card: any): void;
|
|
98
102
|
cardFocused(index: any): void;
|
|
99
103
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
100
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "cts-table", never, { "rows": "rows"; "columns": "columns"; "responsiveColumns": "responsiveColumns"; "entityType": "entityType"; "prefix": "prefix"; "pageCount": "pageCount"; "totalRecords": "totalRecords"; "rowCursor": "rowCursor"; "fullWidth": "fullWidth"; "vocItemTranslationPrefix": "vocItemTranslationPrefix"; "tableMode": "tableMode"; "tableActions": "tableActions"; "format": "format"; "defultSort": "defultSort"; "highlightSelectedCard": "highlightSelectedCard"; }, { "onRowSelected": "onRowSelected"; "onRowIndexSelected": "onRowIndexSelected"; "onIconSelected": "onIconSelected"; "actionOnRow": "actionOnRow"; "onSorting": "onSorting"; }, never, never>;
|
|
104
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "cts-table", never, { "rows": "rows"; "columns": "columns"; "responsiveColumns": "responsiveColumns"; "entityType": "entityType"; "prefix": "prefix"; "pageCount": "pageCount"; "totalRecords": "totalRecords"; "rowCursor": "rowCursor"; "fullWidth": "fullWidth"; "vocItemTranslationPrefix": "vocItemTranslationPrefix"; "tableMode": "tableMode"; "tableActions": "tableActions"; "format": "format"; "defultSort": "defultSort"; "highlightSelectedCard": "highlightSelectedCard"; "multiSelectRows": "multiSelectRows"; }, { "onRowSelected": "onRowSelected"; "onRowIndexSelected": "onRowIndexSelected"; "onIconSelected": "onIconSelected"; "actionOnRow": "actionOnRow"; "onSorting": "onSorting"; "onMultiRowSelected": "onMultiRowSelected"; }, never, never>;
|
|
101
105
|
}
|