@orchestrator-ui/orchestrator-ui-components 7.4.0 → 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 +426 -415
  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 +3259 -7616
  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,1556 +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
+
9
+ ## 7.4.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 83904e8: Fixes datepicker field matching
14
+
3
15
  ## 7.4.0
4
16
 
5
17
  ### Minor Changes
6
18
 
7
- - 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
8
20
 
9
21
  ## 7.3.1
10
22
 
11
23
  ### Patch Changes
12
24
 
13
- - a092d98: Changes how colorMode state is passed up
25
+ - a092d98: Changes how colorMode state is passed up
14
26
 
15
27
  ## 7.3.0
16
28
 
17
29
  ### Minor Changes
18
30
 
19
- - 67ce439: Adds create scheduled task form
31
+ - 67ce439: Adds create scheduled task form
20
32
 
21
33
  ## 7.2.1
22
34
 
23
35
  ### Patch Changes
24
36
 
25
- - a976e7c: Update Elastic UI to v111.0.0
26
- - 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
27
39
 
28
40
  ## 7.2.0
29
41
 
30
42
  ### Minor Changes
31
43
 
32
- - 31f9ab1: Adds metadata scheduled tasks page
44
+ - 31f9ab1: Adds metadata scheduled tasks page
33
45
 
34
46
  ## 7.1.1
35
47
 
36
48
  ### Patch Changes
37
49
 
38
- - cca7628: Updates pydantic-forms to version 1.0.1
50
+ - cca7628: Updates pydantic-forms to version 1.0.1
39
51
 
40
52
  ## 7.1.0
41
53
 
42
54
  ### Minor Changes
43
55
 
44
- - f47c7ba: Adds react-virtual and virualized WfoTable feature
56
+ - f47c7ba: Adds react-virtual and virualized WfoTable feature
45
57
 
46
58
  ## 7.0.1
47
59
 
48
60
  ### Patch Changes
49
61
 
50
- - 4cdef68: 2361 Make it possible as prepend field to be cleared
51
- - fe2e8d0: 2355 Enable Ctrl/Cmd + Arrows to control form pages
52
- - bc36592: Add option to overwrite the retriever type in the FE
53
- - 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
54
66
 
55
67
  ## 7.0.0
56
68
 
57
69
  ### Major Changes
58
70
 
59
- - 87f9e22: Removes uniforms in favor of PydanticForms form handling library
71
+ - 87f9e22: Removes uniforms in favor of PydanticForms form handling library
60
72
 
61
73
  ### Patch Changes
62
74
 
63
- - ba5bafc: Update to latest pydantic-forms version
75
+ - ba5bafc: Update to latest pydantic-forms version
64
76
 
65
77
  ## 6.8.0
66
78
 
67
79
  ### Minor Changes
68
80
 
69
- - 1b94ebc: 2160 Add filter for create worklows combobox and override filters
81
+ - 1b94ebc: 2160 Add filter for create worklows combobox and override filters
70
82
 
71
83
  ## 6.7.8
72
84
 
73
85
  ### Patch Changes
74
86
 
75
- - 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
76
88
 
77
89
  ## 6.7.7
78
90
 
79
91
  ### Patch Changes
80
92
 
81
- - 5aa6612: Updates to latest version of pydantic forms
93
+ - 5aa6612: Updates to latest version of pydantic forms
82
94
 
83
95
  ## 6.7.6
84
96
 
85
97
  ### Patch Changes
86
98
 
87
- - 2125cee: 2246 Show 'Start task' button instead of 'Start workflow' for tasks + custom button texts and colors
88
- - 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
89
101
 
90
102
  ## 6.7.5
91
103
 
92
104
  ### Patch Changes
93
105
 
94
- - 738ff82: 2039 Callout component for pydantic-forms
95
- - 12de731: 2256 Fix tooltip visible after clicking
96
- - 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
97
109
 
98
110
  ## 6.7.4
99
111
 
100
112
  ### Patch Changes
101
113
 
102
- - 76a20fb: Update pydantic-forms to 0.10.0
114
+ - 76a20fb: Update pydantic-forms to 0.10.0
103
115
 
104
116
  ## 6.7.3
105
117
 
106
118
  ### Patch Changes
107
119
 
108
- - 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
109
121
 
110
122
  ## 6.7.2
111
123
 
112
124
  ### Patch Changes
113
125
 
114
- - 7e81964: Switch to Trusted publishers
126
+ - 7e81964: Switch to Trusted publishers
115
127
 
116
128
  ## 6.7.1
117
129
 
118
130
  ### Patch Changes
119
131
 
120
- - d85e90e: Reverts toastMessages in subscription list actions
132
+ - d85e90e: Reverts toastMessages in subscription list actions
121
133
 
122
134
  ## 6.7.0
123
135
 
124
136
  ### Minor Changes
125
137
 
126
- - 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.
127
139
 
128
140
  ### Patch Changes
129
141
 
130
- - 4fbc794: Updates to latest pydantic forms version. Fixes double onSuccess calls
142
+ - 4fbc794: Updates to latest pydantic forms version. Fixes double onSuccess calls
131
143
 
132
144
  ## 6.6.1
133
145
 
134
146
  ### Patch Changes
135
147
 
136
- - 91c8d8c: Updates to latest pydantic forms version
148
+ - 91c8d8c: Updates to latest pydantic forms version
137
149
 
138
150
  ## 6.6.0
139
151
 
140
152
  ### Minor Changes
141
153
 
142
- - 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
143
155
 
144
156
  ### Patch Changes
145
157
 
146
- - aa16445: 2213 Remove border, fix opacity for WfoReactSelect
147
- - f9ca18f: Improves subscription list menu actions
148
- - 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
149
161
 
150
162
  ## 6.5.0
151
163
 
152
164
  ### Minor Changes
153
165
 
154
- - 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
155
167
 
156
168
  ## 6.4.0
157
169
 
158
170
  ### Minor Changes
159
171
 
160
- - 59cab89: Adds WfoLogoSpinner to use as initial loading component
172
+ - 59cab89: Adds WfoLogoSpinner to use as initial loading component
161
173
 
162
174
  ## 6.3.2
163
175
 
164
176
  ### Patch Changes
165
177
 
166
- - ecd6594: Fixes starting tasks with pydantic forms component
178
+ - ecd6594: Fixes starting tasks with pydantic forms component
167
179
 
168
180
  ## 6.3.1
169
181
 
170
182
  ### Patch Changes
171
183
 
172
- - 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
173
185
 
174
186
  ## 6.3.0
175
187
 
176
188
  ### Minor Changes
177
189
 
178
- - eb164ba: 2189 Add set in-sync to the subscription list page
190
+ - eb164ba: 2189 Add set in-sync to the subscription list page
179
191
 
180
192
  ### Patch Changes
181
193
 
182
- - 0fbdf28: Fixes bug in Summaryfield
183
- - fb3e48c: Adds pydantic forms feature toggle
194
+ - 0fbdf28: Fixes bug in Summaryfield
195
+ - fb3e48c: Adds pydantic forms feature toggle
184
196
 
185
197
  ## 6.2.1
186
198
 
187
199
  ### Patch Changes
188
200
 
189
- - db5c529: Fixes monaco loader to version 1.5.0
201
+ - db5c529: Fixes monaco loader to version 1.5.0
190
202
 
191
203
  ## 6.2.0
192
204
 
193
205
  ### Minor Changes
194
206
 
195
- - 06a3114: Use monaco-editor in WfoJsonCodeBlock
207
+ - 06a3114: Use monaco-editor in WfoJsonCodeBlock
196
208
 
197
209
  ### Patch Changes
198
210
 
