@syncfusion/ej2-gantt 19.4.55 → 20.1.47-1460716

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.
Files changed (212) hide show
  1. package/CHANGELOG.md +1072 -1047
  2. package/README.md +75 -75
  3. package/dist/ej2-gantt.umd.min.js +1 -10
  4. package/dist/ej2-gantt.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-gantt.es2015.js +341 -240
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +713 -598
  8. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  9. package/dist/global/ej2-gantt.min.js +1 -10
  10. package/dist/global/ej2-gantt.min.js.map +1 -1
  11. package/dist/global/index.d.ts +0 -9
  12. package/dist/ts/components.ts +4 -0
  13. package/dist/ts/gantt/actions/actions.ts +18 -0
  14. package/dist/ts/gantt/actions/cell-edit.ts +606 -0
  15. package/dist/ts/gantt/actions/chart-scroll.ts +167 -0
  16. package/dist/ts/gantt/actions/column-menu.ts +35 -0
  17. package/dist/ts/gantt/actions/column-reorder.ts +52 -0
  18. package/dist/ts/gantt/actions/column-resize.ts +52 -0
  19. package/dist/ts/gantt/actions/connector-line-edit.ts +829 -0
  20. package/dist/ts/gantt/actions/context-menu.ts +754 -0
  21. package/dist/ts/gantt/actions/day-markers.ts +80 -0
  22. package/dist/ts/gantt/actions/dependency.ts +692 -0
  23. package/dist/ts/gantt/actions/dialog-edit.ts +2208 -0
  24. package/dist/ts/gantt/actions/edit.ts +3499 -0
  25. package/dist/ts/gantt/actions/excel-export.ts +61 -0
  26. package/dist/ts/gantt/actions/filter.ts +302 -0
  27. package/dist/ts/gantt/actions/keyboard.ts +306 -0
  28. package/dist/ts/gantt/actions/pdf-export.ts +214 -0
  29. package/dist/ts/gantt/actions/rowdragdrop.ts +839 -0
  30. package/dist/ts/gantt/actions/selection.ts +536 -0
  31. package/dist/ts/gantt/actions/sort.ts +98 -0
  32. package/dist/ts/gantt/actions/taskbar-edit.ts +1940 -0
  33. package/dist/ts/gantt/actions/toolbar.ts +489 -0
  34. package/dist/ts/gantt/actions/virtual-scroll.ts +60 -0
  35. package/dist/ts/gantt/base/common.ts +9 -0
  36. package/dist/ts/gantt/base/constant.ts +13 -0
  37. package/dist/ts/gantt/base/css-constants.ts +148 -0
  38. package/dist/ts/gantt/base/date-processor.ts +1257 -0
  39. package/dist/ts/gantt/base/enum.ts +372 -0
  40. package/dist/ts/gantt/base/gantt-chart.ts +1248 -0
  41. package/dist/ts/gantt/base/gantt.ts +4069 -0
  42. package/dist/ts/gantt/base/interface.ts +955 -0
  43. package/dist/ts/gantt/base/splitter.ts +174 -0
  44. package/dist/ts/gantt/base/task-processor.ts +2217 -0
  45. package/dist/ts/gantt/base/tree-grid.ts +694 -0
  46. package/dist/ts/gantt/base/utils.ts +208 -0
  47. package/dist/ts/gantt/export/export-helper.ts +552 -0
  48. package/dist/ts/gantt/export/pdf-base/dictionary.ts +152 -0
  49. package/dist/ts/gantt/export/pdf-base/pdf-borders.ts +277 -0
  50. package/dist/ts/gantt/export/pdf-base/pdf-grid-table.ts +901 -0
  51. package/dist/ts/gantt/export/pdf-base/pdf-style/gantt-theme.ts +131 -0
  52. package/dist/ts/gantt/export/pdf-base/pdf-style/style.ts +91 -0
  53. package/dist/ts/gantt/export/pdf-base/treegrid-layouter.ts +414 -0
  54. package/dist/ts/gantt/export/pdf-connector-line.ts +422 -0
  55. package/dist/ts/gantt/export/pdf-gantt.ts +282 -0
  56. package/dist/ts/gantt/export/pdf-taskbar.ts +395 -0
  57. package/dist/ts/gantt/export/pdf-timeline.ts +202 -0
  58. package/dist/ts/gantt/export/pdf-treegrid.ts +406 -0
  59. package/dist/ts/gantt/models/add-dialog-field-settings.ts +33 -0
  60. package/dist/ts/gantt/models/column.ts +464 -0
  61. package/dist/ts/gantt/models/day-working-time.ts +22 -0
  62. package/dist/ts/gantt/models/edit-dialog-field-settings.ts +33 -0
  63. package/dist/ts/gantt/models/edit-settings.ts +79 -0
  64. package/dist/ts/gantt/models/event-marker.ts +27 -0
  65. package/dist/ts/gantt/models/filter-settings.ts +53 -0
  66. package/dist/ts/gantt/models/holiday.ts +34 -0
  67. package/dist/ts/gantt/models/label-settings.ts +30 -0
  68. package/dist/ts/gantt/models/models.ts +36 -0
  69. package/dist/ts/gantt/models/resource-fields.ts +38 -0
  70. package/dist/ts/gantt/models/search-settings.ts +77 -0
  71. package/dist/ts/gantt/models/selection-settings.ts +56 -0
  72. package/dist/ts/gantt/models/sort-settings.ts +50 -0
  73. package/dist/ts/gantt/models/splitter-settings.ts +47 -0
  74. package/dist/ts/gantt/models/task-fields.ts +171 -0
  75. package/dist/ts/gantt/models/timeline-settings.ts +112 -0
  76. package/dist/ts/gantt/models/tooltip-settings.ts +46 -0
  77. package/dist/ts/gantt/renderer/chart-rows.ts +1838 -0
  78. package/dist/ts/gantt/renderer/connector-line.ts +1025 -0
  79. package/dist/ts/gantt/renderer/edit-tooltip.ts +228 -0
  80. package/dist/ts/gantt/renderer/event-marker.ts +96 -0
  81. package/dist/ts/gantt/renderer/nonworking-day.ts +205 -0
  82. package/dist/ts/gantt/renderer/render.ts +5 -0
  83. package/dist/ts/gantt/renderer/timeline.ts +1397 -0
  84. package/dist/ts/gantt/renderer/tooltip.ts +450 -0
  85. package/dist/ts/gantt/renderer/virtual-content-render.ts +50 -0
  86. package/license +9 -9
  87. package/package.json +80 -80
  88. package/src/gantt/actions/cell-edit.js +2 -1
  89. package/src/gantt/actions/dialog-edit.js +2 -1
  90. package/src/gantt/actions/edit.js +36 -9
  91. package/src/gantt/actions/rowdragdrop.js +37 -15
  92. package/src/gantt/actions/selection.js +3 -2
  93. package/src/gantt/actions/taskbar-edit.js +24 -24
  94. package/src/gantt/base/date-processor.js +0 -1
  95. package/src/gantt/base/gantt-chart.js +36 -5
  96. package/src/gantt/base/gantt-model.d.ts +779 -779
  97. package/src/gantt/base/gantt.d.ts +27 -27
  98. package/src/gantt/base/gantt.js +35 -76
  99. package/src/gantt/base/splitter.js +1 -0
  100. package/src/gantt/base/task-processor.js +13 -13
  101. package/src/gantt/base/tree-grid.js +3 -1
  102. package/src/gantt/export/pdf-base/treegrid-layouter.js +13 -13
  103. package/src/gantt/export/pdf-connector-line.js +11 -11
  104. package/src/gantt/export/pdf-gantt.js +24 -24
  105. package/src/gantt/export/pdf-taskbar.js +11 -11
  106. package/src/gantt/export/pdf-treegrid.js +13 -13
  107. package/src/gantt/models/add-dialog-field-settings-model.d.ts +21 -21
  108. package/src/gantt/models/add-dialog-field-settings.js +19 -19
  109. package/src/gantt/models/day-working-time-model.d.ts +11 -11
  110. package/src/gantt/models/day-working-time.js +19 -19
  111. package/src/gantt/models/edit-dialog-field-settings-model.d.ts +21 -21
  112. package/src/gantt/models/edit-dialog-field-settings.js +19 -19
  113. package/src/gantt/models/edit-settings-model.d.ts +50 -50
  114. package/src/gantt/models/edit-settings.js +19 -19
  115. package/src/gantt/models/event-marker-model.d.ts +16 -16
  116. package/src/gantt/models/event-marker.js +19 -19
  117. package/src/gantt/models/filter-settings-model.d.ts +34 -34
  118. package/src/gantt/models/filter-settings.js +19 -19
  119. package/src/gantt/models/holiday-model.d.ts +21 -21
  120. package/src/gantt/models/holiday.js +19 -19
  121. package/src/gantt/models/label-settings-model.d.ts +16 -16
  122. package/src/gantt/models/label-settings.js +19 -19
  123. package/src/gantt/models/resource-fields-model.d.ts +21 -21
  124. package/src/gantt/models/resource-fields.js +19 -19
  125. package/src/gantt/models/search-settings-model.d.ts +56 -56
  126. package/src/gantt/models/search-settings.js +19 -19
  127. package/src/gantt/models/selection-settings-model.d.ts +35 -35
  128. package/src/gantt/models/selection-settings.js +19 -19
  129. package/src/gantt/models/sort-settings-model.d.ts +24 -24
  130. package/src/gantt/models/sort-settings.js +19 -19
  131. package/src/gantt/models/splitter-settings-model.d.ts +30 -30
  132. package/src/gantt/models/splitter-settings.js +19 -19
  133. package/src/gantt/models/task-fields-model.d.ts +110 -110
  134. package/src/gantt/models/task-fields.js +19 -19
  135. package/src/gantt/models/timeline-settings-model.d.ts +71 -71
  136. package/src/gantt/models/timeline-settings.js +19 -19
  137. package/src/gantt/models/tooltip-settings-model.d.ts +26 -26
  138. package/src/gantt/models/tooltip-settings.js +19 -19
  139. package/src/gantt/renderer/chart-rows.js +49 -37
  140. package/src/gantt/renderer/connector-line.js +22 -18
  141. package/src/gantt/renderer/event-marker.js +1 -0
  142. package/src/gantt/renderer/nonworking-day.js +13 -6
  143. package/src/gantt/renderer/timeline.d.ts +1 -0
  144. package/src/gantt/renderer/timeline.js +51 -12
  145. package/src/gantt/renderer/tooltip.js +11 -3
  146. package/styles/bootstrap-dark.css +442 -427
  147. package/styles/bootstrap.css +442 -433
  148. package/styles/bootstrap4.css +454 -479
  149. package/styles/bootstrap5-dark.css +457 -433
  150. package/styles/bootstrap5.css +457 -433
  151. package/styles/fabric-dark.css +438 -421
  152. package/styles/fabric.css +445 -428
  153. package/styles/fluent-dark.css +1938 -0
  154. package/styles/fluent-dark.scss +1 -0
  155. package/styles/fluent.css +1938 -0
  156. package/styles/fluent.scss +1 -0
  157. package/styles/gantt/_all.scss +2 -2
  158. package/styles/gantt/_bootstrap-dark-definition.scss +210 -156
  159. package/styles/gantt/_bootstrap-definition.scss +211 -157
  160. package/styles/gantt/_bootstrap4-definition.scss +213 -158
  161. package/styles/gantt/_bootstrap5-definition.scss +215 -162
  162. package/styles/gantt/_fabric-dark-definition.scss +211 -157
  163. package/styles/gantt/_fabric-definition.scss +211 -157
  164. package/styles/gantt/_fluent-dark-definition.scss +1 -0
  165. package/styles/gantt/_fluent-definition.scss +215 -162
  166. package/styles/gantt/_fusionnew-definition.scss +214 -0
  167. package/styles/gantt/_highcontrast-definition.scss +211 -157
  168. package/styles/gantt/_highcontrast-light-definition.scss +211 -157
  169. package/styles/gantt/_layout.scss +1446 -1027
  170. package/styles/gantt/_material-dark-definition.scss +212 -157
  171. package/styles/gantt/_material-definition.scss +212 -157
  172. package/styles/gantt/_material3-definition.scss +215 -0
  173. package/styles/gantt/_tailwind-definition.scss +215 -161
  174. package/styles/gantt/_theme.scss +702 -668
  175. package/styles/gantt/bootstrap-dark.css +442 -427
  176. package/styles/gantt/bootstrap.css +442 -433
  177. package/styles/gantt/bootstrap4.css +454 -479
  178. package/styles/gantt/bootstrap5-dark.css +457 -433
  179. package/styles/gantt/bootstrap5.css +457 -433
  180. package/styles/gantt/fabric-dark.css +438 -421
  181. package/styles/gantt/fabric.css +445 -428
  182. package/styles/gantt/fluent-dark.css +1938 -0
  183. package/styles/gantt/fluent-dark.scss +22 -0
  184. package/styles/gantt/fluent.css +1938 -0
  185. package/styles/gantt/fluent.scss +22 -0
  186. package/styles/gantt/highcontrast-light.css +405 -405
  187. package/styles/gantt/highcontrast.css +444 -456
  188. package/styles/gantt/icons/_bootstrap-dark.scss +124 -113
  189. package/styles/gantt/icons/_bootstrap.scss +124 -113
  190. package/styles/gantt/icons/_bootstrap4.scss +124 -113
  191. package/styles/gantt/icons/_bootstrap5.scss +124 -112
  192. package/styles/gantt/icons/_fabric-dark.scss +124 -112
  193. package/styles/gantt/icons/_fabric.scss +124 -112
  194. package/styles/gantt/icons/_fluent-dark.scss +1 -0
  195. package/styles/gantt/icons/_fluent.scss +124 -112
  196. package/styles/gantt/icons/_fusionnew.scss +120 -0
  197. package/styles/gantt/icons/_highcontrast.scss +124 -112
  198. package/styles/gantt/icons/_material-dark.scss +124 -112
  199. package/styles/gantt/icons/_material.scss +124 -112
  200. package/styles/gantt/icons/_material3.scss +124 -0
  201. package/styles/gantt/icons/_tailwind-dark.scss +124 -113
  202. package/styles/gantt/icons/_tailwind.scss +124 -113
  203. package/styles/gantt/material-dark.css +446 -417
  204. package/styles/gantt/material.css +445 -419
  205. package/styles/gantt/tailwind-dark.css +452 -482
  206. package/styles/gantt/tailwind.css +449 -479
  207. package/styles/highcontrast-light.css +405 -405
  208. package/styles/highcontrast.css +444 -456
  209. package/styles/material-dark.css +446 -417
  210. package/styles/material.css +445 -419
  211. package/styles/tailwind-dark.css +452 -482
  212. package/styles/tailwind.css +449 -479
