@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/index.cjs.js +1 -1
- package/package.json +1 -1
- package/src/lib/feature/legacyLegend/legend.d.ts +2 -2
- package/src/lib/services/dataLayerPanel/dataLayerPanel.store.d.ts +2 -2
- package/src/lib/types/searchItemDetailsType.d.ts +1 -1
- package/src/lib/feature/measuringPoint/components/measuringPointDetails/mediaItemView/MeasuringPointImageView.d.ts +0 -15
- package/src/lib/feature/measuringPoint/components/measuringPointDetails/mediaItemView/MeasuringPointImageViewFooter.d.ts +0 -7
- package/src/lib/feature/measuringPoint/components/measuringPointDetails/mediaItemView/MeasuringPointImageViewMedia.d.ts +0 -10
- package/src/lib/feature/measuringPoint/components/measuringPointDetails/mediaItemView/NavigationButton.d.ts +0 -8
- package/src/lib/feature/measuringPoint/components/measuringPointDetails/mediaItemView/desktopMediaView.d.ts +0 -10
- package/src/lib/feature/measuringPoint/components/measuringPointDetails/mediaItemView/mediaViewUtils.d.ts +0 -3
- package/src/lib/feature/measuringPoint/components/measuringPointDetails/mediaItemView/mobileMediaView.d.ts +0 -10
package/package.json
CHANGED
|
@@ -36,7 +36,7 @@ export declare enum LegendStatus {
|
|
|
36
36
|
LO = "LO",
|
|
37
37
|
OnWatch = "OnWatch",
|
|
38
38
|
InProgress = "InProgress",
|
|
39
|
-
|
|
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
|
-
|
|
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
|
|
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
|
-
|
|
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"> & {
|
|
@@ -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,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,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,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 {};
|