dhx-suite 7.3.3 → 7.3.4

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.
@@ -25,6 +25,7 @@ export declare class DateHelper {
25
25
  static mergeHoursAndMinutes(source: Date, target: Date): Date;
26
26
  static isWeekEnd(d: Date): boolean;
27
27
  static getTwelweYears(d: Date): number[];
28
+ static getDayOrdinal(d: Date): number;
28
29
  static getWeekNumber(d: Date): number;
29
30
  static isSameDay(d1: Date, d2: Date): boolean;
30
31
  static toDateObject(date: Date | string, dateFormat: string): Date;
@@ -34,4 +34,5 @@ export declare class Combo extends Label implements ICombo {
34
34
  protected _getRootView(): any;
35
35
  protected _draw(): any;
36
36
  private _exsistData;
37
+ private _getItemText;
37
38
  }
@@ -3,14 +3,14 @@ declare type mouseEvents = GridEvents.cellClick | GridEvents.cellMouseOver | Gri
3
3
  declare type touchEvents = GridSystemEvents.cellTouchEnd | GridSystemEvents.cellTouchMove;
4
4
  declare function handleMouse(rowStart: number, colStart: number, conf: IRendererConfig, type: mouseEvents & touchEvents, e: any): void;
5
5
  export declare function getHandlers(row: number, column: number, conf: IRendererConfig): {
6
- onclick: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
7
- onmouseover: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
8
- onmousedown: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
9
- ondblclick: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
10
- oncontextmenu: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
11
- ontouchstart: (number | IRendererConfig | GridEvents | typeof handleMouse)[];
12
- ontouchmove: (number | IRendererConfig | GridSystemEvents | typeof handleMouse)[];
13
- ontouchend: (number | IRendererConfig | GridSystemEvents | typeof handleMouse)[];
6
+ onclick: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
7
+ onmouseover: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
8
+ onmousedown: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
9
+ ondblclick: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
10
+ oncontextmenu: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
11
+ ontouchstart: (number | GridEvents | IRendererConfig | typeof handleMouse)[];
12
+ ontouchmove: (number | GridSystemEvents | IRendererConfig | typeof handleMouse)[];
13
+ ontouchend: (number | GridSystemEvents | IRendererConfig | typeof handleMouse)[];
14
14
  };
15
15
  export declare function getTreeCell(content: any, row: any, col: ICol, conf: IRendererConfig): any;
16
16
  export declare function getCells(conf: IRendererConfig): any[];
@@ -14,6 +14,8 @@ export declare class Cell extends View implements ICell {
14
14
  protected _parent: ILayout;
15
15
  protected _ui: IViewLike;
16
16
  protected _resizerHandlers: any;
17
+ private _isLastFlexCell;
18
+ private _afterWindowResized;
17
19
  constructor(parent: string | HTMLElement | ILayout, config: ICellConfig);
18
20
  paint(): void;
19
21
  isVisible(): boolean;
@@ -36,8 +38,9 @@ export declare class Cell extends View implements ICell {
36
38
  protected _getCollapseIcon(): "dxi dxi-chevron-right" | "dxi dxi-chevron-left" | "dxi dxi-chevron-up" | "dxi dxi-chevron-down";
37
39
  protected _isLastCell(): boolean;
38
40
  protected _getNextCell(): any;
39
- protected _getAnyFlexCell(): any;
41
+ protected _getAnyFlexCell(selfInclude?: boolean): any;
40
42
  protected _getResizerView(): any;
41
43
  protected _isXDirection(): any;
42
44
  protected _calculateStyle(): any;
45
+ private _resizedWindow;
43
46
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-suite",
3
- "version": "7.3.3",
3
+ "version": "7.3.4",
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.7.3.3 Standard
4
+ dhtmlxSuite v.7.3.4 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,21 @@
1
+ # Version 7.3.4 (June 7, 2022)
2
+
3
+ ### Fixes
4
+
5
+ - Calendar. Fix the issue with a miscalculation of number of the last week of year
6
+ - Combobox. Fix the issue with setting values if the widget is disabled
7
+ - Form. Fix the issue with validation of the combo component. The ID is validated instead of value
8
+ - Form. Fix the issue with sending the html form (if *dhx.Form* is included into the *form* tag) when pressing the "enter" key, if any input field is in focus
9
+ - Form. Fix the issue with activating/displaying the initially hidden control (`hidden: true`) of the "container" form using the `show()` method
10
+ - Form. Fix the issue with including a toolbar into the "container" form (errors in console)
11
+ - Grid. Fix the issue with selection when adding spans into the grid component
12
+ - Grid. Fix the issue with reselection a cell after calling the `grid.selection.removeCell()` metod
13
+ - Layout. Fix the issue with the initially collapsed cell which includes the `min-width` and `min-height` settings. Instead of being collapsed, the cell takes the specified min sizes
14
+ - Layout. Fix the issue with dynamic resizing a cell when resizing a viewport (in some cases)
15
+ - Layout. Fix the issue with resizing cells which contain the iframe element
16
+ - Tree. Fix the issue with dynamic loading of the child elements, if the url for autoloading includes "?"
17
+ - Custom scroll. Fix the issue with custom scrolling on MacOS
18
+
1
19
  # Version 7.3.3 (April 25, 2022)
2
20
 
3
21
  ### Fixes