@equinor/echo-framework 0.20.5 → 0.20.6-beta33

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.20.5",
3
+ "version": "0.20.6-beta33",
4
4
  "peerDependencies": {
5
5
  "@equinor/echo-base": ">= 0.7.0 < 0.8.0",
6
6
  "@equinor/echo-components": ">= 0.11.0 < 0.12.0",
package/src/index.d.ts CHANGED
@@ -19,6 +19,7 @@ export * from './lib/feature/measuringPoint/types/measuringPoint';
19
19
  export * from './lib/feature/openItemsIn3d';
20
20
  export { createEcho3dInternalLink } from './lib/feature/openItemsIn3d/logic/createEcho3dInternalLink';
21
21
  export { SelectedItemsMenu } from './lib/feature/openItemsIn3d/SelectedItemsMenu';
22
+ export { WorkOrderContent } from './lib/feature/workOrder/WorkOrderContent';
22
23
  export { RegisteredHookName } from './lib/hooks/hookLibrary';
23
24
  export { useIsCompactLayout } from './lib/hooks/useIsCompactLayout';
24
25
  export { useIsFullScreenModeEnabled } from './lib/hooks/useIsFullScreenModeEnabled';
@@ -2,6 +2,7 @@ interface TagNoProps {
2
2
  tagNo: string;
3
3
  className?: string;
4
4
  keepLastNavigationItem?: boolean;
5
+ activePanelKey?: string;
5
6
  }
6
- export declare const TagNumber: ({ tagNo, className, keepLastNavigationItem }: TagNoProps) => JSX.Element;
7
+ export declare const TagNumber: ({ tagNo, className, keepLastNavigationItem, activePanelKey }: TagNoProps) => JSX.Element;
7
8
  export {};
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ interface WorkOrderContentProps {
3
+ workOrderId: string;
4
+ }
5
+ export declare const WorkOrderContent: React.FC<WorkOrderContentProps>;
6
+ export {};
@@ -0,0 +1 @@
1
+ export { WorkOrderContent } from './WorkOrderContent';