dhx-chart 7.3.8 → 7.3.9

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.
@@ -25,9 +25,9 @@ export declare class Combobox extends View implements ICombobox {
25
25
  disable(): void;
26
26
  isDisabled(): boolean;
27
27
  clear(): void | boolean;
28
- getValue<T extends boolean = false>(asArray?: T): T extends true ? string[] : string;
28
+ getValue<T extends boolean = false>(asArray?: T): T extends true ? Id[] : Id;
29
29
  setValue(ids: Id[] | Id): void | boolean;
30
- addOption(value: string): void;
30
+ addOption(value: string, join?: boolean): void;
31
31
  destructor(): void;
32
32
  /** @deprecated See a documentation: https://docs.dhtmlx.com/ */
33
33
  setState(state: State): void;
@@ -21,7 +21,7 @@ export interface IComboboxConfig {
21
21
  helpMessage?: string;
22
22
  hiddenLabel?: boolean;
23
23
  css?: string;
24
- value?: string | string[];
24
+ value?: Id | Id[];
25
25
  newOptions?: boolean;
26
26
  htmlEnable?: boolean;
27
27
  /** @deprecated See a documentation: https://docs.dhtmlx.com/ */
@@ -73,9 +73,9 @@ export interface ICombobox {
73
73
  clear(): void;
74
74
  focus(): void;
75
75
  blur(): void;
76
- getValue(asArray?: boolean): Id[] | string;
76
+ getValue(asArray?: boolean): Id[] | Id;
77
77
  setValue(ids: Id[] | Id): void;
78
- addOption(value: string): void;
78
+ addOption(value: string, join?: boolean): void;
79
79
  /** @deprecated See a documentation: https://docs.dhtmlx.com/ */
80
80
  setState(state: State): void;
81
81
  }
@@ -29,7 +29,7 @@ export declare class Cell extends View implements ICell {
29
29
  destructor(): void;
30
30
  getWidget(): IViewLike;
31
31
  getCellView(): any;
32
- attach(name: any, config?: any): IViewLike;
32
+ attach(component: any, config?: any): IViewLike;
33
33
  attachHTML(html: string): void;
34
34
  toVDOM(nodes?: any[]): any;
35
35
  protected _getCss(_content?: boolean): string;
@@ -52,7 +52,7 @@ export interface ICell extends IView {
52
52
  id: string;
53
53
  config: ICellConfig;
54
54
  events: IEventSystem<LayoutEvents, ILayoutEventHandlersMap>;
55
- attach(name: string | IViewFn | IView | IViewConstructor, config?: any): IViewLike;
55
+ attach(component: string | IViewFn | IView | IViewConstructor, config?: any): IViewLike;
56
56
  attachHTML(html: string): void;
57
57
  isVisible(): boolean;
58
58
  toVDOM(nodes?: any[]): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-chart",
3
- "version": "7.3.8",
3
+ "version": "7.3.9",
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.7.3.8 Standard
4
+ dhtmlxChart v.7.3.9 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,6 @@
1
+ Version 7.3.9 (September 26, 2022)
2
+ ----------------------------
3
+
1
4
  Version 7.3.8 (September 19, 2022)
2
5
  ----------------------------
3
6