dhx-chart 8.3.9 → 8.3.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.
- package/codebase/chart.min.js +3 -3
- package/codebase/chart.min.js.map +1 -1
- package/codebase/types/ts-grid/sources/Exporter.d.ts +1 -0
- package/codebase/types/ts-grid/sources/Grid.d.ts +1 -0
- package/codebase/types/ts-grid/sources/helpers/main.d.ts +1 -1
- package/codebase/types/ts-grid/sources/ui/Cells.d.ts +8 -8
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +3 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ICellCss, ICol, IFooter, IGridConfig, IHeader, IRow, ISpan } from "../types";
|
|
2
2
|
export declare function transpose(arr: any[][], transform?: any): any[][];
|
|
3
|
-
export declare function getStyleByClass(cssClass: string,
|
|
3
|
+
export declare function getStyleByClass(cssClass: string, targetClass: string, def: ICellCss, container?: HTMLElement): ICellCss;
|
|
4
4
|
export declare function removeHTMLTags(str: string): string;
|
|
5
5
|
export declare function isCssSupport(property: string, value: string): boolean;
|
|
6
6
|
export declare function isRowEmpty(row: IRow): boolean;
|
|
@@ -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[];
|
package/package.json
CHANGED
package/readme.txt
CHANGED