@resolveio/client-lib-core 21.5.8 → 21.5.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/client-lib-core",
3
- "version": "21.5.8",
3
+ "version": "21.5.10",
4
4
  "dependencies": {
5
5
  "ngx-ui-tour-core": "^16.0.0",
6
6
  "tslib": "^2.3.0"
@@ -1630,9 +1630,10 @@ declare class TourAnchorDirective implements OnInit, OnChanges, OnDestroy {
1630
1630
  static ɵdir: i0.ɵɵDirectiveDeclaration<TourAnchorDirective, "[tourAnchor]", never, { "tourAnchor": { "alias": "tourAnchor"; "required": false; }; }, {}, never, never, true, never>;
1631
1631
  }
1632
1632
 
1633
- declare class CollapseTableComponent implements OnInit, OnDestroy {
1633
+ declare class CollapseTableComponent implements OnInit, OnChanges, AfterViewInit, OnDestroy {
1634
1634
  private _resizeService;
1635
1635
  private _account;
1636
+ private _elementRef;
1636
1637
  collapseSize: number;
1637
1638
  tableFixed: boolean;
1638
1639
  headerFixed: boolean;
@@ -1640,12 +1641,17 @@ declare class CollapseTableComponent implements OnInit, OnDestroy {
1640
1641
  tertiaryColor: boolean;
1641
1642
  windowSize: number;
1642
1643
  windowSizeSubscription: any;
1643
- constructor(_resizeService: ResizeService, _account: AccountManagerService);
1644
+ mutationObserver: MutationObserver | null;
1645
+ resizeObserver: ResizeObserver | null;
1646
+ constructor(_resizeService: ResizeService, _account: AccountManagerService, _elementRef: ElementRef<HTMLElement>);
1644
1647
  ngOnInit(): void;
1648
+ ngAfterViewInit(): void;
1649
+ ngOnChanges(): void;
1645
1650
  ngOnDestroy(): void;
1646
1651
  onClick(event: any): void;
1647
1652
  getCollapseClass(): string[];
1648
1653
  getPrimaryColor(): string;
1654
+ private updateStickyTopOffset;
1649
1655
  static ɵfac: i0.ɵɵFactoryDeclaration<CollapseTableComponent, never>;
1650
1656
  static ɵcmp: i0.ɵɵComponentDeclaration<CollapseTableComponent, "collapse-table", never, { "collapseSize": { "alias": "collapseSize"; "required": false; }; "tableFixed": { "alias": "tableFixed"; "required": false; }; "headerFixed": { "alias": "headerFixed"; "required": false; }; "secondaryColor": { "alias": "secondaryColor"; "required": false; }; "tertiaryColor": { "alias": "tertiaryColor"; "required": false; }; }, {}, never, ["*"], false, never>;
1651
1657
  }