dhx-chart 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/chart.min.css +1 -1
- package/codebase/chart.min.js +3 -3
- package/codebase/chart.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 +3 -0
- package/codebase/types/ts-grid/sources/ui/editors/editors.d.ts +0 -2
|
@@ -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