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.
@@ -96,6 +96,6 @@ export declare class Combo extends Label implements ICombo {
96
96
  protected _validationStatus(): any;
97
97
  protected _getRootView(): any;
98
98
  protected _draw(): any;
99
- private _exsistData;
99
+ private _existData;
100
100
  private _getItemText;
101
101
  }
@@ -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
- private _value;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-suite",
3
- "version": "8.2.6",
3
+ "version": "8.2.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.8.2.6 Standard
4
+ dhtmlxSuite v.8.2.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,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
- }