@equinor/echo-framework 0.23.2 → 0.23.3

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 (39) hide show
  1. package/index.cjs.js +8 -2
  2. package/package.json +6 -5
  3. package/src/index.d.ts +2 -2
  4. package/src/lib/components/index.d.ts +1 -0
  5. package/src/lib/components/plantSelector/plantSelector.d.ts +2 -2
  6. package/src/lib/components/plantSelector/plantSelectorHelper.d.ts +4 -3
  7. package/src/lib/components/prepview/notification/header/NotificationHeader.d.ts +1 -1
  8. package/src/lib/components/searchListItem/searchListItem.d.ts +86 -0
  9. package/src/lib/feature/equipment/components/equipmentItemHeader/equipmentItemHeader.d.ts +2 -2
  10. package/src/lib/feature/equipment/components/equipmentItemHeader/equipmentItemSubHeader.d.ts +2 -4
  11. package/src/lib/feature/equipment/components/equipmentItemHeader/linkToSapEquipment.d.ts +2 -2
  12. package/src/lib/feature/equipment/components/equipmentItemHeader/showEquipmentIn3dButton.d.ts +3 -4
  13. package/src/lib/feature/equipment/components/equipmentItemInfo/equipmentItemInfo.d.ts +2 -2
  14. package/src/lib/feature/equipment/components/equipmentListItem.d.ts +9 -4
  15. package/src/lib/feature/equipment/components/equipmentTabs/equipmentTabs.d.ts +2 -2
  16. package/src/lib/feature/equipment/components/fullEquipmentItem/fullEquipmentItem.d.ts +2 -2
  17. package/src/lib/feature/equipment/hooks/useOpenEquipmentDetails.d.ts +2 -2
  18. package/src/lib/feature/equipment/utils/equipmentUtils.d.ts +2 -2
  19. package/src/lib/feature/globalSelection/components/SelectionActionBar.d.ts +1 -2
  20. package/src/lib/feature/globalSelection/globalSelection.api.d.ts +5 -19
  21. package/src/lib/feature/globalSelection/globalSelectionStore/actions/addEquipmentsToSelection.action.d.ts +6 -0
  22. package/src/lib/feature/globalSelection/globalSelectionStore/actions/{addItemsToSelection.action.d.ts → addItemsToSelectionFactory.d.ts} +6 -2
  23. package/src/lib/feature/globalSelection/globalSelectionStore/actions/addTagsToSelection.action.d.ts +7 -0
  24. package/src/lib/feature/globalSelection/globalSelectionStore/actions/addWorkOrdersToSelection.action.d.ts +6 -0
  25. package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionStore.types.d.ts +8 -2
  26. package/src/lib/feature/globalSelection/globalSelectionStore/nullItems/createNullEquipment.d.ts +2 -0
  27. package/src/lib/feature/globalSelection/globalSelectionStore/nullItems/createNullTag.d.ts +2 -0
  28. package/src/lib/feature/globalSelection/globalSelectionStore/nullItems/createNullWorkOrder.d.ts +3 -0
  29. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/addEquipments.action.d.ts +3 -0
  30. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/addTags.action.d.ts +2 -12
  31. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/addWorkOrders.action.d.ts +1 -4
  32. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/actions/createAddItemsFactory.d.ts +1 -4
  33. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/initialData.d.ts +1 -0
  34. package/src/lib/feature/globalSelection/selectionMenu/selectionTreeStore/selectionTree.store.types.d.ts +6 -12
  35. package/src/lib/feature/hooks/useAddTagToLegendRegistry.d.ts +2 -2
  36. package/src/lib/utils/highlightTextUtil.d.ts +26 -0
  37. package/src/lib/utils/index.d.ts +1 -0
  38. package/src/lib/utils/stringUtils.d.ts +5 -0
  39. package/src/lib/feature/globalSelection/globalSelectionStore/globalSelectionNullItems.d.ts +0 -4
@@ -1,5 +1,6 @@
1
1
  export { echopediaWebReactPortalUtils } from './echopediaWebReactPortal.utils';
2
2
  export * from './formatTimeHelpers';
3
+ export * from './highlightTextUtil';
3
4
  export * from './navigationUtils';
4
5
  export * from './openIn3d';
5
6
  export * from './plantInfo';
@@ -1 +1,6 @@
1
+ /**
2
+ * @deprecated This is a duplicate, we plan to remove this. Please use the same function from "@equinor/echo-utils".
3
+ * @param inputString
4
+ * @returns {string}
5
+ */
1
6
  export declare function removeLeadingZeros(inputString: string): string;
@@ -1,4 +0,0 @@
1
- import { WorkOrderData } from '@equinor/echo-search';
2
- import { GlobalSelectionTypes } from './globalSelectionStore.types';
3
- export declare function createNullTagSummaryDb(itemId: GlobalSelectionTypes.TagId): GlobalSelectionTypes.TagDto;
4
- export declare function createNullWorkOrderData(itemId: GlobalSelectionTypes.WorkOrderId): WorkOrderData;