@orchestrator-ui/orchestrator-ui-components 8.7.2 → 8.8.1

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 (52) hide show
  1. package/.turbo/turbo-build.log +8 -8
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/.turbo/turbo-test.log +17 -10
  4. package/CHANGELOG.md +28 -0
  5. package/dist/index.d.ts +506 -19
  6. package/dist/index.js +614 -399
  7. package/dist/index.js.map +1 -1
  8. package/jest.config.cjs +9 -8
  9. package/package.json +1 -1
  10. package/src/components/WfoBadges/WfoWorkflowTargetBadge/WfoWorkflowTargetBadge.tsx +2 -2
  11. package/src/components/WfoContentHeader/WfoContentHeader.tsx +1 -1
  12. package/src/components/WfoInlineNoteEdit/WfoProcessListNoteEdit.spec.tsx +35 -0
  13. package/src/components/WfoInlineNoteEdit/WfoProcessListNoteEdit.tsx +7 -9
  14. package/src/components/WfoProcessList/WfoProcessListDeltaPopover.tsx +1 -1
  15. package/src/components/WfoProcessList/WfoProcessesList.tsx +7 -5
  16. package/src/components/WfoSubscription/WfoProcessesTimeline.tsx +21 -7
  17. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActions.tsx +25 -9
  18. package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionDetailSection.tsx +1 -1
  19. package/src/components/WfoSubscription/styles.ts +6 -0
  20. package/src/components/WfoSubscription/utils/utils.ts +2 -4
  21. package/src/components/WfoTable/WfoStructuredSearchTable/WfoExpandingSearchRow.tsx +0 -1
  22. package/src/components/WfoTable/WfoStructuredSearchTable/WfoFilterBuilder.tsx +30 -3
  23. package/src/components/WfoTable/WfoStructuredSearchTable/WfoOperatorSelector.spec.tsx +143 -0
  24. package/src/components/WfoTable/WfoStructuredSearchTable/WfoOperatorSelector.tsx +33 -11
  25. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRestoreLoop.spec.tsx +130 -0
  26. package/src/components/WfoTable/WfoStructuredSearchTable/WfoStructuredSearchTable.tsx +40 -1
  27. package/src/components/WfoTable/WfoStructuredSearchTable/WfoValueEditor.spec.tsx +60 -0
  28. package/src/components/WfoTable/WfoStructuredSearchTable/WfoValueEditor.tsx +22 -4
  29. package/src/components/WfoTable/WfoStructuredSearchTable/styles.ts +8 -9
  30. package/src/components/WfoTable/WfoStructuredSearchTable/utils.spec.ts +56 -0
  31. package/src/components/WfoTable/WfoStructuredSearchTable/utils.ts +40 -1
  32. package/src/components/WfoTable/WfoTable/WfoTable.tsx +5 -1
  33. package/src/components/WfoTable/WfoTable/WfoTableDataRows.tsx +11 -2
  34. package/src/components/WfoTable/WfoTable/WfoTableExpandedRowReveal.spec.tsx +120 -0
  35. package/src/components/WfoTable/WfoTable/styles.ts +6 -0
  36. package/src/components/WfoTable/utils/tableConfigPersistence.ts +1 -0
  37. package/src/components/WfoTimeline/styles.ts +1 -1
  38. package/src/components/WfoWorkflowUserGuide/WfoPageWithUserGuide.tsx +8 -2
  39. package/src/components/WfoWorkflowUserGuide/WfoWorkflowGuideExpandablePanel.tsx +39 -30
  40. package/src/components/WfoWorkflowUserGuide/styles.ts +55 -7
  41. package/src/configuration/constants.ts +1 -1
  42. package/src/configuration/version.ts +1 -1
  43. package/src/hooks/usePathAutoComplete.spec.tsx +64 -0
  44. package/src/hooks/usePathAutoComplete.ts +98 -41
  45. package/src/hooks/useStoredTableConfig.ts +1 -0
  46. package/src/messages/en-GB.json +3 -1
  47. package/src/messages/nl-NL.json +4 -2
  48. package/src/pages/WfoSearchPocPage.tsx +19 -18
  49. package/src/pages/tasks/WfoTasksListPage.tsx +1 -0
  50. package/src/rtk/endpoints/search.ts +1 -0
  51. package/src/types/types.ts +11 -11
  52. package/src/utils/getDefaultTableConfig.ts +2 -0
