dhx-chart 9.1.4 → 9.1.6

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.
@@ -1,6 +1,6 @@
1
1
  import { ISortMode } from "../types";
2
2
  export declare class Sort {
3
- sort(array: any[], by: ISortMode, perm?: ISortMode): void;
3
+ sort(array: any[], sorters: ISortMode[]): any[];
4
4
  private _createSorter;
5
5
  private _checkVal;
6
6
  private _sort;
@@ -85,7 +85,7 @@ export declare class DataCollection<T extends IDataItem = IDataItem> implements
85
85
  protected _approximate(data: any[], values: string[], maxNum: number): any[];
86
86
  protected _onChange(status: Statuses, id: Id, obj: any): void;
87
87
  protected _addToOrder(array: any[], obj: any, index?: number): void;
88
- protected _applySorters(by?: ISortMode): void;
88
+ protected _applySorters(): void;
89
89
  protected _applyFilters(rule?: IFilterMode | IFilterCallback): void;
90
90
  protected _reapplyFilters(): void;
91
91
  protected _getRuleCallback(rule: IFilterMode): IFilterCallback;
@@ -60,5 +60,5 @@ export declare class TreeCollection<T extends IDataItem = IDataItem> extends Dat
60
60
  private _applyFilter;
61
61
  protected _normalizeFilters(filters: any): any;
62
62
  protected _checkFilterRule(rule: IFilterMode | IFilterComplexMode | IFilterCallback): boolean;
63
- protected _applySorters(by?: ISortMode): void;
63
+ protected _applySorters(): void;
64
64
  }
@@ -27,4 +27,5 @@ export declare function applyPattern(value: string | number | boolean, col: ICol
27
27
  export declare function getEditorOptions(col: ICol, row?: IRow): TOption[];
28
28
  export declare function getOptionValue(value: string, column: ICol): string;
29
29
  export declare function getValueForNumberColumn(col: ICol, value: any): any;
30
+ export declare function getComboEditorValue(value: any, col: ICol, row: IRow): any;
30
31
  export declare function getEditorValue(value: any, options: TOption[]): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-chart",
3
- "version": "9.1.4",
3
+ "version": "9.1.6",
4
4
  "description": "dhtmlxChart widget",
5
5
  "homepage":"https://docs.dhtmlx.com/suite/chart/",
6
6
  "license":"GPL",
package/readme.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  DHTMLX Chart
2
2
  ============
3
3
 
4
- Version 9.1.4, Standard
4
+ Version 9.1.6, Standard
5
5
 
6
6
  License
7
7
  ------------
package/whatsnew.txt CHANGED
@@ -1,9 +1,19 @@
1
- Version 9.1.4 (June 3, 2025)
2
- ----------------------------
3
-
4
- Version 9.1.3 (April 3, 2025)
5
- ----------------------------
6
-
1
+ # Version 9.1.6 (June 23, 2025)
2
+
3
+ ### Fixes
4
+
5
+ - The issue with displaying of the Treemap chart with groups
6
+
7
+ Version 9.1.5 (June 5, 2025)
8
+
9
+ - DataCollection/TreeCollection. Fixed sorting method in smart sorting mode when sorting more than three parameters
10
+
11
+ Version 9.1.4 (June 3, 2025)
12
+ ----------------------------
13
+
14
+ Version 9.1.3 (April 3, 2025)
15
+ ----------------------------
16
+
7
17
  # Version 9.1.2 (March 17, 2025)
8
18
 
9
19
  ### Fixes