@syncfusion/ej2-gantt 20.3.48 → 20.3.50
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 +22 -0
- package/dist/ej2-gantt.min.js +2 -2
- 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 +79 -18
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +72 -11
- 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 +17 -17
- package/src/gantt/actions/context-menu.js +3 -1
- package/src/gantt/actions/dialog-edit.js +1 -1
- package/src/gantt/actions/edit.js +3 -0
- package/src/gantt/actions/keyboard.js +8 -1
- package/src/gantt/base/interface.d.ts +13 -1
- package/src/gantt/base/task-processor.js +21 -7
- package/src/gantt/base/tree-grid.js +8 -1
- package/src/gantt/export/pdf-base/pdf-grid-table.js +9 -0
- package/src/gantt/export/pdf-taskbar.js +16 -0
- package/src/gantt/export/pdf-timeline.js +3 -0
- package/styles/bootstrap4.css +1 -1
- package/styles/gantt/bootstrap4.css +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,28 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#I409097` - Deleting record when search text is selected issue has been fixed.
|
|
10
|
+
- `#I404228` - Saving record even when in edited state issue has been fixed.
|
|
11
|
+
- `#I413093` - Pdf export is not working in latest version issue has been fixed.
|
|
12
|
+
|
|
13
|
+
## 20.3.49 (2022-10-11)
|
|
14
|
+
|
|
15
|
+
### Gantt
|
|
16
|
+
|
|
17
|
+
#### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- `#I395003` - Gantt records disappear when scrolling up and down quickly issue has been fixed.
|
|
20
|
+
- `#I407437` - Add new record in resource view without child mapping issue has been fixed.
|
|
21
|
+
- `#I407832` - Console error when all the element is disabled in context menu.
|
|
22
|
+
- `#I407716` - Data source update on load time issue has been fixed.
|
|
23
|
+
- `#I400913`, `#I405837` - Pdf export is not working when the data has Hebrew and Vietnamese characters.
|
|
24
|
+
|
|
25
|
+
## 20.3.48 (2022-10-05)
|
|
26
|
+
|
|
27
|
+
### Gantt
|
|
28
|
+
|
|
29
|
+
#### Bug Fixes
|
|
30
|
+
|
|
9
31
|
- `#I408288` - Timeline rendering is incomplete when data is rebinded issue has been fixed.
|
|
10
32
|
- `#I404228` - Issue in saving data in segment has been fixed.
|
|
11
33
|
- `#I406597` - Duplicate record in the data source issue has been fixed.
|