dhx-suite 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.
- package/codebase/suite.min.css +1 -1
- package/codebase/suite.min.js +3 -3
- package/codebase/types/ts-grid/sources/types.d.ts +1 -0
- package/codebase/types/ts-grid/sources/ui/Cells.d.ts +8 -8
- package/codebase/types/ts-grid/sources/ui/FixedRows.d.ts +2 -1
- package/codebase/types/ts-message/sources/tooltip.d.ts +1 -1
- package/codebase/types/ts-message/sources/types.d.ts +4 -1
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +10 -0
|
@@ -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 | IRendererConfig | GridEvents | typeof handleMouse)[];
|
|
7
|
+
onmouseover: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
|
|
8
|
+
onmousedown: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
|
|
9
|
+
ondblclick: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
|
|
10
|
+
oncontextmenu: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
|
|
11
|
+
ontouchstart: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
|
|
12
|
+
ontouchmove: (number | IRendererConfig | GridSystemEvents | typeof handleMouse)[];
|
|
13
|
+
ontouchend: (number | IRendererConfig | GridSystemEvents | 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,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
package/readme.txt
CHANGED
package/whatsnew.txt
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
# Version 7.3.3 (April 25, 2022)
|
|
2
|
+
|
|
3
|
+
### Fixes
|
|
4
|
+
|
|
5
|
+
- Form. Combo control. Fix the issue with re-setting of the same value of the readonly Combo control after the clear() method of Form was called
|
|
6
|
+
- Form. Fix the issue which caused the getValue() method to return the null value as a string
|
|
7
|
+
- Grid. Fix the issue with filtering of a big data set which caused the symbols to get lost when typing them into the header filter. Now you have more time for typing symbols into the input filter of Grid
|
|
8
|
+
- Toolbar. Fix the issue which caused the getState() method not to return the value of a datePicker
|
|
9
|
+
- Vault and Suite. Fix the conflict appeared between CSS styles of the Vault and Suite scrollbars when including source files of the components to the one page
|
|
10
|
+
|
|
1
11
|
# Version 7.3.2 (April 4, 2022)
|
|
2
12
|
|
|
3
13
|
### Fixes
|