@orchestrator-ui/orchestrator-ui-components 7.4.1 → 7.5.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 (554) hide show
  1. package/.turbo/turbo-build.log +9 -9
  2. package/.turbo/turbo-lint.log +1 -13
  3. package/.turbo/turbo-test.log +11 -11
  4. package/CHANGELOG.md +421 -416
  5. package/__mocks__/@copilotkit/react-core.js +6 -6
  6. package/__mocks__/@copilotkit/react-ui.js +1 -6
  7. package/dist/index.d.ts +283 -176
  8. package/dist/index.js +3258 -7615
  9. package/dist/index.js.map +1 -1
  10. package/package.json +93 -93
  11. package/src/api/types.ts +36 -36
  12. package/src/components/WfoAgent/ExportButton/ExportButton.tsx +59 -63
  13. package/src/components/WfoAgent/ExportButton/styles.ts +56 -56
  14. package/src/components/WfoAgent/ToolProgress/DiscoverFilterPathsDisplay.tsx +79 -94
  15. package/src/components/WfoAgent/ToolProgress/RunSearchDisplay.tsx +22 -22
  16. package/src/components/WfoAgent/ToolProgress/SetFilterTreeDisplay.styles.ts +56 -56
  17. package/src/components/WfoAgent/ToolProgress/SetFilterTreeDisplay.tsx +76 -104
  18. package/src/components/WfoAgent/ToolProgress/StartNewSearchDisplay.tsx +49 -51
  19. package/src/components/WfoAgent/ToolProgress/ToolProgress.tsx +65 -115
  20. package/src/components/WfoAgent/ToolProgress/styles.ts +46 -46
  21. package/src/components/WfoAgent/WfoAgent/WfoAgent.tsx +69 -110
  22. package/src/components/WfoAgent/WfoAgentChart/WfoAgentLineChart.tsx +36 -46
  23. package/src/components/WfoAgent/WfoAgentChart/WfoAgentPieChart.tsx +40 -53
  24. package/src/components/WfoAgent/WfoAgentChart/styles.ts +2 -2
  25. package/src/components/WfoAgent/WfoAgentTable/WfoAgentTable.tsx +45 -55
  26. package/src/components/WfoAgent/WfoAgentVisualization/WfoAgentVisualization.tsx +37 -42
  27. package/src/components/WfoAuth/WfoAuth.tsx +11 -18
  28. package/src/components/WfoAuth/WfoIsAllowedToRender.tsx +5 -8
  29. package/src/components/WfoAuth/WfoPageUnauthorized.tsx +2 -2
  30. package/src/components/WfoAuth/WfoPolicyRenderPageFallback.tsx +5 -8
  31. package/src/components/WfoAvailabilityCheck/WfoAvailabilityCheck.tsx +8 -17
  32. package/src/components/WfoBackendUnavailable/WfoBackendUnavailable.tsx +71 -94
  33. package/src/components/WfoBadges/WfoBadge/WfoBadge.stories.tsx +9 -9
  34. package/src/components/WfoBadges/WfoBadge/WfoBadge.tsx +11 -14
  35. package/src/components/WfoBadges/WfoEngineStatusBadge/WfoEngineStatusBadge.stories.tsx +17 -17
  36. package/src/components/WfoBadges/WfoEngineStatusBadge/WfoEngineStatusBadge.tsx +19 -25
  37. package/src/components/WfoBadges/WfoEnvironmentBadge/WfoEnvironmentBadge.stories.tsx +7 -7
  38. package/src/components/WfoBadges/WfoEnvironmentBadge/WfoEnvironmentBadge.tsx +13 -16
  39. package/src/components/WfoBadges/WfoFailedTasksBadge/WfoFailedTasksBadge.stories.tsx +3 -3
  40. package/src/components/WfoBadges/WfoFailedTasksBadge/WfoFailedTasksBadge.tsx +66 -83
  41. package/src/components/WfoBadges/WfoFailedTasksBadge/styles.ts +5 -5
  42. package/src/components/WfoBadges/WfoHeaderBadge/WfoHeaderBadge.stories.tsx +9 -9
  43. package/src/components/WfoBadges/WfoHeaderBadge/WfoHeaderBadge.tsx +19 -21
  44. package/src/components/WfoBadges/WfoProcessStatusBadge/WfoProcessStatusBadge.tsx +56 -59
  45. package/src/components/WfoBadges/WfoProductBlockBadge/WfoProductBlockBadge.stories.tsx +5 -5
  46. package/src/components/WfoBadges/WfoProductBlockBadge/WfoProductBlockBadge.tsx +60 -66
  47. package/src/components/WfoBadges/WfoProductStatusBadge/WfoProductStatusBadge.stories.tsx +8 -8
  48. package/src/components/WfoBadges/WfoProductStatusBadge/WfoProductStatusBadge.tsx +34 -43
  49. package/src/components/WfoBadges/WfoScheduledTasksBadges/WfoScheduledTasksBadges.tsx +19 -29
  50. package/src/components/WfoBadges/WfoScheduledTasksBadges/WfoScheduledTasksBadgesContainer.tsx +10 -11
  51. package/src/components/WfoBadges/WfoSubscriptionStatusBadge/WfoSubscriptionStatusBadge.stories.tsx +11 -11
  52. package/src/components/WfoBadges/WfoSubscriptionStatusBadge/WfoSubscriptionStatusBadge.tsx +35 -44
  53. package/src/components/WfoBadges/WfoSubscriptionSyncStatusBadge/WfoSubscriptionSyncStatusBadge.stories.tsx +12 -12
  54. package/src/components/WfoBadges/WfoSubscriptionSyncStatusBadge/WfoSubscriptionSyncStatusBadge.tsx +31 -34
  55. package/src/components/WfoBadges/WfoVersionIncompatibleBadge/WfoVersionIncompatibleBadge.stories.tsx +7 -7
  56. package/src/components/WfoBadges/WfoVersionIncompatibleBadge/WfoVersionIncompatibleBadge.tsx +44 -47
  57. package/src/components/WfoBadges/WfoWebsocketStatusBadge/WfoWebsocketStatusBadge.stories.tsx +3 -3
  58. package/src/components/WfoBadges/WfoWebsocketStatusBadge/WfoWebsocketStatusBadge.tsx +48 -71
  59. package/src/components/WfoBadges/WfoWebsocketStatusBadge/styles.ts +14 -16
  60. package/src/components/WfoBadges/WfoWorkflowTargetBadge/WfoWorkflowTargetBadge.tsx +51 -63
  61. package/src/components/WfoButtonComboBox/WfoButtonComboBox.tsx +55 -64
  62. package/src/components/WfoButtonComboBox/styles.ts +19 -19
  63. package/src/components/WfoButtonWithConfirm/WfoButtonWithConfirm.tsx +21 -21
  64. package/src/components/WfoContentHeader/WfoContentHeader.tsx +28 -48
  65. package/src/components/WfoDateTime/WfoDateTime.tsx +3 -3
  66. package/src/components/WfoDiff/WfoDiff.tsx +82 -100
  67. package/src/components/WfoDiff/styles.ts +28 -35
  68. package/src/components/WfoDropdownButton/WfoDropdownButton.tsx +54 -58
  69. package/src/components/WfoError/WfoError.stories.tsx +9 -12
  70. package/src/components/WfoError/WfoError.tsx +22 -25
  71. package/src/components/WfoErrorBoundary/WfoErrorBoundary.tsx +30 -34
  72. package/src/components/WfoExpandableField/WfoExpandableField.tsx +24 -31
  73. package/src/components/WfoExpandableField/styles.ts +11 -11
  74. package/src/components/WfoFilterTabs/WfoFilterTabs.tsx +33 -35
  75. package/src/components/WfoFilterTabs/styles.ts +7 -7
  76. package/src/components/WfoInlineEdit/WfoInlineEdit.tsx +99 -112
  77. package/src/components/WfoInlineNoteEdit/WfoSubscriptionDetailNoteEdit.tsx +33 -39
  78. package/src/components/WfoInlineNoteEdit/WfoSubscriptionNoteEdit.tsx +32 -35
  79. package/src/components/WfoInsyncIcon/WfoInsyncIcon.stories.tsx +8 -8
  80. package/src/components/WfoInsyncIcon/WfoInsyncIcon.tsx +5 -15
  81. package/src/components/WfoJsonCodeBlock/WfoJsonCodeBlock.tsx +15 -19
  82. package/src/components/WfoJsonCodeBlock/styles.ts +19 -19
  83. package/src/components/WfoKeyValueTable/WfoKeyCell.tsx +10 -11
  84. package/src/components/WfoKeyValueTable/WfoKeyValueTable.tsx +22 -25
  85. package/src/components/WfoKeyValueTable/WfoValueCell.tsx +44 -54
  86. package/src/components/WfoKeyValueTable/WfoValueOnlyTable.tsx +19 -22
  87. package/src/components/WfoKeyValueTable/styles.ts +77 -78
  88. package/src/components/WfoLogoSpinner/WfoLogoSpinner.tsx +22 -29
  89. package/src/components/WfoLogoSpinner/styles.ts +33 -36
  90. package/src/components/WfoMetadata/WfoMetadataDescriptionField.tsx +8 -14
  91. package/src/components/WfoMonacoCodeBlock/WfoMonacoCodeBlock.tsx +56 -63
  92. package/src/components/WfoMonacoCodeBlock/styles.ts +9 -11
  93. package/src/components/WfoNoResults/WfoNoResults.stories.tsx +6 -6
  94. package/src/components/WfoNoResults/WfoNoResults.tsx +8 -8
  95. package/src/components/WfoNoResults/styles.ts +16 -16
  96. package/src/components/WfoOptionalLink/WfoOptionalLink.tsx +7 -10
  97. package/src/components/WfoPageTemplate/WfoBreadcrumbs/WfoBreadcrumbs.tsx +61 -87
  98. package/src/components/WfoPageTemplate/WfoPageHeader/WfoAppLogo.tsx +15 -24
  99. package/src/components/WfoPageTemplate/WfoPageHeader/WfoHamburgerMenu.tsx +115 -140
  100. package/src/components/WfoPageTemplate/WfoPageHeader/WfoPageHeader.stories.tsx +43 -43
  101. package/src/components/WfoPageTemplate/WfoPageHeader/WfoPageHeader.tsx +67 -101
  102. package/src/components/WfoPageTemplate/WfoPageHeader/styles.ts +16 -16
  103. package/src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts +6 -6
  104. package/src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.ts +2 -2
  105. package/src/components/WfoPageTemplate/WfoPageTemplate/ContentContext.tsx +10 -16
  106. package/src/components/WfoPageTemplate/WfoPageTemplate/WfoPageTemplate.stories.tsx +10 -10
  107. package/src/components/WfoPageTemplate/WfoPageTemplate/WfoPageTemplate.tsx +62 -94
  108. package/src/components/WfoPageTemplate/WfoPageTemplate/styles.ts +19 -22
  109. package/src/components/WfoPageTemplate/WfoSidebar/WfoCopyright.tsx +13 -13
  110. package/src/components/WfoPageTemplate/WfoSidebar/WfoMenuLink.tsx +34 -42
  111. package/src/components/WfoPageTemplate/WfoSidebar/WfoSidebar.stories.tsx +7 -7
  112. package/src/components/WfoPageTemplate/WfoSidebar/WfoSidebar.tsx +205 -240
  113. package/src/components/WfoPageTemplate/WfoSidebar/styles.ts +92 -99
  114. package/src/components/WfoPageTemplate/WfoSidebar/utils/menuItemIsAllowed.spec.ts +31 -40
  115. package/src/components/WfoPageTemplate/WfoSidebar/utils/menuItemIsAllowed.ts +8 -8
  116. package/src/components/WfoPageTemplate/paths.ts +1 -2
  117. package/src/components/WfoPopover/WfoPopover.tsx +26 -36
  118. package/src/components/WfoProcessList/WfoProcessesList.tsx +212 -247
  119. package/src/components/WfoProcessList/processListObjectMappers.ts +95 -100
  120. package/src/components/WfoPydanticForm/Footer.tsx +139 -157
  121. package/src/components/WfoPydanticForm/Header.tsx +9 -10
  122. package/src/components/WfoPydanticForm/RenderFormErrors.tsx +18 -20
  123. package/src/components/WfoPydanticForm/Row.tsx +22 -31
  124. package/src/components/WfoPydanticForm/WfoPydanticForm.tsx +77 -93
  125. package/src/components/WfoPydanticForm/fields/WfoArrayField/WfoArrayField.tsx +85 -120
  126. package/src/components/WfoPydanticForm/fields/WfoArrayField/styles.ts +28 -28
  127. package/src/components/WfoPydanticForm/fields/WfoCallout.tsx +9 -12
  128. package/src/components/WfoPydanticForm/fields/WfoCheckbox.tsx +11 -16
  129. package/src/components/WfoPydanticForm/fields/WfoDivider.tsx +4 -8
  130. package/src/components/WfoPydanticForm/fields/WfoDropdown.tsx +6 -17
  131. package/src/components/WfoPydanticForm/fields/WfoInteger.tsx +29 -43
  132. package/src/components/WfoPydanticForm/fields/WfoLabel.tsx +14 -14
  133. package/src/components/WfoPydanticForm/fields/WfoMultiCheckboxField.tsx +40 -51
  134. package/src/components/WfoPydanticForm/fields/WfoObjectField/WfoObjectField.tsx +22 -35
  135. package/src/components/WfoPydanticForm/fields/WfoObjectField/styles.ts +9 -9
  136. package/src/components/WfoPydanticForm/fields/WfoRadio.tsx +15 -20
  137. package/src/components/WfoPydanticForm/fields/WfoReactSelect/WfoReactSelect.tsx +84 -97
  138. package/src/components/WfoPydanticForm/fields/WfoReactSelect/styles.ts +68 -85
  139. package/src/components/WfoPydanticForm/fields/WfoSummary.tsx +58 -67
  140. package/src/components/WfoPydanticForm/fields/WfoText.tsx +16 -26
  141. package/src/components/WfoPydanticForm/fields/WfoTextArea.tsx +12 -17
  142. package/src/components/WfoPydanticForm/fields/WfoTimestampField.tsx +42 -48
  143. package/src/components/WfoPydanticForm/fields/styles.ts +71 -71
  144. package/src/components/WfoPydanticForm/fields/wfoPydanticFormUtils.spec.ts +24 -24
  145. package/src/components/WfoPydanticForm/fields/wfoPydanticFormUtils.ts +11 -18
  146. package/src/components/WfoRadioDropdown/WfoRadioDropdown.tsx +55 -74
  147. package/src/components/WfoRenderElementOrString/WfoRenderElementOrString.tsx +8 -8
  148. package/src/components/WfoSearchBar/WfoSearchField.tsx +35 -47
  149. package/src/components/WfoSearchPage/WfoConditionRow/WfoConditionRow.tsx +290 -354
  150. package/src/components/WfoSearchPage/WfoConditionRow/WfoFieldSelector.tsx +30 -30
  151. package/src/components/WfoSearchPage/WfoConditionRow/WfoOperatorSelector.tsx +56 -85
  152. package/src/components/WfoSearchPage/WfoConditionRow/WfoPathChips.tsx +143 -171
  153. package/src/components/WfoSearchPage/WfoConditionRow/WfoPathSelector.tsx +40 -42
  154. package/src/components/WfoSearchPage/WfoConditionRow/WfoRenderFunctions.tsx +50 -86
  155. package/src/components/WfoSearchPage/WfoConditionRow/WfoSelectedPathDisplay.tsx +48 -65
  156. package/src/components/WfoSearchPage/WfoConditionRow/index.ts +1 -4
  157. package/src/components/WfoSearchPage/WfoConditionRow/types.ts +56 -61
  158. package/src/components/WfoSearchPage/WfoConditionRow/utils.ts +36 -48
  159. package/src/components/WfoSearchPage/WfoFilterGroup/WfoFilterGroup.tsx +158 -213
  160. package/src/components/WfoSearchPage/WfoSearch/WfoSearch.tsx +327 -411
  161. package/src/components/WfoSearchPage/WfoSearchResults/WfoHighlightedText.tsx +46 -53
  162. package/src/components/WfoSearchPage/WfoSearchResults/WfoPathBreadcrumb.tsx +50 -67
  163. package/src/components/WfoSearchPage/WfoSearchResults/WfoSearchEmptyState.tsx +13 -13
  164. package/src/components/WfoSearchPage/WfoSearchResults/WfoSearchLoadingState.tsx +13 -13
  165. package/src/components/WfoSearchPage/WfoSearchResults/WfoSearchMetadataHeader.tsx +13 -15
  166. package/src/components/WfoSearchPage/WfoSearchResults/WfoSearchPaginationInfo.tsx +76 -86
  167. package/src/components/WfoSearchPage/WfoSearchResults/WfoSearchResultItem.tsx +112 -133
  168. package/src/components/WfoSearchPage/WfoSearchResults/WfoSearchResults.tsx +31 -31
  169. package/src/components/WfoSearchPage/WfoValueControl/WfoValueControl.tsx +181 -215
  170. package/src/components/WfoSearchPage/constants.ts +3 -8
  171. package/src/components/WfoSearchPage/utils.ts +83 -112
  172. package/src/components/WfoSettings/WfoAoStackStatus.tsx +19 -28
  173. package/src/components/WfoSettings/WfoEngineStatus.tsx +31 -37
  174. package/src/components/WfoSettings/WfoEngineStatusButton.tsx +17 -30
  175. package/src/components/WfoSettings/WfoFlushSettings.tsx +54 -72
  176. package/src/components/WfoSettings/WfoModifySettings.tsx +23 -29
  177. package/src/components/WfoSettings/WfoResetTextSearchIndexButton.tsx +7 -10
  178. package/src/components/WfoSettings/WfoWorkerStatus.tsx +35 -42
  179. package/src/components/WfoSettings/styles.ts +17 -17
  180. package/src/components/WfoSettingsModal/WfoInformationModal.tsx +25 -29
  181. package/src/components/WfoSettingsModal/WfoSettingsModal.tsx +43 -43
  182. package/src/components/WfoSettingsModal/WfoSubmitModal.tsx +45 -50
  183. package/src/components/WfoStartButton/WfoStartButtonComboBox.tsx +98 -121
  184. package/src/components/WfoStartButton/WfoStartTaskComboBox.tsx +35 -35
  185. package/src/components/WfoStartButton/WfoStartWorkflowComboBox.tsx +42 -44
  186. package/src/components/WfoStartButton/styles.ts +15 -15
  187. package/src/components/WfoSubscription/SubscriptionKeyValueBlock.tsx +23 -35
  188. package/src/components/WfoSubscription/WfoCustomerDescriptionsField.tsx +85 -99
  189. package/src/components/WfoSubscription/WfoInSyncField/WfoInSyncErrorToastMessage.tsx +15 -17
  190. package/src/components/WfoSubscription/WfoInSyncField/WfoInSyncField.tsx +147 -192
  191. package/src/components/WfoSubscription/WfoInUseByRelations.tsx +50 -74
  192. package/src/components/WfoSubscription/WfoProcessesTimeline.tsx +113 -173
  193. package/src/components/WfoSubscription/WfoRelatedSubscriptions.tsx +140 -172
  194. package/src/components/WfoSubscription/WfoSubscription.tsx +67 -102
  195. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActionExpandableMenuItem.tsx +47 -53
  196. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActions.tsx +173 -223
  197. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActionsMenuItem.tsx +67 -87
  198. package/src/components/WfoSubscription/WfoSubscriptionActions/styles.ts +70 -70
  199. package/src/components/WfoSubscription/WfoSubscriptionDetailTree.tsx +190 -242
  200. package/src/components/WfoSubscription/WfoSubscriptionGeneral.tsx +48 -60
  201. package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionDetailSection.tsx +67 -91
  202. package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionFixedInputSection.tsx +8 -15
  203. package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionMetadataSection.tsx +8 -15
  204. package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionProductInfoSection.tsx +34 -41
  205. package/src/components/WfoSubscription/WfoSubscriptionProductBlock/WfoProductBlockKeyValueRow.tsx +36 -36
  206. package/src/components/WfoSubscription/WfoSubscriptionProductBlock/WfoSubscriptionProductBlock.tsx +156 -233
  207. package/src/components/WfoSubscription/WfoSubscriptionProductBlock/styles.ts +60 -62
  208. package/src/components/WfoSubscription/WfoTargetTypeIcon.tsx +39 -50
  209. package/src/components/WfoSubscription/overrides/useSubscriptionDetailGeneralSectionConfigurationOverride.ts +6 -8
  210. package/src/components/WfoSubscription/overrides/useSubscriptionDetailValueOverride.ts +20 -23
  211. package/src/components/WfoSubscription/styles.ts +57 -62
  212. package/src/components/WfoSubscription/subscriptionDetailTabs.tsx +44 -48
  213. package/src/components/WfoSubscription/utils/relatedSubscriptionsListItemsObjectMappers.ts +30 -42
  214. package/src/components/WfoSubscription/utils/utils.spec.ts +405 -452
  215. package/src/components/WfoSubscription/utils/utils.ts +139 -159
  216. package/src/components/WfoSubscriptionsList/WfoSubscriptionsList.tsx +214 -258
  217. package/src/components/WfoSubscriptionsList/subscriptionListTabs.ts +39 -42
  218. package/src/components/WfoSubscriptionsList/subscriptionResultMappers.ts +33 -45
  219. package/src/components/WfoSummary/WfoActiveWorkflowsSummaryCard.tsx +19 -28
  220. package/src/components/WfoSummary/WfoFailedTasksSummaryCard.tsx +18 -21
  221. package/src/components/WfoSummary/WfoLatestActiveSubscriptionsSummaryCard.tsx +22 -28
  222. package/src/components/WfoSummary/WfoLatestOutOfSyncSubscriptionSummaryCard.tsx +30 -40
  223. package/src/components/WfoSummary/WfoMyWorkflowsSummaryCard.tsx +30 -44
  224. package/src/components/WfoSummary/WfoProductsSummaryCard.tsx +37 -45
  225. package/src/components/WfoSummary/WfoSummaryCard.tsx +68 -99
  226. package/src/components/WfoSummary/WfoSummaryCardHeader/WfoSummaryCardHeader.tsx +38 -50
  227. package/src/components/WfoSummary/WfoSummaryCardHeader/styles.ts +18 -18
  228. package/src/components/WfoSummary/WfoSummaryCardList/WfoSummaryCardList.tsx +44 -67
  229. package/src/components/WfoSummary/WfoSummaryCardList/WfoSummaryCardListItem.tsx +25 -44
  230. package/src/components/WfoSummary/WfoSummaryCardList/styles.ts +49 -49
  231. package/src/components/WfoSummary/WfoSummaryCards.tsx +7 -11
  232. package/src/components/WfoSummary/getNumberOfColumns.ts +12 -12
  233. package/src/components/WfoSummary/styles.ts +7 -7
  234. package/src/components/WfoTable/WfoAdvancedTable/WfoAdvancedTable.tsx +181 -229
  235. package/src/components/WfoTable/WfoAdvancedTable/getRowDetailData.tsx +31 -42
  236. package/src/components/WfoTable/WfoAdvancedTable/toSortedTableColumnConfig.ts +8 -8
  237. package/src/components/WfoTable/WfoAdvancedTable/types.ts +9 -11
  238. package/src/components/WfoTable/WfoFirstPartUUID/WfoFirstPartUUID.tsx +19 -30
  239. package/src/components/WfoTable/WfoFirstPartUUID/styles.ts +19 -19
  240. package/src/components/WfoTable/WfoInlineJson/WfoInlineJson.tsx +6 -6
  241. package/src/components/WfoTable/WfoRowContextMenu/WfoRowContextMenu.tsx +30 -46
  242. package/src/components/WfoTable/WfoSortButtons/WfoSortButton.tsx +11 -24
  243. package/src/components/WfoTable/WfoSortButtons/WfoSortButtons.tsx +18 -21
  244. package/src/components/WfoTable/WfoSortButtons/styles.ts +14 -14
  245. package/src/components/WfoTable/WfoStatusColorField/WfoStatusColorField.tsx +3 -5
  246. package/src/components/WfoTable/WfoStatusColorField/styles.ts +10 -10
  247. package/src/components/WfoTable/WfoTable/WfoDataCell.tsx +8 -14
  248. package/src/components/WfoTable/WfoTable/WfoDragHandler.tsx +49 -61
  249. package/src/components/WfoTable/WfoTable/WfoExpandedRow.tsx +12 -33
  250. package/src/components/WfoTable/WfoTable/WfoGroupedTable/WfoExpandableRow.tsx +28 -32
  251. package/src/components/WfoTable/WfoTable/WfoGroupedTable/WfoExpandedGroupRow.tsx +34 -52
  252. package/src/components/WfoTable/WfoTable/WfoGroupedTable/WfoGroupedTable.tsx +63 -78
  253. package/src/components/WfoTable/WfoTable/WfoGroupedTable/WfoGroupedTableGroups.tsx +40 -54
  254. package/src/components/WfoTable/WfoTable/WfoGroupedTable/styles.ts +28 -28
  255. package/src/components/WfoTable/WfoTable/WfoGroupedTable/useGroupedTableConfig.tsx +147 -168
  256. package/src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts +133 -140
  257. package/src/components/WfoTable/WfoTable/WfoGroupedTable/utils.ts +21 -33
  258. package/src/components/WfoTable/WfoTable/WfoMultilineCell.tsx +5 -5
  259. package/src/components/WfoTable/WfoTable/WfoTable.tsx +213 -251
  260. package/src/components/WfoTable/WfoTable/WfoTableDataRows.tsx +63 -107
  261. package/src/components/WfoTable/WfoTable/WfoTableHeaderCell/WfoPopoverContent.tsx +34 -40
  262. package/src/components/WfoTable/WfoTable/WfoTableHeaderCell/WfoSortDirectionIcon.tsx +17 -21
  263. package/src/components/WfoTable/WfoTable/WfoTableHeaderCell/WfoTableHeaderCell.tsx +68 -83
  264. package/src/components/WfoTable/WfoTable/WfoTableHeaderCell/styles.ts +118 -118
  265. package/src/components/WfoTable/WfoTable/WfoTableHeaderRow.tsx +91 -118
  266. package/src/components/WfoTable/WfoTable/WfoToolTip.tsx +17 -21
  267. package/src/components/WfoTable/WfoTable/WfoTruncateCell.tsx +15 -15
  268. package/src/components/WfoTable/WfoTable/WfoVirtualizedTableBody.tsx +42 -49
  269. package/src/components/WfoTable/WfoTable/styles.ts +168 -176
  270. package/src/components/WfoTable/WfoTable/utils.spec.ts +71 -89
  271. package/src/components/WfoTable/WfoTable/utils.ts +61 -80
  272. package/src/components/WfoTable/WfoTableSettingsModal/WfoTableSettingsModal.tsx +77 -100
  273. package/src/components/WfoTable/WfoTableSettingsModal/styles.ts +12 -14
  274. package/src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts +63 -65
  275. package/src/components/WfoTable/WfoTableWithFilter/updateQueryString.ts +33 -44
  276. package/src/components/WfoTable/utils/columns.spec.ts +17 -17
  277. package/src/components/WfoTable/utils/columns.ts +16 -18
  278. package/src/components/WfoTable/utils/constants.ts +6 -12
  279. package/src/components/WfoTable/utils/tableConfigPersistence.spec.ts +61 -61
  280. package/src/components/WfoTable/utils/tableConfigPersistence.ts +21 -30
  281. package/src/components/WfoTable/utils/tableUtils.spec.ts +100 -117
  282. package/src/components/WfoTable/utils/tableUtils.ts +33 -50
  283. package/src/components/WfoTableCodeBlock/WfoTableCodeBlock.tsx +20 -27
  284. package/src/components/WfoTableCodeBlock/styles.ts +8 -8
  285. package/src/components/WfoTextAnchor/WfoTextAnchor.stories.tsx +6 -6
  286. package/src/components/WfoTextAnchor/WfoTextAnchor.tsx +8 -8
  287. package/src/components/WfoTextAnchor/styles.ts +11 -11
  288. package/src/components/WfoTimeline/WfoTimeline.tsx +28 -43
  289. package/src/components/WfoTimeline/WfoTimelineStep.tsx +38 -40
  290. package/src/components/WfoTimeline/mapProcessStepStatusToEuiStepStatus.ts +16 -18
  291. package/src/components/WfoTimeline/styles.ts +151 -168
  292. package/src/components/WfoTimeline/timelineUtils.ts +5 -10
  293. package/src/components/WfoTitleWithWebsocketBadge/WfoTitleWithWebsocketBadge.tsx +10 -13
  294. package/src/components/WfoToastsList/WfoToastsList.tsx +11 -13
  295. package/src/components/WfoTree/WfoTree.tsx +14 -14
  296. package/src/components/WfoTree/WfoTreeBranch.tsx +27 -39
  297. package/src/components/WfoTree/WfoTreeNode.tsx +29 -41
  298. package/src/components/WfoTree/WfoTreeNodeListItem.tsx +34 -48
  299. package/src/components/WfoTree/styles.ts +35 -38
  300. package/src/components/WfoTree/treeUtils.spec.ts +141 -146
  301. package/src/components/WfoTree/treeUtils.ts +52 -58
  302. package/src/components/WfoWorkflowSteps/WfoStep/WfoCodeViewSelector.tsx +75 -106
  303. package/src/components/WfoWorkflowSteps/WfoStep/WfoStep.stories.tsx +3 -3
  304. package/src/components/WfoWorkflowSteps/WfoStep/WfoStep.tsx +128 -191
  305. package/src/components/WfoWorkflowSteps/WfoStep/WfoStepForm.tsx +42 -58
  306. package/src/components/WfoWorkflowSteps/WfoStep/WfoStepFormFooter.tsx +31 -42
  307. package/src/components/WfoWorkflowSteps/WfoStepList/WfoStepList.tsx +79 -101
  308. package/src/components/WfoWorkflowSteps/WfoStepStatusIcon/WfoStepStatusIcon.stories.tsx +6 -6
  309. package/src/components/WfoWorkflowSteps/WfoStepStatusIcon/WfoStepStatusIcon.tsx +64 -103
  310. package/src/components/WfoWorkflowSteps/WfoTraceback/WfoTraceback.tsx +11 -11
  311. package/src/components/WfoWorkflowSteps/WfoTraceback/styles.ts +8 -8
  312. package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/WfoStepListHeader.tsx +97 -140
  313. package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/WfoWorkflowStepList.stories.tsx +40 -40
  314. package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/WfoWorkflowStepList.tsx +146 -198
  315. package/src/components/WfoWorkflowSteps/stepListUtils.spec.ts +18 -18
  316. package/src/components/WfoWorkflowSteps/stepListUtils.ts +14 -25
  317. package/src/components/WfoWorkflowSteps/styles.ts +116 -122
  318. package/src/components/confirmationDialog/ConfirmationDialogStyling.ts +7 -7
  319. package/src/components/confirmationDialog/WfoConfirmationDialog.tsx +58 -72
  320. package/src/configuration/constants.ts +2 -4
  321. package/src/configuration/policy-resources.ts +21 -21
  322. package/src/configuration/version.ts +1 -1
  323. package/src/contexts/ConfirmationDialogProvider.tsx +54 -72
  324. package/src/contexts/OrchestratorConfigContext.tsx +23 -30
  325. package/src/contexts/PolicyContext.tsx +6 -11
  326. package/src/contexts/TreeContext.tsx +83 -97
  327. package/src/contexts/WfoErrorMonitoringProvider.tsx +16 -19
  328. package/src/hooks/useBackendAvailability.ts +39 -44
  329. package/src/hooks/useCheckEngineStatus.ts +19 -19
  330. package/src/hooks/useContentRef.ts +1 -1
  331. package/src/hooks/useDataDisplayParams.ts +35 -47
  332. package/src/hooks/useDebounce.ts +14 -14
  333. package/src/hooks/useGetOrchestratorConfig.ts +1 -1
  334. package/src/hooks/useGetPydanticFormsConfig.tsx +249 -286
  335. package/src/hooks/useGetSchedulesForWorkflow.tsx +19 -20
  336. package/src/hooks/useGetWorkflowNameById.tsx +8 -13
  337. package/src/hooks/useOrchestratorConfig.ts +2 -4
  338. package/src/hooks/useOrchestratorTheme.ts +20 -24
  339. package/src/hooks/usePathAutoComplete.ts +105 -117
  340. package/src/hooks/usePolicy.ts +5 -6
  341. package/src/hooks/useSearch.ts +60 -75
  342. package/src/hooks/useSearchPagination.ts +124 -134
  343. package/src/hooks/useShowToastMessage.ts +12 -12
  344. package/src/hooks/useStoredTableConfig.ts +22 -29
  345. package/src/hooks/useUrlParams.ts +90 -108
  346. package/src/hooks/useWfoErrorMonitoring.ts +1 -2
  347. package/src/hooks/useWfoSession.ts +15 -17
  348. package/src/hooks/useWithOrchestratorTheme.ts +3 -5
  349. package/src/icons/WfoActualWork.tsx +8 -17
  350. package/src/icons/WfoArrowsExpand.stories.tsx +3 -3
  351. package/src/icons/WfoArrowsExpand.tsx +12 -28
  352. package/src/icons/WfoBell.tsx +12 -28
  353. package/src/icons/WfoBoltFill.tsx +15 -31
  354. package/src/icons/WfoBoltSlashFill.tsx +15 -31
  355. package/src/icons/WfoChartBar.tsx +22 -26
  356. package/src/icons/WfoCheckmarkCircleFill.stories.tsx +3 -3
  357. package/src/icons/WfoCheckmarkCircleFill.tsx +11 -27
  358. package/src/icons/WfoChevronDown.stories.tsx +3 -3
  359. package/src/icons/WfoChevronDown.tsx +12 -28
  360. package/src/icons/WfoChevronUp.stories.tsx +3 -3
  361. package/src/icons/WfoChevronUp.tsx +12 -28
  362. package/src/icons/WfoClipboardCopy.stories.tsx +3 -3
  363. package/src/icons/WfoClipboardCopy.tsx +12 -28
  364. package/src/icons/WfoCode.stories.tsx +3 -3
  365. package/src/icons/WfoCode.tsx +14 -30
  366. package/src/icons/WfoCogFill.stories.tsx +3 -3
  367. package/src/icons/WfoCogFill.tsx +18 -28
  368. package/src/icons/WfoContactEnvelopeFill.tsx +9 -24
  369. package/src/icons/WfoCubeFill.tsx +14 -35
  370. package/src/icons/WfoCubeSolid.tsx +12 -28
  371. package/src/icons/WfoDotsHorizontal.tsx +12 -28
  372. package/src/icons/WfoExclamationTriangle.tsx +13 -24
  373. package/src/icons/WfoExternalLink.tsx +9 -25
  374. package/src/icons/WfoEyeFill.stories.tsx +3 -3
  375. package/src/icons/WfoEyeFill.tsx +14 -30
  376. package/src/icons/WfoIconProps.ts +3 -3
  377. package/src/icons/WfoLogoutIcon.stories.tsx +3 -3
  378. package/src/icons/WfoLogoutIcon.tsx +12 -28
  379. package/src/icons/WfoMalfunction.tsx +8 -17
  380. package/src/icons/WfoMinusCircleFill.stories.tsx +3 -3
  381. package/src/icons/WfoMinusCircleFill.tsx +12 -28
  382. package/src/icons/WfoMinusCircleOutline.stories.tsx +3 -3
  383. package/src/icons/WfoMinusCircleOutline.tsx +11 -27
  384. package/src/icons/WfoPencil.tsx +12 -30
  385. package/src/icons/WfoPencilAlt.stories.tsx +3 -3
  386. package/src/icons/WfoPencilAlt.tsx +12 -28
  387. package/src/icons/WfoPlannedWork.tsx +9 -18
  388. package/src/icons/WfoPlayCircle.tsx +14 -30
  389. package/src/icons/WfoPlayFill.stories.tsx +3 -3
  390. package/src/icons/WfoPlayFill.tsx +14 -30
  391. package/src/icons/WfoPlusCircleFill.stories.tsx +3 -3
  392. package/src/icons/WfoPlusCircleFill.tsx +12 -28
  393. package/src/icons/WfoPort.tsx +9 -18
  394. package/src/icons/WfoQuestionCircle.tsx +13 -29
  395. package/src/icons/WfoRefresh.stories.tsx +3 -3
  396. package/src/icons/WfoRefresh.tsx +14 -30
  397. package/src/icons/WfoSearchStrikethrough.stories.tsx +3 -3
  398. package/src/icons/WfoSearchStrikethrough.tsx +12 -28
  399. package/src/icons/WfoShare.tsx +14 -30
  400. package/src/icons/WfoSideMenu.stories.tsx +3 -3
  401. package/src/icons/WfoSideMenu.tsx +10 -34
  402. package/src/icons/WfoSortAsc.stories.tsx +3 -3
  403. package/src/icons/WfoSortAsc.tsx +12 -28
  404. package/src/icons/WfoSortDesc.stories.tsx +3 -3
  405. package/src/icons/WfoSortDesc.tsx +12 -28
  406. package/src/icons/WfoStatistic.tsx +32 -36
  407. package/src/icons/WfoStatusDotIcon.stories.tsx +3 -3
  408. package/src/icons/WfoStatusDotIcon.tsx +10 -26
  409. package/src/icons/WfoTrash.tsx +13 -23
  410. package/src/icons/WfoViewList.tsx +9 -19
  411. package/src/icons/WfoWarningTriangle.tsx +13 -23
  412. package/src/icons/WfoXCircleFill.stories.tsx +3 -3
  413. package/src/icons/WfoXCircleFill.tsx +12 -28
  414. package/src/icons/WfoXMarkSmall.tsx +9 -24
  415. package/src/icons/heroicons/WfoArrowDown.tsx +8 -18
  416. package/src/icons/heroicons/WfoArrowUp.tsx +8 -18
  417. package/src/icons/heroicons/WfoArrowsUpDown.tsx +8 -18
  418. package/src/icons/heroicons/WfoBracketSquare.tsx +16 -20
  419. package/src/icons/heroicons/WfoCommandLine.tsx +16 -20
  420. package/src/icons/heroicons/WfoHeroIconsWrapper.tsx +23 -26
  421. package/src/icons/heroicons/WfoScheduledTaskOnce.tsx +14 -24
  422. package/src/icons/heroicons/WfoScheduledTaskRecurring.tsx +18 -24
  423. package/src/icons/heroicons/WfoSquareStack3dStack.tsx +7 -19
  424. package/src/icons/heroicons/WfoTableCells.tsx +16 -20
  425. package/src/icons/heroicons/WfoWrench.tsx +8 -18
  426. package/src/messages/en-GB.json +623 -623
  427. package/src/messages/getTranslationMessages.spec.ts +3 -3
  428. package/src/messages/nl-NL.json +492 -492
  429. package/src/messages/useGetTranslationMessages.ts +20 -20
  430. package/src/pages/metadata/WfoMetadataPageLayout.tsx +53 -60
  431. package/src/pages/metadata/WfoProductBlocksPage.tsx +229 -283
  432. package/src/pages/metadata/WfoProductsPage.tsx +217 -282
  433. package/src/pages/metadata/WfoResourceTypesPage.tsx +178 -230
  434. package/src/pages/metadata/WfoScheduleTaskFormPage.tsx +365 -407
  435. package/src/pages/metadata/WfoScheduledTasksPage.tsx +173 -226
  436. package/src/pages/metadata/WfoTasksPage.tsx +247 -337
  437. package/src/pages/metadata/WfoWorkflowsPage.tsx +213 -282
  438. package/src/pages/metadata/taskListObjectMapper.ts +26 -34
  439. package/src/pages/metadata/workflowListObjectMapper.ts +23 -31
  440. package/src/pages/processes/WfoProcessDetail.tsx +247 -346
  441. package/src/pages/processes/WfoProcessDetailPage.tsx +53 -76
  442. package/src/pages/processes/WfoProcessListSubscriptionsCell.tsx +55 -64
  443. package/src/pages/processes/WfoProductInformationWithLink.tsx +18 -26
  444. package/src/pages/processes/WfoStartProcessPage.tsx +121 -153
  445. package/src/pages/processes/timelineUtils.spec.ts +167 -179
  446. package/src/pages/processes/timelineUtils.ts +63 -87
  447. package/src/pages/settings/WfoSettingsPage.tsx +131 -161
  448. package/src/pages/startPage/WfoStartPage.tsx +36 -45
  449. package/src/pages/startPage/mappers.ts +8 -10
  450. package/src/pages/startPage/queryVariables.ts +84 -93
  451. package/src/pages/startPage/useStartPageSummaryCardConfigurationOverride.ts +6 -8
  452. package/src/pages/subscriptions/WfoSubscriptionDetailPage.tsx +9 -9
  453. package/src/pages/subscriptions/WfoSubscriptionsListPage.tsx +66 -85
  454. package/src/pages/tasks/WfoTasksListPage.tsx +129 -156
  455. package/src/pages/tasks/getTasksListTabTypeFromString.ts +12 -14
  456. package/src/pages/tasks/tabConfig.ts +41 -44
  457. package/src/pages/workflows/WfoWorkflowsListPage.tsx +73 -88
  458. package/src/pages/workflows/getWorkflowsListTabTypeFromString.ts +12 -14
  459. package/src/pages/workflows/tabConfig.ts +41 -44
  460. package/src/rtk/api.ts +113 -132
  461. package/src/rtk/endpoints/agentExport.ts +12 -12
  462. package/src/rtk/endpoints/availability.ts +29 -32
  463. package/src/rtk/endpoints/customerDescriptions.ts +40 -46
  464. package/src/rtk/endpoints/customers.ts +26 -40
  465. package/src/rtk/endpoints/fileUpload.ts +20 -20
  466. package/src/rtk/endpoints/forms.ts +41 -54
  467. package/src/rtk/endpoints/inSync.ts +16 -19
  468. package/src/rtk/endpoints/metadata/productBlocks.ts +37 -43
  469. package/src/rtk/endpoints/metadata/products.ts +37 -42
  470. package/src/rtk/endpoints/metadata/resourceTypes.ts +38 -44
  471. package/src/rtk/endpoints/metadata/scheduledTasks.ts +88 -99
  472. package/src/rtk/endpoints/metadata/tasks.ts +21 -32
  473. package/src/rtk/endpoints/metadata/workflows.ts +65 -86
  474. package/src/rtk/endpoints/processDetail.ts +87 -103
  475. package/src/rtk/endpoints/processList.ts +20 -29
  476. package/src/rtk/endpoints/processListSummary.ts +18 -34
  477. package/src/rtk/endpoints/processStatusCounts.ts +16 -16
  478. package/src/rtk/endpoints/processSteps.ts +17 -27
  479. package/src/rtk/endpoints/productsSummary.ts +21 -26
  480. package/src/rtk/endpoints/relatedSubscriptions.ts +27 -38
  481. package/src/rtk/endpoints/search.ts +63 -82
  482. package/src/rtk/endpoints/settings.ts +110 -119
  483. package/src/rtk/endpoints/startOptions.ts +64 -80
  484. package/src/rtk/endpoints/streamMessages.ts +102 -125
  485. package/src/rtk/endpoints/subscriptionActions.ts +14 -24
  486. package/src/rtk/endpoints/subscriptionDetail.ts +23 -35
  487. package/src/rtk/endpoints/subscriptionInUseByRelationsList.ts +22 -32
  488. package/src/rtk/endpoints/subscriptionList.ts +19 -31
  489. package/src/rtk/endpoints/subscriptionListMutation.ts +65 -81
  490. package/src/rtk/endpoints/subscriptionListSummary.ts +23 -29
  491. package/src/rtk/endpoints/translations.ts +16 -19
  492. package/src/rtk/endpoints/versions.ts +9 -9
  493. package/src/rtk/slices/customApis.ts +8 -10
  494. package/src/rtk/slices/orchestratorComponentOverride.ts +20 -22
  495. package/src/rtk/slices/orchestratorConfig.ts +7 -10
  496. package/src/rtk/slices/pydanticForm.ts +7 -9
  497. package/src/rtk/slices/toastMessages.ts +26 -36
  498. package/src/rtk/store.ts +35 -44
  499. package/src/rtk/storeProvider.tsx +20 -21
  500. package/src/rtk/utils.spec.ts +68 -68
  501. package/src/rtk/utils.ts +72 -80
  502. package/src/rtk/wfoGraphqlRequestBaseQuery.ts +44 -63
  503. package/src/theme/baseStyles/formFieldsBaseStyle.ts +12 -12
  504. package/src/theme/wfoThemeModifications.ts +92 -95
  505. package/src/types/forms.ts +20 -20
  506. package/src/types/search.ts +89 -94
  507. package/src/types/types.ts +378 -403
  508. package/src/utils/cacheTag.spec.ts +8 -8
  509. package/src/utils/cacheTag.ts +7 -7
  510. package/src/utils/compareVersions.spec.ts +38 -116
  511. package/src/utils/compareVersions.ts +28 -48
  512. package/src/utils/csvDownload.ts +68 -83
  513. package/src/utils/date.spec.ts +142 -179
  514. package/src/utils/date.ts +64 -84
  515. package/src/utils/environmentVariables.spec.ts +12 -12
  516. package/src/utils/environmentVariables.ts +7 -7
  517. package/src/utils/filterData.spec.ts +18 -20
  518. package/src/utils/filterData.ts +7 -10
  519. package/src/utils/getDefaultTableConfig.ts +91 -113
  520. package/src/utils/getEnvironmentVariables.spec.ts +30 -32
  521. package/src/utils/getEnvironmentVariables.ts +19 -22
  522. package/src/utils/getObjectKeys.ts +2 -3
  523. package/src/utils/getProductNamesFromProcess.spec.ts +125 -127
  524. package/src/utils/getProductNamesFromProcess.ts +7 -9
  525. package/src/utils/getQueryParams.spec.ts +31 -34
  526. package/src/utils/getQueryParams.ts +9 -12
  527. package/src/utils/getQueryUrl.spec.ts +4 -4
  528. package/src/utils/getQueryUrl.ts +3 -3
  529. package/src/utils/getQueryVariablesForExport.spec.ts +12 -12
  530. package/src/utils/getQueryVariablesForExport.ts +4 -6
  531. package/src/utils/getStatusBadgeColor.ts +13 -13
  532. package/src/utils/getToastMessage.spec.ts +20 -20
  533. package/src/utils/getToastMessage.ts +24 -28
  534. package/src/utils/getTokenName.spec.ts +16 -16
  535. package/src/utils/getTokenName.ts +10 -10
  536. package/src/utils/getTypedFieldFromObject.spec.ts +13 -13
  537. package/src/utils/getTypedFieldFromObject.ts +5 -8
  538. package/src/utils/onlyUnique.spec.ts +15 -15
  539. package/src/utils/onlyUnique.ts +1 -1
  540. package/src/utils/optionalArray.spec.ts +65 -78
  541. package/src/utils/optionalArray.ts +10 -16
  542. package/src/utils/resultFlattener.spec.ts +40 -43
  543. package/src/utils/resultFlattener.ts +10 -21
  544. package/src/utils/string.spec.ts +133 -133
  545. package/src/utils/strings.ts +11 -11
  546. package/src/utils/toObjectWithSerializedValues.spec.ts +24 -24
  547. package/src/utils/toObjectWithSerializedValues.ts +9 -15
  548. package/src/utils/toObjectWithSortedKeys.ts +21 -24
  549. package/src/utils/toSortedObjectKeys.spec.ts +25 -29
  550. package/src/utils/uuid.spec.ts +16 -16
  551. package/src/utils/uuid.ts +2 -5
  552. package/tsconfig.build.json +10 -16
  553. package/tsconfig.json +10 -16
  554. package/tsup.config.ts +10 -10
