@equinor/echo-framework 0.23.2 → 0.23.4-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.
Files changed (45) hide show
  1. package/{47deeba42768c5d1.svg → 063009f06499d102.svg} +8 -8
  2. package/README.md +28 -28
  3. package/{1bd97dd2170d0f64.svg → f4c85313e79b1662.svg} +850 -850
  4. package/index.cjs.d.ts +2 -2
  5. package/index.cjs.js +8 -2
  6. package/package.json +6 -5
  7. package/src/index.d.ts +2 -2
  8. package/src/lib/components/index.d.ts +1 -0
  9. package/src/lib/components/plantSelector/plantSelector.d.ts +2 -2
  10. package/src/lib/components/plantSelector/plantSelectorHelper.d.ts +4 -3
  11. package/src/lib/components/prepview/notification/header/NotificationHeader.d.ts +1 -1
  12. package/src/lib/components/searchListItem/searchListItem.d.ts +86 -0
  13. package/src/lib/feature/equipment/components/equipmentItemHeader/equipmentItemHeader.d.ts +2 -2
  14. package/src/lib/feature/equipment/components/equipmentItemHeader/equipmentItemSubHeader.d.ts +2 -4
  15. package/src/lib/feature/equipment/components/equipmentItemHeader/linkToSapEquipment.d.ts +2 -2
  16. package/src/lib/feature/equipment/components/equipmentItemHeader/showEquipmentIn3dButton.d.ts +3 -4
  17. package/src/lib/feature/equipment/components/equipmentItemInfo/equipmentItemInfo.d.ts +2 -2
  18. package/src/lib/feature/equipment/components/equipmentListItem.d.ts +9 -4
  19. package/src/lib/feature/equipment/components/equipmentTabs/equipmentTabs.d.ts +2 -2
  20. package/src/lib/feature/equipment/components/fullEquipmentItem/fullEquipmentItem.d.ts +2 -2
  21. package/src/lib/feature/equipment/hooks/useOpenEquipmentDetails.d.ts +2 -2
  22. package/src/lib/feature/equipment/utils/equipmentUtils.d.ts +2 -2
  23. package/src/lib/feature/globalSelection/components/SelectionActionBar.d.ts +1 -2
  24. package/src/lib/feature/globalSelection/globalSelection.api.d.ts +5 -19
  25. package/src/lib/feature/globalSelection/globalSelectionStore/actions/addEquipmentsToSelection.action.d.ts +6 -0
  26. package/src/lib/feature/globalSelection/globalSelectionStore/actions/addItemsToSelectionFactory.d.ts +17 -0
  27. package/src/lib/feature/globalSelection/globalSelectionStore/actions/addTagsToSelection.action.d.ts +7 -0
  28. package/src/lib/feature/globalSelection/globalSelectionStore/actions/addWorkOrdersToSelection.action.d.ts +6 -0
  29. package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.types.d.ts +17 -6
  30. package/src/lib/feature/globalSelection/globalSelectionStore/nullItems/createNullEquipment.d.ts +2 -0
  31. package/src/lib/feature/globalSelection/globalSelectionStore/nullItems/createNullTag.d.ts +2 -0
  32. package/src/lib/feature/globalSelection/globalSelectionStore/nullItems/createNullWorkOrder.d.ts +3 -0
  33. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/addEquipments.action.d.ts +2 -0
  34. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/addTags.action.d.ts +2 -13
  35. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/addWorkOrders.action.d.ts +2 -6
  36. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/createAddItemsFactory.d.ts +5 -8
  37. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/selectionTree.action.types.d.ts +5 -4
  38. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/initialData.d.ts +1 -0
  39. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.types.d.ts +9 -18
  40. package/src/lib/feature/hooks/useAddTagToLegendRegistry.d.ts +2 -2
  41. package/src/lib/utils/highlightTextUtil.d.ts +26 -0
  42. package/src/lib/utils/index.d.ts +1 -0
  43. package/src/lib/utils/stringUtils.d.ts +5 -0
  44. package/src/lib/feature/globalSelection/globalSelectionStore/actions/addItemsToSelection.action.d.ts +0 -18
  45. package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionNullItems.d.ts +0 -4
package/index.cjs.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * from "./src/index";
2
- export { default } from "./src/index";
1
+ export * from "./src\\index";
2
+ export { default } from "./src\\index";