dhx-chart 7.3.13 → 7.3.14

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.
@@ -22,7 +22,7 @@ export declare class Selection implements ISelection {
22
22
  protected _removeCell(row: any, col: any): void;
23
23
  protected _removeCells(): void;
24
24
  protected _init(): void;
25
- protected _toHTML(row: IRow, column: ICol, last?: boolean): any;
25
+ protected _toHTML(row: IRow, column: ICol, last?: boolean, skipRow?: boolean): any;
26
26
  protected _isUnselected(): boolean;
27
27
  protected _findIndex(cell?: ICell): number;
28
28
  protected _setBrowserFocus(): void;
@@ -83,6 +83,8 @@ export interface IRendererConfig extends IGridConfig {
83
83
  datacollection: any;
84
84
  currentColumns?: ICol[];
85
85
  currentRows?: IRow[];
86
+ fixedColumns?: ICol[];
87
+ fixedRows?: IRow[];
86
88
  firstColId?: Id;
87
89
  headerHeight?: number;
88
90
  footerHeight?: number;
@@ -1,4 +1,6 @@
1
1
  import { IGrid, IRendererConfig, IRow, IProGrid } from "../types";
2
+ export declare const BORDERS = 2;
2
3
  export declare function getRenderConfig(obj: any, data: IRow[], wrapperSizes: any): IRendererConfig;
4
+ export declare function getEvents(config: IRendererConfig, mode?: "leftSplit" | "topSplit"): {};
3
5
  export declare function render(vm: any, obj: IGrid, htmlEvents: any, selection: any, uid: string): any;
4
6
  export declare function proRender(vm: any, obj: IProGrid, htmlEvents: any, selection: any, uid: string): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-chart",
3
- "version": "7.3.13",
3
+ "version": "7.3.14",
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.13 Standard
4
+ dhtmlxChart v.7.3.14 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.14 (January 17, 2023)
2
+ ----------------------------
3
+
1
4
  Version 7.3.13 (December 14, 2022)
2
5
  ----------------------------
3
6