@@ -1,4 +1,4 @@
1
- import { ChildProperty, Property, Collection } from '@syncfusion/ej2-base';import { SortDirection } from '../base/enum';
1
+ import { ChildProperty, Property, Collection } from '@syncfusion/ej2-base';
2
2
 
3
3
  /**
4
4
  * Interface for a class SortDescriptor
@@ -6,20 +6,20 @@ import { ChildProperty, Property, Collection } from '@syncfusion/ej2-base';impor
6
6
  export interface SortDescriptorModel {
7
7
 
8
8
  /**
9
- * Defines the field name of sort column.
10
- *
11
- * @default ''
12
- */
13
- field?: string;
9
+ * Defines the field name of sort column.
10
+ *
11
+ * @default ''
12
+ */
13
+ field?: string;
14
14
 
15
15
  /**
16
- * Defines the direction of sort column.
17
- *
18
- * @default null
19
- * @isEnumeration true
20
- *
21
- */
22
- direction?: SortDirection;
16
+ * Defines the direction of sort column.
17
+ *
18
+ * @default null
19
+ * @isEnumeration true
20
+ *
21
+ */
22
+ direction?: SortDirection;
23
23
 
24
24
  }
25
25
 
@@ -29,18 +29,18 @@ export interface SortDescriptorModel {
29
29
  export interface SortSettingsModel {
30
30
 
31
31
  /**
32
- * Specifies the columns to sort at initial rendering of Gantt.
33
- * Also user can get current sorted columns.
34
- *
35
- * @default []
36
- */
37
- columns?: SortDescriptorModel[];
32
+ * Specifies the columns to sort at initial rendering of Gantt.
33
+ * Also user can get current sorted columns.
34
+ *
35
+ * @default []
36
+ */
37
+ columns?: SortDescriptorModel[];
38
38
 
39
39
  /**
40
- * If `allowUnsort` set to false the user can not get the Tree grid in unsorted state by clicking the sorted column header.
41
- *
42
- * @default true
43
- */
44
- allowUnsort?: boolean;
40
+ * If `allowUnsort` set to false the user can not get the Tree grid in unsorted state by clicking the sorted column header.
41
+ *
42
+ * @default true
43
+ */
44
+ allowUnsort?: boolean;
45
45
 
46
46
  }
@@ -1,22 +1,22 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = function (d, b) {
3
- extendStatics = Object.setPrototypeOf ||
4
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
- return extendStatics(d, b);
7
- };
8
- return function (d, b) {
9
- extendStatics(d, b);
10
- function __() { this.constructor = d; }
11
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
- };
13
- })();
14
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = function (d, b) {
3
+ extendStatics = Object.setPrototypeOf ||
4
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
+ return extendStatics(d, b);
7
+ };
8
+ return function (d, b) {
9
+ extendStatics(d, b);
10
+ function __() { this.constructor = d; }
11
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
+ };
13
+ })();
14
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
20
  import { ChildProperty, Property, Collection } from '@syncfusion/ej2-base';
