dhx-chart 8.3.6 → 8.3.8

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;
@@ -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;
@@ -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.6",
3
+ "version": "8.3.8",
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.8 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.8 (February 26, 2024)
2
+ ----------------------------
3
+
4
+ Version 8.3.7 (February 13, 2024)
5
+ ----------------------------
6
+
1
7
  Version 8.3.6 (January 24, 2024)
2
8
  ----------------------------
3
9