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.
|
@@ -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
package/readme.txt
CHANGED