199
- - 94955b0: 1951 Added link for workflow in toast
211
+ - 94955b0: 1951 Added link for workflow in toast
200
212
 
201
213
  ## 6.1.1
202
214
 
203
215
  ### Patch Changes
204
216
 
205
- - ad4727a: Remove space trimming and special character removal from the searchbar.
217
+ - ad4727a: Remove space trimming and special character removal from the searchbar.
206
218
 
207
219
  ## 6.1.0
208
220
 
209
221
  ### Minor Changes
210
222
 
211
- - 8963f5c: Added toOptionalObjectProperty function, new compact pencil icon
223
+ - 8963f5c: Added toOptionalObjectProperty function, new compact pencil icon
212
224
 
213
225
  ## 6.0.0
214
226
 
215
227
  ### Major Changes
216
228
 
217
- - 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.
218
230
 
219
231
  ## 5.9.0
220
232
 
221
233
  ### Minor Changes
222
234
 
223
- - e732016: Updates depencencies to latest minor versions
235
+ - e732016: Updates depencencies to latest minor versions
224
236
 
225
237
  ## 5.8.1
226
238
 
227
239
  ### Patch Changes
228
240
 
229
- - dde87d4: Fixes removing values in WFOReactSelect element
230
- - 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
231
243
 
232
244
  ## 5.8.0
233
245
 
234
246
  ### Minor Changes
235
247
 
236
- - 982df15: 2081 Add support for workflows with target Reconcile
248
+ - 982df15: 2081 Add support for workflows with target Reconcile
237
249
 
238
250
  ## 5.7.1
239
251
 
240
252
  ### Patch Changes
241
253
 
242
- - ae225ce: Updates to latest version of pydantic-forms-ui
243
- - 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
244
256
 
245
257
  ## 5.7.0
246
258
 
247
259
  ### Minor Changes
248
260
 
249
- - 3fab97c: Updates to latest pydantic forms version
261
+ - 3fab97c: Updates to latest pydantic forms version
250
262
 
251
263
  ### Patch Changes
252
264
 
253
- - 370492a: Allows task to start with pydantic forms
254
- - 38e73a8: Fix link to settings-overview documentation
265
+ - 370492a: Allows task to start with pydantic forms
266
+ - 38e73a8: Fix link to settings-overview documentation
255
267
 
256
268
  ## 5.6.1
257
269
 
258
270
  ### Patch Changes
259
271
 
260
- - 9b9f2fa: Updates to latest version of pydantic forms
272
+ - 9b9f2fa: Updates to latest version of pydantic forms
261
273
 
262
274
  ## 5.6.0
263
275
 
264
276
  ### Minor Changes
265
277
 
266
- - bb0264e: Migrate WfoStepForm to pydantic forms
278
+ - bb0264e: Migrate WfoStepForm to pydantic forms
267
279
 
268
280
  ### Patch Changes
269
281
 
270
- - 516239f: Applies errorStyle to pydantic forms root errors
282
+ - 516239f: Applies errorStyle to pydantic forms root errors
271
283
 
272
284
  ## 5.5.3
273
285
 
274
286
  ### Patch Changes
275
287
 
276
- - 19a7e45: Updates to pydantic form version 0.8.0
288
+ - 19a7e45: Updates to pydantic form version 0.8.0
277
289
 
278
290
  ## 5.5.2
279
291
 
280
292
  ### Patch Changes
281
293
 
282
- - 65c254d: Fix WfoSummary label styles
283
- - b4c8635: added translation aostatus menu, and made re-try all tasks consistent
284
- - 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
285
297
 
286
298
  ## 5.5.1
287
299
 
288
300
  ### Patch Changes
289
301
 
290
- - 0c7ec24: Introduces some components for pydantic forms
302
+ - 0c7ec24: Introduces some components for pydantic forms
291
303
 
292
304
  ## 5.5.0
293
305
 
294
306
  ### Minor Changes
295
307
 
296
- - 5b2d095: Fix RenderFormErrors to not display 0, added some translations
308
+ - 5b2d095: Fix RenderFormErrors to not display 0, added some translations
297
309
 
298
310
  ## 5.4.0
299
311
 
300
312
  ### Minor Changes
301
313
 
302
- - fb634ec: Improve Process Detail step timestamp using step started and completed datetime
303
- - 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
304
316
 
305
317
  ### Patch Changes
306
318
 
307
- - b604a46: Updates to latest version of pydantic forms
308
- - 796d299: Fixes for pydanticforms integration
319
+ - b604a46: Updates to latest version of pydantic forms
320
+ - 796d299: Fixes for pydanticforms integration
309
321
 
310
322
  ## 5.3.4
311
323
 
312
324
  ### Patch Changes
313
325
 
314
- - b2479fe: Always allows submit button on pydantic-forms
326
+ - b2479fe: Always allows submit button on pydantic-forms
315
327
 
316
328
  ## 5.3.3
317
329
 
318
330
  ### Patch Changes
319
331
 
320
- - ca2460b: Updates to latest pydantic-form version
332
+ - ca2460b: Updates to latest pydantic-form version
321
333
 
322
334
  ## 5.3.2
323
335
 
324
336
  ### Patch Changes
325
337
 
326
- - 004fde2: 1935 Fixes style in WfoContentHeader. This makes the dropdown menu attached to the action button again
327
- - 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.
328
- - 77f941d: WfoArrayField, WfoObjectField, fix some import and types for the forms
329
- - 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
330
342
 
331
343
  ## 5.3.1
332
344
 
333
345
  ### Patch Changes
334
346
 
335
- - cd00d6f: 1953 Fix - Process detail page: left align of subscription descriptions in the related subscriptions cell
336
- - 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
337
349
 
338
350
  ## 5.3.0
339
351
 
340
352
  ### Minor Changes
341
353
 
342
- - e3add00: 2021 Add new note field attributes
354
+ - e3add00: 2021 Add new note field attributes
343
355
 
344
356
  ## 5.2.4
345
357
 
346
358
  ### Patch Changes
347
359
 
348
- - 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
349
361
 
350
362
  ## 5.2.3
351
363
 
352
364
  ### Patch Changes
353
365
 
354
- - c3e62c9: 2001 fix filter of summarycard
366
+ - c3e62c9: 2001 fix filter of summarycard
355
367
 
356
368
  ## 5.2.2
357
369
 
358
370
  ### Patch Changes
359
371
 
360
- - 5fcb0c8: Fix regression in subscription delta
372
+ - 5fcb0c8: Fix regression in subscription delta
361
373
 
362
374
  ## 5.2.1
363
375
 
364
376
  ### Patch Changes
365
377
 
366
- - 7d968b0: Updates pydantic-forms minimum version
378
+ - 7d968b0: Updates pydantic-forms minimum version
367
379
 
368
380
  ## 5.2.0
369
381
 
370
382
  ### Minor Changes
371
383
 
372
- - 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
373
385
 
374
386
  ### Patch Changes
375
387
 
376
- - bbae7ad: Small improvements to forms
388
+ - bbae7ad: Small improvements to forms
377
389
 
378
390
  ## 5.1.0
379
391
 
380
392
  ### Minor Changes
381
393
 
382
- - f3f1417: removes conditional render option to edit description on wf/task metadata page
383
- - 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
384
396
 
385
397
  ### Patch Changes
386
398
 
387
- - c03d83a: Add Exclamation badge
399
+ - c03d83a: Add Exclamation badge
388
400
 
389
401
  ## 5.0.0
390
402
 
391
403
  ### Major Changes
392
404
 
393
- - 6b21307: Update target validation to isTask
405
+ - 6b21307: Update target validation to isTask
394
406
 
395
407
  ### Minor Changes
396
408
 
