@rfkit/charts 1.1.38 → 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
package/types/publish.d.ts
CHANGED
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;
|
|
@@ -51,6 +51,7 @@ export interface SeriesProps {
|
|
|
51
51
|
legendExternal: SeriesType[];
|
|
52
52
|
enableMetrics?: boolean;
|
|
53
53
|
enableWaterfall?: boolean;
|
|
54
|
+
enableLengthSyncFastMode: boolean;
|
|
54
55
|
}
|
|
55
56
|
export declare enum MarkerMode {
|
|
56
57
|
Normal = "normal",
|
|
@@ -147,6 +148,7 @@ export interface CursorProps {
|
|
|
147
148
|
event: React.MouseEvent | null;
|
|
148
149
|
coord: TopRightBottomLeft;
|
|
149
150
|
timeout: number;
|
|
151
|
+
mode?: ModuleType;
|
|
150
152
|
}
|
|
151
153
|
export interface ZoomProps {
|
|
152
154
|
show: boolean;
|
|
@@ -158,10 +160,11 @@ export interface ZoomProps {
|
|
|
158
160
|
autoCloseTimeout: number;
|
|
159
161
|
}
|
|
160
162
|
export interface SignalData {
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
163
|
+
startFrequency?: number | string;
|
|
164
|
+
stopFrequency?: number | string;
|
|
165
|
+
frequency?: number | string;
|
|
166
|
+
bandwidth?: number | string;
|
|
167
|
+
color?: string;
|
|
165
168
|
}
|
|
166
169
|
export type SelectedSignal = {
|
|
167
170
|
segIndex: number;
|
|
@@ -171,7 +174,6 @@ export interface SignalProps {
|
|
|
171
174
|
show: boolean;
|
|
172
175
|
display: boolean;
|
|
173
176
|
data: SignalData[];
|
|
174
|
-
selected: SelectedSignal;
|
|
175
177
|
onChange: (e: SelectedSignal) => void;
|
|
176
178
|
}
|
|
177
179
|
export interface SignalAnalysisProps {
|