dhx-chart 7.3.0 → 7.3.1

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.
@@ -13,4 +13,5 @@ export declare class Loader {
13
13
  private _addToChain;
14
14
  private _findPrevState;
15
15
  private _removeFromOrder;
16
+ private _getUniqueOrder;
16
17
  }
@@ -212,7 +212,8 @@ export declare enum DataEvents {
212
212
  load = "load",
213
213
  loadError = "loaderror",
214
214
  beforeLazyLoad = "beforelazyload",
215
- afterLazyLoad = "afterlazyload"
215
+ afterLazyLoad = "afterlazyload",
216
+ dataRequest = "dataRequest"
216
217
  }
217
218
  export interface IDataEventsHandlersMap {
218
219
  [key: string]: (...args: any[]) => any;
@@ -226,6 +227,7 @@ export interface IDataEventsHandlersMap {
226
227
  [DataEvents.loadError]: (response: any) => void;
227
228
  [DataEvents.beforeLazyLoad]: () => boolean | void;
228
229
  [DataEvents.afterLazyLoad]: (from: number, count: number) => void;
230
+ [DataEvents.dataRequest]: (from: number, to: number) => void;
229
231
  }
230
232
  export declare enum DragEvents {
231
233
  beforeDrag = "beforeDrag",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-chart",
3
- "version": "7.3.0",
3
+ "version": "7.3.1",
4
4
  "description": "dhtmlxChart widget",
5
5
  "homepage":"https://docs.dhtmlx.com/chart",
6
6
  "license":"GPL",
package/readme.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
3
 
4
- dhtmlxChart v.7.3.0 Standard
4
+ dhtmlxChart v.7.3.1 Standard
5
5
  This software is covered by GPL-2.0 License. Usage without proper license is prohibited.
6
6
 
7
7
  (c) XB Software.
package/whatsnew.txt CHANGED
@@ -1,3 +1,6 @@
1
+ Version 7.3.1 (March 17, 2022)
2
+ ----------------------------
3
+
1
4
  Version 7.3.0 (January 19, 2022)
2
5
  ----------------------------
3
6