dhx-chart 8.3.7 → 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.
- package/codebase/chart.min.js +3 -3
- package/codebase/chart.min.js.map +1 -1
- package/codebase/types/ts-data/sources/dataproxy.d.ts +1 -1
- package/codebase/types/ts-grid/sources/Selection.d.ts +0 -1
- package/codebase/types/ts-grid/sources/helpers/cells.d.ts +2 -1
- package/codebase/types/ts-grid/sources/types.d.ts +0 -1
- package/codebase/types/ts-grid/sources/ui/Cells.d.ts +8 -9
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +3 -0
|
@@ -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?:
|
|
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>;
|
|
@@ -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;
|
|
@@ -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 |
|
|
8
|
-
onmouseover: (number |
|
|
9
|
-
onmousedown: (number |
|
|
10
|
-
ondblclick: (number |
|
|
11
|
-
oncontextmenu: (number |
|
|
12
|
-
ontouchstart: (number |
|
|
13
|
-
ontouchmove: (number |
|
|
14
|
-
ontouchend: (number |
|
|
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[];
|
|
@@ -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
package/readme.txt
CHANGED