@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.
- package/class/date-point.d.ts +2 -1
- package/components/calendar/calendar.scss +8 -3
- package/components/scrollbar/scrollbar.component.d.ts +5 -4
- package/fesm2022/worktile-gantt.mjs +40 -19
- package/fesm2022/worktile-gantt.mjs.map +1 -1
- package/gantt.component.d.ts +4 -0
- package/gantt.component.scss +0 -1
- package/package.json +1 -1
- package/views/day.d.ts +0 -1
- package/views/hour.d.ts +0 -1
- package/views/view.d.ts +0 -1
package/gantt.component.d.ts
CHANGED
|
@@ -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
|
}
|
package/gantt.component.scss
CHANGED
package/package.json
CHANGED
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);
|