package/CHANGELOG.md CHANGED
@@ -1,1562 +1,1567 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 7.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 4eb77d6: Updates npm dependencies
8
+
3
9
  ## 7.4.1
4
10
 
5
11
  ### Patch Changes
6
12
 
7
- - 83904e8: Fixes datepicker field matching
13
+ - 83904e8: Fixes datepicker field matching
8
14
 
9
15
  ## 7.4.0
10
16
 
11
17
  ### Minor Changes
12
18
 
13
- - 70c36b5: Add start workflow filters to the library and refactor to read from OrchestratorConfigContext instead of prop drilling
19
+ - 70c36b5: Add start workflow filters to the library and refactor to read from OrchestratorConfigContext instead of prop drilling
14
20
 
15
21
  ## 7.3.1
16
22
 
17
23
  ### Patch Changes
18
24
 
19
- - a092d98: Changes how colorMode state is passed up
25
+ - a092d98: Changes how colorMode state is passed up
20
26
 
21
27
  ## 7.3.0
22
28
 
23
29
  ### Minor Changes
24
30
 
25
- - 67ce439: Adds create scheduled task form
31
+ - 67ce439: Adds create scheduled task form
26
32
 
27
33
  ## 7.2.1
28
34
 
29
35
  ### Patch Changes
30
36
 
