@progress/kendo-angular-gantt 18.5.1-develop.2 → 18.5.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.
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '18.5.1
|
|
13
|
+
publishDate: 1744647816,
|
|
14
|
+
version: '18.5.1',
|
|
15
15
|
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'
|
|
16
16
|
};
|
|
@@ -19,6 +19,9 @@ export class ToolbarComponent {
|
|
|
19
19
|
navigationService;
|
|
20
20
|
context = {};
|
|
21
21
|
role = 'toolbar';
|
|
22
|
+
// initial problem - https://github.com/telerik/kendo-angular/issues/4594
|
|
23
|
+
// remove when https://github.com/telerik/kendo-themes/issues/5427 is resolved
|
|
24
|
+
zIndex = '1';
|
|
22
25
|
hostClasses = true;
|
|
23
26
|
clickHandler(ev) {
|
|
24
27
|
if (this.navigable) {
|
|
@@ -87,7 +90,7 @@ export class ToolbarComponent {
|
|
|
87
90
|
}
|
|
88
91
|
}
|
|
89
92
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToolbarComponent, deps: [{ token: i0.ElementRef }, { token: i1.ToolbarNavigationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
90
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ToolbarComponent, isStandalone: true, selector: "kendo-gantt-toolbar", inputs: { showAddTask: "showAddTask", showViewSelector: "showViewSelector", views: "views", activeView: "activeView", toolbarTemplate: "toolbarTemplate", navigable: "navigable", position: "position" }, outputs: { activeViewChange: "activeViewChange" }, host: { listeners: { "click": "clickHandler($event)", "keydown.arrowleft": "arrowLeftListener($event)", "keydown.arrowright": "arrowRightListener($event)" }, properties: { "attr.role": "this.role", "class.k-gantt-toolbar": "this.hostClasses", "class.k-toolbar": "this.hostClasses", "class.k-toolbar-md": "this.hostClasses", "class.k-toolbar-solid": "this.hostClasses" } }, providers: [ToolbarNavigationService], ngImport: i0, template: `
|
|
93
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ToolbarComponent, isStandalone: true, selector: "kendo-gantt-toolbar", inputs: { showAddTask: "showAddTask", showViewSelector: "showViewSelector", views: "views", activeView: "activeView", toolbarTemplate: "toolbarTemplate", navigable: "navigable", position: "position" }, outputs: { activeViewChange: "activeViewChange" }, host: { listeners: { "click": "clickHandler($event)", "keydown.arrowleft": "arrowLeftListener($event)", "keydown.arrowright": "arrowRightListener($event)" }, properties: { "attr.role": "this.role", "style.zIndex": "this.zIndex", "class.k-gantt-toolbar": "this.hostClasses", "class.k-toolbar": "this.hostClasses", "class.k-toolbar-md": "this.hostClasses", "class.k-toolbar-solid": "this.hostClasses" } }, providers: [ToolbarNavigationService], ngImport: i0, template: `
|
|
91
94
|
<ng-container *ngIf="!renderTemplate">
|
|
92
95
|
<kendo-gantt-add-task *ngIf="showAddTask"></kendo-gantt-add-task>
|
|
93
96
|
<span class="k-spacer k-toolbar-spacer"></span>
|
|
@@ -133,6 +136,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
133
136
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.ToolbarNavigationService }]; }, propDecorators: { role: [{
|
|
134
137
|
type: HostBinding,
|
|
135
138
|
args: ['attr.role']
|
|
139
|
+
}], zIndex: [{
|
|
140
|
+
type: HostBinding,
|
|
141
|
+
args: ['style.zIndex']
|
|
136
142
|
}], hostClasses: [{
|
|
137
143
|
type: HostBinding,
|
|
138
144
|
args: ['class.k-gantt-toolbar']
|
|
@@ -44,8 +44,8 @@ const packageMetadata = {
|
|
|
44
44
|
productName: 'Kendo UI for Angular',
|
|
45
45
|
productCode: 'KENDOUIANGULAR',
|
|
46
46
|
productCodes: ['KENDOUIANGULAR'],
|
|
47
|
-
publishDate:
|
|
48
|
-
version: '18.5.1
|
|
47
|
+
publishDate: 1744647816,
|
|
48
|
+
version: '18.5.1',
|
|
49
49
|
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'
|
|
50
50
|
};
|
|
51
51
|
|
|
@@ -5314,6 +5314,9 @@ class ToolbarComponent {
|
|
|
5314
5314
|
navigationService;
|
|
5315
5315
|
context = {};
|
|
5316
5316
|
role = 'toolbar';
|
|
5317
|
+
// initial problem - https://github.com/telerik/kendo-angular/issues/4594
|
|
5318
|
+
// remove when https://github.com/telerik/kendo-themes/issues/5427 is resolved
|
|
5319
|
+
zIndex = '1';
|
|
5317
5320
|
hostClasses = true;
|
|
5318
5321
|
clickHandler(ev) {
|
|
5319
5322
|
if (this.navigable) {
|
|
@@ -5382,7 +5385,7 @@ class ToolbarComponent {
|
|
|
5382
5385
|
}
|
|
5383
5386
|
}
|
|
5384
5387
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToolbarComponent, deps: [{ token: i0.ElementRef }, { token: ToolbarNavigationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
5385
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ToolbarComponent, isStandalone: true, selector: "kendo-gantt-toolbar", inputs: { showAddTask: "showAddTask", showViewSelector: "showViewSelector", views: "views", activeView: "activeView", toolbarTemplate: "toolbarTemplate", navigable: "navigable", position: "position" }, outputs: { activeViewChange: "activeViewChange" }, host: { listeners: { "click": "clickHandler($event)", "keydown.arrowleft": "arrowLeftListener($event)", "keydown.arrowright": "arrowRightListener($event)" }, properties: { "attr.role": "this.role", "class.k-gantt-toolbar": "this.hostClasses", "class.k-toolbar": "this.hostClasses", "class.k-toolbar-md": "this.hostClasses", "class.k-toolbar-solid": "this.hostClasses" } }, providers: [ToolbarNavigationService], ngImport: i0, template: `
|
|
5388
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ToolbarComponent, isStandalone: true, selector: "kendo-gantt-toolbar", inputs: { showAddTask: "showAddTask", showViewSelector: "showViewSelector", views: "views", activeView: "activeView", toolbarTemplate: "toolbarTemplate", navigable: "navigable", position: "position" }, outputs: { activeViewChange: "activeViewChange" }, host: { listeners: { "click": "clickHandler($event)", "keydown.arrowleft": "arrowLeftListener($event)", "keydown.arrowright": "arrowRightListener($event)" }, properties: { "attr.role": "this.role", "style.zIndex": "this.zIndex", "class.k-gantt-toolbar": "this.hostClasses", "class.k-toolbar": "this.hostClasses", "class.k-toolbar-md": "this.hostClasses", "class.k-toolbar-solid": "this.hostClasses" } }, providers: [ToolbarNavigationService], ngImport: i0, template: `
|
|
5386
5389
|
<ng-container *ngIf="!renderTemplate">
|
|
5387
5390
|
<kendo-gantt-add-task *ngIf="showAddTask"></kendo-gantt-add-task>
|
|
5388
5391
|
<span class="k-spacer k-toolbar-spacer"></span>
|
|
@@ -5428,6 +5431,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
5428
5431
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: ToolbarNavigationService }]; }, propDecorators: { role: [{
|
|
5429
5432
|
type: HostBinding,
|
|
5430
5433
|
args: ['attr.role']
|
|
5434
|
+
}], zIndex: [{
|
|
5435
|
+
type: HostBinding,
|
|
5436
|
+
args: ['style.zIndex']
|
|
5431
5437
|
}], hostClasses: [{
|
|
5432
5438
|
type: HostBinding,
|
|
5433
5439
|
args: ['class.k-gantt-toolbar']
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-gantt",
|
|
3
|
-
"version": "18.5.1
|
|
3
|
+
"version": "18.5.1",
|
|
4
4
|
"description": "Kendo UI Angular Gantt",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"package": {
|
|
20
20
|
"productName": "Kendo UI for Angular",
|
|
21
21
|
"productCode": "KENDOUIANGULAR",
|
|
22
|
-
"publishDate":
|
|
22
|
+
"publishDate": 1744647816,
|
|
23
23
|
"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"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -31,25 +31,25 @@
|
|
|
31
31
|
"@angular/platform-browser": "16 - 19",
|
|
32
32
|
"@progress/kendo-data-query": "^1.5.5",
|
|
33
33
|
"@progress/kendo-licensing": "^1.5.0",
|
|
34
|
-
"@progress/kendo-angular-buttons": "18.5.1
|
|
35
|
-
"@progress/kendo-angular-common": "18.5.1
|
|
36
|
-
"@progress/kendo-angular-dialog": "18.5.1
|
|
37
|
-
"@progress/kendo-angular-dropdowns": "18.5.1
|
|
38
|
-
"@progress/kendo-angular-grid": "18.5.1
|
|
39
|
-
"@progress/kendo-angular-icons": "18.5.1
|
|
40
|
-
"@progress/kendo-angular-inputs": "18.5.1
|
|
41
|
-
"@progress/kendo-angular-intl": "18.5.1
|
|
42
|
-
"@progress/kendo-angular-l10n": "18.5.1
|
|
43
|
-
"@progress/kendo-angular-label": "18.5.1
|
|
44
|
-
"@progress/kendo-angular-layout": "18.5.1
|
|
45
|
-
"@progress/kendo-angular-popup": "18.5.1
|
|
46
|
-
"@progress/kendo-angular-tooltip": "18.5.1
|
|
47
|
-
"@progress/kendo-angular-treelist": "18.5.1
|
|
34
|
+
"@progress/kendo-angular-buttons": "18.5.1",
|
|
35
|
+
"@progress/kendo-angular-common": "18.5.1",
|
|
36
|
+
"@progress/kendo-angular-dialog": "18.5.1",
|
|
37
|
+
"@progress/kendo-angular-dropdowns": "18.5.1",
|
|
38
|
+
"@progress/kendo-angular-grid": "18.5.1",
|
|
39
|
+
"@progress/kendo-angular-icons": "18.5.1",
|
|
40
|
+
"@progress/kendo-angular-inputs": "18.5.1",
|
|
41
|
+
"@progress/kendo-angular-intl": "18.5.1",
|
|
42
|
+
"@progress/kendo-angular-l10n": "18.5.1",
|
|
43
|
+
"@progress/kendo-angular-label": "18.5.1",
|
|
44
|
+
"@progress/kendo-angular-layout": "18.5.1",
|
|
45
|
+
"@progress/kendo-angular-popup": "18.5.1",
|
|
46
|
+
"@progress/kendo-angular-tooltip": "18.5.1",
|
|
47
|
+
"@progress/kendo-angular-treelist": "18.5.1",
|
|
48
48
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"tslib": "^2.3.1",
|
|
52
|
-
"@progress/kendo-angular-schematics": "18.5.1
|
|
52
|
+
"@progress/kendo-angular-schematics": "18.5.1",
|
|
53
53
|
"@progress/kendo-common": "^1.0.1",
|
|
54
54
|
"@progress/kendo-date-math": "^1.5.2",
|
|
55
55
|
"@progress/kendo-draggable": "^3.0.0"
|
|
@@ -7,16 +7,16 @@ function default_1(options) {
|
|
|
7
7
|
// See https://github.com/telerik/kendo-schematics/issues/28
|
|
8
8
|
peerDependencies: {
|
|
9
9
|
// peer deps of the treelist
|
|
10
|
-
'@progress/kendo-angular-dateinputs': '18.5.1
|
|
11
|
-
'@progress/kendo-angular-excel-export': '18.5.1
|
|
12
|
-
'@progress/kendo-angular-pdf-export': '18.5.1
|
|
13
|
-
'@progress/kendo-angular-utils': '18.5.1
|
|
10
|
+
'@progress/kendo-angular-dateinputs': '18.5.1',
|
|
11
|
+
'@progress/kendo-angular-excel-export': '18.5.1',
|
|
12
|
+
'@progress/kendo-angular-pdf-export': '18.5.1',
|
|
13
|
+
'@progress/kendo-angular-utils': '18.5.1',
|
|
14
14
|
'@progress/kendo-drawing': '^1.0.0',
|
|
15
15
|
// peer deps of the dropdowns
|
|
16
|
-
'@progress/kendo-angular-treeview': '18.5.1
|
|
17
|
-
'@progress/kendo-angular-navigation': '18.5.1
|
|
16
|
+
'@progress/kendo-angular-treeview': '18.5.1',
|
|
17
|
+
'@progress/kendo-angular-navigation': '18.5.1',
|
|
18
18
|
// peer dep of the layout
|
|
19
|
-
'@progress/kendo-angular-progressbar': '18.5.1
|
|
19
|
+
'@progress/kendo-angular-progressbar': '18.5.1',
|
|
20
20
|
// peer dep of the icons
|
|
21
21
|
'@progress/kendo-svg-icons': '^4.0.0'
|
|
22
22
|
} });
|