@syncfusion/ej2-gantt 19.3.46 → 19.3.55

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 (59) hide show
  1. package/CHANGELOG.md +41 -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 +53 -12
  5. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  6. package/dist/es6/ej2-gantt.es5.js +103 -53
  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/context-menu.js +5 -0
  13. package/src/gantt/actions/dialog-edit.js +9 -7
  14. package/src/gantt/actions/edit.js +3 -2
  15. package/src/gantt/actions/rowdragdrop.js +74 -41
  16. package/src/gantt/actions/taskbar-edit.js +3 -1
  17. package/src/gantt/base/date-processor.js +4 -1
  18. package/src/gantt/base/gantt.js +3 -0
  19. package/src/gantt/base/task-processor.js +1 -0
  20. package/src/gantt/base/utils.js +1 -1
  21. package/styles/bootstrap-dark.css +96 -100
  22. package/styles/bootstrap.css +96 -100
  23. package/styles/bootstrap4.css +96 -100
  24. package/styles/bootstrap5-dark.css +97 -100
  25. package/styles/bootstrap5.css +97 -100
  26. package/styles/fabric-dark.css +96 -100
  27. package/styles/fabric.css +96 -100
  28. package/styles/gantt/_bootstrap-dark-definition.scss +0 -1
  29. package/styles/gantt/_bootstrap-definition.scss +0 -1
  30. package/styles/gantt/_bootstrap4-definition.scss +0 -1
  31. package/styles/gantt/_bootstrap5-definition.scss +0 -1
  32. package/styles/gantt/_fabric-dark-definition.scss +0 -1
  33. package/styles/gantt/_fabric-definition.scss +0 -1
  34. package/styles/gantt/_highcontrast-definition.scss +0 -1
  35. package/styles/gantt/_highcontrast-light-definition.scss +0 -1
  36. package/styles/gantt/_layout.scss +95 -94
  37. package/styles/gantt/_material-dark-definition.scss +0 -1
  38. package/styles/gantt/_material-definition.scss +0 -1
  39. package/styles/gantt/_tailwind-definition.scss +0 -1
  40. package/styles/gantt/_theme.scss +76 -81
  41. package/styles/gantt/bootstrap-dark.css +96 -100
  42. package/styles/gantt/bootstrap.css +96 -100
  43. package/styles/gantt/bootstrap4.css +96 -100
  44. package/styles/gantt/bootstrap5-dark.css +97 -100
  45. package/styles/gantt/bootstrap5.css +97 -100
  46. package/styles/gantt/fabric-dark.css +96 -100
  47. package/styles/gantt/fabric.css +96 -100
  48. package/styles/gantt/highcontrast-light.css +96 -100
  49. package/styles/gantt/highcontrast.css +96 -100
  50. package/styles/gantt/material-dark.css +96 -100
  51. package/styles/gantt/material.css +96 -100
  52. package/styles/gantt/tailwind-dark.css +96 -100
  53. package/styles/gantt/tailwind.css +96 -100
  54. package/styles/highcontrast-light.css +96 -100
  55. package/styles/highcontrast.css +96 -100
  56. package/styles/material-dark.css +96 -100
  57. package/styles/material.css +96 -100
  58. package/styles/tailwind-dark.css +96 -100
  59. package/styles/tailwind.css +96 -100
package/CHANGELOG.md CHANGED
@@ -6,6 +6,47 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#347753` - Issue in `defaultedit` edit type has been fixed.
10
+
11
+ ## 19.3.53 (2021-11-12)
12
+
13
+ ### Gantt
14
+
15
+ #### Bug Fixes
16
+
17
+ - `#342557` - In fixed work type duration update issue has been fixed.
18
+
19
+ ## 19.3.48 (2021-11-02)
20
+
21
+ ### Gantt
22
+
23
+ #### Bug Fixes
24
+
25
+ - `#343417` - Issue in updating row index after row drag and drop has been fixed.
26
+ - `#346516` - Issue in context menu after cell editing has been fixed.
27
+ - `#346736` - Issue in rendering connector points when progress field is not mapped has been fixed.
28
+
29
+ ## 19.3.47 (2021-10-26)
30
+
31
+ ### Gantt
32
+
33
+ #### Bug Fixes
34
+
35
+ - `#343991` - Additional parameters are not passed to `BatchUpdate` method when deleting the row issue has been fixed.
36
+ - `#344100` - Issue in cancelling the drawing of predecessor line in `actionBegin` event has been fixed.
37
+ - `#345841` - Issue on taskbar editing when timezone property set as `UTC` has been fixed.
38
+ - `#341691` - Bring back browser default context menu in dialog editing has been fixed.
39
+
40
+ #### Breaking Changes
41
+
42
+ - Add and Edit dialog is now rendered as direct child to *body* element.
43
+
44
+ ## 19.3.46 (2021-10-19)
45
+
46
+ ### Gantt
47
+
48
+ #### Bug Fixes
49
+
9
50
  - `#343417` - Issue in CRUD operations when using datamanager data has been fixed.
10
51
  - `#340739` - Vertical grid line issue while changing height dynamically has been fixed.
11
52
  - `#F168970` - Issue in updating Segments data issue has been fixed.