397
- - 0f648af: Adds some nullchecks that prevents the app from crashing on some errors
398
- - 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
399
411
 
400
412
  ### Patch Changes
401
413
 
402
- - a500bac: Add product tag to workflow options query
414
+ - a500bac: Add product tag to workflow options query
403
415
 
404
416
  ## 4.2.0
405
417
 
406
418
  ### Minor Changes
407
419
 
408
- - e799369: 1886 "Fix refresh affecting subscriptions search and in-sync button"
420
+ - e799369: 1886 "Fix refresh affecting subscriptions search and in-sync button"
409
421
 
410
422
  ## 4.1.1
411
423
 
412
424
  ### Patch Changes
413
425
 
414
- - e90725b: Fixes depency array bug that breaks the app
426
+ - e90725b: Fixes depency array bug that breaks the app
415
427
 
416
428
  ## 4.1.0
417
429
 
418
430
  ### Minor Changes
419
431
 
420
- - a731291: Adds componentMatcher configuration option for pydantic forms
421
- - 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
422
434
 
423
435
  ## 4.0.1
424
436
 
425
437
  ### Patch Changes
426
438
 
427
- - 3332386: Fixates elastic/eui version
439
+ - 3332386: Fixates elastic/eui version
428
440
 
429
441
  ## 4.0.0
430
442
 
431
443
  ### Major Changes
432
444
 
433
- - 85509b5: Updates to latest npm packages versions. Updates to eslint 9
445
+ - 85509b5: Updates to latest npm packages versions. Updates to eslint 9
434
446
 
435
447
  ## 3.10.0
436
448
 
437
449
  ### Minor Changes
438
450
 
439
- - 2ae5b18: Replace hardcoded query params with constants and enums
451
+ - 2ae5b18: Replace hardcoded query params with constants and enums
440
452
 
441
453
  ### Patch Changes
442
454
 
443
- - 4cefe05: 1858 Fix layout issue with workflows on subscription detail page
455
+ - 4cefe05: 1858 Fix layout issue with workflows on subscription detail page
444
456
 
445
457
  ## 3.9.1
446
458
 
447
459
  ### Patch Changes
448
460
 
449
- - 3f64535: 1337 Move getWebSocket to utils.ts
461
+ - 3f64535: 1337 Move getWebSocket to utils.ts
450
462
 
451
463
  ## 3.9.0
452
464
 
453
465
  ### Minor Changes
454
466
 
455
- - 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
456
468
 
457
469
  ### Patch Changes
458
470
 
459
- - adc70ef: Remove inUseByRelations field from query SubscriptionDropdownOptions
471
+ - adc70ef: Remove inUseByRelations field from query SubscriptionDropdownOptions
460
472
 
461
- 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
462
474
 
463
475
  ## 3.8.1
464
476
 
465
477
  ### Patch Changes
466
478
 
467
- - 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
468
480
 
469
481
  ## 3.8.0
470
482
 
471
483
  ### Minor Changes
472
484
 
473
- - 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
474
486
 
475
487
  ### Patch Changes
476
488
 
477
- - 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.
478
490
 
479
491
  ## 3.7.0
480
492
 
481
493
  ### Minor Changes
482
494
 
483
- - 8a51b24: Adds fileupload field
495
+ - 8a51b24: Adds fileupload field
484
496
 
485
497
  ## 3.6.0
486
498
 
487
499
  ### Minor Changes
488
500
 
489
- - 21c2886: 1825 Update WfoDragHandler, make WfoTable 100% width
490
- - 5f16a2e: 1821 Update WfoSidebar, add toOptionalArrayEntries
501
+ - 21c2886: 1825 Update WfoDragHandler, make WfoTable 100% width
502
+ - 5f16a2e: 1821 Update WfoSidebar, add toOptionalArrayEntries
491
503
 
492
504
  ## 3.5.2
493
505
 
494
506
  ### Patch Changes
495
507
 
496
- - 7040598: Readds testid to textarea field
497
- - 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
498
510
 
499
511
  ## 3.5.1
500
512
 
501
513
  ### Patch Changes
502
514
 
503
- - 0cb0521: Updates required peer dependencies to NextJs 14.2.25 (CVE-2025-29927)
504
- - 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
505
517
 
506
518
  ## 3.5.0
507
519
 
508
520
  ### Minor Changes
509
521
 
510
- - 267ad99: Introduces pydantic forms module to handle some workflows
522
+ - 267ad99: Introduces pydantic forms module to handle some workflows
511
523
 
512
524
  ### Patch Changes
513
525
 
514
- - 34a3044: 1778 Improve re-render summary cards on dashboard page with many changes in backend
515
- - 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
516
528
 
517
529
  ## 3.4.2
518
530
 
519
531
  ### Patch Changes
520
532
 
521
- - 00038a1: Fix for grouped table width
533
+ - 00038a1: Fix for grouped table width
522
534
 
523
535
  ## 3.4.1
524
536
 
525
537
  ### Patch Changes
526
538
 
527
- - 0a6d086: 1758 Show error badge in navigation header when versions of frontend and backend are incompatible.
528
- - 985eed8: 1749 Set a minHeight for EuiPageTemplate section
529
- - 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
530
542
 
531
543
  ## 3.4.0
532
544
 
533
545
  ### Minor Changes
534
546
 
535
- - 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
536
548
 
537
549
  ## 3.3.3
538
550
 
539
551
  ### Patch Changes
540
552
 
541
- - 62d16da: 1709 Replace default icons with SURF icons
553
+ - 62d16da: 1709 Replace default icons with SURF icons
542
554
 
543
555
  ## 3.3.2
544
556
 
545
557
  ### Patch Changes
546
558
 
547
- - 59230ea: inline edit for description of metadata pages
559
+ - 59230ea: inline edit for description of metadata pages
548
560
 
549
561
  ## 3.3.1
550
562
 
551
563
  ### Patch Changes
552
564
 
553
- - 56bdc1d: 1705 Added prop for custom icon summary card
565
+ - 56bdc1d: 1705 Added prop for custom icon summary card
554
566
 
555
567
  ## 3.3.0
556
568
 
557
569
  ### Minor Changes
558
570
 
559
- - 0476c1d: Adds an asteriks to every single word search
560
- - 937c8d6: Adds customer description edit forms
561
- - 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
562
574
 
563
575
  ## 3.2.0
564
576
 
565
577
  ### Minor Changes
566
578
 
567
- - 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
568
580
 
569
581
  ## 3.1.1
570
582
 
571
583
  ### Patch Changes
572
584
 
573
- - 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
574
586
 
575
587
  ## 3.1.0
576
588
 
577
589
  ### Minor Changes
578
590
 
579
- - 98c1716: Fix notes not updating when changing pages, fix cancel button resetting note to older value
580
- - 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.
581
593
 
582
594
  ## 3.0.3
583
595
 
584
596
  ### Patch Changes
585
597
 
586
- - bba111c: Add missing subscription id to start process form
598
+ - bba111c: Add missing subscription id to start process form
587
599
 
588
600
  ## 3.0.2
589
601
 
590
602
  ### Patch Changes
591
603
 
592
- - a4492fd: Fix 400 error in create lir prefix form
593
- - 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.
594
606
 
595
607
  ## 3.0.1
596
608
 
597
609
  ### Patch Changes
598
610
 
599
- - 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
600
612
 
601
613
  ## 3.0.0
602
614
 
603
615
  ### Major Changes
604
616
 
605
- - f6315dd: 1479:
606
-
607
- - csvDownload (Breaking change): Changed the parameters of initiateCsvFileDownload for directly exporting data to CSV.
608
- - GroupedTable: The table has a small header with a button "Collapse / Expand", this can now be overridden.
609
- - 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
610
621
 
