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.
@@ -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?: any);
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
  }
@@ -28,5 +28,4 @@ export declare class Selection implements ISelection {
28
28
  private _findIndex;
29
29
  private _setBrowserFocus;
30
30
  private _getReverseScrollState;
31
- private _normalizeCell;
32
31
  }
@@ -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;
@@ -307,7 +307,6 @@ export interface ISpan {
307
307
  css?: string;
308
308
  tooltip?: boolean;
309
309
  tooltipTemplate?: (spanValue: any, span: ISpan) => string;
310
- $markCss?: string;
311
310
  $type?: colType;
312
311
  $rowsVisibility?: number[];
313
312
  $colsVisibility?: number[];
@@ -30,6 +30,5 @@ export declare function normalizeSpan(span: ISpan, config: IGridConfig, data: ID
30
30
  css?: string;
31
31
  tooltip?: boolean;
32
32
  tooltipTemplate?: (spanValue: any, span: ISpan) => string;
33
- $markCss?: string;
34
33
  };
35
34
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-suite",
3
- "version": "8.3.7",
3
+ "version": "8.3.8",
4
4
  "description": "dhtmlxSuite widget",
5
5
  "homepage":"https://docs.dhtmlx.com",
6
6
  "license":"GPL",
package/readme.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
3
 
4
- dhtmlxSuite v.8.3.7 Standard
4
+ dhtmlxSuite v.8.3.8 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,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