@syncfusion/ej2-gantt 19.3.56 → 19.4.41

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 (47) hide show
  1. package/CHANGELOG.md +39 -0
  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 +135 -58
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +132 -55
  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 +2 -2
  17. package/src/gantt/actions/rowdragdrop.js +2 -0
  18. package/src/gantt/actions/taskbar-edit.d.ts +0 -15
  19. package/src/gantt/actions/taskbar-edit.js +7 -24
  20. package/src/gantt/base/gantt.d.ts +17 -0
  21. package/src/gantt/base/gantt.js +32 -7
  22. package/src/gantt/base/task-processor.js +20 -3
  23. package/src/gantt/base/tree-grid.js +3 -0
  24. package/src/gantt/renderer/chart-rows.js +2 -0
  25. package/src/gantt/renderer/timeline.d.ts +1 -0
  26. package/src/gantt/renderer/timeline.js +18 -1
  27. package/styles/bootstrap5-dark.css +6 -5
  28. package/styles/bootstrap5.css +6 -5
  29. package/styles/fabric-dark.css +1 -1
  30. package/styles/gantt/_bootstrap4-definition.scss +1 -0
  31. package/styles/gantt/_bootstrap5-definition.scss +1 -1
  32. package/styles/gantt/_fabric-dark-definition.scss +2 -1
  33. package/styles/gantt/_fluent-definition.scss +163 -0
  34. package/styles/gantt/_layout.scss +7 -7
  35. package/styles/gantt/_material-dark-definition.scss +2 -1
  36. package/styles/gantt/_theme.scss +2 -1
  37. package/styles/gantt/bootstrap5-dark.css +6 -5
  38. package/styles/gantt/bootstrap5.css +6 -5
  39. package/styles/gantt/fabric-dark.css +1 -1
  40. package/styles/gantt/icons/_fluent.scss +112 -0
  41. package/styles/gantt/icons/_tailwind-dark.scss +112 -112
  42. package/styles/gantt/material-dark.css +1 -1
  43. package/styles/gantt/tailwind-dark.css +1 -1
  44. package/styles/gantt/tailwind.css +1 -1
  45. package/styles/material-dark.css +1 -1
  46. package/styles/tailwind-dark.css +1 -1
  47. package/styles/tailwind.css +1 -1
package/CHANGELOG.md CHANGED
@@ -6,6 +6,45 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#359120` - Issue with Gantt Context menu operation after release the connector line outside the Gantt.
10
+ - `#359104, #359163` - Issue while Gantt loaded with taskbar Template and `queryTaskbarInfo` for segmented Tasks has been fixed.
11
+ - `#F170631` - Issue in search settings for all hierarchy mode in Gantt has been fixed.
12
+
13
+ ### Gantt
14
+
15
+ #### Bug Fixes
16
+
17
+ - `#355824, #360027` - Gantt Chart display issue with misalign in dates on which DST change happens has been fixed.
18
+ - `#F171256` - Issue in Localization for the word New Task has been fixed.
19
+
20
+ ## 19.4.40 (2021-12-28)
21
+
22
+ ### Gantt
23
+
24
+ #### Bug Fixes
25
+
26
+ - `#357340` - Issue with Gantt `selectedRowIndex` property when deleted the selected item in last row.
27
+
28
+ ## 19.4.38 (2021-12-17)
29
+
30
+ ### Gantt
31
+
32
+ #### Bug Fixes
33
+
34
+ - `#346141` - Issue with Gantt manipulates and change task data date values from original data has been fixed.
35
+ - `#F170644` - Issue in manual start date while mapping multiple parent levels has been fixed.
36
+ - `#F170274` - DateTimePicker is not rendering in dialog segment tab start date and end date columns has been fixed.
37
+
38
+ #### Breaking Changes
39
+
40
+ - Original user datasource is maintained in `taskData` and `dataSource` properties in Gantt during load time. It will update only after CRUD operation.
41
+
42
+ ## 19.3.56 (2021-12-02)
43
+
44
+ ### Gantt
45
+
46
+ #### Bug Fixes
47
+
9
48
  - `#347613` - Connector line issue after updating the datasource dynamically has been fixed.
10
49
  - `#346909` - Issue in disable custom context menu has been fixed.
11
50
 
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.