@equinor/echo-framework 0.14.2 → 0.14.3
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
|
@@ -16,6 +16,8 @@ export type WorkOrderDetails = FetchStatus & {
|
|
|
16
16
|
changedDateTime: Date;
|
|
17
17
|
createdDateTime: Date;
|
|
18
18
|
requiredEndDateTime: Date;
|
|
19
|
+
requiredEndDateStatus: string;
|
|
20
|
+
requiredEndDateStatusDescription: string;
|
|
19
21
|
maintenancePlanDate: Date;
|
|
20
22
|
maintenancePlant: string;
|
|
21
23
|
planningPlant: string;
|
|
@@ -1,20 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
export interface SidebarButtonListType {
|
|
3
|
-
buttonTitle: string;
|
|
4
|
-
onClick: () => void;
|
|
5
|
-
iconName: string;
|
|
6
|
-
iconColor: string;
|
|
7
|
-
isVisible: boolean;
|
|
8
|
-
active: boolean;
|
|
9
|
-
}
|
|
10
|
-
export declare enum PanelNames {
|
|
11
|
-
echoCoreSearch = "echoCoreSearch",
|
|
12
|
-
pdfTagList = "pdfTagList",
|
|
13
|
-
highlightedPanel = "highlightedPanel",
|
|
14
|
-
XLDsearchPanel = "XLDsearchPanel",
|
|
15
|
-
XLDcommentPanel = "XLDcommentPanel",
|
|
16
|
-
bucketPanel = "bucketPanel"
|
|
17
|
-
}
|
|
1
|
+
/// <reference types="react" />
|
|
18
2
|
export declare const EchoToolBar: () => import("react/jsx-runtime").JSX.Element;
|
|
19
|
-
declare const _default:
|
|
3
|
+
declare const _default: import("react").MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
|
|
20
4
|
export default _default;
|