@progress/kendo-angular-gantt 0.2.0 → 0.2.1-dev.202112081924
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 +1 -1
- package/dist/cdn/main.js +1 -1
- package/dist/es/expanded-state/expandable.directive.js +6 -4
- package/dist/es/package-metadata.js +1 -1
- package/dist/es2015/expanded-state/expandable.directive.d.ts +2 -1
- package/dist/es2015/expanded-state/expandable.directive.js +7 -2
- package/dist/es2015/index.metadata.json +1 -1
- package/dist/es2015/package-metadata.js +1 -1
- package/dist/fesm2015/index.js +7 -2
- package/dist/fesm5/index.js +6 -4
- package/dist/npm/expanded-state/expandable.directive.js +5 -3
- package/dist/npm/package-metadata.js +1 -1
- package/dist/systemjs/kendo-angular-gantt.js +1 -1
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-gantt',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
12
|
+
publishDate: 1638991092,
|
|
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
|
};
|
package/dist/fesm2015/index.js
CHANGED
|
@@ -30,7 +30,7 @@ const packageMetadata = {
|
|
|
30
30
|
name: '@progress/kendo-angular-gantt',
|
|
31
31
|
productName: 'Kendo UI for Angular',
|
|
32
32
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
33
|
-
publishDate:
|
|
33
|
+
publishDate: 1638991092,
|
|
34
34
|
version: '',
|
|
35
35
|
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'
|
|
36
36
|
};
|
|
@@ -3759,6 +3759,10 @@ GanttHierarchyBindingDirective = __decorate([
|
|
|
3759
3759
|
* A directive which controls the expanded state of the items.
|
|
3760
3760
|
*/
|
|
3761
3761
|
let GanttExpandableDirective = class GanttExpandableDirective extends ExpandableDirective {
|
|
3762
|
+
// fixes an injection error in some builds/ng-versions (e.g. StackBlitz)
|
|
3763
|
+
constructor(gantt) {
|
|
3764
|
+
super(gantt);
|
|
3765
|
+
}
|
|
3762
3766
|
};
|
|
3763
3767
|
__decorate([
|
|
3764
3768
|
Input(),
|
|
@@ -3768,7 +3772,8 @@ GanttExpandableDirective = __decorate([
|
|
|
3768
3772
|
Directive({
|
|
3769
3773
|
exportAs: 'kendoGanttExpandable',
|
|
3770
3774
|
selector: '[kendoGanttExpandable]'
|
|
3771
|
-
})
|
|
3775
|
+
}),
|
|
3776
|
+
__metadata("design:paramtypes", [ExpandableTreeComponent])
|
|
3772
3777
|
], GanttExpandableDirective);
|
|
3773
3778
|
|
|
3774
3779
|
/**
|
package/dist/fesm5/index.js
CHANGED
|
@@ -30,7 +30,7 @@ var packageMetadata = {
|
|
|
30
30
|
name: '@progress/kendo-angular-gantt',
|
|
31
31
|
productName: 'Kendo UI for Angular',
|
|
32
32
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
33
|
-
publishDate:
|
|
33
|
+
publishDate: 1638991092,
|
|
34
34
|
version: '',
|
|
35
35
|
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'
|
|
36
36
|
};
|
|
@@ -3467,8 +3467,9 @@ var GanttHierarchyBindingDirective = /** @class */ (function (_super) {
|
|
|
3467
3467
|
*/
|
|
3468
3468
|
var GanttExpandableDirective = /** @class */ (function (_super) {
|
|
3469
3469
|
__extends(GanttExpandableDirective, _super);
|
|
3470
|
-
|
|
3471
|
-
|
|
3470
|
+
// fixes an injection error in some builds/ng-versions (e.g. StackBlitz)
|
|
3471
|
+
function GanttExpandableDirective(gantt) {
|
|
3472
|
+
return _super.call(this, gantt) || this;
|
|
3472
3473
|
}
|
|
3473
3474
|
__decorate([
|
|
3474
3475
|
Input(),
|
|
@@ -3478,7 +3479,8 @@ var GanttExpandableDirective = /** @class */ (function (_super) {
|
|
|
3478
3479
|
Directive({
|
|
3479
3480
|
exportAs: 'kendoGanttExpandable',
|
|
3480
3481
|
selector: '[kendoGanttExpandable]'
|
|
3481
|
-
})
|
|
3482
|
+
}),
|
|
3483
|
+
__metadata("design:paramtypes", [ExpandableTreeComponent])
|
|
3482
3484
|
], GanttExpandableDirective);
|
|
3483
3485
|
return GanttExpandableDirective;
|
|
3484
3486
|
}(ExpandableDirective));
|
|
@@ -12,8 +12,9 @@ var kendo_angular_treelist_1 = require("@progress/kendo-angular-treelist");
|
|
|
12
12
|
*/
|
|
13
13
|
var GanttExpandableDirective = /** @class */ (function (_super) {
|
|
14
14
|
tslib_1.__extends(GanttExpandableDirective, _super);
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
// fixes an injection error in some builds/ng-versions (e.g. StackBlitz)
|
|
16
|
+
function GanttExpandableDirective(gantt) {
|
|
17
|
+
return _super.call(this, gantt) || this;
|
|
17
18
|
}
|
|
18
19
|
tslib_1.__decorate([
|
|
19
20
|
core_1.Input(),
|
|
@@ -23,7 +24,8 @@ var GanttExpandableDirective = /** @class */ (function (_super) {
|
|
|
23
24
|
core_1.Directive({
|
|
24
25
|
exportAs: 'kendoGanttExpandable',
|
|
25
26
|
selector: '[kendoGanttExpandable]'
|
|
26
|
-
})
|
|
27
|
+
}),
|
|
28
|
+
tslib_1.__metadata("design:paramtypes", [kendo_angular_treelist_1.ExpandableTreeComponent])
|
|
27
29
|
], GanttExpandableDirective);
|
|
28
30
|
return GanttExpandableDirective;
|
|
29
31
|
}(kendo_angular_treelist_1.ExpandableDirective));
|
|
@@ -11,7 +11,7 @@ exports.packageMetadata = {
|
|
|
11
11
|
name: '@progress/kendo-angular-gantt',
|
|
12
12
|
productName: 'Kendo UI for Angular',
|
|
13
13
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
14
|
-
publishDate:
|
|
14
|
+
publishDate: 1638991092,
|
|
15
15
|
version: '',
|
|
16
16
|
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'
|
|
17
17
|
};
|