@syncfusion/ej2-gantt 19.4.53 → 19.4.56
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 +32 -0
- package/README.md +1 -1
- 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 +111 -83
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +115 -83
- 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 +14 -14
- package/src/gantt/actions/cell-edit.js +2 -1
- package/src/gantt/actions/edit.js +33 -15
- package/src/gantt/actions/rowdragdrop.js +7 -1
- package/src/gantt/actions/selection.js +3 -0
- package/src/gantt/base/date-processor.js +2 -1
- package/src/gantt/base/gantt-chart.js +28 -2
- package/src/gantt/base/gantt.js +14 -55
- package/src/gantt/renderer/chart-rows.js +23 -8
- package/src/gantt/renderer/timeline.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,38 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#369264` - Event marker labels not visible when there is single record has been fixed
|
|
10
|
+
- `#362146` - Row customization using `rowDataBound` event in `enableImmutableMode` issue has been fixed
|
|
11
|
+
- `#363336` - Child records not updated properly in specific index issue has been fixed.
|
|
12
|
+
- `#368609` - Indent and outdent toolbar item not showing when checkbox selection is enabled has been fixed.
|
|
13
|
+
- `#363752` - Issue in assigning custom zooming levels in `load` event has been fixed.
|
|
14
|
+
- `#368549` - Gantt chart indentation issue while adding a child task has been fixed.
|
|
15
|
+
- `#359455` - Issue in giving height as view port for parent container has been fixed.
|
|
16
|
+
|
|
17
|
+
## 19.4.55 (2022-03-08)
|
|
18
|
+
|
|
19
|
+
### Gantt
|
|
20
|
+
|
|
21
|
+
#### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- `#366304` - Gantt line mismatches when we set system display as 100% and browser zoom settings as 90% has been fixed.
|
|
24
|
+
- `#365994` - Right and left label template not working in `vue` has been fixed.
|
|
25
|
+
|
|
26
|
+
## 19.4.54 (2022-03-01)
|
|
27
|
+
|
|
28
|
+
### Gantt
|
|
29
|
+
|
|
30
|
+
#### Bug Fixes
|
|
31
|
+
|
|
32
|
+
- `#366296` - When moving from once cell to another cell using tab key navigation issue has been fixed.
|
|
33
|
+
- `#363358`,`F172781` - Drag and drop not working properly after row gets collapsed issue has been fixed.
|
|
34
|
+
|
|
35
|
+
## 19.4.53 (2022-02-22)
|
|
36
|
+
|
|
37
|
+
### Gantt
|
|
38
|
+
|
|
39
|
+
#### Bug Fixes
|
|
40
|
+
|
|
9
41
|
- `#365463` - Gantt timeline view gets changed when resize the task to left side has been fixed.
|
|
10
42
|
|
|
11
43
|
## 19.4.52 (2022-02-15)
|
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
|
-
|
|
75
|
+
© Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|