@syncfusion/ej2-gantt 21.1.37 → 21.1.41

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 (66) hide show
  1. package/CHANGELOG.md +27 -0
  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 +84 -39
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +84 -39
  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/column-menu.d.ts +1 -0
  14. package/src/gantt/actions/column-menu.js +1 -0
  15. package/src/gantt/actions/context-menu.js +1 -1
  16. package/src/gantt/actions/critical-path.d.ts +1 -0
  17. package/src/gantt/actions/critical-path.js +1 -0
  18. package/src/gantt/actions/dependency.js +1 -1
  19. package/src/gantt/actions/dialog-edit.js +1 -0
  20. package/src/gantt/actions/edit.js +7 -1
  21. package/src/gantt/actions/keyboard.js +1 -0
  22. package/src/gantt/base/date-processor.js +2 -2
  23. package/src/gantt/base/gantt-model.d.ts +6 -0
  24. package/src/gantt/base/gantt.d.ts +2 -0
  25. package/src/gantt/base/gantt.js +17 -3
  26. package/src/gantt/base/task-processor.d.ts +1 -1
  27. package/src/gantt/base/task-processor.js +39 -21
  28. package/src/gantt/export/pdf-base/pdf-borders.d.ts +2 -0
  29. package/src/gantt/export/pdf-base/pdf-borders.js +2 -0
  30. package/src/gantt/export/pdf-base/pdf-grid-table.d.ts +1 -3
  31. package/src/gantt/export/pdf-base/pdf-grid-table.js +1 -3
  32. package/src/gantt/models/column.d.ts +4 -4
  33. package/src/gantt/renderer/chart-rows.js +3 -5
  34. package/src/gantt/renderer/nonworking-day.js +3 -1
  35. package/src/gantt/renderer/timeline.js +4 -1
  36. package/styles/bootstrap-dark.css +1 -0
  37. package/styles/bootstrap.css +1 -0
  38. package/styles/bootstrap4.css +1 -0
  39. package/styles/bootstrap5-dark.css +1 -0
  40. package/styles/bootstrap5.css +1 -0
  41. package/styles/fabric-dark.css +1 -0
  42. package/styles/fabric.css +1 -0
  43. package/styles/fluent-dark.css +0 -3
  44. package/styles/fluent.css +0 -3
  45. package/styles/gantt/_layout.scss +0 -8
  46. package/styles/gantt/bootstrap-dark.css +1 -0
  47. package/styles/gantt/bootstrap.css +1 -0
  48. package/styles/gantt/bootstrap4.css +1 -0
  49. package/styles/gantt/bootstrap5-dark.css +1 -0
  50. package/styles/gantt/bootstrap5.css +1 -0
  51. package/styles/gantt/fabric-dark.css +1 -0
  52. package/styles/gantt/fabric.css +1 -0
  53. package/styles/gantt/fluent-dark.css +0 -3
  54. package/styles/gantt/fluent.css +0 -3
  55. package/styles/gantt/highcontrast-light.css +1 -0
  56. package/styles/gantt/highcontrast.css +1 -0
  57. package/styles/gantt/material-dark.css +1 -0
  58. package/styles/gantt/material.css +1 -0
  59. package/styles/gantt/tailwind-dark.css +1 -0
  60. package/styles/gantt/tailwind.css +1 -0
  61. package/styles/highcontrast-light.css +1 -0
  62. package/styles/highcontrast.css +1 -0
  63. package/styles/material-dark.css +1 -0
  64. package/styles/material.css +1 -0
  65. package/styles/tailwind-dark.css +1 -0
  66. package/styles/tailwind.css +1 -0
package/CHANGELOG.md CHANGED
@@ -6,6 +6,33 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#I453787` - Duration not calculated properly in hour duration unit issue has been fixed.
10
+ - `#I453745` - Modified records in `actionBegin` event has invalid records issue has been fixed.
11
+ - `#I449552` - Child record rendered in incorrect dates during initial load issue has been fixed.
12
+ -`#I452233`- Parent Taskbar template not working properly in latest version.
13
+ -`#I449864`- Holiday label is not visible when we don't set height.
14
+ -`#I449674`- Cannot split task when the taskbar is rendered to one day.
15
+ - `#I449757` - Taskbar width rendered incorrectly issue has been fixed.
16
+
17
+ ## 21.1.38 (2023-04-04)
18
+
19
+ ### Gantt Chart
20
+
21
+ #### Bug Fixes
22
+
23
+ - `#I451243` - Unable to set zooming levels through `zoomingLevels` property issue has been fixed.
24
+ - `#I447704` - Timeline tier is not changing dynamically issue has been fixed.
25
+ - `I447465` - Incorrect progress value on parent task when child tasks have fractional duration issue has been fixed.
26
+ -`I447475`- End key is not working properly issue has been fixed.
27
+ -`#I447772` - Application freezing while changing holidays/weekend issue has been fixed.
28
+
29
+ ## 21.1.37 (2023-03-29)
30
+
31
+ ### Gantt Chart
32
+
33
+ #### Bug Fixes
34
+
35
+ - `#I432146` - Script error occurs while changing data source and resource simultaneously issue has been fixed.
9
36
  -`I441276`- Outdent task is not in correct index of modified records in `actionComplete` event issue has been fixed.
10
37
  -`I435254`, `I444942`- Taskbar not rendered in Pdf exported file when `timelineUnitSize` is initialized issue has been fixed.
11
38