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.
@@ -29,4 +29,5 @@ export declare class Exporter {
29
29
  private getFlatCSV;
30
30
  private _getCSV;
31
31
  protected _rawExport(config: IPNGConfig | IPDFConfig, mode: TExportType, view: any): void;
32
+ private _getHash;
32
33
  }
@@ -92,4 +92,5 @@ export declare class Grid extends View implements IGrid {
92
92
  private _normalizeConfig;
93
93
  private _normalizeSpans;
94
94
  private _autoScroll;
95
+ private _applyAutoWidth;
95
96
  }
@@ -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, container: HTMLElement, targetClass: string, def?: ICellCss): ICellCss;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-suite",
3
- "version": "8.3.9",
3
+ "version": "8.3.11",
4
4
  "description": "dhtmlxSuite widget",
5
5
  "homepage":"https://docs.dhtmlx.com",
6
6
  "license":"GPL",
package/readme.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
3
 
4
- dhtmlxSuite v.8.3.9 Standard
4
+ dhtmlxSuite v.8.3.11 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,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