dhx-chart 8.3.9 → 8.3.11

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.
@@ -29,4 +29,5 @@ export declare class Exporter {
29
29
  private getFlatCSV;
30
30
  private _getCSV;
31
31
  protected _rawExport(config: IPNGConfig | IPDFConfig, mode: TExportType, view: any): void;
32
+ private _getHash;
32
33
  }
@@ -92,4 +92,5 @@ export declare class Grid extends View implements IGrid {
92
92
  private _normalizeConfig;
93
93
  private _normalizeSpans;
94
94
  private _autoScroll;
95
+ private _applyAutoWidth;
95
96
  }
@@ -26,3 +26,4 @@ export declare const getMaxColsWidth: (rows: IRow[], cols: ICol[], config?: ICon
26
26
  export declare function toFormat(value: any, type?: colType, format?: string): any;
27
27
  export declare function getEditorOptions(col: ICol, row?: IRow): TOption[];
28
28
  export declare function getValueForNumberColumn(col: ICol, value: any): any;
29
+ export declare function getEditorValue(value: any, options: TOption[]): any;
@@ -1,6 +1,6 @@
1
1
  import { ICellCss, ICol, IFooter, IGridConfig, IHeader, IRow, ISpan } from "../types";
2
2
  export declare function transpose(arr: any[][], transform?: any): any[][];
3
- export declare function getStyleByClass(cssClass: string, container: HTMLElement, targetClass: string, def?: ICellCss): ICellCss;
3
+ export declare function getStyleByClass(cssClass: string, targetClass: string, def: ICellCss, container?: HTMLElement): ICellCss;
4
4
  export declare function removeHTMLTags(str: string): string;
5
5
  export declare function isCssSupport(property: string, value: string): boolean;
6
6
  export declare function isRowEmpty(row: IRow): boolean;
@@ -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 | 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)[];
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)[];
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.9",
3
+ "version": "8.3.11",
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.9 Standard
4
+ dhtmlxChart v.8.3.11 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,9 @@
1
+ Version 8.3.11 (May 8, 2024)
2
+ ----------------------------
3
+
4
+ Version 8.3.10 (April 3, 2024)
5
+ ----------------------------
6
+
1
7
  Version 8.3.9 (March 18, 2024)
2
8
  ----------------------------
3
9