21
21
  /**
22
22
  * Represents the field name and direction of sort column.
@@ -1,4 +1,4 @@
1
- import { Property, ChildProperty } from '@syncfusion/ej2-base';import { SplitterView } from '../base/enum';
1
+ import { Property, ChildProperty } from '@syncfusion/ej2-base';
2
2
 
3
3
  /**
4
4
  * Interface for a class SplitterSettings
@@ -6,42 +6,42 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base';import { Splitter
6
6
  export interface SplitterSettingsModel {
7
7
 
8
8
  /**
9
- * Defines splitter position at initial load, it accepts values in pixels.
10
- *
11
- * @default null
12
- */
13
- position?: string;
9
+ * Defines splitter position at initial load, it accepts values in pixels.
10
+ *
11
+ * @default null
12
+ */
13
+ position?: string;
14
14
 
15
15
  /**
16
- * Defines splitter position with respect to column index value.
17
- * If `columnIndex` set as `2` then splitter bar placed at third column of grid.
18
- *
19
- * @default -1
20
- */
21
- columnIndex?: number;
16
+ * Defines splitter position with respect to column index value.
17
+ * If `columnIndex` set as `2` then splitter bar placed at third column of grid.
18
+ *
19
+ * @default -1
20
+ */
21
+ columnIndex?: number;
22
22
 
