dhx-suite 8.3.7 → 8.3.8
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.css +1 -1
- package/codebase/suite.min.js +3 -3
- package/codebase/suite.min.js.map +1 -1
- package/codebase/types/ts-data/sources/dataproxy.d.ts +1 -1
- package/codebase/types/ts-form/sources/Form.d.ts +2 -1
- package/codebase/types/ts-form/sources/elements/input.d.ts +5 -0
- package/codebase/types/ts-grid/sources/Selection.d.ts +0 -1
- package/codebase/types/ts-grid/sources/helpers/cells.d.ts +2 -1
- package/codebase/types/ts-grid/sources/types.d.ts +0 -1
- package/codebase/types/ts-grid/sources/ui/Cells.d.ts +0 -1
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +16 -0
|
@@ -3,7 +3,7 @@ export declare class DataProxy implements IDataProxy {
|
|
|
3
3
|
url: string;
|
|
4
4
|
config: any;
|
|
5
5
|
protected _url: string;
|
|
6
|
-
constructor(url: string, config?:
|
|
6
|
+
constructor(url: string, config?: {});
|
|
7
7
|
updateUrl(url?: string, params?: any): void;
|
|
8
8
|
load<T = string>(): Promise<T | void>;
|
|
9
9
|
save(data: any, mode: string): Promise<any>;
|
|
@@ -42,7 +42,8 @@ export declare class Form extends View implements IForm {
|
|
|
42
42
|
getRootView(): any;
|
|
43
43
|
protected _addLayoutItem(item: IItemConfig): ICellConfig;
|
|
44
44
|
protected _initItemHandlers(item: IItemConfig, name: string): void;
|
|
45
|
-
protected _changeProps(name: any, props: any): void;
|
|
45
|
+
protected _changeProps(name: any, props: any, config: any): void;
|
|
46
|
+
private getCellCSS;
|
|
46
47
|
private _addLayoutItems;
|
|
47
48
|
private _checkLayoutConfig;
|
|
48
49
|
protected _createLayoutConfig(config: IFormConfig, layoutConfig: ILayoutConfig): void;
|
|
@@ -103,4 +103,9 @@ export declare class Input extends Label implements IInput {
|
|
|
103
103
|
onkeydown: (event: KeyboardEvent) => void;
|
|
104
104
|
};
|
|
105
105
|
protected _draw(): any;
|
|
106
|
+
protected _getHooks(): {
|
|
107
|
+
didRecycle: (_oldNode: any, newNode: any) => void;
|
|
108
|
+
didInsert: (node: any) => void;
|
|
109
|
+
willRemove: (node: any) => void;
|
|
110
|
+
};
|
|
106
111
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { ICol, IRow } from "./../types";
|
|
1
|
+
import { ICell, ICol, IGrid, IRow } from "./../types";
|
|
2
2
|
import { Id } from "../../../ts-common/types";
|
|
3
3
|
export declare function getWidth(columns: ICol[], colspan: number, index: number): number;
|
|
4
4
|
export declare function getHeight(dataRows: IRow[], rowspan: number, index: number): number;
|
|
5
5
|
export declare function getReducedColspan(columns: ICol[], colId: Id, colspan: number): number;
|
|
6
|
+
export declare function normalizeCell(cell: ICell, grid: IGrid): ICell;
|
package/package.json
CHANGED
package/readme.txt
CHANGED
package/whatsnew.txt
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Version 8.3.8 (February 26, 2024)
|
|
2
|
+
|
|
3
|
+
### Fixes
|
|
4
|
+
|
|
5
|
+
- Calendar. Localization of sliders is fixed
|
|
6
|
+
- Common. Fix i18n import
|
|
7
|
+
- DataCollection/TreeCollection. The DataProxy config for the data driver in the CSV/XML format is replaced
|
|
8
|
+
- DataCollection/TreeCollection. The functionality of the findIndex() method is optimized
|
|
9
|
+
- Form. Incorrect input of CJK characters if the form is placed into a layout
|
|
10
|
+
- Form. Incorrect work of the setProperties() method
|
|
11
|
+
- Form. The padding of the Fieldset control is fixed
|
|
12
|
+
- Form. Incorrect work of the hide() method of the Fieldset control
|
|
13
|
+
- Grid. Navigation through the spanned cells with the Tab key
|
|
14
|
+
- Grid/TreeGrid. Improved performance for a dataset with spans
|
|
15
|
+
- Grid/TreeGrid. Editing of spanned cells
|
|
16
|
+
|
|
1
17
|
# Version 8.3.7 (February 13, 2024)
|
|
2
18
|
|
|
3
19
|
### Fixes
|