dhx-chart 8.2.0 → 8.2.2

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.
@@ -19,6 +19,7 @@ export declare class Exporter {
19
19
  color: string;
20
20
  background: string;
21
21
  fontSize: number;
22
+ bold: boolean;
22
23
  };
23
24
  };
24
25
  };
@@ -74,7 +74,6 @@ export declare class Grid extends View implements IGrid {
74
74
  protected _getRowGhost(ids: Id[]): HTMLDivElement;
75
75
  protected _initHooks(): {
76
76
  didMount: () => void;
77
- didUnmount: (vm: any) => void;
78
77
  };
79
78
  private _canDataParse;
80
79
  private _init;
@@ -174,6 +174,16 @@ export interface IProGrid extends IGrid {
174
174
  export declare type EditorType = "input" | "select" | "datePicker" | "checkbox" | "combobox" | "multiselect" | "textarea";
175
175
  export interface IComboEditorConfig {
176
176
  newOptions?: boolean;
177
+ readOnly?: boolean;
178
+ selectAllButton?: boolean;
179
+ placeholder?: string;
180
+ itemHeight?: number | string;
181
+ listHeight?: number | string;
182
+ css?: string;
183
+ template?: (item: {
184
+ id: Id;
185
+ value: string;
186
+ }) => string;
177
187
  }
178
188
  export interface IBaseHandlersMap {
179
189
  [key: string]: (...args: any[]) => any;
@@ -314,9 +324,10 @@ export interface IPositions {
314
324
  yEnd: number;
315
325
  }
316
326
  export interface ICellCss {
317
- color: string;
318
- background: string;
319
- fontSize: number;
327
+ color?: string;
328
+ background?: string;
329
+ fontSize?: number;
330
+ bold?: boolean;
320
331
  }
321
332
  export interface IExportData {
322
333
  columns: Array<{
@@ -521,6 +532,7 @@ export interface ICell {
521
532
  export interface IRow {
522
533
  id?: Id;
523
534
  height?: number;
535
+ hidden?: boolean;
524
536
  $height?: number;
525
537
  [key: string]: any;
526
538
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-chart",
3
- "version": "8.2.0",
3
+ "version": "8.2.2",
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.0 Standard
4
+ dhtmlxChart v.8.2.2 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.2 (September 13, 2023)
2
+ ----------------------------
3
+
4
+ Version 8.2.1 (August 31, 2023)
5
+ ----------------------------
6
+
1
7
  Version 8.2.0 (August 29, 2023)
2
8
 
3
9
  ### Updates