dhx-suite 8.2.2 → 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.
- package/codebase/suite.min.css +1 -1
- package/codebase/suite.min.js +3 -3
- package/codebase/types/ts-grid/sources/types.d.ts +2 -1
- package/codebase/types/ts-grid/sources/ui/content/ComboFilter.d.ts +1 -0
- package/codebase/types/ts-grid/sources/ui/content/InputFilter.d.ts +5 -5
- package/codebase/types/ts-grid/sources/ui/content/SelectFilter.d.ts +4 -4
- package/codebase/types/ts-grid/sources/ui/editors/DateEditor.d.ts +1 -1
- package/codebase/types/ts-list/sources/List.d.ts +1 -0
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +18 -0
|
@@ -199,7 +199,7 @@ export interface IHeaderFilter {
|
|
|
199
199
|
data?: any[];
|
|
200
200
|
id?: Id;
|
|
201
201
|
filterConfig?: IComboFilterConfig;
|
|
202
|
-
getFilter():
|
|
202
|
+
getFilter(): VNode | Combobox;
|
|
203
203
|
setValue(value: string | string[], silent?: boolean): void;
|
|
204
204
|
clear(silent?: boolean): void;
|
|
205
205
|
focus(): void;
|
|
@@ -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;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { VNode } from "../../../../ts-common/dom";
|
|
1
2
|
import { IEventSystem } from "../../../../ts-common/events";
|
|
2
3
|
import { Id } from "../../../../ts-common/types";
|
|
3
4
|
import { IBaseHandlersMap, IHeaderFilter, HeaderFilterEvent, ICol, IRendererConfig } from "../../types";
|
|
@@ -7,16 +8,15 @@ export declare class InputFilter implements IHeaderFilter {
|
|
|
7
8
|
value: string;
|
|
8
9
|
id: Id;
|
|
9
10
|
events: IEventSystem<HeaderFilterEvent>;
|
|
10
|
-
private _filter;
|
|
11
|
-
private _isFocused;
|
|
12
11
|
protected _handlers: IBaseHandlersMap;
|
|
13
12
|
protected _inputDelay: any;
|
|
13
|
+
private _isFocused;
|
|
14
14
|
constructor(column: any, config: any, id: any, value: any);
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
getFilter(): HTMLElement;
|
|
15
|
+
toHTML(): VNode;
|
|
16
|
+
getFilter(): any;
|
|
18
17
|
setValue(value: string, silent?: boolean): void;
|
|
19
18
|
clear(silent?: boolean): void;
|
|
20
19
|
focus(): void;
|
|
21
20
|
blur(): void;
|
|
21
|
+
private initHandlers;
|
|
22
22
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { VNode } from "../../../../ts-common/dom";
|
|
1
2
|
import { IEventSystem } from "../../../../ts-common/events";
|
|
2
3
|
import { IBaseHandlersMap, IHeaderFilter, HeaderFilterEvent, ICol, IRendererConfig } from "../../types";
|
|
3
4
|
export declare class SelectFilter implements IHeaderFilter {
|
|
@@ -6,15 +7,14 @@ export declare class SelectFilter implements IHeaderFilter {
|
|
|
6
7
|
data: any[];
|
|
7
8
|
value: string;
|
|
8
9
|
events: IEventSystem<HeaderFilterEvent>;
|
|
9
|
-
private _filter;
|
|
10
10
|
private _isFocused;
|
|
11
11
|
protected _handlers: IBaseHandlersMap;
|
|
12
12
|
constructor(column: any, config: any, uniqueData: any, value: any);
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
getFilter(): HTMLElement;
|
|
13
|
+
toHTML(): VNode;
|
|
14
|
+
getFilter(): any;
|
|
16
15
|
setValue(value: string, silent?: boolean): void;
|
|
17
16
|
clear(silent?: boolean): void;
|
|
18
17
|
focus(): void;
|
|
19
18
|
blur(): void;
|
|
19
|
+
private initHandlers;
|
|
20
20
|
}
|
|
@@ -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?: "
|
|
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
package/readme.txt
CHANGED
package/whatsnew.txt
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
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
|
+
|
|
10
|
+
# Version 8.2.3 (September 26, 2023)
|
|
11
|
+
|
|
12
|
+
### Fixes
|
|
13
|
+
|
|
14
|
+
- Chart. Fix the issue with `minValue` rounding a fractional value
|
|
15
|
+
- Chart. Fix the functionality of the `dashed` property in the Spline charts
|
|
16
|
+
- Grid/TreeGrid. Fix the memory leak related to the header filters
|
|
17
|
+
- TreeGrid. Fix the problem when a double click on a grouped row threw an error
|
|
18
|
+
|
|
1
19
|
# Version 8.2.2 (September 13, 2023)
|
|
2
20
|
|
|
3
21
|
### Fixes
|