dhx-chart 8.2.0 → 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/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/Grid.d.ts +0 -1
- package/codebase/types/ts-grid/sources/types.d.ts +15 -3
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +6 -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<{
|
|
@@ -521,6 +532,7 @@ export interface ICell {
|
|
|
521
532
|
export interface IRow {
|
|
522
533
|
id?: Id;
|
|
523
534
|
height?: number;
|
|
535
|
+
hidden?: boolean;
|
|
524
536
|
$height?: number;
|
|
525
537
|
[key: string]: any;
|
|
526
538
|
}
|
package/package.json
CHANGED
package/readme.txt
CHANGED