@orchestrator-ui/orchestrator-ui-components 1.6.0 → 1.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 (35) hide show
  1. package/.turbo/turbo-build.log +5 -5
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/.turbo/turbo-test.log +9 -8
  4. package/CHANGELOG.md +19 -0
  5. package/dist/index.d.ts +1282 -1143
  6. package/dist/index.js +686 -333
  7. package/package.json +1 -1
  8. package/src/components/WfoBadges/WfoProductBlockBadge/WfoProductBlockBadge.tsx +1 -0
  9. package/src/components/WfoPageTemplate/WfoSidebar/WfoSidebar.tsx +10 -0
  10. package/src/components/WfoPageTemplate/paths.ts +1 -0
  11. package/src/components/WfoProcessList/WfoProcessesList.tsx +5 -1
  12. package/src/components/WfoProcessList/processListObjectMappers.ts +7 -4
  13. package/src/components/WfoSubscription/WfoSubscriptionGeneral.tsx +10 -6
  14. package/src/components/WfoTable/utils/constants.ts +1 -0
  15. package/src/components/index.ts +1 -0
  16. package/src/messages/en-GB.json +11 -1
  17. package/src/messages/nl-NL.json +10 -1
  18. package/src/pages/metadata/WfoMetadataPageLayout.tsx +10 -5
  19. package/src/pages/metadata/WfoProductBlocksPage.tsx +25 -1
  20. package/src/pages/metadata/WfoProductsPage.tsx +27 -1
  21. package/src/pages/metadata/WfoResourceTypesPage.tsx +23 -4
  22. package/src/pages/metadata/WfoTasksPage.tsx +226 -0
  23. package/src/pages/metadata/WfoWorkflowsPage.tsx +29 -6
  24. package/src/pages/metadata/index.ts +3 -0
  25. package/src/pages/metadata/taskListObjectMapper.ts +40 -0
  26. package/src/pages/subscriptions/WfoSubscriptionDetailPage.tsx +2 -2
  27. package/src/pages/subscriptions/WfoSubscriptionsListPage.tsx +1 -1
  28. package/src/pages/workflows/index.ts +2 -0
  29. package/src/rtk/endpoints/metadata/index.ts +1 -0
  30. package/src/rtk/endpoints/metadata/tasks.ts +74 -0
  31. package/src/types/types.ts +15 -2
  32. package/src/utils/getDefaultTableConfig.ts +2 -0
  33. package/src/utils/index.ts +1 -0
  34. package/src/utils/resultFlattener.spec.ts +51 -0
  35. package/src/utils/resultFlattener.ts +25 -0
@@ -1,5 +1,5 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@1.6.0 build
2
+ > @orchestrator-ui/orchestrator-ui-components@1.7.0 build
3
3
  > tsup src/index.ts --format esm --dts --tsconfig tsconfig.build.json
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -8,7 +8,7 @@
8
8
  CLI Target: es6
9
9
  ESM Build start
10
10
  DTS Build start
11
- ESM dist/index.js 2.10 MB
12
- ESM ⚡️ Build success in 779ms
13
- DTS ⚡️ Build success in 13176ms
14
- DTS dist/index.d.ts 149.41 KB
11
+ ESM dist/index.js 2.11 MB
12
+ ESM ⚡️ Build success in 706ms
13
+ DTS ⚡️ Build success in 12837ms
14
+ DTS dist/index.d.ts 156.88 KB
@@ -1,5 +1,5 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@1.6.0 lint
2
+ > @orchestrator-ui/orchestrator-ui-components@1.7.0 lint
3
3
  > eslint "src/**/*.ts*"
4
4
 
5
5
 
@@ -1,19 +1,20 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@1.6.0 test
2
+ > @orchestrator-ui/orchestrator-ui-components@1.7.0 test
3
3
  > jest
4
4
 
5
5
  PASS Orchestrator UI Components Tests src/components/WfoForms/formFields/utils.spec.ts
6
6
  PASS Orchestrator UI Components Tests src/utils/date.spec.ts
7
7
  PASS Orchestrator UI Components Tests src/components/WfoSubscription/utils/utils.spec.ts
8
+ PASS Orchestrator UI Components Tests src/utils/getProductNamesFromProcess.spec.ts
8
9
  PASS Orchestrator UI Components Tests src/utils/string.spec.ts
9
10
  PASS Orchestrator UI Components Tests src/pages/processes/timelineUtils.spec.ts
10
- PASS Orchestrator UI Components Tests src/utils/getProductNamesFromProcess.spec.ts
11
- PASS Orchestrator UI Components Tests src/components/WfoTree/treeUtils.spec.ts
12
11
  PASS Orchestrator UI Components Tests src/components/WfoTable/WfoDataGridTable/WfodataGridColumns.spec.ts
12
+ PASS Orchestrator UI Components Tests src/components/WfoTree/treeUtils.spec.ts
13
13
  PASS Orchestrator UI Components Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
14
14
  PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
15
- PASS Orchestrator UI Components Tests src/components/WfoTable/utils/mapSortableAndFilterableValuesToTableColumnConfig.spec.ts
16
15
  PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableUtils.spec.ts
16
+ PASS Orchestrator UI Components Tests src/components/WfoTable/utils/mapSortableAndFilterableValuesToTableColumnConfig.spec.ts
17
+ PASS Orchestrator UI Components Tests src/utils/resultFlattener.spec.ts
17
18
  PASS Orchestrator UI Components Tests src/messages/getTranslationMessages.spec.ts
18
19
  PASS Orchestrator UI Components Tests src/components/WfoTable/utils/columns.spec.ts
19
20
  PASS Orchestrator UI Components Tests src/utils/getToastMessage.spec.ts
@@ -21,14 +22,14 @@ PASS Orchestrator UI Components Tests src/utils/sortObjectKeys.spec.ts
21
22
  PASS Orchestrator UI Components Tests src/components/WfoWorkflowSteps/stepListUtils.spec.ts
22
23
  PASS Orchestrator UI Components Tests src/utils/getTokenName.spec.ts
23
24
  PASS Orchestrator UI Components Tests src/utils/environmentVariables.spec.ts
24
- PASS Orchestrator UI Components Tests src/utils/uuid.spec.ts
25
25
  PASS Orchestrator UI Components Tests src/utils/onlyUnique.spec.ts
26
+ PASS Orchestrator UI Components Tests src/utils/uuid.spec.ts
26
27
  PASS Orchestrator UI Components Tests src/utils/getTypedFieldFromObject.spec.ts
27
28
  PASS Orchestrator UI Components Tests src/utils/getQueryVariablesForExport.spec.ts
28
29
  PASS Orchestrator UI Components Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
29
30
 
30
- Test Suites: 24 passed, 24 total
31
- Tests: 152 passed, 152 total
31
+ Test Suites: 25 passed, 25 total
32
+ Tests: 155 passed, 155 total
32
33
  Snapshots: 0 total
33
- Time: 4.697 s
34
+ Time: 4.712 s
34
35
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 1.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - d61106d: Release of the metadata task page
8
+
9
+ ## 1.6.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 0bf6f82: New metadata taskpage with rtk
14
+
15
+ ## 1.6.1
16
+
17
+ ### Patch Changes
18
+
19
+ - 3cfd9f5: Fixes error in exported values
20
+ - 5807458: 332 Subscription detail page: hides metadata section when there is no data available
21
+
3
22
  ## 1.6.0
4
23
 
5
24
  ### Minor Changes