@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/echo-framework",
3
- "version": "0.14.2",
3
+ "version": "0.14.3",
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",
@@ -3,5 +3,4 @@ export * from './contentPicker';
3
3
  export * from './details';
4
4
  export * from './fileSizeDisplay';
5
5
  export * from './info';
6
- export * from './link/Link';
7
6
  export * from './statusLabel/StatusLabel';
@@ -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
- import React from 'react';
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: React.MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
3
+ declare const _default: import("react").MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
20
4
  export default _default;
@@ -1,6 +0,0 @@
1
- interface LinkProps {
2
- href: string;
3
- linkText: string;
4
- }
5
- declare const Link: ({ href, linkText }: LinkProps) => import("react/jsx-runtime").JSX.Element;
6
- export { Link };