@progress/kendo-angular-gantt 13.2.0-develop.1 → 13.2.0-develop.3
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/common/option-changes.service.d.ts +2 -0
- package/esm2020/common/option-changes.service.mjs +4 -0
- package/esm2020/gantt.component.mjs +3 -0
- package/esm2020/gantt.module.mjs +5 -2
- package/esm2020/models/timeline-header-date-format.mjs +5 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/timeline/timeline-base-view.service.mjs +34 -14
- package/esm2020/timeline/timeline-day-view.service.mjs +11 -7
- package/esm2020/timeline/timeline-month-view.service.mjs +11 -7
- package/esm2020/timeline/timeline-week-view.service.mjs +11 -7
- package/esm2020/timeline/timeline-year-view.service.mjs +11 -7
- package/esm2020/timeline/view-base.mjs +6 -1
- package/fesm2015/progress-kendo-angular-gantt.mjs +104 -45
- package/fesm2020/progress-kendo-angular-gantt.mjs +91 -44
- package/gantt.module.d.ts +2 -1
- package/models/models.d.ts +1 -0
- package/models/timeline-header-date-format.d.ts +18 -0
- package/models/timeline-options.interface.d.ts +5 -0
- package/package.json +13 -13
- package/schematics/ngAdd/index.js +11 -11
- package/timeline/timeline-base-view.service.d.ts +12 -7
- package/timeline/timeline-day-view.service.d.ts +2 -1
- package/timeline/timeline-month-view.service.d.ts +2 -1
- package/timeline/timeline-week-view.service.d.ts +2 -1
- package/timeline/timeline-year-view.service.d.ts +2 -1
- package/timeline/view-base.d.ts +6 -1
package/timeline/view-base.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { OnChanges, SimpleChanges } from '@angular/core';
|
|
|
6
6
|
import { DependencyDomService } from '../dependencies/dependency-dom.service';
|
|
7
7
|
import { TimelineViewType } from '../models/timeline-view';
|
|
8
8
|
import { OptionChangesService } from '../common/option-changes.service';
|
|
9
|
+
import { TimelineHeaderDateFormat } from '../models/timeline-header-date-format';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
/**
|
|
11
12
|
* The base class for the column components of the Gantt.
|
|
@@ -19,6 +20,10 @@ export declare abstract class ViewBase implements OnChanges {
|
|
|
19
20
|
* @default 100
|
|
20
21
|
*/
|
|
21
22
|
slotWidth: number;
|
|
23
|
+
/**
|
|
24
|
+
* Sets the date format for the Grouped and Column headers.
|
|
25
|
+
*/
|
|
26
|
+
timelineHeadersDateFormat: TimelineHeaderDateFormat;
|
|
22
27
|
/**
|
|
23
28
|
* The type for the view (`day`, `week`, `month` or `year`).
|
|
24
29
|
*/
|
|
@@ -30,5 +35,5 @@ export declare abstract class ViewBase implements OnChanges {
|
|
|
30
35
|
constructor(optionChangesService: OptionChangesService, dependencyDomService: DependencyDomService);
|
|
31
36
|
ngOnChanges(changes: SimpleChanges): void;
|
|
32
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<ViewBase, never>;
|
|
33
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ViewBase, "kendo-gantt-view-base", never, { "slotWidth": "slotWidth"; }, {}, never>;
|
|
38
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ViewBase, "kendo-gantt-view-base", never, { "slotWidth": "slotWidth"; "timelineHeadersDateFormat": "timelineHeadersDateFormat"; }, {}, never>;
|
|
34
39
|
}
|