23
23
  /**
24
- * Defines splitter bar size
25
- *
26
- * @default 4
27
- */
28
- separatorSize?: number;
24
+ * Defines splitter bar size
25
+ *
26
+ * @default 4
27
+ */
28
+ separatorSize?: number;
29
29
 
30
30
  /**
31
- * Defines minimum width of Grid part, splitter can't be moved less than this value on grid side.
32
- *
33
- * @default null
34
- */
35
- minimum?: string;
31
+ * Defines minimum width of Grid part, splitter can't be moved less than this value on grid side.
32
+ *
33
+ * @default null
34
+ */
35
+ minimum?: string;
36
36
 
37
37
  /**
38
- * Defines predefined view of Gantt.
39
- * * `Default` - Shows grid side and side of Gantt.
40
- * * `Grid` - Shows grid side alone in Gantt.
41
- * * `Chart` - Shows chart side alone in Gantt.
42
- *
43
- * @default Default
44
- */
45
- view?: SplitterView;
38
+ * Defines predefined view of Gantt.
39
+ * * `Default` - Shows grid side and side of Gantt.
40
+ * * `Grid` - Shows grid side alone in Gantt.
41
+ * * `Chart` - Shows chart side alone in Gantt.
42
+ *
43
+ * @default Default
44
+ */
45
+ view?: SplitterView;
46
46
 