31
- - a976e7c: Update Elastic UI to v111.0.0
32
- - a86e5fb: Fix resetting page index to 0 when reloading, add page index bounds guard
37
+ - a976e7c: Update Elastic UI to v111.0.0
38
+ - a86e5fb: Fix resetting page index to 0 when reloading, add page index bounds guard
33
39
 
34
40
  ## 7.2.0
35
41
 
36
42
  ### Minor Changes
37
43
 
38
- - 31f9ab1: Adds metadata scheduled tasks page
44
+ - 31f9ab1: Adds metadata scheduled tasks page
39
45
 
40
46
  ## 7.1.1
41
47
 
42
48
  ### Patch Changes
43
49
 
44
- - cca7628: Updates pydantic-forms to version 1.0.1
50
+ - cca7628: Updates pydantic-forms to version 1.0.1
45
51
 
46
52
  ## 7.1.0
47
53
 
48
54
  ### Minor Changes
49
55
 
50
- - f47c7ba: Adds react-virtual and virualized WfoTable feature
56
+ - f47c7ba: Adds react-virtual and virualized WfoTable feature
51
57
 
52
58
  ## 7.0.1
53
59
 
54
60
  ### Patch Changes
55
61
 
56
- - 4cdef68: 2361 Make it possible as prepend field to be cleared
57
- - fe2e8d0: 2355 Enable Ctrl/Cmd + Arrows to control form pages
58
- - bc36592: Add option to overwrite the retriever type in the FE
59
- - 8e1cbd0: Change the processes search results to use the whole div
62
+ - 4cdef68: 2361 Make it possible as prepend field to be cleared
63
+ - fe2e8d0: 2355 Enable Ctrl/Cmd + Arrows to control form pages
64
+ - bc36592: Add option to overwrite the retriever type in the FE
65
+ - 8e1cbd0: Change the processes search results to use the whole div
60
66
 
61
67
  ## 7.0.0
62
68
 
63
69
  ### Major Changes
64
70
 
65
- - 87f9e22: Removes uniforms in favor of PydanticForms form handling library
71
+ - 87f9e22: Removes uniforms in favor of PydanticForms form handling library
66
72
 
67
73
  ### Patch Changes
68
74
 
69
- - ba5bafc: Update to latest pydantic-forms version
75
+ - ba5bafc: Update to latest pydantic-forms version
70
76
 
71
77
  ## 6.8.0
72
78
 
73
79
  ### Minor Changes
74
80
 
75
- - 1b94ebc: 2160 Add filter for create worklows combobox and override filters
81
+ - 1b94ebc: 2160 Add filter for create worklows combobox and override filters
76
82
 
77
83
  ## 6.7.8
78
84
 
79
85
  ### Patch Changes
80
86
 
81
- - 81e8278: Updates to latest nextjs version in response to CVE CVE-2025-55182
87
+ - 81e8278: Updates to latest nextjs version in response to CVE CVE-2025-55182
82
88
 
83
89
  ## 6.7.7
84
90
 
85
91
  ### Patch Changes
86
92
 
87
- - 5aa6612: Updates to latest version of pydantic forms
93
+ - 5aa6612: Updates to latest version of pydantic forms
88
94
 
89
95
  ## 6.7.6
90
96
 
91
97
  ### Patch Changes
92
98
 
