dhx-chart 8.1.8 → 8.1.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.
- package/codebase/chart.min.css +1 -1
- package/codebase/chart.min.js +3 -3
- package/codebase/types/ts-common/core.d.ts +1 -0
- package/codebase/types/ts-grid/sources/Grid.d.ts +2 -1
- package/codebase/types/ts-grid/sources/helpers/cells.d.ts +2 -0
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +3 -0
|
@@ -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: (
|
|
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
package/readme.txt
CHANGED