47
47
  }
@@ -1,22 +1,22 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = function (d, b) {
3
- extendStatics = Object.setPrototypeOf ||
4
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
- return extendStatics(d, b);
7
- };
8
- return function (d, b) {
9
- extendStatics(d, b);
10
- function __() { this.constructor = d; }
11
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
- };
13
- })();
14
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = function (d, b) {
3
+ extendStatics = Object.setPrototypeOf ||
4
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
+ return extendStatics(d, b);
7
+ };
8
+ return function (d, b) {
9
+ extendStatics(d, b);
10
+ function __() { this.constructor = d; }
11
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
+ };
13
+ })();
14
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
20
  import { Property, ChildProperty } from '@syncfusion/ej2-base';
21
21
  /**
22
22
  * Configures splitter position and splitter bar.
@@ -1,4 +1,4 @@
1
- import { Property, ChildProperty } from '@syncfusion/ej2-base';
1
+ import { Property, ChildProperty } from '@syncfusion/ej2-base';
2
2
 
3
3
  /**
4
4
  * Interface for a class TaskFields
@@ -6,158 +6,158 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base';
6
6
  export interface TaskFieldsModel {
7
7
 
8
8
  /**
9
- * To map id of task from data source.
10
- *
11
- * @default null
12
- */
13
- id?: string;
9
+ * To map id of task from data source.
10
+ *
11
+ * @default null
12
+ */
13
+ id?: string;
14
14
 
