@orchestrator-ui/orchestrator-ui-components 8.4.5 → 8.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 (77) hide show
  1. package/.turbo/turbo-build.log +10 -14
  2. package/.turbo/turbo-lint.log +2 -4
  3. package/.turbo/turbo-test.log +7 -9
  4. package/CHANGELOG.md +17 -0
  5. package/dist/index.d.ts +1968 -630
  6. package/dist/index.js +4389 -2362
  7. package/dist/index.js.map +1 -1
  8. package/package.json +2 -1
  9. package/src/components/WfoAutoExpandableTextArea/WfoAutoExpandableTextArea.tsx +54 -0
  10. package/src/components/WfoAutoExpandableTextArea/index.ts +1 -0
  11. package/src/components/WfoAutoExpandableTextArea/styles.ts +18 -0
  12. package/src/components/WfoPageTemplate/paths.ts +1 -0
  13. package/src/components/WfoPydanticForm/WfoPydanticForm.tsx +23 -1
  14. package/src/components/WfoSearchBar/WfoSearchField.tsx +0 -1
  15. package/src/components/WfoSearchPage/WfoFilterGroup/WfoFilterGroup.tsx +5 -5
  16. package/src/components/WfoSearchPage/WfoSearch/WfoSearch.tsx +12 -5
  17. package/src/components/WfoSearchPage/constants.ts +0 -4
  18. package/src/components/WfoSearchPage/utils.ts +75 -20
  19. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActionExpandableMenuItem.tsx +36 -18
  20. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActionsMenuItem.tsx +38 -2
  21. package/src/components/WfoSubscription/utils/index.ts +3 -0
  22. package/src/components/WfoSubscription/utils/utils.spec.ts +39 -4
  23. package/src/components/WfoSubscription/utils/utils.ts +10 -4
  24. package/src/components/WfoTable/WfoStructuredSearchTable/WfoAddGroupAction.tsx +19 -0
  25. package/src/components/WfoTable/WfoStructuredSearchTable/WfoAddRuleAction.tsx +23 -0
  26. package/src/components/WfoTable/WfoStructuredSearchTable/WfoCombinatorSelector.tsx +33 -0
  27. package/src/components/WfoTable/WfoStructuredSearchTable/WfoExpandingSearchRow.tsx +38 -0
  28. package/src/components/WfoTable/WfoStructuredSearchTable/WfoFieldSelector.tsx +138 -0
  29. package/src/components/WfoTable/WfoStructuredSearchTable/WfoFilterBuilder.tsx +198 -0
  30. package/src/components/WfoTable/WfoStructuredSearchTable/WfoInlineCombinator.tsx +17 -0
  31. package/src/components/WfoTable/WfoStructuredSearchTable/WfoOperatorSelector.tsx +33 -0
  32. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRangeEditor.tsx +64 -0
  33. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRemoveGroupAction.tsx +21 -0
  34. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRemoveRuleAction.tsx +20 -0
  35. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRule.tsx +16 -0
  36. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRuleGroup.tsx +76 -0
  37. package/src/components/WfoTable/WfoStructuredSearchTable/WfoSearchFieldWithActions.tsx +56 -0
  38. package/src/components/WfoTable/WfoStructuredSearchTable/WfoStructuredSearchTable.tsx +326 -0
  39. package/src/components/WfoTable/WfoStructuredSearchTable/WfoValueEditor.tsx +159 -0
  40. package/src/components/WfoTable/WfoStructuredSearchTable/index.ts +2 -0
  41. package/src/components/WfoTable/WfoStructuredSearchTable/styles.ts +182 -0
  42. package/src/components/WfoTable/WfoStructuredSearchTable/utils.ts +45 -0
  43. package/src/components/WfoTable/WfoTable/WfoDragHandler.tsx +4 -2
  44. package/src/components/WfoTable/WfoTableSettingsModal/WfoTableSettingsModal.tsx +9 -0
  45. package/src/components/WfoTable/index.ts +2 -6
  46. package/src/components/WfoTitleWithWebsocketBadge/WfoTitleWithWebsocketBadge.tsx +14 -6
  47. package/src/components/WfoWorkflowSteps/WfoStep/WfoStep.tsx +1 -0
  48. package/src/components/WfoWorkflowSteps/WfoStepList/WfoStepList.tsx +3 -0
  49. package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/WfoWorkflowStepList.tsx +32 -12
  50. package/src/components/WfoWorkflowUserGuide/WfoPageWithUserGuide.tsx +38 -0
  51. package/src/components/WfoWorkflowUserGuide/WfoWorkflowGuideExpandablePanel.tsx +151 -0
  52. package/src/components/WfoWorkflowUserGuide/index.ts +2 -0
  53. package/src/components/WfoWorkflowUserGuide/styles.ts +87 -0
  54. package/src/components/index.ts +2 -0
  55. package/src/configuration/version.ts +1 -1
  56. package/src/contexts/OrchestratorConfigContext.tsx +1 -0
  57. package/src/hooks/index.ts +1 -0
  58. package/src/hooks/usePathAutoComplete.ts +3 -4
  59. package/src/hooks/useSearch.ts +20 -15
  60. package/src/hooks/useSearchPagination.ts +11 -8
  61. package/src/hooks/useUrlParams.ts +3 -5
  62. package/src/icons/WfoTrashFilled.tsx +13 -0
  63. package/src/icons/WfoXMarkSmall.tsx +2 -2
  64. package/src/icons/index.ts +1 -0
  65. package/src/messages/en-GB.json +95 -8
  66. package/src/messages/nl-NL.json +24 -5
  67. package/src/pages/WfoSearchPocPage.tsx +528 -0
  68. package/src/pages/index.ts +1 -0
  69. package/src/pages/processes/WfoProcessDetail.tsx +10 -10
  70. package/src/pages/processes/WfoProcessDetailPage.tsx +1 -0
  71. package/src/pages/processes/WfoStartProcessPage.tsx +15 -19
  72. package/src/rtk/api.ts +1 -0
  73. package/src/rtk/endpoints/index.ts +1 -0
  74. package/src/rtk/endpoints/search.ts +45 -10
  75. package/src/rtk/endpoints/workflowGuides.ts +25 -0
  76. package/src/types/search.ts +24 -5
  77. package/src/types/types.ts +10 -1
