@syncfusion/ej2-gantt 19.3.57 → 19.4.42

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 (48) hide show
  1. package/CHANGELOG.md +41 -1
  2. package/README.md +1 -1
  3. package/dist/ej2-gantt.umd.min.js +2 -2
  4. package/dist/ej2-gantt.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-gantt.es2015.js +149 -74
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +146 -71
  8. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  9. package/dist/global/ej2-gantt.min.js +2 -2
  10. package/dist/global/ej2-gantt.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +18 -18
  13. package/src/gantt/actions/context-menu.js +35 -14
  14. package/src/gantt/actions/dialog-edit.js +6 -3
  15. package/src/gantt/actions/edit.js +5 -1
  16. package/src/gantt/actions/keyboard.js +6 -2
  17. package/src/gantt/actions/rowdragdrop.js +2 -0
  18. package/src/gantt/actions/taskbar-edit.js +5 -1
  19. package/src/gantt/base/date-processor.js +8 -1
  20. package/src/gantt/base/gantt-chart.js +0 -2
  21. package/src/gantt/base/gantt.d.ts +15 -13
  22. package/src/gantt/base/gantt.js +32 -28
  23. package/src/gantt/base/task-processor.js +26 -4
  24. package/src/gantt/base/tree-grid.js +3 -0
  25. package/src/gantt/renderer/chart-rows.js +2 -0
  26. package/src/gantt/renderer/timeline.d.ts +1 -0
  27. package/src/gantt/renderer/timeline.js +16 -15
  28. package/styles/bootstrap5-dark.css +6 -5
  29. package/styles/bootstrap5.css +6 -5
  30. package/styles/fabric-dark.css +1 -1
  31. package/styles/gantt/_bootstrap4-definition.scss +1 -0
  32. package/styles/gantt/_bootstrap5-definition.scss +1 -1
  33. package/styles/gantt/_fabric-dark-definition.scss +2 -1
  34. package/styles/gantt/_fluent-definition.scss +163 -0
  35. package/styles/gantt/_layout.scss +7 -7
  36. package/styles/gantt/_material-dark-definition.scss +2 -1
  37. package/styles/gantt/_theme.scss +2 -1
  38. package/styles/gantt/bootstrap5-dark.css +6 -5
  39. package/styles/gantt/bootstrap5.css +6 -5
  40. package/styles/gantt/fabric-dark.css +1 -1
  41. package/styles/gantt/icons/_fluent.scss +112 -0
  42. package/styles/gantt/icons/_tailwind-dark.scss +112 -112
  43. package/styles/gantt/material-dark.css +1 -1
  44. package/styles/gantt/tailwind-dark.css +1 -1
  45. package/styles/gantt/tailwind.css +1 -1
  46. package/styles/material-dark.css +1 -1
  47. package/styles/tailwind-dark.css +1 -1
  48. package/styles/tailwind.css +1 -1
package/CHANGELOG.md CHANGED
@@ -6,7 +6,47 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
- - `#348627` - Gantt Chart timeline display issue with dates on which DST change happens has been fixed.
9
+ - `#354721` - Issue in rendering milestone based on the milestone mapping in datasource has been fixed.
10
+ - `#358683` - Toolbar gets hide after `expandAll` and `collapseAll` is performed issue has been fixed.
11
+
12
+ ## 19.4.41 (2022-01-04)
13
+
14
+ ### Gantt
15
+
16
+ #### Bug Fixes
17
+
18
+ - `#359120` - Issue with Gantt Context menu operation after release the connector line outside the Gantt.
19
+ - `#359104, #359163` - Issue while Gantt loaded with taskbar Template and `queryTaskbarInfo` for segmented Tasks has been fixed.
20
+ - `#F170631` - Issue in search settings for all hierarchy mode in Gantt has been fixed.
21
+
22
+ ### Gantt
23
+
24
+ #### Bug Fixes
25
+
26
+ - `#355824, #360027` - Gantt Chart display issue with misalign in dates on which DST change happens has been fixed.
27
+ - `#F171256` - Issue in Localization for the word New Task has been fixed.
28
+
29
+ ## 19.4.40 (2021-12-28)
30
+
31
+ ### Gantt
32
+
33
+ #### Bug Fixes
34
+
35
+ - `#357340` - Issue with Gantt `selectedRowIndex` property when deleted the selected item in last row.
36
+
37
+ ## 19.4.38 (2021-12-17)
38
+
39
+ ### Gantt
40
+
41
+ #### Bug Fixes
42
+
43
+ - `#346141` - Issue with Gantt manipulates and change task data date values from original data has been fixed.
44
+ - `#F170644` - Issue in manual start date while mapping multiple parent levels has been fixed.
45
+ - `#F170274` - DateTimePicker is not rendering in dialog segment tab start date and end date columns has been fixed.
46
+
47
+ #### Breaking Changes
48
+
49
+ - Original user datasource is maintained in `taskData` and `dataSource` properties in Gantt during load time. It will update only after CRUD operation.
10
50
 
11
51
  ## 19.3.56 (2021-12-02)
12
52
 
package/README.md CHANGED
@@ -72,4 +72,4 @@ Check the license detail [here](https://github.com/syncfusion/ej2-javascript-ui-
72
72
  Check the changelog [here](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/controls/gantt/CHANGELOG.md?utm_source=npm&utm_campaign=gantt)
73
73
 
74
74
 
75
- © Copyright 2019 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
75
+ © Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.