dhx-suite 8.2.6 → 8.3.0

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.
Files changed (28) hide show
  1. package/codebase/suite.min.css +1 -1
  2. package/codebase/suite.min.js +3 -3
  3. package/codebase/suite.min.js.map +1 -0
  4. package/codebase/types/ts-colorpicker/sources/Colorpicker.d.ts +1 -0
  5. package/codebase/types/ts-colorpicker/sources/helpers/calculations.d.ts +1 -0
  6. package/codebase/types/ts-colorpicker/sources/helpers/color.d.ts +2 -0
  7. package/codebase/types/ts-colorpicker/sources/types.d.ts +4 -1
  8. package/codebase/types/ts-form/sources/elements/combo.d.ts +1 -1
  9. package/codebase/types/ts-form/sources/elements/container.d.ts +7 -6
  10. package/codebase/types/ts-form/sources/elements/input.d.ts +1 -1
  11. package/codebase/types/ts-form/sources/elements/textarea.d.ts +1 -0
  12. package/codebase/types/ts-grid/sources/Grid.d.ts +4 -1
  13. package/codebase/types/ts-grid/sources/ProGrid.d.ts +2 -1
  14. package/codebase/types/ts-grid/sources/helpers/data.d.ts +10 -2
  15. package/codebase/types/ts-grid/sources/helpers/main.d.ts +2 -2
  16. package/codebase/types/ts-grid/sources/types.d.ts +14 -8
  17. package/codebase/types/ts-grid/sources/ui/editors/InputEditor.d.ts +5 -1
  18. package/codebase/types/ts-grid/sources/ui/editors/TextAreaEditor.d.ts +2 -1
  19. package/codebase/types/ts-grid/sources/ui/render.d.ts +0 -1
  20. package/codebase/types/ts-grid/tests/stubs.d.ts +0 -1
  21. package/codebase/types/ts-navbar/sources/types.d.ts +5 -1
  22. package/codebase/types/ts-ribbon/sources/Ribbon.d.ts +2 -2
  23. package/codebase/types/ts-ribbon/sources/entry.d.ts +1 -0
  24. package/codebase/types/ts-treegrid/tests/stubs.d.ts +0 -1
  25. package/package.json +1 -1
  26. package/readme.txt +1 -1
  27. package/whatsnew.txt +56 -0
  28. package/codebase/types/ts-grid/sources/ui/editors/editors.d.ts +0 -2
