@worktile/gantt 19.0.6 → 19.0.7

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.
@@ -30,6 +30,8 @@ export declare class NgxGanttComponent extends GanttUpper implements OnInit, OnC
30
30
  footerTemplate: TemplateRef<any>;
31
31
  virtualScroll: CdkVirtualScrollViewport;
32
32
  ganttTableBody: ElementRef<HTMLDivElement>;
33
+ tableScrollWidth: import("@angular/core").WritableSignal<number>;
34
+ private resizeObserver;
33
35
  get loading(): boolean;
34
36
  flatItems: (GanttGroupInternal | GanttItemInternal)[];
35
37
  viewportItems: (GanttGroupInternal | GanttItemInternal)[];
@@ -58,6 +60,8 @@ export declare class NgxGanttComponent extends GanttUpper implements OnInit, OnC
58
60
  expandGroup(group: GanttGroupInternal): void;
59
61
  itemDragStarted(event: GanttTableDragStartedEvent): void;
60
62
  itemDragEnded(event: GanttTableDragEndedEvent): void;
63
+ private initScrollContainerObserver;
64
+ ngOnDestroy(): void;
61
65
  static ɵfac: i0.ɵɵFactoryDeclaration<NgxGanttComponent, never>;
62
66
  static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttComponent, "ngx-gantt", never, { "maxLevel": { "alias": "maxLevel"; "required": false; }; "async": { "alias": "async"; "required": false; }; "childrenResolve": { "alias": "childrenResolve"; "required": false; }; "linkable": { "alias": "linkable"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "virtualScrollEnabled": { "alias": "virtualScrollEnabled"; "required": false; }; "loadingDelay": { "alias": "loadingDelay"; "required": false; }; }, { "linkDragStarted": "linkDragStarted"; "linkDragEnded": "linkDragEnded"; "lineClick": "lineClick"; "selectedChange": "selectedChange"; "virtualScrolledIndexChange": "virtualScrolledIndexChange"; }, ["table", "tableEmptyTemplate", "footerTemplate", "columns"], never, true, never>;
63
67
  }
@@ -92,7 +92,6 @@
92
92
  left: 0;
93
93
  right: 0;
94
94
  overflow: auto;
95
- background-color: variables.$gantt-container-background-color;
96
95
 
97
96
  .gantt-main-groups,
98
97
  .gantt-main-items {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worktile/gantt",
3
- "version": "19.0.6",
3
+ "version": "19.0.7",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "author": "walkerkay001",
6
6
  "license": "MIT",
package/views/day.d.ts CHANGED
@@ -3,7 +3,6 @@ import { GanttDatePoint } from '../class/date-point';
3
3
  import { GanttDate } from '../utils/date';
4
4
  import { GanttView, GanttViewDate, GanttViewOptions } from './view';
5
5
  export declare class GanttViewDay extends GanttView {
6
- showWeekBackdrop: boolean;
7
6
  showTimeline: boolean;
8
7
  viewType: GanttViewType;
9
8
  constructor(start: GanttViewDate, end: GanttViewDate, options?: GanttViewOptions);
package/views/hour.d.ts CHANGED
@@ -3,7 +3,6 @@ import { GanttDatePoint } from '../class/date-point';
3
3
  import { GanttDate } from '../utils/date';
4
4
  import { GanttView, GanttViewDate, GanttViewOptions } from './view';
5
5
  export declare class GanttViewHour extends GanttView {
6
- showWeekBackdrop: boolean;
7
6
  showTimeline: boolean;
8
7
  viewType: GanttViewType;
9
8
  constructor(start: GanttViewDate, end: GanttViewDate, options?: GanttViewOptions);
package/views/view.d.ts CHANGED
@@ -39,7 +39,6 @@ export declare abstract class GanttView {
39
39
  cellWidth: number;
40
40
  primaryWidth: number;
41
41
  showTimeline: boolean;
42
- showWeekBackdrop: boolean;
43
42
  options: GanttViewOptions;
44
43
  dateFormats: {
45
44
  primary?: string;