@syncfusion/ej2-gantt 19.4.41 → 19.4.48

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 (63) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/dist/ej2-gantt.umd.min.js +2 -2
  3. package/dist/ej2-gantt.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-gantt.es2015.js +87 -20
  5. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  6. package/dist/es6/ej2-gantt.es5.js +87 -20
  7. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  8. package/dist/global/ej2-gantt.min.js +2 -2
  9. package/dist/global/ej2-gantt.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +18 -18
  12. package/src/gantt/actions/chart-scroll.js +1 -0
  13. package/src/gantt/actions/edit.d.ts +2 -1
  14. package/src/gantt/actions/edit.js +28 -1
  15. package/src/gantt/actions/filter.js +1 -1
  16. package/src/gantt/actions/keyboard.js +4 -0
  17. package/src/gantt/actions/rowdragdrop.js +1 -1
  18. package/src/gantt/actions/taskbar-edit.js +3 -1
  19. package/src/gantt/base/date-processor.js +8 -1
  20. package/src/gantt/base/gantt-chart.js +6 -2
  21. package/src/gantt/base/gantt.js +18 -5
  22. package/src/gantt/base/task-processor.js +15 -8
  23. package/src/gantt/renderer/edit-tooltip.js +1 -0
  24. package/src/gantt/renderer/tooltip.js +1 -0
  25. package/styles/bootstrap-dark.css +9 -1
  26. package/styles/bootstrap.css +9 -1
  27. package/styles/bootstrap4.css +9 -1
  28. package/styles/bootstrap5-dark.css +9 -1
  29. package/styles/bootstrap5.css +9 -1
  30. package/styles/fabric-dark.css +9 -1
  31. package/styles/fabric.css +9 -1
  32. package/styles/gantt/_bootstrap-dark-definition.scss +0 -1
  33. package/styles/gantt/_bootstrap-definition.scss +0 -1
  34. package/styles/gantt/_bootstrap4-definition.scss +0 -1
  35. package/styles/gantt/_bootstrap5-definition.scss +0 -1
  36. package/styles/gantt/_fabric-dark-definition.scss +0 -1
  37. package/styles/gantt/_fabric-definition.scss +0 -1
  38. package/styles/gantt/_fluent-definition.scss +0 -1
  39. package/styles/gantt/_highcontrast-definition.scss +0 -1
  40. package/styles/gantt/_highcontrast-light-definition.scss +0 -1
  41. package/styles/gantt/_layout.scss +8 -1
  42. package/styles/gantt/_material-dark-definition.scss +0 -1
  43. package/styles/gantt/_material-definition.scss +0 -1
  44. package/styles/gantt/_tailwind-definition.scss +0 -1
  45. package/styles/gantt/bootstrap-dark.css +9 -1
  46. package/styles/gantt/bootstrap.css +9 -1
  47. package/styles/gantt/bootstrap4.css +9 -1
  48. package/styles/gantt/bootstrap5-dark.css +9 -1
  49. package/styles/gantt/bootstrap5.css +9 -1
  50. package/styles/gantt/fabric-dark.css +9 -1
  51. package/styles/gantt/fabric.css +9 -1
  52. package/styles/gantt/highcontrast-light.css +9 -1
  53. package/styles/gantt/highcontrast.css +9 -1
  54. package/styles/gantt/material-dark.css +9 -1
  55. package/styles/gantt/material.css +9 -1
  56. package/styles/gantt/tailwind-dark.css +9 -1
  57. package/styles/gantt/tailwind.css +9 -1
  58. package/styles/highcontrast-light.css +9 -1
  59. package/styles/highcontrast.css +9 -1
  60. package/styles/material-dark.css +9 -1
  61. package/styles/material.css +9 -1
  62. package/styles/tailwind-dark.css +9 -1
  63. package/styles/tailwind.css +9 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,42 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## 19.4.47 (2022-01-25)
6
+
7
+ ### Gantt
8
+
9
+ #### Bug Fixes
10
+
11
+ - `#356978` - Issue in disable the initial move of taskbar drag has been fixed.
12
+ - `#357647` - Issue in enabling scroll top during load time has been fixed.
13
+ - `#360893` - Issue in data source not updating when dragging and dropping child record has been fixed.
14
+ - `#359455` - Issue in rendering Gantt when parent container height is set in percentage has been fixed.
15
+ - `#361492` - Dragged row does not disappear when the row dropped outside the Gantt issue has been fixed.
16
+ - `#360381` - Issue in clicking on date picker while filtering has been fixed.
17
+ - `#362566` - Child records do not indent properly when immutable mode is enabled issue has been fixed
18
+
19
+ ## 19.4.43 (2022-01-18)
20
+
21
+ ### Gantt
22
+
23
+ #### Bug Fixes
24
+
25
+ - `#359455` - Issue in rendering Gantt when parent container height is set in percentage has been fixed.
26
+ - `#360424` - Issue in performing drag and drop when resource is set to null has been fixed.
27
+ - `#360085` - Issue in adding new record after performing expand collapse action for multiple times has been fixed.
28
+ - `#360081` - Console error thrown when we assign resources to parent tasks has been fixed.
29
+
30
+ ## 19.4.42 (2022-01-11)
31
+
32
+ ### Gantt
33
+
34
+ #### Bug Fixes
35
+
36
+ - `#354721` - Issue in rendering milestone based on the milestone mapping in datasource has been fixed.
37
+ - `#358683` - Toolbar gets hide after `expandAll` and `collapseAll` is performed issue has been fixed.
38
+
39
+ ## 19.4.41 (2022-01-04)
40
+
5
41
  ### Gantt
6
42
 
7
43
  #### Bug Fixes