611
- Changes to be made by the consumer of the library:
612
- 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.
613
624
 
614
- Before:
625
+ Before:
615
626
 
616
- ```javascript
617
- initiateCsvFileDownload(data, fileName);
618
- ```
627
+ ```javascript
628
+ initiateCsvFileDownload(data, fileName);
629
+ ```
619
630
 
620
- After:
631
+ After:
621
632
 
622
- ```javascript
623
- initiateCsvFileDownload(data, keyOrder, fileName);
624
- ```
633
+ ```javascript
634
+ initiateCsvFileDownload(data, keyOrder, fileName);
635
+ ```
625
636
 
626
637
  ### Patch Changes
627
638
 
628
- - 19d1d88: Enables prefilling of prefixes
629
- - bbf8983: 1623 Changes the colors of the WfoInsyncIcon to make the no-in-sync state more prominent
630
- - 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.
631
642
 
632
643
  ## 2.15.0
633
644
 
634
645
  ### Minor Changes
635
646
 
636
- - c7eaf69: 1620 Add subscriptionPath option for WfoRelatedSubscriptions, WfoSubscriptionDetailTree
647
+ - c7eaf69: 1620 Add subscriptionPath option for WfoRelatedSubscriptions, WfoSubscriptionDetailTree
637
648
 
638
649
  ### Patch Changes
639
650
 
640
- - 79d9133: 1569 Some non-functional tweaks on the table components: Adds classNames and adds a Fragment component in a mapper function
641
- - 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
642
653
 
643
654
  ## 2.14.1
644
655
 
645
656
  ### Patch Changes
646
657
 
647
- - 7f972a1: Fixes calling getFirstUuidPart with null value
648
- - 86b504f: Feat: refactor IPPREFIX table #2143
658
+ - 7f972a1: Fixes calling getFirstUuidPart with null value
659
+ - 86b504f: Feat: refactor IPPREFIX table #2143
649
660
 
650
661
  ## 2.14.0
651
662
 
652
663
  ### Minor Changes
653
664
 
654
- - 0172be2: Adds resizable table columns
665
+ - 0172be2: Adds resizable table columns
655
666
 
656
667
  ## 2.13.0
657
668
 
658
669
  ### Minor Changes
659
670
 
660
- - 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.
661
672
 
662
673
  ### Patch Changes
663
674
 
664
- - 95de1e8: 1552 Remove last line of workflow timeline card
675
+ - 95de1e8: 1552 Remove last line of workflow timeline card
665
676
 
666
677
  ## 2.12.0
667
678
 
668
679
  ### Minor Changes
669
680
 
670
- - 6e4d726: 1560 Table Header: for narrow columns, moving the sort icons as much as possible to the right
671
- - 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
672
683
 
673
684
  ### Patch Changes
674
685
 
675
- - cdb9c83: 1530 Navigate to task list page when clicking on the tasks count icon
676
- - 87540ac: 1577 Fixes uncheckable checkbox (only the label was clickable)
677
- - c592740: 1536 Hides inUseByIds in the list of product block instance values
678
- - 88a9db4: 1561 Fixes double copy icon in subscription detail page at the in-use-by-subscriptions section
679
- - d39017a: Fix WfoInlineNoteEdit showing cached value from the previous page on the next one
680
- - 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
681
692
 
682
693
  ## 2.11.1
683
694
 
684
695
  ### Patch Changes
685
696
 
686
- - 56e2537: Fixes rights issue in github action
687
- - 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
688
699
 
689
700
  ## 2.11.0
690
701
 
691
702
  ### Minor Changes
692
703
 
693
- - 85fca33: Adds npm provenance flag
704
+ - 85fca33: Adds npm provenance flag
694
705
 
695
706
  ### Patch Changes
696
707
 
697
- - 59389ea: Removes limit on related workflows on subscription detail page
708
+ - 59389ea: Removes limit on related workflows on subscription detail page
698
709
 
699
710
  ## 2.10.1
700
711
 
701
712
  ### Patch Changes
702
713
 
703
- - 4a1ef5b: Adds pre-wrap style to value display fieldds
714
+ - 4a1ef5b: Adds pre-wrap style to value display fieldds
704
715
 
705
716
  ## 2.10.0
706
717
 
707
718
  ### Minor Changes
708
719
 
709
- - e198ef6: 1528 Add tooltip to WfoInlineText edit, fix bug showing empty tooltip
710
- - 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
711
722
 
712
723
  ## 2.9.1
713
724
 
714
725
  ### Patch Changes
715
726
 
716
- - fc4a7c5: Fixes too many productblock values being hidden
727
+ - fc4a7c5: Fixes too many productblock values being hidden
717
728
 
718
729
  ## 2.9.0
719
730
 
720
731
  ### Minor Changes
721
732
 
722
- - 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
723
734
 
724
735
  ### Patch Changes
725
736
 
726
- - beca81e: Fixes possible error in suspend step
727
- - 9d1881f: 1504 Resolves task names and workflow names into the description text from the metadata endpoint, making the titles more human-readable
728
- - e8c65bf: update to translation file
729
- - 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
730
741
 
731
742
  ## 2.8.4
732
743
 
733
744
  ### Patch Changes
734
745
 
735
- - be6bf70: added extra Dutch translation term and fix workflowsteps translation
736
- - 3bfe651: Updates npm packages to latest versions
737
- - 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
738
749
 
739
750
  ## 2.8.3
740
751
 
741
752
  ### Patch Changes
742
753
 
743
- - 85f1514: Added new icons - WfoActualWork, WfoMalfunction, WfoPlannedWork
754
+ - 85f1514: Added new icons - WfoActualWork, WfoMalfunction, WfoPlannedWork
744
755
 
745
756
  ## 2.8.2
746
757
 
747
758
  ### Patch Changes
748
759
 
749
- - 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)
750
761
 
751
762
  ## 2.8.1
752
763
 
753
764
  ### Patch Changes
754
765
 
755
- - d119e38: 1404 Allows WfoFilterTabs to accept append property that is passed on to EuiTab component
756
- - 3d1ebbe: 1419 Update product block detail color to match list item color.
757
- - f6a31a6: Fix: Empty value dropdown override
758
- - 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
759
770
 
760
771
  ## 2.8.0
761
772
 
762
773
  ### Minor Changes
763
774
 
764
- - 846a884: Updates npm dependency minor versions
775
+ - 846a884: Updates npm dependency minor versions
765
776
 
766
777
  ## 2.7.1
767
778
 
768
779
  ### Patch Changes
769
780
 
770
- - 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
771
782
 
772
783
  ## 2.7.0
773
784
 
774
785
  ### Minor Changes
775
786
 
776
- - b293024: Adds flags to disable RTK cache in development
787
+ - b293024: Adds flags to disable RTK cache in development
777
788
 
778
789
  ### Patch Changes
779
790
 
780
- - f00a7d1: 1494 Introduces refs to fix the useEffect rerender loop
781
- - aa24057: 735 - WfoSearch: Triggers onUpdateQueryString when field is erased. Adds queryIsValid prop to mark the validity of the query.
782
- - 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
783
794
 
784
795
  ## 2.6.0
785
796
 
786
797
  ### Minor Changes
787
798
 
788
- - 404ffe2: Shows empty values in productBlocks in detail mode
799
+ - 404ffe2: Shows empty values in productBlocks in detail mode
789
800
 
790
801
  ### Patch Changes
791
802
 
792
- - 293c85c: 1440 Adjusted FieldValue type to include ReactNode for NMS
803
+ - 293c85c: 1440 Adjusted FieldValue type to include ReactNode for NMS
793
804
 
