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.
- package/codebase/suite.min.css +1 -1
- package/codebase/suite.min.js +3 -3
- package/codebase/types/ts-grid/sources/types.d.ts +1 -0
- package/codebase/types/ts-grid/sources/ui/content/ComboFilter.d.ts +1 -0
- 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 +9 -0
|
@@ -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,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
|