Skip to content

Commit b757286

Browse files
committed
[update] version 9.0.9
1 parent d1e7c67 commit b757286

17 files changed

+1951
-1589
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# dhtmlxGantt #
22

33
[![dhtmlx.com](https://img.shields.io/badge/made%20by-DHTMLX-blue)](https://dhtmlx.com/)
4-
[![npm: v.9.0.7](https://img.shields.io/badge/npm-v.9.0.7-blue.svg)](https://www.npmjs.com/package/dhtmlx-gantt)
4+
[![npm: v.9.0.9](https://img.shields.io/badge/npm-v.9.0.9-blue.svg)](https://www.npmjs.com/package/dhtmlx-gantt)
55
[![License: GPL v2](https://img.shields.io/badge/license-GPL%20v2-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
66

77
[Getting started](#getting-started) | [Features](#features) | [License](#license) | [Useful links](#links) | [Follow us](#followus)
@@ -117,7 +117,7 @@ Resource management, critical path calculation, auto scheduling, and other enhan
117117
<a name="license"></a>
118118
## License ##
119119

120-
dhtmlxGantt v.9.0.7 Standard
120+
dhtmlxGantt v.9.0.9 Standard
121121

122122
This version of dhtmlxGantt is distributed under GPL 2.0 license and can be legally used in GPL projects.
123123

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gantt",
3-
"version": "9.0.7",
3+
"version": "9.0.9",
44
"homepage": "https://dhtmlx.com/docs/products/dhtmlxGantt/",
55
"description": "An open source JavaScript Gantt chart that helps you illustrate a project schedule in a nice-looking chart.",
66
"main": [

codebase/dhtmlxgantt.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/dhtmlxgantt.d.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for dhtmlxGantt 9.0.7
1+
// Type definitions for dhtmlxGantt 9.0.9
22
// Project: https://dhtmlx.com/docs/products/dhtmlxGantt
33

44
type GanttCallback = (...args: any[]) => any;
@@ -4262,7 +4262,7 @@ export interface GridColumn {
42624262
/**
42634263
* specifies the title of the column
42644264
*/
4265-
label?: string | number,
4265+
label?: string | number | any,
42664266

42674267
/**
42684268
* sets the maximum column width in case of resize operations
@@ -5303,7 +5303,7 @@ export type RouterFunction = (
53035303
action: string,
53045304
data: Task | Link | ResourceAssignment | CustomObject,
53055305
id: string | number
5306-
) => Promise<any>
5306+
) => Promise<any> | object | void
53075307

53085308

53095309
export interface RouterForEntity {
@@ -5824,7 +5824,7 @@ export interface DatastoreMethods {
58245824
* @param the handler function
58255825
* @param optional, an object with settings for the event handler
58265826
*/
5827-
attachEvent<T extends keyof TreeDatastoreEvents>(event: T, handler: TreeDatastoreEvents[T], settings?: object): boolean,
5827+
attachEvent<T extends keyof TreeDatastoreEvents>(event: T, handler: TreeDatastoreEvents[T], settings?: object): string,
58285828

58295829
/**
58305830
* calls an inner event

codebase/dhtmlxgantt.es.d.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for dhtmlxGantt 9.0.7
1+
// Type definitions for dhtmlxGantt 9.0.9
22
// Project: https://dhtmlx.com/docs/products/dhtmlxGantt
33

44
type GanttCallback = (...args: any[]) => any;
@@ -4262,7 +4262,7 @@ export interface GridColumn {
42624262
/**
42634263
* specifies the title of the column
42644264
*/
4265-
label?: string | number,
4265+
label?: string | number | any,
42664266

42674267
/**
42684268
* sets the maximum column width in case of resize operations
@@ -5303,7 +5303,7 @@ export type RouterFunction = (
53035303
action: string,
53045304
data: Task | Link | ResourceAssignment | CustomObject,
53055305
id: string | number
5306-
) => Promise<any>
5306+
) => Promise<any> | object | void
53075307

53085308

53095309
export interface RouterForEntity {
@@ -5824,7 +5824,7 @@ export interface DatastoreMethods {
58245824
* @param the handler function
58255825
* @param optional, an object with settings for the event handler
58265826
*/
5827-
attachEvent<T extends keyof TreeDatastoreEvents>(event: T, handler: TreeDatastoreEvents[T], settings?: object): boolean,
5827+
attachEvent<T extends keyof TreeDatastoreEvents>(event: T, handler: TreeDatastoreEvents[T], settings?: object): string,
58285828

58295829
/**
58305830
* calls an inner event

0 commit comments

Comments
 (0)