@worktile/gantt 19.0.3 → 19.0.5
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/components/table/body/gantt-table-body.component.d.ts +4 -2
- package/components/table/gantt-table.scss +3 -2
- package/fesm2022/worktile-gantt.mjs +28 -21
- package/fesm2022/worktile-gantt.mjs.map +1 -1
- package/gantt-upper.d.ts +1 -0
- package/gantt.component.d.ts +1 -0
- package/gantt.component.scss +3 -0
- package/package.json +1 -1
package/gantt-upper.d.ts
CHANGED
|
@@ -80,6 +80,7 @@ export declare abstract class GanttUpper implements OnChanges, OnInit, OnDestroy
|
|
|
80
80
|
private getViewDate;
|
|
81
81
|
computeRefs(): void;
|
|
82
82
|
private initSelectionModel;
|
|
83
|
+
private initCssVariables;
|
|
83
84
|
expandGroups(expanded: boolean): void;
|
|
84
85
|
ngOnInit(): void;
|
|
85
86
|
ngOnChanges(changes: SimpleChanges): void;
|
package/gantt.component.d.ts
CHANGED
|
@@ -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)[];
|
package/gantt.component.scss
CHANGED
|
@@ -29,10 +29,12 @@
|
|
|
29
29
|
background-color: variables.$gantt-bg-color;
|
|
30
30
|
overflow-y: auto;
|
|
31
31
|
display: flex;
|
|
32
|
+
flex-direction: column;
|
|
32
33
|
|
|
33
34
|
.gantt-table {
|
|
34
35
|
height: 100%;
|
|
35
36
|
flex: 1;
|
|
37
|
+
display: flex;
|
|
36
38
|
}
|
|
37
39
|
|
|
38
40
|
&::-webkit-scrollbar {
|
|
@@ -83,6 +85,7 @@
|
|
|
83
85
|
|
|
84
86
|
.gantt-main-container {
|
|
85
87
|
width: 100%;
|
|
88
|
+
height: calc(100% - var(--gantt-header-height));
|
|
86
89
|
flex: 1;
|
|
87
90
|
position: absolute;
|
|
88
91
|
bottom: 0;
|