dhx-chart 8.3.2 → 8.3.4
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/Grid.d.ts +2 -2
- package/codebase/types/ts-grid/sources/ProGrid.d.ts +2 -2
- package/codebase/types/ts-grid/sources/types.d.ts +5 -0
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +6 -0
|
@@ -4,7 +4,7 @@ import { Id, ITouchParam } from "../../ts-common/types";
|
|
|
4
4
|
import { View } from "../../ts-common/view";
|
|
5
5
|
import { DataEvents, DragEvents, IDataCollection, IDataEventsHandlersMap, IDataItem, IDragEventsHandlersMap } from "../../ts-data";
|
|
6
6
|
import { Exporter } from "./Exporter";
|
|
7
|
-
import { Dirs, EditorType, GridEvents, IAdjustBy, ICellRect, ICol, IContentList, ICoords, IEventHandlersMap, IGrid, IGridConfig, IRow, IScrollState, ISelection, ISpan, GridSystemEvents, ISystemEventHandlersMap, IColumnsWidth, ISortingState, SortFunction, IHeaderFilter, IAdjustColumns, IFooter, IHeader } from "./types";
|
|
7
|
+
import { Dirs, EditorType, GridEvents, IAdjustBy, ICellRect, ICol, IContentList, ICoords, IEventHandlersMap, IGrid, IGridConfig, IRow, IScrollState, ISelection, ISpan, GridSystemEvents, ISystemEventHandlersMap, IColumnsWidth, ISortingState, SortFunction, IHeaderFilter, IAdjustColumns, IFooter, IHeader, INormalizeColumnsParams } from "./types";
|
|
8
8
|
export declare class Grid extends View implements IGrid {
|
|
9
9
|
version: string;
|
|
10
10
|
data: IDataCollection;
|
|
@@ -55,7 +55,7 @@ export declare class Grid extends View implements IGrid {
|
|
|
55
55
|
paint(): void;
|
|
56
56
|
protected _createView(): any;
|
|
57
57
|
protected _parseColumns(configChanged?: boolean): void;
|
|
58
|
-
protected normalizeColumns(config
|
|
58
|
+
protected normalizeColumns({ config, columns, configChanged }: INormalizeColumnsParams): void;
|
|
59
59
|
protected getNormalizeContentHeight(row: IFooter | IHeader, col: ICol, config: IGridConfig): number;
|
|
60
60
|
protected _parseData(): void;
|
|
61
61
|
protected _createCollection(prep: (data: any[]) => any[]): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Grid } from "./Grid";
|
|
2
|
-
import { IGridConfig, ICol, IProGrid, IFooter, IHeader } from "./types";
|
|
2
|
+
import { IGridConfig, ICol, IRow, IProGrid, IFooter, IHeader } from "./types";
|
|
3
3
|
import { IDataCollection, IDataItem } from "../../ts-data";
|
|
4
4
|
import { ScrollView } from "../../ts-common/ScrollView";
|
|
5
5
|
export declare class ProGrid extends Grid implements IProGrid {
|
|
@@ -8,7 +8,7 @@ export declare class ProGrid extends Grid implements IProGrid {
|
|
|
8
8
|
protected _createView(): any;
|
|
9
9
|
protected _setEventHandlers(): void;
|
|
10
10
|
protected getNormalizeContentHeight(row: IFooter | IHeader, col: ICol, config: IGridConfig): number;
|
|
11
|
-
protected _prepareData(data: IDataItem[] | IDataCollection):
|
|
11
|
+
protected _prepareData(data: IDataItem[] | IDataCollection): IDataItem[] | IRow[];
|
|
12
12
|
protected _prepareDataFromTo(data: IDataCollection, from: number, to: number): IDataItem[];
|
|
13
13
|
protected _dragStart(event: any): void;
|
|
14
14
|
private _lazyLoad;
|
package/package.json
CHANGED
package/readme.txt
CHANGED