dhx-chart 9.2.5 → 9.2.7
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 +2 -2
- package/codebase/chart.min.js.map +1 -1
- package/codebase/types/ts-grid/sources/helpers/data.d.ts +2 -1
- package/codebase/types/ts-layout/sources/Layout.d.ts +1 -1
- package/codebase/types/ts-layout/sources/types.d.ts +0 -1
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +6 -0
- /package/codebase/types/ts-grid/sources/ui/{/321/201ells.d.ts" → cells.d.ts} +0 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IContainerConfig } from "../../../ts-common/core";
|
|
2
2
|
import { ICol, IColumnsWidth, IGridConfig, IRow, AdjustTargetType, TOption, IScrollState, IVisibleRange, ISizes } from "./../types";
|
|
3
|
+
import { Id } from "../../../ts-common/types";
|
|
3
4
|
export declare function getTotalRowHeight(row: IRow): number;
|
|
4
5
|
export declare function normalizeArray(obj: any, name: string): void;
|
|
5
6
|
export declare function measureTextHeight({ text, width, lineHeight, font, htmlEnable, }: {
|
|
@@ -11,7 +12,7 @@ export declare function measureTextHeight({ text, width, lineHeight, font, htmlE
|
|
|
11
12
|
}): number;
|
|
12
13
|
export declare function countColumns(config: IGridConfig, columns: ICol[]): number;
|
|
13
14
|
export declare function calculateVisibleRange(viewPortSize: ISizes, scroll: IScrollState, config: IGridConfig, data: IRow[]): IVisibleRange;
|
|
14
|
-
export declare function
|
|
15
|
+
export declare function getNormalizeFilterData(arr: any[], name: Id, multiselection: boolean, editorType: ICol["editorType"]): any[];
|
|
15
16
|
export declare const getMaxRowHeight: ({ cols, row, config, }: {
|
|
16
17
|
row: IRow;
|
|
17
18
|
cols: ICol[];
|
|
@@ -12,7 +12,6 @@ export declare class Layout extends Cell implements ILayout {
|
|
|
12
12
|
destructor(): void;
|
|
13
13
|
toVDOM(): any;
|
|
14
14
|
removeCell(id: string): void;
|
|
15
|
-
addCell(config: ICellConfig, index?: number): void;
|
|
16
15
|
getId(index: number): string;
|
|
17
16
|
getRefs(name: string): any;
|
|
18
17
|
getCell(id: string): any;
|
|
@@ -21,6 +20,7 @@ export declare class Layout extends Cell implements ILayout {
|
|
|
21
20
|
cell(id: string): any;
|
|
22
21
|
progressShow(): void;
|
|
23
22
|
progressHide(): void;
|
|
23
|
+
protected _addCell(config: ICellConfig, index?: number): void;
|
|
24
24
|
protected _getCss(content?: boolean): string;
|
|
25
25
|
private _parseConfig;
|
|
26
26
|
protected _createCell(cell: ILayoutConfig): ICell;
|
|
@@ -82,7 +82,6 @@ export interface IProCell extends ICell {
|
|
|
82
82
|
export interface ILayout extends ICell {
|
|
83
83
|
config: ILayoutConfig;
|
|
84
84
|
removeCell(id: string): void;
|
|
85
|
-
addCell(config: ICellConfig, index: number): any;
|
|
86
85
|
getRefs(str: any): any;
|
|
87
86
|
getCell(id: string): ICell;
|
|
88
87
|
getId(index: number): string;
|
package/package.json
CHANGED
package/readme.txt
CHANGED
package/whatsnew.txt
CHANGED
|
File without changes
|