dhx-chart 8.3.6 → 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.css +1 -1
- package/codebase/chart.min.js +3 -3
- package/codebase/chart.min.js.map +1 -1
- package/codebase/types/ts-common/core.d.ts +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 +0 -1
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +6 -0
|
@@ -8,7 +8,7 @@ interface IOBj {
|
|
|
8
8
|
export declare function copy(source: IOBj, withoutInner?: boolean): IOBj;
|
|
9
9
|
export declare function naturalSort(arr: any): any[];
|
|
10
10
|
export declare function findIndex<T = any>(arr: T[], predicate: (obj: T) => boolean): number;
|
|
11
|
-
export declare function
|
|
11
|
+
export declare function isExistValue(target: number | string, value: number | string): boolean;
|
|
12
12
|
export declare function singleOuterClick(fn: (e: MouseEvent) => boolean): void;
|
|
13
13
|
export declare function detectWidgetClick(widgetId: string, cb: (inner: boolean) => void): () => void;
|
|
14
14
|
export declare function unwrapBox<T>(box: T | T[]): T;
|
|
@@ -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;
|
package/package.json
CHANGED
package/readme.txt
CHANGED