@@ -1,8 +1,8 @@
1
- npm notice run @orchestrator-ui/orchestrator-ui-components@8.7.2 build
1
+ npm notice run @orchestrator-ui/orchestrator-ui-components@8.8.1 build
2
2
  npm notice run npm run generate-version && tsup src/index.ts
3
- npm notice run @orchestrator-ui/orchestrator-ui-components@8.7.2 generate-version
3
+ npm notice run @orchestrator-ui/orchestrator-ui-components@8.8.1 generate-version
4
4
  npm notice run node -p "'export const ORCHESTRATOR_UI_LIBRARY_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'" > src/configuration/version.ts && prettier --write src/configuration/version.ts
5
- src/configuration/version.ts 44ms
5
+ src/configuration/version.ts 43ms
6
6
  CLI Building entry: src/index.ts
7
7
  CLI Using tsconfig: tsconfig.json
8
8
  CLI tsup v8.5.1
@@ -10,9 +10,9 @@ src/configuration/version.ts 44ms
10
10
  CLI Target: es2022
11
11
  CLI Cleaning output folder
12
12
  ESM Build start
13
- ESM dist/index.js 878.76 KB
14
- ESM dist/index.js.map 1.51 MB
15
- ESM ⚡️ Build success in 314ms
13
+ ESM dist/index.js 886.65 KB
14
+ ESM dist/index.js.map 1.53 MB
15
+ ESM ⚡️ Build success in 294ms
16
16
  DTS Build start
17
- DTS ⚡️ Build success in 24972ms
18
- DTS dist/index.d.ts 1.53 MB
17
+ DTS ⚡️ Build success in 20664ms
18
+ DTS dist/index.d.ts 1.56 MB
@@ -1,2 +1,2 @@
1
- npm notice run @orchestrator-ui/orchestrator-ui-components@8.7.2 lint
1
+ npm notice run @orchestrator-ui/orchestrator-ui-components@8.8.1 lint
2
2
  npm notice run eslint
@@ -1,31 +1,38 @@
1
- npm notice run @orchestrator-ui/orchestrator-ui-components@8.7.2 test
1
+ npm notice run @orchestrator-ui/orchestrator-ui-components@8.8.1 test
2
2
  npm notice run jest
3
- PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
3
+ PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
4
4
  PASS Wfo-UI Tests src/utils/date.spec.ts
5
+ PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
5
6
  PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
6
7
  PASS Wfo-UI Tests src/utils/string.spec.ts
8
+ PASS Wfo-UI Tests src/components/WfoTable/WfoStructuredSearchTable/WfoOperatorSelector.spec.tsx
9
+ PASS Wfo-UI Tests src/components/WfoTable/WfoStructuredSearchTable/WfoRestoreLoop.spec.tsx
7
10
  PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
8
- PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
9
11
  PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
12
+ PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.73 s)
10
13
  PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts
14
+ PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoTableExpandedRowReveal.spec.tsx
11
15
  PASS Wfo-UI Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
12
16
  PASS Wfo-UI Tests src/utils/compareVersions.spec.ts
13
17
  PASS Wfo-UI Tests src/utils/optionalArray.spec.ts
14
18
  PASS Wfo-UI Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
19
+ PASS Wfo-UI Tests src/components/WfoPydanticForm/fields/WfoCron.spec.ts
20
+ PASS Wfo-UI Tests src/components/WfoTable/WfoStructuredSearchTable/utils.spec.ts
15
21
  PASS Wfo-UI Tests src/messages/getTranslationMessages.spec.ts
22
+ PASS Wfo-UI Tests src/hooks/usePathAutoComplete.spec.tsx
16
23
  PASS Wfo-UI Tests src/rtk/utils.spec.ts