93
- - 2125cee: 2246 Show 'Start task' button instead of 'Start workflow' for tasks + custom button texts and colors
94
- - 077371e: Hot reloading attempt fix
99
+ - 2125cee: 2246 Show 'Start task' button instead of 'Start workflow' for tasks + custom button texts and colors
100
+ - 077371e: Hot reloading attempt fix
95
101
 
96
102
  ## 6.7.5
97
103
 
98
104
  ### Patch Changes
99
105
 
100
- - 738ff82: 2039 Callout component for pydantic-forms
101
- - 12de731: 2256 Fix tooltip visible after clicking
102
- - ce03410: Include css theme import for eui charts in components
106
+ - 738ff82: 2039 Callout component for pydantic-forms
107
+ - 12de731: 2256 Fix tooltip visible after clicking
108
+ - ce03410: Include css theme import for eui charts in components
103
109
 
104
110
  ## 6.7.4
105
111
 
106
112
  ### Patch Changes
107
113
 
108
- - 76a20fb: Update pydantic-forms to 0.10.0
114
+ - 76a20fb: Update pydantic-forms to 0.10.0
109
115
 
110
116
  ## 6.7.3
111
117
 
112
118
  ### Patch Changes
113
119
 
114
- - 2220239: Added some changes for the loading of aggregations for the agent
120
+ - 2220239: Added some changes for the loading of aggregations for the agent
115
121
 
116
122
  ## 6.7.2
117
123
 
118
124
  ### Patch Changes
119
125
 
120
- - 7e81964: Switch to Trusted publishers
126
+ - 7e81964: Switch to Trusted publishers
121
127
 
122
128
  ## 6.7.1
123
129
 
124
130
  ### Patch Changes
125
131
 
126
- - d85e90e: Reverts toastMessages in subscription list actions
132
+ - d85e90e: Reverts toastMessages in subscription list actions
127
133
 
128
134
  ## 6.7.0
129
135
 
130
136
  ### Minor Changes
131
137
 
132
- - 600e5c0: Detect if search and agent endpoints are available. Show a message showing how to setup the routes correctly if they are not available.
138
+ - 600e5c0: Detect if search and agent endpoints are available. Show a message showing how to setup the routes correctly if they are not available.
133
139
 
134
140
  ### Patch Changes
135
141
 
136
- - 4fbc794: Updates to latest pydantic forms version. Fixes double onSuccess calls
142
+ - 4fbc794: Updates to latest pydantic forms version. Fixes double onSuccess calls
137
143
 
138
144
  ## 6.6.1
139
145
 
140
146
  ### Patch Changes
141
147
 
142
- - 91c8d8c: Updates to latest pydantic forms version
148
+ - 91c8d8c: Updates to latest pydantic forms version
143
149
 
144
150
  ## 6.6.0
145
151
 
146
152
  ### Minor Changes
147
153
 
148
- - e2f91b1: 2257 Show the minimum items in array field and min items number
154
+ - e2f91b1: 2257 Show the minimum items in array field and min items number
149
155
 
150
156
  ### Patch Changes
151
157
 
152
- - aa16445: 2213 Remove border, fix opacity for WfoReactSelect
153
- - f9ca18f: Improves subscription list menu actions
154
- - 9fc90c1: 2236 Added width parameter to note column
158
+ - aa16445: 2213 Remove border, fix opacity for WfoReactSelect
159
+ - f9ca18f: Improves subscription list menu actions
160
+ - 9fc90c1: 2236 Added width parameter to note column
155
161
 
156
162
  ## 6.5.0
157
163
 
158
164
  ### Minor Changes
159
165
 
160
- - 61c8550: Added tool calling chain component to agent and made it possible to export to CSV
166
+ - 61c8550: Added tool calling chain component to agent and made it possible to export to CSV
161
167
 
162
168
  ## 6.4.0
163
169
 
164
170
  ### Minor Changes
165
171
 
166
- - 59cab89: Adds WfoLogoSpinner to use as initial loading component
172
+ - 59cab89: Adds WfoLogoSpinner to use as initial loading component
167
173
 
168
174
  ## 6.3.2
169
175
 
170
176
  ### Patch Changes
171
177
 
172
- - ecd6594: Fixes starting tasks with pydantic forms component
178
+ - ecd6594: Fixes starting tasks with pydantic forms component
173
179
 
174
180
  ## 6.3.1
175
181
 
176
182
  ### Patch Changes
177
183
 
178
- - 53f510f: 2208 Add confirmation popup/dialog when navigating back or canceling form
184
+ - 53f510f: 2208 Add confirmation popup/dialog when navigating back or canceling form
179
185
 
180
186
  ## 6.3.0
181
187
 
182
188
  ### Minor Changes
183
189
 
184
- - eb164ba: 2189 Add set in-sync to the subscription list page
190
+ - eb164ba: 2189 Add set in-sync to the subscription list page
185
191
 
186
192
  ### Patch Changes
187
193
 
188
- - 0fbdf28: Fixes bug in Summaryfield
189
- - fb3e48c: Adds pydantic forms feature toggle
194
+ - 0fbdf28: Fixes bug in Summaryfield
195
+ - fb3e48c: Adds pydantic forms feature toggle
190
196
 
191
197
  ## 6.2.1
192
198
 
193
199
  ### Patch Changes
194
200
 
195
- - db5c529: Fixes monaco loader to version 1.5.0
201
+ - db5c529: Fixes monaco loader to version 1.5.0
196
202
 
197
203
  ## 6.2.0
198
204
 
199
205
  ### Minor Changes
200
206
 
201
- - 06a3114: Use monaco-editor in WfoJsonCodeBlock
207
+ - 06a3114: Use monaco-editor in WfoJsonCodeBlock
202
208
 
203
209
  ### Patch Changes
204
210
 
205
- - 94955b0: 1951 Added link for workflow in toast
211
+ - 94955b0: 1951 Added link for workflow in toast
206
212
 
207
213
  ## 6.1.1
208
214
 
209
215
  ### Patch Changes
210
216
 
211
- - ad4727a: Remove space trimming and special character removal from the searchbar.
217
+ - ad4727a: Remove space trimming and special character removal from the searchbar.
212
218
 
213
219
  ## 6.1.0
214
220
 
215
221
  ### Minor Changes
216
222
 
217
- - 8963f5c: Added toOptionalObjectProperty function, new compact pencil icon
223
+ - 8963f5c: Added toOptionalObjectProperty function, new compact pencil icon
218
224
 
219
225
  ## 6.0.0
220
226
 
221
227
  ### Major Changes
222
228
 
223
- - 7408909: UI Components for the new search and agent page, integrating with the search/agent endpoints in the core package.
229
+ - 7408909: UI Components for the new search and agent page, integrating with the search/agent endpoints in the core package.
224
230
 
225
231
  ## 5.9.0
226
232
 
227
233
  ### Minor Changes
228
234
 
229
- - e732016: Updates depencencies to latest minor versions
235
+ - e732016: Updates depencencies to latest minor versions
230
236
 
231
237
  ## 5.8.1
232
238
 
233
239
  ### Patch Changes
234
240
 
235
- - dde87d4: Fixes removing values in WFOReactSelect element
236
- - 2f54f2b: Updates to latest version of pydantic-forms
241
+ - dde87d4: Fixes removing values in WFOReactSelect element
242
+ - 2f54f2b: Updates to latest version of pydantic-forms
237
243
 
238
244
  ## 5.8.0
239
245
 
240
246
  ### Minor Changes
241
247
 
242
- - 982df15: 2081 Add support for workflows with target Reconcile
248
+ - 982df15: 2081 Add support for workflows with target Reconcile
243
249
 
244
250
  ## 5.7.1
245
251
 
246
252
  ### Patch Changes
247
253
 
248
- - ae225ce: Updates to latest version of pydantic-forms-ui
249
- - cd5436e: 2159 Fix labels for Endpoint description
254
+ - ae225ce: Updates to latest version of pydantic-forms-ui
255
+ - cd5436e: 2159 Fix labels for Endpoint description
250
256
 
251
257
  ## 5.7.0
252
258
 
253
259
  ### Minor Changes
254
260
 
255
- - 3fab97c: Updates to latest pydantic forms version
261
+ - 3fab97c: Updates to latest pydantic forms version
256
262
 
257
263
  ### Patch Changes
258
264
 
259
- - 370492a: Allows task to start with pydantic forms
260
- - 38e73a8: Fix link to settings-overview documentation
265
+ - 370492a: Allows task to start with pydantic forms
266
+ - 38e73a8: Fix link to settings-overview documentation
261
267
 
262
268
  ## 5.6.1
263
269
 
264
270
  ### Patch Changes
265
271
 
266
- - 9b9f2fa: Updates to latest version of pydantic forms
272
+ - 9b9f2fa: Updates to latest version of pydantic forms
267
273
 
268
274
  ## 5.6.0
269
275
 
270
276
  ### Minor Changes
271
277
 
272
- - bb0264e: Migrate WfoStepForm to pydantic forms
278
+ - bb0264e: Migrate WfoStepForm to pydantic forms
273
279
 
274
280
  ### Patch Changes
275
281
 
276
- - 516239f: Applies errorStyle to pydantic forms root errors
282
+ - 516239f: Applies errorStyle to pydantic forms root errors
277
283
 
278
284
  ## 5.5.3
279
285
 
280
286
  ### Patch Changes
281
287
 
282
- - 19a7e45: Updates to pydantic form version 0.8.0
288
+ - 19a7e45: Updates to pydantic form version 0.8.0
283
289
 
284
290
  ## 5.5.2
285
291
 
286
292
  ### Patch Changes
287
293
 
288
- - 65c254d: Fix WfoSummary label styles
289
- - b4c8635: added translation aostatus menu, and made re-try all tasks consistent
290
- - 60f4ec4: Updates to latest version of pydantic forms
294
+ - 65c254d: Fix WfoSummary label styles
295
+ - b4c8635: added translation aostatus menu, and made re-try all tasks consistent
296
+ - 60f4ec4: Updates to latest version of pydantic forms
291
297
 
292
298
  ## 5.5.1
293
299
 
294
300
  ### Patch Changes
295
301
 
296
- - 0c7ec24: Introduces some components for pydantic forms
302
+ - 0c7ec24: Introduces some components for pydantic forms
297
303
 
298
304
  ## 5.5.0
299
305
 
300
306
  ### Minor Changes
301
307
 
302
- - 5b2d095: Fix RenderFormErrors to not display 0, added some translations
308
+ - 5b2d095: Fix RenderFormErrors to not display 0, added some translations
303
309
 
304
310
  ## 5.4.0
305
311
 
306
312
  ### Minor Changes
307
313
 
308
- - fb634ec: Improve Process Detail step timestamp using step started and completed datetime
309
- - b338d31: Reflect RBAC rules from backend in GUI, requires minimum backend version of 4.2.0
314
+ - fb634ec: Improve Process Detail step timestamp using step started and completed datetime
315
+ - b338d31: Reflect RBAC rules from backend in GUI, requires minimum backend version of 4.2.0
310
316
 
311
317
  ### Patch Changes
312
318
 
313
- - b604a46: Updates to latest version of pydantic forms
314
- - 796d299: Fixes for pydanticforms integration
319
+ - b604a46: Updates to latest version of pydantic forms
320
+ - 796d299: Fixes for pydanticforms integration
315
321
 
316
322
  ## 5.3.4
317
323
 
318
324
  ### Patch Changes
319
325
 
320
- - b2479fe: Always allows submit button on pydantic-forms
326
+ - b2479fe: Always allows submit button on pydantic-forms
321
327
 
322
328
  ## 5.3.3
323
329
 
324
330
  ### Patch Changes
325
331
 
326
- - ca2460b: Updates to latest pydantic-form version
332
+ - ca2460b: Updates to latest pydantic-form version
327
333
 
328
334
  ## 5.3.2
329
335
 
330
336
  ### Patch Changes
331
337
 
332
- - 004fde2: 1935 Fixes style in WfoContentHeader. This makes the dropdown menu attached to the action button again
333
- - 067ef6d: 1952 WfoTable: Resets page index to 0 when search query is updated. Always shows the current page in the pagination section, even when it is out of range.
334
- - 77f941d: WfoArrayField, WfoObjectField, fix some import and types for the forms
335
- - 6b927ef: Add new EUI colors to theme and SummaryFieldStyling
338
+ - 004fde2: 1935 Fixes style in WfoContentHeader. This makes the dropdown menu attached to the action button again
339
+ - 067ef6d: 1952 WfoTable: Resets page index to 0 when search query is updated. Always shows the current page in the pagination section, even when it is out of range.
340
+ - 77f941d: WfoArrayField, WfoObjectField, fix some import and types for the forms
341
+ - 6b927ef: Add new EUI colors to theme and SummaryFieldStyling
336
342
 
337
343
  ## 5.3.1
338
344
 
339
345
  ### Patch Changes
340
346
 
341
- - cd00d6f: 1953 Fix - Process detail page: left align of subscription descriptions in the related subscriptions cell
342
- - d7d4717: 2024 - Subscription Detail Page - action menu: opening linked subscriptions in a new tab
347
+ - cd00d6f: 1953 Fix - Process detail page: left align of subscription descriptions in the related subscriptions cell
348
+ - d7d4717: 2024 - Subscription Detail Page - action menu: opening linked subscriptions in a new tab
343
349
 
344
350
  ## 5.3.0
345
351
 
346
352
  ### Minor Changes
347
353
 
348
- - e3add00: 2021 Add new note field attributes
354
+ - e3add00: 2021 Add new note field attributes
349
355
 
350
356
  ## 5.2.4
351
357
 
352
358
  ### Patch Changes
353
359
 
354
- - 4ef58e0: 1994 Adds classnames to the key and value cells to support style adjustments by the consumer
360
+ - 4ef58e0: 1994 Adds classnames to the key and value cells to support style adjustments by the consumer
355
361
 
356
362
  ## 5.2.3
357
363
 
358
364
  ### Patch Changes
359
365
 
360
- - c3e62c9: 2001 fix filter of summarycard
366
+ - c3e62c9: 2001 fix filter of summarycard
361
367
 
362
368
  ## 5.2.2
363
369
 
364
370
  ### Patch Changes
365
371
 
366
- - 5fcb0c8: Fix regression in subscription delta
372
+ - 5fcb0c8: Fix regression in subscription delta
367
373
 
368
374
  ## 5.2.1
369
375
 
370
376
  ### Patch Changes
371
377
 
372
- - 7d968b0: Updates pydantic-forms minimum version
378
+ - 7d968b0: Updates pydantic-forms minimum version
373
379
 
374
380
  ## 5.2.0
375
381
 
376
382
  ### Minor Changes
377
383
 
378
- - 7fa5828: SURF specific: Deprecate SubscriptionField and refactor it to use new REST endpoint with server-side filtering
384
+ - 7fa5828: SURF specific: Deprecate SubscriptionField and refactor it to use new REST endpoint with server-side filtering
379
385
 
380
386
  ### Patch Changes
381
387
 
382
- - bbae7ad: Small improvements to forms
388
+ - bbae7ad: Small improvements to forms
383
389
 
384
390
  ## 5.1.0
385
391
 
386
392
  ### Minor Changes
387
393
 
388
- - f3f1417: removes conditional render option to edit description on wf/task metadata page
389
- - 59c5109: Adds some fields to be used by workflows using pydantic forms
394
+ - f3f1417: removes conditional render option to edit description on wf/task metadata page
395
+ - 59c5109: Adds some fields to be used by workflows using pydantic forms
390
396
 
391
397
  ### Patch Changes
392
398
 
393
- - c03d83a: Add Exclamation badge
399
+ - c03d83a: Add Exclamation badge
394
400
 
395
401
  ## 5.0.0
396
402
 
397
403
  ### Major Changes
398
404
 
399
- - 6b21307: Update target validation to isTask
405
+ - 6b21307: Update target validation to isTask
400
406
 
401
407
  ### Minor Changes
402
408
 
403
- - 0f648af: Adds some nullchecks that prevents the app from crashing on some errors
404
- - 0cab7d9: 326 Adds dropdown to product blocks section on subscription detail page to select all items with a given product block name
409
+ - 0f648af: Adds some nullchecks that prevents the app from crashing on some errors
410
+ - 0cab7d9: 326 Adds dropdown to product blocks section on subscription detail page to select all items with a given product block name
405
411
 
406
412
  ### Patch Changes
407
413
 
408
- - a500bac: Add product tag to workflow options query
414
+ - a500bac: Add product tag to workflow options query
409
415
 
410
416
  ## 4.2.0
411
417
 
412
418
  ### Minor Changes
413
419
 
414
- - e799369: 1886 "Fix refresh affecting subscriptions search and in-sync button"
420
+ - e799369: 1886 "Fix refresh affecting subscriptions search and in-sync button"
415
421
 
416
422
  ## 4.1.1
417
423
 
418
424
  ### Patch Changes
419
425
 
420
- - e90725b: Fixes depency array bug that breaks the app
426
+ - e90725b: Fixes depency array bug that breaks the app
421
427
 
422
428
  ## 4.1.0
423
429
 
424
430
  ### Minor Changes
425
431
 
426
- - a731291: Adds componentMatcher configuration option for pydantic forms
427
- - 17330a1: Adds some components to export that were missing
432
+ - a731291: Adds componentMatcher configuration option for pydantic forms
433
+ - 17330a1: Adds some components to export that were missing
428
434
 
429
435
  ## 4.0.1
430
436
 
431
437
  ### Patch Changes
432
438
 
433
- - 3332386: Fixates elastic/eui version
439
+ - 3332386: Fixates elastic/eui version
434
440
 
435
441
  ## 4.0.0
436
442
 
437
443
  ### Major Changes
