@equinor/echo-framework 2.2.3 → 2.4.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/README.md +23 -3
- package/index.cjs.js +3 -3
- package/package.json +12 -8
- package/src/index.d.ts +8 -3
- package/src/lib/components/index.d.ts +2 -0
- package/src/lib/components/prepview/Prepview.d.ts +11 -1
- package/src/lib/components/prepview/context/PrepviewContext.d.ts +1 -1
- package/src/lib/components/prepview/panels/objects/EquipmentListItem.d.ts +9 -0
- package/src/lib/components/prepview/panels/objects/NotificationListItem.d.ts +9 -0
- package/src/lib/components/requestAccess/MissingAccessInfoButton.d.ts +6 -0
- package/src/lib/components/requestAccess/RequestAccessButton.d.ts +2 -1
- package/src/lib/components/requestAccess/RequestProCoSysAccess.d.ts +0 -1
- package/src/lib/components/verticalTabsSplitView/VerticalTabsSplitView.d.ts +1 -1
- package/src/lib/coreApplication/EchoUserInterfaceStore.d.ts +5 -0
- package/src/lib/feature/equipment/hooks/useEquipmentWithMeasuringPoints.d.ts +1 -1
- package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.d.ts +205 -2
- package/src/lib/feature/globalSelection/hooks/useGlobalSelectionItemsByTypeAsMap.d.ts +7 -0
- package/src/lib/feature/globalSelection/index.d.ts +1 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/persist/selectionTree.load.utils.d.ts +7 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.d.ts +78 -2
- package/src/lib/feature/legend/components/legendTextSelector/LegendTextSelector.d.ts +5 -6
- package/src/lib/feature/legend/components/pdfMarkers/PositionalItem.d.ts +1 -1
- package/src/lib/feature/legend/components/pdfMarkers/subComponents/LegendColoredMarkerIcon.d.ts +2 -2
- package/src/lib/feature/legend/components/pdfMarkers/subComponents/LegendMarkersRenderer.d.ts +1 -1
- package/src/lib/feature/legend/components/pdfMarkers/subComponents/MarkerWithPopover.d.ts +13 -0
- package/src/lib/feature/legend/components/pdfMarkers/subComponents/MultipleMarkersByLegends.d.ts +1 -5
- package/src/lib/feature/legend/components/pdfMarkers/subComponents/MultipleMarkersBySingleLegend.d.ts +1 -2
- package/src/lib/feature/legend/components/pdfMarkers/subComponents/hooks/useMarkerPopover.d.ts +19 -0
- package/src/lib/feature/legend/components/pdfMarkers/utils/markerId.utils.d.ts +18 -0
- package/src/lib/feature/legend/components/pdfMarkers/utils/splitMarkerByBadgeSelectionGroup.types.d.ts +4 -1
- package/src/lib/feature/legend/components/selectionLegend/SelectionLegend.d.ts +1 -1
- package/src/lib/feature/legend/components/selectionLegend/SelectionLegendChip.d.ts +1 -1
- package/src/lib/feature/legend/components/selectionLegend/components/SelectionLegendActions.d.ts +5 -0
- package/src/lib/feature/legend/components/selectionLegend/components/SelectionLegendOtherMarkers.d.ts +4 -0
- package/src/lib/feature/legend/components/selectionLegend/hooks/useSelectionGroupsForLegendRenderer.d.ts +5 -0
- package/src/lib/feature/legend/components/selectionLegend/hooks/useSelectionGroupsForLegendRenderer.utils.d.ts +17 -0
- package/src/lib/feature/legend/components/selectionLegend/selectionLegend.utils.d.ts +18 -7
- package/src/lib/feature/legend/legendFacade.d.ts +36 -9
- package/src/lib/feature/legend/stores/legendDataStore/legendStore.d.ts +35 -39
- package/src/lib/feature/legend/stores/legendUIStore/legendUIStore.d.ts +8 -3
- package/src/lib/feature/legend/stores/legendUIStore/legendUIStore.types.d.ts +15 -1
- package/src/lib/feature/legend/stores/legendVisibleDataAsTagsStore/legendVisibleDataAsTagsStore.d.ts +34 -1
- package/src/lib/feature/legend/stores/legendVisibleDataStore/legendVisibleDataStore.d.ts +20 -1
- package/src/lib/feature/legend/types/legendStrategy.type.d.ts +7 -3
- package/src/lib/hooks/useOpenPrepview.d.ts +1 -1
- package/src/lib/services/dataLayerPanel/dataLayerPanel.store.d.ts +53 -21
- package/src/lib/services/leftPanelNavigation/leftPanelNavigation.store.d.ts +14 -11
- package/src/lib/services/userSetting/userSettingStore.d.ts +8 -4
- package/src/lib/utils/dataAccess/accessGuidanceSections.d.ts +27 -0
- package/src/lib/{types → utils}/dataAccess/dataAccessLinks.d.ts +6 -1
- package/src/lib/utils/dataAccess/dataAccessLinks.utils.d.ts +9 -0
- package/src/types/procosysProject.d.ts +20 -0
- package/src/lib/components/requestAccess/RequestSapAccess.d.ts +0 -7
- package/src/lib/feature/legend/components/pdfMarkers/subComponents/hooks/usePopoverHandler.d.ts +0 -7
- package/src/lib/feature/legend/components/pdfMarkers/subComponents/hooks/usePopoverHandler.types.d.ts +0 -14
- package/src/lib/feature/legend/components/selectionLegend/hooks/useIsSelectionLegendVisible.d.ts +0 -6
- package/src/lib/types/dataAccess/index.d.ts +0 -1
package/README.md
CHANGED
|
@@ -8,6 +8,26 @@ Framework provides all the necessary components to put the echo web client toget
|
|
|
8
8
|
|
|
9
9
|
Check the [docs for details](doc/echo-framework.md).
|
|
10
10
|
|
|
11
|
+
## ⚠️ Dependency Rules
|
|
12
|
+
|
|
13
|
+
**Source of truth: `/eslint.config.js`** - The `@nx/enforce-module-boundaries` rule defines all allowed dependencies.
|
|
14
|
+
|
|
15
|
+
**echo-framework can import from:**
|
|
16
|
+
|
|
17
|
+
- `echo-search` ✅
|
|
18
|
+
- `echo-core` ✅
|
|
19
|
+
- `echo-base` ✅
|
|
20
|
+
- `echo-components` ✅
|
|
21
|
+
- `echo-utils` ✅
|
|
22
|
+
|
|
23
|
+
**echo-framework CANNOT import from:**
|
|
24
|
+
|
|
25
|
+
- `echopedia-web` (app) ❌
|
|
26
|
+
|
|
27
|
+
See `libs/README.md` for the full dependency flow diagram.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
11
31
|
## How to develop and release EchoFramework
|
|
12
32
|
|
|
13
33
|
Check the [readme](/libs/README.md) in the NX libraries folder.
|
|
@@ -18,9 +38,9 @@ Framework houses multiple tools for UI bars, panels and menu functionality that
|
|
|
18
38
|
|
|
19
39
|
## Available NPM scripts
|
|
20
40
|
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
41
|
+
- `lint-framework`
|
|
42
|
+
- `build-framework`
|
|
43
|
+
- `test-framework`
|
|
24
44
|
|
|
25
45
|
## Old repository of echoFramework
|
|
26
46
|
|