@syncfusion/ej2-gantt 19.3.45 → 19.3.53

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