@syncfusion/ej2-gantt 19.3.53 → 19.4.38

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 (54) hide show
  1. package/CHANGELOG.md +31 -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 +127 -51
  5. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  6. package/dist/es6/ej2-gantt.es5.js +124 -48
  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 +36 -15
  13. package/src/gantt/actions/dialog-edit.js +7 -2
  14. package/src/gantt/actions/edit.js +4 -0
  15. package/src/gantt/actions/rowdragdrop.js +2 -0
  16. package/src/gantt/actions/taskbar-edit.d.ts +0 -15
  17. package/src/gantt/actions/taskbar-edit.js +6 -24
  18. package/src/gantt/base/gantt.d.ts +17 -0
  19. package/src/gantt/base/gantt.js +32 -3
  20. package/src/gantt/base/task-processor.js +20 -3
  21. package/src/gantt/renderer/timeline.js +17 -1
  22. package/styles/bootstrap-dark.css +1 -1
  23. package/styles/bootstrap.css +1 -1
  24. package/styles/bootstrap4.css +1 -1
  25. package/styles/bootstrap5-dark.css +7 -6
  26. package/styles/bootstrap5.css +7 -6
  27. package/styles/fabric-dark.css +1 -1
  28. package/styles/fabric.css +1 -1
  29. package/styles/gantt/_bootstrap4-definition.scss +1 -0
  30. package/styles/gantt/_bootstrap5-definition.scss +1 -1
  31. package/styles/gantt/_fluent-definition.scss +163 -0
  32. package/styles/gantt/_layout.scss +2 -7
  33. package/styles/gantt/_theme.scss +2 -1
  34. package/styles/gantt/bootstrap-dark.css +1 -1
  35. package/styles/gantt/bootstrap.css +1 -1
  36. package/styles/gantt/bootstrap4.css +1 -1
  37. package/styles/gantt/bootstrap5-dark.css +7 -6
  38. package/styles/gantt/bootstrap5.css +7 -6
  39. package/styles/gantt/fabric-dark.css +1 -1
  40. package/styles/gantt/fabric.css +1 -1
  41. package/styles/gantt/highcontrast-light.css +1 -1
  42. package/styles/gantt/highcontrast.css +1 -1
  43. package/styles/gantt/icons/_fluent.scss +112 -0
  44. package/styles/gantt/icons/_tailwind-dark.scss +112 -112
  45. package/styles/gantt/material-dark.css +1 -1
  46. package/styles/gantt/material.css +1 -1
  47. package/styles/gantt/tailwind-dark.css +2 -2
  48. package/styles/gantt/tailwind.css +2 -2
  49. package/styles/highcontrast-light.css +1 -1
  50. package/styles/highcontrast.css +1 -1
  51. package/styles/material-dark.css +1 -1
  52. package/styles/material.css +1 -1
  53. package/styles/tailwind-dark.css +2 -2
  54. package/styles/tailwind.css +2 -2
package/CHANGELOG.md CHANGED
@@ -6,6 +6,37 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#346141` - Issue with Gantt manipulates and change task data date values from original data has been fixed.
10
+ - `#F170644` - Issue in manual start date while mapping multiple parent levels has been fixed.
11
+ - `#F170274` - DateTimePicker is not rendering in dialog segment tab start date and end date columns has been fixed.
12
+
13
+ #### Breaking Changes
14
+
15
+ - Original user datasource is maintained in `taskData` and `dataSource` properties in Gantt during load time. It will update only after CRUD operation.
16
+
17
+ ## 19.3.56 (2021-12-02)
18
+
19
+ ### Gantt
20
+
21
+ #### Bug Fixes
22
+
23
+ - `#347613` - Connector line issue after updating the datasource dynamically has been fixed.
24
+ - `#346909` - Issue in disable custom context menu has been fixed.
25
+
26
+ ## 19.3.55 (2021-11-23)
27
+
28
+ ### Gantt
29
+
30
+ #### Bug Fixes
31
+
32
+ - `#347753` - Issue in `defaultedit` edit type has been fixed.
33
+
34
+ ## 19.3.53 (2021-11-12)
35
+
36
+ ### Gantt
37
+
38
+ #### Bug Fixes
39
+
9
40
  - `#342557` - In fixed work type duration update issue has been fixed.
10
41
 
11
42
  ## 19.3.48 (2021-11-02)