@@ -199,10 +199,10 @@ export class DxGanttComponent extends DxComponent implements OnDestroy, OnChange
199199
200200 */
201201 @Input ( )
202- get dependencies ( ) : { dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: Function | string , predecessorIdExpr ?: Function | string , successorIdExpr ?: Function | string , typeExpr ?: Function | string } {
202+ get dependencies ( ) : { dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: ( ( dependency : any ) => any ) | string , predecessorIdExpr ?: ( ( dependency : any , value : any ) => any ) | string , successorIdExpr ?: ( ( dependency : any , value : any ) => any ) | string , typeExpr ?: ( ( dependency : any , value : any ) => any ) | string } {
203203 return this . _getOption ( 'dependencies' ) ;
204204 }
205- set dependencies ( value : { dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: Function | string , predecessorIdExpr ?: Function | string , successorIdExpr ?: Function | string , typeExpr ?: Function | string } ) {
205+ set dependencies ( value : { dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: ( ( dependency : any ) => any ) | string , predecessorIdExpr ?: ( ( dependency : any , value : any ) => any ) | string , successorIdExpr ?: ( ( dependency : any , value : any ) => any ) | string , typeExpr ?: ( ( dependency : any , value : any ) => any ) | string } ) {
206206 this . _setOption ( 'dependencies' , value ) ;
207207 }
208208
@@ -355,10 +355,10 @@ export class DxGanttComponent extends DxComponent implements OnDestroy, OnChange
355355
356356 */
357357 @Input ( )
358- get resourceAssignments ( ) : { dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: Function | string , resourceIdExpr ?: Function | string , taskIdExpr ?: Function | string } {
358+ get resourceAssignments ( ) : { dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: ( ( resourceAssignment : any ) => any ) | string , resourceIdExpr ?: ( ( resourceAssignment : any , value : any ) => any ) | string , taskIdExpr ?: ( ( resourceAssignment : any , value : any ) => any ) | string } {
359359 return this . _getOption ( 'resourceAssignments' ) ;
360360 }
361- set resourceAssignments ( value : { dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: Function | string , resourceIdExpr ?: Function | string , taskIdExpr ?: Function | string } ) {
361+ set resourceAssignments ( value : { dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: ( ( resourceAssignment : any ) => any ) | string , resourceIdExpr ?: ( ( resourceAssignment : any , value : any ) => any ) | string , taskIdExpr ?: ( ( resourceAssignment : any , value : any ) => any ) | string } ) {
362362 this . _setOption ( 'resourceAssignments' , value ) ;
363363 }
364364
@@ -368,10 +368,10 @@ export class DxGanttComponent extends DxComponent implements OnDestroy, OnChange
368368
369369 */
370370 @Input ( )
371- get resources ( ) : { colorExpr ?: Function | string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: Function | string , textExpr ?: Function | string } {
371+ get resources ( ) : { colorExpr ?: ( ( resource : any , value : any ) => any ) | string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: ( ( resource : any ) => any ) | string , textExpr ?: ( ( resource : any , value : any ) => string ) | string } {
372372 return this . _getOption ( 'resources' ) ;
373373 }
374- set resources ( value : { colorExpr ?: Function | string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: Function | string , textExpr ?: Function | string } ) {
374+ set resources ( value : { colorExpr ?: ( ( resource : any , value : any ) => any ) | string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: ( ( resource : any ) => any ) | string , textExpr ?: ( ( resource : any , value : any ) => string ) | string } ) {
375375 this . _setOption ( 'resources' , value ) ;
376376 }
377377
@@ -563,10 +563,10 @@ export class DxGanttComponent extends DxComponent implements OnDestroy, OnChange
563563
564564 */
565565 @Input ( )
566- get tasks ( ) : { colorExpr ?: Function | string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , endExpr ?: Function | string , keyExpr ?: Function | string , parentIdExpr ?: Function | string , progressExpr ?: Function | string , startExpr ?: Function | string , titleExpr ?: Function | string } {
566+ get tasks ( ) : { colorExpr ?: ( ( task : any , value : any ) => any ) | string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , endExpr ?: ( ( task : any , value : any ) => any ) | string , keyExpr ?: ( ( task : any ) => any ) | string , parentIdExpr ?: ( ( task : any , value : any ) => any ) | string , progressExpr ?: ( ( task : any , value : any ) => any ) | string , startExpr ?: ( ( task : any , value : any ) => any ) | string , titleExpr ?: ( ( task : any , value : any ) => any ) | string } {
567567 return this . _getOption ( 'tasks' ) ;
568568 }
569- set tasks ( value : { colorExpr ?: Function | string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , endExpr ?: Function | string , keyExpr ?: Function | string , parentIdExpr ?: Function | string , progressExpr ?: Function | string , startExpr ?: Function | string , titleExpr ?: Function | string } ) {
569+ set tasks ( value : { colorExpr ?: ( ( task : any , value : any ) => any ) | string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , endExpr ?: ( ( task : any , value : any ) => any ) | string , keyExpr ?: ( ( task : any ) => any ) | string , parentIdExpr ?: ( ( task : any , value : any ) => any ) | string , progressExpr ?: ( ( task : any , value : any ) => any ) | string , startExpr ?: ( ( task : any , value : any ) => any ) | string , titleExpr ?: ( ( task : any , value : any ) => any ) | string } ) {
570570 this . _setOption ( 'tasks' , value ) ;
571571 }
572572
@@ -949,7 +949,7 @@ export class DxGanttComponent extends DxComponent implements OnDestroy, OnChange
949949 * This member supports the internal infrastructure and is not intended to be used directly from your code.
950950
951951 */
952- @Output ( ) dependenciesChange : EventEmitter < { dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: Function | string , predecessorIdExpr ?: Function | string , successorIdExpr ?: Function | string , typeExpr ?: Function | string } > ;
952+ @Output ( ) dependenciesChange : EventEmitter < { dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: ( ( dependency : any ) => any ) | string , predecessorIdExpr ?: ( ( dependency : any , value : any ) => any ) | string , successorIdExpr ?: ( ( dependency : any , value : any ) => any ) | string , typeExpr ?: ( ( dependency : any , value : any ) => any ) | string } > ;
953953
954954 /**
955955
@@ -1033,14 +1033,14 @@ export class DxGanttComponent extends DxComponent implements OnDestroy, OnChange
10331033 * This member supports the internal infrastructure and is not intended to be used directly from your code.
10341034
10351035 */
1036- @Output ( ) resourceAssignmentsChange : EventEmitter < { dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: Function | string , resourceIdExpr ?: Function | string , taskIdExpr ?: Function | string } > ;
1036+ @Output ( ) resourceAssignmentsChange : EventEmitter < { dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: ( ( resourceAssignment : any ) => any ) | string , resourceIdExpr ?: ( ( resourceAssignment : any , value : any ) => any ) | string , taskIdExpr ?: ( ( resourceAssignment : any , value : any ) => any ) | string } > ;
10371037
10381038 /**
10391039
10401040 * This member supports the internal infrastructure and is not intended to be used directly from your code.
10411041
10421042 */
1043- @Output ( ) resourcesChange : EventEmitter < { colorExpr ?: Function | string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: Function | string , textExpr ?: Function | string } > ;
1043+ @Output ( ) resourcesChange : EventEmitter < { colorExpr ?: ( ( resource : any , value : any ) => any ) | string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , keyExpr ?: ( ( resource : any ) => any ) | string , textExpr ?: ( ( resource : any , value : any ) => string ) | string } > ;
10441044
10451045 /**
10461046
@@ -1145,7 +1145,7 @@ export class DxGanttComponent extends DxComponent implements OnDestroy, OnChange
11451145 * This member supports the internal infrastructure and is not intended to be used directly from your code.
11461146
11471147 */
1148- @Output ( ) tasksChange : EventEmitter < { colorExpr ?: Function | string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , endExpr ?: Function | string , keyExpr ?: Function | string , parentIdExpr ?: Function | string , progressExpr ?: Function | string , startExpr ?: Function | string , titleExpr ?: Function | string } > ;
1148+ @Output ( ) tasksChange : EventEmitter < { colorExpr ?: ( ( task : any , value : any ) => any ) | string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , endExpr ?: ( ( task : any , value : any ) => any ) | string , keyExpr ?: ( ( task : any ) => any ) | string , parentIdExpr ?: ( ( task : any , value : any ) => any ) | string , progressExpr ?: ( ( task : any , value : any ) => any ) | string , startExpr ?: ( ( task : any , value : any ) => any ) | string , titleExpr ?: ( ( task : any , value : any ) => any ) | string } > ;
11491149
11501150 /**
11511151
0 commit comments