@equinor/echo-framework 0.20.23-beta-0 → 0.20.23-beta-1
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
package/src/index.d.ts
CHANGED
|
@@ -3,9 +3,9 @@ import './lib/globalStyles.css';
|
|
|
3
3
|
import { getPlantsInfo, getTagDetails } from './lib/services/api';
|
|
4
4
|
export * from './lib/components';
|
|
5
5
|
export { PrepviewButton } from './lib/components/prepviewButton/prepviewButton';
|
|
6
|
+
export { useFetchPlantInfo } from './lib/components/requestAccess/hooks/fetchPlantInfo';
|
|
6
7
|
export { RequestProCoSysAccess } from './lib/components/requestAccess/RequestProCoSysAccess';
|
|
7
8
|
export { RequestSapAccess } from './lib/components/requestAccess/RequestSapAccess';
|
|
8
|
-
export { useFetchPlantInfo } from './lib/components/requestAccess/hooks/fetchPlantInfo';
|
|
9
9
|
export { WorkOrderListItem } from './lib/components/workOrderListItem';
|
|
10
10
|
export * from './lib/coreApplication';
|
|
11
11
|
export { fetchEquipmentFromApi } from './lib/feature/equipment/api/api-equipmentWithMeasuringPoints';
|
|
@@ -17,7 +17,6 @@ export { PanTo3DButton } from './lib/feature/globalSelection/panToEcho3d/panTo3D
|
|
|
17
17
|
export { useIsAllIGlobalSelectionItemsHidden } from './lib/feature/globalSelection/selectionMenu/hooks/useIsAllIGlobalSelectionItemsHidden';
|
|
18
18
|
export { GlobalSelectionCategoryId, SelectionMenuDefaultListIds } from './lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.types';
|
|
19
19
|
export * from './lib/feature/legacyLegend/index';
|
|
20
|
-
export * from './lib/feature/legend';
|
|
21
20
|
export { PositionalLegendMarkers } from './lib/feature/legend/components/pdfMarkers/PositionalLegendMarkers';
|
|
22
21
|
export * from './lib/feature/legend/index';
|
|
23
22
|
export { subscribeToLegendDataChanged } from './lib/feature/legend/legendUpdater';
|
|
@@ -26,8 +25,8 @@ export { getLatestMeasurementDate, sortMeasuringPointsByMeasurementDate } from '
|
|
|
26
25
|
export * from './lib/feature/measuringPoint/index';
|
|
27
26
|
export * from './lib/feature/measuringPoint/types/measuringPoint';
|
|
28
27
|
export * from './lib/feature/openItemsIn3d';
|
|
29
|
-
export { OpenIn3dSelectedItemsMenu } from './lib/feature/openItemsIn3d/OpenIn3dSelectedItemsMenu';
|
|
30
28
|
export { createEcho3dInternalLink } from './lib/feature/openItemsIn3d/logic/createEcho3dInternalLink';
|
|
29
|
+
export { OpenIn3dSelectedItemsMenu } from './lib/feature/openItemsIn3d/OpenIn3dSelectedItemsMenu';
|
|
31
30
|
export { WorkOrderContent } from './lib/feature/workOrder/WorkOrderContent';
|
|
32
31
|
export { RegisteredHookName } from './lib/hooks/hookLibrary';
|
|
33
32
|
export { useCloseActiveTopMenuAtBreakPoint } from './lib/hooks/useCloseActiveTopMenuAtBreakPoint';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import './legendStrategies/workOrderStrategy/WorkOrderLegend';
|
|
2
2
|
export { LegendList as LegendsRenderer } from './components/LegendList';
|
|
3
3
|
export { PositionalItem } from './components/pdfMarkers/PositionalItem';
|
|
4
|
-
export {
|
|
4
|
+
export { MultipleMarkersByLegends } from './components/pdfMarkers/subComponents/MultipleMarkersByLegends';
|
|
5
5
|
export { legendFacade } from './legendFacade';
|
|
6
6
|
export type { Badge, Marker } from './types/legendMarkerBadge.type';
|
|
7
7
|
export type { LegendStrategy } from './types/legendStrategy.type';
|
|
@@ -19,7 +19,7 @@ type ResolvedDataType<T extends KnownDataTypeKeys> = KnownDataTypes[T];
|
|
|
19
19
|
* - key1: [data1, data2, ...]
|
|
20
20
|
* ...
|
|
21
21
|
*/
|
|
22
|
-
|
|
22
|
+
interface LegendVisibleData {
|
|
23
23
|
data: LegendVisibleDataState;
|
|
24
24
|
}
|
|
25
25
|
type LegendVisibleDataState = {
|