dhx-chart 8.3.6 → 8.3.7

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.
@@ -8,7 +8,7 @@ interface IOBj {
8
8
  export declare function copy(source: IOBj, withoutInner?: boolean): IOBj;
9
9
  export declare function naturalSort(arr: any): any[];
10
10
  export declare function findIndex<T = any>(arr: T[], predicate: (obj: T) => boolean): number;
11
- export declare function isEqualString(from: string, to: string): boolean;
11
+ export declare function isExistValue(target: number | string, value: number | string): boolean;
12
12
  export declare function singleOuterClick(fn: (e: MouseEvent) => boolean): void;
13
13
  export declare function detectWidgetClick(widgetId: string, cb: (inner: boolean) => void): () => void;
14
14
  export declare function unwrapBox<T>(box: T | T[]): T;
@@ -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.6",
3
+ "version": "8.3.7",
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.6 Standard
4
+ dhtmlxChart v.8.3.7 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.7 (February 13, 2024)
2
+ ----------------------------
3
+
1
4
  Version 8.3.6 (January 24, 2024)
2
5
  ----------------------------
3
6