react-semaphor 0.0.457 → 0.0.459
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/chunks/{index-Dp9Ch_Ji.js → index-ClYX0fSH.js} +69 -69
- package/dist/chunks/{index-WNMvdYpu.js → index-D0MIDW1l.js} +8246 -8207
- package/dist/dashboard/index.cjs +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.js +18 -20
- package/dist/style.css +1 -1
- package/dist/types/dashboard.d.ts +7 -5
- package/dist/types/main.d.ts +7 -5
- package/dist/types/surfboard.d.ts +7 -5
- package/dist/types/types.d.ts +7 -5
- package/package.json +1 -1
package/dist/types/types.d.ts
CHANGED
|
@@ -283,14 +283,16 @@ declare interface QueryConfig {
|
|
|
283
283
|
pivotColumns?: GroupByColumn[];
|
|
284
284
|
metricColumns?: MetricColumn[];
|
|
285
285
|
filterColumns?: FilterByColumn[];
|
|
286
|
-
filters?:
|
|
287
|
-
filterColumnName: string;
|
|
288
|
-
filterValue: FilterValue;
|
|
289
|
-
}[];
|
|
286
|
+
filters?: QueryFilter[];
|
|
290
287
|
limit?: number;
|
|
291
288
|
orderBy?: OrderBy[];
|
|
292
289
|
}
|
|
293
290
|
|
|
291
|
+
declare type QueryFilter = {
|
|
292
|
+
filterColumnName: string;
|
|
293
|
+
filterValue: FilterValue;
|
|
294
|
+
};
|
|
295
|
+
|
|
294
296
|
declare type RangeValue = {
|
|
295
297
|
gte?: string | number;
|
|
296
298
|
lte?: string | number;
|
|
@@ -465,7 +467,7 @@ export declare type TChartOptions = {
|
|
|
465
467
|
};
|
|
466
468
|
};
|
|
467
469
|
|
|
468
|
-
declare type TChartType = 'bar' | 'horizontalBar' | 'line' | 'pie' | 'doughnut' | 'radar' | 'polarArea' | 'bubble' | 'scatter' | 'stackedBar' | 'stackedLine' | 'table' | 'kpi' | 'pyramid' | 'range' | 'text' | 'map' | 'funnel' | 'custom';
|
|
470
|
+
declare type TChartType = 'bar' | 'horizontalBar' | 'line' | 'pie' | 'doughnut' | 'radar' | 'polarArea' | 'bubble' | 'scatter' | 'stackedBar' | 'stackedLine' | 'table' | 'kpi' | 'pyramid' | 'tornado' | 'range' | 'text' | 'map' | 'funnel' | 'custom';
|
|
469
471
|
|
|
470
472
|
export declare type TColumnSetting<T extends DisplayDataType> = {
|
|
471
473
|
columnIdx: number;
|