15
15
  /**
16
- * To map name of task from data source.
17
- *
18
- * @default null
19
- */
20
- name?: string;
16
+ * To map name of task from data source.
17
+ *
18
+ * @default null
19
+ */
20
+ name?: string;
21
21
 
22
22
  /**
23
- * To map parent id of task from data source.
24
- *
25
- * @default null
26
- */
27
- parentID?: string;
23
+ * To map parent id of task from data source.
24
+ *
25
+ * @default null
26
+ */
27
+ parentID?: string;
28
28
 
29
29
  /**
30
- * To map start date of task from data source.
31
- *
32
- * @default null
33
- */
34
- startDate?: string;
30
+ * To map start date of task from data source.
31
+ *
32
+ * @default null
33
+ */
34
+ startDate?: string;
35
35
 
36
36
  /**
37
- * To map end date of task from data source.
38
- *
39
- * @default null
40
- */
41
- endDate?: string;
37
+ * To map end date of task from data source.
38
+ *
39
+ * @default null
40
+ */
41
+ endDate?: string;
42
42
 
43
43
  /**
44
- * To map dependency of task from data source.
45
- *
46
- * @default null
47
- */
48
- dependency?: string;
44
+ * To map dependency of task from data source.
45
+ *
46
+ * @default null
47
+ */
48
+ dependency?: string;
49
49
 
50
50
  /**
51
- * To map progress of task from data source.
52
- *
53
- * @default null
54
- */
55
- progress?: string;
51
+ * To map progress of task from data source.
52
+ *
53
+ * @default null
54
+ */
55
+ progress?: string;
56
56
 
57
57
  /**
58
- * To map child of task from data source.
59
- *
60
- * @default null
61
- */
62
- child?: string;
58
+ * To map child of task from data source.
59
+ *
60
+ * @default null
61
+ */
62
+ child?: string;
63
63
 
64
64
  /**
65
- * To map milestone of task from data source.
66
- *
67
- * @default null
68
- */
69
- milestone?: string;
65
+ * To map milestone of task from data source.
66
+ *
67
+ * @default null
68
+ */
69
+ milestone?: string;
70
70
 
71
71
  /**
72
- * To map duration of task from data source.
73
- *
74
- * @default null
75
- */
76
- duration?: string;
72
+ * To map duration of task from data source.
73
+ *
74
+ * @default null
75
+ */
76
+ duration?: string;
77
77
 
