dhx-chart 7.3.2 → 7.3.3

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.
@@ -16,6 +16,7 @@ export interface IGridConfig extends IDragConfig {
16
16
  sortable?: boolean;
17
17
  rowCss?: (row: IRow) => string;
18
18
  leftSplit?: number;
19
+ topSplit?: number;
19
20
  selection?: ISelectionType;
20
21
  multiselection?: boolean;
21
22
  dragItem?: IDragType;
@@ -1,4 +1,5 @@
1
- import { IFixedRowsConfig, IRendererConfig } from "../types";
1
+ import { IFixedRowsConfig, IRendererConfig, ILayoutState } from "../types";
2
2
  export declare function getRows(config: IRendererConfig, rowsConfig: IFixedRowsConfig): any[];
3
3
  export declare function getFixedSpans(config: IRendererConfig, rowsConfig: IFixedRowsConfig): any[];
4
4
  export declare function getFixedRows(config: IRendererConfig, rowsConfig: IFixedRowsConfig): any;
5
+ export declare function getFixedDataRows(config: IRendererConfig, layout: ILayoutState): any[];
@@ -1,5 +1,5 @@
1
1
  import { IPosition, ITooltipConfig, Position } from "./types";
2
- export declare function findPosition(targetRect: ClientRect, position: Position, width: number, height: number): IPosition;
2
+ export declare function findPosition(targetRect: ClientRect, position: Position, width: number, height: number, margin?: number, recursion?: number): IPosition;
3
3
  export declare function getZIndex(node: Element | HTMLElement): any;
4
4
  export declare function tooltip(text: string, config: ITooltipConfig): void;
5
5
  export declare function enableTooltip(): void;
@@ -25,6 +25,7 @@ export interface ITooltipConfig extends IScreenPosition {
25
25
  showDelay?: number;
26
26
  hideDelay?: number;
27
27
  htmlEnable?: boolean;
28
+ margin?: number;
28
29
  }
29
30
  export interface IPosition {
30
31
  left: number;
@@ -39,7 +40,9 @@ export interface IScreenPosition {
39
40
  export declare enum Position {
40
41
  right = "right",
41
42
  bottom = "bottom",
42
- center = "center"
43
+ center = "center",
44
+ left = "left",
45
+ top = "top"
43
46
  }
44
47
  export declare enum MessageContainerPosition {
45
48
  topLeft = "top-left",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-chart",
3
- "version": "7.3.2",
3
+ "version": "7.3.3",
4
4
  "description": "dhtmlxChart widget",
5
5
  "homepage":"https://docs.dhtmlx.com/chart",
6
6
  "license":"GPL",
package/readme.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
3
 
4
- dhtmlxChart v.7.3.2 Standard
4
+ dhtmlxChart v.7.3.3 Standard
5
5
  This software is covered by GPL-2.0 License. Usage without proper license is prohibited.
6
6
 
7
7
  (c) XB Software.
package/whatsnew.txt CHANGED
@@ -1,3 +1,6 @@
1
+ Version 7.3.3 (April 25, 2022)
2
+ ----------------------------
3
+
1
4
  Version 7.3.2 (April 4, 2022)
2
5
  ----------------------------
3
6