438
444
 
439
- - 85509b5: Updates to latest npm packages versions. Updates to eslint 9
445
+ - 85509b5: Updates to latest npm packages versions. Updates to eslint 9
440
446
 
441
447
  ## 3.10.0
442
448
 
443
449
  ### Minor Changes
444
450
 
445
- - 2ae5b18: Replace hardcoded query params with constants and enums
451
+ - 2ae5b18: Replace hardcoded query params with constants and enums
446
452
 
447
453
  ### Patch Changes
448
454
 
449
- - 4cefe05: 1858 Fix layout issue with workflows on subscription detail page
455
+ - 4cefe05: 1858 Fix layout issue with workflows on subscription detail page
450
456
 
451
457
  ## 3.9.1
452
458
 
453
459
  ### Patch Changes
454
460
 
455
- - 3f64535: 1337 Move getWebSocket to utils.ts
461
+ - 3f64535: 1337 Move getWebSocket to utils.ts
456
462
 
457
463
  ## 3.9.0
458
464
 
459
465
  ### Minor Changes
460
466
 
461
- - 5f8c712: 1210 Adds a badge with number of subscriptions not shown in the affected-subscriptions cell on the process list page
467
+ - 5f8c712: 1210 Adds a badge with number of subscriptions not shown in the affected-subscriptions cell on the process list page
462
468
 
463
469
  ### Patch Changes
464
470
 
465
- - adc70ef: Remove inUseByRelations field from query SubscriptionDropdownOptions
471
+ - adc70ef: Remove inUseByRelations field from query SubscriptionDropdownOptions
466
472
 
467
- To benefit from the query optimization in https://github.com/workfloworchestrator/orchestrator-core/pull/922
473
+ To benefit from the query optimization in https://github.com/workfloworchestrator/orchestrator-core/pull/922
468
474
 
469
475
  ## 3.8.1
470
476
 
471
477
  ### Patch Changes
472
478
 
473
- - e75d0e4: 1844 Adds isAllowed policy check to the start-stop-engine section
479
+ - e75d0e4: 1844 Adds isAllowed policy check to the start-stop-engine section
474
480
 
475
481
  ## 3.8.0
476
482
 
477
483
  ### Minor Changes
478
484
 
479
- - 93d46aa: 1635 Adds extra parameter ("allFieldValues") to the override function to have all data available when overriding a specific cell value
485
+ - 93d46aa: 1635 Adds extra parameter ("allFieldValues") to the override function to have all data available when overriding a specific cell value
480
486
 
481
487
  ### Patch Changes
482
488
 
483
- - 6fdc33a: 1824 Fix for the thin gray line in the sidebar that went beyond settings.
489
+ - 6fdc33a: 1824 Fix for the thin gray line in the sidebar that went beyond settings.
484
490
 
485
491
  ## 3.7.0
486
492
 
487
493
  ### Minor Changes
488
494
 
489
- - 8a51b24: Adds fileupload field
495
+ - 8a51b24: Adds fileupload field
490
496
 
491
497
  ## 3.6.0
492
498
 
493
499
  ### Minor Changes
494
500
 
495
- - 21c2886: 1825 Update WfoDragHandler, make WfoTable 100% width
496
- - 5f16a2e: 1821 Update WfoSidebar, add toOptionalArrayEntries
501
+ - 21c2886: 1825 Update WfoDragHandler, make WfoTable 100% width
502
+ - 5f16a2e: 1821 Update WfoSidebar, add toOptionalArrayEntries
497
503
 
498
504
  ## 3.5.2
499
505
 
500
506
  ### Patch Changes
501
507
 
502
- - 7040598: Readds testid to textarea field
503
- - 167bea6: 1751 - Makes width of the inline note edit field flexible
508
+ - 7040598: Readds testid to textarea field
509
+ - 167bea6: 1751 - Makes width of the inline note edit field flexible
504
510
 
505
511
  ## 3.5.1
506
512
 
507
513
  ### Patch Changes
508
514
 
509
- - 0cb0521: Updates required peer dependencies to NextJs 14.2.25 (CVE-2025-29927)
510
- - dbb2468: Add: time interval 15 min on time picker
515
+ - 0cb0521: Updates required peer dependencies to NextJs 14.2.25 (CVE-2025-29927)
516
+ - dbb2468: Add: time interval 15 min on time picker
511
517
 
512
518
  ## 3.5.0
513
519
 
514
520
  ### Minor Changes
515
521
 
516
- - 267ad99: Introduces pydantic forms module to handle some workflows
522
+ - 267ad99: Introduces pydantic forms module to handle some workflows
517
523
 
518
524
  ### Patch Changes
519
525
 
520
- - 34a3044: 1778 Improve re-render summary cards on dashboard page with many changes in backend
521
- - 2dd877d: 1726 Fix column width dragger visible on top of items covering the table header
526
+ - 34a3044: 1778 Improve re-render summary cards on dashboard page with many changes in backend
527
+ - 2dd877d: 1726 Fix column width dragger visible on top of items covering the table header
522
528
 
523
529
  ## 3.4.2
524
530
 
525
531
  ### Patch Changes
526
532
 
527
- - 00038a1: Fix for grouped table width
533
+ - 00038a1: Fix for grouped table width
528
534
 
529
535
  ## 3.4.1
530
536
 
531
537
  ### Patch Changes
532
538
 
533
- - 0a6d086: 1758 Show error badge in navigation header when versions of frontend and backend are incompatible.
534
- - 985eed8: 1749 Set a minHeight for EuiPageTemplate section
535
- - e570801: 1707 Improve resizing of table columns
539
+ - 0a6d086: 1758 Show error badge in navigation header when versions of frontend and backend are incompatible.
540
+ - 985eed8: 1749 Set a minHeight for EuiPageTemplate section
541
+ - e570801: 1707 Improve resizing of table columns
536
542
 
537
543
  ## 3.4.0
538
544
 
539
545
  ### Minor Changes
540
546
 
541
- - 2389b16: 808 - Support for metadata description modify - requires orchestrator core 2.10.0
547
+ - 2389b16: 808 - Support for metadata description modify - requires orchestrator core 2.10.0
542
548
 
543
549
  ## 3.3.3
544
550
 
545
551
  ### Patch Changes
546
552
 
547
- - 62d16da: 1709 Replace default icons with SURF icons
553
+ - 62d16da: 1709 Replace default icons with SURF icons
548
554
 
549
555
  ## 3.3.2
550
556
 
551
557
  ### Patch Changes
552
558
 
553
- - 59230ea: inline edit for description of metadata pages
559
+ - 59230ea: inline edit for description of metadata pages
554
560
 
555
561
  ## 3.3.1
556
562
 
557
563
  ### Patch Changes
558
564
 
559
- - 56bdc1d: 1705 Added prop for custom icon summary card
565
+ - 56bdc1d: 1705 Added prop for custom icon summary card
560
566
 
561
567
  ## 3.3.0
562
568
 
563
569
  ### Minor Changes
564
570
 
565
- - 0476c1d: Adds an asteriks to every single word search
566
- - 937c8d6: Adds customer description edit forms
567
- - 1bb8c3c: Added support for displaying software versions in hamburger menu
571
+ - 0476c1d: Adds an asteriks to every single word search
572
+ - 937c8d6: Adds customer description edit forms
573
+ - 1bb8c3c: Added support for displaying software versions in hamburger menu
568
574
 
569
575
  ## 3.2.0
570
576
 
571
577
  ### Minor Changes
572
578
 
573
- - 2175530: 1704 - Adjustments to assist in overriding the standard menu items: Using more descriptive id values. Adds reusable divider menu item
579
+ - 2175530: 1704 - Adjustments to assist in overriding the standard menu items: Using more descriptive id values. Adds reusable divider menu item
574
580
 
575
581
  ## 3.1.1
576
582
 
577
583
  ### Patch Changes
578
584
 
579
- - e838f80: 330 Making timeline in process detail pages sticky to the top of the screen. Introduces a useContentRef hook to refer to the scrollable content div in the pagetemplate
585
+ - e838f80: 330 Making timeline in process detail pages sticky to the top of the screen. Introduces a useContentRef hook to refer to the scrollable content div in the pagetemplate
580
586
 
581
587
  ## 3.1.0
582
588
 
583
589
  ### Minor Changes
584
590
 
585
- - 98c1716: Fix notes not updating when changing pages, fix cancel button resetting note to older value
586
- - c19dacd: 1662 Make the navbar fixed when scrolling and notify user for failing websocket there.
591
+ - 98c1716: Fix notes not updating when changing pages, fix cancel button resetting note to older value
592
+ - c19dacd: 1662 Make the navbar fixed when scrolling and notify user for failing websocket there.
587
593
 
588
594
  ## 3.0.3
589
595
 
590
596
  ### Patch Changes
591
597
 
592
- - bba111c: Add missing subscription id to start process form
598
+ - bba111c: Add missing subscription id to start process form
593
599
 
594
600
  ## 3.0.2
595
601
 
596
602
  ### Patch Changes
597
603
 
598
- - a4492fd: Fix 400 error in create lir prefix form
599
- - 4baeff5: 1509 Remove toast for failed websocket connection that covers the next and back buttons in the forms.
604
+ - a4492fd: Fix 400 error in create lir prefix form
605
+ - 4baeff5: 1509 Remove toast for failed websocket connection that covers the next and back buttons in the forms.
600
606
 
601
607
  ## 3.0.1
602
608
 
603
609
  ### Patch Changes
604
610
 
605
- - 4bd9869: 1146 Allow workflow to start with additional prefilled variables - LIR prefixes page
611
+ - 4bd9869: 1146 Allow workflow to start with additional prefilled variables - LIR prefixes page
606
612
 
607
613
  ## 3.0.0
608
614
 
609
615
  ### Major Changes
610
616
 
611
- - f6315dd: 1479:
612
-
613
- - csvDownload (Breaking change): Changed the parameters of initiateCsvFileDownload for directly exporting data to CSV.
614
- - GroupedTable: The table has a small header with a button "Collapse / Expand", this can now be overridden.
615
- - Introduced a utility type to help ensuring that all the props of an object will be of type "string". Typically useful for the csvDownload functionality
617
+ - f6315dd: 1479:
618
+ - csvDownload (Breaking change): Changed the parameters of initiateCsvFileDownload for directly exporting data to CSV.
619
+ - GroupedTable: The table has a small header with a button "Collapse / Expand", this can now be overridden.
620
+ - Introduced a utility type to help ensuring that all the props of an object will be of type "string". Typically useful for the csvDownload functionality
616
621
 
617
- Changes to be made by the consumer of the library:
618
- The function `initiateCsvFileDownload` now requires 3 parameters instead of 2. The new parameter is `keyOrder` and is an array of strings representing the desired order of the columns in the CSV file. See example below for the placement.
622
+ Changes to be made by the consumer of the library:
623
+ The function `initiateCsvFileDownload` now requires 3 parameters instead of 2. The new parameter is `keyOrder` and is an array of strings representing the desired order of the columns in the CSV file. See example below for the placement.
619
624
 
620
- Before:
625
+ Before:
621
626
 
622
- ```javascript
623
- initiateCsvFileDownload(data, fileName);
624
- ```
627
+ ```javascript
628
+ initiateCsvFileDownload(data, fileName);
629
+ ```
625
630
 
626
- After:
631
+ After:
627
632
 
628
- ```javascript
629
- initiateCsvFileDownload(data, keyOrder, fileName);
630
- ```
633
+ ```javascript
634
+ initiateCsvFileDownload(data, keyOrder, fileName);
635
+ ```
631
636
 
632
637
  ### Patch Changes
633
638
 
634
- - 19d1d88: Enables prefilling of prefixes
635
- - bbf8983: 1623 Changes the colors of the WfoInsyncIcon to make the no-in-sync state more prominent
636
- - eb45e6b: 289 Metadata page: making related product blocks, resource types and product tags badges clickable. It will update the search query to show that specific item.
639
+ - 19d1d88: Enables prefilling of prefixes
640
+ - bbf8983: 1623 Changes the colors of the WfoInsyncIcon to make the no-in-sync state more prominent
641
+ - eb45e6b: 289 Metadata page: making related product blocks, resource types and product tags badges clickable. It will update the search query to show that specific item.
637
642
 
638
643
  ## 2.15.0
639
644
 
640
645
  ### Minor Changes
641
646
 
642
- - c7eaf69: 1620 Add subscriptionPath option for WfoRelatedSubscriptions, WfoSubscriptionDetailTree
647
+ - c7eaf69: 1620 Add subscriptionPath option for WfoRelatedSubscriptions, WfoSubscriptionDetailTree
643
648
 
644
649
  ### Patch Changes
645
650
 
646
- - 79d9133: 1569 Some non-functional tweaks on the table components: Adds classNames and adds a Fragment component in a mapper function
647
- - 2cab3b2: Add summary field to Object field type in AutoFieldLoader
651
+ - 79d9133: 1569 Some non-functional tweaks on the table components: Adds classNames and adds a Fragment component in a mapper function
652
+ - 2cab3b2: Add summary field to Object field type in AutoFieldLoader
648
653
 
649
654
  ## 2.14.1
650
655
 
651
656
  ### Patch Changes
652
657
 
653
- - 7f972a1: Fixes calling getFirstUuidPart with null value
654
- - 86b504f: Feat: refactor IPPREFIX table #2143
658
+ - 7f972a1: Fixes calling getFirstUuidPart with null value
659
+ - 86b504f: Feat: refactor IPPREFIX table #2143
655
660
 
656
661
  ## 2.14.0
657
662
 
658
663
  ### Minor Changes
659
664
 
660
- - 0172be2: Adds resizable table columns
665
+ - 0172be2: Adds resizable table columns
661
666
 
662
667
  ## 2.13.0
663
668
 
664
669
  ### Minor Changes
665
670
 
666
- - 195a951: 692 Adds WfoErrorMonitoringProvider for tracing purposes. It exposes 2 methods via the useWfoErrorMonitoring hook. These reporting functions are used within the component library. To start using it, the WfoErrorMonitoringProvider needs to be added to the \_app.tsx and the errorMonitoringHandler needs to be implemented.
671
+ - 195a951: 692 Adds WfoErrorMonitoringProvider for tracing purposes. It exposes 2 methods via the useWfoErrorMonitoring hook. These reporting functions are used within the component library. To start using it, the WfoErrorMonitoringProvider needs to be added to the \_app.tsx and the errorMonitoringHandler needs to be implemented.
667
672
 
668
673
  ### Patch Changes
669
674
 
670
- - 95de1e8: 1552 Remove last line of workflow timeline card
675
+ - 95de1e8: 1552 Remove last line of workflow timeline card
671
676
 
672
677
  ## 2.12.0
673
678
 
674
679
  ### Minor Changes
675
680
 
676
- - 6e4d726: 1560 Table Header: for narrow columns, moving the sort icons as much as possible to the right
677
- - cd0d38f: 1556 Adds inline note editing for the subscription list page
681
+ - 6e4d726: 1560 Table Header: for narrow columns, moving the sort icons as much as possible to the right
682
+ - cd0d38f: 1556 Adds inline note editing for the subscription list page
678
683
 
679
684
  ### Patch Changes
680
685
 
681
- - cdb9c83: 1530 Navigate to task list page when clicking on the tasks count icon
682
- - 87540ac: 1577 Fixes uncheckable checkbox (only the label was clickable)
683
- - c592740: 1536 Hides inUseByIds in the list of product block instance values
684
- - 88a9db4: 1561 Fixes double copy icon in subscription detail page at the in-use-by-subscriptions section
685
- - d39017a: Fix WfoInlineNoteEdit showing cached value from the previous page on the next one
686
- - a442a0b: new column width and customer fullname hidden
686
+ - cdb9c83: 1530 Navigate to task list page when clicking on the tasks count icon
687
+ - 87540ac: 1577 Fixes uncheckable checkbox (only the label was clickable)
688
+ - c592740: 1536 Hides inUseByIds in the list of product block instance values
689
+ - 88a9db4: 1561 Fixes double copy icon in subscription detail page at the in-use-by-subscriptions section
690
+ - d39017a: Fix WfoInlineNoteEdit showing cached value from the previous page on the next one
691
+ - a442a0b: new column width and customer fullname hidden
687
692
 
688
693
  ## 2.11.1
689
694
 
690
695
  ### Patch Changes
691
696
 
692
- - 56e2537: Fixes rights issue in github action
693
- - b7fe3ee: Adds github action permission to publish with provenance
697
+ - 56e2537: Fixes rights issue in github action
698
+ - b7fe3ee: Adds github action permission to publish with provenance
694
699
 
695
700
  ## 2.11.0
696
701
 
697
702
  ### Minor Changes
698
703
 
699
- - 85fca33: Adds npm provenance flag
704
+ - 85fca33: Adds npm provenance flag
700
705
 
701
706
  ### Patch Changes
702
707
 
703
- - 59389ea: Removes limit on related workflows on subscription detail page
708
+ - 59389ea: Removes limit on related workflows on subscription detail page
704
709
 
705
710
  ## 2.10.1
706
711
 
707
712
  ### Patch Changes
708
713
 
709
- - 4a1ef5b: Adds pre-wrap style to value display fieldds
714
+ - 4a1ef5b: Adds pre-wrap style to value display fieldds
710
715
 
711
716
  ## 2.10.0
712
717
 
713
718
  ### Minor Changes
714
719
 
715
- - e198ef6: 1528 Add tooltip to WfoInlineText edit, fix bug showing empty tooltip
716
- - 4adc510: Adds table view to workflow steps
720
+ - e198ef6: 1528 Add tooltip to WfoInlineText edit, fix bug showing empty tooltip
721
+ - 4adc510: Adds table view to workflow steps
717
722
 
