@worktile/gantt 13.0.0-next.1 → 14.0.0-next.0
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/bar/bar.component.d.ts +1 -1
- package/components/calendar/calendar.component.d.ts +1 -1
- package/components/drag-backdrop/drag-backdrop.component.d.ts +1 -1
- package/components/icon/icon.component.d.ts +1 -1
- package/components/links/links.component.d.ts +1 -1
- package/components/main/gantt-main.component.d.ts +1 -1
- package/components/range/range.component.d.ts +1 -1
- package/components/table/gantt-table.component.d.ts +1 -1
- package/esm2020/components/bar/bar-drag.mjs +3 -3
- package/esm2020/components/bar/bar.component.mjs +3 -3
- package/esm2020/components/calendar/calendar.component.mjs +3 -3
- package/esm2020/components/drag-backdrop/drag-backdrop.component.mjs +3 -3
- package/esm2020/components/icon/icon.component.mjs +3 -3
- package/esm2020/components/links/links.component.mjs +3 -3
- package/esm2020/components/main/gantt-main.component.mjs +6 -6
- package/esm2020/components/range/range.component.mjs +3 -3
- package/esm2020/components/table/gantt-table.component.mjs +8 -10
- package/esm2020/gantt-dom.service.mjs +3 -3
- package/esm2020/gantt-drag-container.mjs +3 -3
- package/esm2020/gantt-item-upper.mjs +3 -3
- package/esm2020/gantt-print.service.mjs +3 -3
- package/esm2020/gantt-upper.mjs +3 -3
- package/esm2020/gantt.component.mjs +13 -10
- package/esm2020/gantt.module.mjs +6 -6
- package/esm2020/gantt.pipe.mjs +9 -9
- package/esm2020/root.component.mjs +7 -7
- package/esm2020/table/gantt-column.component.mjs +3 -3
- package/esm2020/table/gantt-table.component.mjs +3 -3
- package/fesm2015/worktile-gantt.mjs +822 -821
- package/fesm2015/worktile-gantt.mjs.map +1 -1
- package/fesm2020/worktile-gantt.mjs +801 -800
- package/fesm2020/worktile-gantt.mjs.map +1 -1
- package/gantt-item-upper.d.ts +1 -1
- package/gantt-upper.d.ts +1 -1
- package/gantt.component.d.ts +3 -1
- package/gantt.pipe.d.ts +3 -3
- package/{worktile-gantt.d.ts → index.d.ts} +0 -0
- package/package.json +8 -6
- package/root.component.d.ts +2 -2
- package/table/gantt-column.component.d.ts +1 -1
- package/table/gantt-table.component.d.ts +1 -1
package/gantt-item-upper.d.ts
CHANGED
|
@@ -16,5 +16,5 @@ export declare abstract class GanttItemUpper implements OnChanges, OnInit, OnDes
|
|
|
16
16
|
private setPositions;
|
|
17
17
|
ngOnDestroy(): void;
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<GanttItemUpper, never>;
|
|
19
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<GanttItemUpper, never, never, { "template": "template"; "item": "item"; }, {}, never>;
|
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GanttItemUpper, never, never, { "template": "template"; "item": "item"; }, {}, never, never, false>;
|
|
20
20
|
}
|
package/gantt-upper.d.ts
CHANGED
|
@@ -79,6 +79,6 @@ export declare abstract class GanttUpper implements OnChanges, OnInit, OnDestroy
|
|
|
79
79
|
getGanttItems(ids: string[]): GanttItemInternal[];
|
|
80
80
|
isSelected(id: string): boolean;
|
|
81
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<GanttUpper, never>;
|
|
82
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<GanttUpper, never, never, { "originItems": "items"; "originGroups": "groups"; "viewType": "viewType"; "start": "start"; "end": "end"; "showTodayLine": "showTodayLine"; "draggable": "draggable"; "styles": "styles"; "viewOptions": "viewOptions"; "linkOptions": "linkOptions"; "disabledLoadOnScroll": "disabledLoadOnScroll"; "selectable": "selectable"; "multiple": "multiple"; }, { "loadOnScroll": "loadOnScroll"; "dragStarted": "dragStarted"; "dragMoved": "dragMoved"; "dragEnded": "dragEnded"; "barClick": "barClick"; }, ["barTemplate", "rangeTemplate", "itemTemplate", "groupTemplate", "groupHeaderTemplate"]>;
|
|
82
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GanttUpper, never, never, { "originItems": "items"; "originGroups": "groups"; "viewType": "viewType"; "start": "start"; "end": "end"; "showTodayLine": "showTodayLine"; "draggable": "draggable"; "styles": "styles"; "viewOptions": "viewOptions"; "linkOptions": "linkOptions"; "disabledLoadOnScroll": "disabledLoadOnScroll"; "selectable": "selectable"; "multiple": "multiple"; }, { "loadOnScroll": "loadOnScroll"; "dragStarted": "dragStarted"; "dragMoved": "dragMoved"; "dragEnded": "dragEnded"; "barClick": "barClick"; }, ["barTemplate", "rangeTemplate", "itemTemplate", "groupTemplate", "groupHeaderTemplate"], never, false>;
|
|
83
83
|
}
|
|
84
84
|
export declare const GANTT_UPPER_TOKEN: InjectionToken<GanttUpper>;
|
package/gantt.component.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { GanttLinkDragEvent, GanttLineClickEvent, GanttItemInternal, GanttItem,
|
|
|
5
5
|
import { NgxGanttTableColumnComponent } from './table/gantt-column.component';
|
|
6
6
|
import { NgxGanttTableComponent } from './table/gantt-table.component';
|
|
7
7
|
import { GanttGlobalConfig } from './gantt.config';
|
|
8
|
+
import { NgxGanttRootComponent } from './root.component';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class NgxGanttComponent extends GanttUpper implements OnInit, AfterViewInit {
|
|
10
11
|
maxLevel: number;
|
|
@@ -18,6 +19,7 @@ export declare class NgxGanttComponent extends GanttUpper implements OnInit, Aft
|
|
|
18
19
|
table: NgxGanttTableComponent;
|
|
19
20
|
columns: QueryList<NgxGanttTableColumnComponent>;
|
|
20
21
|
tableEmptyTemplate: TemplateRef<any>;
|
|
22
|
+
ganttRoot: NgxGanttRootComponent;
|
|
21
23
|
private ngUnsubscribe$;
|
|
22
24
|
sideTableWidth: number;
|
|
23
25
|
constructor(elementRef: ElementRef<HTMLElement>, cdr: ChangeDetectorRef, ngZone: NgZone, config: GanttGlobalConfig);
|
|
@@ -26,5 +28,5 @@ export declare class NgxGanttComponent extends GanttUpper implements OnInit, Aft
|
|
|
26
28
|
expandChildren(item: GanttItemInternal): void;
|
|
27
29
|
selectItem(selectEvent: GanttSelectedEvent): void;
|
|
28
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgxGanttComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttComponent, "ngx-gantt", never, { "maxLevel": "maxLevel"; "async": "async"; "childrenResolve": "childrenResolve"; "linkable": "linkable"; }, { "linkDragStarted": "linkDragStarted"; "linkDragEnded": "linkDragEnded"; "lineClick": "lineClick"; "selectedChange": "selectedChange"; }, ["table", "tableEmptyTemplate", "columns"], never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttComponent, "ngx-gantt", never, { "maxLevel": "maxLevel"; "async": "async"; "childrenResolve": "childrenResolve"; "linkable": "linkable"; }, { "linkDragStarted": "linkDragStarted"; "linkDragEnded": "linkDragEnded"; "lineClick": "lineClick"; "selectedChange": "selectedChange"; }, ["table", "tableEmptyTemplate", "columns"], never, false>;
|
|
30
32
|
}
|
package/gantt.pipe.d.ts
CHANGED
|
@@ -4,15 +4,15 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class IsGanttRangeItemPipe implements PipeTransform {
|
|
5
5
|
transform(value: GanttItemType): boolean;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<IsGanttRangeItemPipe, never>;
|
|
7
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<IsGanttRangeItemPipe, "isGanttRangeItem">;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<IsGanttRangeItemPipe, "isGanttRangeItem", false>;
|
|
8
8
|
}
|
|
9
9
|
export declare class IsGanttBarItemPipe implements PipeTransform {
|
|
10
10
|
transform(value: GanttItemType): boolean;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<IsGanttBarItemPipe, never>;
|
|
12
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<IsGanttBarItemPipe, "isGanttBarItem">;
|
|
12
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<IsGanttBarItemPipe, "isGanttBarItem", false>;
|
|
13
13
|
}
|
|
14
14
|
export declare class IsGanttCustomItemPipe implements PipeTransform {
|
|
15
15
|
transform(value: GanttItemType): boolean;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<IsGanttCustomItemPipe, never>;
|
|
17
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<IsGanttCustomItemPipe, "isGanttCustomItem">;
|
|
17
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<IsGanttCustomItemPipe, "isGanttCustomItem", false>;
|
|
18
18
|
}
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@worktile/gantt",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.0.0-next.0",
|
|
4
4
|
"schematics": "./schematics/collection.json",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
7
|
"sass": "./styles/index.scss",
|
|
8
|
-
"types": "./
|
|
8
|
+
"types": "./index.d.ts",
|
|
9
9
|
"esm2020": "./esm2020/worktile-gantt.mjs",
|
|
10
10
|
"es2020": "./fesm2020/worktile-gantt.mjs",
|
|
11
11
|
"es2015": "./fesm2015/worktile-gantt.mjs",
|
|
@@ -26,16 +26,18 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"@angular/common": ">=
|
|
30
|
-
"@angular/core": ">=
|
|
31
|
-
"
|
|
29
|
+
"@angular/common": ">=14.0.0",
|
|
30
|
+
"@angular/core": ">=14.0.0",
|
|
31
|
+
"@angular/cdk": ">=14.0.0",
|
|
32
|
+
"rxjs": "^6.5.0 || ^7.0.0",
|
|
33
|
+
"date-fns": ">=2.0.0"
|
|
32
34
|
},
|
|
33
35
|
"module": "fesm2015/worktile-gantt.mjs",
|
|
34
36
|
"es2020": "fesm2020/worktile-gantt.mjs",
|
|
35
37
|
"esm2020": "esm2020/worktile-gantt.mjs",
|
|
36
38
|
"fesm2020": "fesm2020/worktile-gantt.mjs",
|
|
37
39
|
"fesm2015": "fesm2015/worktile-gantt.mjs",
|
|
38
|
-
"typings": "
|
|
40
|
+
"typings": "index.d.ts",
|
|
39
41
|
"sideEffects": false,
|
|
40
42
|
"dependencies": {
|
|
41
43
|
"tslib": "^2.3.0"
|
package/root.component.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export declare class NgxGanttRootComponent implements OnInit, OnDestroy {
|
|
|
24
24
|
private setupViewScroll;
|
|
25
25
|
private setupResize;
|
|
26
26
|
private setupScrollClass;
|
|
27
|
-
|
|
27
|
+
scrollToToday(): void;
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgxGanttRootComponent, [null, null, null, null, null, { optional: true; }]>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttRootComponent, "ngx-gantt-root", never, { "sideWidth": "sideWidth"; }, {}, ["sideTemplate", "mainTemplate"], never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttRootComponent, "ngx-gantt-root", never, { "sideWidth": "sideWidth"; }, {}, ["sideTemplate", "mainTemplate"], never, false>;
|
|
30
30
|
}
|
|
@@ -10,5 +10,5 @@ export declare class NgxGanttTableColumnComponent {
|
|
|
10
10
|
headerTemplateRef: TemplateRef<any>;
|
|
11
11
|
constructor(ganttUpper: GanttUpper);
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgxGanttTableColumnComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttTableColumnComponent, "ngx-gantt-column", never, { "width": "width"; "name": "name"; }, {}, ["templateRef", "headerTemplateRef"], never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttTableColumnComponent, "ngx-gantt-column", never, { "width": "width"; "name": "name"; }, {}, ["templateRef", "headerTemplateRef"], never, false>;
|
|
14
14
|
}
|
|
@@ -6,5 +6,5 @@ export declare class NgxGanttTableComponent {
|
|
|
6
6
|
rowBeforeTemplate: TemplateRef<any>;
|
|
7
7
|
rowAfterTemplate: TemplateRef<any>;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgxGanttTableComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttTableComponent, "ngx-gantt-table", never, {}, { "columnChanges": "columnChanges"; }, ["rowBeforeTemplate", "rowAfterTemplate"], never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttTableComponent, "ngx-gantt-table", never, {}, { "columnChanges": "columnChanges"; }, ["rowBeforeTemplate", "rowAfterTemplate"], never, false>;
|
|
10
10
|
}
|