@rfkit/charts 1.1.15 → 1.1.16
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/ToolsBar/IconBox.d.ts +1 -0
- package/components/ToolsBar/SeriesControl/index.d.ts +5 -1
- package/config/constants.d.ts +1 -0
- package/index.js +2973 -2924
- package/package.json +1 -1
- package/types/publish.d.ts +4 -1
package/package.json
CHANGED
package/types/publish.d.ts
CHANGED
|
@@ -95,11 +95,14 @@ export interface PublishGauge {
|
|
|
95
95
|
export interface Reset extends Finally {
|
|
96
96
|
pstype: PSType.Reset;
|
|
97
97
|
}
|
|
98
|
+
export interface Clear extends Finally {
|
|
99
|
+
pstype: PSType.Clear;
|
|
100
|
+
}
|
|
98
101
|
export interface Render {
|
|
99
102
|
pstype: PSType.Render;
|
|
100
103
|
[key: string]: unknown;
|
|
101
104
|
}
|
|
102
|
-
export type PublishData = SetOption | SetSeries | SetSpectrumBandwidth | SetSegments | SetChannels | SetMarker | SetAntennaFactor | SetStationInfo | PublishSpectrum | PublishHeatmap | PublishOccupancy | PublishLevelStream | PublishIQ | PublishDial | PublishGauge | Reset | Render;
|
|
105
|
+
export type PublishData = SetOption | SetSeries | SetSpectrumBandwidth | SetSegments | SetChannels | SetMarker | SetAntennaFactor | SetStationInfo | PublishSpectrum | PublishHeatmap | PublishOccupancy | PublishLevelStream | PublishIQ | PublishDial | PublishGauge | Reset | Clear | Render;
|
|
103
106
|
export type Publish = ((p: PublishData) => void) & {
|
|
104
107
|
getSourceData: () => rawData;
|
|
105
108
|
};
|