dhx-chart 8.2.5 → 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;
@@ -11,7 +11,7 @@ export declare class Layout extends Cell implements ILayout {
11
11
  constructor(parent: any, config: ILayoutConfig);
12
12
  destructor(): void;
13
13
  toVDOM(): any;
14
- removeCell(id: string): any;
14
+ removeCell(id: string): void;
15
15
  addCell(config: ICellConfig, index?: number): void;
16
16
  getId(index: number): string;
17
17
  getRefs(name: string): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-chart",
3
- "version": "8.2.5",
3
+ "version": "8.2.7",
4
4
  "description": "dhtmlxChart widget",
5
5
  "homepage":"https://docs.dhtmlx.com/chart",
6
6
  "license":"GPL",
package/readme.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
3
 
4
- dhtmlxChart v.8.2.5 Standard
4
+ dhtmlxChart 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,9 @@
1
+ Version 8.2.7 (October 19, 2023)
2
+ ----------------------------
3
+
4
+ Version 8.2.6 (October 12, 2023)
5
+ ----------------------------
6
+
1
7
  Version 8.2.5 (October 12, 2023)
2
8
  ----------------------------
3
9
 
@@ -1,2 +0,0 @@
1
- import { IRendererConfig, ICol, IEditor } from "../../types";
2
- export declare function getEditor(row: any, col: ICol, conf: IRendererConfig): IEditor;