@orchestrator-ui/orchestrator-ui-components 4.2.0 → 5.1.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 (44) hide show
  1. package/.turbo/turbo-build.log +8 -8
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/.turbo/turbo-test.log +6 -6
  4. package/CHANGELOG.md +26 -0
  5. package/dist/index.d.ts +2115 -336
  6. package/dist/index.js +2147 -1670
  7. package/dist/index.js.map +1 -1
  8. package/package.json +2 -2
  9. package/src/components/WfoBadges/WfoSubscriptionStatusBadge/WfoSubscriptionStatusBadge.tsx +6 -5
  10. package/src/components/WfoBadges/WfoWorkflowTargetBadge/WfoWorkflowTargetBadge.tsx +1 -0
  11. package/src/components/WfoButtonComboBox/WfoButtonComboBox.tsx +79 -0
  12. package/src/components/WfoButtonComboBox/index.ts +1 -0
  13. package/src/components/WfoButtonComboBox/styles.ts +28 -0
  14. package/src/components/WfoForms/formFields/SubscriptionSummaryField.tsx +1 -1
  15. package/src/components/WfoForms/formFields/commonStyles.ts +2 -0
  16. package/src/components/WfoForms/formFields/index.ts +1 -0
  17. package/src/components/WfoPydanticForm/Footer.tsx +75 -34
  18. package/src/components/WfoPydanticForm/Row.tsx +2 -2
  19. package/src/components/WfoPydanticForm/WfoPydanticForm.tsx +99 -8
  20. package/src/components/WfoPydanticForm/fields/Checkbox.tsx +22 -0
  21. package/src/components/WfoPydanticForm/fields/Divider.tsx +17 -0
  22. package/src/components/WfoPydanticForm/fields/Label.tsx +23 -0
  23. package/src/components/WfoPydanticForm/fields/Summary.tsx +125 -0
  24. package/src/components/WfoPydanticForm/fields/Text.tsx +28 -0
  25. package/src/components/WfoPydanticForm/fields/index.ts +5 -0
  26. package/src/components/WfoSubscription/WfoInSyncField.tsx +2 -2
  27. package/src/components/WfoSubscription/WfoSubscription.tsx +3 -2
  28. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActions.tsx +3 -3
  29. package/src/components/WfoSubscription/WfoSubscriptionDetailTree.tsx +64 -14
  30. package/src/components/WfoSubscription/utils/utils.spec.ts +121 -0
  31. package/src/components/WfoSubscription/utils/utils.ts +42 -6
  32. package/src/configuration/version.ts +1 -1
  33. package/src/contexts/TreeContext.tsx +16 -0
  34. package/src/icons/WfoExclamationTriangle.tsx +29 -0
  35. package/src/icons/index.ts +1 -0
  36. package/src/messages/en-GB.json +2 -0
  37. package/src/messages/nl-NL.json +2 -0
  38. package/src/pages/metadata/WfoTasksPage.tsx +11 -26
  39. package/src/pages/metadata/WfoWorkflowsPage.tsx +11 -12
  40. package/src/rtk/endpoints/index.ts +1 -0
  41. package/src/rtk/endpoints/metadata/tasks.ts +9 -4
  42. package/src/rtk/endpoints/metadata/workflows.ts +10 -5
  43. package/src/rtk/endpoints/startOptions.ts +9 -3
  44. package/src/types/types.ts +7 -3
@@ -1,12 +1,12 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@4.2.0 build
2
+ > @orchestrator-ui/orchestrator-ui-components@5.1.0 build
3
3
  > npm run generate-version && tsup src/index.ts
4
4
 
5
5
 
6
- > @orchestrator-ui/orchestrator-ui-components@4.2.0 generate-version
6
+ > @orchestrator-ui/orchestrator-ui-components@5.1.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 41ms
9
+ src/configuration/version.ts 38ms
10
10
  CLI Building entry: src/index.ts
11
11
  CLI Using tsconfig: tsconfig.build.json
12
12
  CLI tsup v8.4.0
@@ -14,8 +14,8 @@ src/configuration/version.ts 41ms
14
14
  CLI Target: es2020
15
15
  ESM Build start
16
16
  DTS Build start
17
- ESM dist/index.js 1.98 MB
18
- ESM dist/index.js.map 3.67 MB
19
- ESM ⚡️ Build success in 689ms
20
- DTS ⚡️ Build success in 20648ms
21
- DTS dist/index.d.ts 697.12 KB
17
+ ESM dist/index.js 1.99 MB
18
+ ESM dist/index.js.map 3.70 MB
19
+ ESM ⚡️ Build success in 623ms
20
+ DTS ⚡️ Build success in 19299ms
21
+ DTS dist/index.d.ts 772.82 KB
@@ -1,4 +1,4 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@4.2.0 lint
2
+ > @orchestrator-ui/orchestrator-ui-components@5.1.0 lint
3
3
  > eslint
4
4
 
@@ -1,9 +1,9 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@4.2.0 test
2
+ > @orchestrator-ui/orchestrator-ui-components@5.1.0 test
3
3
  > jest
4
4
 
5
- PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
6
5
  PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
6
+ PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
7
7
  PASS Wfo-UI Tests src/utils/date.spec.ts
8
8
  PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
9
9
  PASS Wfo-UI Tests src/utils/string.spec.ts
@@ -35,11 +35,11 @@ PASS Wfo-UI Tests src/utils/cacheTag.spec.ts
35
35
  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
- PASS Wfo-UI Tests src/components/WfoForms/formFields/utils.spec.ts (6.868 s)
39
- PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.332 s)
38
+ PASS Wfo-UI Tests src/components/WfoForms/formFields/utils.spec.ts (6.181 s)
39
+ PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts
40
40
 
41
41
  Test Suites: 35 passed, 35 total
42
- Tests: 224 passed, 224 total
42
+ Tests: 226 passed, 226 total
43
43
  Snapshots: 0 total
44
- Time: 8.572 s
44
+ Time: 7.858 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
+ ## 5.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - f3f1417: removes conditional render option to edit description on wf/task metadata page
8
+ - 59c5109: Adds some fields to be used by workflows using pydantic forms
9
+
10
+ ### Patch Changes
11
+
12
+ - c03d83a: Add Exclamation badge
13
+
14
+ ## 5.0.0
15
+
16
+ ### Major Changes
17
+
18
+ - 6b21307: Update target validation to isTask
19
+
20
+ ### Minor Changes
21
+
22
+ - 0f648af: Adds some nullchecks that prevents the app from crashing on some errors
23
+ - 0cab7d9: 326 Adds dropdown to product blocks section on subscription detail page to select all items with a given product block name
24
+
25
+ ### Patch Changes
26
+
27
+ - a500bac: Add product tag to workflow options query
28
+
3
29
  ## 4.2.0
4
30
 
5
31
  ### Minor Changes