718
723
  ## 2.9.1
719
724
 
720
725
  ### Patch Changes
721
726
 
722
- - fc4a7c5: Fixes too many productblock values being hidden
727
+ - fc4a7c5: Fixes too many productblock values being hidden
723
728
 
724
729
  ## 2.9.0
725
730
 
726
731
  ### Minor Changes
727
732
 
728
- - fc8002a: 1503 Makes disabled action menu items expandable to list all subscriptions preventing this action to be available
733
+ - fc8002a: 1503 Makes disabled action menu items expandable to list all subscriptions preventing this action to be available
729
734
 
730
735
  ### Patch Changes
731
736
 
732
- - beca81e: Fixes possible error in suspend step
733
- - 9d1881f: 1504 Resolves task names and workflow names into the description text from the metadata endpoint, making the titles more human-readable
734
- - e8c65bf: update to translation file
735
- - 4bf976f: Fixes showing empty product block values where they should not be
737
+ - beca81e: Fixes possible error in suspend step
738
+ - 9d1881f: 1504 Resolves task names and workflow names into the description text from the metadata endpoint, making the titles more human-readable
739
+ - e8c65bf: update to translation file
740
+ - 4bf976f: Fixes showing empty product block values where they should not be
736
741
 
737
742
  ## 2.8.4
738
743
 
739
744
  ### Patch Changes
740
745
 
741
- - be6bf70: added extra Dutch translation term and fix workflowsteps translation
742
- - 3bfe651: Updates npm packages to latest versions
743
- - 490da42: 1490 Remove last border of a product block key value item
746
+ - be6bf70: added extra Dutch translation term and fix workflowsteps translation
747
+ - 3bfe651: Updates npm packages to latest versions
748
+ - 490da42: 1490 Remove last border of a product block key value item
744
749
 
745
750
  ## 2.8.3
746
751
 
747
752
  ### Patch Changes
748
753
 
749
- - 85f1514: Added new icons - WfoActualWork, WfoMalfunction, WfoPlannedWork
754
+ - 85f1514: Added new icons - WfoActualWork, WfoMalfunction, WfoPlannedWork
750
755
 
751
756
  ## 2.8.2
752
757
 
753
758
  ### Patch Changes
754
759
 
755
- - 056ba69: 1402 Adds context menu to be used in the table. It exposes a callback that is triggered when the menu opens (for optionally triggering a REST call to populate the menu)
760
+ - 056ba69: 1402 Adds context menu to be used in the table. It exposes a callback that is triggered when the menu opens (for optionally triggering a REST call to populate the menu)
756
761
 
757
762
  ## 2.8.1
758
763
 
759
764
  ### Patch Changes
760
765
 
761
- - d119e38: 1404 Allows WfoFilterTabs to accept append property that is passed on to EuiTab component
762
- - 3d1ebbe: 1419 Update product block detail color to match list item color.
763
- - f6a31a6: Fix: Empty value dropdown override
764
- - 038989c: 1451 Disables the subscription delta button when the process is running
766
+ - d119e38: 1404 Allows WfoFilterTabs to accept append property that is passed on to EuiTab component
767
+ - 3d1ebbe: 1419 Update product block detail color to match list item color.
768
+ - f6a31a6: Fix: Empty value dropdown override
769
+ - 038989c: 1451 Disables the subscription delta button when the process is running
765
770
 
766
771
  ## 2.8.0
767
772
 
768
773
  ### Minor Changes
769
774
 
770
- - 846a884: Updates npm dependency minor versions
775
+ - 846a884: Updates npm dependency minor versions
771
776
 
772
777
  ## 2.7.1
773
778
 
774
779
  ### Patch Changes
775
780
 
776
- - 2da7671: Fix: Add onchange on the useEffect state in order to set the default
781
+ - 2da7671: Fix: Add onchange on the useEffect state in order to set the default
777
782
 
778
783
  ## 2.7.0
779
784
 
780
785
  ### Minor Changes
781
786
 
782
- - b293024: Adds flags to disable RTK cache in development
787
+ - b293024: Adds flags to disable RTK cache in development
783
788
 
784
789
  ### Patch Changes
785
790
 
786
- - f00a7d1: 1494 Introduces refs to fix the useEffect rerender loop
787
- - aa24057: 735 - WfoSearch: Triggers onUpdateQueryString when field is erased. Adds queryIsValid prop to mark the validity of the query.
788
- - 6bcfd14: 1398 - Adds a generic way of serializing objects when exporting CSV files
791
+ - f00a7d1: 1494 Introduces refs to fix the useEffect rerender loop
792
+ - aa24057: 735 - WfoSearch: Triggers onUpdateQueryString when field is erased. Adds queryIsValid prop to mark the validity of the query.
793
+ - 6bcfd14: 1398 - Adds a generic way of serializing objects when exporting CSV files
789
794
 
790
795
  ## 2.6.0
791
796
 
792
797
  ### Minor Changes
793
798
 
794
- - 404ffe2: Shows empty values in productBlocks in detail mode
799
+ - 404ffe2: Shows empty values in productBlocks in detail mode
795
800
 
796
801
  ### Patch Changes
797
802
 
798
- - 293c85c: 1440 Adjusted FieldValue type to include ReactNode for NMS
803
+ - 293c85c: 1440 Adjusted FieldValue type to include ReactNode for NMS
799
804
 
800
805
  ## 2.5.0
801
806
 
802
807
  ### Minor Changes
803
808
 
804
- - 78e5223: Fixed buy that does not display Array in blocks
805
- - 06ec6bc: Connects websocket regardless of what page you start on
806
- - f0f5aed: 1440 Changes for the NMS service ports tab
809
+ - 78e5223: Fixed buy that does not display Array in blocks
810
+ - 06ec6bc: Connects websocket regardless of what page you start on
811
+ - f0f5aed: 1440 Changes for the NMS service ports tab
807
812
 
808
813
  ### Patch Changes
809
814
 
810
- - ac98ce6: Update tsv information modal
815
+ - ac98ce6: Update tsv information modal
811
816
 
812
817
  ## 2.4.0
813
818
 
814
819
  ### Minor Changes
815
820
 
816
- - ad83b95: Improves performace of subscription dropdown options
821
+ - ad83b95: Improves performace of subscription dropdown options
817
822
 
818
823
  ### Patch Changes
819
824
 
820
- - ff6f520: 1377 Added copy button to UUID fields in tables
825
+ - ff6f520: 1377 Added copy button to UUID fields in tables
821
826
 
822
827
  ## 2.3.0
823
828
 
824
829
  ### Minor Changes
825
830
 
826
- - 0efcf20: 315 - Making the sort icon always visible in cases of small table columns.
827
- - 1b23a42: 459 Implements single click sorting in the table. Marks WfoSortButtons as deprecated.
831
+ - 0efcf20: 315 - Making the sort icon always visible in cases of small table columns.
832
+ - 1b23a42: 459 Implements single click sorting in the table. Marks WfoSortButtons as deprecated.
828
833
 
829
834
  ## 2.2.0
830
835
 
831
836
  ### Minor Changes
832
837
 
833
- - e228d98: Sorts grouped table groups
834
- - d24efe6: 1381 Render mouseover tooltip for the new tables
838
+ - e228d98: Sorts grouped table groups
839
+ - d24efe6: 1381 Render mouseover tooltip for the new tables
835
840
 
836
841
  ### Patch Changes
837
842
 
838
- - 60021b1: Fixes checkboxes without labels
843
+ - 60021b1: Fixes checkboxes without labels
839
844
 
840
845
  ## 2.1.1
841
846
 
842
847
  ### Patch Changes
843
848
 
844
- - 648badb: 1423 Handles not_authenticated errors from graphql endpoints. Adds accessTokenExpiresAt and refreshTokenExpiresAt to WfoSession
845
- - f5138d3: 1406 Added sorting for new tasks and workflow dropdowns
846
- - 223888a: 1363 - Making the title use all space available. Moves the subtitle around to show above the children (action buttons) on small screens
849
+ - 648badb: 1423 Handles not_authenticated errors from graphql endpoints. Adds accessTokenExpiresAt and refreshTokenExpiresAt to WfoSession
850
+ - f5138d3: 1406 Added sorting for new tasks and workflow dropdowns
851
+ - 223888a: 1363 - Making the title use all space available. Moves the subtitle around to show above the children (action buttons) on small screens
847
852
 
848
853
  ## 2.1.0
849
854
 
850
855
  ### Minor Changes
851
856
 
852
- - fb2cca8: 1376 Adds inline note edit component
853
- - 93e1926: 1363 Consistent header spacings on all pages
854
- - 72007aa: 1395 Fixes sorting in the related subscriptions table
857
+ - fb2cca8: 1376 Adds inline note edit component
858
+ - 93e1926: 1363 Consistent header spacings on all pages
859
+ - 72007aa: 1395 Fixes sorting in the related subscriptions table
855
860
 
856
861
  ### Patch Changes
857
862
 
858
- - 851eb96: 1393 Fix workflow dropdown not refreshed after subscription is set in sync
863
+ - 851eb96: 1393 Fix workflow dropdown not refreshed after subscription is set in sync
859
864
 
860
865
  ## 2.0.0
861
866
 
862
867
  ### Major Changes
863
868
 
864
- - 7991a97: 1384 - (Breaking change) - Replaces WfoBasicTable and WfoTableWithFilter with WfoTable and WfoAdvancedTable. Both have slightly different interfaces compared with the previous components
869
+ - 7991a97: 1384 - (Breaking change) - Replaces WfoBasicTable and WfoTableWithFilter with WfoTable and WfoAdvancedTable. Both have slightly different interfaces compared with the previous components
865
870
 
866
871
  ### Minor Changes
867
872
 
868
- - ca01308: Refactor WfoSubscriptionGeneral, use WfoSubscriptionDetailSection in forms
869
- - 0041a7c: 699, 1370 - Fix and update product block view
873
+ - ca01308: Refactor WfoSubscriptionGeneral, use WfoSubscriptionDetailSection in forms
874
+ - 0041a7c: 699, 1370 - Fix and update product block view
870
875
 
871
876
  ### Patch Changes
872
877
 
873
- - 94ed80b: "649 Fixed a bug where details were shown based on index instead of unique id of a PB
874
- - 5ce3e1f: 1363 Fixes labels in table settings modal
875
- - 0fe9ad5: 1363 Adds WfoMultilineCell and WfoTruncateCell
876
- - 88c4181: 1378 Add sorting for subscription details workflows tab
878
+ - 94ed80b: "649 Fixed a bug where details were shown based on index instead of unique id of a PB
879
+ - 5ce3e1f: 1363 Fixes labels in table settings modal
880
+ - 0fe9ad5: 1363 Adds WfoMultilineCell and WfoTruncateCell
881
+ - 88c4181: 1378 Add sorting for subscription details workflows tab
877
882
 
878
883
  ## 1.38.2
879
884
 
880
885
  ### Patch Changes
881
886
 
882
- - 414391f: Adjust start task combobox size, so it doesn't hide list items
883
- - 7c6f8b2: Add enum for ids of subscription detail sections
887
+ - 414391f: Adjust start task combobox size, so it doesn't hide list items
888
+ - 7c6f8b2: Add enum for ids of subscription detail sections
884
889
 
885
890
  ## 1.38.1
886
891
 
887
892
  ### Patch Changes
888
893
 
889
- - 702cbdf: Display orchestrator-ui-library version in header
894
+ - 702cbdf: Display orchestrator-ui-library version in header
890
895
 
891
896
  ## 1.38.0
892
897
 
893
898
  ### Minor Changes
894
899
 
895
- - 6f8b708: Added WfoGraphqlErrorsMeta handler, added isLoading to WfoSubscriptionActions, using fragments in some graphql queries, changes required for #1320
896
- - 1318c92: Added open support menu item to context menu
897
- - e46972c: Adds onFocus websocket reconnection if connection is lost
900
+ - 6f8b708: Added WfoGraphqlErrorsMeta handler, added isLoading to WfoSubscriptionActions, using fragments in some graphql queries, changes required for #1320
901
+ - 1318c92: Added open support menu item to context menu
902
+ - e46972c: Adds onFocus websocket reconnection if connection is lost
898
903
 
899
904
  ## 1.37.1
900
905
 
901
906
  ### Patch Changes
902
907
 
903
- - a95a3c7: Changed order of side menu to reflect the importance of the pages in a more logical order
908
+ - a95a3c7: Changed order of side menu to reflect the importance of the pages in a more logical order
904
909
 
905
910
  ## 1.37.0
906
911
 
907
912
  ### Minor Changes
908
913
 
909
- - 4f91f82: Adds submenu higlighting
910
- - 6601919: Adjust submenu hightlighting
911
- - a25dc81: Improve error presentation for WfoTableWithFilter
912
- - d9c18b9: Fixes removing the last item in a list in some cicrumstances
914
+ - 4f91f82: Adds submenu higlighting
915
+ - 6601919: Adjust submenu hightlighting
916
+ - a25dc81: Improve error presentation for WfoTableWithFilter
917
+ - d9c18b9: Fixes removing the last item in a list in some cicrumstances
913
918
 
914
919
  ### Patch Changes
915
920
 
916
- - 2501569: Fixed bug that always showed error on subscription list page, improved function for mapping errors
917
- - 38f7135: 906 Uses isLoading instead of isFetching to render the no-results component. This keeps the table visible when browsing between pages of the paginated table
918
- - 2c6d26d: added WfoIsAllowedToRender around the cache flush component
919
- - 04b1ff7: Added invalidation to subscriptionId query, and loading state for setInSync button
920
- - 60c8947: 1312 Reretrieves ports when the user goes through the same form multiple times. Retrieving on mount keeps the port list up to date.
921
+ - 2501569: Fixed bug that always showed error on subscription list page, improved function for mapping errors
922
+ - 38f7135: 906 Uses isLoading instead of isFetching to render the no-results component. This keeps the table visible when browsing between pages of the paginated table
923
+ - 2c6d26d: added WfoIsAllowedToRender around the cache flush component
924
+ - 04b1ff7: Added invalidation to subscriptionId query, and loading state for setInSync button
925
+ - 60c8947: 1312 Reretrieves ports when the user goes through the same form multiple times. Retrieving on mount keeps the port list up to date.
921
926
 
922
927
  ## 1.36.1
923
928
 
924
929
  ### Patch Changes
925
930
 
926
- - f7571b1: 822 Removes debounce mechanism in the websocket logic
931
+ - f7571b1: 822 Removes debounce mechanism in the websocket logic
927
932
 
928
933
  ## 1.36.0
929
934
 
930
935
  ### Minor Changes
931
936
 
932
- - 5663e2c: Fixes list item delete button
937
+ - 5663e2c: Fixes list item delete button
933
938
 
934
939
  ### Patch Changes
935
940
 
936
- - ef5910a: Removes unavailable untagged port subscriptions from dropdown list
937
- - eed3424: Fix console errors that show when both data and errors are present in wfoGraphqlRequestBaseQuery. Fix name of the function.
938
- - c880f61: 1295 - Partial rollback of changes introduced in PR 1242. These changes broke the functionality to remove a list item
939
- - d23fa2b: 1294 Rollback style-change in list fields
940
- - b1fc20a: Fix no no product/subscription_id prefill when clicking on a workflow breadcrumb by adding query param to link
941
+ - ef5910a: Removes unavailable untagged port subscriptions from dropdown list
942
+ - eed3424: Fix console errors that show when both data and errors are present in wfoGraphqlRequestBaseQuery. Fix name of the function.
943
+ - c880f61: 1295 - Partial rollback of changes introduced in PR 1242. These changes broke the functionality to remove a list item
944
+ - d23fa2b: 1294 Rollback style-change in list fields
945
+ - b1fc20a: Fix no no product/subscription_id prefill when clicking on a workflow breadcrumb by adding query param to link
941
946
 
942
947
  ## 1.35.0
943
948
 
944
949
  ### Minor Changes
945
950
 
946
- - 3a8ba59: Adds hamburger menu
947
- - 86cbc9c: Adds celery worker status card to settings page
951
+ - 3a8ba59: Adds hamburger menu
952
+ - 86cbc9c: Adds celery worker status card to settings page
948
953
 
949
954
  ### Patch Changes
950
955
 
951
- - be2a21d: Fixes typo in constant
952
- - 8afc446: 1252 Fixes the copy icon in the key-value table
953
- - 9be10f0: Removes show all option from pages that cant use it
956
+ - be2a21d: Fixes typo in constant
957
+ - 8afc446: 1252 Fixes the copy icon in the key-value table
958
+ - 9be10f0: Removes show all option from pages that cant use it
954
959
 
955
960
  ## 1.34.0
956
961
 
957
962
  ### Minor Changes
958
963
 
959
- - 6a098f6: WFO GraphQL base query that handles both errors and data returned
964
+ - 6a098f6: WFO GraphQL base query that handles both errors and data returned
960
965
 
961
966
  ## 1.33.0
962
967
 
963
968
  ### Minor Changes
964
969
 
965
- - bd05bd4: Makes productBlocks on service configuration tab scrollable
970
+ - bd05bd4: Makes productBlocks on service configuration tab scrollable
966
971
 
967
972
  ### Patch Changes
968
973
 
969
- - a728dfe: 1168 Exposes toObjectWithSortedKeys util
974
+ - a728dfe: 1168 Exposes toObjectWithSortedKeys util
970
975
 
971
976
  ## 1.32.0
972
977
 
973
978
  ### Minor Changes
974
979
 
