dhx-suite 9.1.3 → 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/suite.min.js +3 -3
- package/codebase/suite.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/codebase/types/ts-grid/sources/helpers/data.d.ts +1 -0
- package/codebase/types/ts-menu/sources/ContextMenu.d.ts +0 -1
- package/codebase/types/ts-navbar/sources/Navbar.d.ts +0 -1
- package/package.json +3 -3
- package/readme.txt +20 -8
- package/whatsnew.txt +22 -0
|
@@ -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
|
}
|
|
@@ -25,5 +25,6 @@ export declare const getTreeCellWidthOffset: (row: IRow, toArrow?: boolean) => n
|
|
|
25
25
|
export declare const getMaxColsWidth: (rows: IRow[], cols: ICol[], config: IContainerConfig, target: AdjustTargetType) => IColumnsWidth;
|
|
26
26
|
export declare function applyPattern(value: string | number | boolean, col: ICol): string | number | boolean;
|
|
27
27
|
export declare function getEditorOptions(col: ICol, row?: IRow): TOption[];
|
|
28
|
+
export declare function getOptionValue(value: string, column: ICol): string;
|
|
28
29
|
export declare function getValueForNumberColumn(col: ICol, value: any): any;
|
|
29
30
|
export declare function getEditorValue(value: any, options: TOption[]): any;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Navbar, IMenuElement, ContextMode, INavbar } from "../../ts-navbar";
|
|
2
2
|
export declare class ContextMenu extends Navbar<IMenuElement> implements INavbar {
|
|
3
|
-
protected _isContextMenu: boolean;
|
|
4
3
|
private _mode;
|
|
5
4
|
constructor(element?: string | HTMLElement, config?: any);
|
|
6
5
|
showAt(elem: HTMLElement | MouseEvent | TouchEvent | string, showAt?: ContextMode): void;
|
|
@@ -17,7 +17,6 @@ export declare abstract class Navbar<T extends IItem = IItem> extends View {
|
|
|
17
17
|
bottom: number;
|
|
18
18
|
zIndex?: number;
|
|
19
19
|
};
|
|
20
|
-
protected _isContextMenu: boolean;
|
|
21
20
|
protected _handlers: IHandlers;
|
|
22
21
|
protected _currentRoot: Id;
|
|
23
22
|
protected _factory: (item: T, asMenuItem?: boolean) => any;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dhx-suite",
|
|
3
|
-
"version": "9.1.
|
|
3
|
+
"version": "9.1.5",
|
|
4
4
|
"description": "dhtmlxSuite widget",
|
|
5
|
-
"homepage":"https://docs.dhtmlx.com",
|
|
5
|
+
"homepage":"https://docs.dhtmlx.com/suite/",
|
|
6
6
|
"license":"GPL",
|
|
7
7
|
"bugs":{
|
|
8
|
-
"url" : "https://forum.dhtmlx.com",
|
|
8
|
+
"url" : "https://forum.dhtmlx.com/c/suite",
|
|
9
9
|
"email" : "support@dhtmlx.com"
|
|
10
10
|
},
|
|
11
11
|
"main": "codebase/suite.min.js",
|
package/readme.txt
CHANGED
|
@@ -1,15 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
DHTMLX Suite
|
|
2
|
+
============
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
This software is covered by GPL-2.0 License. Usage without proper license is prohibited.
|
|
4
|
+
Version 9.1.5, Standard
|
|
6
5
|
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
License
|
|
7
|
+
------------
|
|
9
8
|
|
|
9
|
+
GPL-2.0 License, check license.txt for more details
|
|
10
|
+
|
|
11
|
+
How to start
|
|
12
|
+
------------
|
|
13
|
+
|
|
14
|
+
- Check our how-to-start tutorials https://docs.dhtmlx.com/suite/
|
|
15
|
+
- Explore code samples https://snippet.dhtmlx.com/cwiuna9l?tag=suite
|
|
10
16
|
|
|
11
17
|
Useful links
|
|
12
18
|
-------------
|
|
13
19
|
|
|
14
|
-
-
|
|
15
|
-
https://
|
|
20
|
+
- Product information
|
|
21
|
+
https://dhtmlx.com/docs/products/dhtmlxSuite/
|
|
22
|
+
|
|
23
|
+
- Online documentation
|
|
24
|
+
https://docs.dhtmlx.com/suite/
|
|
25
|
+
|
|
26
|
+
- Support forum
|
|
27
|
+
https://forum.dhtmlx.com/c/suite
|
package/whatsnew.txt
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# Version 9.1.5 (June 5, 2025)
|
|
2
|
+
|
|
3
|
+
### Fixes
|
|
4
|
+
|
|
5
|
+
- DataCollection/TreeCollection. Fixed sorting method in smart sorting mode when sorting more than three parameters
|
|
6
|
+
- Grid. The `multiselect/select` editor passes the id instead of the value, while exporting data to an .xslx file
|
|
7
|
+
- Grid. Sorting by the third column disregards the prior two-column sort order
|
|
8
|
+
|
|
9
|
+
# Version 9.1.4 (June 2, 2025)
|
|
10
|
+
|
|
11
|
+
### Fixes
|
|
12
|
+
|
|
13
|
+
- Grid. A critical error during cell re-editing after unmounting the component
|
|
14
|
+
- Grid. The value is not saved during manual editing of DateEditor
|
|
15
|
+
- Grid. The issue with group headers rendering the ids instead of values
|
|
16
|
+
- Grid. The localization issue
|
|
17
|
+
- Grid. Incorrect display of a Japanese (Kanji/Kana) text without spaces in a single cell
|
|
18
|
+
- Grid. Issues in the functionality of the `autoHeight` configuration property
|
|
19
|
+
- Grid. Incorrect work of the `adjust` property of a column
|
|
20
|
+
- Layout. A console error on collapsing the first cell
|
|
21
|
+
- TreeCollection. Reloading data after component initialization
|
|
22
|
+
|
|
1
23
|
# Version 9.1.3 (April 3, 2025)
|
|
2
24
|
|
|
3
25
|
### Fixes
|