@progress/kendo-angular-gantt 1.0.0 → 1.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/dist/cdn/js/kendo-angular-gantt.js +2 -2
- package/dist/cdn/main.js +1 -1
- package/dist/es/gantt.component.js +3 -3
- package/dist/es/package-metadata.js +1 -1
- package/dist/es2015/gantt.component.d.ts +21 -0
- package/dist/es2015/gantt.component.js +3 -3
- package/dist/es2015/index.metadata.json +1 -1
- package/dist/es2015/package-metadata.js +1 -1
- package/dist/fesm2015/index.js +4 -4
- package/dist/fesm5/index.js +4 -4
- package/dist/npm/gantt.component.js +3 -3
- package/dist/npm/package-metadata.js +1 -1
- package/dist/systemjs/kendo-angular-gantt.js +1 -1
- package/package.json +7 -6
- package/schematics/ngAdd/index.js +4 -4
|
@@ -1305,15 +1305,15 @@ var GanttComponent = /** @class */ (function () {
|
|
|
1305
1305
|
tslib_1.__metadata("design:type", GanttTimelineComponent)
|
|
1306
1306
|
], GanttComponent.prototype, "timeline", void 0);
|
|
1307
1307
|
tslib_1.__decorate([
|
|
1308
|
-
ContentChild(GanttTaskContentTemplateDirective, { static:
|
|
1308
|
+
ContentChild(GanttTaskContentTemplateDirective, { static: false }),
|
|
1309
1309
|
tslib_1.__metadata("design:type", GanttTaskContentTemplateDirective)
|
|
1310
1310
|
], GanttComponent.prototype, "taskContentTemplate", void 0);
|
|
1311
1311
|
tslib_1.__decorate([
|
|
1312
|
-
ContentChild(GanttTaskTemplateDirective, { static:
|
|
1312
|
+
ContentChild(GanttTaskTemplateDirective, { static: false }),
|
|
1313
1313
|
tslib_1.__metadata("design:type", GanttTaskTemplateDirective)
|
|
1314
1314
|
], GanttComponent.prototype, "taskTemplate", void 0);
|
|
1315
1315
|
tslib_1.__decorate([
|
|
1316
|
-
ContentChild(GanttSummaryTaskTemplateDirective, { static:
|
|
1316
|
+
ContentChild(GanttSummaryTaskTemplateDirective, { static: false }),
|
|
1317
1317
|
tslib_1.__metadata("design:type", GanttSummaryTaskTemplateDirective)
|
|
1318
1318
|
], GanttComponent.prototype, "summaryTaskTemplate", void 0);
|
|
1319
1319
|
tslib_1.__decorate([
|
|
@@ -9,7 +9,7 @@ export var packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-gantt',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
12
|
+
publishDate: 1647344447,
|
|
13
13
|
version: '',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
15
15
|
};
|
|
@@ -120,8 +120,29 @@ export declare class GanttComponent implements AfterContentInit, OnChanges, OnDe
|
|
|
120
120
|
private navigationService;
|
|
121
121
|
treeList: TreeListComponent;
|
|
122
122
|
timeline: GanttTimelineComponent;
|
|
123
|
+
/**
|
|
124
|
+
* @hidden
|
|
125
|
+
*
|
|
126
|
+
* Queries the template for a task content template declaration.
|
|
127
|
+
* In newer Angular versions the ngIf-ed value gets evaluated after the static query is resolved.
|
|
128
|
+
* Therefore the `static` property needs to be set to `false`.
|
|
129
|
+
*/
|
|
123
130
|
taskContentTemplate: GanttTaskContentTemplateDirective;
|
|
131
|
+
/**
|
|
132
|
+
* @hidden
|
|
133
|
+
*
|
|
134
|
+
* Queries the template for a task template declaration.
|
|
135
|
+
* In newer Angular versions the ngIf-ed value gets evaluated after the static query is resolved.
|
|
136
|
+
* Therefore the `static` property needs to be set to `false`.
|
|
137
|
+
*/
|
|
124
138
|
taskTemplate: GanttTaskTemplateDirective;
|
|
139
|
+
/**
|
|
140
|
+
* @hidden
|
|
141
|
+
*
|
|
142
|
+
* Queries the template for a task summary template declaration.
|
|
143
|
+
* In newer Angular versions the ngIf-ed value gets evaluated after the static query is resolved.
|
|
144
|
+
* Therefore the `static` property needs to be set to `false`.
|
|
145
|
+
*/
|
|
125
146
|
summaryTaskTemplate: GanttSummaryTaskTemplateDirective;
|
|
126
147
|
toolbarTemplateChildren: QueryList<ToolbarTemplateDirective>;
|
|
127
148
|
toolbarTemplate: ToolbarTemplateDirective;
|
|
@@ -1177,15 +1177,15 @@ tslib_1.__decorate([
|
|
|
1177
1177
|
tslib_1.__metadata("design:type", GanttTimelineComponent)
|
|
1178
1178
|
], GanttComponent.prototype, "timeline", void 0);
|
|
1179
1179
|
tslib_1.__decorate([
|
|
1180
|
-
ContentChild(GanttTaskContentTemplateDirective, { static:
|
|
1180
|
+
ContentChild(GanttTaskContentTemplateDirective, { static: false }),
|
|
1181
1181
|
tslib_1.__metadata("design:type", GanttTaskContentTemplateDirective)
|
|
1182
1182
|
], GanttComponent.prototype, "taskContentTemplate", void 0);
|
|
1183
1183
|
tslib_1.__decorate([
|
|
1184
|
-
ContentChild(GanttTaskTemplateDirective, { static:
|
|
1184
|
+
ContentChild(GanttTaskTemplateDirective, { static: false }),
|
|
1185
1185
|
tslib_1.__metadata("design:type", GanttTaskTemplateDirective)
|
|
1186
1186
|
], GanttComponent.prototype, "taskTemplate", void 0);
|
|
1187
1187
|
tslib_1.__decorate([
|
|
1188
|
-
ContentChild(GanttSummaryTaskTemplateDirective, { static:
|
|
1188
|
+
ContentChild(GanttSummaryTaskTemplateDirective, { static: false }),
|
|
1189
1189
|
tslib_1.__metadata("design:type", GanttSummaryTaskTemplateDirective)
|
|
1190
1190
|
], GanttComponent.prototype, "summaryTaskTemplate", void 0);
|
|
1191
1191
|
tslib_1.__decorate([
|