975
- - 06f97cc: Updates graphql seperator character
976
- - cf75ff3: Keep uppercase letters if original text in breadcrumb is only uppercase
980
+ - 06f97cc: Updates graphql seperator character
981
+ - cf75ff3: Keep uppercase letters if original text in breadcrumb is only uppercase
977
982
 
978
983
  ### Patch Changes
979
984
 
980
- - 845dce4: Fix form label not visible in SummaryField and TimestampField
981
- - 95862a2: Orders productsblocks in service configuration page better
985
+ - 845dce4: Fix form label not visible in SummaryField and TimestampField
986
+ - 95862a2: Orders productsblocks in service configuration page better
982
987
 
983
988
  ## 1.31.0
984
989
 
985
990
  ### Minor Changes
986
991
 
987
- - 8e2c77c: Updates graphql error code to match backend
992
+ - 8e2c77c: Updates graphql error code to match backend
988
993
 
989
994
  ## 1.30.3
990
995
 
991
996
  ### Patch Changes
992
997
 
993
- - 679ae6c: Fix for vlan field not showing initial value on 2nd page on modify workflow
998
+ - 679ae6c: Fix for vlan field not showing initial value on 2nd page on modify workflow
994
999
 
995
1000
  ## 1.30.2
996
1001
 
997
1002
  ### Patch Changes
998
1003
 
999
- - fe3e991: Fixes websocket connection without authorization
1004
+ - fe3e991: Fixes websocket connection without authorization
1000
1005
 
1001
1006
  ## 1.30.1
1002
1007
 
1003
1008
  ### Patch Changes
1004
1009
 
1005
- - 6f308f9: Fix not logging out when token expires
1010
+ - 6f308f9: Fix not logging out when token expires
1006
1011
 
1007
1012
  ## 1.30.0
1008
1013
 
1009
1014
  ### Minor Changes
1010
1015
 
1011
- - 231230c: Updates most packages to latest version
1016
+ - 231230c: Updates most packages to latest version
1012
1017
 
1013
1018
  ## 1.29.1
1014
1019
 
1015
1020
  ### Patch Changes
1016
1021
 
1017
- - deff75b: Workflow-list and Task-list pages: Keeps old data in table while refreshing data
1022
+ - deff75b: Workflow-list and Task-list pages: Keeps old data in table while refreshing data
1018
1023
 
1019
1024
  ## 1.29.0
1020
1025
 
1021
1026
  ### Minor Changes
1022
1027
 
1023
- - 80f18ae: Fixes npm audit messages
1024
- - 637f8ea: Adds websocket status badge to page title instead of header
1028
+ - 80f18ae: Fixes npm audit messages
1029
+ - 637f8ea: Adds websocket status badge to page title instead of header
1025
1030
 
1026
1031
  ## 1.28.0
1027
1032
 
1028
1033
  ### Minor Changes
1029
1034
 
1030
- - 3444973: added a new table for the nms chassis general tab
1035
+ - 3444973: added a new table for the nms chassis general tab
1031
1036
 
1032
1037
  ## 1.27.1
1033
1038
 
1034
1039
  ### Patch Changes
1035
1040
 
1036
- - 54b537c: Added productType to Workflow option used by LIR prefixes
1041
+ - 54b537c: Added productType to Workflow option used by LIR prefixes
1037
1042
 
1038
1043
  ## 1.27.0
1039
1044
 
1040
1045
  ### Minor Changes
1041
1046
 
1042
- - 0a3877d: Moves side menu toggle from header to breadcrumb
1043
- - bc65670: Orders product blocks in subcription detail tree
1044
- - 8f45591: Improves confirmation dialog on page leave
1045
- - cbfc034: Updates websocket messages to work with new format
1047
+ - 0a3877d: Moves side menu toggle from header to breadcrumb
1048
+ - bc65670: Orders product blocks in subcription detail tree
1049
+ - 8f45591: Improves confirmation dialog on page leave
1050
+ - cbfc034: Updates websocket messages to work with new format
1046
1051
 
1047
1052
  ## 1.26.0
1048
1053
 
1049
1054
  ### Minor Changes
1050
1055
 
1051
- - 3508ff8: Sort product block instance values by field name
1056
+ - 3508ff8: Sort product block instance values by field name
1052
1057
 
1053
1058
  ### Patch Changes
1054
1059
 
1055
- - 257ef6e: Added number type to parseDate function
1060
+ - 257ef6e: Added number type to parseDate function
1056
1061
 
1057
1062
  ## 1.25.0
1058
1063
 
1059
1064
  ### Minor Changes
1060
1065
 
1061
- - 10e542e: Adds websockets responsiveness to process list and processDetails
1062
- - f225422: Resolves external subscription id and name in product block details
1063
- - 47a545b: Adds subscription info to modify workflow start page
1064
- - cd59329: Hides empty productBlock values in subscription detail
1066
+ - 10e542e: Adds websockets responsiveness to process list and processDetails
1067
+ - f225422: Resolves external subscription id and name in product block details
1068
+ - 47a545b: Adds subscription info to modify workflow start page
1069
+ - cd59329: Hides empty productBlock values in subscription detail
1065
1070
 
1066
1071
  ### Patch Changes
1067
1072
 
1068
- - 43bcc3c: Fixes table settings reset
1069
- - 02d39db: Fix pressing back not returning to the form page for submitted forms
1073
+ - 43bcc3c: Fixes table settings reset
1074
+ - 02d39db: Fix pressing back not returning to the form page for submitted forms
1070
1075
 
1071
1076
  ## 1.24.0
1072
1077
 
1073
1078
  ### Minor Changes
1074
1079
 
1075
- - 83fb33d: Adds a reconnect option for the websocket
1076
- - ef169fc: 1108 Adds getEnvironmentVariables helper function that retrieves multiple environment variables and logs warnings in case variables do not exist
1077
- - e4e9b73: Adds better messages for some edge cases
1080
+ - 83fb33d: Adds a reconnect option for the websocket
1081
+ - ef169fc: 1108 Adds getEnvironmentVariables helper function that retrieves multiple environment variables and logs warnings in case variables do not exist
1082
+ - e4e9b73: Adds better messages for some edge cases
1078
1083
 
1079
1084
  ### Patch Changes
1080
1085
 
1081
- - fda8911: Hides more product block items for productblocks outside the current subscription
1082
- - 54e6f9f: Fixed caching issue when switching from Create Node to create Corelink form caused 400 error
1086
+ - fda8911: Hides more product block items for productblocks outside the current subscription
1087
+ - 54e6f9f: Fixed caching issue when switching from Create Node to create Corelink form caused 400 error
1083
1088
 
1084
1089
  ## 1.23.0
1085
1090
 
1086
1091
  ### Minor Changes
1087
1092
 
1088
- - 33240b6: Fixes websockets with authentication
1089
- - b94c618: Added customer with subscription query used by nms
1093
+ - 33240b6: Fixes websockets with authentication
1094
+ - b94c618: Added customer with subscription query used by nms
1090
1095
 
1091
1096
  ### Patch Changes
1092
1097
 
1093
- - 9f18b7c: 1066 VlanField: Only allows to clear the value when the field is enabled
1098
+ - 9f18b7c: 1066 VlanField: Only allows to clear the value when the field is enabled
1094
1099
 
1095
1100
  ## 1.22.0
1096
1101
 
1097
1102
  ### Minor Changes
1098
1103
 
1099
- - f6dc4fb: Replaces subscriptionsWithFilter REST call with a graphQL query
1100
- - d48df6b: Exports WFoUserInputForm
1104
+ - f6dc4fb: Replaces subscriptionsWithFilter REST call with a graphQL query
1105
+ - d48df6b: Exports WFoUserInputForm
1101
1106
 
1102
1107
  ### Patch Changes
1103
1108
 
1104
- - bcfe7de: 916 Exposes menuItemIsAllowed helper function
1105
- - 50e8f68: Fixes signOut modal showing in some cases
1106
- - 6a7264f: 1086 StartPage: Summary card with product counts ignores terminated instances
1107
- - aca21a5: 1085 Filters out current subscription from the related subscriptions list
1109
+ - bcfe7de: 916 Exposes menuItemIsAllowed helper function
1110
+ - 50e8f68: Fixes signOut modal showing in some cases
1111
+ - 6a7264f: 1086 StartPage: Summary card with product counts ignores terminated instances
1112
+ - aca21a5: 1085 Filters out current subscription from the related subscriptions list
1108
1113
 
1109
1114
  ## 1.21.0
1110
1115
 
1111
1116
  ### Minor Changes
1112
1117
 
1113
- - ae0d9a8: Removes some obsolete configuration
1114
- - 560cf74: Adds a different style if a productblock is outside the subscription boundary
1115
- - 5ee68fa: Signs user out when api calls fail because of expired token
1116
- - d4ac80a: Removed axios and react-query dependencies
1118
+ - ae0d9a8: Removes some obsolete configuration
1119
+ - 560cf74: Adds a different style if a productblock is outside the subscription boundary
1120
+ - 5ee68fa: Signs user out when api calls fail because of expired token
1121
+ - d4ac80a: Removed axios and react-query dependencies
1117
1122
 
1118
1123
  ### Patch Changes
1119
1124
 
1120
- - 13d7c6d: Fixes missing aria-labels on icons
1121
- - b9680b8: 626 Applies dark theme to form fields
1125
+ - 13d7c6d: Fixes missing aria-labels on icons
1126
+ - b9680b8: 626 Applies dark theme to form fields
1122
1127
 
1123
1128
  ## 1.20.0
1124
1129
 
1125
1130
  ### Minor Changes
1126
1131
 
1127
- - decb678: Removes obsolete configuration options
1132
+ - decb678: Removes obsolete configuration options
1128
1133
 
1129
1134
  ## 1.19.1
1130
1135
 
1131
1136
  ### Patch Changes
1132
1137
 
1133
- - e1811bc: revert username to old code solution
1138
+ - e1811bc: revert username to old code solution
1134
1139
 
1135
1140
  ## 1.19.0
1136
1141
 
1137
1142
  ### Minor Changes
1138
1143
 
1139
- - 7dc5cf0: Moving axios form fields and fetches to RTK
1144
+ - 7dc5cf0: Moving axios form fields and fetches to RTK
1140
1145
 
1141
1146
  ### Patch Changes
1142
1147
 
1143
- - 213fb25: Uses preferred_username to filter for my-workflows
1144
- - 71fa3bd: 1055 Making OAuth Scopes configurable via Environment Variables
1148
+ - 213fb25: Uses preferred_username to filter for my-workflows
1149
+ - 71fa3bd: 1055 Making OAuth Scopes configurable via Environment Variables
1145
1150
 
1146
1151
  ## 1.18.0
1147
1152
 
1148
1153
  ### Minor Changes
1149
1154
 
1150
- - b8cf381: 626 Tweaks dark theme on detail pages and the settings page
1155
+ - b8cf381: 626 Tweaks dark theme on detail pages and the settings page
1151
1156
 
1152
1157
  ### Patch Changes
1153
1158
 
1154
- - 3888ea9: Adjustment to placeholder translations
1159
+ - 3888ea9: Adjustment to placeholder translations
1155
1160
 
1156
1161
  ## 1.17.0
1157
1162
 
1158
1163
  ### Minor Changes
1159
1164
 
1160
- - 8a32409: 626 - Introduces basic styles to be reused. Updates useWithOrchestratorTheme hook to accept the whole theme object. Applies dark theme for Page Templates, Start page and pages with a filterable table.
1165
+ - 8a32409: 626 - Introduces basic styles to be reused. Updates useWithOrchestratorTheme hook to accept the whole theme object. Applies dark theme for Page Templates, Start page and pages with a filterable table.
1161
1166
 
1162
1167
  ## 1.16.0
1163
1168
 
1164
1169
  ### Minor Changes
1165
1170
 
1166
- - ed6d5c7: Fixes tooltip message on vlan field
1171
+ - ed6d5c7: Fixes tooltip message on vlan field
1167
1172
 
1168
1173
  ### Patch Changes
1169
1174
 
1170
- - 5301916: Added trash icon
1175
+ - 5301916: Added trash icon
1171
1176
 
1172
1177
  ## 1.15.0
1173
1178
 
1174
1179
  ### Minor Changes
1175
1180
 
1176
- - a8c625e: Added workflow information link and env vars for it
1181
+ - a8c625e: Added workflow information link and env vars for it
1177
1182
 
1178
1183
  ## 1.14.2
1179
1184
 
1180
1185
  ### Patch Changes
1181
1186
 
1182
- - 06377ba: Adds prettier output for the "In-use by subscription(s)" on product blocks on subscription details
1183
- - df57566: 799 Exports SummaryCard components and its related subcomponents and types
1187
+ - 06377ba: Adds prettier output for the "In-use by subscription(s)" on product blocks on subscription details
1188
+ - df57566: 799 Exports SummaryCard components and its related subcomponents and types
1184
1189
 
1185
1190
  ## 1.14.1
1186
1191
 
1187
1192
  ### Patch Changes
1188
1193
 
1189
- - d835c16: add retry for processes in waiting state - added new icon to be used …
1194
+ - d835c16: add retry for processes in waiting state - added new icon to be used …
1190
1195
 
1191
1196
  ## 1.14.0
1192
1197
 
1193
1198
  ### Minor Changes
1194
1199
 
1195
- - 5b9d042: Moved form wizards to RTK
1200
+ - 5b9d042: Moved form wizards to RTK
1196
1201
 
1197
1202
  ## 1.13.2
1198
1203
 
1199
1204
  ### Patch Changes
1200
1205
 
1201
- - 43be47b: 565 Added a new summary card listing the 5 latest workflows for the user that is logged in
1202
- - 8b6e73d: 879 Makes SummaryCards on the start page overridable
1206
+ - 43be47b: 565 Added a new summary card listing the 5 latest workflows for the user that is logged in
1207
+ - 8b6e73d: 879 Makes SummaryCards on the start page overridable
1203
1208
 
1204
1209
  ## 1.13.1
1205
1210
 
1206
1211
  ### Patch Changes
1207
1212
 
1208
- - 63ee9c0: 863 Adds title for traceback section on workflow detail page
1213
+ - 63ee9c0: 863 Adds title for traceback section on workflow detail page
1209
1214
 
1210
1215
  ## 1.13.0
1211
1216
 
1212
1217
  ### Minor Changes
1213
1218
 
1214
- - 12d72f9: Ads feature toggles to configuration
1219
+ - 12d72f9: Ads feature toggles to configuration
1215
1220
 
1216
1221
  ### Patch Changes
1217
1222
 
1218
- - abd239c: filter workflows on target
1219
- - 72ee276: 863 Adds Traceback on process detail page
1223
+ - abd239c: filter workflows on target
1224
+ - 72ee276: 863 Adds Traceback on process detail page
1220
1225
 
1221
1226
  ## 1.12.0
1222
1227
 
1223
1228
  ### Minor Changes
1224
1229
 
1225
- - a95a6dc: Updates what the websocket interface is listening to
1230
+ - a95a6dc: Updates what the websocket interface is listening to
1226
1231
 
1227
1232
  ## 1.11.0
1228
1233
 
1229
1234
  ### Minor Changes
1230
1235
 
1231
- - 38b0c66: 333 - Adds override option for General tab on the SubscriptionDetail page and adds Customer descriptions field
1236
+ - 38b0c66: 333 - Adds override option for General tab on the SubscriptionDetail page and adds Customer descriptions field
1232
1237
 
1233
1238
  ### Patch Changes
1234
1239
 
1235
- - 9eca836: 983 Improvements in exporting data from the metadata pages
1236
- - df1a9b6: Hide filter option on related subscriptions table
1240
+ - 9eca836: 983 Improvements in exporting data from the metadata pages
1241
+ - df1a9b6: Hide filter option on related subscriptions table
1237
1242
 
1238
1243
  ## 1.10.0
1239
1244
 
1240
1245
  ### Minor Changes
1241
1246
 
1242
- - 04ef921: Deprecate apiclient version of UserInputFormWizard
1247
+ - 04ef921: Deprecate apiclient version of UserInputFormWizard
1243
1248
 
1244
1249
  ## 1.9.0
1245
1250
 
1246
1251
  ### Minor Changes
1247
1252
 
1248
- - a9f3806: Improves sideBar navigation
1253
+ - a9f3806: Improves sideBar navigation
1249
1254
 
1250
1255
  ## 1.8.0
1251
1256
 
1252
1257
  ### Minor Changes
1253
1258
 
1254
- - 752b3fd: 102 Adds context provider and hook to override values in subscription detail product blocks
1259
+ - 752b3fd: 102 Adds context provider and hook to override values in subscription detail product blocks
1255
1260
 
1256
1261
  ## 1.7.0
1257
1262
 
1258
1263
  ### Minor Changes
1259
1264
 
1260
- - d61106d: Release of the metadata task page
1265
+ - d61106d: Release of the metadata task page
1261
1266
 
1262
1267
  ## 1.6.2
1263
1268
 
1264
1269
  ### Patch Changes
1265
1270
 
1266
- - 0bf6f82: New metadata taskpage with rtk
1271
+ - 0bf6f82: New metadata taskpage with rtk
1267
1272
 
1268
1273
  ## 1.6.1
1269
1274
 
1270
1275
  ### Patch Changes
1271
1276
 
1272
- - 3cfd9f5: Fixes error in exported values
1273
- - 5807458: 332 Subscription detail page: hides metadata section when there is no data available
1277
+ - 3cfd9f5: Fixes error in exported values
1278
+ - 5807458: 332 Subscription detail page: hides metadata section when there is no data available
1274
1279
 
1275
1280
  ## 1.6.0
