dhx-chart 9.1.4 → 9.1.5
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.js +3 -3
- package/codebase/chart.min.js.map +1 -1
- package/codebase/types/ts-data/sources/datacollection/sort.d.ts +1 -1
- package/codebase/types/ts-data/sources/datacollection.d.ts +1 -1
- package/codebase/types/ts-data/sources/treecollection.d.ts +1 -1
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +10 -6
|
@@ -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(
|
|
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(
|
|
63
|
+
protected _applySorters(): void;
|
|
64
64
|
}
|
package/package.json
CHANGED
package/readme.txt
CHANGED
package/whatsnew.txt
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
Version 9.1.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
Version 9.1.5 (June 5, 2025)
|
|
2
|
+
|
|
3
|
+
- DataCollection/TreeCollection. Fixed sorting method in smart sorting mode when sorting more than three parameters
|
|
4
|
+
|
|
5
|
+
Version 9.1.4 (June 3, 2025)
|
|
6
|
+
----------------------------
|
|
7
|
+
|
|
8
|
+
Version 9.1.3 (April 3, 2025)
|
|
9
|
+
----------------------------
|
|
10
|
+
|
|
7
11
|
# Version 9.1.2 (March 17, 2025)
|
|
8
12
|
|
|
9
13
|
### Fixes
|