@orchestrator-ui/orchestrator-ui-components 7.5.1 → 7.7.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 (58) hide show
  1. package/.turbo/turbo-build.log +7 -7
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/.turbo/turbo-test.log +7 -7
  4. package/CHANGELOG.md +26 -0
  5. package/dist/index.d.ts +542 -53
  6. package/dist/index.js +1297 -1101
  7. package/dist/index.js.map +1 -1
  8. package/jest.config.cjs +4 -1
  9. package/package.json +6 -6
  10. package/src/components/WfoAgent/ExportButton/ExportButton.tsx +5 -11
  11. package/src/components/WfoAgent/WfoAgent/WfoAgent.tsx +79 -31
  12. package/src/components/WfoAgent/WfoAgentChart/WfoAgentLineChart.tsx +2 -2
  13. package/src/components/WfoAgent/WfoAgentChart/WfoAgentPieChart.tsx +2 -2
  14. package/src/components/WfoAgent/WfoAgentTable/WfoAgentTable.tsx +9 -9
  15. package/src/components/WfoAgent/WfoAgentVisualization/WfoAgentVisualization.tsx +2 -2
  16. package/src/components/WfoAgent/WfoPlanProgress/WfoPlanProgress.tsx +107 -0
  17. package/src/components/WfoAgent/WfoPlanProgress/index.ts +1 -0
  18. package/src/components/WfoAgent/WfoPlanProgress/styles.ts +62 -0
  19. package/src/components/WfoAgent/WfoQueryArtifact/WfoQueryArtifact.tsx +40 -0
  20. package/src/components/WfoAgent/WfoQueryArtifact/index.ts +1 -0
  21. package/src/components/WfoAgent/index.ts +2 -0
  22. package/src/components/WfoBadges/WfoEngineStatusBadge/WfoEngineStatusBadge.tsx +3 -1
  23. package/src/components/WfoBadges/WfoVersionIncompatibleBadge/WfoVersionIncompatibleBadge.tsx +7 -6
  24. package/src/components/WfoBadges/WfoWebsocketStatusBadge/WfoWebsocketStatusBadge.tsx +9 -3
  25. package/src/components/WfoKeyValueTable/WfoValueCell.tsx +1 -1
  26. package/src/components/WfoPydanticForm/fields/WfoInteger.tsx +22 -3
  27. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActions.tsx +3 -2
  28. package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionDetailSection.tsx +34 -3
  29. package/src/components/WfoSubscriptionsList/WfoSubscriptionsList.tsx +9 -9
  30. package/src/components/WfoTable/WfoAdvancedTable/WfoAdvancedTable.tsx +1 -1
  31. package/src/components/WfoTable/WfoFirstPartUUID/WfoFirstPartUUID.tsx +1 -1
  32. package/src/components/WfoTitleWithWebsocketBadge/WfoTitleWithWebsocketBadge.tsx +3 -2
  33. package/src/components/WfoWorkflowSteps/WfoStep/WfoStep.tsx +57 -40
  34. package/src/components/WfoWorkflowSteps/WfoStep/useStepDetailOverride.ts +9 -0
  35. package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/WfoStepListHeader.tsx +0 -1
  36. package/src/configuration/constants.ts +3 -0
  37. package/src/configuration/version.ts +1 -1
  38. package/src/hooks/useAgentPlanEvents.ts +188 -0
  39. package/src/messages/en-GB.json +7 -0
  40. package/src/messages/nl-NL.json +2 -0
  41. package/src/pages/metadata/WfoScheduleTaskFormPage.tsx +153 -35
  42. package/src/rtk/endpoints/agentQueryResults.ts +19 -0
  43. package/src/rtk/endpoints/forms.ts +1 -1
  44. package/src/rtk/endpoints/index.ts +1 -0
  45. package/src/rtk/endpoints/metadata/scheduledTasks.ts +9 -17
  46. package/src/rtk/endpoints/streamMessages.ts +10 -23
  47. package/src/rtk/slices/orchestratorComponentOverride.ts +5 -1
  48. package/src/types/search.ts +19 -4
  49. package/src/utils/compareVersions.spec.ts +5 -0
  50. package/src/utils/compareVersions.ts +55 -23
  51. package/src/components/WfoAgent/ToolProgress/DiscoverFilterPathsDisplay.tsx +0 -99
  52. package/src/components/WfoAgent/ToolProgress/RunSearchDisplay.tsx +0 -34
  53. package/src/components/WfoAgent/ToolProgress/SetFilterTreeDisplay.styles.ts +0 -62
  54. package/src/components/WfoAgent/ToolProgress/SetFilterTreeDisplay.tsx +0 -107
  55. package/src/components/WfoAgent/ToolProgress/StartNewSearchDisplay.tsx +0 -60
  56. package/src/components/WfoAgent/ToolProgress/ToolProgress.tsx +0 -98
  57. package/src/components/WfoAgent/ToolProgress/index.ts +0 -1
  58. package/src/components/WfoAgent/ToolProgress/styles.ts +0 -52