@@ -1,12 +1,8 @@
1
-
2
- > @orchestrator-ui/orchestrator-ui-components@8.4.5 build
3
- > npm run generate-version && tsup src/index.ts
4
-
5
-
6
- > @orchestrator-ui/orchestrator-ui-components@8.4.5 generate-version
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
-
9
- src/configuration/version.ts 51ms
1
+ npm notice run @orchestrator-ui/orchestrator-ui-components@8.6.0 build
2
+ npm notice run npm run generate-version && tsup src/index.ts
3
+ npm notice run @orchestrator-ui/orchestrator-ui-components@8.6.0 generate-version
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 56ms
10
6
  CLI Building entry: src/index.ts
11
7
  CLI Using tsconfig: tsconfig.json
12
8
  CLI tsup v8.5.1
@@ -14,9 +10,9 @@ src/configuration/version.ts 51ms
14
10
  CLI Target: es2022
15
11
  CLI Cleaning output folder
16
12
  ESM Build start
17
- ESM dist/index.js 786.06 KB
18
- ESM dist/index.js.map 1.34 MB
19
- ESM ⚡️ Build success in 310ms
13
+ ESM dist/index.js 863.57 KB
14
+ ESM dist/index.js.map 1.48 MB
15
+ ESM ⚡️ Build success in 334ms
20
16
  DTS Build start
21
- DTS ⚡️ Build success in 21429ms
22
- DTS dist/index.d.ts 1.49 MB
17
+ DTS ⚡️ Build success in 23758ms
18
+ DTS dist/index.d.ts 1.56 MB
@@ -1,4 +1,2 @@
1
-
2
- > @orchestrator-ui/orchestrator-ui-components@8.4.5 lint
3
- > eslint
4
-
1
+ npm notice run @orchestrator-ui/orchestrator-ui-components@8.6.0 lint
2
+ npm notice run eslint
@@ -1,14 +1,12 @@
1
-
2
- > @orchestrator-ui/orchestrator-ui-components@8.4.5 test
3
- > jest
4
-
1
+ npm notice run @orchestrator-ui/orchestrator-ui-components@8.6.0 test
2
+ npm notice run jest
3
+ PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
5
4
  PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
6
5
  PASS Wfo-UI Tests src/utils/date.spec.ts
6
+ PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
7
7
  PASS Wfo-UI Tests src/utils/string.spec.ts
8
8
  PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
9
- PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
10
9
  PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
11
- PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
12
10
  PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts
13
11
  PASS Wfo-UI Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
14
12
  PASS Wfo-UI Tests src/utils/compareVersions.spec.ts
@@ -36,10 +34,10 @@ PASS Wfo-UI Tests src/utils/getQueryVariablesForExport.spec.ts
36
34
  PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
37
35
  PASS Wfo-UI Tests src/utils/getQueryUrl.spec.ts
38
36
  PASS Wfo-UI Tests src/components/WfoPydanticForm/fields/wfoPydanticFormUtils.spec.ts
39
- PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.372 s)
37
+ PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.813 s)
40
38
 
41
39
  Test Suites: 35 passed, 35 total
42
- Tests: 227 passed, 227 total
40
+ Tests: 229 passed, 229 total
43
41
  Snapshots: 0 total
44
- Time: 8.084 s
42
+ Time: 8.743 s
45
43
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 8.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 2447ecc: 163: Replace the crosses with a trash icon, move the AND/OR toggle between the two search rules, fix the scrollbar in textarea
8
+
9
+ ## 8.5.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 3a19051: 171 Add workflow user guides to forms and worflow steps list page
14
+
15
+ ### Patch Changes
16
+
17
+ - 3518b34: Show error toast on tasks that return 412 error code
18
+ - 10bec09: Add active tab component to filter on subscription statuses search poc page
19
+
3
20
  ## 8.4.5
4
21
 
5
22
  ### Patch Changes