@syncfusion/ej2-angular-gantt 29.2.7 → 29.2.8
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/CHANGELOG.md +14 -1
- package/package.json +28 -59
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,11 +6,24 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug fixes
|
|
8
8
|
|
|
9
|
+
- `#I729423` - Revert to Previous Dates if End Date is Set to the Same as Start Date on Cell Edit Save and vice versa issue has been resolved.
|
|
10
|
+
- `#I726732` - Resolved an issue where filtering was not maintained after performing a sorting action.
|
|
11
|
+
- `#I728854` - The issue where the taskbar template was rendered outside the Gantt Chart container after performing a row drag-and-drop has been resolved.
|
|
12
|
+
- `#I729516` - The issue where dependency lines were rendering incorrectly when connecting tasks using `SSType` has been resolved.
|
|
13
|
+
|
|
14
|
+
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
|
|
15
|
+
|
|
16
|
+
## 29.2.7 (2025-05-21)
|
|
17
|
+
|
|
18
|
+
### GanttChart
|
|
19
|
+
|
|
20
|
+
#### Bug fixes
|
|
21
|
+
|
|
9
22
|
- `#I723392` - Fixed an issue where the target argument in the `taskbarEdited` event returned null when resizing a taskbar.
|
|
10
23
|
- `#I723681` - Resolved an issue where the end date of the last segment in a split taskbar was calculated incorrectly.
|
|
11
24
|
- `#I725138` - Fixed a misalignment issue in the timeline virtualization that occurred when dragging and dropping a taskbar and using `updateDataSource` method.
|
|
12
25
|
|
|
13
|
-
- `
|
|
26
|
+
- `#I723392` - Fixed an issue where the target argument in the `taskbarEdited` event returned null when resizing a taskbar.
|
|
14
27
|
|
|
15
28
|
## 29.2.5 (2025-05-21)
|
|
16
29
|
|
package/package.json
CHANGED
|
@@ -1,60 +1,15 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"_requested": {
|
|
9
|
-
"type": "range",
|
|
10
|
-
"registry": true,
|
|
11
|
-
"raw": "@syncfusion/ej2-angular-gantt@*",
|
|
12
|
-
"name": "@syncfusion/ej2-angular-gantt",
|
|
13
|
-
"escapedName": "@syncfusion%2fej2-angular-gantt",
|
|
14
|
-
"scope": "@syncfusion",
|
|
15
|
-
"rawSpec": "*",
|
|
16
|
-
"saveSpec": null,
|
|
17
|
-
"fetchSpec": "*"
|
|
18
|
-
},
|
|
19
|
-
"_requiredBy": [
|
|
20
|
-
"/"
|
|
21
|
-
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-angular-hotfix/@syncfusion/ej2-angular-gantt/-/ej2-angular-gantt-29.2.5.tgz",
|
|
23
|
-
"_shasum": "2d495ef2eca3f7f3064574c49f5041abee7af08f",
|
|
24
|
-
"_spec": "@syncfusion/ej2-angular-gantt@*",
|
|
25
|
-
"_where": "/jenkins/workspace/elease-automation_release_29.1.1/ivypackages/included",
|
|
26
|
-
"author": {
|
|
27
|
-
"name": "Syncfusion Inc."
|
|
28
|
-
},
|
|
29
|
-
"bugs": {
|
|
30
|
-
"url": "https://github.com/syncfusion/ej2-angular-ui-components/issues"
|
|
31
|
-
},
|
|
32
|
-
"bundleDependencies": false,
|
|
2
|
+
"name": "@syncfusion/ej2-angular-gantt",
|
|
3
|
+
"version": "29.2.8",
|
|
4
|
+
"description": "Essential JS 2 Gantt Component for Angular",
|
|
5
|
+
"author": "Syncfusion Inc.",
|
|
6
|
+
"license": "SEE LICENSE IN license",
|
|
7
|
+
"schematics": "./schematics/collection.json",
|
|
33
8
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~29.2.4",
|
|
35
9
|
"@syncfusion/ej2-base": "~29.2.4",
|
|
36
|
-
"@syncfusion/ej2-
|
|
37
|
-
|
|
38
|
-
"deprecated": false,
|
|
39
|
-
"description": "Essential JS 2 Gantt Component for Angular",
|
|
40
|
-
"es2020": "fesm2020/syncfusion-ej2-angular-gantt.mjs",
|
|
41
|
-
"esm2020": "esm2020/syncfusion-ej2-angular-gantt.mjs",
|
|
42
|
-
"exports": {
|
|
43
|
-
"./package.json": {
|
|
44
|
-
"default": "./package.json"
|
|
45
|
-
},
|
|
46
|
-
".": {
|
|
47
|
-
"types": "./syncfusion-ej2-angular-gantt.d.ts",
|
|
48
|
-
"esm2020": "./esm2020/syncfusion-ej2-angular-gantt.mjs",
|
|
49
|
-
"es2020": "./fesm2020/syncfusion-ej2-angular-gantt.mjs",
|
|
50
|
-
"es2015": "./fesm2015/syncfusion-ej2-angular-gantt.mjs",
|
|
51
|
-
"node": "./fesm2015/syncfusion-ej2-angular-gantt.mjs",
|
|
52
|
-
"default": "./fesm2020/syncfusion-ej2-angular-gantt.mjs"
|
|
53
|
-
}
|
|
10
|
+
"@syncfusion/ej2-angular-base": "~29.2.4",
|
|
11
|
+
"@syncfusion/ej2-gantt": "29.2.8"
|
|
54
12
|
},
|
|
55
|
-
"fesm2015": "fesm2015/syncfusion-ej2-angular-gantt.mjs",
|
|
56
|
-
"fesm2020": "fesm2020/syncfusion-ej2-angular-gantt.mjs",
|
|
57
|
-
"homepage": "https://www.syncfusion.com/angular-components",
|
|
58
13
|
"keywords": [
|
|
59
14
|
"angular",
|
|
60
15
|
"angular-gantt",
|
|
@@ -75,15 +30,29 @@
|
|
|
75
30
|
"gantt-chart-component",
|
|
76
31
|
"gantt-chart-control"
|
|
77
32
|
],
|
|
78
|
-
"license": "SEE LICENSE IN license",
|
|
79
|
-
"module": "fesm2015/syncfusion-ej2-angular-gantt.mjs",
|
|
80
|
-
"name": "@syncfusion/ej2-angular-gantt",
|
|
81
33
|
"repository": {
|
|
82
34
|
"type": "git",
|
|
83
|
-
"url": "
|
|
35
|
+
"url": "https://github.com/syncfusion/ej2-angular-ui-components.git"
|
|
84
36
|
},
|
|
85
|
-
"schematics": "./schematics/collection.json",
|
|
86
37
|
"sideEffects": false,
|
|
38
|
+
"module": "fesm2015/syncfusion-ej2-angular-gantt.mjs",
|
|
39
|
+
"es2020": "fesm2020/syncfusion-ej2-angular-gantt.mjs",
|
|
40
|
+
"esm2020": "esm2020/syncfusion-ej2-angular-gantt.mjs",
|
|
41
|
+
"fesm2020": "fesm2020/syncfusion-ej2-angular-gantt.mjs",
|
|
42
|
+
"fesm2015": "fesm2015/syncfusion-ej2-angular-gantt.mjs",
|
|
87
43
|
"typings": "syncfusion-ej2-angular-gantt.d.ts",
|
|
88
|
-
"
|
|
44
|
+
"exports": {
|
|
45
|
+
"./package.json": {
|
|
46
|
+
"default": "./package.json"
|
|
47
|
+
},
|
|
48
|
+
".": {
|
|
49
|
+
"types": "./syncfusion-ej2-angular-gantt.d.ts",
|
|
50
|
+
"esm2020": "./esm2020/syncfusion-ej2-angular-gantt.mjs",
|
|
51
|
+
"es2020": "./fesm2020/syncfusion-ej2-angular-gantt.mjs",
|
|
52
|
+
"es2015": "./fesm2015/syncfusion-ej2-angular-gantt.mjs",
|
|
53
|
+
"node": "./fesm2015/syncfusion-ej2-angular-gantt.mjs",
|
|
54
|
+
"default": "./fesm2020/syncfusion-ej2-angular-gantt.mjs"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"homepage": "https://www.syncfusion.com/angular-components"
|
|
89
58
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-gantt';
|
|
4
|
-
exports.pkgVer = '^29.2.
|
|
4
|
+
exports.pkgVer = '^29.2.8';
|
|
5
5
|
exports.moduleName = 'GanttModule';
|
|
6
|
-
exports.themeVer = '~29.2.
|
|
6
|
+
exports.themeVer = '~29.2.8';
|