dhx-suite 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.
- package/codebase/suite.min.css +1 -1
- package/codebase/suite.min.js +3 -3
- package/codebase/types/ts-grid/sources/Selection.d.ts +1 -1
- package/codebase/types/ts-grid/sources/types.d.ts +2 -0
- package/codebase/types/ts-grid/sources/ui/Cells.d.ts +8 -8
- package/codebase/types/ts-grid/sources/ui/render.d.ts +2 -0
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +17 -0
|
@@ -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;
|
|
@@ -3,14 +3,14 @@ declare type mouseEvents = GridEvents.cellClick | GridEvents.cellMouseOver | Gri
|
|
|
3
3
|
declare type touchEvents = GridSystemEvents.cellTouchEnd | GridSystemEvents.cellTouchMove;
|
|
4
4
|
declare function handleMouse(rowStart: number, colStart: number, conf: IRendererConfig, type: mouseEvents & touchEvents, e: any): void;
|
|
5
5
|
export declare function getHandlers(row: number, column: number, conf: IRendererConfig): {
|
|
6
|
-
onclick: (number |
|
|
7
|
-
onmouseover: (number |
|
|
8
|
-
onmousedown: (number |
|
|
9
|
-
ondblclick: (number |
|
|
10
|
-
oncontextmenu: (number |
|
|
11
|
-
ontouchstart: (number |
|
|
12
|
-
ontouchmove: (number |
|
|
13
|
-
ontouchend: (number |
|
|
6
|
+
onclick: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
|
|
7
|
+
onmouseover: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
|
|
8
|
+
onmousedown: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
|
|
9
|
+
ondblclick: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
|
|
10
|
+
oncontextmenu: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
|
|
11
|
+
ontouchstart: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
|
|
12
|
+
ontouchmove: (number | GridSystemEvents | IRendererConfig | typeof handleMouse)[];
|
|
13
|
+
ontouchend: (number | GridSystemEvents | IRendererConfig | typeof handleMouse)[];
|
|
14
14
|
};
|
|
15
15
|
export declare function getTreeCell(content: any, row: any, col: ICol, conf: IRendererConfig): any;
|
|
16
16
|
export declare function getCells(conf: IRendererConfig): any[];
|
|
@@ -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
package/readme.txt
CHANGED
package/whatsnew.txt
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
# Version 7.3.14 (January 17, 2023)
|
|
2
|
+
|
|
3
|
+
### Fixes
|
|
4
|
+
|
|
5
|
+
- Grid. Fix the issue which caused "inputFilter"/"selectFilter" to stop working in some browsers
|
|
6
|
+
- Grid. Fix the issue with automatic adjustment of the column's width for header or footer consisting of several rows
|
|
7
|
+
- Grid. Fix the issue with calculation of the height for frozen columns in Grid with horizontal and vertical scrollbars
|
|
8
|
+
- Grid. Fix work of drag-n-drop for columns
|
|
9
|
+
- Grid. Fix work of the "headerSort:false" property specified for the header consisting of the spanned rows
|
|
10
|
+
- Grid. Now it is possible to select several cells/rows when using "multiselection" together with "selection:"complex""
|
|
11
|
+
- Grid. Now the "eventHandlers" property works for frozen columns
|
|
12
|
+
- TreeGrid. Fix the display of selection for spanned cells
|
|
13
|
+
- TreeGrid. Fix the issue with display of total values in the footer of the exported .csv / .xlsx file
|
|
14
|
+
- TreeGrid. Fix the issue with editing of spanned cells
|
|
15
|
+
- TreeGrid. Now it is possible to collapse/expand the content of the first cell of the first column even if it is included into the colspan
|
|
16
|
+
- Fix issues with AJAX helper
|
|
17
|
+
|
|
1
18
|
# Version 7.3.13 (December 14, 2022)
|
|
2
19
|
|
|
3
20
|
### Fixes
|