@rfkit/charts 1.1.39 → 1.1.40

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/package.json CHANGED
@@ -5,6 +5,6 @@
5
5
  "types": "index.d.ts",
6
6
  "author": "Hxgh",
7
7
  "license": "MIT",
8
- "version": "1.1.39",
8
+ "version": "1.1.40",
9
9
  "private": false
10
10
  }
@@ -75,6 +75,7 @@ export interface PublishOccupancy {
75
75
  export interface PublishLevelStream {
76
76
  pstype: PSType.LevelStream;
77
77
  data: number;
78
+ timestamp: number;
78
79
  }
79
80
  export interface PublishIQ {
80
81
  pstype: PSType.IQ;
package/types/store.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type { TimestampedFloat32Array } from '@rfkit/spectrum-analyzer';
2
- import type { MarkerEventType, SeriesType } from '../config';
2
+ import type { MarkerEventType, ModuleType, SeriesType } from '../config';
3
3
  import type { AxisXRange, AxisYRange, Publish, RecursiveObject, SegmentsType, SeriesConfig, StationInfoType, TopRightBottomLeft } from './';
4
4
  export interface SystemConfig {
5
5
  width: number;
@@ -148,6 +148,7 @@ export interface CursorProps {
148
148
  event: React.MouseEvent | null;
149
149
  coord: TopRightBottomLeft;
150
150
  timeout: number;
151
+ mode?: ModuleType;
151
152
  }
152
153
  export interface ZoomProps {
153
154
  show: boolean;