nuxeo-development-framework 1.0.1 → 1.0.4
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 +17 -3
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +1 -1
- package/esm2015/lib/components/dynamic-table/dynamic-table/dynamic-table.component.js +9 -2
- package/esm2015/lib/components/table/table/table.component.js +9 -2
- package/fesm2015/nuxeo-development-framework.js +17 -3
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/dynamic-table/dynamic-table/dynamic-table.component.d.ts +4 -1
- package/lib/components/table/table/table.component.d.ts +4 -1
- package/package.json +1 -1
|
@@ -37,6 +37,8 @@ export declare class DynamicTableComponent implements OnInit, OnDestroy {
|
|
|
37
37
|
private dynamicTableService;
|
|
38
38
|
/** event to emit when selecting single row */
|
|
39
39
|
onRowSelected: EventEmitter<any>;
|
|
40
|
+
/** event to emit when selecting single row to catch index*/
|
|
41
|
+
onRowIndexSelected: EventEmitter<any>;
|
|
40
42
|
/** event to emit when perform action on row (delte, edit, ... ) */
|
|
41
43
|
actionOnRow: EventEmitter<any>;
|
|
42
44
|
/** event to emit to the higher level when getting data from api is finished */
|
|
@@ -89,9 +91,10 @@ export declare class DynamicTableComponent implements OnInit, OnDestroy {
|
|
|
89
91
|
ngOnChanges(simpleChange: SimpleChanges): void;
|
|
90
92
|
getData(): void;
|
|
91
93
|
rowDetails(event: any): void;
|
|
94
|
+
indexDetails(event: any): void;
|
|
92
95
|
performAction(action: any): void;
|
|
93
96
|
onSort(sortObject: any): void;
|
|
94
97
|
PaginationChange(event: any): void;
|
|
95
98
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTableComponent, never>;
|
|
96
|
-
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"; }, { "onRowSelected": "onRowSelected"; "actionOnRow": "actionOnRow"; "onGettingData": "onGettingData"; }, never, never>;
|
|
99
|
+
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"; }, { "onRowSelected": "onRowSelected"; "onRowIndexSelected": "onRowIndexSelected"; "actionOnRow": "actionOnRow"; "onGettingData": "onGettingData"; }, never, never>;
|
|
97
100
|
}
|
|
@@ -38,6 +38,8 @@ export declare class TableComponent implements OnInit {
|
|
|
38
38
|
nuxeoService: NuxeoService;
|
|
39
39
|
/** event to emit when selecting single row */
|
|
40
40
|
onRowSelected: EventEmitter<any>;
|
|
41
|
+
/** event to emit when selecting single row to catch index*/
|
|
42
|
+
onRowIndexSelected: EventEmitter<any>;
|
|
41
43
|
/** event to emit when selecting single row Icon */
|
|
42
44
|
onIconSelected: EventEmitter<any>;
|
|
43
45
|
/** event to emit when perform action on row (delte, edit, ... ) */
|
|
@@ -84,6 +86,7 @@ export declare class TableComponent implements OnInit {
|
|
|
84
86
|
assignTableColumns(event: any): void;
|
|
85
87
|
onResize(width: any): void;
|
|
86
88
|
cardSelected(card: any): void;
|
|
89
|
+
cardFocused(index: any): void;
|
|
87
90
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
88
|
-
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"; "defultSort": "defultSort"; }, { "onRowSelected": "onRowSelected"; "onIconSelected": "onIconSelected"; "actionOnRow": "actionOnRow"; "onSorting": "onSorting"; }, never, never>;
|
|
91
|
+
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"; "defultSort": "defultSort"; }, { "onRowSelected": "onRowSelected"; "onRowIndexSelected": "onRowIndexSelected"; "onIconSelected": "onIconSelected"; "actionOnRow": "actionOnRow"; "onSorting": "onSorting"; }, never, never>;
|
|
89
92
|
}
|