dhx-chart 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;
@@ -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-up" | "dxi dxi-chevron-down" | "dxi dxi-chevron-right" | "dxi dxi-chevron-left";
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-chart",
3
- "version": "7.3.3",
3
+ "version": "7.3.4",
4
4
  "description": "dhtmlxChart widget",
5
5
  "homepage":"https://docs.dhtmlx.com/chart",
6
6
  "license":"GPL",
package/readme.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
3
 
4
- dhtmlxChart v.7.3.3 Standard
4
+ dhtmlxChart 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,6 @@
1
+ Version 7.3.4 (June 7, 2022)
2
+ ----------------------------
3
+
1
4
  Version 7.3.3 (April 25, 2022)
2
5
  ----------------------------
3
6