@equinor/echo-framework 0.20.18 → 0.20.19-beta-0

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.18",
3
+ "version": "0.20.19-beta-0",
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",
@@ -36,7 +36,7 @@ export declare enum LegendStatus {
36
36
  LO = "LO",
37
37
  OnWatch = "OnWatch",
38
38
  InProgress = "InProgress",
39
- AnnotationError = "AnnotationError"
39
+ IocAnnotationError = "IocAnnotationError"
40
40
  }
41
41
  export declare enum LegendType {
42
42
  Stid = "Stid",
@@ -50,5 +50,5 @@ export declare enum LegendType {
50
50
  ValvePosition = "ValvePosition",
51
51
  MeasuringPosition = "MeasuringPosition",
52
52
  WorkPermit = "WorkPermit",
53
- Annotations = "Annotations"
53
+ IocAnnotations = "IocAnnotations"
54
54
  }
@@ -3,7 +3,7 @@ interface PanelUserSettings {
3
3
  readonly isTagsVisible: boolean;
4
4
  readonly isWorkOrdersVisible: boolean;
5
5
  readonly isEquipmentsVisible: boolean;
6
- readonly isAnnotationsVisible: boolean;
6
+ readonly isIocAnnotationsVisible: boolean;
7
7
  }
8
8
  interface DataLayerPanelState {
9
9
  readonly isOpen: boolean;
@@ -14,7 +14,7 @@ interface DataLayerPanelActions {
14
14
  toggleWorkOrders: () => void;
15
15
  toggleEquipments: () => void;
16
16
  toggleTags: () => void;
17
- toggleAnnotations: () => void;
17
+ toggleIocAnnotations: () => void;
18
18
  }
19
19
  type DataLayerPanelStore = DataLayerPanelState & DataLayerPanelActions;
20
20
  export declare const useDataLayerPanelStore: import("zustand").UseBoundStore<Omit<Omit<Omit<Omit<import("zustand").StoreApi<DataLayerPanelStore>, "setState"> & {
@@ -9,5 +9,5 @@ export declare enum SearchItemDetailsType {
9
9
  WorkOrder = "WorkOrder",
10
10
  MeasuringPoint = "MeasuringPoint",
11
11
  Equipment = "Equipment",
12
- Annotation = "Annotation"
12
+ IocAnnotation = "IocAnnotation"
13
13
  }
@@ -1,15 +0,0 @@
1
- import React from 'react';
2
- interface MeasuringPointImageViewProps {
3
- title: string;
4
- date: string;
5
- triggerScrim: () => void;
6
- showPrevious: () => void;
7
- showNext: () => void;
8
- showPrevIcon: boolean;
9
- showNextIcon: boolean;
10
- imageSrc: string;
11
- description?: string;
12
- open: boolean;
13
- }
14
- export declare const MeasuringPointImageView: React.FC<React.PropsWithChildren<MeasuringPointImageViewProps>>;
15
- export {};
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- interface MeasuringPointImageViewFooterProps {
3
- description?: string;
4
- date: string;
5
- }
6
- export declare const MeasuringPointImageViewFooter: React.FC<MeasuringPointImageViewFooterProps>;
7
- export {};
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- interface MeasuringPointImageViewMediaProps {
3
- imageSrc: string;
4
- showPrevious: () => void;
5
- showNext: () => void;
6
- showNextIcon: boolean;
7
- showPrevIcon: boolean;
8
- }
9
- export declare const MeasuringPointImageViewMedia: React.FC<React.PropsWithChildren<MeasuringPointImageViewMediaProps>>;
10
- export {};
@@ -1,8 +0,0 @@
1
- type Direction = 'previous' | 'next';
2
- interface NavigationButtonProps {
3
- direction: Direction;
4
- onClick: () => void;
5
- disabled?: boolean;
6
- }
7
- export declare const NavigationButton: React.FC<NavigationButtonProps>;
8
- export {};
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- interface DesktopMediaViewProps {
3
- imageSrc: string;
4
- showPrevious: () => void;
5
- showNext: () => void;
6
- showNextIcon: boolean;
7
- showPrevIcon: boolean;
8
- }
9
- export declare const DesktopMediaView: React.FC<React.PropsWithChildren<DesktopMediaViewProps>>;
10
- export {};
@@ -1,3 +0,0 @@
1
- import React from 'react';
2
- import { SwipeableProps } from 'react-swipeable';
3
- export declare const Swipeable: React.FC<React.PropsWithChildren<SwipeableProps>>;
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- interface MobileMediaViewProps {
3
- imageSrc: string;
4
- showPrevious: () => void;
5
- showNext: () => void;
6
- showNextIcon: boolean;
7
- showPrevIcon: boolean;
8
- }
9
- export declare const MobileMediaView: React.FC<React.PropsWithChildren<MobileMediaViewProps>>;
10
- export {};