17
- PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (6.379 s)
18
- PASS Wfo-UI Tests src/components/WfoPydanticForm/fields/WfoCron.spec.ts (5.541 s)
24
+ PASS Wfo-UI Tests src/components/WfoTable/WfoStructuredSearchTable/WfoValueEditor.spec.tsx
19
25
  PASS Wfo-UI Tests src/utils/resultFlattener.spec.ts
20
26
  PASS Wfo-UI Tests src/utils/getQueryParams.spec.ts
27
+ PASS Wfo-UI Tests src/components/WfoInlineNoteEdit/WfoProcessListNoteEdit.spec.tsx
21
28
  PASS Wfo-UI Tests src/utils/getEnvironmentVariables.spec.ts
22
29
  PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoSidebar/utils/menuItemIsAllowed.spec.ts
30
+ PASS Wfo-UI Tests src/components/WfoTable/WfoTableSettingsModal/WfoTableSettingsModal.spec.ts
23
31
  PASS Wfo-UI Tests src/utils/getToastMessage.spec.ts
24
32
  PASS Wfo-UI Tests src/components/WfoTable/utils/columns.spec.ts
25
- PASS Wfo-UI Tests src/components/WfoTable/WfoTableSettingsModal/WfoTableSettingsModal.spec.ts
26
33
  PASS Wfo-UI Tests src/utils/toSortedObjectKeys.spec.ts
27
- PASS Wfo-UI Tests src/components/WfoWorkflowSteps/stepListUtils.spec.ts
28
34
  PASS Wfo-UI Tests src/utils/filterData.spec.ts
35
+ PASS Wfo-UI Tests src/components/WfoWorkflowSteps/stepListUtils.spec.ts
29
36
  PASS Wfo-UI Tests src/utils/toObjectWithSerializedValues.spec.ts
30
37
  PASS Wfo-UI Tests src/utils/getTokenName.spec.ts
31
38
  PASS Wfo-UI Tests src/utils/uuid.spec.ts
@@ -39,8 +46,8 @@ PASS Wfo-UI Tests src/utils/getQueryUrl.spec.ts
39
46
  PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
40
47
  PASS Wfo-UI Tests src/components/WfoPydanticForm/fields/wfoPydanticFormUtils.spec.ts
41
48
 
42
- Test Suites: 38 passed, 38 total
43
- Tests: 257 passed, 257 total
49
+ Test Suites: 45 passed, 45 total
50
+ Tests: 279 passed, 279 total
44
51
  Snapshots: 0 total
45
- Time: 10.181 s
52
+ Time: 11.117 s
46
53
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 8.8.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 074dce3: Adjust publish to npm action
8
+ - e6a276d: 176 Fix styling issues with worfklow guide panel- #2673
9
+ - 8bc73e4: Fix the workflow guide panel button sliding under the sticky timeline when the page is scrolled to the end on shorter viewports: its fixed minimum height could exceed the available viewport space, so the sticky bottom clamp pushed its top out of view. The minimum height is now capped by the same space the maximum height already uses
10
+
11
+ ## 8.8.0
12
+
13
+ ### Minor Changes
14
+
15
+ - 1ef8034: Adds toggle to show/hide validate tasks on subscription details processes tab
16
+
17
+ ### Patch Changes
18
+
19
+ - 3b413e5: PR-2677: Change hardcoded colors WfoSearch to theme colors
20
+ - b84f608: add notes column to task list page
21
+ - b8aaed7: Fix scheduled task create/delete requests to use the canonical /api/schedules/ endpoint with a trailing slash, avoiding unnecessary HTTP redirects
22
+ - 67e77eb: 205 Add toggle to show match details for rows in search page. With the toggle off, a row's match details are revealed while hovering the row, without the flickering that occurred when the cursor sat on the row edge
23
+ - 2558ed2: Fix the note column on the workflows and tasks lists keeping the previous page's note when paginating to a row without a note. EuiInlineEditText only follows its value prop while the value is truthy, so empty notes are now passed as the invisible character, the same way the subscription note edits already do
24
+
25
+ ## 8.7.3
26
+
27
+ ### Patch Changes
28
+
29
+ - f88e3ef: Bug fixes for subscription search
30
+
3
31
  ## 8.7.2
4
32
 
5
33
  ### Patch Changes