@syncfusion/ej2-gantt 19.4.50 → 19.4.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 +9 -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 +7 -7
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +7 -7
- 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 +0 -4
- package/src/gantt/base/tree-grid.js +4 -0
- package/src/gantt/renderer/chart-rows.js +3 -3
- package/styles/bootstrap-dark.css +3 -0
- package/styles/bootstrap.css +3 -0
- package/styles/bootstrap4.css +3 -0
- package/styles/bootstrap5-dark.css +3 -0
- package/styles/bootstrap5.css +3 -0
- package/styles/fabric-dark.css +3 -0
- package/styles/fabric.css +3 -0
- package/styles/gantt/_layout.scss +3 -0
- package/styles/gantt/bootstrap-dark.css +3 -0
- package/styles/gantt/bootstrap.css +3 -0
- package/styles/gantt/bootstrap4.css +3 -0
- package/styles/gantt/bootstrap5-dark.css +3 -0
- package/styles/gantt/bootstrap5.css +3 -0
- package/styles/gantt/fabric-dark.css +3 -0
- package/styles/gantt/fabric.css +3 -0
- package/styles/gantt/highcontrast-light.css +3 -0
- package/styles/gantt/highcontrast.css +3 -0
- package/styles/gantt/material-dark.css +3 -0
- package/styles/gantt/material.css +3 -0
- package/styles/gantt/tailwind-dark.css +3 -0
- package/styles/gantt/tailwind.css +3 -0
- package/styles/highcontrast-light.css +3 -0
- package/styles/highcontrast.css +3 -0
- package/styles/material-dark.css +3 -0
- package/styles/material.css +3 -0
- package/styles/tailwind-dark.css +3 -0
- package/styles/tailwind.css +3 -0
|
@@ -6891,6 +6891,10 @@ class GanttTreeGrid {
|
|
|
6891
6891
|
}
|
|
6892
6892
|
actionBegin(args) {
|
|
6893
6893
|
this.parent.notify('actionBegin', args);
|
|
6894
|
+
let flag = getValue('doubleClickTarget', this.parent.treeGrid.editModule);
|
|
6895
|
+
if (flag !== null) {
|
|
6896
|
+
setValue('doubleClickTarget', null, this.parent.treeGrid.editModule);
|
|
6897
|
+
}
|
|
6894
6898
|
this.parent.trigger('actionBegin', args);
|
|
6895
6899
|
} // eslint-disable-next-line
|
|
6896
6900
|
created(args) {
|
|
@@ -7977,9 +7981,9 @@ class ChartRows extends DateProcessor {
|
|
|
7977
7981
|
}
|
|
7978
7982
|
if (labelString !== 'null') {
|
|
7979
7983
|
taskLabel$$1 = '<span class="' + taskLabel + '" style="line-height:' +
|
|
7980
|
-
(this.taskBarHeight - 1) + 'px; text-align:
|
|
7981
|
-
'display:' +
|
|
7982
|
-
'width:' + (
|
|
7984
|
+
(this.taskBarHeight - 1) + 'px; text-align: left;' +
|
|
7985
|
+
'display:' + 'inline-block;' +
|
|
7986
|
+
'width:' + (data.ganttProperties.width - 10) + 'px; height:' +
|
|
7983
7987
|
this.taskBarHeight + 'px;">' + labelString + '</span>';
|
|
7984
7988
|
}
|
|
7985
7989
|
const template = !isNullOrUndefined(data.ganttProperties.segments) && data.ganttProperties.segments.length > 0 ?
|
|
@@ -23614,10 +23618,6 @@ class Edit$2 {
|
|
|
23614
23618
|
}
|
|
23615
23619
|
this.parent.timelineModule.updateTimeLineOnEditing([tempArray], args.action);
|
|
23616
23620
|
}
|
|
23617
|
-
let flag = getValue('doubleClickTarget', this.parent.treeGrid.editModule);
|
|
23618
|
-
if (flag !== null) {
|
|
23619
|
-
setValue('doubleClickTarget', null, this.parent.treeGrid.editModule);
|
|
23620
|
-
}
|
|
23621
23621
|
this.addSuccess(args);
|
|
23622
23622
|
args = this.constructTaskAddedEventArgs(cAddedRecord, args.modifiedRecords, 'add');
|
|
23623
23623
|
this.parent.trigger('actionComplete', args);
|