dhx-suite 8.2.3 → 8.2.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.
@@ -243,6 +243,7 @@ export interface ICol {
243
243
  [key: string]: string;
244
244
  };
245
245
  $uniqueData?: any[];
246
+ $activeFilterData?: any[];
246
247
  $width?: number;
247
248
  $fixed?: boolean;
248
249
  $htmlEnable?: boolean;
@@ -19,6 +19,7 @@ export declare class ComboFilter implements IHeaderFilter {
19
19
  clear(silent?: boolean): void;
20
20
  focus(): void;
21
21
  blur(): void;
22
+ destructor(): void;
22
23
  private _setData;
23
24
  private _checkValue;
24
25
  }
@@ -20,7 +20,7 @@ export declare class DateEditor implements IEditor {
20
20
  css?: string;
21
21
  mark?: (a: Date) => string;
22
22
  disabledDates?: (a: Date) => boolean;
23
- weekStart?: "saturday" | "sunday" | "monday";
23
+ weekStart?: "sunday" | "saturday" | "monday";
24
24
  weekNumbers?: boolean;
25
25
  mode?: import("../../../../ts-calendar").ViewMode;
26
26
  timePicker?: boolean;
@@ -21,6 +21,7 @@ export declare class List extends View implements IList {
21
21
  private _visibleHeight;
22
22
  private _touch;
23
23
  protected _changed: boolean;
24
+ protected _destructed: boolean;
24
25
  constructor(node: HTMLElement | string, config?: IListConfig);
25
26
  protected _didRedraw(vm: any): void;
26
27
  private _dblClick;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-suite",
3
- "version": "8.2.3",
3
+ "version": "8.2.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.8.2.3 Standard
4
+ dhtmlxSuite v.8.2.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,12 @@
1
+ # Version 8.2.4 (October 4, 2023)
2
+
3
+ ### Fixes
4
+
5
+ - Grid/TreeGrid. Fix the issue with ComboFilter not working in case the column's editor contains options with the id and value that don't match
6
+ - Grid/TreeGrid. Fix the problem with the setColumns() method not refreshing the comboFilter options
7
+ - TreeGrid. Fix the issue with a console error throwing on hovering over the footer tooltips used together with the "content" property
8
+ - Toolbar/Menu. Fix the problem with displaying the count badge with the `0` value
9
+
1
10
  # Version 8.2.3 (September 26, 2023)
2
11
 
3
12
  ### Fixes