@progress/kendo-angular-gantt 19.2.0-develop.8 → 19.2.0
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/README.md
CHANGED
|
@@ -4,9 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
## Kendo UI for Angular Gantt Component
|
|
6
6
|
|
|
7
|
-
> * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui)—a commercial
|
|
8
|
-
> *
|
|
9
|
-
> *
|
|
7
|
+
> * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/)—a commercial UI library.
|
|
8
|
+
> * To use this package, you must install a license key file, whether you are on a paid license or a 30-day free trial. To receive a license key, either [purchase a license](https://www.telerik.com/purchase/kendo-ui) or start a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui).
|
|
9
|
+
> * Adding a valid license key file ensures a seamless experience during the trial period—no watermarks, no warnings, and full access to all components and features.
|
|
10
|
+
> * Trial users can register for a free license key file. Without it, your trial may be interrupted by visual indicators or functionality limitations.
|
|
11
|
+
> * Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular team!
|
|
12
|
+
> * Learn more: https://www.telerik.com/kendo-angular-ui/components/licensing
|
|
10
13
|
>
|
|
11
14
|
> [Start using Kendo UI for Angular](https://www.telerik.com/download-login-v2-kendo-angular-ui) and speed up your development process!
|
|
12
15
|
|
|
@@ -53,7 +53,15 @@ export class TaskDragService {
|
|
|
53
53
|
this.completionRatioHandle = args.dragTarget.classList.contains('k-task-draghandle');
|
|
54
54
|
this.leftDragHandle = args.dragTarget.classList.contains('k-resize-w');
|
|
55
55
|
this.rightDragHandle = args.dragTarget.classList.contains('k-resize-e');
|
|
56
|
-
|
|
56
|
+
if (this.leftDragHandle) {
|
|
57
|
+
this.editedProp = 'start';
|
|
58
|
+
}
|
|
59
|
+
else if (this.rightDragHandle) {
|
|
60
|
+
this.editedProp = 'end';
|
|
61
|
+
}
|
|
62
|
+
else {
|
|
63
|
+
this.editedProp = 'both';
|
|
64
|
+
}
|
|
57
65
|
this.dragStart.next(args);
|
|
58
66
|
}
|
|
59
67
|
onDrag(args) {
|
|
@@ -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: '19.2.0
|
|
13
|
+
publishDate: 1751463387,
|
|
14
|
+
version: '19.2.0',
|
|
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
|
};
|
|
@@ -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: '19.2.0
|
|
47
|
+
publishDate: 1751463387,
|
|
48
|
+
version: '19.2.0',
|
|
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
|
|
|
@@ -1894,7 +1894,15 @@ class TaskDragService {
|
|
|
1894
1894
|
this.completionRatioHandle = args.dragTarget.classList.contains('k-task-draghandle');
|
|
1895
1895
|
this.leftDragHandle = args.dragTarget.classList.contains('k-resize-w');
|
|
1896
1896
|
this.rightDragHandle = args.dragTarget.classList.contains('k-resize-e');
|
|
1897
|
-
|
|
1897
|
+
if (this.leftDragHandle) {
|
|
1898
|
+
this.editedProp = 'start';
|
|
1899
|
+
}
|
|
1900
|
+
else if (this.rightDragHandle) {
|
|
1901
|
+
this.editedProp = 'end';
|
|
1902
|
+
}
|
|
1903
|
+
else {
|
|
1904
|
+
this.editedProp = 'both';
|
|
1905
|
+
}
|
|
1898
1906
|
this.dragStart.next(args);
|
|
1899
1907
|
}
|
|
1900
1908
|
onDrag(args) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-gantt",
|
|
3
|
-
"version": "19.2.0
|
|
3
|
+
"version": "19.2.0",
|
|
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": 1751463387,
|
|
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 - 20",
|
|
32
32
|
"@progress/kendo-data-query": "^1.5.5",
|
|
33
33
|
"@progress/kendo-licensing": "^1.5.0",
|
|
34
|
-
"@progress/kendo-angular-buttons": "19.2.0
|
|
35
|
-
"@progress/kendo-angular-common": "19.2.0
|
|
36
|
-
"@progress/kendo-angular-dialog": "19.2.0
|
|
37
|
-
"@progress/kendo-angular-dropdowns": "19.2.0
|
|
38
|
-
"@progress/kendo-angular-grid": "19.2.0
|
|
39
|
-
"@progress/kendo-angular-icons": "19.2.0
|
|
40
|
-
"@progress/kendo-angular-inputs": "19.2.0
|
|
41
|
-
"@progress/kendo-angular-intl": "19.2.0
|
|
42
|
-
"@progress/kendo-angular-l10n": "19.2.0
|
|
43
|
-
"@progress/kendo-angular-label": "19.2.0
|
|
44
|
-
"@progress/kendo-angular-layout": "19.2.0
|
|
45
|
-
"@progress/kendo-angular-popup": "19.2.0
|
|
46
|
-
"@progress/kendo-angular-tooltip": "19.2.0
|
|
47
|
-
"@progress/kendo-angular-treelist": "19.2.0
|
|
34
|
+
"@progress/kendo-angular-buttons": "19.2.0",
|
|
35
|
+
"@progress/kendo-angular-common": "19.2.0",
|
|
36
|
+
"@progress/kendo-angular-dialog": "19.2.0",
|
|
37
|
+
"@progress/kendo-angular-dropdowns": "19.2.0",
|
|
38
|
+
"@progress/kendo-angular-grid": "19.2.0",
|
|
39
|
+
"@progress/kendo-angular-icons": "19.2.0",
|
|
40
|
+
"@progress/kendo-angular-inputs": "19.2.0",
|
|
41
|
+
"@progress/kendo-angular-intl": "19.2.0",
|
|
42
|
+
"@progress/kendo-angular-l10n": "19.2.0",
|
|
43
|
+
"@progress/kendo-angular-label": "19.2.0",
|
|
44
|
+
"@progress/kendo-angular-layout": "19.2.0",
|
|
45
|
+
"@progress/kendo-angular-popup": "19.2.0",
|
|
46
|
+
"@progress/kendo-angular-tooltip": "19.2.0",
|
|
47
|
+
"@progress/kendo-angular-treelist": "19.2.0",
|
|
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": "19.2.0
|
|
52
|
+
"@progress/kendo-angular-schematics": "19.2.0",
|
|
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': '19.2.0
|
|
11
|
-
'@progress/kendo-angular-excel-export': '19.2.0
|
|
12
|
-
'@progress/kendo-angular-pdf-export': '19.2.0
|
|
13
|
-
'@progress/kendo-angular-utils': '19.2.0
|
|
10
|
+
'@progress/kendo-angular-dateinputs': '19.2.0',
|
|
11
|
+
'@progress/kendo-angular-excel-export': '19.2.0',
|
|
12
|
+
'@progress/kendo-angular-pdf-export': '19.2.0',
|
|
13
|
+
'@progress/kendo-angular-utils': '19.2.0',
|
|
14
14
|
'@progress/kendo-drawing': '^1.0.0',
|
|
15
15
|
// peer deps of the dropdowns
|
|
16
|
-
'@progress/kendo-angular-treeview': '19.2.0
|
|
17
|
-
'@progress/kendo-angular-navigation': '19.2.0
|
|
16
|
+
'@progress/kendo-angular-treeview': '19.2.0',
|
|
17
|
+
'@progress/kendo-angular-navigation': '19.2.0',
|
|
18
18
|
// peer dep of the layout
|
|
19
|
-
'@progress/kendo-angular-progressbar': '19.2.0
|
|
19
|
+
'@progress/kendo-angular-progressbar': '19.2.0',
|
|
20
20
|
// peer dep of the icons
|
|
21
21
|
'@progress/kendo-svg-icons': '^4.0.0'
|
|
22
22
|
} });
|