794
805
  ## 2.5.0
795
806
 
796
807
  ### Minor Changes
797
808
 
798
- - 78e5223: Fixed buy that does not display Array in blocks
799
- - 06ec6bc: Connects websocket regardless of what page you start on
800
- - 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
801
812
 
802
813
  ### Patch Changes
803
814
 
804
- - ac98ce6: Update tsv information modal
815
+ - ac98ce6: Update tsv information modal
805
816
 
806
817
  ## 2.4.0
807
818
 
808
819
  ### Minor Changes
809
820
 
810
- - ad83b95: Improves performace of subscription dropdown options
821
+ - ad83b95: Improves performace of subscription dropdown options
811
822
 
812
823
  ### Patch Changes
813
824
 
814
- - ff6f520: 1377 Added copy button to UUID fields in tables
825
+ - ff6f520: 1377 Added copy button to UUID fields in tables
815
826
 
816
827
  ## 2.3.0
817
828
 
818
829
  ### Minor Changes
819
830
 
820
- - 0efcf20: 315 - Making the sort icon always visible in cases of small table columns.
821
- - 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.
822
833
 
823
834
  ## 2.2.0
824
835
 
825
836
  ### Minor Changes
826
837
 
827
- - e228d98: Sorts grouped table groups
828
- - 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
829
840
 
830
841
  ### Patch Changes
831
842
 
832
- - 60021b1: Fixes checkboxes without labels
843
+ - 60021b1: Fixes checkboxes without labels
833
844
 
834
845
  ## 2.1.1
835
846
 
836
847
  ### Patch Changes
837
848
 
838
- - 648badb: 1423 Handles not_authenticated errors from graphql endpoints. Adds accessTokenExpiresAt and refreshTokenExpiresAt to WfoSession
839
- - f5138d3: 1406 Added sorting for new tasks and workflow dropdowns
840
- - 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
841
852
 
842
853
  ## 2.1.0
843
854
 
844
855
  ### Minor Changes
845
856
 
846
- - fb2cca8: 1376 Adds inline note edit component
847
- - 93e1926: 1363 Consistent header spacings on all pages
848
- - 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
849
860
 
850
861
  ### Patch Changes
851
862
 
852
- - 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
853
864
 
854
865
  ## 2.0.0
855
866
 
856
867
  ### Major Changes
857
868
 
858
- - 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
859
870
 
860
871
  ### Minor Changes
861
872
 
862
- - ca01308: Refactor WfoSubscriptionGeneral, use WfoSubscriptionDetailSection in forms
863
- - 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
864
875
 
865
876
  ### Patch Changes
866
877
 
867
- - 94ed80b: "649 Fixed a bug where details were shown based on index instead of unique id of a PB
868
- - 5ce3e1f: 1363 Fixes labels in table settings modal
869
- - 0fe9ad5: 1363 Adds WfoMultilineCell and WfoTruncateCell
870
- - 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
871
882
 
872
883
  ## 1.38.2
873
884
 
874
885
  ### Patch Changes
875
886
 
876
- - 414391f: Adjust start task combobox size, so it doesn't hide list items
877
- - 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
878
889
 
879
890
  ## 1.38.1
880
891
 
881
892
  ### Patch Changes
882
893
 
883
- - 702cbdf: Display orchestrator-ui-library version in header
894
+ - 702cbdf: Display orchestrator-ui-library version in header
884
895
 
885
896
  ## 1.38.0
886
897
 
887
898
  ### Minor Changes
888
899
 
889
- - 6f8b708: Added WfoGraphqlErrorsMeta handler, added isLoading to WfoSubscriptionActions, using fragments in some graphql queries, changes required for #1320
890
- - 1318c92: Added open support menu item to context menu
891
- - 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
892
903
 
893
904
  ## 1.37.1
894
905
 
895
906
  ### Patch Changes
896
907
 
897
- - 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
898
909
 
899
910
  ## 1.37.0
900
911
 
901
912
  ### Minor Changes
902
913
 
903
- - 4f91f82: Adds submenu higlighting
904
- - 6601919: Adjust submenu hightlighting
905
- - a25dc81: Improve error presentation for WfoTableWithFilter
906
- - 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
907
918
 
908
919
  ### Patch Changes
909
920
 
910
- - 2501569: Fixed bug that always showed error on subscription list page, improved function for mapping errors
911
- - 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
912
- - 2c6d26d: added WfoIsAllowedToRender around the cache flush component
913
- - 04b1ff7: Added invalidation to subscriptionId query, and loading state for setInSync button
914
- - 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.
915
926
 
916
927
  ## 1.36.1
917
928
 
918
929
  ### Patch Changes
919
930
 
920
- - f7571b1: 822 Removes debounce mechanism in the websocket logic
931
+ - f7571b1: 822 Removes debounce mechanism in the websocket logic
921
932
 
922
933
  ## 1.36.0
923
934
 
924
935
  ### Minor Changes
925
936
 
926
- - 5663e2c: Fixes list item delete button
937
+ - 5663e2c: Fixes list item delete button
927
938
 
928
939
  ### Patch Changes
929
940
 
930
- - ef5910a: Removes unavailable untagged port subscriptions from dropdown list
931
- - eed3424: Fix console errors that show when both data and errors are present in wfoGraphqlRequestBaseQuery. Fix name of the function.
932
- - c880f61: 1295 - Partial rollback of changes introduced in PR 1242. These changes broke the functionality to remove a list item
933
- - d23fa2b: 1294 Rollback style-change in list fields
934
- - 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
935
946
 
936
947
  ## 1.35.0
937
948
 
938
949
  ### Minor Changes
939
950
 
940
- - 3a8ba59: Adds hamburger menu
941
- - 86cbc9c: Adds celery worker status card to settings page
951
+ - 3a8ba59: Adds hamburger menu
952
+ - 86cbc9c: Adds celery worker status card to settings page
942
953
 
943
954
  ### Patch Changes
944
955
 
945
- - be2a21d: Fixes typo in constant
946
- - 8afc446: 1252 Fixes the copy icon in the key-value table
947
- - 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
948
959
 
949
960
  ## 1.34.0
950
961
 
951
962
  ### Minor Changes
952
963
 
953
- - 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
954
965
 
955
966
  ## 1.33.0
956
967
 
957
968
  ### Minor Changes
958
969
 
959
- - bd05bd4: Makes productBlocks on service configuration tab scrollable
970
+ - bd05bd4: Makes productBlocks on service configuration tab scrollable
960
971
 
961
972
  ### Patch Changes
962
973
 
963
- - a728dfe: 1168 Exposes toObjectWithSortedKeys util
974
+ - a728dfe: 1168 Exposes toObjectWithSortedKeys util
964
975
 
965
976
  ## 1.32.0
966
977
 
967
978
  ### Minor Changes
968
979
 
969
- - 06f97cc: Updates graphql seperator character
970
- - 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
971
982
 
972
983
  ### Patch Changes
973
984
 
974
- - 845dce4: Fix form label not visible in SummaryField and TimestampField
975
- - 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
976
987
 
977
988
  ## 1.31.0
978
989
 
979
990
  ### Minor Changes
980
991
 
981
- - 8e2c77c: Updates graphql error code to match backend
992
+ - 8e2c77c: Updates graphql error code to match backend
982
993
 
983
994
  ## 1.30.3
984
995
 
985
996
  ### Patch Changes
986
997
 
987
- - 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
988
999
 
989
1000
  ## 1.30.2
990
1001
 
991
1002
  ### Patch Changes
992
1003
 
993
- - fe3e991: Fixes websocket connection without authorization
1004
+ - fe3e991: Fixes websocket connection without authorization
994
1005
 
