@rfkit/charts 1.12.1 → 1.13.1
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.
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import type { RendererType } from '@rfkit/renderer';
|
|
1
2
|
import type React from 'react';
|
|
2
3
|
import type { ParamsProps } from '../../types';
|
|
3
4
|
export interface Props extends ParamsProps {
|
|
4
5
|
heatmapDefaultData?: Array<Array<number>>;
|
|
6
|
+
renderer?: RendererType;
|
|
5
7
|
}
|
|
6
8
|
declare const Chart: React.FC<Props>;
|
|
7
9
|
export default Chart;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { RendererType } from '@rfkit/renderer';
|
|
1
2
|
import type { ProcessingOptions } from '@rfkit/spectrum-analyzer';
|
|
2
3
|
import { type UseSpectrumChartTypeProps as SpectrumChartTypeProps } from '../../hooks/spectrum';
|
|
3
4
|
import { type OccupancyPortalProps } from '../../modules/OccupancyPortal';
|
|
@@ -6,6 +7,7 @@ export interface Props extends SpectrumChartTypeProps, ParamsProps, OccupancyPor
|
|
|
6
7
|
children?: React.ReactNode;
|
|
7
8
|
touch?: boolean;
|
|
8
9
|
processing?: Partial<ProcessingOptions>;
|
|
10
|
+
renderer?: RendererType;
|
|
9
11
|
}
|
|
10
12
|
declare const Chart: React.FC<Props>;
|
|
11
13
|
export default Chart;
|