@syncfusion/ej2-gantt 20.1.50 → 20.1.55
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 +29 -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 +80 -30
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +80 -30
- 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 +18 -18
- package/src/gantt/actions/edit.js +3 -0
- package/src/gantt/actions/filter.js +1 -1
- package/src/gantt/base/gantt-chart.js +1 -1
- package/src/gantt/base/gantt.js +3 -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 +16 -12
- 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,35 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#376228` - Duration is not updated while updating resource units using `updateRecordByID` method issue has been fixed.
|
|
10
|
+
- `#370224` - Filtering issue when rendering Gantt inside the modal has been fixed.
|
|
11
|
+
- `#376455` - Tab key navigation not working properly when moving from grid to timeline issue has been fixed.
|
|
12
|
+
|
|
13
|
+
## 20.1.52 (2022-05-04)
|
|
14
|
+
|
|
15
|
+
### Gantt
|
|
16
|
+
|
|
17
|
+
#### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- `#372661` - Data not properly updated in the Gantt Chart when switching between list view issue has been fixed.
|
|
20
|
+
|
|
21
|
+
## 20.1.51 (2022-04-26)
|
|
22
|
+
|
|
23
|
+
### Gantt
|
|
24
|
+
|
|
25
|
+
#### Bug Fixes
|
|
26
|
+
|
|
27
|
+
- `#373529` - Task label is not properly displayed in pdf export issue has been fixed.
|
|
28
|
+
- `#373829` - Top tier and bottom tier partitioning issue in quarterly mode has been fixed.
|
|
29
|
+
- `#374212, #372614` - Timeline is not rendered properly when using hour format in `DST` issue has been fixed.
|
|
30
|
+
- `#367794` - Cell editing issue in internet explorer has been fixed.
|
|
31
|
+
|
|
32
|
+
## 20.1.50 (2022-04-19)
|
|
33
|
+
|
|
34
|
+
### Gantt
|
|
35
|
+
|
|
36
|
+
#### Bug Fixes
|
|
37
|
+
|
|
9
38
|
- `#372623` - New record keeps an editable state in dependency tab even after switching the tabs has been fixed.
|
|
10
39
|
- `#373803` - Scrollbar not available in notes tab issue has been fixed.
|
|
11
40
|
- `#372344` - Issue in `taskLabelTemplate` using `ngTemplate` has been fixed.
|