dhx-suite 8.3.9 → 8.3.11
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/data.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 +22 -0
|
@@ -26,3 +26,4 @@ export declare const getMaxColsWidth: (rows: IRow[], cols: ICol[], config?: ICon
|
|
|
26
26
|
export declare function toFormat(value: any, type?: colType, format?: string): any;
|
|
27
27
|
export declare function getEditorOptions(col: ICol, row?: IRow): TOption[];
|
|
28
28
|
export declare function getValueForNumberColumn(col: ICol, value: any): any;
|
|
29
|
+
export declare function getEditorValue(value: any, options: TOption[]): any;
|
|
@@ -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,25 @@
|
|
|
1
|
+
# Version 8.3.11 (May 8, 2024)
|
|
2
|
+
|
|
3
|
+
### Fixes
|
|
4
|
+
|
|
5
|
+
- DataCollection/TreeCollection. Fix the work of the `serialize()` method for the CSV format
|
|
6
|
+
- Form. Fix the issue with the `maxlength` property that made inputs to be required
|
|
7
|
+
- Grid/TreeGrid. Fix the drag-n-drop functionality for a grid initialized in a web component
|
|
8
|
+
- Grid/TreeGrid. Fix the functionality of the comboFilter
|
|
9
|
+
- Grid/TreeGrid. Fix the `adjust` property for a cell with the "combobox" editor the options of which are set via the `id` and `value` properties
|
|
10
|
+
- Grid/TreeGrid. Fix the error caused by the call of the `addCellCss()` method for a hidden column
|
|
11
|
+
- Layout. Fix the error caused by the `destructor` call
|
|
12
|
+
|
|
13
|
+
# Version 8.3.10 (April 3, 2024)
|
|
14
|
+
|
|
15
|
+
### Fixes
|
|
16
|
+
|
|
17
|
+
- Calendar. The 29th of February isn't rendered for some date formats
|
|
18
|
+
- Grid/TreeGrid. Row CSS isn't applied in the exported Excel file
|
|
19
|
+
- Grid/TreeGrid. Row autoHeight fails on changing the order of columns by dragging
|
|
20
|
+
- Grid/TreeGrid. Custom header sorting doesn't work for the headers containing HTML
|
|
21
|
+
- Grid/TreeGrid. Incorrect filtering via comboFilter
|
|
22
|
+
|
|
1
23
|
# Version 8.3.9 (March 18, 2024)
|
|
2
24
|
|
|
3
25
|
### Fixes
|