@orchestrator-ui/orchestrator-ui-components 3.2.0 → 3.3.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 (40) hide show
  1. package/.turbo/turbo-build.log +8 -8
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/.turbo/turbo-test.log +7 -7
  4. package/CHANGELOG.md +14 -0
  5. package/dist/index.d.ts +603 -16
  6. package/dist/index.js +1892 -1609
  7. package/dist/index.js.map +1 -1
  8. package/package.json +1 -1
  9. package/src/components/{WfoInlineNoteEdit/WfoInlineNoteEdit.tsx → WfoInlineEdit/WfoInlineEdit.tsx} +10 -10
  10. package/src/components/WfoInlineEdit/index.ts +1 -0
  11. package/src/components/WfoInlineNoteEdit/WfoSubscriptionDetailNoteEdit.tsx +4 -3
  12. package/src/components/WfoInlineNoteEdit/WfoSubscriptionNoteEdit.tsx +4 -3
  13. package/src/components/WfoInlineNoteEdit/index.ts +0 -1
  14. package/src/components/WfoPageTemplate/WfoPageHeader/WfoHamburgerMenu.tsx +66 -5
  15. package/src/components/WfoSubscription/WfoCustomerDescriptionsField.tsx +100 -26
  16. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActionExpandableMenuItem.tsx +1 -2
  17. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActions.tsx +2 -3
  18. package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionDetailSection.tsx +11 -15
  19. package/src/components/WfoSubscription/styles.ts +12 -0
  20. package/src/components/WfoSummary/WfoSummaryCard.tsx +11 -3
  21. package/src/components/WfoTable/utils/tableUtils.spec.ts +37 -1
  22. package/src/components/WfoTable/utils/tableUtils.ts +11 -1
  23. package/src/components/index.ts +1 -0
  24. package/src/configuration/constants.ts +2 -0
  25. package/src/configuration/version.ts +1 -1
  26. package/src/icons/heroicons/WfoSquareStack3dStack.tsx +27 -0
  27. package/src/icons/heroicons/index.ts +1 -0
  28. package/src/messages/en-GB.json +10 -3
  29. package/src/messages/nl-NL.json +6 -1
  30. package/src/pages/metadata/WfoTasksPage.tsx +21 -6
  31. package/src/pages/metadata/WfoWorkflowsPage.tsx +19 -2
  32. package/src/pages/metadata/taskListObjectMapper.ts +2 -1
  33. package/src/pages/metadata/workflowListObjectMapper.ts +2 -2
  34. package/src/rtk/endpoints/customerDescriptions.ts +54 -0
  35. package/src/rtk/endpoints/metadata/tasks.ts +1 -0
  36. package/src/rtk/endpoints/metadata/workflows.ts +1 -0
  37. package/src/rtk/endpoints/subscriptionDetail.ts +1 -0
  38. package/src/rtk/endpoints/versions.ts +27 -0
  39. package/src/types/types.ts +3 -0
  40. package/src/utils/getDefaultTableConfig.ts +11 -2
@@ -1,12 +1,12 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@3.2.0 build
2
+ > @orchestrator-ui/orchestrator-ui-components@3.3.1 build
3
3
  > npm run generate-version && tsup src/index.ts
4
4
 
5
5
 
6
- > @orchestrator-ui/orchestrator-ui-components@3.2.0 generate-version
6
+ > @orchestrator-ui/orchestrator-ui-components@3.3.1 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 139ms
9
+ src/configuration/version.ts 128ms
10
10
  CLI Building entry: src/index.ts
11
11
  CLI Using tsconfig: tsconfig.build.json
12
12
  CLI tsup v8.3.5
@@ -14,8 +14,8 @@ src/configuration/version.ts 139ms
14
14
  CLI Target: es2020
15
15
  ESM Build start
16
16
  DTS Build start
17
- ESM dist/index.js 1.92 MB
18
- ESM dist/index.js.map 3.50 MB
19
- ESM ⚡️ Build success in 470ms
20
- DTS ⚡️ Build success in 15965ms
21
- DTS dist/index.d.ts 656.34 KB
17
+ ESM dist/index.js 1.93 MB
18
+ ESM dist/index.js.map 3.51 MB
19
+ ESM ⚡️ Build success in 468ms
20
+ DTS ⚡️ Build success in 15966ms
21
+ DTS dist/index.d.ts 673.69 KB
@@ -1,5 +1,5 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@3.2.0 lint
2
+ > @orchestrator-ui/orchestrator-ui-components@3.3.1 lint
3
3
  > eslint "src/**/*.ts*"
4
4
 
5
5
 
@@ -1,17 +1,17 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@3.2.0 test
2
+ > @orchestrator-ui/orchestrator-ui-components@3.3.1 test
3
3
  > jest
4
4
 
5
5
  PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
6
6
  PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
7
- PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
8
7
  PASS Wfo-UI Tests src/utils/date.spec.ts
8
+ PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
9
9
  PASS Wfo-UI Tests src/utils/string.spec.ts
10
10
  PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts
11
11
  PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
12
+ PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
12
13
  PASS Wfo-UI Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
13
14
  PASS Wfo-UI Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
14
- PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
15
15
  PASS Wfo-UI Tests src/rtk/utils.spec.ts
16
16
  PASS Wfo-UI Tests src/utils/resultFlattener.spec.ts
17
17
  PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoSidebar/utils/menuItemIsAllowed.spec.ts
@@ -33,11 +33,11 @@ PASS Wfo-UI Tests src/utils/cacheTag.spec.ts
33
33
  PASS Wfo-UI Tests src/utils/getQueryVariablesForExport.spec.ts
34
34
  PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
35
35
  PASS Wfo-UI Tests src/utils/getQueryUrl.spec.ts
36
- PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.449 s)
37
- PASS Wfo-UI Tests src/components/WfoForms/formFields/utils.spec.ts (6.89 s)
36
+ PASS Wfo-UI Tests src/components/WfoForms/formFields/utils.spec.ts (6.611 s)
37
+ PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.147 s)
38
38
 
39
39
  Test Suites: 33 passed, 33 total
40
- Tests: 205 passed, 205 total
40
+ Tests: 211 passed, 211 total
41
41
  Snapshots: 0 total
42
- Time: 7.681 s
42
+ Time: 7.437 s
43
43
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 3.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 56bdc1d: 1705 Added prop for custom icon summary card
8
+
9
+ ## 3.3.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 0476c1d: Adds an asteriks to every single word search
14
+ - 937c8d6: Adds customer description edit forms
15
+ - 1bb8c3c: Added support for displaying software versions in hamburger menu
16
+
3
17
  ## 3.2.0
4
18
 
5
19
  ### Minor Changes