@worktile/gantt 20.0.0 → 20.0.1
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/gantt-table.scss +2 -0
- package/fesm2022/worktile-gantt.mjs +1332 -1286
- package/fesm2022/worktile-gantt.mjs.map +1 -1
- package/gantt.component.scss +4 -0
- package/index.d.ts +327 -288
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
|
+
import { Locale, FirstWeekContainsDate } from 'date-fns';
|
|
2
|
+
export { Locale, addDays, addHours, addMinutes, addMonths, addQuarters, addSeconds, addWeeks, addYears, differenceInCalendarDays, differenceInCalendarQuarters, differenceInDays, differenceInMinutes, eachDayOfInterval, eachHourOfInterval, eachMonthOfInterval, eachWeekOfInterval, endOfDay, endOfHour, endOfMinute, endOfMonth, endOfQuarter, endOfWeek, endOfYear, format, fromUnixTime, getDaysInMonth, getUnixTime, getWeek, isToday, isWeekend, setDate, startOfDay, startOfHour, startOfMinute, startOfMonth, startOfQuarter, startOfWeek, startOfYear } from 'date-fns';
|
|
1
3
|
import * as i0 from '@angular/core';
|
|
2
4
|
import { InjectionToken, EventEmitter, TemplateRef, OnChanges, OnInit, OnDestroy, ElementRef, ChangeDetectorRef, NgZone, SimpleChanges, QueryList, AfterViewInit, AfterViewChecked, WritableSignal, PipeTransform } from '@angular/core';
|
|
5
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
6
|
+
import { SelectionModel } from '@angular/cdk/collections';
|
|
7
|
+
import { BehaviorSubject, Subject, Observable } from 'rxjs';
|
|
8
|
+
import * as _worktile_gantt from '@worktile/gantt';
|
|
9
|
+
import * as i3 from '@angular/cdk/scrolling';
|
|
10
|
+
import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
|
3
11
|
import * as i1 from '@angular/common';
|
|
4
12
|
import * as i2 from '@angular/cdk/drag-drop';
|
|
5
13
|
import { CdkDragStart, CdkDragMove, CdkDragEnd, CdkDrag, CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
6
|
-
import * as i3 from '@angular/cdk/scrolling';
|
|
7
|
-
import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
|
8
|
-
import { BehaviorSubject, Subject, Observable } from 'rxjs';
|
|
9
|
-
import * as date_fns from 'date-fns';
|
|
10
|
-
import { Locale, FirstWeekContainsDate } from 'date-fns';
|
|
11
|
-
export { Locale, addDays, addHours, addMinutes, addMonths, addQuarters, addSeconds, addWeeks, addYears, differenceInCalendarDays, differenceInCalendarQuarters, differenceInDays, differenceInMinutes, eachDayOfInterval, eachHourOfInterval, eachMonthOfInterval, eachWeekOfInterval, endOfDay, endOfHour, endOfMinute, endOfMonth, endOfQuarter, endOfWeek, endOfYear, format, fromUnixTime, getDaysInMonth, getUnixTime, getWeek, isToday, isWeekend, setDate, startOfDay, startOfHour, startOfMinute, startOfMonth, startOfQuarter, startOfWeek, startOfYear } from 'date-fns';
|
|
12
|
-
import { SelectionModel } from '@angular/cdk/collections';
|
|
13
|
-
import { BooleanInput } from '@angular/cdk/coercion';
|
|
14
|
-
import * as _worktile_gantt from '@worktile/gantt';
|
|
15
14
|
|
|
16
15
|
type GanttDateUtil = 'second' | 'minute' | 'hour' | 'day' | 'week' | 'month' | 'quarter' | 'year';
|
|
17
16
|
declare function setDefaultTimeZone(zone: string): void;
|
|
@@ -89,93 +88,14 @@ declare class GanttDatePoint {
|
|
|
89
88
|
};
|
|
90
89
|
style?: Partial<CSSStyleDeclaration>;
|
|
91
90
|
fill?: string;
|
|
91
|
+
leftX?: number;
|
|
92
|
+
rightX?: number;
|
|
92
93
|
constructor(start: GanttDate, text: string, x: number, y: number | string, additions?: {
|
|
93
94
|
isWeekend: boolean;
|
|
94
95
|
isToday: boolean;
|
|
95
96
|
}, style?: Partial<CSSStyleDeclaration>, fill?: string);
|
|
96
97
|
}
|
|
97
98
|
|
|
98
|
-
declare enum GanttViewType {
|
|
99
|
-
day = "day",
|
|
100
|
-
quarter = "quarter",
|
|
101
|
-
month = "month",
|
|
102
|
-
year = "year",
|
|
103
|
-
week = "week",
|
|
104
|
-
hour = "hour"
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
interface GanttItemRefs {
|
|
108
|
-
width: number;
|
|
109
|
-
x: number;
|
|
110
|
-
y: number;
|
|
111
|
-
}
|
|
112
|
-
declare enum GanttItemType {
|
|
113
|
-
bar = "bar",
|
|
114
|
-
range = "range",
|
|
115
|
-
custom = "custom"
|
|
116
|
-
}
|
|
117
|
-
interface GanttItem<T = unknown> {
|
|
118
|
-
id: string;
|
|
119
|
-
title: string;
|
|
120
|
-
start?: number | Date;
|
|
121
|
-
end?: number | Date;
|
|
122
|
-
group_id?: string;
|
|
123
|
-
links?: (GanttLink | string)[];
|
|
124
|
-
draggable?: boolean;
|
|
125
|
-
itemDraggable?: boolean;
|
|
126
|
-
linkable?: boolean;
|
|
127
|
-
expandable?: boolean;
|
|
128
|
-
expanded?: boolean;
|
|
129
|
-
children?: GanttItem[];
|
|
130
|
-
color?: string;
|
|
131
|
-
barStyle?: Partial<CSSStyleDeclaration>;
|
|
132
|
-
laneStyle?: Partial<CSSStyleDeclaration>;
|
|
133
|
-
origin?: T;
|
|
134
|
-
type?: GanttItemType;
|
|
135
|
-
progress?: number;
|
|
136
|
-
}
|
|
137
|
-
declare class GanttItemInternal {
|
|
138
|
-
private view?;
|
|
139
|
-
id: string;
|
|
140
|
-
title: string;
|
|
141
|
-
start: GanttDate | null;
|
|
142
|
-
end: GanttDate | null;
|
|
143
|
-
links: GanttLink[];
|
|
144
|
-
color?: string;
|
|
145
|
-
barStyle?: Partial<CSSStyleDeclaration>;
|
|
146
|
-
laneStyle?: Partial<CSSStyleDeclaration>;
|
|
147
|
-
draggable?: boolean;
|
|
148
|
-
itemDraggable?: boolean;
|
|
149
|
-
linkable?: boolean;
|
|
150
|
-
origin: GanttItem;
|
|
151
|
-
expandable?: boolean;
|
|
152
|
-
expanded?: boolean;
|
|
153
|
-
loading: boolean;
|
|
154
|
-
children: GanttItemInternal[];
|
|
155
|
-
type?: GanttItemType;
|
|
156
|
-
progress?: number;
|
|
157
|
-
viewType?: GanttViewType;
|
|
158
|
-
level: number;
|
|
159
|
-
get refs(): {
|
|
160
|
-
width: number;
|
|
161
|
-
x: number;
|
|
162
|
-
y: number;
|
|
163
|
-
};
|
|
164
|
-
refs$: BehaviorSubject<{
|
|
165
|
-
width: number;
|
|
166
|
-
x: number;
|
|
167
|
-
y: number;
|
|
168
|
-
}>;
|
|
169
|
-
constructor(item: GanttItem, level: number, view?: GanttView);
|
|
170
|
-
private fillDateWhenStartOrEndIsNil;
|
|
171
|
-
updateRefs(refs: GanttItemRefs): void;
|
|
172
|
-
updateDate(start: GanttDate, end: GanttDate): void;
|
|
173
|
-
updateLevel(level: number): void;
|
|
174
|
-
addChildren(items: GanttItem[]): void;
|
|
175
|
-
setExpand(expanded: boolean): void;
|
|
176
|
-
addLink(link: GanttLink): void;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
99
|
declare enum GanttLinkType {
|
|
180
100
|
fs = 1,
|
|
181
101
|
ff = 2,
|
|
@@ -229,6 +149,15 @@ interface GanttLinkOptions {
|
|
|
229
149
|
lineType?: GanttLinkLineType;
|
|
230
150
|
}
|
|
231
151
|
|
|
152
|
+
declare enum GanttViewType {
|
|
153
|
+
day = "day",
|
|
154
|
+
quarter = "quarter",
|
|
155
|
+
month = "month",
|
|
156
|
+
year = "year",
|
|
157
|
+
week = "week",
|
|
158
|
+
hour = "hour"
|
|
159
|
+
}
|
|
160
|
+
|
|
232
161
|
declare enum GanttI18nLocale {
|
|
233
162
|
zhHans = "zh-hans",
|
|
234
163
|
zhHant = "zh-hant",
|
|
@@ -318,6 +247,10 @@ interface GanttViewOptions {
|
|
|
318
247
|
};
|
|
319
248
|
datePrecisionUnit?: 'day' | 'hour' | 'minute';
|
|
320
249
|
dragPreviewDateFormat?: string;
|
|
250
|
+
hoilday?: {
|
|
251
|
+
isHoliday: (GanttDate: any) => boolean;
|
|
252
|
+
hideHoliday: boolean;
|
|
253
|
+
};
|
|
321
254
|
[key: string]: any;
|
|
322
255
|
}
|
|
323
256
|
declare abstract class GanttView {
|
|
@@ -354,9 +287,9 @@ declare abstract class GanttView {
|
|
|
354
287
|
abstract getDayOccupancyWidth(date: GanttDate): number;
|
|
355
288
|
abstract getPrimaryDatePoints(): GanttDatePoint[];
|
|
356
289
|
abstract getSecondaryDatePoints(): GanttDatePoint[];
|
|
290
|
+
protected hideHoliday(date: GanttDate): boolean;
|
|
357
291
|
startOfPrecision(date: GanttDate): GanttDate;
|
|
358
292
|
endOfPrecision(date: GanttDate): GanttDate;
|
|
359
|
-
differenceByPrecisionUnit(dateLeft: GanttDate, dateRight: GanttDate): number;
|
|
360
293
|
getDateIntervalWidth(start: GanttDate, end: GanttDate): number;
|
|
361
294
|
protected initialize(): void;
|
|
362
295
|
addStartDate(): {
|
|
@@ -375,10 +308,104 @@ declare abstract class GanttView {
|
|
|
375
308
|
getDateByXPoint(x: number): GanttDate;
|
|
376
309
|
getDateRangeWidth(start: GanttDate, end: GanttDate): number;
|
|
377
310
|
getMinRangeWidthByPrecisionUnit(date: GanttDate): number;
|
|
311
|
+
getVisibleDateIndexOffset(start: GanttDate, end: GanttDate): number;
|
|
312
|
+
getDateByIndexOffset(baseDate: GanttDate, indexOffset: number): GanttDate;
|
|
378
313
|
}
|
|
379
314
|
|
|
380
|
-
interface
|
|
381
|
-
|
|
315
|
+
interface GanttItemRefs {
|
|
316
|
+
width: number;
|
|
317
|
+
x: number;
|
|
318
|
+
y: number;
|
|
319
|
+
}
|
|
320
|
+
declare enum GanttItemType {
|
|
321
|
+
bar = "bar",
|
|
322
|
+
range = "range",
|
|
323
|
+
custom = "custom"
|
|
324
|
+
}
|
|
325
|
+
interface GanttItem<T = unknown> {
|
|
326
|
+
id: string;
|
|
327
|
+
title: string;
|
|
328
|
+
start?: number | Date;
|
|
329
|
+
end?: number | Date;
|
|
330
|
+
group_id?: string;
|
|
331
|
+
links?: (GanttLink | string)[];
|
|
332
|
+
draggable?: boolean;
|
|
333
|
+
itemDraggable?: boolean;
|
|
334
|
+
linkable?: boolean;
|
|
335
|
+
expandable?: boolean;
|
|
336
|
+
expanded?: boolean;
|
|
337
|
+
children?: GanttItem[];
|
|
338
|
+
color?: string;
|
|
339
|
+
barStyle?: Partial<CSSStyleDeclaration>;
|
|
340
|
+
laneStyle?: Partial<CSSStyleDeclaration>;
|
|
341
|
+
origin?: T;
|
|
342
|
+
type?: GanttItemType;
|
|
343
|
+
progress?: number;
|
|
344
|
+
}
|
|
345
|
+
declare class GanttItemInternal {
|
|
346
|
+
private view?;
|
|
347
|
+
id: string;
|
|
348
|
+
title: string;
|
|
349
|
+
start: GanttDate | null;
|
|
350
|
+
end: GanttDate | null;
|
|
351
|
+
links: GanttLink[];
|
|
352
|
+
color?: string;
|
|
353
|
+
barStyle?: Partial<CSSStyleDeclaration>;
|
|
354
|
+
laneStyle?: Partial<CSSStyleDeclaration>;
|
|
355
|
+
draggable?: boolean;
|
|
356
|
+
itemDraggable?: boolean;
|
|
357
|
+
linkable?: boolean;
|
|
358
|
+
origin: GanttItem;
|
|
359
|
+
expandable?: boolean;
|
|
360
|
+
expanded?: boolean;
|
|
361
|
+
loading: boolean;
|
|
362
|
+
children: GanttItemInternal[];
|
|
363
|
+
type?: GanttItemType;
|
|
364
|
+
progress?: number;
|
|
365
|
+
viewType?: GanttViewType;
|
|
366
|
+
level: number;
|
|
367
|
+
get refs(): {
|
|
368
|
+
width: number;
|
|
369
|
+
x: number;
|
|
370
|
+
y: number;
|
|
371
|
+
};
|
|
372
|
+
refs$: BehaviorSubject<{
|
|
373
|
+
width: number;
|
|
374
|
+
x: number;
|
|
375
|
+
y: number;
|
|
376
|
+
}>;
|
|
377
|
+
constructor(item: GanttItem, level: number, view?: GanttView);
|
|
378
|
+
private fillDateWhenStartOrEndIsNil;
|
|
379
|
+
updateRefs(refs: GanttItemRefs): void;
|
|
380
|
+
updateDate(start: GanttDate, end: GanttDate): void;
|
|
381
|
+
updateLevel(level: number): void;
|
|
382
|
+
addChildren(items: GanttItem[]): void;
|
|
383
|
+
setExpand(expanded: boolean): void;
|
|
384
|
+
addLink(link: GanttLink): void;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
interface GanttBaselineItem {
|
|
388
|
+
id: string;
|
|
389
|
+
start?: number;
|
|
390
|
+
end?: number;
|
|
391
|
+
}
|
|
392
|
+
declare class GanttBaselineItemInternal {
|
|
393
|
+
id: string;
|
|
394
|
+
start: GanttDate;
|
|
395
|
+
end: GanttDate;
|
|
396
|
+
origin: GanttBaselineItem;
|
|
397
|
+
get refs(): {
|
|
398
|
+
width: number;
|
|
399
|
+
x: number;
|
|
400
|
+
y: number;
|
|
401
|
+
};
|
|
402
|
+
refs$: BehaviorSubject<{
|
|
403
|
+
width: number;
|
|
404
|
+
x: number;
|
|
405
|
+
y: number;
|
|
406
|
+
}>;
|
|
407
|
+
constructor(item: GanttBaselineItem);
|
|
408
|
+
updateRefs(refs: GanttItemRefs): void;
|
|
382
409
|
}
|
|
383
410
|
|
|
384
411
|
declare enum InBarPosition {
|
|
@@ -413,30 +440,6 @@ declare class GanttDragContainer {
|
|
|
413
440
|
static ɵprov: i0.ɵɵInjectableDeclaration<GanttDragContainer>;
|
|
414
441
|
}
|
|
415
442
|
|
|
416
|
-
interface GanttBaselineItem {
|
|
417
|
-
id: string;
|
|
418
|
-
start?: number;
|
|
419
|
-
end?: number;
|
|
420
|
-
}
|
|
421
|
-
declare class GanttBaselineItemInternal {
|
|
422
|
-
id: string;
|
|
423
|
-
start: GanttDate;
|
|
424
|
-
end: GanttDate;
|
|
425
|
-
origin: GanttBaselineItem;
|
|
426
|
-
get refs(): {
|
|
427
|
-
width: number;
|
|
428
|
-
x: number;
|
|
429
|
-
y: number;
|
|
430
|
-
};
|
|
431
|
-
refs$: BehaviorSubject<{
|
|
432
|
-
width: number;
|
|
433
|
-
x: number;
|
|
434
|
-
y: number;
|
|
435
|
-
}>;
|
|
436
|
-
constructor(item: GanttBaselineItem);
|
|
437
|
-
updateRefs(refs: GanttItemRefs): void;
|
|
438
|
-
}
|
|
439
|
-
|
|
440
443
|
declare class NgxGanttTableComponent {
|
|
441
444
|
draggable: boolean;
|
|
442
445
|
maxWidth: number;
|
|
@@ -457,6 +460,10 @@ declare class NgxGanttTableComponent {
|
|
|
457
460
|
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttTableComponent, "ngx-gantt-table", never, { "draggable": { "alias": "draggable"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "width": { "alias": "width"; "required": false; }; "dropEnterPredicate": { "alias": "dropEnterPredicate"; "required": false; }; }, { "dragDropped": "dragDropped"; "dragStarted": "dragStarted"; "dragEnded": "dragEnded"; "columnChanges": "columnChanges"; "resizeChange": "resizeChange"; "itemClick": "itemClick"; }, ["rowBeforeTemplate", "rowAfterTemplate", "tableEmptyTemplate", "tableFooterTemplate", "settingsSlot"], never, true, never>;
|
|
458
461
|
}
|
|
459
462
|
|
|
463
|
+
interface Dictionary<T = unknown> {
|
|
464
|
+
[key: string]: T;
|
|
465
|
+
}
|
|
466
|
+
|
|
460
467
|
declare abstract class GanttUpper implements OnChanges, OnInit, OnDestroy {
|
|
461
468
|
protected elementRef: ElementRef<HTMLElement>;
|
|
462
469
|
protected cdr: ChangeDetectorRef;
|
|
@@ -621,30 +628,135 @@ declare class GanttVirtualScrolledIndexChangeEvent {
|
|
|
621
628
|
count: number;
|
|
622
629
|
}
|
|
623
630
|
|
|
624
|
-
interface GanttGroup<T = unknown> {
|
|
625
|
-
id: string;
|
|
626
|
-
title: string;
|
|
627
|
-
expanded?: boolean;
|
|
628
|
-
origin?: T;
|
|
629
|
-
class?: string;
|
|
631
|
+
interface GanttGroup<T = unknown> {
|
|
632
|
+
id: string;
|
|
633
|
+
title: string;
|
|
634
|
+
expanded?: boolean;
|
|
635
|
+
origin?: T;
|
|
636
|
+
class?: string;
|
|
637
|
+
}
|
|
638
|
+
declare class GanttGroupInternal {
|
|
639
|
+
id: string;
|
|
640
|
+
title: string;
|
|
641
|
+
origin: GanttGroup;
|
|
642
|
+
items: GanttItemInternal[];
|
|
643
|
+
mergedItems: GanttItemInternal[][];
|
|
644
|
+
expanded?: boolean;
|
|
645
|
+
refs?: {
|
|
646
|
+
height?: number;
|
|
647
|
+
};
|
|
648
|
+
class?: string;
|
|
649
|
+
constructor(group: GanttGroup);
|
|
650
|
+
setExpand(expanded: boolean): void;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
interface GanttToolbarOptions {
|
|
654
|
+
viewTypes?: GanttViewType[];
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
declare abstract class GanttItemUpper implements OnChanges, OnInit, OnDestroy {
|
|
658
|
+
protected elementRef: ElementRef<HTMLElement>;
|
|
659
|
+
protected ganttUpper: GanttUpper;
|
|
660
|
+
template: TemplateRef<any>;
|
|
661
|
+
item: GanttItemInternal;
|
|
662
|
+
firstChange: boolean;
|
|
663
|
+
unsubscribe$: Subject<void>;
|
|
664
|
+
refsUnsubscribe$: Subject<void>;
|
|
665
|
+
constructor();
|
|
666
|
+
ngOnInit(): void;
|
|
667
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
668
|
+
private itemChange;
|
|
669
|
+
private setPositions;
|
|
670
|
+
ngOnDestroy(): void;
|
|
671
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GanttItemUpper, never>;
|
|
672
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GanttItemUpper, never, never, { "template": { "alias": "template"; "required": false; }; "item": { "alias": "item"; "required": false; }; }, {}, never, never, true, never>;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
declare class NgxGanttBarComponent extends GanttItemUpper implements OnInit, AfterViewInit, OnChanges, OnDestroy {
|
|
676
|
+
private dragContainer;
|
|
677
|
+
private drag;
|
|
678
|
+
ganttUpper: GanttUpper;
|
|
679
|
+
private ngZone;
|
|
680
|
+
barClick: EventEmitter<GanttBarClickEvent<unknown>>;
|
|
681
|
+
contentElementRef: ElementRef<HTMLDivElement>;
|
|
682
|
+
ganttItemClass: boolean;
|
|
683
|
+
handles: QueryList<ElementRef<HTMLElement>>;
|
|
684
|
+
constructor();
|
|
685
|
+
ngOnInit(): void;
|
|
686
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
687
|
+
ngAfterViewInit(): void;
|
|
688
|
+
onBarClick(event: Event): void;
|
|
689
|
+
private setContentBackground;
|
|
690
|
+
stopPropagation(event: Event): void;
|
|
691
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxGanttBarComponent, never>;
|
|
692
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttBarComponent, "ngx-gantt-bar,gantt-bar", never, {}, { "barClick": "barClick"; }, never, never, true, never>;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
declare class NgxGanttBaselineComponent implements OnInit {
|
|
696
|
+
private elementRef;
|
|
697
|
+
ganttUpper: GanttUpper;
|
|
698
|
+
baselineItem: GanttBaselineItemInternal;
|
|
699
|
+
template: TemplateRef<any>;
|
|
700
|
+
unsubscribe$: Subject<void>;
|
|
701
|
+
ganttBaselineClass: boolean;
|
|
702
|
+
constructor();
|
|
703
|
+
ngOnInit(): void;
|
|
704
|
+
private setPositions;
|
|
705
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxGanttBaselineComponent, never>;
|
|
706
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttBaselineComponent, "ngx-gantt-baseline,gantt-baseline", never, { "baselineItem": { "alias": "baselineItem"; "required": false; }; "template": { "alias": "template"; "required": false; }; }, {}, never, never, true, never>;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
declare class GanttCalendarGridComponent implements OnInit, OnDestroy {
|
|
710
|
+
ganttUpper: GanttUpper;
|
|
711
|
+
private ngZone;
|
|
712
|
+
private elementRef;
|
|
713
|
+
get view(): _worktile_gantt.GanttView;
|
|
714
|
+
private unsubscribe$;
|
|
715
|
+
mainHeight: number;
|
|
716
|
+
todayBorderRadius: number;
|
|
717
|
+
viewTypes: typeof GanttViewType;
|
|
718
|
+
className: string;
|
|
719
|
+
constructor();
|
|
720
|
+
setTodayPoint(): void;
|
|
721
|
+
ngOnInit(): void;
|
|
722
|
+
ngOnDestroy(): void;
|
|
723
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GanttCalendarGridComponent, never>;
|
|
724
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GanttCalendarGridComponent, "gantt-calendar-grid", never, {}, {}, never, never, true, never>;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
declare class GanttCalendarHeaderComponent implements OnInit {
|
|
728
|
+
ganttUpper: GanttUpper;
|
|
729
|
+
private ngZone;
|
|
730
|
+
private elementRef;
|
|
731
|
+
get view(): _worktile_gantt.GanttView;
|
|
732
|
+
private unsubscribe$;
|
|
733
|
+
viewTypes: typeof GanttViewType;
|
|
734
|
+
className: string;
|
|
735
|
+
get height(): string;
|
|
736
|
+
constructor();
|
|
737
|
+
ngOnInit(): void;
|
|
738
|
+
setTodayPoint(): void;
|
|
739
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GanttCalendarHeaderComponent, never>;
|
|
740
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GanttCalendarHeaderComponent, "gantt-calendar-header", never, {}, {}, never, never, true, never>;
|
|
630
741
|
}
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
expanded?: boolean;
|
|
638
|
-
refs?: {
|
|
639
|
-
height?: number;
|
|
640
|
-
};
|
|
641
|
-
class?: string;
|
|
642
|
-
constructor(group: GanttGroup);
|
|
643
|
-
setExpand(expanded: boolean): void;
|
|
742
|
+
|
|
743
|
+
declare class GanttDragBackdropComponent {
|
|
744
|
+
ganttUpper: GanttUpper;
|
|
745
|
+
constructor();
|
|
746
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GanttDragBackdropComponent, never>;
|
|
747
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GanttDragBackdropComponent, "gantt-drag-backdrop", never, {}, {}, never, never, true, never>;
|
|
644
748
|
}
|
|
645
749
|
|
|
646
|
-
|
|
647
|
-
|
|
750
|
+
declare class GanttLoaderComponent {
|
|
751
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GanttLoaderComponent, never>;
|
|
752
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GanttLoaderComponent, "gantt-loader", never, {}, {}, never, never, true, never>;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
declare class NgxGanttRangeComponent extends GanttItemUpper {
|
|
756
|
+
ganttRangeClass: boolean;
|
|
757
|
+
constructor();
|
|
758
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxGanttRangeComponent, never>;
|
|
759
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttRangeComponent, "ngx-gantt-range,gantt-range", never, {}, {}, never, never, true, never>;
|
|
648
760
|
}
|
|
649
761
|
|
|
650
762
|
declare class NgxGanttRootComponent implements OnInit, OnDestroy {
|
|
@@ -677,6 +789,80 @@ declare class NgxGanttRootComponent implements OnInit, OnDestroy {
|
|
|
677
789
|
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttRootComponent, "ngx-gantt-root", never, { "sideWidth": { "alias": "sideWidth"; "required": false; }; }, {}, ["sideTemplate", "mainTemplate"], ["*"], true, never>;
|
|
678
790
|
}
|
|
679
791
|
|
|
792
|
+
declare class GanttScrollbarComponent {
|
|
793
|
+
ganttUpper: GanttUpper;
|
|
794
|
+
hasFooter: i0.InputSignal<boolean>;
|
|
795
|
+
tableWidth: i0.InputSignal<number>;
|
|
796
|
+
ganttRoot: i0.InputSignal<NgxGanttRootComponent>;
|
|
797
|
+
tableScrollWidth: i0.InputSignal<number>;
|
|
798
|
+
constructor();
|
|
799
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GanttScrollbarComponent, never>;
|
|
800
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GanttScrollbarComponent, "gantt-scrollbar", never, { "hasFooter": { "alias": "hasFooter"; "required": false; "isSignal": true; }; "tableWidth": { "alias": "tableWidth"; "required": false; "isSignal": true; }; "ganttRoot": { "alias": "ganttRoot"; "required": false; "isSignal": true; }; "tableScrollWidth": { "alias": "tableScrollWidth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
declare class NgxGanttToolbarComponent {
|
|
804
|
+
protected ganttUpper: GanttUpper;
|
|
805
|
+
template: TemplateRef<any>;
|
|
806
|
+
ganttItemClass: boolean;
|
|
807
|
+
get top(): string;
|
|
808
|
+
views: Record<GanttViewType, {
|
|
809
|
+
label: string;
|
|
810
|
+
dateFormats: {
|
|
811
|
+
primary?: string;
|
|
812
|
+
secondary?: string;
|
|
813
|
+
};
|
|
814
|
+
}>;
|
|
815
|
+
constructor();
|
|
816
|
+
selectView(view: GanttViewType): void;
|
|
817
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxGanttToolbarComponent, never>;
|
|
818
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttToolbarComponent, "ngx-gantt-toolbar,gantt-toolbar", never, { "template": { "alias": "template"; "required": false; }; }, {}, never, never, true, never>;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
declare class GanttSyncScrollXDirective implements OnInit, OnDestroy {
|
|
822
|
+
readonly syncScrollX: i0.InputSignal<string>;
|
|
823
|
+
private elementRef;
|
|
824
|
+
private syncScrollService;
|
|
825
|
+
constructor();
|
|
826
|
+
ngOnInit(): void;
|
|
827
|
+
ngOnDestroy(): void;
|
|
828
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GanttSyncScrollXDirective, never>;
|
|
829
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GanttSyncScrollXDirective, "[syncScrollX]", never, { "syncScrollX": { "alias": "syncScrollX"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
830
|
+
}
|
|
831
|
+
declare class GanttSyncScrollYDirective implements OnInit, OnDestroy {
|
|
832
|
+
readonly syncScrollY: i0.InputSignal<string>;
|
|
833
|
+
private syncScrollService;
|
|
834
|
+
private elementRef;
|
|
835
|
+
constructor();
|
|
836
|
+
ngOnInit(): void;
|
|
837
|
+
ngOnDestroy(): void;
|
|
838
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GanttSyncScrollYDirective, never>;
|
|
839
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GanttSyncScrollYDirective, "[syncScrollY]", never, { "syncScrollY": { "alias": "syncScrollY"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
declare class GanttPrintService {
|
|
843
|
+
private root;
|
|
844
|
+
private mainContainer;
|
|
845
|
+
constructor();
|
|
846
|
+
private setInlineStyles;
|
|
847
|
+
private recursElementChildren;
|
|
848
|
+
register(root: ElementRef<HTMLElement>): void;
|
|
849
|
+
html2canvas(ignoreElementClass?: string): Promise<HTMLCanvasElement>;
|
|
850
|
+
print(name?: string, ignoreElementClass?: string): Promise<void>;
|
|
851
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GanttPrintService, never>;
|
|
852
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GanttPrintService>;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
declare class GanttSyncScrollService {
|
|
856
|
+
private ngZone;
|
|
857
|
+
private scrollGroupsMap;
|
|
858
|
+
constructor();
|
|
859
|
+
registerScrollEvent(groupName: string, element: HTMLElement, direction: 'x' | 'y'): void;
|
|
860
|
+
unregisterScrollEvent(groupName: string, element: HTMLElement): void;
|
|
861
|
+
private monitorScrollChange;
|
|
862
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GanttSyncScrollService, never>;
|
|
863
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GanttSyncScrollService>;
|
|
864
|
+
}
|
|
865
|
+
|
|
680
866
|
declare class NgxGanttComponent extends GanttUpper implements OnInit, OnChanges, AfterViewInit, AfterViewChecked {
|
|
681
867
|
private viewportRuler;
|
|
682
868
|
maxLevel: number;
|
|
@@ -901,40 +1087,6 @@ declare class GanttMainComponent implements OnInit {
|
|
|
901
1087
|
static ɵcmp: i0.ɵɵComponentDeclaration<GanttMainComponent, "gantt-main", never, { "viewportItems": { "alias": "viewportItems"; "required": false; }; "flatItems": { "alias": "flatItems"; "required": false; }; "groupHeaderTemplate": { "alias": "groupHeaderTemplate"; "required": false; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; }; "barTemplate": { "alias": "barTemplate"; "required": false; }; "rangeTemplate": { "alias": "rangeTemplate"; "required": false; }; "baselineTemplate": { "alias": "baselineTemplate"; "required": false; }; "ganttRoot": { "alias": "ganttRoot"; "required": false; }; "quickTimeFocus": { "alias": "quickTimeFocus"; "required": false; }; }, { "barClick": "barClick"; "lineClick": "lineClick"; }, never, never, true, never>;
|
|
902
1088
|
}
|
|
903
1089
|
|
|
904
|
-
declare class GanttCalendarHeaderComponent implements OnInit {
|
|
905
|
-
ganttUpper: GanttUpper;
|
|
906
|
-
private ngZone;
|
|
907
|
-
private elementRef;
|
|
908
|
-
get view(): _worktile_gantt.GanttView;
|
|
909
|
-
private unsubscribe$;
|
|
910
|
-
viewTypes: typeof GanttViewType;
|
|
911
|
-
className: string;
|
|
912
|
-
get height(): string;
|
|
913
|
-
constructor();
|
|
914
|
-
ngOnInit(): void;
|
|
915
|
-
setTodayPoint(): void;
|
|
916
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GanttCalendarHeaderComponent, never>;
|
|
917
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GanttCalendarHeaderComponent, "gantt-calendar-header", never, {}, {}, never, never, true, never>;
|
|
918
|
-
}
|
|
919
|
-
|
|
920
|
-
declare class GanttCalendarGridComponent implements OnInit, OnDestroy {
|
|
921
|
-
ganttUpper: GanttUpper;
|
|
922
|
-
private ngZone;
|
|
923
|
-
private elementRef;
|
|
924
|
-
get view(): _worktile_gantt.GanttView;
|
|
925
|
-
private unsubscribe$;
|
|
926
|
-
mainHeight: number;
|
|
927
|
-
todayBorderRadius: number;
|
|
928
|
-
viewTypes: typeof GanttViewType;
|
|
929
|
-
className: string;
|
|
930
|
-
constructor();
|
|
931
|
-
setTodayPoint(): void;
|
|
932
|
-
ngOnInit(): void;
|
|
933
|
-
ngOnDestroy(): void;
|
|
934
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GanttCalendarGridComponent, never>;
|
|
935
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GanttCalendarGridComponent, "gantt-calendar-grid", never, {}, {}, never, never, true, never>;
|
|
936
|
-
}
|
|
937
|
-
|
|
938
1090
|
declare class GanttLinksComponent implements OnInit, OnChanges, OnDestroy {
|
|
939
1091
|
ganttUpper: GanttUpper;
|
|
940
1092
|
private cdr;
|
|
@@ -965,49 +1117,6 @@ declare class GanttLinksComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
965
1117
|
static ɵcmp: i0.ɵɵComponentDeclaration<GanttLinksComponent, "gantt-links-overlay", never, { "flatItems": { "alias": "flatItems"; "required": false; }; }, { "lineClick": "lineClick"; }, never, never, true, never>;
|
|
966
1118
|
}
|
|
967
1119
|
|
|
968
|
-
declare class GanttLoaderComponent {
|
|
969
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GanttLoaderComponent, never>;
|
|
970
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GanttLoaderComponent, "gantt-loader", never, {}, {}, never, never, true, never>;
|
|
971
|
-
}
|
|
972
|
-
|
|
973
|
-
declare abstract class GanttItemUpper implements OnChanges, OnInit, OnDestroy {
|
|
974
|
-
protected elementRef: ElementRef<HTMLElement>;
|
|
975
|
-
protected ganttUpper: GanttUpper;
|
|
976
|
-
template: TemplateRef<any>;
|
|
977
|
-
item: GanttItemInternal;
|
|
978
|
-
firstChange: boolean;
|
|
979
|
-
unsubscribe$: Subject<void>;
|
|
980
|
-
refsUnsubscribe$: Subject<void>;
|
|
981
|
-
constructor();
|
|
982
|
-
ngOnInit(): void;
|
|
983
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
984
|
-
private itemChange;
|
|
985
|
-
private setPositions;
|
|
986
|
-
ngOnDestroy(): void;
|
|
987
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GanttItemUpper, never>;
|
|
988
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<GanttItemUpper, never, never, { "template": { "alias": "template"; "required": false; }; "item": { "alias": "item"; "required": false; }; }, {}, never, never, true, never>;
|
|
989
|
-
}
|
|
990
|
-
|
|
991
|
-
declare class NgxGanttBarComponent extends GanttItemUpper implements OnInit, AfterViewInit, OnChanges, OnDestroy {
|
|
992
|
-
private dragContainer;
|
|
993
|
-
private drag;
|
|
994
|
-
ganttUpper: GanttUpper;
|
|
995
|
-
private ngZone;
|
|
996
|
-
barClick: EventEmitter<GanttBarClickEvent<unknown>>;
|
|
997
|
-
contentElementRef: ElementRef<HTMLDivElement>;
|
|
998
|
-
ganttItemClass: boolean;
|
|
999
|
-
handles: QueryList<ElementRef<HTMLElement>>;
|
|
1000
|
-
constructor();
|
|
1001
|
-
ngOnInit(): void;
|
|
1002
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
1003
|
-
ngAfterViewInit(): void;
|
|
1004
|
-
onBarClick(event: Event): void;
|
|
1005
|
-
private setContentBackground;
|
|
1006
|
-
stopPropagation(event: Event): void;
|
|
1007
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgxGanttBarComponent, never>;
|
|
1008
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttBarComponent, "ngx-gantt-bar,gantt-bar", never, {}, { "barClick": "barClick"; }, never, never, true, never>;
|
|
1009
|
-
}
|
|
1010
|
-
|
|
1011
1120
|
declare class GanttIconComponent {
|
|
1012
1121
|
private elementRef;
|
|
1013
1122
|
isIcon: boolean;
|
|
@@ -1018,63 +1127,6 @@ declare class GanttIconComponent {
|
|
|
1018
1127
|
static ɵcmp: i0.ɵɵComponentDeclaration<GanttIconComponent, "gantt-icon", never, { "iconName": { "alias": "iconName"; "required": false; }; }, {}, never, never, true, never>;
|
|
1019
1128
|
}
|
|
1020
1129
|
|
|
1021
|
-
declare class GanttDragBackdropComponent {
|
|
1022
|
-
ganttUpper: GanttUpper;
|
|
1023
|
-
constructor();
|
|
1024
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GanttDragBackdropComponent, never>;
|
|
1025
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GanttDragBackdropComponent, "gantt-drag-backdrop", never, {}, {}, never, never, true, never>;
|
|
1026
|
-
}
|
|
1027
|
-
|
|
1028
|
-
declare class NgxGanttRangeComponent extends GanttItemUpper {
|
|
1029
|
-
ganttRangeClass: boolean;
|
|
1030
|
-
constructor();
|
|
1031
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgxGanttRangeComponent, never>;
|
|
1032
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttRangeComponent, "ngx-gantt-range,gantt-range", never, {}, {}, never, never, true, never>;
|
|
1033
|
-
}
|
|
1034
|
-
|
|
1035
|
-
declare class NgxGanttBaselineComponent implements OnInit {
|
|
1036
|
-
private elementRef;
|
|
1037
|
-
ganttUpper: GanttUpper;
|
|
1038
|
-
baselineItem: GanttBaselineItemInternal;
|
|
1039
|
-
template: TemplateRef<any>;
|
|
1040
|
-
unsubscribe$: Subject<void>;
|
|
1041
|
-
ganttBaselineClass: boolean;
|
|
1042
|
-
constructor();
|
|
1043
|
-
ngOnInit(): void;
|
|
1044
|
-
private setPositions;
|
|
1045
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgxGanttBaselineComponent, never>;
|
|
1046
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttBaselineComponent, "ngx-gantt-baseline,gantt-baseline", never, { "baselineItem": { "alias": "baselineItem"; "required": false; }; "template": { "alias": "template"; "required": false; }; }, {}, never, never, true, never>;
|
|
1047
|
-
}
|
|
1048
|
-
|
|
1049
|
-
declare class NgxGanttToolbarComponent {
|
|
1050
|
-
protected ganttUpper: GanttUpper;
|
|
1051
|
-
template: TemplateRef<any>;
|
|
1052
|
-
ganttItemClass: boolean;
|
|
1053
|
-
get top(): string;
|
|
1054
|
-
views: Record<GanttViewType, {
|
|
1055
|
-
label: string;
|
|
1056
|
-
dateFormats: {
|
|
1057
|
-
primary?: string;
|
|
1058
|
-
secondary?: string;
|
|
1059
|
-
};
|
|
1060
|
-
}>;
|
|
1061
|
-
constructor();
|
|
1062
|
-
selectView(view: GanttViewType): void;
|
|
1063
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgxGanttToolbarComponent, never>;
|
|
1064
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgxGanttToolbarComponent, "ngx-gantt-toolbar,gantt-toolbar", never, { "template": { "alias": "template"; "required": false; }; }, {}, never, never, true, never>;
|
|
1065
|
-
}
|
|
1066
|
-
|
|
1067
|
-
declare class GanttScrollbarComponent {
|
|
1068
|
-
ganttUpper: GanttUpper;
|
|
1069
|
-
hasFooter: i0.InputSignal<boolean>;
|
|
1070
|
-
tableWidth: i0.InputSignal<number>;
|
|
1071
|
-
ganttRoot: i0.InputSignal<NgxGanttRootComponent>;
|
|
1072
|
-
tableScrollWidth: i0.InputSignal<number>;
|
|
1073
|
-
constructor();
|
|
1074
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GanttScrollbarComponent, never>;
|
|
1075
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GanttScrollbarComponent, "gantt-scrollbar", never, { "hasFooter": { "alias": "hasFooter"; "required": false; "isSignal": true; }; "tableWidth": { "alias": "tableWidth"; "required": false; "isSignal": true; }; "ganttRoot": { "alias": "ganttRoot"; "required": false; "isSignal": true; }; "tableScrollWidth": { "alias": "tableScrollWidth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
1130
|
declare class IsGanttRangeItemPipe implements PipeTransform {
|
|
1079
1131
|
transform(value: GanttItemType): value is GanttItemType.range;
|
|
1080
1132
|
static ɵfac: i0.ɵɵFactoryDeclaration<IsGanttRangeItemPipe, never>;
|
|
@@ -1293,7 +1345,7 @@ declare const _default$2: {
|
|
|
1293
1345
|
|
|
1294
1346
|
declare const _default$1: {
|
|
1295
1347
|
id: GanttI18nLocale;
|
|
1296
|
-
dateLocale:
|
|
1348
|
+
dateLocale: Locale;
|
|
1297
1349
|
views: {
|
|
1298
1350
|
hour: {
|
|
1299
1351
|
label: string;
|
|
@@ -1341,7 +1393,7 @@ declare const _default$1: {
|
|
|
1341
1393
|
|
|
1342
1394
|
declare const _default: {
|
|
1343
1395
|
id: GanttI18nLocale;
|
|
1344
|
-
dateLocale:
|
|
1396
|
+
dateLocale: Locale;
|
|
1345
1397
|
views: {
|
|
1346
1398
|
hour: {
|
|
1347
1399
|
label: string;
|
|
@@ -1389,18 +1441,5 @@ declare const _default: {
|
|
|
1389
1441
|
|
|
1390
1442
|
declare function registerView<T extends typeof GanttView>(type: string, view: T): void;
|
|
1391
1443
|
|
|
1392
|
-
|
|
1393
|
-
private root;
|
|
1394
|
-
private mainContainer;
|
|
1395
|
-
constructor();
|
|
1396
|
-
private setInlineStyles;
|
|
1397
|
-
private recursElementChildren;
|
|
1398
|
-
register(root: ElementRef<HTMLElement>): void;
|
|
1399
|
-
html2canvas(ignoreElementClass?: string): Promise<HTMLCanvasElement>;
|
|
1400
|
-
print(name?: string, ignoreElementClass?: string): Promise<void>;
|
|
1401
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GanttPrintService, never>;
|
|
1402
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<GanttPrintService>;
|
|
1403
|
-
}
|
|
1404
|
-
|
|
1405
|
-
export { GANTT_GLOBAL_CONFIG, GANTT_I18N_LOCALE_TOKEN, GANTT_UPPER_TOKEN, GanttBarClickEvent, GanttBaselineItemInternal, GanttCalendarGridComponent, GanttCalendarHeaderComponent, GanttConfigService, GanttDate, GanttDatePoint, GanttDragBackdropComponent, GanttDragEvent, GanttGroupInternal, GanttI18nLocale, GanttItemInternal, GanttItemType, GanttItemUpper, GanttLineClickEvent, GanttLinkDragEvent, GanttLinkLineType, GanttLinkType, GanttLoadOnScrollEvent, GanttLoaderComponent, GanttPrintService, GanttScrollbarComponent, GanttSelectedEvent, GanttTableDragDroppedEvent, GanttTableDragEndedEvent, GanttTableDragEnterPredicateContext, GanttTableDragStartedEvent, GanttTableEvent, GanttTableItemClickEvent, GanttUpper, GanttView, GanttViewType, GanttVirtualScrolledIndexChangeEvent, IsGanttBarItemPipe, IsGanttCustomItemPipe, IsGanttGroupPipe, IsGanttRangeItemPipe, LinkColors, NgxGanttBarComponent, NgxGanttBaselineComponent, NgxGanttComponent, NgxGanttModule, NgxGanttRangeComponent, NgxGanttRootComponent, NgxGanttTableColumnComponent, NgxGanttTableComponent, NgxGanttToolbarComponent, _default$1 as deDeLocale, defaultConfig, _default$3 as enUsLocale, getDefaultTimeZone, _default$2 as jaJpLocale, primaryDatePointTop, registerView, _default as ruRuLocale, secondaryDatePointTop, setDefaultTimeZone, _default$5 as zhHansLocale, _default$4 as zhHantLocale };
|
|
1444
|
+
export { GANTT_GLOBAL_CONFIG, GANTT_I18N_LOCALE_TOKEN, GANTT_UPPER_TOKEN, GanttBarClickEvent, GanttBaselineItemInternal, GanttCalendarGridComponent, GanttCalendarHeaderComponent, GanttConfigService, GanttDate, GanttDatePoint, GanttDragBackdropComponent, GanttDragEvent, GanttGroupInternal, GanttI18nLocale, GanttItemInternal, GanttItemType, GanttItemUpper, GanttLineClickEvent, GanttLinkDragEvent, GanttLinkLineType, GanttLinkType, GanttLoadOnScrollEvent, GanttLoaderComponent, GanttPrintService, GanttScrollbarComponent, GanttSelectedEvent, GanttSyncScrollService, GanttSyncScrollXDirective, GanttSyncScrollYDirective, GanttTableDragDroppedEvent, GanttTableDragEndedEvent, GanttTableDragEnterPredicateContext, GanttTableDragStartedEvent, GanttTableEvent, GanttTableItemClickEvent, GanttUpper, GanttView, GanttViewType, GanttVirtualScrolledIndexChangeEvent, IsGanttBarItemPipe, IsGanttCustomItemPipe, IsGanttGroupPipe, IsGanttRangeItemPipe, LinkColors, NgxGanttBarComponent, NgxGanttBaselineComponent, NgxGanttComponent, NgxGanttModule, NgxGanttRangeComponent, NgxGanttRootComponent, NgxGanttTableColumnComponent, NgxGanttTableComponent, NgxGanttToolbarComponent, _default$1 as deDeLocale, defaultConfig, _default$3 as enUsLocale, getDefaultTimeZone, _default$2 as jaJpLocale, primaryDatePointTop, registerView, _default as ruRuLocale, secondaryDatePointTop, setDefaultTimeZone, _default$5 as zhHansLocale, _default$4 as zhHantLocale };
|
|
1406
1445
|
export type { GanttBaselineItem, GanttDateFormat, GanttDateOptions, GanttDateUtil, GanttGlobalConfig, GanttGroup, GanttI18nLocaleConfig, GanttItem, GanttItemRefs, GanttLink, GanttLinkItem, GanttLinkOptions, GanttStyleOptions, GanttTableDropPosition, GanttToolbarOptions, GanttViewDate, GanttViewOptions, LinkInternal };
|