nuxeo-development-framework 3.4.0 → 3.4.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.
@@ -87,6 +87,7 @@ export declare class DynamicTableComponent implements OnInit, OnDestroy {
87
87
  /** to show 1st row with custom template in the table*/
88
88
  customFirstRow: boolean;
89
89
  highlightSelectedCard: boolean;
90
+ showActionsAsMenu: boolean;
90
91
  filterParams: {};
91
92
  pageNum: number;
92
93
  rows: any[];
@@ -106,5 +107,5 @@ export declare class DynamicTableComponent implements OnInit, OnDestroy {
106
107
  onMultiRowSelectValue(event: any): void;
107
108
  PaginationChange(event: any): void;
108
109
  static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTableComponent, never>;
109
- 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"; "filterParams": "filterParams"; }, { "onRowSelected": "onRowSelected"; "onRowIndexSelected": "onRowIndexSelected"; "actionOnRow": "actionOnRow"; "onGettingData": "onGettingData"; "onMultiRowSelected": "onMultiRowSelected"; "onLoading": "onLoading"; }, never, 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>;
110
111
  }
@@ -86,6 +86,7 @@ export declare class TableComponent implements OnInit {
86
86
  /** to show 1st row with custom template in the table*/
87
87
  customFirstRow: boolean;
88
88
  /** flage used to disable actions if there was multi selected rows */
89
+ showActionsAsMenu: boolean;
89
90
  disabledActions: boolean;
90
91
  isArabic: boolean;
91
92
  tableWidth: string;
@@ -106,5 +107,5 @@ export declare class TableComponent implements OnInit {
106
107
  cardSelected(card: any): void;
107
108
  cardFocused(index: any): void;
108
109
  static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
109
- 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"; "customFirstRow": "customFirstRow"; }, { "onRowSelected": "onRowSelected"; "onRowIndexSelected": "onRowIndexSelected"; "onIconSelected": "onIconSelected"; "actionOnRow": "actionOnRow"; "onSorting": "onSorting"; "onMultiRowSelected": "onMultiRowSelected"; }, never, never>;
110
+ 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"; "customFirstRow": "customFirstRow"; "showActionsAsMenu": "showActionsAsMenu"; }, { "onRowSelected": "onRowSelected"; "onRowIndexSelected": "onRowIndexSelected"; "onIconSelected": "onIconSelected"; "actionOnRow": "actionOnRow"; "onSorting": "onSorting"; "onMultiRowSelected": "onMultiRowSelected"; }, never, never>;
110
111
  }
@@ -9,12 +9,13 @@ import * as i7 from "@angular/material/tooltip";
9
9
  import * as i8 from "../../directive/directive.module";
10
10
  import * as i9 from "../dynamic-view/dynamic-view.module";
11
11
  import * as i10 from "@angular/material/checkbox";
12
+ import * as i11 from "@angular/material/menu";
12
13
  /**
13
14
  * @title
14
15
  * Table Module
15
16
  */
16
17
  export declare class TableModule {
17
18
  static ɵfac: i0.ɵɵFactoryDeclaration<TableModule, never>;
18
- static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof i1.TableComponent, typeof i2.DynamicColumnComponent], [typeof i3.CommonModule, typeof i4.NgxDatatableModule, typeof i5.PipesModule, typeof i6.TranslateModule, typeof i7.MatTooltipModule, typeof i8.DirectiveModule, typeof i9.DynamicViewModule, typeof i10.MatCheckboxModule], [typeof i1.TableComponent, typeof i2.DynamicColumnComponent, typeof i4.NgxDatatableModule]>;
19
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof i1.TableComponent, typeof i2.DynamicColumnComponent], [typeof i3.CommonModule, typeof i4.NgxDatatableModule, typeof i5.PipesModule, typeof i6.TranslateModule, typeof i7.MatTooltipModule, typeof i8.DirectiveModule, typeof i9.DynamicViewModule, typeof i10.MatCheckboxModule, typeof i11.MatMenuModule], [typeof i1.TableComponent, typeof i2.DynamicColumnComponent, typeof i4.NgxDatatableModule]>;
19
20
  static ɵinj: i0.ɵɵInjectorDeclaration<TableModule>;
20
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxeo-development-framework",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "12.2.3",
6
6
  "@angular/common": "12.2.3",