@worktile/gantt 19.0.4 → 19.0.6

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.
@@ -31,8 +31,6 @@ export declare class GanttDomService implements OnDestroy {
31
31
  private mainScrollbar;
32
32
  private unsubscribe$;
33
33
  constructor(ngZone: NgZone, platformId: string);
34
- private monitorScrollChange;
35
- private syncScroll;
36
34
  private disableBrowserWheelEvent;
37
35
  initialize(root: ElementRef<HTMLElement>): void;
38
36
  /**
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class GanttSyncScrollService {
3
+ private ngZone;
4
+ private scrollGroupsMap;
5
+ constructor();
6
+ registerScrollEvent(groupName: string, element: HTMLElement, direction: 'x' | 'y'): void;
7
+ unregisterScrollEvent(groupName: string, element: HTMLElement): void;
8
+ private monitorScrollChange;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<GanttSyncScrollService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<GanttSyncScrollService>;
11
+ }
@@ -29,6 +29,7 @@ export declare class NgxGanttComponent extends GanttUpper implements OnInit, OnC
29
29
  ganttRoot: NgxGanttRootComponent;
30
30
  footerTemplate: TemplateRef<any>;
31
31
  virtualScroll: CdkVirtualScrollViewport;
32
+ ganttTableBody: ElementRef<HTMLDivElement>;
32
33
  get loading(): boolean;
33
34
  flatItems: (GanttGroupInternal | GanttItemInternal)[];
34
35
  viewportItems: (GanttGroupInternal | GanttItemInternal)[];
@@ -34,6 +34,7 @@
34
34
  .gantt-table {
35
35
  height: 100%;
36
36
  flex: 1;
37
+ display: flex;
37
38
  }
38
39
 
39
40
  &::-webkit-scrollbar {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worktile/gantt",
3
- "version": "19.0.4",
3
+ "version": "19.0.6",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "author": "walkerkay001",
6
6
  "license": "MIT",