@@ -1,9 +1,9 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@7.5.1 build
2
+ > @orchestrator-ui/orchestrator-ui-components@7.7.0 build
3
3
  > npm run generate-version && tsup src/index.ts
4
4
 
5
5
 
6
- > @orchestrator-ui/orchestrator-ui-components@7.5.1 generate-version
6
+ > @orchestrator-ui/orchestrator-ui-components@7.7.0 generate-version
7
7
  > node -p "'export const ORCHESTRATOR_UI_LIBRARY_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'" > src/configuration/version.ts && prettier --write src/configuration/version.ts
8
8
 
9
9
  src/configuration/version.ts 48ms
@@ -14,9 +14,9 @@ src/configuration/version.ts 48ms
14
14
  CLI Target: es2022
15
15
  CLI Cleaning output folder
16
16
  ESM Build start
17
- ESM dist/index.js 810.00 KB
18
- ESM dist/index.js.map 1.38 MB
19
- ESM ⚡️ Build success in 337ms
17
+ ESM dist/index.js 814.84 KB
18
+ ESM dist/index.js.map 1.39 MB
19
+ ESM ⚡️ Build success in 297ms
20
20
  DTS Build start
21
- DTS ⚡️ Build success in 23887ms
22
- DTS dist/index.d.ts 1.48 MB
21
+ DTS ⚡️ Build success in 24091ms
22
+ DTS dist/index.d.ts 1.50 MB
@@ -1,4 +1,4 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@7.5.1 lint
2
+ > @orchestrator-ui/orchestrator-ui-components@7.7.0 lint
3
3
  > eslint
4
4
 
@@ -1,22 +1,22 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@7.5.1 test
2
+ > @orchestrator-ui/orchestrator-ui-components@7.7.0 test
3
3
  > jest
4
4
 
5
5
  PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
6
6
  PASS Wfo-UI Tests src/utils/date.spec.ts
7
7
  PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
8
- PASS Wfo-UI Tests src/utils/string.spec.ts
9
8
  PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
10
- PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
11
9
  PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
10
+ PASS Wfo-UI Tests src/utils/string.spec.ts
11
+ PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
12
12
  PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts
13
13
  PASS Wfo-UI Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
14
14
  PASS Wfo-UI Tests src/utils/compareVersions.spec.ts
15
15
  PASS Wfo-UI Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
16
16
  PASS Wfo-UI Tests src/utils/optionalArray.spec.ts
17
17
  PASS Wfo-UI Tests src/rtk/utils.spec.ts
18
- PASS Wfo-UI Tests src/utils/resultFlattener.spec.ts
19
18
  PASS Wfo-UI Tests src/utils/getQueryParams.spec.ts
19
+ PASS Wfo-UI Tests src/utils/resultFlattener.spec.ts
20
20
  PASS Wfo-UI Tests src/messages/getTranslationMessages.spec.ts
21
21
  PASS Wfo-UI Tests src/utils/getEnvironmentVariables.spec.ts
22
22
  PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoSidebar/utils/menuItemIsAllowed.spec.ts
@@ -36,10 +36,10 @@ PASS Wfo-UI Tests src/utils/getQueryVariablesForExport.spec.ts
36
36
  PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
37
37
  PASS Wfo-UI Tests src/utils/getQueryUrl.spec.ts
38
38
  PASS Wfo-UI Tests src/components/WfoPydanticForm/fields/wfoPydanticFormUtils.spec.ts
39
- PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.497 s)
39
+ PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.368 s)
40
40
 
41
41
  Test Suites: 35 passed, 35 total
42
- Tests: 226 passed, 226 total
42
+ Tests: 227 passed, 227 total
43
43
  Snapshots: 0 total
44
- Time: 8.191 s
44
+ Time: 7.837 s
45
45
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 7.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - d40df81: Add overridable components to Step entries
8
+ - ef68a85: Change RTK streamMessages to be re-usable with other websocket endpoints
9
+ - 2d7ff7a: Change Schedule Task Form to use form data from backend when backend version is 5.0.0a7 or higher
10
+
11
+ ### Patch Changes
12
+
13
+ - 2b0cdf5: Add direct link to latest validate workflow in SubscriptionDetail (#2490)
14
+
15
+ ## 7.6.0
16
+
17
+ ### Minor Changes
18
+
19
+ - 57220a3: Add event-driven agent plan progress rendering and artifact-based query result fetching
20
+ - 490fdb2: Fix onChange behaviour for number field and update pydantic forms version.
21
+
22
+ ### Patch Changes
23
+
24
+ - 0a0eb0f: Fix pipeline for installing NPM due to module 'promise-retry'
25
+ - 746e439: Fix compatibility badge being invisible, add check for alpha pre-releases
26
+ - e8c4e14: 118 Reorder action column and optimize width of columns
27
+ - cf1bd85: WfoClipboardCopy icon darker to improve visibility
28
+
3
29
  ## 7.5.1
4
30
 
5
31
  ### Patch Changes