dhx-chart 8.4.1 → 8.4.2

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.
@@ -4,14 +4,14 @@ type mouseEvents = GridEvents.cellClick | GridEvents.cellMouseOver | GridEvents.
4
4
  type touchEvents = GridSystemEvents.cellTouchEnd | GridSystemEvents.cellTouchMove;
5
5
  declare function handleMouse(rowStart: number, colStart: number, conf: IRendererConfig, type: mouseEvents & touchEvents, e: any): void;
6
6
  export declare function getHandlers(row: number, column: number, conf: IRendererConfig): {
7
- onclick: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
8
- onmouseover: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
9
- onmousedown: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
10
- ondblclick: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
11
- oncontextmenu: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
12
- ontouchstart: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
13
- ontouchmove: (number | GridSystemEvents | IRendererConfig | typeof handleMouse)[];
14
- ontouchend: (number | GridSystemEvents | IRendererConfig | typeof handleMouse)[];
7
+ onclick: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
8
+ onmouseover: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
9
+ onmousedown: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
10
+ ondblclick: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
11
+ oncontextmenu: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
12
+ ontouchstart: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
13
+ ontouchmove: (number | IRendererConfig | GridSystemEvents | typeof handleMouse)[];
14
+ ontouchend: (number | IRendererConfig | GridSystemEvents | typeof handleMouse)[];
15
15
  };
16
16
  export declare function getTreeCell(content: any, row: any, col: ICol, conf: IRendererConfig): any;
17
17
  export declare function getCells(conf: IRendererConfig): any[];
@@ -21,7 +21,6 @@ export declare class Layout extends Cell implements ILayout {
21
21
  cell(id: string): any;
22
22
  progressShow(): void;
23
23
  progressHide(): void;
24
- protected _initHandlers(): void;
25
24
  protected _getCss(content?: boolean): string;
26
25
  private _parseConfig;
27
26
  protected _createCell(cell: ILayoutConfig): ICell;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-chart",
3
- "version": "8.4.1",
3
+ "version": "8.4.2",
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.8.4.1 Standard
4
+ dhtmlxChart v.8.4.2 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 8.4.2 (August 29, 2024)
2
+ ----------------------------
3
+
1
4
  Version 8.4.1 (July 25, 2024)
2
5
  ----------------------------
3
6