dhx-suite 8.2.1 → 8.2.2
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/Exporter.d.ts +1 -0
- package/codebase/types/ts-grid/sources/types.d.ts +14 -3
- package/codebase/types/ts-grid/sources/ui/editors/DateEditor.d.ts +1 -1
- package/codebase/types/ts-navbar/sources/types.d.ts +1 -1
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +13 -0
|
@@ -174,6 +174,16 @@ export interface IProGrid extends IGrid {
|
|
|
174
174
|
export declare type EditorType = "input" | "select" | "datePicker" | "checkbox" | "combobox" | "multiselect" | "textarea";
|
|
175
175
|
export interface IComboEditorConfig {
|
|
176
176
|
newOptions?: boolean;
|
|
177
|
+
readOnly?: boolean;
|
|
178
|
+
selectAllButton?: boolean;
|
|
179
|
+
placeholder?: string;
|
|
180
|
+
itemHeight?: number | string;
|
|
181
|
+
listHeight?: number | string;
|
|
182
|
+
css?: string;
|
|
183
|
+
template?: (item: {
|
|
184
|
+
id: Id;
|
|
185
|
+
value: string;
|
|
186
|
+
}) => string;
|
|
177
187
|
}
|
|
178
188
|
export interface IBaseHandlersMap {
|
|
179
189
|
[key: string]: (...args: any[]) => any;
|
|
@@ -314,9 +324,10 @@ export interface IPositions {
|
|
|
314
324
|
yEnd: number;
|
|
315
325
|
}
|
|
316
326
|
export interface ICellCss {
|
|
317
|
-
color
|
|
318
|
-
background
|
|
319
|
-
fontSize
|
|
327
|
+
color?: string;
|
|
328
|
+
background?: string;
|
|
329
|
+
fontSize?: number;
|
|
330
|
+
bold?: boolean;
|
|
320
331
|
}
|
|
321
332
|
export interface IExportData {
|
|
322
333
|
columns: Array<{
|
|
@@ -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?: "saturday" | "sunday" | "monday";
|
|
24
24
|
weekNumbers?: boolean;
|
|
25
25
|
mode?: import("../../../../ts-calendar").ViewMode;
|
|
26
26
|
timePicker?: boolean;
|
|
@@ -51,7 +51,7 @@ export interface IItem extends IDataItem {
|
|
|
51
51
|
hidden?: boolean;
|
|
52
52
|
disabled?: boolean;
|
|
53
53
|
}
|
|
54
|
-
export declare type IMenuElement = ISpacer | ISeparator |
|
|
54
|
+
export declare type IMenuElement = ISpacer | ISeparator | IMenuItem | ICustomHTML;
|
|
55
55
|
export interface IMenuItem extends IItem, IHtmlExtendable {
|
|
56
56
|
type?: "menuItem";
|
|
57
57
|
$openIcon?: string;
|
package/package.json
CHANGED
package/readme.txt
CHANGED
package/whatsnew.txt
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# Version 8.2.2 (September 13, 2023)
|
|
2
|
+
|
|
3
|
+
### Fixes
|
|
4
|
+
|
|
5
|
+
- DataView. Fix the issue with the FocusChange event not triggering on selecting an item with the mouse click
|
|
6
|
+
- Grid/TreeGrid. Fix export to Excel with the non-numeric footer content
|
|
7
|
+
- Grid/TreeGrid. Fix the problem with setting columns' width during export to Excel if the `adjust` config is enabled
|
|
8
|
+
- Grid/TreeGrid. Fix export to Excel of the applied cell alignment
|
|
9
|
+
- Grid/TreeGrid. Fix export to Excel of the font weight applied to cells
|
|
10
|
+
- Menu. Fix the problem with rendering of the count badge at the root level
|
|
11
|
+
- Tree. Fix the impossibility to override the checkbox configuration via the dataset
|
|
12
|
+
- TreeGrid. Fix the issue with resetting changes in the edited cells after data ungrouping
|
|
13
|
+
|
|
1
14
|
# Version 8.2.1 (August 31, 2023)
|
|
2
15
|
|
|
3
16
|
### Fixes
|