@isoftdata/utility-dashboard-backend 2.4.1 → 2.4.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/dist/types/chart.d.ts +6 -2
- package/package.json +1 -1
package/dist/types/chart.d.ts
CHANGED
|
@@ -54,7 +54,11 @@ export type TableColumn = {
|
|
|
54
54
|
class: string;
|
|
55
55
|
};
|
|
56
56
|
export type TableRow = {
|
|
57
|
-
[key: string]:
|
|
57
|
+
[key: string]: {
|
|
58
|
+
value: string | number;
|
|
59
|
+
class?: string;
|
|
60
|
+
html?: string;
|
|
61
|
+
};
|
|
58
62
|
};
|
|
59
63
|
export type Table = {
|
|
60
64
|
rows: TableRow[];
|
|
@@ -71,7 +75,7 @@ export type TableStyleTemplate = {
|
|
|
71
75
|
};
|
|
72
76
|
export type ChartSuperType = 'google' | 'table' | 'embed';
|
|
73
77
|
export type Chart = {
|
|
74
|
-
chartId:
|
|
78
|
+
chartId: number;
|
|
75
79
|
query: string;
|
|
76
80
|
multiSeries?: MultiSeriesOptions;
|
|
77
81
|
formatting?: Formatting;
|
package/package.json
CHANGED