dhx-chart 8.2.1 → 8.2.3
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/chart.min.css +1 -1
- package/codebase/chart.min.js +3 -3
- package/codebase/types/ts-grid/sources/Exporter.d.ts +1 -0
- package/codebase/types/ts-grid/sources/types.d.ts +15 -4
- 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/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +13 -3
|
@@ -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;
|
|
@@ -189,7 +199,7 @@ export interface IHeaderFilter {
|
|
|
189
199
|
data?: any[];
|
|
190
200
|
id?: Id;
|
|
191
201
|
filterConfig?: IComboFilterConfig;
|
|
192
|
-
getFilter():
|
|
202
|
+
getFilter(): VNode | Combobox;
|
|
193
203
|
setValue(value: string | string[], silent?: boolean): void;
|
|
194
204
|
clear(silent?: boolean): void;
|
|
195
205
|
focus(): void;
|
|
@@ -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<{
|
|
@@ -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
|
}
|
package/package.json
CHANGED
package/readme.txt
CHANGED
package/whatsnew.txt
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
|
-
Version 8.2.
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
# Version 8.2.3 (September 26, 2023)
|
|
2
|
+
|
|
3
|
+
### Fixes
|
|
4
|
+
|
|
5
|
+
- Fix the issue with `minValue` rounding a fractional value
|
|
6
|
+
- Fix the functionality of the `dashed` property in the Spline charts
|
|
7
|
+
|
|
8
|
+
Version 8.2.2 (September 13, 2023)
|
|
9
|
+
----------------------------
|
|
10
|
+
|
|
11
|
+
Version 8.2.1 (August 31, 2023)
|
|
12
|
+
----------------------------
|
|
13
|
+
|
|
4
14
|
Version 8.2.0 (August 29, 2023)
|
|
5
15
|
|
|
6
16
|
### Updates
|