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.
@@ -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
- constructor(nuxeoService: NuxeoService, appConfig: AppConfigService, translation: TranslationService);
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxeo-development-framework",
3
- "version": "5.2.1",
3
+ "version": "5.2.3",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "12.2.3",
6
6
  "@angular/common": "12.2.3",