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.
- package/codebase/suite.min.css +1 -1
- package/codebase/suite.min.js +3 -3
- package/codebase/suite.min.js.map +1 -1
- package/codebase/types/ts-form/sources/elements/combo.d.ts +1 -0
- package/codebase/types/ts-form/sources/elements/input.d.ts +1 -5
- package/codebase/types/ts-grid/sources/ui/content/ComboFilter.d.ts +2 -2
- package/codebase/types/ts-grid/sources/ui/editors/ComboboxEditor.d.ts +2 -2
- package/codebase/types/ts-tree/sources/Tree.d.ts +2 -0
- package/codebase/types/ts-tree/sources/types.d.ts +2 -1
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +11 -0
|
@@ -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 {
|
|
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():
|
|
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 {
|
|
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:
|
|
12
|
+
protected _input: ProCombobox;
|
|
13
13
|
constructor(row: any, col: ICol, config: IRendererConfig);
|
|
14
14
|
endEdit(withoutSave?: boolean): void;
|
|
15
15
|
toHTML(): any;
|
|
@@ -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
package/readme.txt
CHANGED
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
|