@syncfusion/ej2-gantt 24.1.44 → 24.1.46

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.
Files changed (57) hide show
  1. package/CHANGELOG.md +21 -2
  2. package/dist/ej2-gantt.min.js +2 -2
  3. package/dist/ej2-gantt.umd.min.js +2 -2
  4. package/dist/ej2-gantt.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-gantt.es2015.js +128 -51
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +133 -55
  8. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  9. package/dist/global/ej2-gantt.min.js +2 -2
  10. package/dist/global/ej2-gantt.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +16 -16
  13. package/src/gantt/actions/dialog-edit.js +16 -1
  14. package/src/gantt/actions/edit.js +21 -7
  15. package/src/gantt/actions/pdf-export.d.ts +2 -1
  16. package/src/gantt/actions/pdf-export.js +3 -3
  17. package/src/gantt/actions/taskbar-edit.js +4 -4
  18. package/src/gantt/base/task-processor.js +41 -28
  19. package/src/gantt/base/tree-grid.d.ts +1 -0
  20. package/src/gantt/base/tree-grid.js +3 -0
  21. package/src/gantt/export/export-helper.js +3 -2
  22. package/src/gantt/export/pdf-taskbar.js +42 -10
  23. package/styles/bootstrap-dark.css +1 -1
  24. package/styles/bootstrap.css +1 -1
  25. package/styles/bootstrap4.css +1 -1
  26. package/styles/bootstrap5-dark.css +1 -1
  27. package/styles/bootstrap5.css +1 -1
  28. package/styles/fabric-dark.css +1 -1
  29. package/styles/fabric.css +1 -1
  30. package/styles/fluent-dark.css +1 -1
  31. package/styles/fluent.css +1 -1
  32. package/styles/gantt/_layout.scss +1 -1
  33. package/styles/gantt/bootstrap-dark.css +1 -1
  34. package/styles/gantt/bootstrap.css +1 -1
  35. package/styles/gantt/bootstrap4.css +1 -1
  36. package/styles/gantt/bootstrap5-dark.css +1 -1
  37. package/styles/gantt/bootstrap5.css +1 -1
  38. package/styles/gantt/fabric-dark.css +1 -1
  39. package/styles/gantt/fabric.css +1 -1
  40. package/styles/gantt/fluent-dark.css +1 -1
  41. package/styles/gantt/fluent.css +1 -1
  42. package/styles/gantt/highcontrast-light.css +1 -1
  43. package/styles/gantt/highcontrast.css +1 -1
  44. package/styles/gantt/material-dark.css +1 -1
  45. package/styles/gantt/material.css +1 -1
  46. package/styles/gantt/material3-dark.css +1 -1
  47. package/styles/gantt/material3.css +1 -1
  48. package/styles/gantt/tailwind-dark.css +1 -1
  49. package/styles/gantt/tailwind.css +1 -1
  50. package/styles/highcontrast-light.css +1 -1
  51. package/styles/highcontrast.css +1 -1
  52. package/styles/material-dark.css +1 -1
  53. package/styles/material.css +1 -1
  54. package/styles/material3-dark.css +1 -1
  55. package/styles/material3.css +1 -1
  56. package/styles/tailwind-dark.css +1 -1
  57. package/styles/tailwind.css +1 -1
package/CHANGELOG.md CHANGED
@@ -6,14 +6,33 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
- `#I531670` - When adding record by method before saving, if the task ID is changed after taskbar hover exception thrown issue has been fixed.
9
+ - `#I533229` - Server call is triggered twice issue has been fixed.
10
+ - `#I531670` - When adding a record by method before saving, if the task ID is changed after taskbar hover exception thrown issue has been fixed.
11
+ - `#I538917` - Text is not rendered properly in header while using page size issue has been fixed.
12
+ - `#I185970` - Dynamic template updating in columns does not render issue has been fixed.
10
13
 
11
- ## 24.1.43 (2023-12-27)
14
+ ## 24.1.45 (2024-01-09)
15
+
16
+ ### GanttChart
17
+
18
+ #### Bug Fixes
19
+
20
+ - `#I530808` - Progress width not rendered properly in split tasks issue has been fixed.
21
+ - `#F185683` - Resources are not updating properly in `actionBegin`event issue has been fixed.
22
+ - `#I532918` - Baseline width not rendered properly in PDF export issue has been fixed.
23
+ - `#F532918` - Issue with remote data while performing CRUD operation in various Gantt chart versions has been fixed.
24
+ - `#I521365` - Dates in tooltip not rendered correctly issue has been fixed.
25
+
26
+ ## 24.1.44 (2024-01-03)
12
27
 
13
28
  ### GanttChart
14
29
 
15
30
  #### Bug Fixes
16
31
 
32
+ `#I531670` - When adding record by method before saving, if the task ID is changed after taskbar hover exception thrown issue has been fixed.
33
+
34
+ ## 24.1.43 (2023-12-27)
35
+
17
36
  - `#I527509` - Action begin event arguments not working properly issue has been fixed.
18
37
  - `#I517104` - Gantt component hangs whole page if timezone changed to UK(London) issue has been fixed.
19
38