@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.
- package/index.cjs.js +8 -8
- package/package.json +5 -5
- package/src/index.d.ts +2 -2
- package/src/lib/components/fullScreenButtons/index.d.ts +0 -2
- package/src/lib/components/prepview/panels/tagInformation/TagInformation.d.ts +1 -1
- package/src/lib/coreApplication/BarComponents/SelectionStatusDotIndicator.d.ts +1 -0
- package/src/lib/coreApplication/EchoContentPanels.d.ts +1 -5
- package/src/lib/feature/equipment/components/equipmentItemHeader/showEquipmentIn3dButton.d.ts +1 -1
- package/src/lib/feature/globalSelection/globalSelection.api.d.ts +30 -4
- package/src/lib/feature/globalSelection/globalSelection.internal.d.ts +1 -1
- package/src/lib/feature/globalSelection/globalSelectionColorService.d.ts +57 -0
- package/src/lib/feature/globalSelection/globalSelectionColorService.types.d.ts +3 -0
- package/src/lib/feature/globalSelection/globalSelectionStore/actions/addEquipmentsToSelection.action.d.ts +1 -0
- package/src/lib/feature/globalSelection/globalSelectionStore/actions/addItemsToSelectionFactory.d.ts +1 -0
- package/src/lib/feature/globalSelection/globalSelectionStore/actions/addMeasuringPointsToSelection.action.d.ts +1 -0
- package/src/lib/feature/globalSelection/globalSelectionStore/actions/addTagsToSelection.action.d.ts +1 -0
- package/src/lib/feature/globalSelection/globalSelectionStore/actions/addWorkOrdersToSelection.action.d.ts +1 -0
- package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.repository.d.ts +2 -2
- package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.types.d.ts +7 -5
- package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.utils.d.ts +24 -4
- package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStoreHelpers.d.ts +12 -2
- package/src/lib/feature/globalSelection/hooks/useGlobalSelectionLists.d.ts +0 -2
- package/src/lib/feature/globalSelection/index.d.ts +5 -2
- package/src/lib/feature/globalSelection/selectionMenu/hooks/useGlobalSelectionGroups.d.ts +24 -1
- package/src/lib/feature/globalSelection/selectionMenu/hooks/useSelectionColorFrequency.d.ts +18 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/addItems.action.d.ts +16 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/addItemsToSelectionTreeFactory.d.ts +1 -1
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/common.action.types.d.ts +5 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/createGroup.action.d.ts +20 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/moveItems.action.d.ts +31 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/removeGroupById.action.d.ts +21 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/removeItemsById.action.d.ts +24 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/selectionTree.action.types.d.ts +14 -15
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/setVisibility.action.d.ts +21 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/api/selectionTree.api.d.ts +14 -4
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/api/selectionTree.equipment.d.ts +5 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/colorConflictHandling/SelectionColorConflictDialog.d.ts +11 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/colorConflictHandling/selectionColorConflict.store.d.ts +27 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/devOnlySimulateOffline.d.ts +7 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/diskId.type.d.ts +2 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/persistError.d.ts +5 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/selectionTree.diskBackup.d.ts +45 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/selectionTree.diskBackupStatus.d.ts +19 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/selectionTree.load.d.ts +8 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/selectionTree.load.utils.d.ts +42 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/selectionTree.save.d.ts +1 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/selectionTreeLoader.service.d.ts +42 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/{useSelectionTreeAutoSave.d.ts → persist/useSelectionTreeAutoSave.d.ts} +2 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.api.types.d.ts +8 -3
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.d.ts +15 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.types.d.ts +15 -3
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.utils.d.ts +64 -2
- package/src/lib/feature/legacyLegend/legend.d.ts +1 -0
- package/src/lib/feature/legend/components/legendTextSelector/LegendTextSelector.d.ts +21 -0
- package/src/lib/feature/legend/components/popover/LegendPopoverContent.d.ts +4 -0
- package/src/lib/feature/legend/components/popover/LegendPopoverContent.logic.d.ts +1 -1
- package/src/lib/feature/legend/index.d.ts +6 -0
- package/src/lib/feature/legend/types/legendMarkerBadge.type.d.ts +9 -2
- package/src/lib/feature/legend/types/legendStrategy.type.d.ts +1 -0
- package/src/lib/feature/legend/types/legendType.d.ts +1 -0
- package/src/lib/services/api/api-plants.d.ts +4 -0
- package/src/lib/services/echoViewService/echoView.type.d.ts +2 -1
- package/src/lib/services/echoViewService/loadEchoViewIdAndSelectionIdFromUrl.d.ts +5 -4
- package/src/lib/utils/startup.d.ts +1 -0
- package/src/lib/components/fullScreenButtons/FullScreenChip.d.ts +0 -7
- package/src/lib/components/fullScreenButtons/FullScreenModeChip.d.ts +0 -14
- package/src/lib/feature/globalSelection/selectionMenu/hooks/useGlobalSelectionColorsSortedByFrequency.d.ts +0 -10
- package/src/lib/feature/globalSelection/selectionMenu/hooks/useMoveSelectionTreeItems.d.ts +0 -10
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.repository.d.ts +0 -5
- /package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/{currentSelectionId.repository.d.ts → persist/currentSelectionId.repository.d.ts} +0 -0
- /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.