@equinor/echo-framework 6.0.0 → 6.2.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.
Files changed (84) hide show
  1. package/index.cjs.js +2 -2
  2. package/package.json +8 -8
  3. package/src/index.d.ts +1 -1
  4. package/src/lib/components/panel/panelNavigation.helper.d.ts +1 -2
  5. package/src/lib/feature/globalSelection/coordinate/coordinate.clean.d.ts +6 -0
  6. package/src/lib/feature/globalSelection/coordinate/coordinate.logic.d.ts +3 -0
  7. package/src/lib/feature/globalSelection/coordinate/coordinate.types.d.ts +19 -0
  8. package/src/lib/feature/globalSelection/globalSelection.api.d.ts +4 -0
  9. package/src/lib/feature/globalSelection/globalSelectionStore/actions/setRelatedTo.action.d.ts +7 -0
  10. package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.d.ts +242 -0
  11. package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.mutableSelectionItem.d.ts +2 -1
  12. package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.testHelpers.d.ts +5 -0
  13. package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.types.d.ts +25 -6
  14. package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.utils.d.ts +3 -1
  15. package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStoreHelpers.d.ts +3 -1
  16. package/src/lib/feature/globalSelection/globalSelectionStore/itemIdTypeGuards.d.ts +3 -1
  17. package/src/lib/feature/globalSelection/globalSelectionStore/nullItems/createNullCoordinate.d.ts +3 -0
  18. package/src/lib/feature/globalSelection/index.d.ts +1 -0
  19. package/src/lib/feature/globalSelection/selectionMenu/hooks/useFetchSelectionHistory.d.ts +1 -1
  20. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/colorConflictHandling/SelectionColorConflictDialog.d.ts +1 -1
  21. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.d.ts +18 -0
  22. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.types.d.ts +3 -6
  23. package/src/lib/feature/globalSelection/strategies/coordinateSelection.strategy.d.ts +3 -0
  24. package/src/lib/feature/legend/components/pdfMarkers/subComponents/LegendColoredMarkerIcon.d.ts +6 -9
  25. package/src/lib/feature/legend/components/pdfMarkers/subComponents/MarkerWithPopover.d.ts +6 -7
  26. package/src/lib/feature/legend/components/pdfMarkers/subComponents/components/MultipleMarkersBySingleLegend/multipleMarkersBySingleLegend.logic.d.ts +5 -7
  27. package/src/lib/feature/legend/components/pdfMarkers/subComponents/components/MultipleMarkersBySingleLegend/useStalePopoverMarkers.d.ts +3 -3
  28. package/src/lib/feature/legend/components/pdfMarkers/subComponents/hooks/useMarkerPopover.d.ts +2 -2
  29. package/src/lib/feature/legend/components/pdfMarkers/utils/markerId.utils.d.ts +11 -3
  30. package/src/lib/feature/legend/components/popover/LegendPopoverContent.logic.d.ts +14 -21
  31. package/src/lib/feature/legend/components/selectionLegend/hooks/useAllMarkerItemIdsForEnabledLegends.d.ts +4 -4
  32. package/src/lib/feature/legend/components/selectionLegend/selectionLegend.utils.d.ts +9 -9
  33. package/src/lib/feature/legend/hooks/useLegendBadgeChips.d.ts +7 -0
  34. package/src/lib/feature/legend/hooks/useLegendHiddenItemsSubscription.d.ts +4 -14
  35. package/src/lib/feature/legend/hooks/useLegendMarkerChips.d.ts +7 -0
  36. package/src/lib/feature/legend/hooks/useLegendMarkers/useLegendMarkers.d.ts +17 -0
  37. package/src/lib/feature/legend/hooks/useLegendMarkers/useLegendMarkers.logic.d.ts +65 -0
  38. package/src/lib/feature/legend/hooks/useLegendMarkers/useLegendMarkers.utils.d.ts +14 -0
  39. package/src/lib/feature/legend/hooks/useWorkOrdersByTagsQuery.d.ts +1 -1
  40. package/src/lib/feature/legend/index.d.ts +8 -6
  41. package/src/lib/feature/legend/legendFacade.d.ts +9 -15
  42. package/src/lib/feature/legend/legendStrategies/iocAnnotationStrategy/api/iocAnnotationLegend.api.d.ts +3 -0
  43. package/src/lib/feature/legend/legendStrategies/iocAnnotationStrategy/hooks/useIocAnnotationMarkers.d.ts +3 -0
  44. package/src/lib/feature/legend/legendStrategies/iocAnnotationStrategy/hooks/useIocAnnotationMarkers.utils.d.ts +21 -0
  45. package/src/lib/feature/legend/legendStrategies/iocAnnotationStrategy/iocAnnotationStrategy.d.ts +1 -0
  46. package/src/lib/feature/legend/legendStrategies/iocAnnotationStrategy/iocAnnotationStrategy.types.d.ts +25 -0
  47. package/src/lib/feature/legend/legendStrategies/iocAnnotationStrategy/optionConfigs/iocAnnotationBadgeLegendOptionConfig.d.ts +3 -0
  48. package/src/lib/feature/legend/legendStrategies/iocAnnotationStrategy/optionConfigs/iocAnnotationMarkerLegendOptionConfig.d.ts +3 -0
  49. package/src/lib/feature/legend/legendStrategies/notificationStrategy/hooks/useNotificationDetailsByIds.d.ts +1 -1
  50. package/src/lib/feature/legend/legendStrategies/notificationStrategy/hooks/useNotificationRawMarkers.d.ts +10 -0
  51. package/src/lib/feature/legend/legendStrategies/notificationStrategy/logic/notificationLegend.logic.d.ts +5 -5
  52. package/src/lib/feature/legend/legendStrategies/notificationStrategy/utils/getNotificationTitlesByPropertyName.d.ts +1 -1
  53. package/src/lib/feature/legend/legendStrategies/notificationStrategy/utils/notificationLegend.utils.d.ts +2 -4
  54. package/src/lib/feature/legend/legendStrategies/workOrderStrategy/useCreateWorkOrderMarkers.d.ts +7 -4
  55. package/src/lib/feature/legend/logic/displayKeys.logic.d.ts +11 -0
  56. package/src/lib/feature/legend/logic/legendChips.logic.d.ts +8 -0
  57. package/src/lib/feature/legend/logic/propertyAccessor.utils.d.ts +5 -16
  58. package/src/lib/feature/legend/stores/legendUIStore/legendUIStore.d.ts +2 -2
  59. package/src/lib/feature/legend/stores/legendUIStore/legendUIStore.types.d.ts +25 -12
  60. package/src/lib/feature/legend/types/legendMarkerBadge.type.d.ts +74 -11
  61. package/src/lib/feature/legend/types/legendStrategy.type.d.ts +10 -5
  62. package/src/lib/feature/legend/types/legendType.d.ts +17 -6
  63. package/src/lib/feature/measuringPoint/components/lastRecordedMeasurement/lastRecordedMeasurement.logic.d.ts +1 -6
  64. package/src/lib/feature/measuringPoint/components/lastRecordedMeasurement/lastRecordedMeasurement.types.d.ts +5 -0
  65. package/src/lib/feature/measuringPoint/components/measuringPointDetails/measuringPointImageList.logic.d.ts +6 -0
  66. package/src/lib/feature/measuringPoint/components/measuringPointDetails/type/attachment.d.ts +4 -4
  67. package/src/lib/feature/measuringPoint/components/measuringPoints.utils.d.ts +2 -0
  68. package/src/lib/feature/measuringPoint/hooks/useDocumentRelationships.d.ts +1 -1
  69. package/src/lib/feature/measuringPoint/types/documentRelationships.d.ts +7 -7
  70. package/src/lib/feature/measuringPoint/types/measuringPoint.d.ts +14 -14
  71. package/src/lib/services/echoViewService/echoView.type.d.ts +0 -1
  72. package/src/lib/types/hookLibrary.d.ts +34 -22
  73. package/src/lib/feature/legend/components/basicLegendRenderer.logic.d.ts +0 -5
  74. package/src/lib/feature/legend/components/pdfMarkers/utils/splitMarkerByColor.d.ts +0 -34
  75. package/src/lib/feature/legend/components/pdfMarkers/utils/splitMarkerByColor.types.d.ts +0 -37
  76. package/src/lib/feature/legend/hooks/useGroupedMarkers.d.ts +0 -23
  77. package/src/lib/feature/legend/hooks/useGroupedMarkers.utils.d.ts +0 -9
  78. package/src/lib/feature/legend/hooks/useLegendMarker/useLegendMarker.d.ts +0 -19
  79. package/src/lib/feature/legend/hooks/useLegendMarker/useLegendMarker.utils.d.ts +0 -21
  80. package/src/lib/feature/legend/hooks/useLegendUniqueBadges.d.ts +0 -7
  81. package/src/lib/feature/legend/hooks/useLegendUniqueMarkers.d.ts +0 -7
  82. package/src/lib/feature/legend/hooks/useUniqueSelectionOnlyBadgeIdStrings.d.ts +0 -8
  83. package/src/lib/feature/legend/legendStrategies/notificationStrategy/hooks/useNotificationMarkers.d.ts +0 -10
  84. package/src/lib/feature/legend/logic/hiddenLegendChips.logic.d.ts +0 -6

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.