@equinor/echo-framework 1.0.0 → 1.1.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.
Files changed (71) hide show
  1. package/index.cjs.js +8 -8
  2. package/package.json +5 -5
  3. package/src/index.d.ts +2 -2
  4. package/src/lib/components/fullScreenButtons/index.d.ts +0 -2
  5. package/src/lib/components/prepview/panels/tagInformation/TagInformation.d.ts +1 -1
  6. package/src/lib/coreApplication/BarComponents/SelectionStatusDotIndicator.d.ts +1 -0
  7. package/src/lib/coreApplication/EchoContentPanels.d.ts +1 -5
  8. package/src/lib/feature/equipment/components/equipmentItemHeader/showEquipmentIn3dButton.d.ts +1 -1
  9. package/src/lib/feature/globalSelection/globalSelection.api.d.ts +30 -4
  10. package/src/lib/feature/globalSelection/globalSelection.internal.d.ts +1 -1
  11. package/src/lib/feature/globalSelection/globalSelectionColorService.d.ts +57 -0
  12. package/src/lib/feature/globalSelection/globalSelectionColorService.types.d.ts +3 -0
  13. package/src/lib/feature/globalSelection/globalSelectionStore/actions/addEquipmentsToSelection.action.d.ts +1 -0
  14. package/src/lib/feature/globalSelection/globalSelectionStore/actions/addItemsToSelectionFactory.d.ts +1 -0
  15. package/src/lib/feature/globalSelection/globalSelectionStore/actions/addMeasuringPointsToSelection.action.d.ts +1 -0
  16. package/src/lib/feature/globalSelection/globalSelectionStore/actions/addTagsToSelection.action.d.ts +1 -0
  17. package/src/lib/feature/globalSelection/globalSelectionStore/actions/addWorkOrdersToSelection.action.d.ts +1 -0
  18. package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.repository.d.ts +2 -2
  19. package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.types.d.ts +7 -5
  20. package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.utils.d.ts +24 -4
  21. package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStoreHelpers.d.ts +12 -2
  22. package/src/lib/feature/globalSelection/hooks/useGlobalSelectionLists.d.ts +0 -2
  23. package/src/lib/feature/globalSelection/index.d.ts +5 -2
  24. package/src/lib/feature/globalSelection/selectionMenu/hooks/useGlobalSelectionGroups.d.ts +24 -1
  25. package/src/lib/feature/globalSelection/selectionMenu/hooks/useSelectionColorFrequency.d.ts +18 -0
  26. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/addItems.action.d.ts +16 -0
  27. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/addItemsToSelectionTreeFactory.d.ts +1 -1
  28. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/common.action.types.d.ts +5 -0
  29. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/createGroup.action.d.ts +20 -0
  30. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/moveItems.action.d.ts +31 -0
  31. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/removeGroupById.action.d.ts +21 -0
  32. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/removeItemsById.action.d.ts +24 -0
  33. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/selectionTree.action.types.d.ts +14 -15
  34. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/setVisibility.action.d.ts +21 -0
  35. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/api/selectionTree.api.d.ts +14 -4
  36. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/api/selectionTree.equipment.d.ts +5 -0
  37. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/colorConflictHandling/SelectionColorConflictDialog.d.ts +11 -0
  38. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/colorConflictHandling/selectionColorConflict.store.d.ts +27 -0
  39. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/devOnlySimulateOffline.d.ts +7 -0
  40. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/diskId.type.d.ts +2 -0
  41. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/persistError.d.ts +5 -0
  42. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/selectionTree.diskBackup.d.ts +45 -0
  43. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/selectionTree.diskBackupStatus.d.ts +19 -0
  44. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/selectionTree.load.d.ts +8 -0
  45. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/selectionTree.load.utils.d.ts +42 -0
  46. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/selectionTree.save.d.ts +1 -0
  47. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/selectionTreeLoader.service.d.ts +42 -0
  48. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/{useSelectionTreeAutoSave.d.ts → persist/useSelectionTreeAutoSave.d.ts} +2 -0
  49. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.api.types.d.ts +8 -3
  50. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.d.ts +15 -0
  51. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.types.d.ts +15 -3
  52. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.utils.d.ts +64 -2
  53. package/src/lib/feature/legacyLegend/legend.d.ts +1 -0
  54. package/src/lib/feature/legend/components/legendTextSelector/LegendTextSelector.d.ts +21 -0
  55. package/src/lib/feature/legend/components/popover/LegendPopoverContent.d.ts +4 -0
  56. package/src/lib/feature/legend/components/popover/LegendPopoverContent.logic.d.ts +1 -1
  57. package/src/lib/feature/legend/index.d.ts +6 -0
  58. package/src/lib/feature/legend/types/legendMarkerBadge.type.d.ts +9 -2
  59. package/src/lib/feature/legend/types/legendStrategy.type.d.ts +1 -0
  60. package/src/lib/feature/legend/types/legendType.d.ts +1 -0
  61. package/src/lib/services/api/api-plants.d.ts +4 -0
  62. package/src/lib/services/echoViewService/echoView.type.d.ts +2 -1
  63. package/src/lib/services/echoViewService/loadEchoViewIdAndSelectionIdFromUrl.d.ts +5 -4
  64. package/src/lib/utils/startup.d.ts +1 -0
  65. package/src/lib/components/fullScreenButtons/FullScreenChip.d.ts +0 -7
  66. package/src/lib/components/fullScreenButtons/FullScreenModeChip.d.ts +0 -14
  67. package/src/lib/feature/globalSelection/selectionMenu/hooks/useGlobalSelectionColorsSortedByFrequency.d.ts +0 -10
  68. package/src/lib/feature/globalSelection/selectionMenu/hooks/useMoveSelectionTreeItems.d.ts +0 -10
  69. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.repository.d.ts +0 -5
  70. /package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/{currentSelectionId.repository.d.ts → persist/currentSelectionId.repository.d.ts} +0 -0
  71. /package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/{legacyPersistedSelection.d.ts → persist/legacyPersistedSelection.d.ts} +0 -0

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.