dhx-suite 7.3.6 → 7.3.7

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.
@@ -4,6 +4,7 @@ export interface IKeyManager {
4
4
  addHotKey(key: string, handler: any): void;
5
5
  removeHotKey(key?: string, context?: any): void;
6
6
  exist(key: string): boolean;
7
+ getKeyStorageLength(): number;
7
8
  }
8
9
  export declare class KeyManager implements IKeyManager {
9
10
  private _keysStorage;
@@ -14,4 +15,5 @@ export declare class KeyManager implements IKeyManager {
14
15
  addHotKey(key: string, handler: any): void;
15
16
  removeHotKey(key?: string, handler?: anyFunction): void;
16
17
  exist(key: string): boolean;
18
+ getKeyStorageLength(): number;
17
19
  }
@@ -48,6 +48,7 @@ export declare class TreeCollection<T extends IDataItem = IDataItem> extends Dat
48
48
  protected _removeCore(id: any): void;
49
49
  protected _addToOrder(_order: any, obj: any, index: number): void;
50
50
  protected _parse_data(data: any, parent?: string | number): void;
51
+ protected _applySmart(): void;
51
52
  private _fastDeleteChilds;
52
53
  private _recursiveFilter;
53
54
  private _serialize;
@@ -51,6 +51,7 @@ export declare class Grid extends View implements IGrid {
51
51
  getHeaderFilter(colId: Id): HTMLElement | Combobox;
52
52
  /** @deprecated See a documentation: https://docs.dhtmlx.com/ */
53
53
  edit(rowId: Id, colId: Id, editorType?: EditorType): void;
54
+ paint(): void;
54
55
  protected _createView(): any;
55
56
  protected _parseColumns(configChanged?: boolean): void;
56
57
  protected _parseData(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-suite",
3
- "version": "7.3.6",
3
+ "version": "7.3.7",
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.7.3.6 Standard
4
+ dhtmlxSuite v.7.3.7 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,19 @@
1
+ # Version 7.3.7 (September 5, 2022)
2
+
3
+ ### Fixes
4
+
5
+ - Grid. Fix the issue with disappearing of the comboFilter of a visible column after you hide any other column
6
+ - Grid. Fix the issue with display of the comboFilter for frozen columns when scrolling Grid horizontally
7
+ - Grid. Fix the issue with display of tooltips for columns with checkboxes
8
+ - Grid. Fix the issue with the "canRowDrop" event
9
+ - Grid. Fix the issue with work of key navigation for Grid initialized in a collapsed Layout cell
10
+ - Ribbon. Fix the issue with the "label" property of the Input control
11
+ - Suite. Fix the issue with work of the "promiz" webpack together with ES6 modules
12
+ - Tabbar. Fix the issue with work of Tabbar in IE11
13
+ - Toolbar. Fix the issue with the "label" property of the Datepicker control
14
+ - Toolbar. Fix the issue with the "label" property of the Input control
15
+ - TreeCollection. Fix work of the "add" and "smartFilter" properties of the "config" parameter of the "filter()" method
16
+
1
17
  # Version 7.3.6 (August 8, 2022)
2
18
 
3
19
  ### Fixes