@equinor/echo-framework 0.14.0 → 0.14.1-beta-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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/echo-framework",
3
- "version": "0.14.0",
3
+ "version": "0.14.1-beta-1",
4
4
  "peerDependencies": {
5
5
  "@equinor/echo-base": ">= 0.6.12 < 0.7.0",
6
6
  "@equinor/echo-components": ">= 0.7.0 < 0.8.0",
@@ -22,6 +22,6 @@
22
22
  "module": "./index.js",
23
23
  "main": "./index.js",
24
24
  "type": "module",
25
- "types": "./src/index.d.ts",
25
+ "types": "./src\\index.d.ts",
26
26
  "dependencies": {}
27
27
  }
@@ -1,5 +1,5 @@
1
- import { SignalRState } from './useSignalR';
2
1
  import { IMSByName } from '../../../types/realtimedata';
2
+ import { SignalRState } from './useSignalR';
3
3
  interface RealTimeData extends SignalRState {
4
4
  metadata?: IMSByName;
5
5
  present?: SignalRData;
@@ -1,5 +1,6 @@
1
1
  import React, { ErrorInfo } from 'react';
2
2
  export interface EchoRoutesProps {
3
+ homeComponent?: React.FC;
3
4
  routeErrorHandler?: (error: Error, errorInfo: ErrorInfo) => void;
4
5
  }
5
6
  export declare const EchoRoutes: React.FC<EchoRoutesProps>;
@@ -2,7 +2,6 @@ import React from 'react';
2
2
  interface CorePanelsProps {
3
3
  children: React.ReactNode;
4
4
  Legend?: React.FC;
5
- isToggleButtonVisible?: boolean;
6
5
  }
7
6
  export declare const EchoContent: React.FC<CorePanelsProps>;
8
7
  export {};
@@ -12,7 +12,8 @@ export declare enum PanelNames {
12
12
  pdfTagList = "pdfTagList",
13
13
  highlightedPanel = "highlightedPanel",
14
14
  XLDsearchPanel = "XLDsearchPanel",
15
- XLDcommentPanel = "XLDcommentPanel"
15
+ XLDcommentPanel = "XLDcommentPanel",
16
+ bucketPanel = "bucketPanel"
16
17
  }
17
18
  export declare const EchoToolBar: () => import("react/jsx-runtime").JSX.Element;
18
19
  declare const _default: React.MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
@@ -6,13 +6,11 @@ export interface EchoUiState {
6
6
  activeTopMenuItem: string;
7
7
  activeTopMenuComponents: FunctionComponent[];
8
8
  moduleName: string;
9
- showPlantNameContent: boolean;
10
9
  updateActiveAppMenuItem: (newActiveAppMenuItem: string) => void;
11
10
  updateIsLegendActive: (isLegendActive: boolean) => void;
12
11
  updateActiveTopMenuItem: (newActiveTopMenuItem: string) => void;
13
12
  updateActiveTopMenuComponents: (newActiveTopMenuComponents: FunctionComponent[]) => void;
14
13
  updateModuleName: (newModuleName: string) => void;
15
- updateShowPlantNameContent: (showPlantNameContent: boolean) => void;
16
14
  }
17
15
  export declare const useEchoUserInterfaceStore: zustand.UseBoundStore<zustand.StoreApi<EchoUiState>>;
18
16
  /**