@equinor/echo-framework 0.14.0 → 0.14.1-beta
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/{47deeba42768c5d1.svg → 063009f06499d102.svg} +8 -8
- package/README.md +55 -55
- package/{1bd97dd2170d0f64.svg → f4c85313e79b1662.svg} +850 -850
- package/index.css +2935 -2890
- package/index.js +8 -8
- package/package.json +2 -2
- package/src/lib/components/router/routes.d.ts +1 -0
- package/src/lib/coreApplication/EchoContent.d.ts +0 -1
- package/src/lib/coreApplication/EchoToolBar.d.ts +2 -1
- package/src/lib/coreApplication/EchoUserInterfaceStore.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/echo-framework",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.1-beta",
|
|
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
|
|
25
|
+
"types": "./src\\index.d.ts",
|
|
26
26
|
"dependencies": {}
|
|
27
27
|
}
|
|
@@ -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
|
/**
|