995
1006
  ## 1.30.1
996
1007
 
997
1008
  ### Patch Changes
998
1009
 
999
- - 6f308f9: Fix not logging out when token expires
1010
+ - 6f308f9: Fix not logging out when token expires
1000
1011
 
1001
1012
  ## 1.30.0
1002
1013
 
1003
1014
  ### Minor Changes
1004
1015
 
1005
- - 231230c: Updates most packages to latest version
1016
+ - 231230c: Updates most packages to latest version
1006
1017
 
1007
1018
  ## 1.29.1
1008
1019
 
1009
1020
  ### Patch Changes
1010
1021
 
1011
- - 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
1012
1023
 
1013
1024
  ## 1.29.0
1014
1025
 
1015
1026
  ### Minor Changes
1016
1027
 
1017
- - 80f18ae: Fixes npm audit messages
1018
- - 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
1019
1030
 
1020
1031
  ## 1.28.0
1021
1032
 
1022
1033
  ### Minor Changes
1023
1034
 
1024
- - 3444973: added a new table for the nms chassis general tab
1035
+ - 3444973: added a new table for the nms chassis general tab
1025
1036
 
1026
1037
  ## 1.27.1
1027
1038
 
1028
1039
  ### Patch Changes
1029
1040
 
1030
- - 54b537c: Added productType to Workflow option used by LIR prefixes
1041
+ - 54b537c: Added productType to Workflow option used by LIR prefixes
1031
1042
 
1032
1043
  ## 1.27.0
1033
1044
 
1034
1045
  ### Minor Changes
1035
1046
 
1036
- - 0a3877d: Moves side menu toggle from header to breadcrumb
1037
- - bc65670: Orders product blocks in subcription detail tree
1038
- - 8f45591: Improves confirmation dialog on page leave
1039
- - 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
1040
1051
 
1041
1052
  ## 1.26.0
1042
1053
 
1043
1054
  ### Minor Changes
1044
1055
 
1045
- - 3508ff8: Sort product block instance values by field name
1056
+ - 3508ff8: Sort product block instance values by field name
1046
1057
 
1047
1058
  ### Patch Changes
1048
1059
 
1049
- - 257ef6e: Added number type to parseDate function
1060
+ - 257ef6e: Added number type to parseDate function
1050
1061
 
1051
1062
  ## 1.25.0
1052
1063
 
1053
1064
  ### Minor Changes
1054
1065
 
1055
- - 10e542e: Adds websockets responsiveness to process list and processDetails
1056
- - f225422: Resolves external subscription id and name in product block details
1057
- - 47a545b: Adds subscription info to modify workflow start page
1058
- - 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
1059
1070
 
1060
1071
  ### Patch Changes
1061
1072
 
1062
- - 43bcc3c: Fixes table settings reset
1063
- - 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
1064
1075
 
1065
1076
  ## 1.24.0
1066
1077
 
1067
1078
  ### Minor Changes
1068
1079
 
1069
- - 83fb33d: Adds a reconnect option for the websocket
1070
- - ef169fc: 1108 Adds getEnvironmentVariables helper function that retrieves multiple environment variables and logs warnings in case variables do not exist
1071
- - 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
1072
1083
 
1073
1084
  ### Patch Changes
1074
1085
 
1075
- - fda8911: Hides more product block items for productblocks outside the current subscription
1076
- - 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
1077
1088
 
1078
1089
  ## 1.23.0
1079
1090
 
1080
1091
  ### Minor Changes
1081
1092
 
1082
- - 33240b6: Fixes websockets with authentication
1083
- - 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
1084
1095
 
1085
1096
  ### Patch Changes
1086
1097
 
1087
- - 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
1088
1099
 
1089
1100
  ## 1.22.0
1090
1101
 
1091
1102
  ### Minor Changes
1092
1103
 
1093
- - f6dc4fb: Replaces subscriptionsWithFilter REST call with a graphQL query
1094
- - d48df6b: Exports WFoUserInputForm
1104
+ - f6dc4fb: Replaces subscriptionsWithFilter REST call with a graphQL query
1105
+ - d48df6b: Exports WFoUserInputForm
1095
1106
 
1096
1107
  ### Patch Changes
1097
1108
 
1098
- - bcfe7de: 916 Exposes menuItemIsAllowed helper function
1099
- - 50e8f68: Fixes signOut modal showing in some cases
1100
- - 6a7264f: 1086 StartPage: Summary card with product counts ignores terminated instances
1101
- - 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
1102
1113
 
1103
1114
  ## 1.21.0
1104
1115
 
1105
1116
  ### Minor Changes
1106
1117
 
1107
- - ae0d9a8: Removes some obsolete configuration
1108
- - 560cf74: Adds a different style if a productblock is outside the subscription boundary
1109
- - 5ee68fa: Signs user out when api calls fail because of expired token
1110
- - 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
1111
1122
 
1112
1123
  ### Patch Changes
1113
1124
 
1114
- - 13d7c6d: Fixes missing aria-labels on icons
1115
- - 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
1116
1127
 
1117
1128
  ## 1.20.0
1118
1129
 
1119
1130
  ### Minor Changes
1120
1131
 
1121
- - decb678: Removes obsolete configuration options
1132
+ - decb678: Removes obsolete configuration options
1122
1133
 
1123
1134
  ## 1.19.1
1124
1135
 
1125
1136
  ### Patch Changes
1126
1137
 
1127
- - e1811bc: revert username to old code solution
1138
+ - e1811bc: revert username to old code solution
1128
1139
 
1129
1140
  ## 1.19.0
1130
1141
 
1131
1142
  ### Minor Changes
1132
1143
 
1133
- - 7dc5cf0: Moving axios form fields and fetches to RTK
1144
+ - 7dc5cf0: Moving axios form fields and fetches to RTK
1134
1145
 
1135
1146
  ### Patch Changes
1136
1147
 
1137
- - 213fb25: Uses preferred_username to filter for my-workflows
1138
- - 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
1139
1150
 
1140
1151
  ## 1.18.0
1141
1152
 
1142
1153
  ### Minor Changes
1143
1154
 
1144
- - 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
1145
1156
 
1146
1157
  ### Patch Changes
1147
1158
 
1148
- - 3888ea9: Adjustment to placeholder translations
1159
+ - 3888ea9: Adjustment to placeholder translations
1149
1160
 
1150
1161
  ## 1.17.0
1151
1162
 
1152
1163
  ### Minor Changes
1153
1164
 
1154
- - 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.
1155
1166
 
1156
1167
  ## 1.16.0
1157
1168
 
1158
1169
  ### Minor Changes
1159
1170
 
1160
- - ed6d5c7: Fixes tooltip message on vlan field
1171
+ - ed6d5c7: Fixes tooltip message on vlan field
1161
1172
 
1162
1173
  ### Patch Changes
1163
1174
 
1164
- - 5301916: Added trash icon
1175
+ - 5301916: Added trash icon
1165
1176
 
1166
1177
  ## 1.15.0
1167
1178
 
1168
1179
  ### Minor Changes
1169
1180
 
1170
- - a8c625e: Added workflow information link and env vars for it
1181
+ - a8c625e: Added workflow information link and env vars for it
1171
1182
 
1172
1183
  ## 1.14.2
1173
1184
 
1174
1185
  ### Patch Changes
1175
1186
 
1176
- - 06377ba: Adds prettier output for the "In-use by subscription(s)" on product blocks on subscription details
1177
- - 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
1178
1189
 
1179
1190
  ## 1.14.1
1180
1191
 
1181
1192
  ### Patch Changes
1182
1193
 
1183
- - 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 …
1184
1195
 
1185
1196
  ## 1.14.0
