@equinor/echo-framework 0.22.0-beta-0 → 0.23.0-beta-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/{47deeba42768c5d1.svg → 063009f06499d102.svg} +8 -8
- package/README.md +28 -28
- package/{1bd97dd2170d0f64.svg → f4c85313e79b1662.svg} +850 -850
- package/index.cjs.d.ts +2 -2
- package/index.cjs.js +1 -1
- package/package.json +4 -3
- package/src/index.d.ts +4 -2
- package/src/lib/coreApplication/EchoContent.d.ts +2 -1
- package/src/lib/feature/equipment/types/equipment.d.ts +2 -0
- package/src/lib/feature/globalSelection/components/SelectionActionBar.d.ts +2 -2
- package/src/lib/feature/globalSelection/globalSelection.api.d.ts +8 -20
- package/src/lib/feature/globalSelection/globalSelectionStore/actions/addItemsToSelection.action.d.ts +18 -0
- package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionNullItems.d.ts +4 -0
- package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.d.ts +19 -16
- package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.repository.d.ts +8 -0
- package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.types.d.ts +38 -56
- package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.utils.d.ts +3 -3
- package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStoreHelpers.d.ts +13 -0
- package/src/lib/feature/globalSelection/hooks/useGlobalSelectionByItemId.d.ts +2 -0
- package/src/lib/feature/globalSelection/hooks/useGlobalSelectionItemsByType.d.ts +7 -0
- package/src/lib/feature/globalSelection/hooks/useGlobalSelectionLists.d.ts +4 -15
- package/src/lib/feature/globalSelection/index.d.ts +3 -1
- package/src/lib/feature/globalSelection/selectionMenu/hooks/useIsAllIGlobalSelectionItemsHidden.d.ts +2 -2
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/addTags.action.d.ts +13 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/addWorkOrders.action.d.ts +6 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/createAddItemsFactory.d.ts +16 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/removeAllItemsById.action.d.ts +1 -2
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/{addTag.action.types.d.ts → selectionTree.action.types.d.ts} +10 -12
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.d.ts +11 -1
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.repository.d.ts +8 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.types.d.ts +32 -29
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.utils.d.ts +4 -5
- package/src/lib/feature/legend/components/BasicLegendRenderer.d.ts +7 -0
- package/src/lib/feature/legend/components/LegendList.d.ts +5 -0
- package/src/lib/feature/legend/components/basicLegendRenderer.logic.d.ts +5 -0
- package/src/lib/feature/legend/components/pdfMarkers/PositionalItem.d.ts +14 -0
- package/src/lib/feature/legend/components/pdfMarkers/PositionalLegendMarkers.d.ts +24 -0
- package/src/lib/feature/legend/components/pdfMarkers/subComponents/LegendColoredMarkerIcon.d.ts +11 -0
- package/src/lib/feature/legend/components/pdfMarkers/subComponents/LegendMarkersRendererWithPopover.d.ts +16 -0
- package/src/lib/feature/legend/components/pdfMarkers/subComponents/MultipleMarkersByLegends.d.ts +39 -0
- package/src/lib/feature/legend/components/pdfMarkers/subComponents/iconPositionTransform.d.ts +18 -0
- package/src/lib/feature/legend/hooks/useLegendMarkers.d.ts +19 -0
- package/src/lib/feature/legend/index.d.ts +8 -0
- package/src/lib/feature/legend/legendFacade.d.ts +52 -0
- package/src/lib/feature/legend/legendStore.d.ts +52 -0
- package/src/lib/feature/legend/legendStrategies/legendCollections.d.ts +4 -0
- package/src/lib/feature/legend/legendStrategies/workOrderStrategy/WorkOrderLegend.d.ts +1 -0
- package/src/lib/feature/legend/legendUpdater.d.ts +2 -0
- package/src/lib/feature/legend/legendVisibleDataStore.d.ts +71 -0
- package/src/lib/feature/legend/logic/hiddenLegendChips.logic.d.ts +6 -0
- package/src/lib/feature/legend/types/legendMarkerBadge.type.d.ts +11 -0
- package/src/lib/feature/legend/types/legendStrategy.type.d.ts +37 -0
- package/src/lib/feature/legend/types/legendType.d.ts +26 -0
- package/src/lib/feature/openItemsIn3d/index.d.ts +0 -1
- package/src/lib/types/eventTypes/plantEvent.d.ts +5 -0
- package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/addTag.action.d.ts +0 -13
- package/src/lib/feature/openItemsIn3d/OpenIn3dSelectedItemsMenu.d.ts +0 -8
- package/src/lib/feature/openItemsIn3d/openIn3dMenu.d.ts +0 -7
package/index.cjs.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./src
|
|
2
|
-
export { default } from "./src
|
|
1
|
+
export * from "./src\\index";
|
|
2
|
+
export { default } from "./src\\index";
|