nuxeo-development-framework 5.2.1 → 5.2.3
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 +9 -4
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/table/table/table.component.js +10 -5
- package/fesm2015/nuxeo-development-framework.js +9 -4
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/table/table/table.component.d.ts +4 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { BehaviorSubject, Observable, Subscription } from 'rxjs';
|
|
3
3
|
import { AppConfigService } from '../../../configuration/app-config.service';
|
|
4
4
|
import { NuxeoService } from '../../../core/services/nuxeo/nuxeo.service';
|
|
@@ -43,6 +43,7 @@ export declare class TableComponent implements OnInit, OnChanges {
|
|
|
43
43
|
nuxeoService: NuxeoService;
|
|
44
44
|
private appConfig;
|
|
45
45
|
private translation;
|
|
46
|
+
private cdr;
|
|
46
47
|
dataTable: DatatableComponent;
|
|
47
48
|
tableContainer: ElementRef;
|
|
48
49
|
/** event to emit when selecting single row */
|
|
@@ -114,7 +115,8 @@ export declare class TableComponent implements OnInit, OnChanges {
|
|
|
114
115
|
responsiveView: boolean;
|
|
115
116
|
statusIcons: {};
|
|
116
117
|
directionIcons: {};
|
|
117
|
-
|
|
118
|
+
isFixedOptionColumns: boolean;
|
|
119
|
+
constructor(nuxeoService: NuxeoService, appConfig: AppConfigService, translation: TranslationService, cdr: ChangeDetectorRef);
|
|
118
120
|
ngAfterViewInit(): void;
|
|
119
121
|
ngOnDestroy(): void;
|
|
120
122
|
ngOnChanges(changes: SimpleChanges): void;
|