@dexteel/mesf-core 4.6.0 → 4.6.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.
@@ -52,3 +52,7 @@ export interface ViewTag {
52
52
  IsVisible: boolean;
53
53
  IsAutoScale: boolean;
54
54
  }
55
+ export interface ViewTagDataSet {
56
+ timestamp: number;
57
+ value: number;
58
+ }
@@ -1,6 +1,7 @@
1
1
  import React from "react";
2
+ import { ViewTagDataSet } from "../models/TrendingModels";
2
3
  interface Props {
3
- series: any[];
4
+ series: ViewTagDataSet[][];
4
5
  chartOptions: any;
5
6
  setChartOptions: any;
6
7
  setCursorData: any;
@@ -82,4 +82,14 @@ export declare const TrendingsReducer: import("@reduxjs/toolkit").Slice<{
82
82
  payload: any;
83
83
  type: string;
84
84
  }): void;
85
+ setGraphShouldUpdate(state: import("immer/dist/internal").WritableDraft<{
86
+ timeScopeStart: Date;
87
+ timeScopeEnd: Date;
88
+ scope: scopeType;
89
+ graphPan?: boolean | undefined;
90
+ graphShouldUpdate: number;
91
+ views: View[];
92
+ viewSelected: View | null;
93
+ viewTags: ViewTag[];
94
+ }>): void;
85
95
  }, "__">;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dexteel/mesf-core",
3
- "version": "4.6.0",
3
+ "version": "4.6.1",
4
4
  "author": "Dexteel Team",
5
5
  "module": "dist/index.esm.js",
6
6
  "typings": "dist/index.d.ts",