@orchestrator-ui/orchestrator-ui-components 8.5.0 → 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 (30) 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 +6 -0
  5. package/dist/index.d.ts +84 -74
  6. package/dist/index.js +2568 -2252
  7. package/dist/index.js.map +1 -1
  8. package/package.json +1 -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/WfoTable/WfoStructuredSearchTable/WfoAddGroupAction.tsx +1 -1
  14. package/src/components/WfoTable/WfoStructuredSearchTable/WfoCombinatorSelector.tsx +3 -0
  15. package/src/components/WfoTable/WfoStructuredSearchTable/WfoFieldSelector.tsx +58 -4
  16. package/src/components/WfoTable/WfoStructuredSearchTable/WfoFilterBuilder.tsx +37 -28
  17. package/src/components/WfoTable/WfoStructuredSearchTable/WfoInlineCombinator.tsx +17 -0
  18. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRemoveRuleAction.tsx +3 -3
  19. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRuleGroup.tsx +6 -3
  20. package/src/components/WfoTable/WfoStructuredSearchTable/WfoSearchFieldWithActions.tsx +56 -0
  21. package/src/components/WfoTable/WfoStructuredSearchTable/WfoStructuredSearchTable.tsx +84 -81
  22. package/src/components/WfoTable/WfoStructuredSearchTable/styles.ts +52 -16
  23. package/src/components/WfoTable/WfoStructuredSearchTable/utils.ts +45 -0
  24. package/src/components/WfoTable/WfoTableSettingsModal/WfoTableSettingsModal.tsx +9 -0
  25. package/src/components/index.ts +1 -0
  26. package/src/configuration/version.ts +1 -1
  27. package/src/messages/en-GB.json +1 -0
  28. package/src/messages/nl-NL.json +1 -0
  29. package/src/pages/WfoSearchPocPage.tsx +151 -25
  30. package/src/types/search.ts +3 -0
@@ -1,12 +1,8 @@
1
-
2
- > @orchestrator-ui/orchestrator-ui-components@8.5.0 build
3
- > npm run generate-version && tsup src/index.ts
4
-
5
-
6
- > @orchestrator-ui/orchestrator-ui-components@8.5.0 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 46ms
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 46ms
14
10
  CLI Target: es2022
15
11
  CLI Cleaning output folder
16
12
  ESM Build start
17
- ESM dist/index.js 850.72 KB
18
- ESM dist/index.js.map 1.46 MB
19
- ESM ⚡️ Build success in 315ms
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 22101ms
22
- DTS dist/index.d.ts 1.55 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.5.0 lint
3
- > eslint
4
-
1
+ npm notice run @orchestrator-ui/orchestrator-ui-components@8.6.0 lint
2
+ npm notice run eslint
@@ -1,20 +1,18 @@
1
-
2
- > @orchestrator-ui/orchestrator-ui-components@8.5.0 test
3
- > jest
4
-
1
+ npm notice run @orchestrator-ui/orchestrator-ui-components@8.6.0 test
2
+ npm notice run jest
5
3
  PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
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
- PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
9
8
  PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
10
- PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
11
9
  PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.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
15
13
  PASS Wfo-UI Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
16
- PASS Wfo-UI Tests src/rtk/utils.spec.ts
17
14
  PASS Wfo-UI Tests src/utils/optionalArray.spec.ts
15
+ PASS Wfo-UI Tests src/rtk/utils.spec.ts
18
16
  PASS Wfo-UI Tests src/utils/resultFlattener.spec.ts
19
17
  PASS Wfo-UI Tests src/utils/getQueryParams.spec.ts
20
18
  PASS Wfo-UI Tests src/messages/getTranslationMessages.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.199 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
40
  Tests: 229 passed, 229 total
43
41
  Snapshots: 0 total
44
- Time: 7.725 s
42
+ Time: 8.743 s
45
43
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
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
+
3
9
  ## 8.5.0
4
10
 
5
11
  ### Minor Changes