@syncfusion/ej2-react-gantt 29.1.38 → 29.1.39

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/diConfig.json CHANGED
@@ -279,7 +279,8 @@
279
279
  ],
280
280
  "templateProperties": [
281
281
  "template",
282
- "headerTemplate"
282
+ "headerTemplate",
283
+ "editTemplate"
283
284
  ],
284
285
  "blazorTemplates": [
285
286
  "template",
@@ -595,6 +596,7 @@
595
596
  "timelineTemplate",
596
597
  "milestoneTemplate",
597
598
  "taskbarTemplate",
599
+ "editTemplate",
598
600
  "labelSettings.rightLabel",
599
601
  "labelSettings.leftLabel",
600
602
  "labelSettings.taskLabel",
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-react-gantt.min.js
3
- * version : 29.1.38
3
+ * version : 29.1.39
4
4
  * Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-react-gantt.umd.min.js
3
- * version : 29.1.38
3
+ * version : 29.1.39
4
4
  * Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-react-gantt@*",
3
- "_id": "@syncfusion/ej2-react-gantt@29.1.37",
3
+ "_id": "@syncfusion/ej2-react-gantt@29.1.38",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-FV06o00jEEmKXpFGquQkSDknXJINZn5K8/zJZg1hvAmIZGHK7JyyfAlry8z0k4WblmUcKTQ471gIY2CP9pvjFQ==",
5
+ "_integrity": "sha512-J2FlkWhs8r2FdXQOD7i5H7YbW5ijHPCn729k2EEoGM6efEWZjdwY4WUz3cY2+5EHbfbmPM6mJhf2E3NPuJ098Q==",
6
6
  "_location": "/@syncfusion/ej2-react-gantt",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-react-gantt/-/ej2-react-gantt-29.1.37.tgz",
23
- "_shasum": "e16cacaf5627b1a8f3b0b12738e52f648d3659e6",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-react-gantt/-/ej2-react-gantt-29.1.38.tgz",
23
+ "_shasum": "a6e4ce018523a1065d411102812ef9a39363d963",
24
24
  "_spec": "@syncfusion/ej2-react-gantt@*",
25
25
  "_where": "/jenkins/workspace/elease-automation_release_29.1.1/packages/included",
26
26
  "author": {
@@ -32,7 +32,7 @@
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
34
  "@syncfusion/ej2-base": "~29.1.36",
35
- "@syncfusion/ej2-gantt": "29.1.38",
35
+ "@syncfusion/ej2-gantt": "29.1.39",
36
36
  "@syncfusion/ej2-react-base": "~29.1.33"
37
37
  },
38
38
  "deprecated": false,
@@ -70,6 +70,6 @@
70
70
  "type": "git",
71
71
  "url": "https://github.com/syncfusion/ej2-react-ui-components.git"
72
72
  },
73
- "version": "29.1.38",
73
+ "version": "29.1.39",
74
74
  "sideEffects": false
75
75
  }
@@ -3,6 +3,7 @@ import { ColumnModel } from '@syncfusion/ej2-gantt';
3
3
  export interface ColumnDirTypecast {
4
4
  template?: string | Function | any;
5
5
  headerTemplate?: string | Function | any;
6
+ editTemplate?: string | Function | any;
6
7
  }
7
8
  /**
8
9
  * `ColumnDirective` represent a column of the react Gantt.
@@ -6,6 +6,7 @@ export interface GanttTypecast {
6
6
  timelineTemplate?: string | Function | any;
7
7
  milestoneTemplate?: string | Function | any;
8
8
  taskbarTemplate?: string | Function | any;
9
+ editTemplate?: string | Function | any;
9
10
  labelSettings?: any;
10
11
  tooltipSettings?: any;
11
12
  }