Skip to content

Commit adef56a

Browse files
committed
[update] version 7.0.6
1 parent df27911 commit adef56a

16 files changed

+220
-89
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.7.0.5](https://img.shields.io/badge/npm-v.7.0.5-blue.svg)](https://www.npmjs.com/package/dhtmlx-gantt)
4+
[![npm: v.7.0.6](https://img.shields.io/badge/npm-v.7.0.6-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) | [Follow us](#followus) | [License](#license) | [Useful links](#links)
@@ -128,7 +128,7 @@ Like our page on [Facebook](https://www.facebook.com/dhtmlx/) :thumbsup:
128128
<a name="license"></a>
129129
## License ##
130130

131-
dhtmlxGantt v.7.0.5 Standard
131+
dhtmlxGantt v.7.0.6 Standard
132132

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

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gantt",
3-
"version": "7.0.5",
3+
"version": "7.0.6",
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.d.ts

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

44
type GanttCallback = (...args: any[]) => any;
@@ -1318,8 +1318,9 @@ export interface GanttStatic {
13181318

13191319
/**
13201320
* Promise object constructor
1321+
* @param executor a callback used to initialize the promise
13211322
*/
1322-
Promise(): void;
1323+
Promise: new (executor: (resolve: (value?: any) => void, reject: (reason?: any) => void) => void): Promise<unknown>;
13231324

13241325
/**
13251326
* adds a calendar into Gantt
@@ -2420,6 +2421,12 @@ export interface GanttStatic {
24202421
*/
24212422
showTask(id: string|number): void;
24222423

2424+
/**
2425+
* makes all code inside it not to trigger internal events or server-side calls
2426+
* @param callback the callback function
2427+
*/
2428+
silent(callback: GanttCallback): void;
2429+
24232430
/**
24242431
* sorts tasks in the grid
24252432
* @param field the name of the column that the grid will be sorted by or a custom sorting function

codebase/dhtmlxgantt.js

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

codebase/dhtmlxgantt.js.map

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

codebase/sources/dhtmlxgantt.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
@license
33
4-
dhtmlxGantt v.7.0.5 Standard
4+
dhtmlxGantt v.7.0.6 Standard
55
66
This version of dhtmlxGantt is distributed under GPL 2.0 license and can be legally used in GPL projects.
77

0 commit comments

Comments
 (0)