dhx-suite 8.3.9 → 8.3.10
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.js +3 -3
- package/codebase/suite.min.js.map +1 -1
- package/codebase/types/ts-grid/sources/Exporter.d.ts +1 -0
- package/codebase/types/ts-grid/sources/Grid.d.ts +1 -0
- package/codebase/types/ts-grid/sources/helpers/main.d.ts +1 -1
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +10 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ICellCss, ICol, IFooter, IGridConfig, IHeader, IRow, ISpan } from "../types";
|
|
2
2
|
export declare function transpose(arr: any[][], transform?: any): any[][];
|
|
3
|
-
export declare function getStyleByClass(cssClass: string,
|
|
3
|
+
export declare function getStyleByClass(cssClass: string, targetClass: string, def: ICellCss, container?: HTMLElement): ICellCss;
|
|
4
4
|
export declare function removeHTMLTags(str: string): string;
|
|
5
5
|
export declare function isCssSupport(property: string, value: string): boolean;
|
|
6
6
|
export declare function isRowEmpty(row: IRow): boolean;
|
package/package.json
CHANGED
package/readme.txt
CHANGED
package/whatsnew.txt
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
# Version 8.3.10 (April 3, 2024)
|
|
2
|
+
|
|
3
|
+
### Fixes
|
|
4
|
+
|
|
5
|
+
- Calendar. The 29th of February isn't rendered for some date formats
|
|
6
|
+
- Grid/TreeGrid. Row CSS isn't applied in the exported Excel file
|
|
7
|
+
- Grid/TreeGrid. Row autoHeight fails on changing the order of columns by dragging
|
|
8
|
+
- Grid/TreeGrid. Custom header sorting doesn't work for the headers containing HTML
|
|
9
|
+
- Grid/TreeGrid. Incorrect filtering via comboFilter
|
|
10
|
+
|
|
1
11
|
# Version 8.3.9 (March 18, 2024)
|
|
2
12
|
|
|
3
13
|
### Fixes
|