78
78
  /**
79
- * To map duration unit of task from data source.
80
- *
81
- */
82
- durationUnit?: string;
79
+ * To map duration unit of task from data source.
80
+ *
81
+ */
82
+ durationUnit?: string;
83
83
 
84
84
  /**
85
- * To map custom css class of task from data source.
86
- *
87
- */
88
- cssClass?: string;
85
+ * To map custom css class of task from data source.
86
+ *
87
+ */
88
+ cssClass?: string;
89
89
 
90
90
  /**
91
- * To map baseline start date of task from data source.
92
- *
93
- */
94
- baselineStartDate?: string;
91
+ * To map baseline start date of task from data source.
92
+ *
93
+ */
94
+ baselineStartDate?: string;
95
95
 
96
96
  /**
97
- * To map baseline end date of task from data source.
98
- *
99
- */
100
- baselineEndDate?: string;
97
+ * To map baseline end date of task from data source.
98
+ *
99
+ */
100
+ baselineEndDate?: string;
101
101
 
102
102
  /**
103
- * To map assigned resources of task from data source.
104
- *
105
- */
106
- resourceInfo?: string;
103
+ * To map assigned resources of task from data source.
104
+ *
105
+ */
106
+ resourceInfo?: string;
107
107
 
108
108
  /**
109
- * To map expand status of parent record from data source.
110
- *
111
- */
112
- expandState?: string;
109
+ * To map expand status of parent record from data source.
110
+ *
111
+ */
112
+ expandState?: string;
113
113
 
114
114
  /**
115
- * To map indicators of task from data source.
116
- *
117
- * @default null
118
- */
119
- indicators?: string;
115
+ * To map indicators of task from data source.
116
+ *
117
+ * @default null
118
+ */
119
+ indicators?: string;
120
120
 
121
121
  /**
122
- * To map notes value of task from data source.
123
- *
124
- * @default null
125
- */
126
- notes?: string;
122
+ * To map notes value of task from data source.
123
+ *
124
+ * @default null
125
+ */
126
+ notes?: string;
127
127
 
128
128
  /**
129
- * To map work of task from data source.
130
- *
131
- * @default null
132
- */
133
- work?: string;
129
+ * To map work of task from data source.
130
+ *
131
+ * @default null
132
+ */
133
+ work?: string;
134
134
 
135
135
  /**
136
- * To map schedule mode of task from data source.
137
- *
138
- * @default null
139
- */
140
- manual?: string;
136
+ * To map schedule mode of task from data source.
137
+ *
138
+ * @default null
139
+ */
140
+ manual?: string;
141
141
 
142
142
  /**
143
- * To map taskType value of task from data source
144
- *
145
- * @default null
146
- */
147
- type?: string;
143
+ * To map taskType value of task from data source
144
+ *
145
+ * @default null
146
+ */
147
+ type?: string;
148
148
 
149
149
  /**
150
- * To map segments details of a task from data source
151
- *
152
- * @default null
153
- */
154
- segments?: string;
150
+ * To map segments details of a task from data source
151
+ *
152
+ * @default null
153
+ */
154
+ segments?: string;
155
155
 
156
156
  /**
157
- * To map segment id details of a task from data source
158
- *
159
- * @default null
160
- */
161
- segmentId?: string;
157
+ * To map segment id details of a task from data source
158
+ *
159
+ * @default null
160
+ */
161
+ segmentId?: string;
162
162
 
163
163
  }
@@ -1,22 +1,22 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = function (d, b) {
3
- extendStatics = Object.setPrototypeOf ||
4
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
- return extendStatics(d, b);
7
- };
8
- return function (d, b) {
9
- extendStatics(d, b);
10
- function __() { this.constructor = d; }
11
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
- };
13
- })();
14
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = function (d, b) {
3
+ extendStatics = Object.setPrototypeOf ||
4
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
+ return extendStatics(d, b);
7
+ };
8
+ return function (d, b) {
9
+ extendStatics(d, b);
10
+ function __() { this.constructor = d; }
11
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
+ };
13
+ })();
14
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
20
  import { Property, ChildProperty } from '@syncfusion/ej2-base';
21
21
  /**
22
22
  * Defines mapping property to get task details from data source.