dhx-chart 8.3.9 → 8.3.11
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/data.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 +6 -0
|
@@ -26,3 +26,4 @@ export declare const getMaxColsWidth: (rows: IRow[], cols: ICol[], config?: ICon
|
|
|
26
26
|
export declare function toFormat(value: any, type?: colType, format?: string): any;
|
|
27
27
|
export declare function getEditorOptions(col: ICol, row?: IRow): TOption[];
|
|
28
28
|
export declare function getValueForNumberColumn(col: ICol, value: any): any;
|
|
29
|
+
export declare function getEditorValue(value: any, options: TOption[]): any;
|
|
@@ -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