@syncfusion/ej2-gantt 20.1.48 → 20.1.52
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.
- package/CHANGELOG.md +30 -0
- package/dist/ej2-gantt.umd.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +119 -26
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +119 -26
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +2 -2
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +13 -13
- package/src/gantt/actions/dialog-edit.js +9 -0
- package/src/gantt/base/gantt.d.ts +2 -0
- package/src/gantt/base/gantt.js +4 -0
- package/src/gantt/base/tree-grid.js +1 -1
- package/src/gantt/export/export-helper.js +3 -0
- package/src/gantt/export/pdf-taskbar.d.ts +1 -0
- package/src/gantt/export/pdf-taskbar.js +36 -12
- package/src/gantt/renderer/chart-rows.js +50 -10
- package/src/gantt/renderer/nonworking-day.d.ts +1 -0
- package/src/gantt/renderer/nonworking-day.js +9 -0
- package/src/gantt/renderer/timeline.js +7 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,36 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#372661` - Data not properly updated in the Gantt Chart when switching between list view issue has been fixed.
|
|
10
|
+
|
|
11
|
+
## 20.1.51 (2022-04-26)
|
|
12
|
+
|
|
13
|
+
### Gantt
|
|
14
|
+
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- `#373529` - Task label is not properly displayed in pdf export issue has been fixed.
|
|
18
|
+
- `#373829` - Top tier and bottom tier partitioning issue in quarterly mode has been fixed.
|
|
19
|
+
- `#374212, #372614` - Timeline is not rendered properly when using hour format in `DST` issue has been fixed.
|
|
20
|
+
- `#367794` - Cell editing issue in internet explorer has been fixed.
|
|
21
|
+
|
|
22
|
+
## 20.1.50 (2022-04-19)
|
|
23
|
+
|
|
24
|
+
### Gantt
|
|
25
|
+
|
|
26
|
+
#### Bug Fixes
|
|
27
|
+
|
|
28
|
+
- `#372623` - New record keeps an editable state in dependency tab even after switching the tabs has been fixed.
|
|
29
|
+
- `#373803` - Scrollbar not available in notes tab issue has been fixed.
|
|
30
|
+
- `#372344` - Issue in `taskLabelTemplate` using `ngTemplate` has been fixed.
|
|
31
|
+
- `#372131` - Issue in `taskbarTemplate` with `enableMultiTaskbar` enabled has been fixed.
|
|
32
|
+
|
|
33
|
+
## 20.1.48 (2022-04-12)
|
|
34
|
+
|
|
35
|
+
### Gantt
|
|
36
|
+
|
|
37
|
+
#### Bug Fixes
|
|
38
|
+
|
|
9
39
|
- `#371080` - Issue in `actionBegin` event for cancelling the row drag and drop action using request type `beforeDrop` has been fixed.
|
|
10
40
|
- `#374064` - Gantt height not gets responsive when collapsing all tasks in `auto` mode.
|
|
11
41
|
- `#372623` - Filter popup gets closed automatically When clicking between the filter fields has been fixed.
|