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.
@@ -19,6 +19,7 @@ export declare class Exporter {
19
19
  color: string;
20
20
  background: string;
21
21
  fontSize: number;
22
+ bold: boolean;
22
23
  };
23
24
  };
24
25
  };
@@ -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: string;
318
- background: string;
319
- fontSize: number;
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?: "sunday" | "saturday" | "monday";
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 | INavItem | IMenuItem | ICustomHTML;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-suite",
3
- "version": "8.2.1",
3
+ "version": "8.2.2",
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.1 Standard
4
+ dhtmlxSuite v.8.2.2 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,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