1276
1281
 
1277
1282
  ### Minor Changes
1278
1283
 
1279
- - bf4698e: 332 Adds subscription metadata to the subscription list page and subscription detail page
1284
+ - bf4698e: 332 Adds subscription metadata to the subscription list page and subscription detail page
1280
1285
 
1281
1286
  ### Patch Changes
1282
1287
 
1283
- - e3874e0: Changed overlay icon colour of skipped step in workflow/task
1284
- Badge style to product name column in metadata table products
1285
- Some features owner subscription presentation & hide pb-sub-instance-id
1286
- Changed default table row settings
1287
- - 29c6459: Added external link icon
1288
+ - e3874e0: Changed overlay icon colour of skipped step in workflow/task
1289
+ Badge style to product name column in metadata table products
1290
+ Some features owner subscription presentation & hide pb-sub-instance-id
1291
+ Changed default table row settings
1292
+ - 29c6459: Added external link icon
1288
1293
 
1289
1294
  ## 1.5.0
1290
1295
 
1291
1296
  ### Minor Changes
1292
1297
 
1293
- - 9662041: 638 Moves SURF specific form fields to deprecated folder
1294
- - c122786: Adds README files to be displayed on NPM. Adds Apache 2.0 license.
1298
+ - 9662041: 638 Moves SURF specific form fields to deprecated folder
1299
+ - c122786: Adds README files to be displayed on NPM. Adds Apache 2.0 license.
1295
1300
 
1296
1301
  ### Patch Changes
1297
1302
 
1298
- - 78a0b55: 812 Fixed object mapping from products rest call
1299
- - 1b3a9f0: Allows sending null as a value when removing existing values
1300
- - 9cf620e: 919 Fix port dropdown after changing the node in a Create Service Port workflow
1301
- - c5c73da: Added isDisabled prop to WfoDropdownButton, small styles adjustment for keyColumn
1303
+ - 78a0b55: 812 Fixed object mapping from products rest call
1304
+ - 1b3a9f0: Allows sending null as a value when removing existing values
1305
+ - 9cf620e: 919 Fix port dropdown after changing the node in a Create Service Port workflow
1306
+ - c5c73da: Added isDisabled prop to WfoDropdownButton, small styles adjustment for keyColumn
1302
1307
 
1303
1308
  ## 1.4.0.
1304
1309
 
1305
1310
  ### Minor Changes
1306
1311
 
1307
- - 62b356f: Moves product blocks graphql query to RTK client
1308
- - 0e5c8f3: Moves subscriptionList query to RTK client
1309
- - 92ce67b: Moves subscriptionDetail to RTK client
1310
- - 3f68b52: Moves subscriptions dropdown options to RTK client
1311
- - d7b1ce2: Moves products and productsSummary to RTK client
1312
- - 0b4da83: Moves resourceTypes metadata query to RTK client
1313
- - 6ee952f: Moves relatedSubscriptions RTK client
1314
- - af1c86b: Moves processList summary queries to RTK client
1315
- - 70efdf5: Moves getting startOptions to RTK client
1316
- - 0d10af8: MOves get metadata workflows to RTK client
1312
+ - 62b356f: Moves product blocks graphql query to RTK client
1313
+ - 0e5c8f3: Moves subscriptionList query to RTK client
1314
+ - 92ce67b: Moves subscriptionDetail to RTK client
1315
+ - 3f68b52: Moves subscriptions dropdown options to RTK client
1316
+ - d7b1ce2: Moves products and productsSummary to RTK client
1317
+ - 0b4da83: Moves resourceTypes metadata query to RTK client
1318
+ - 6ee952f: Moves relatedSubscriptions RTK client
1319
+ - af1c86b: Moves processList summary queries to RTK client
1320
+ - 70efdf5: Moves getting startOptions to RTK client
1321
+ - 0d10af8: MOves get metadata workflows to RTK client
1317
1322
 
1318
1323
  ## 1.3.1
1319
1324
 
1320
1325
  ### Patch Changes
1321
1326
 
1322
- - 043b943: Moves processSteps query to RTK client
1323
- - b511e4a: Fixes bug that occurs in some create workflows
1327
+ - 043b943: Moves processSteps query to RTK client
1328
+ - b511e4a: Fixes bug that occurs in some create workflows
1324
1329
 
1325
1330
  ## 1.3.0
1326
1331
 
1327
1332
  ### Minor Changes
1328
1333
 
1329
- - 1ab3e59: Adds set in sync action to subscription detail page
1334
+ - 1ab3e59: Adds set in sync action to subscription detail page
1330
1335
 
1331
1336
  ## 1.2.0
1332
1337
 
1333
1338
  ### Minor Changes
1334
1339
 
1335
- - 857b6de: Added option to override the baseQuery with custom baseQuery in RTK client
1340
+ - 857b6de: Added option to override the baseQuery with custom baseQuery in RTK client
1336
1341
 
1337
1342
  ## 1.1.0
1338
1343
 
1339
1344
  ### Minor Changes
1340
1345
 
1341
- - 2d0c99c: 840 Updates policy resources
1346
+ - 2d0c99c: 840 Updates policy resources
1342
1347
 
1343
1348
  ## 1.0.0
1344
1349
 
1345
1350
  ### Major Changes
1346
1351
 
1347
- - 507399b: R1 Release
1352
+ - 507399b: R1 Release
1348
1353
 
1349
1354
  ## 0.13.1
1350
1355
 
1351
1356
  ### Patch Changes
1352
1357
 
1353
- - 9155f40: Added isDisabled prop to WfoSubmitModal
1358
+ - 9155f40: Added isDisabled prop to WfoSubmitModal
1354
1359
 
1355
1360
  ## 0.13.0
1356
1361
 
1357
1362
  ### Minor Changes
1358
1363
 
1359
- - 89835a4: 702 - Moves processDetail to rtkquery
1364
+ - 89835a4: 702 - Moves processDetail to rtkquery
1360
1365
 
1361
1366
  ### Patch Changes
1362
1367
 
1363
- - e56c142: 760 remove duplicate product tags on metadata workflow page
1368
+ - e56c142: 760 remove duplicate product tags on metadata workflow page
1364
1369
 
1365
1370
  ## 0.12.0
1366
1371
 
1367
1372
  ### Minor Changes
1368
1373
 
1369
- - 5efb8b0: #821 Reverted FORMS_ENPOINT string, removed cimStartForm, added new string utils
1370
- #833 Small change to useQueryWithFetch for the default sending level
1374
+ - 5efb8b0: #821 Reverted FORMS_ENPOINT string, removed cimStartForm, added new string utils
1375
+ #833 Small change to useQueryWithFetch for the default sending level
1371
1376
 
1372
1377
  ## 0.11.1
1373
1378
 
1374
1379
  ### Patch Changes
1375
1380
 
1376
- - e83d9aa: new summary card out-of-sync subscriptions
1377
- - 7ff8936: Applies policies in several components
1381
+ - e83d9aa: new summary card out-of-sync subscriptions
1382
+ - 7ff8936: Applies policies in several components
1378
1383
 
1379
1384
  ## 0.11.0
1380
1385
 
1381
1386
  ### Minor Changes
1382
1387
 
1383
- - 6332355: Adds dark theme behind feature toggle
1384
- - e808db4: Add a websocket that can be called to clear cache
1388
+ - 6332355: Adds dark theme behind feature toggle
1389
+ - e808db4: Add a websocket that can be called to clear cache
1385
1390
 
1386
1391
  ### Patch Changes
1387
1392
 
1388
- - c3da8a6: add customer abbrev to customer drop down string in form field
1389
- - 05c9acc: add status and insync badge to subscription detail page
1393
+ - c3da8a6: add customer abbrev to customer drop down string in form field
1394
+ - 05c9acc: add status and insync badge to subscription detail page
1390
1395
 
1391
1396
  ## 0.10.0
1392
1397
 
1393
1398
  ### Minor Changes
1394
1399
 
1395
- - 18da717: 460 Introduces a usePolicy hook to help with conditionally rendering of components. The useWfoSession hook can be used to identify the user
1400
+ - 18da717: 460 Introduces a usePolicy hook to help with conditionally rendering of components. The useWfoSession hook can be used to identify the user
1396
1401
 
1397
1402
  ## 0.9.1
1398
1403
 
1399
1404
  ### Patch Changes
1400
1405
 
1401
- - 1578b99: NPM Audit fix for IP package
1406
+ - 1578b99: NPM Audit fix for IP package
1402
1407
 
1403
1408
  ## 0.9.0
1404
1409
 
1405
1410
  ### Minor Changes
1406
1411
 
1407
- - 8675375: Fixes a SelectField bug
1408
- - c8c6e10: Update npm dependency versions
1412
+ - 8675375: Fixes a SelectField bug
1413
+ - c8c6e10: Update npm dependency versions
1409
1414
 
1410
1415
  ### Patch Changes
1411
1416
 
1412
- - 4bee6a1: Fixes crashes caused by uniforms connectField function
1413
- - 56d5e6e: Trigger the changesets action
1417
+ - 4bee6a1: Fixes crashes caused by uniforms connectField function
1418
+ - 56d5e6e: Trigger the changesets action
1414
1419
 
1415
1420
  ## 0.8.1
1416
1421
 
1417
1422
  ### Patch Changes
1418
1423
 
1419
- - 5224527: 721: Fix customer select not being disabled
1420
- - 16f32ad: 651: Fix incorrect port select options
1421
- - 84a75b7: Change service port select label when root subscription instance has title
1424
+ - 5224527: 721: Fix customer select not being disabled
1425
+ - 16f32ad: 651: Fix incorrect port select options
1426
+ - 84a75b7: Change service port select label when root subscription instance has title
1422
1427
 
1423
1428
  ## 0.8.0
1424
1429
 
1425
1430
  ### Minor Changes
1426
1431
 
1427
- - 8eded72: Required for issue 573 Add restart open relate
1432
+ - 8eded72: Required for issue 573 Add restart open relate
1428
1433
 
1429
1434
  ### Patch Changes
1430
1435
 
1431
- - 534ecf4: 685: Fix form reloading and resetting inputs
1436
+ - 534ecf4: 685: Fix form reloading and resetting inputs
1432
1437
 
1433
1438
  ## 0.7.0
1434
1439
 
1435
1440
  ### Minor Changes
1436
1441
 
1437
- - 5d20aec: Adds accesToken to RTK Query clients
1442
+ - 5d20aec: Adds accesToken to RTK Query clients
1438
1443
 
1439
1444
  ## 0.6.0
1440
1445
 
1441
1446
  ### Minor Changes
1442
1447
 
1443
- - d44c55c: Fix ProcessDetailQuery by removing form subfields
1444
- - !WARNING: this version requires backend version 2.1.0.
1445
- - It changes the graphql processes.page.form to a JSON type, so there are no subfields to request and will respond with an error.
1448
+ - d44c55c: Fix ProcessDetailQuery by removing form subfields
1449
+ - !WARNING: this version requires backend version 2.1.0.
1450
+ - It changes the graphql processes.page.form to a JSON type, so there are no subfields to request and will respond with an error.
1446
1451
 
1447
1452
  ## 0.5.2
1448
1453
 
1449
1454
  ### Patch Changes
1450
1455
 
1451
- - e88410d: Update form fields to remove 'organisation' naming
1452
- - 2310074: 723: Fix SummaryField .includes is not a function
1456
+ - e88410d: Update form fields to remove 'organisation' naming
1457
+ - 2310074: 723: Fix SummaryField .includes is not a function
1453
1458
 
1454
1459
  ## 0.5.1
1455
1460
 
1456
1461
  ### Patch Changes
1457
1462
 
1458
- - dac8fb2: update date presentation and move getDate to utils
1459
- - e3b847a: Adds error boundary at the top level of the app
1460
- - 926d47b: Table enhancements: Introduces a loading-placeholder and a no-data-placeholder. Prevents showing previous page results while loading new data.
1463
+ - dac8fb2: update date presentation and move getDate to utils
1464
+ - e3b847a: Adds error boundary at the top level of the app
1465
+ - 926d47b: Table enhancements: Introduces a loading-placeholder and a no-data-placeholder. Prevents showing previous page results while loading new data.
1461
1466
 
1462
1467
  ## 0.5.0
1463
1468
 
1464
1469
  ### Minor Changes
1465
1470
 
1466
- - 267a753: Adding RTK and RTK Query for some endpoints and store data
1471
+ - 267a753: Adding RTK and RTK Query for some endpoints and store data
1467
1472
 
1468
1473
  ## 0.4.0
1469
1474
 
1470
1475
  ### Minor Changes
1471
1476
 
1472
- - cdc668f: 544 - Export functionality for the tables
1477
+ - cdc668f: 544 - Export functionality for the tables
1473
1478
 
1474
1479
  ### Patch Changes
1475
1480
 
1476
- - e8af27c: Process table - each column width in absolute or %
1477
- - e9af205: change order tabs sub-detail-page
1478
- - 996fc9f: added border radius to wfo tree and empty PB card placeholder
1479
- - 41e0cc9: added copyright to sidebar
1481
+ - e8af27c: Process table - each column width in absolute or %
1482
+ - e9af205: change order tabs sub-detail-page
1483
+ - 996fc9f: added border radius to wfo tree and empty PB card placeholder
1484
+ - 41e0cc9: added copyright to sidebar
1480
1485
 
1481
1486
  ## 0.3.1
1482
1487
 
1483
1488
  ### Patch Changes
1484
1489
 
1485
- - d824a58: fix uuid in breadcrumb
1486
- - cb3142a: - expand the root product block card by default
1487
- - change tree icon of root product block
1488
- - open other subscription detail page opens in new tab
1489
- - use title of root product block in tree like the other product blocks
1490
- - e6aaef7: 598 Fixes invisible email in step list
1490
+ - d824a58: fix uuid in breadcrumb
1491
+ - cb3142a: - expand the root product block card by default
1492
+ - change tree icon of root product block
1493
+ - open other subscription detail page opens in new tab
1494
+ - use title of root product block in tree like the other product blocks
1495
+ - e6aaef7: 598 Fixes invisible email in step list
1491
1496
 
1492
1497
  ## 0.3.0
1493
1498
 
1494
1499
  ### Minor Changes
1495
1500
 
1496
- - ef5eace: Updates all major dependencies including Typescript to version 5 and NextJS to version 14
1501
+ - ef5eace: Updates all major dependencies including Typescript to version 5 and NextJS to version 14
1497
1502
 
1498
1503
  ## 0.2.7
1499
1504
 
1500
1505
  ### Patch Changes
1501
1506
 
1502
- - ce48846: Updates linting rules to ban all console statements except console.error()
1507
+ - ce48846: Updates linting rules to ban all console statements except console.error()
1503
1508
 
1504
1509
  ## 0.2.6
1505
1510
 
1506
1511
  ### Patch Changes
1507
1512
 
1508
- - 6597ac1: Test release after adding absolute imports (issue 414)
1513
+ - 6597ac1: Test release after adding absolute imports (issue 414)
1509
1514
 
1510
1515
  ## 0.2.5
1511
1516
 
1512
1517
  ### Patch Changes
1513
1518
 
1514
- - 6d680f6: Test release before adding absolute imports (issue 414)
1519
+ - 6d680f6: Test release before adding absolute imports (issue 414)
1515
1520
 
1516
1521
  ## 0.2.4
1517
1522
 
1518
1523
  ### Patch Changes
1519
1524
 
1520
- - 38d1229: Fixed handling navigation for pages with sidebar submenu items
1525
+ - 38d1229: Fixed handling navigation for pages with sidebar submenu items
1521
1526
 
1522
1527
  ## 0.2.3
1523
1528
 
1524
1529
  ### Patch Changes
1525
1530
 
1526
- - 577825a: Adds title to process list page
1531
+ - 577825a: Adds title to process list page
1527
1532
 
1528
1533
  ## 0.2.2
1529
1534
 
1530
1535
  ### Patch Changes
1531
1536
 
1532
- - f49382c: Updates metadata pages and adds initial version of process-list page
1537
+ - f49382c: Updates metadata pages and adds initial version of process-list page
1533
1538
 
1534
1539
  ## 0.2.1
1535
1540
 
1536
1541
  ### Patch Changes
1537
1542
 
1538
- - 3533525: Updated TS-Config to improve developer experience
1543
+ - 3533525: Updated TS-Config to improve developer experience
1539
1544
 
1540
1545
  ## 0.2.0
1541
1546
 
1542
1547
  ### Minor Changes
1543
1548
 
1544
- - 6c4cb21: Added translation setup and next-inl configuration. Translation strings are now available when using the useTranslations hook. For more on how to add translations refer to apps/wfo-ui/translations/README.md
1549
+ - 6c4cb21: Added translation setup and next-inl configuration. Translation strings are now available when using the useTranslations hook. For more on how to add translations refer to apps/wfo-ui/translations/README.md
1545
1550
 
1546
1551
  ## 0.1.2
1547
1552
 
1548
1553
  ### Patch Changes
1549
1554
 
1550
- - 0cef169: Splitted WFO in separate packages
1555
+ - 0cef169: Splitted WFO in separate packages
1551
1556
 
1552
1557
  ## 0.1.1
1553
1558
 
1554
1559
  ### Patch Changes
1555
1560
 
1556
- - Converted tsconfig and eslint to standalone NPM package
1561
+ - Converted tsconfig and eslint to standalone NPM package
1557
1562
 
1558
1563
  ## 0.1.0
1559
1564
 
1560
1565
  ### Minor Changes
1561
1566
 
1562
- - c597fc5: Switched to tsup build in turborepo
1567
+ - c597fc5: Switched to tsup build in turborepo