1186
1197
 
1187
1198
  ### Minor Changes
1188
1199
 
1189
- - 5b9d042: Moved form wizards to RTK
1200
+ - 5b9d042: Moved form wizards to RTK
1190
1201
 
1191
1202
  ## 1.13.2
1192
1203
 
1193
1204
  ### Patch Changes
1194
1205
 
1195
- - 43be47b: 565 Added a new summary card listing the 5 latest workflows for the user that is logged in
1196
- - 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
1197
1208
 
1198
1209
  ## 1.13.1
1199
1210
 
1200
1211
  ### Patch Changes
1201
1212
 
1202
- - 63ee9c0: 863 Adds title for traceback section on workflow detail page
1213
+ - 63ee9c0: 863 Adds title for traceback section on workflow detail page
1203
1214
 
1204
1215
  ## 1.13.0
1205
1216
 
1206
1217
  ### Minor Changes
1207
1218
 
1208
- - 12d72f9: Ads feature toggles to configuration
1219
+ - 12d72f9: Ads feature toggles to configuration
1209
1220
 
1210
1221
  ### Patch Changes
1211
1222
 
1212
- - abd239c: filter workflows on target
1213
- - 72ee276: 863 Adds Traceback on process detail page
1223
+ - abd239c: filter workflows on target
1224
+ - 72ee276: 863 Adds Traceback on process detail page
1214
1225
 
1215
1226
  ## 1.12.0
1216
1227
 
1217
1228
  ### Minor Changes
1218
1229
 
1219
- - a95a6dc: Updates what the websocket interface is listening to
1230
+ - a95a6dc: Updates what the websocket interface is listening to
1220
1231
 
1221
1232
  ## 1.11.0
1222
1233
 
1223
1234
  ### Minor Changes
1224
1235
 
1225
- - 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
1226
1237
 
1227
1238
  ### Patch Changes
1228
1239
 
1229
- - 9eca836: 983 Improvements in exporting data from the metadata pages
1230
- - 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
1231
1242
 
1232
1243
  ## 1.10.0
1233
1244
 
1234
1245
  ### Minor Changes
1235
1246
 
1236
- - 04ef921: Deprecate apiclient version of UserInputFormWizard
1247
+ - 04ef921: Deprecate apiclient version of UserInputFormWizard
1237
1248
 
1238
1249
  ## 1.9.0
1239
1250
 
1240
1251
  ### Minor Changes
1241
1252
 
1242
- - a9f3806: Improves sideBar navigation
1253
+ - a9f3806: Improves sideBar navigation
1243
1254
 
1244
1255
  ## 1.8.0
1245
1256
 
1246
1257
  ### Minor Changes
1247
1258
 
1248
- - 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
1249
1260
 
1250
1261
  ## 1.7.0
1251
1262
 
1252
1263
  ### Minor Changes
1253
1264
 
1254
- - d61106d: Release of the metadata task page
1265
+ - d61106d: Release of the metadata task page
1255
1266
 
1256
1267
  ## 1.6.2
1257
1268
 
1258
1269
  ### Patch Changes
1259
1270
 
1260
- - 0bf6f82: New metadata taskpage with rtk
1271
+ - 0bf6f82: New metadata taskpage with rtk
1261
1272
 
1262
1273
  ## 1.6.1
1263
1274
 
1264
1275
  ### Patch Changes
1265
1276
 
1266
- - 3cfd9f5: Fixes error in exported values
1267
- - 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
1268
1279
 
1269
1280
  ## 1.6.0
1270
1281
 
1271
1282
  ### Minor Changes
1272
1283
 
1273
- - 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
1274
1285
 
1275
1286
  ### Patch Changes
1276
1287
 
1277
- - e3874e0: Changed overlay icon colour of skipped step in workflow/task
1278
- Badge style to product name column in metadata table products
1279
- Some features owner subscription presentation & hide pb-sub-instance-id
1280
- Changed default table row settings
1281
- - 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
1282
1293
 
1283
1294
  ## 1.5.0
1284
1295
 
1285
1296
  ### Minor Changes
1286
1297
 
1287
- - 9662041: 638 Moves SURF specific form fields to deprecated folder
1288
- - 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.
1289
1300
 
1290
1301
  ### Patch Changes
1291
1302
 
1292
- - 78a0b55: 812 Fixed object mapping from products rest call
1293
- - 1b3a9f0: Allows sending null as a value when removing existing values
1294
- - 9cf620e: 919 Fix port dropdown after changing the node in a Create Service Port workflow
1295
- - 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
1296
1307
 
1297
1308
  ## 1.4.0.
1298
1309
 
1299
1310
  ### Minor Changes
1300
1311
 
1301
- - 62b356f: Moves product blocks graphql query to RTK client
1302
- - 0e5c8f3: Moves subscriptionList query to RTK client
1303
- - 92ce67b: Moves subscriptionDetail to RTK client
1304
- - 3f68b52: Moves subscriptions dropdown options to RTK client
1305
- - d7b1ce2: Moves products and productsSummary to RTK client
1306
- - 0b4da83: Moves resourceTypes metadata query to RTK client
1307
- - 6ee952f: Moves relatedSubscriptions RTK client
1308
- - af1c86b: Moves processList summary queries to RTK client
1309
- - 70efdf5: Moves getting startOptions to RTK client
1310
- - 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
1311
1322
 
1312
1323
  ## 1.3.1
1313
1324
 
1314
1325
  ### Patch Changes
1315
1326
 
1316
- - 043b943: Moves processSteps query to RTK client
1317
- - 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
1318
1329
 
1319
1330
  ## 1.3.0
1320
1331
 
1321
1332
  ### Minor Changes
1322
1333
 
1323
- - 1ab3e59: Adds set in sync action to subscription detail page
1334
+ - 1ab3e59: Adds set in sync action to subscription detail page
1324
1335
 
1325
1336
  ## 1.2.0
1326
1337
 
1327
1338
  ### Minor Changes
1328
1339
 
1329
- - 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
1330
1341
 
1331
1342
  ## 1.1.0
1332
1343
 
1333
1344
  ### Minor Changes
1334
1345
 
1335
- - 2d0c99c: 840 Updates policy resources
1346
+ - 2d0c99c: 840 Updates policy resources
1336
1347
 
1337
1348
  ## 1.0.0
1338
1349
 
1339
1350
  ### Major Changes
1340
1351
 
1341
- - 507399b: R1 Release
1352
+ - 507399b: R1 Release
1342
1353
 
1343
1354
  ## 0.13.1
1344
1355
 
1345
1356
  ### Patch Changes
1346
1357
 
1347
- - 9155f40: Added isDisabled prop to WfoSubmitModal
1358
+ - 9155f40: Added isDisabled prop to WfoSubmitModal
1348
1359
 
1349
1360
  ## 0.13.0
1350
1361
 
1351
1362
  ### Minor Changes
1352
1363
 
1353
- - 89835a4: 702 - Moves processDetail to rtkquery
1364
+ - 89835a4: 702 - Moves processDetail to rtkquery
1354
1365
 
1355
1366
  ### Patch Changes
1356
1367
 
1357
- - e56c142: 760 remove duplicate product tags on metadata workflow page
1368
+ - e56c142: 760 remove duplicate product tags on metadata workflow page
1358
1369
 
1359
1370
  ## 0.12.0
1360
1371
 
1361
1372
  ### Minor Changes
1362
1373
 
1363
- - 5efb8b0: #821 Reverted FORMS_ENPOINT string, removed cimStartForm, added new string utils
1364
- #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
1365
1376
 
1366
1377
  ## 0.11.1
1367
1378
 
1368
1379
  ### Patch Changes
1369
1380
 
