dhx-suite 8.2.6 → 8.2.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.
- package/codebase/suite.min.css +1 -1
- package/codebase/suite.min.js +3 -3
- package/codebase/suite.min.js.map +1 -0
- package/codebase/types/ts-form/sources/elements/combo.d.ts +1 -1
- package/codebase/types/ts-form/sources/elements/input.d.ts +1 -1
- package/codebase/types/ts-form/sources/elements/textarea.d.ts +1 -0
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +10 -0
- package/codebase/types/ts-grid/sources/ui/content/SelectFilter.d.ts +0 -20
|
@@ -74,7 +74,7 @@ export declare class Input extends Label implements IInput {
|
|
|
74
74
|
events: IEventSystem<ItemEvent, IInputEventHandlersMap>;
|
|
75
75
|
protected _propsItem: string[];
|
|
76
76
|
protected _props: string[];
|
|
77
|
-
|
|
77
|
+
protected _value: any;
|
|
78
78
|
constructor(container: HTMLElement | string, config?: {});
|
|
79
79
|
destructor(): void;
|
|
80
80
|
setProperties(propertyConfig: IInputProps): void;
|
|
@@ -60,6 +60,7 @@ export declare class Textarea extends Input implements ITextArea {
|
|
|
60
60
|
protected _propsItem: string[];
|
|
61
61
|
protected _props: string[];
|
|
62
62
|
getValue(): string;
|
|
63
|
+
isFocused(): boolean;
|
|
63
64
|
focus(): void;
|
|
64
65
|
blur(): void;
|
|
65
66
|
setProperties(propertyConfig: ITextAreaProps & IInputProps): void;
|
package/package.json
CHANGED
package/readme.txt
CHANGED
package/whatsnew.txt
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
# Version 8.2.7 (October 19, 2023)
|
|
2
|
+
|
|
3
|
+
### Fixes
|
|
4
|
+
|
|
5
|
+
- Combobox. Fix the absence of the placeholder if Combobox has a template
|
|
6
|
+
- Form. Combo control. Fix the incorrect position of preMessage after the call of setProperties()
|
|
7
|
+
- Form. Input/Textarea controls. Fix disappearance of the entered value on entering the full screen mode
|
|
8
|
+
- Form. Toggle control. Fix the break of the Toggle button styles in case of simultaneous usage of the Suite and Vault sources on a page
|
|
9
|
+
- Grid/TreeGrid. Fix incorrect autoWidth calculation in case of a big number of columns
|
|
10
|
+
|
|
1
11
|
# Version 8.2.6 (October 12, 2023)
|
|
2
12
|
|
|
3
13
|
### Fixes
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { VNode } from "../../../../ts-common/dom";
|
|
2
|
-
import { IEventSystem } from "../../../../ts-common/events";
|
|
3
|
-
import { IBaseHandlersMap, IHeaderFilter, HeaderFilterEvent, ICol, IRendererConfig } from "../../types";
|
|
4
|
-
export declare class SelectFilter implements IHeaderFilter {
|
|
5
|
-
column: ICol;
|
|
6
|
-
config: IRendererConfig;
|
|
7
|
-
data: any[];
|
|
8
|
-
value: string;
|
|
9
|
-
events: IEventSystem<HeaderFilterEvent>;
|
|
10
|
-
private _isFocused;
|
|
11
|
-
protected _handlers: IBaseHandlersMap;
|
|
12
|
-
constructor(column: any, config: any, uniqueData: any, value: any);
|
|
13
|
-
toHTML(): VNode;
|
|
14
|
-
getFilter(): any;
|
|
15
|
-
setValue(value: string, silent?: boolean): void;
|
|
16
|
-
clear(silent?: boolean): void;
|
|
17
|
-
focus(): void;
|
|
18
|
-
blur(): void;
|
|
19
|
-
private initHandlers;
|
|
20
|
-
}
|