@rfkit/charts 1.11.0 → 1.12.0
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/components/EventBus/tools.d.ts +1 -1
- package/components/Zoom/useZoomEvent.d.ts +1 -1
- package/components/Zoom/xRange.d.ts +17 -0
- package/index.js +11 -7
- package/modules/Heatmap/index.d.ts +1 -1
- package/modules/Heatmap/snapshot.d.ts +2 -1
- package/modules/Spectrum/Limit/Item.d.ts +1 -0
- package/modules/Spectrum/Markers/hooks/useMarkerEvents.d.ts +1 -0
- package/package.json +1 -1
- package/types/store/marker.d.ts +1 -0
- package/types/store/ui.d.ts +1 -0
|
@@ -3,7 +3,7 @@ interface Props {
|
|
|
3
3
|
heatmapDefaultData?: Array<Array<number>>;
|
|
4
4
|
onSubscriptionReadyChange?: (ready: boolean) => void;
|
|
5
5
|
overview?: ReactNode;
|
|
6
|
-
|
|
6
|
+
zoomMode?: 'disabled' | 'independent-xy' | 'linked-x';
|
|
7
7
|
}
|
|
8
8
|
declare const Heatmap: React.FC<Props>;
|
|
9
9
|
export default Heatmap;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import type { WaterfallSnapshot } from '@rfkit/spectrum-analyzer';
|
|
1
|
+
import type { TimestampedFloat32Array, WaterfallAnalyzer, WaterfallSnapshot } from '@rfkit/spectrum-analyzer';
|
|
2
|
+
export declare const setHeatmapWaterfallData: (analyzer: WaterfallAnalyzer, frames: readonly TimestampedFloat32Array[]) => Readonly<WaterfallSnapshot>;
|
|
2
3
|
export declare const getHeatmapWaterfallSnapshot: (globalID: string) => Readonly<WaterfallSnapshot> | null;
|
|
3
4
|
export declare const resetHeatmapViewport: (globalID: string) => boolean;
|
package/package.json
CHANGED
package/types/store/marker.d.ts
CHANGED