1370
- - e83d9aa: new summary card out-of-sync subscriptions
1371
- - 7ff8936: Applies policies in several components
1381
+ - e83d9aa: new summary card out-of-sync subscriptions
1382
+ - 7ff8936: Applies policies in several components
1372
1383
 
1373
1384
  ## 0.11.0
1374
1385
 
1375
1386
  ### Minor Changes
1376
1387
 
1377
- - 6332355: Adds dark theme behind feature toggle
1378
- - 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
1379
1390
 
1380
1391
  ### Patch Changes
1381
1392
 
1382
- - c3da8a6: add customer abbrev to customer drop down string in form field
1383
- - 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
1384
1395
 
1385
1396
  ## 0.10.0
1386
1397
 
1387
1398
  ### Minor Changes
1388
1399
 
1389
- - 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
1390
1401
 
1391
1402
  ## 0.9.1
1392
1403
 
1393
1404
  ### Patch Changes
1394
1405
 
1395
- - 1578b99: NPM Audit fix for IP package
1406
+ - 1578b99: NPM Audit fix for IP package
1396
1407
 
1397
1408
  ## 0.9.0
1398
1409
 
1399
1410
  ### Minor Changes
1400
1411
 
1401
- - 8675375: Fixes a SelectField bug
1402
- - c8c6e10: Update npm dependency versions
1412
+ - 8675375: Fixes a SelectField bug
1413
+ - c8c6e10: Update npm dependency versions
1403
1414
 
1404
1415
  ### Patch Changes
1405
1416
 
1406
- - 4bee6a1: Fixes crashes caused by uniforms connectField function
1407
- - 56d5e6e: Trigger the changesets action
1417
+ - 4bee6a1: Fixes crashes caused by uniforms connectField function
1418
+ - 56d5e6e: Trigger the changesets action
1408
1419
 
1409
1420
  ## 0.8.1
1410
1421
 
1411
1422
  ### Patch Changes
1412
1423
 
1413
- - 5224527: 721: Fix customer select not being disabled
1414
- - 16f32ad: 651: Fix incorrect port select options
1415
- - 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
1416
1427
 
1417
1428
  ## 0.8.0
1418
1429
 
1419
1430
  ### Minor Changes
1420
1431
 
1421
- - 8eded72: Required for issue 573 Add restart open relate
1432
+ - 8eded72: Required for issue 573 Add restart open relate
1422
1433
 
1423
1434
  ### Patch Changes
1424
1435
 
1425
- - 534ecf4: 685: Fix form reloading and resetting inputs
1436
+ - 534ecf4: 685: Fix form reloading and resetting inputs
1426
1437
 
1427
1438
  ## 0.7.0
1428
1439
 
1429
1440
  ### Minor Changes
1430
1441
 
1431
- - 5d20aec: Adds accesToken to RTK Query clients
1442
+ - 5d20aec: Adds accesToken to RTK Query clients
1432
1443
 
1433
1444
  ## 0.6.0
1434
1445
 
1435
1446
  ### Minor Changes
1436
1447
 
1437
- - d44c55c: Fix ProcessDetailQuery by removing form subfields
1438
- - !WARNING: this version requires backend version 2.1.0.
1439
- - 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.
1440
1451
 
1441
1452
  ## 0.5.2
1442
1453
 
1443
1454
  ### Patch Changes
1444
1455
 
1445
- - e88410d: Update form fields to remove 'organisation' naming
1446
- - 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
1447
1458
 
1448
1459
  ## 0.5.1
1449
1460
 
1450
1461
  ### Patch Changes
1451
1462
 
1452
- - dac8fb2: update date presentation and move getDate to utils
1453
- - e3b847a: Adds error boundary at the top level of the app
1454
- - 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.
1455
1466
 
1456
1467
  ## 0.5.0
1457
1468
 
1458
1469
  ### Minor Changes
1459
1470
 
1460
- - 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
1461
1472
 
1462
1473
  ## 0.4.0
1463
1474
 
1464
1475
  ### Minor Changes
1465
1476
 
1466
- - cdc668f: 544 - Export functionality for the tables
1477
+ - cdc668f: 544 - Export functionality for the tables
1467
1478
 
1468
1479
  ### Patch Changes
1469
1480
 
1470
- - e8af27c: Process table - each column width in absolute or %
1471
- - e9af205: change order tabs sub-detail-page
1472
- - 996fc9f: added border radius to wfo tree and empty PB card placeholder
1473
- - 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
1474
1485
 
1475
1486
  ## 0.3.1
1476
1487
 
1477
1488
  ### Patch Changes
1478
1489
 
1479
- - d824a58: fix uuid in breadcrumb
1480
- - cb3142a: - expand the root product block card by default
1481
- - change tree icon of root product block
1482
- - open other subscription detail page opens in new tab
1483
- - use title of root product block in tree like the other product blocks
1484
- - 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
1485
1496
 
1486
1497
  ## 0.3.0
1487
1498
 
1488
1499
  ### Minor Changes
1489
1500
 
1490
- - 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
1491
1502
 
1492
1503
  ## 0.2.7
1493
1504
 
1494
1505
  ### Patch Changes
1495
1506
 
1496
- - 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()
1497
1508
 
1498
1509
  ## 0.2.6
1499
1510
 
1500
1511
  ### Patch Changes
1501
1512
 
1502
- - 6597ac1: Test release after adding absolute imports (issue 414)
1513
+ - 6597ac1: Test release after adding absolute imports (issue 414)
1503
1514
 
1504
1515
  ## 0.2.5
1505
1516
 
1506
1517
  ### Patch Changes
1507
1518
 
1508
- - 6d680f6: Test release before adding absolute imports (issue 414)
1519
+ - 6d680f6: Test release before adding absolute imports (issue 414)
1509
1520
 
1510
1521
  ## 0.2.4
1511
1522
 
1512
1523
  ### Patch Changes
1513
1524
 
1514
- - 38d1229: Fixed handling navigation for pages with sidebar submenu items
1525
+ - 38d1229: Fixed handling navigation for pages with sidebar submenu items
1515
1526
 
1516
1527
  ## 0.2.3
1517
1528
 
1518
1529
  ### Patch Changes
1519
1530
 
1520
- - 577825a: Adds title to process list page
1531
+ - 577825a: Adds title to process list page
1521
1532
 
1522
1533
  ## 0.2.2
1523
1534
 
1524
1535
  ### Patch Changes
1525
1536
 
1526
- - 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
1527
1538
 
1528
1539
  ## 0.2.1
1529
1540
 
1530
1541
  ### Patch Changes
1531
1542
 
1532
- - 3533525: Updated TS-Config to improve developer experience
1543
+ - 3533525: Updated TS-Config to improve developer experience
1533
1544
 
1534
1545
  ## 0.2.0
1535
1546
 
1536
1547
  ### Minor Changes
1537
1548
 
1538
- - 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
1539
1550
 
1540
1551
  ## 0.1.2
1541
1552
 
1542
1553
  ### Patch Changes
1543
1554
 
1544
- - 0cef169: Splitted WFO in separate packages
1555
+ - 0cef169: Splitted WFO in separate packages
1545
1556
 
1546
1557
  ## 0.1.1
1547
1558
 
1548
1559
  ### Patch Changes
1549
1560
 
1550
- - Converted tsconfig and eslint to standalone NPM package
1561
+ - Converted tsconfig and eslint to standalone NPM package
1551
1562
 
1552
1563
  ## 0.1.0
1553
1564
 
1554
1565
  ### Minor Changes
1555
1566
 
1556
- - c597fc5: Switched to tsup build in turborepo
1567
+ - c597fc5: Switched to tsup build in turborepo