dhx-chart 8.3.7 → 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.
@@ -3,7 +3,7 @@ export declare class DataProxy implements IDataProxy {
3
3
  url: string;
4
4
  config: any;
5
5
  protected _url: string;
6
- constructor(url: string, config?: any);
6
+ constructor(url: string, config?: {});
7
7
  updateUrl(url?: string, params?: any): void;
8
8
  load<T = string>(): Promise<T | void>;
9
9
  save(data: any, mode: string): Promise<any>;
@@ -28,5 +28,4 @@ export declare class Selection implements ISelection {
28
28
  private _findIndex;
29
29
  private _setBrowserFocus;
30
30
  private _getReverseScrollState;
31
- private _normalizeCell;
32
31
  }
@@ -1,5 +1,6 @@
1
- import { ICol, IRow } from "./../types";
1
+ import { ICell, ICol, IGrid, IRow } from "./../types";
2
2
  import { Id } from "../../../ts-common/types";
3
3
  export declare function getWidth(columns: ICol[], colspan: number, index: number): number;
4
4
  export declare function getHeight(dataRows: IRow[], rowspan: number, index: number): number;
5
5
  export declare function getReducedColspan(columns: ICol[], colId: Id, colspan: number): number;
6
+ export declare function normalizeCell(cell: ICell, grid: IGrid): ICell;
@@ -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;
@@ -307,7 +307,6 @@ export interface ISpan {
307
307
  css?: string;
308
308
  tooltip?: boolean;
309
309
  tooltipTemplate?: (spanValue: any, span: ISpan) => string;
310
- $markCss?: string;
311
310
  $type?: colType;
312
311
  $rowsVisibility?: number[];
313
312
  $colsVisibility?: number[];
@@ -30,6 +30,5 @@ export declare function normalizeSpan(span: ISpan, config: IGridConfig, data: ID
30
30
  css?: string;
31
31
  tooltip?: boolean;
32
32
  tooltipTemplate?: (spanValue: any, span: ISpan) => string;
33
- $markCss?: string;
34
33
  };
35
34
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-chart",
3
- "version": "8.3.7",
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.7 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,9 @@
1
+ Version 8.3.9 (March 18, 2024)
2
+ ----------------------------
3
+
4
+ Version 8.3.8 (February 26, 2024)
5
+ ----------------------------
6
+
1
7
  Version 8.3.7 (February 13, 2024)
2
8
  ----------------------------
3
9