@syncfusion/ej2-gantt 19.4.54 → 20.1.47

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 (81) hide show
  1. package/CHANGELOG.md +33 -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 +257 -140
  5. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  6. package/dist/es6/ej2-gantt.es5.js +279 -148
  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/cell-edit.js +2 -1
  13. package/src/gantt/actions/dialog-edit.js +2 -1
  14. package/src/gantt/actions/edit.js +36 -9
  15. package/src/gantt/actions/rowdragdrop.js +37 -15
  16. package/src/gantt/actions/selection.js +3 -0
  17. package/src/gantt/base/date-processor.js +0 -1
  18. package/src/gantt/base/gantt-chart.js +36 -5
  19. package/src/gantt/base/gantt.js +15 -56
  20. package/src/gantt/base/splitter.js +1 -0
  21. package/src/gantt/base/tree-grid.js +3 -1
  22. package/src/gantt/renderer/chart-rows.js +59 -32
  23. package/src/gantt/renderer/connector-line.js +22 -18
  24. package/src/gantt/renderer/event-marker.js +1 -0
  25. package/src/gantt/renderer/nonworking-day.js +13 -6
  26. package/src/gantt/renderer/timeline.d.ts +1 -0
  27. package/src/gantt/renderer/timeline.js +40 -1
  28. package/src/gantt/renderer/tooltip.js +10 -3
  29. package/styles/bootstrap-dark.css +37 -10
  30. package/styles/bootstrap.css +37 -10
  31. package/styles/bootstrap4.css +37 -10
  32. package/styles/bootstrap5-dark.css +53 -19
  33. package/styles/bootstrap5.css +53 -19
  34. package/styles/fabric-dark.css +34 -7
  35. package/styles/fabric.css +37 -10
  36. package/styles/fluent-dark.css +1942 -0
  37. package/styles/fluent-dark.scss +1 -0
  38. package/styles/fluent.css +1942 -0
  39. package/styles/fluent.scss +1 -0
  40. package/styles/gantt/_bootstrap-dark-definition.scss +10 -2
  41. package/styles/gantt/_bootstrap-definition.scss +11 -3
  42. package/styles/gantt/_bootstrap4-definition.scss +10 -2
  43. package/styles/gantt/_bootstrap5-definition.scss +17 -9
  44. package/styles/gantt/_fabric-dark-definition.scss +8 -0
  45. package/styles/gantt/_fabric-definition.scss +10 -2
  46. package/styles/gantt/_fluent-dark-definition.scss +1 -0
  47. package/styles/gantt/_fluent-definition.scss +21 -13
  48. package/styles/gantt/_highcontrast-definition.scss +9 -1
  49. package/styles/gantt/_highcontrast-light-definition.scss +9 -1
  50. package/styles/gantt/_layout.scss +53 -2
  51. package/styles/gantt/_material-dark-definition.scss +9 -1
  52. package/styles/gantt/_material-definition.scss +10 -2
  53. package/styles/gantt/_tailwind-definition.scss +13 -5
  54. package/styles/gantt/_theme.scss +2 -5
  55. package/styles/gantt/bootstrap-dark.css +37 -10
  56. package/styles/gantt/bootstrap.css +37 -10
  57. package/styles/gantt/bootstrap4.css +37 -10
  58. package/styles/gantt/bootstrap5-dark.css +53 -19
  59. package/styles/gantt/bootstrap5.css +53 -19
  60. package/styles/gantt/fabric-dark.css +34 -7
  61. package/styles/gantt/fabric.css +37 -10
  62. package/styles/gantt/fluent-dark.css +1942 -0
  63. package/styles/gantt/fluent-dark.scss +22 -0
  64. package/styles/gantt/fluent.css +1942 -0
  65. package/styles/gantt/fluent.scss +22 -0
  66. package/styles/gantt/highcontrast-light.css +34 -7
  67. package/styles/gantt/highcontrast.css +34 -7
  68. package/styles/gantt/icons/_fluent-dark.scss +1 -0
  69. package/styles/gantt/icons/_fluent.scss +1 -1
  70. package/styles/gantt/icons/_tailwind-dark.scss +28 -29
  71. package/styles/gantt/icons/_tailwind.scss +26 -27
  72. package/styles/gantt/material-dark.css +37 -10
  73. package/styles/gantt/material.css +37 -10
  74. package/styles/gantt/tailwind-dark.css +70 -99
  75. package/styles/gantt/tailwind.css +70 -99
  76. package/styles/highcontrast-light.css +34 -7
  77. package/styles/highcontrast.css +34 -7
  78. package/styles/material-dark.css +37 -10
  79. package/styles/material.css +37 -10
  80. package/styles/tailwind-dark.css +70 -99
  81. package/styles/tailwind.css +70 -99
package/CHANGELOG.md CHANGED
@@ -6,6 +6,39 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#300959` - Provided support to fill empty space with extended timeline in zoom out action.
10
+ - `#371372` - Unable to change end Date of manual parent task issue has been fixed.
11
+ - `#363003` - Child mapping order not maintained in data source property issue has been fixed.
12
+
13
+ ## 19.4.56 (2022-03-15)
14
+
15
+ ### Gantt
16
+
17
+ #### Bug Fixes
18
+
19
+ - `#369264` - Event marker labels not visible when there is single record has been fixed
20
+ - `#362146` - Row customization using `rowDataBound` event in `enableImmutableMode` issue has been fixed
21
+ - `#363336` - Child records not updated properly in specific index issue has been fixed.
22
+ - `#368609` - Indent and outdent toolbar item not showing when checkbox selection is enabled has been fixed.
23
+ - `#363752` - Issue in assigning custom zooming levels in `load` event has been fixed.
24
+ - `#368549` - Gantt chart indentation issue while adding a child task has been fixed.
25
+ - `#359455` - Issue in giving height as view port for parent container has been fixed.
26
+
27
+ ## 19.4.55 (2022-03-08)
28
+
29
+ ### Gantt
30
+
31
+ #### Bug Fixes
32
+
33
+ - `#366304` - Gantt line mismatches when we set system display as 100% and browser zoom settings as 90% has been fixed.
34
+ - `#365994` - Right and left label template not working in `vue` has been fixed.
35
+
36
+ ## 19.4.54 (2022-03-01)
37
+
38
+ ### Gantt
39
+
40
+ #### Bug Fixes
41
+
9
42
  - `#366296` - When moving from once cell to another cell using tab key navigation issue has been fixed.
10
43
  - `#363358`,`F172781` - Drag and drop not working properly after row gets collapsed issue has been fixed.
11
44