dhx-suite 8.4.0 → 8.4.1

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.
@@ -98,4 +98,5 @@ export declare class Combo extends Label implements ICombo {
98
98
  protected _draw(): any;
99
99
  private _existData;
100
100
  private _getItemText;
101
+ private _isValue;
101
102
  }
@@ -75,6 +75,7 @@ export declare class Input extends Label implements IInput {
75
75
  protected _propsItem: string[];
76
76
  protected _props: string[];
77
77
  protected _value: any;
78
+ protected _input: HTMLInputElement;
78
79
  constructor(container: HTMLElement | string, config?: {});
79
80
  destructor(): void;
80
81
  setProperties(propertyConfig: IInputProps): void;
@@ -103,9 +104,4 @@ export declare class Input extends Label implements IInput {
103
104
  onkeydown: (event: KeyboardEvent) => void;
104
105
  };
105
106
  protected _draw(): any;
106
- protected _getHooks(): {
107
- didRecycle: (_oldNode: any, newNode: any) => void;
108
- didInsert: (node: any) => void;
109
- willRemove: (node: any) => void;
110
- };
111
107
  }
@@ -1,4 +1,4 @@
1
- import { Combobox } from "../../../../ts-combobox";
1
+ import { ProCombobox } from "../../../../ts-combobox";
2
2
  import { IEventSystem } from "../../../../ts-common/events";
3
3
  import { IHeaderFilter, HeaderFilterEvent, ICol, IRendererConfig, IComboFilterConfig } from "../../types";
4
4
  export declare class ComboFilter implements IHeaderFilter {
@@ -14,7 +14,7 @@ export declare class ComboFilter implements IHeaderFilter {
14
14
  constructor(column: any, config?: any, data?: any, value?: any, conf?: any);
15
15
  protected initFilter(): void;
16
16
  protected initHandlers(): void;
17
- getFilter(): Combobox;
17
+ getFilter(): ProCombobox;
18
18
  setValue(value: string | string[], silent?: boolean): void;
19
19
  clear(silent?: boolean): void;
20
20
  focus(): void;
@@ -1,5 +1,5 @@
1
1
  import { ICol, IRendererConfig, IEditor, IRow } from "../../types";
2
- import { Combobox } from "../../../../ts-combobox";
2
+ import { ProCombobox } from "../../../../ts-combobox";
3
3
  export declare class ComboboxEditor implements IEditor {
4
4
  protected _handlers: {
5
5
  [key: string]: (...args: any[]) => void;
@@ -9,7 +9,7 @@ export declare class ComboboxEditor implements IEditor {
9
9
  col: ICol;
10
10
  };
11
11
  protected _config: IRendererConfig;
12
- protected _input: Combobox;
12
+ protected _input: ProCombobox;
13
13
  constructor(row: any, col: ICol, config: IRendererConfig);
14
14
  endEdit(withoutSave?: boolean): void;
15
15
  toHTML(): any;
@@ -54,5 +54,7 @@ export declare class Tree<T extends object = object> extends View implements ITr
54
54
  private _drawItems;
55
55
  private _updateItemCheck;
56
56
  private _updateParents;
57
+ private _updateCheckedStatus;
58
+ private _normalizeMark;
57
59
  private _initHotkeys;
58
60
  }
@@ -11,8 +11,9 @@ export interface ITreeState {
11
11
  export interface ITreeItem extends IDataItem {
12
12
  parent: string;
13
13
  opened?: boolean;
14
- $mark?: SelectStatus;
15
14
  checkbox?: boolean;
15
+ checked?: boolean;
16
+ $mark?: SelectStatus;
16
17
  $autoload?: boolean;
17
18
  $selected?: boolean;
18
19
  $editor?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-suite",
3
- "version": "8.4.0",
3
+ "version": "8.4.1",
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.4.0 Standard
4
+ dhtmlxSuite v.8.4.1 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,14 @@
1
+ # Version 8.4.1 (July 25, 2024)
2
+
3
+ ### Fixes
4
+
5
+ - Combobox. Custom scroll not working
6
+ - Form. The value selected in the Combo control restores after the options reloading
7
+ - Form. The input destructor issue while using Optimus
8
+ - Form. The `enable()` method fails when a form contains a Fieldset control with a spacer
9
+ - Grid/TreeGrid. Row selection gets lost after dragging a column
10
+ - Tree. Checkbox states are not displayed in the serialized data
11
+
1
12
  # Version 8.4 (July 16, 2024)
2
13
 
3
14
  ### New functionality