@@ -9,6 +9,7 @@ export declare class Colorpicker extends View implements IColorpicker {
9
9
  private _handlers;
10
10
  private _pickerState;
11
11
  private _inputTimeout;
12
+ private _activeRange;
12
13
  constructor(container: string | HTMLElement, config?: IColorpickerConfig);
13
14
  destructor(): void;
14
15
  clear(): void;
@@ -4,5 +4,6 @@ export declare function calculatePaletteGrip(clientRect: ClientRect, top: number
4
4
  };
5
5
  export declare function calculateRangeGrip(clientRect: ClientRect, left: number): {
6
6
  h: number;
7
+ alpha: number;
7
8
  rangeLeft: number;
8
9
  };
@@ -14,3 +14,5 @@ export declare function HexToRGB(hex: string): IRgb;
14
14
  export declare function RGBToHSV(rgb: IRgb): IHsv;
15
15
  export declare function HexToHSV(hex: string): IHsv;
16
16
  export declare function isHex(hex: string): boolean;
17
+ export declare function alphaToHex(alpha: number): string;
18
+ export declare function getAlpha(hex: string): number;
@@ -27,6 +27,7 @@ export interface IColorpickerConfig {
27
27
  mode?: ViewsMode;
28
28
  pickerOnly?: boolean;
29
29
  paletteOnly?: boolean;
30
+ transparency?: boolean;
30
31
  }
31
32
  export declare enum ColorpickerEvents {
32
33
  beforeChange = "beforeChange",
@@ -60,7 +61,9 @@ export interface IHSV {
60
61
  export interface IPickerState {
61
62
  hsv: IHSV;
62
63
  customHex: string;
64
+ alpha: number;
63
65
  background?: string;
64
- rangeLeft?: number;
66
+ hueRangeLeft?: number;
67
+ alphaRangeLeft?: number;
65
68
  }
66
69
  export type ViewsMode = "palette" | "picker";
@@ -96,6 +96,6 @@ export declare class Combo extends Label implements ICombo {
96
96
  protected _validationStatus(): any;
97
97
  protected _getRootView(): any;
98
98
  protected _draw(): any;
99
- private _exsistData;
99
+ private _existData;
100
100
  private _getItemText;
101
101
  }
@@ -1,9 +1,9 @@
1
- import { View } from "../../../ts-common/view";
2
- import { ItemEvent, IBaseLayoutItem, IBaseItem, IBaseState, IBaseHandlersMap } from "../types";
1
+ import { Label } from "./helper/label";
2
+ import { ItemEvent, IBaseLayoutItem, IBaseItem, IBaseState, IBaseHandlersMap, ILabel } from "../types";
3
3
  import { IEventSystem } from "../../../ts-common/events";
4
4
  import { Layout } from "../../../ts-layout";
5
5
  import { IFieldset } from "./fieldset";
6
- export type IContainerProps = IBaseLayoutItem;
6
+ export type IContainerProps = IBaseLayoutItem & Omit<ILabel, "required">;
7
7
  export interface IContainerConfig extends IContainerProps, IBaseItem, IBaseState {
8
8
  type: "container";
9
9
  }
@@ -31,11 +31,12 @@ export interface IContainerHandlersMap extends IBaseHandlersMap {
31
31
  [ItemEvent.beforeChangeProperties]: (properties: IContainerProps) => boolean | void;
32
32
  [ItemEvent.afterChangeProperties]: (properties: IContainerProps) => void;
33
33
  }
34
- export declare class Container extends View implements IContainer {
34
+ export declare class Container extends Label implements IContainer {
35
35
  parent: IFieldset;
36
36
  config: IContainerConfig;
37
37
  container: Layout;
38
38
  events: IEventSystem<ItemEvent, IContainerHandlersMap>;
39
+ private _props;
39
40
  constructor(container: any, config: IContainerConfig);
40
41
  attach(widget: any): void;
41
42
  attachHTML(html: string): void;
@@ -45,8 +46,8 @@ export declare class Container extends View implements IContainer {
45
46
  disable(): void;
46
47
  enable(): void;
47
48
  isDisabled(): boolean;
48
- setProperties(propertyConfig: IBaseLayoutItem): void;
49
- getProperties(): IBaseLayoutItem;
49
+ setProperties(propertyConfig: IContainerProps): void;
50
+ getProperties(): IContainerProps;
50
51
  protected _getRootView(): any;
51
52
  protected _draw(): any;
52
53
  }
@@ -74,7 +74,7 @@ export declare class Input extends Label implements IInput {
74
74
  events: IEventSystem<ItemEvent, IInputEventHandlersMap>;
75
75
  protected _propsItem: string[];
76
76
  protected _props: string[];
77
- private _value;
77
+ protected _value: any;
78
78
  constructor(container: HTMLElement | string, config?: {});
79
79
  destructor(): void;
80
80
  setProperties(propertyConfig: IInputProps): void;
@@ -60,6 +60,7 @@ export declare class Textarea extends Input implements ITextArea {
60
60
  protected _propsItem: string[];
61
61
  protected _props: string[];
62
62
  getValue(): string;
63
+ isFocused(): boolean;
63
64
  focus(): void;
64
65
  blur(): void;
65
66
  setProperties(propertyConfig: ITextAreaProps & IInputProps): void;
@@ -4,7 +4,7 @@ import { Id, ITouchParam } from "../../ts-common/types";
4
4
  import { View } from "../../ts-common/view";
5
5
  import { DataEvents, DragEvents, IDataCollection, IDataEventsHandlersMap, IDataItem, IDragEventsHandlersMap } from "../../ts-data";
6
6
  import { Exporter } from "./Exporter";
7
- import { Dirs, EditorType, GridEvents, IAdjustBy, ICellRect, ICol, IContentList, ICoords, IEventHandlersMap, IGrid, IGridConfig, IRow, IScrollState, ISelection, ISpan, GridSystemEvents, ISystemEventHandlersMap, IColumnsWidth, ISortingState, SortFunction, IHeaderFilter, IAdjustColumns } from "./types";
7
+ import { Dirs, EditorType, GridEvents, IAdjustBy, ICellRect, ICol, IContentList, ICoords, IEventHandlersMap, IGrid, IGridConfig, IRow, IScrollState, ISelection, ISpan, GridSystemEvents, ISystemEventHandlersMap, IColumnsWidth, ISortingState, SortFunction, IHeaderFilter, IAdjustColumns, IFooter, IHeader } from "./types";
8
8
  export declare class Grid extends View implements IGrid {
9
9
  version: string;
10
10
  data: IDataCollection;
@@ -55,6 +55,8 @@ export declare class Grid extends View implements IGrid {
55
55
  paint(): void;
56
56
  protected _createView(): any;
57
57
  protected _parseColumns(configChanged?: boolean): void;
58
+ protected normalizeColumns(config: IGridConfig, configChanged?: boolean): void;
59
+ protected getNormalizeContentHeight(row: IFooter | IHeader, col: ICol, config: IGridConfig): number;
58
60
  protected _parseData(): void;
59
61
  protected _createCollection(prep: (data: any[]) => any[]): void;
60
62
  protected _getRowIndex(rowId: Id): number;
@@ -75,6 +77,7 @@ export declare class Grid extends View implements IGrid {
75
77
  protected _initHooks(): {
76
78
  didMount: () => void;
77
79
  };
80
+ protected _normalizeDataType(): void;
78
81
  private _canDataParse;
79
82
  private _init;
80
83
  private _attachDataCollection;
@@ -1,5 +1,5 @@
1
1
  import { Grid } from "./Grid";
2
- import { IGridConfig, IProGrid } from "./types";
2
+ import { IGridConfig, ICol, IProGrid, IFooter, IHeader } from "./types";
3
3
  import { IDataCollection, IDataItem } from "../../ts-data";
4
4
  import { ScrollView } from "../../ts-common/ScrollView";
5
5
  export declare class ProGrid extends Grid implements IProGrid {
@@ -7,6 +7,7 @@ export declare class ProGrid extends Grid implements IProGrid {
7
7
  constructor(container: HTMLElement | string, config?: IGridConfig);
8
8
  protected _createView(): any;
9
9
  protected _setEventHandlers(): void;
10
+ protected getNormalizeContentHeight(row: IFooter | IHeader, col: ICol, config: IGridConfig): number;
10
11
  protected _prepareData(data: IDataItem[] | IDataCollection): any;
11
12
  protected _prepareDataFromTo(data: IDataCollection, from: number, to: number): IDataItem[];
12
13
  protected _dragStart(event: any): void;
@@ -1,6 +1,13 @@
1
1
  import { IContainerConfig } from "../../../ts-common/core";
2
2
  import { ICol, IColumnsWidth, IGridConfig, IRow, colType, AdjustTargetType, TOption } from "./../types";
3
- export declare function normalizeColumns({ columns, htmlEnable }: IGridConfig, configChanged?: boolean): void;
3
+ export declare function normalizeArray(obj: any, name: string): void;
4
+ export declare function measureTextHeight({ text, width, lineHeight, font, htmlEnable, }: {
5
+ text?: string;
6
+ width?: number;
7
+ lineHeight?: number;
8
+ font?: string;
9
+ htmlEnable?: boolean;
10
+ }): number;
4
11
  export declare function countColumns(config: IGridConfig, columns: ICol[]): number;
5
12
  export declare function calculatePositions(width: number, height: number, scroll: any, conf: IGridConfig, data: IRow[]): {
6
13
  xStart: number;
@@ -12,9 +19,10 @@ export declare function getUnique(arr: any[], name: string, multiselection: bool
12
19
  export declare const getMaxRowHeight: (row: IRow, cols: ICol[], config?: IContainerConfig) => number;
13
20
  export declare const getCalculatedRowHeight: (height: number, config?: {
14
21
  rowHeight: number;
15
- padding: number;
22
+ padding?: number;
16
23
  }) => number;
17
24
  export declare const getTreeCellWidthOffset: (row: IRow) => number;
18
25
  export declare const getMaxColsWidth: (rows: IRow[], cols: ICol[], config?: IContainerConfig, target?: AdjustTargetType) => IColumnsWidth;
19
26
  export declare function toFormat(value: any, type?: colType, format?: string): any;
20
27
  export declare function getEditorOptions(col: ICol, row?: IRow): TOption[];
28
+ export declare function getValueForNumberColumn(col: ICol, value: any): any;
@@ -1,4 +1,4 @@
1
- import { ICellCss, ICol, IGridConfig, IRow, ISpan } from "../types";
1
+ import { ICellCss, ICol, IFooter, IGridConfig, IHeader, IRow, ISpan } from "../types";
2
2
  export declare function transpose(arr: any[][], transform?: any): any[][];
3
3
  export declare function getStyleByClass(cssClass: string, container: HTMLElement, targetClass: string, def?: ICellCss): ICellCss;
4
4
  export declare function removeHTMLTags(str: string): string;
@@ -13,7 +13,7 @@ export declare function showTooltip({ node, value, htmlEnable }: {
13
13
  }): void;
14
14
  export declare function isContentTooltip(config: IGridConfig, col: ICol, cell: any, type: "footer" | "header"): boolean;
15
15
  export declare function isTooltip(config: IGridConfig, element: ICol | ISpan): boolean;
16
- export declare function isHtmlEnable(config: IGridConfig, col: ICol): boolean;
16
+ export declare function isHtmlEnable(config: IGridConfig, col: ICol, content?: IHeader | IFooter): boolean;
17
17
  export declare function getTotalWidth(columns: ICol[]): number;
18
18
  export declare function getTotalHeight(rows: IRow[]): number;
19
19
  export declare function scrollFixedColsAndRows(e: WheelEvent): void;
@@ -34,12 +34,14 @@ export interface IGridConfig extends IDragConfig {
34
34
  tooltip?: boolean;
35
35
  headerTooltip?: boolean;
36
36
  footerTooltip?: boolean;
37
+ rowHeight?: number;
37
38
  headerRowHeight?: number;
38
39
  footerRowHeight?: number;
39
- rowHeight?: number;
40
- adjust?: IAdjustBy;
41
40
  autoWidth?: boolean;
42
41
  autoHeight?: boolean;
42
+ headerAutoHeight?: boolean;
43
+ footerAutoHeight?: boolean;
44
+ adjust?: IAdjustBy;
43
45
  eventHandlers?: {
44
46
  [eventName: string]: {
45
47
  [className: string]: (event: Event, item: ICellObj) => void;
@@ -49,8 +51,10 @@ export interface IGridConfig extends IDragConfig {
49
51
  rootParent?: Id;
50
52
  $width?: number;
51
53
  $height?: number;
52
- $headerLevel?: number;
53
- $footerLevel?: number;
54
+ $headerHeight?: number;
55
+ $footerHeight?: number;
56
+ $headerHeightMap?: number[];
57
+ $footerHeightMap?: number[];
54
58
  $totalWidth?: number;
55
59
  $totalHeight?: number;
56
60
  $positions?: IPositions;
@@ -106,7 +110,6 @@ interface IFixedRows {
106
110
  export interface IRendererConfig extends IGridConfig {
107
111
  scroll?: IScrollState;
108
112
  datacollection: any;
109
- columns?: ICol[];
110
113
  filteredColumns?: ICol[];
111
114
  currentColumns?: ICol[];
112
115
  currentRows?: IRow[];
@@ -120,7 +123,6 @@ export interface IRendererConfig extends IGridConfig {
120
123
  sortBy?: Id;
121
124
  sortDir?: string;
122
125
  filterLocation?: string;
123
- htmlEnable?: boolean;
124
126
  content?: IContentList;
125
127
  gridId?: string;
126
128
  $renderFrom?: "leftFixedCols" | "rightFixedCols" | "topFixedRows" | "bottomFixedRows" | "render" | "both";
@@ -185,6 +187,10 @@ export interface IComboEditorConfig {
185
187
  value: string;
186
188
  }) => string;
187
189
  }
190
+ export interface IInputEditorConfig {
191
+ min?: number;
192
+ max?: number;
193
+ }
188
194
  export interface IBaseHandlersMap {
189
195
  [key: string]: (...args: any[]) => any;
190
196
  }
@@ -224,7 +230,7 @@ export interface ICol {
224
230
  type?: colType;
225
231
  format?: string;
226
232
  editorType?: EditorType;
227
- editorConfig?: IComboEditorConfig | ICalendarConfig;
233
+ editorConfig?: IComboEditorConfig | ICalendarConfig | IInputEditorConfig;
228
234
  editable?: boolean;
229
235
  resizable?: boolean;
230
236
  sortable?: boolean;
@@ -246,7 +252,6 @@ export interface ICol {
246
252
  $activeFilterData?: any[];
247
253
  $width?: number;
248
254
  $fixed?: boolean;
249
- $htmlEnable?: boolean;
250
255
  $customOptions?: any;
251
256
  /** @deprecated See a documentation: https://docs.dhtmlx.com/ */
252
257
  dateFormat?: string;
@@ -269,6 +274,7 @@ export interface IContent {
269
274
  css?: string;
270
275
  align?: IAlign;
271
276
  tooltip?: boolean;
277
+ htmlEnable?: boolean;
272
278
  }
273
279
  export interface IHeader extends IContent {
274
280
  content?: fixedRowContent | footerMethods;
@@ -9,8 +9,12 @@ export declare class InputEditor implements IEditor {
9
9
  };
10
10
  protected _config: IRendererConfig;
11
11
  protected _input: HTMLInputElement;
12
+ private prevValue;
13
+ private type;
12
14
  constructor(row: IRow, col: ICol, config: IRendererConfig);
13
15
  endEdit(withoutSave?: boolean): void;
14
- toHTML(text?: string): any;
16
+ toHTML(value?: string): any;
15
17
  protected _initHandlers(): void;
18
+ private isValidWord;
19
+ private isCorrectRange;
16
20
  }
@@ -9,12 +9,13 @@ export declare class TextAreaEditor implements IEditor {
9
9
  };
10
10
  protected _config: IRendererConfig;
11
11
  protected _editor: HTMLTextAreaElement;
12
+ private type;
12
13
  private _minHeight;
13
14
  private _prevHeight;
14
15
  private _width;
15
16
  constructor(row: IRow, col: ICol, config: IRendererConfig);
16
17
  endEdit(withoutSave?: boolean): void;
17
- toHTML(): any;
18
+ toHTML(value?: string): any;
18
19
  protected _initHandlers(): void;
19
20
  private _getCurrentHeight;
20
21
  private _getElementHeight;
@@ -10,7 +10,6 @@ export declare function getElementSizes(element: HTMLElement | any): {
10
10
  width: number;
11
11
  height: number;
12
12
  };
13
- export declare function getEvents(config: IRendererConfig, mode?: Split): {};
14
13
  export declare function applyAutoWidth(config: IGridConfig, wrapperSizes: any, firstApply?: boolean, resizer?: boolean, scrollViewConfig?: boolean): void;
15
14
  export declare function render(vm: any, obj: IGrid, htmlEvents: any, selection: any, uid: string): any;
16
15
  export declare function proRender(vm: any, obj: IProGrid, htmlEvents: any, selection: any, uid: string): any;
@@ -78,7 +78,6 @@ export declare const config: {
78
78
  width: number;
79
79
  id: number;
80
80
  }[];
81
- headerLevel: number;
82
81
  headerRowHeight: number;
83
82
  span: any;
84
83
  };
@@ -191,7 +191,9 @@ export declare enum NavigationBarEvents {
191
191
  afterHide = "afterHide",
192
192
  inputFocus = "inputFocus",
193
193
  inputBlur = "inputBlur",
194
- inputChange = "inputChange"
194
+ inputChange = "inputChange",
195
+ input = "input",
196
+ keydown = "keydown"
195
197
  }
196
198
  export interface INavbarEventHandlersMap {
197
199
  [key: string]: (...args: any[]) => any;
@@ -203,4 +205,6 @@ export interface INavbarEventHandlersMap {
203
205
  [NavigationBarEvents.inputBlur]: (id: Id) => void;
204
206
  [NavigationBarEvents.inputFocus]: (id: Id) => void;
205
207
  [NavigationBarEvents.inputChange]: (id: Id, newValue: string) => void;
208
+ [NavigationBarEvents.input]: (id: Id, value: string) => void;
209
+ [NavigationBarEvents.keydown]: (event: KeyboardEvent, id?: Id) => void;
206
210
  }
@@ -1,4 +1,4 @@
1
- import { Navbar, IState, IBlock, INavbar, IButton, IInput, IImageButton, ISeparator, ISpacer, ITitle, ICustomHTML, ISelectButton, INavItem } from "../../ts-navbar";
1
+ import { Navbar, IState, IBlock, INavbar, IButton, IInput, IImageButton, ISeparator, ISpacer, ITitle, ICustomHTML, ISelectButton, INavItem, IDatePicker } from "../../ts-navbar";
2
2
  import { Id, IHandlers } from "../../ts-common/types";
3
3
  import { TreeCollection } from "../../ts-data";
4
4
  export interface IToolbarConfig {
@@ -23,7 +23,7 @@ interface IRibbonSelectButton extends ISelectButton {
23
23
  interface IRibbonNavItem extends INavItem {
24
24
  size?: "small" | "medium" | "auto";
25
25
  }
26
- export type IRibbonElement = IRibbonButton | IInput | IRibbonImageButton | ISeparator | ISpacer | ITitle | IRibbonSelectButton | ICustomHTML | IBlock | IRibbonNavItem;
26
+ export type IRibbonElement = IRibbonButton | IInput | IRibbonImageButton | ISeparator | ISpacer | ITitle | IRibbonSelectButton | ICustomHTML | IBlock | IRibbonNavItem | IDatePicker;
27
27
  export declare class Ribbon extends Navbar<IRibbonElement> implements IRibbon {
28
28
  protected _listeners: IHandlers;
29
29
  protected _widgetHeight: number[];
@@ -1,3 +1,4 @@
1
1
  import "../../styles/ribbon.scss";
2
+ import "../../styles/calendar.scss";
2
3
  export { TreeCollection } from "../../ts-data";
3
4
  export { Ribbon } from "./Ribbon";
@@ -78,7 +78,6 @@ export declare const config: {
78
78
  width: number;
79
79
  id: number;
80
80
  }[];
81
- headerLevel: number;
82
81
  headerRowHeight: number;
83
82
  span: any;
84
83
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhx-suite",
3
- "version": "8.2.6",
3
+ "version": "8.3.0",
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.6 Standard
4
+ dhtmlxSuite v.8.3.0 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,59 @@
1
+ # Version 8.3 (October 23, 2023)
2
+
3
+ ### New functionality
4
+
5
+ #### ColorPicker
6
+
7
+ - The ability to adjust the color transparency
8
+
9
+ #### Form. Container
10
+
11
+ - The control's configuration object is extended with a set of properties that allow adding and controlling the **label**
12
+
13
+ #### Grid/TreeGrid
14
+
15
+ - The ability to set the autoheight mode for the column's header/footer (PRO version)
16
+ - The ability to enable HTML content in the columns' header/footer independent of the settings applied for the column or the whole component
17
+
18
+ #### Menu
19
+
20
+ - New `keydown` event
21
+
22
+ #### Ribbon
23
+
24
+ - New events: `input`, `inputChange`, `keydown`, and the Datepicker control
25
+
26
+ #### Sidebar
27
+
28
+ - New `keydown` event
29
+
30
+ #### Toolbar
31
+
32
+ - New events: `input` and `keydown`
33
+
34
+ ### Updates
35
+
36
+ #### Grid/TreeGrid
37
+
38
+ - The functionality of the eventHandlers configuration property is extended for the columns' header/footer
39
+ - The columns with the "number" type allow only numeric values in the cells
40
+
41
+ ### Fixes
42
+
43
+ - Form. Fix the absence of the bottom margin at the Container control
44
+ - Grid/TreeGrid. Fix the work of the bottomSplit property when there was too little data for the proper content height
45
+ - TreeGrid. Fix the work of the adjust property with the "footer" value
46
+
47
+ # Version 8.2.7 (October 19, 2023)
48
+
49
+ ### Fixes
50
+
51
+ - Combobox. Fix the absence of the placeholder if Combobox has a template
52
+ - Form. Combo control. Fix the incorrect position of preMessage after the call of setProperties()
53
+ - Form. Input/Textarea controls. Fix disappearance of the entered value on entering the full screen mode
54
+ - Form. Toggle control. Fix the break of the Toggle button styles in case of simultaneous usage of the Suite and Vault sources on a page
55
+ - Grid/TreeGrid. Fix incorrect autoWidth calculation in case of a big number of columns
56
+
1
57
  # Version 8.2.6 (October 12, 2023)
2
58
 
3
59
  ### Fixes
@@ -1,2 +0,0 @@
1
- import { IRendererConfig, ICol, IEditor } from "../../types";
2
- export declare function getEditor(row: any, col: ICol, conf: IRendererConfig): IEditor;