@orchestrator-ui/orchestrator-ui-components 7.5.0 → 7.6.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 (48) hide show
  1. package/.turbo/turbo-build.log +7 -7
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/.turbo/turbo-test.log +8 -8
  4. package/CHANGELOG.md +20 -0
  5. package/dist/index.d.ts +481 -10
  6. package/dist/index.js +588 -489
  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/WfoVersionIncompatibleBadge/WfoVersionIncompatibleBadge.tsx +7 -6
  23. package/src/components/WfoKeyValueTable/WfoValueCell.tsx +1 -1
  24. package/src/components/WfoPageTemplate/WfoSidebar/WfoMenuLink.tsx +10 -4
  25. package/src/components/WfoPageTemplate/WfoSidebar/styles.ts +28 -3
  26. package/src/components/WfoPydanticForm/fields/WfoInteger.tsx +22 -3
  27. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActions.tsx +3 -2
  28. package/src/components/WfoSubscriptionsList/WfoSubscriptionsList.tsx +9 -9
  29. package/src/components/WfoTable/WfoAdvancedTable/WfoAdvancedTable.tsx +1 -1
  30. package/src/components/WfoTable/WfoFirstPartUUID/WfoFirstPartUUID.tsx +1 -1
  31. package/src/components/WfoTree/styles.ts +1 -1
  32. package/src/configuration/constants.ts +3 -0
  33. package/src/configuration/version.ts +1 -1
  34. package/src/hooks/useAgentPlanEvents.ts +188 -0
  35. package/src/messages/en-GB.json +5 -0
  36. package/src/rtk/endpoints/agentQueryResults.ts +19 -0
  37. package/src/rtk/endpoints/index.ts +1 -0
  38. package/src/types/search.ts +19 -4
  39. package/src/utils/compareVersions.spec.ts +5 -0
  40. package/src/utils/compareVersions.ts +55 -23
  41. package/src/components/WfoAgent/ToolProgress/DiscoverFilterPathsDisplay.tsx +0 -99
  42. package/src/components/WfoAgent/ToolProgress/RunSearchDisplay.tsx +0 -34
  43. package/src/components/WfoAgent/ToolProgress/SetFilterTreeDisplay.styles.ts +0 -62
  44. package/src/components/WfoAgent/ToolProgress/SetFilterTreeDisplay.tsx +0 -107
  45. package/src/components/WfoAgent/ToolProgress/StartNewSearchDisplay.tsx +0 -60
  46. package/src/components/WfoAgent/ToolProgress/ToolProgress.tsx +0 -98
  47. package/src/components/WfoAgent/ToolProgress/index.ts +0 -1
  48. package/src/components/WfoAgent/ToolProgress/styles.ts +0 -52
@@ -1,12 +1,12 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@7.5.0 build
2
+ > @orchestrator-ui/orchestrator-ui-components@7.6.0 build
3
3
  > npm run generate-version && tsup src/index.ts
4
4
 
5
5
 
6
- > @orchestrator-ui/orchestrator-ui-components@7.5.0 generate-version
6
+ > @orchestrator-ui/orchestrator-ui-components@7.6.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
- src/configuration/version.ts 45ms
9
+ src/configuration/version.ts 46ms
10
10
  CLI Building entry: src/index.ts
11
11
  CLI Using tsconfig: tsconfig.json
12
12
  CLI tsup v8.5.1
@@ -14,9 +14,9 @@ src/configuration/version.ts 45ms
14
14
  CLI Target: es2022
15
15
  CLI Cleaning output folder
16
16
  ESM Build start
17
- ESM dist/index.js 809.37 KB
17
+ ESM dist/index.js 809.88 KB
18
18
  ESM dist/index.js.map 1.38 MB
19
- ESM ⚡️ Build success in 288ms
19
+ ESM ⚡️ Build success in 309ms
20
20
  DTS Build start
21
- DTS ⚡️ Build success in 20806ms
22
- DTS dist/index.d.ts 1.48 MB
21
+ DTS ⚡️ Build success in 22487ms
22
+ DTS dist/index.d.ts 1.50 MB
@@ -1,4 +1,4 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@7.5.0 lint
2
+ > @orchestrator-ui/orchestrator-ui-components@7.6.0 lint
3
3
  > eslint
4
4
 
@@ -1,23 +1,23 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@7.5.0 test
2
+ > @orchestrator-ui/orchestrator-ui-components@7.6.0 test
3
3
  > jest
4
4
 
5
5
  PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
6
6
  PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
7
7
  PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
8
- PASS Wfo-UI Tests src/utils/string.spec.ts
9
8
  PASS Wfo-UI Tests src/utils/date.spec.ts
10
- PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
11
9
  PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
10
+ PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
11
+ PASS Wfo-UI Tests src/utils/string.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
+ PASS Wfo-UI Tests src/rtk/utils.spec.ts
16
17
  PASS Wfo-UI Tests src/utils/optionalArray.spec.ts
18
+ PASS Wfo-UI Tests src/utils/getQueryParams.spec.ts
17
19
  PASS Wfo-UI Tests src/utils/resultFlattener.spec.ts
18
- PASS Wfo-UI Tests src/rtk/utils.spec.ts
19
20
  PASS Wfo-UI Tests src/messages/getTranslationMessages.spec.ts
20
- PASS Wfo-UI Tests src/utils/getQueryParams.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
23
23
  PASS Wfo-UI Tests src/utils/getToastMessage.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.281 s)
39
+ PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.469 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: 7.914 s
44
+ Time: 8.107 s
45
45
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 7.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 57220a3: Add event-driven agent plan progress rendering and artifact-based query result fetching
8
+ - 490fdb2: Fix onChange behaviour for number field and update pydantic forms version.
9
+
10
+ ### Patch Changes
11
+
12
+ - 0a0eb0f: Fix pipeline for installing NPM due to module 'promise-retry'
13
+ - 746e439: Fix compatibility badge being invisible, add check for alpha pre-releases
14
+ - e8c4e14: 118 Reorder action column and optimize width of columns
15
+ - cf1bd85: WfoClipboardCopy icon darker to improve visibility
16
+
17
+ ## 7.5.1
18
+
19
+ ### Patch Changes
20
+
21
+ - 74b893a: Submenu in submenu menu layout fix
22
+
3
23
  ## 7.5.0
4
24
 
5
25
  ### Minor Changes