@equinor/echo-framework 0.21.2 → 0.21.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.21.2",
3
+ "version": "0.21.3",
4
4
  "peerDependencies": {
5
5
  "@equinor/echo-base": ">= 0.7.0 < 0.8.0",
6
6
  "@equinor/echo-components": ">= 0.12.0 < 0.13.0",
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
2
  import { SideSheetOrientation, WorkOrderDateType } from '@equinor/echo-components';
3
+ import { SEBadgeType, SNBadgeType, WoBadgeType } from './colors';
3
4
  import { Coordinates, HistoricNotificationItem, HistoricPunchItem, HistoricWorkOrderItem, ItemTypes, WorkOrderEquipment } from './types';
4
5
  import { WorkItemType } from './utils';
5
- import { SEBadgeType, SNBadgeType, WoBadgeType } from './colors';
6
6
  interface PrepviewProps {
7
7
  orientation: SideSheetOrientation;
8
8
  headerAction?: React.ReactNode;
@@ -25,5 +25,5 @@ interface PrepviewProps {
25
25
  }
26
26
  declare function Prepview(props: PrepviewProps): JSX.Element | null;
27
27
  export * from './types/shared';
28
- export { MaintenanceApiNameForWorkOrders, WorkItemType } from './utils';
28
+ export { WorkItemType } from './utils';
29
29
  export { Prepview };
@@ -5,4 +5,3 @@ export * from './logger';
5
5
  export * from './object';
6
6
  export * from './string';
7
7
  export * from './url';
8
- export * from './workorder';
@@ -4,3 +4,8 @@ export interface PlantEvent {
4
4
  stayOnPath?: boolean;
5
5
  alertUserPlantChanged?: boolean;
6
6
  }
7
+ export interface PlantSelectedToBeOpenedIn3DEvent {
8
+ instCode: string;
9
+ sapId: string | undefined;
10
+ pdmsPlantCode: string | undefined;
11
+ }
@@ -1 +0,0 @@
1
- export declare const MaintenanceApiNameForWorkOrders: Record<string, string>;