dhx-chart 8.1.8 → 8.1.10

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.
@@ -30,4 +30,5 @@ export interface IContainerConfig {
30
30
  }
31
31
  export declare const getStringWidth: (value: string, config?: IContainerConfig) => number;
32
32
  export declare const rgbToHex: (color: string) => string;
33
+ export declare function getCloneObject(obj: any): any;
33
34
  export {};
@@ -23,6 +23,7 @@ export declare class Grid extends View implements IGrid {
23
23
  private _filterData;
24
24
  protected _activeFilters: {};
25
25
  private _hiddenFilters;
26
+ protected _destructed: boolean;
26
27
  constructor(container: HTMLElement | string, config?: IGridConfig);
27
28
  destructor(): void;
28
29
  setColumns(columns: ICol[]): void;
@@ -69,7 +70,7 @@ export declare class Grid extends View implements IGrid {
69
70
  protected _dragStart(event: any): void;
70
71
  protected _getRowGhost(ids: Id[]): HTMLDivElement;
71
72
  protected _initHooks(): {
72
- didMount: (vm: any) => void;
73
+ didMount: () => void;
73
74
  didUnmount: (vm: any) => void;
74
75
  };
75
76
  private _canDataParse;
@@ -1,3 +1,5 @@
1
1
  import { ICol, IRow } from "./../types";
2
+ import { Id } from "../../../ts-common/types";
2
3
  export declare function getWidth(columns: ICol[], colspan: number, index: number): number;
3
4
  export declare function getHeight(dataRows: IRow[], rowspan: number, index: number): number;
5
+ export declare function getReducedColspan(columns: ICol[], colId: Id, colspan: number): number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-chart",
3
- "version": "8.1.8",
3
+ "version": "8.1.10",
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.1.8 Standard
4
+ dhtmlxChart v.8.1.10 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.1.10 (August 21, 2023)
2
+ ----------------------------
3
+
4
+ Version 8.1.9 (August 14, 2023)
5
+ ----------------------------
6
+
1
7
  Version 8.1.8 (August 8, 2023)
2
8
  ----------------------------
3
9