dhx-chart 8.3.8 → 8.3.9

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.
@@ -1,7 +1,7 @@
1
1
  import { IGrid, IDirection } from "../types";
2
2
  export declare function selectionMove(e: KeyboardEvent, grid: IGrid, dir: IDirection, range: number, toEnd?: boolean, ctrlUp?: boolean, shiftUp?: boolean): void;
3
3
  export declare function getKeysHandlers(grid: any): {
4
- enter: (e: any) => void;
4
+ enter: () => void;
5
5
  space: (e: any) => void;
6
6
  escape: () => void;
7
7
  tab: (e: any) => void;
@@ -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[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-chart",
3
- "version": "8.3.8",
3
+ "version": "8.3.9",
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.3.8 Standard
4
+ dhtmlxChart v.8.3.9 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.3.9 (March 18, 2024)
2
+ ----------------------------
3
+
1
4
  Version 8.3.8 (February 26, 2024)
2
5
  ----------------------------
3
6