dhx-chart 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.
|
@@ -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<{
|
package/package.json
CHANGED
package/readme.txt
CHANGED