@orchestrator-ui/orchestrator-ui-components 7.7.0 → 8.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.
- package/.turbo/turbo-build.log +8 -8
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +7 -7
- package/CHANGELOG.md +17 -0
- package/dist/index.d.ts +384 -9
- package/dist/index.js +2589 -2445
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/WfoBadges/WfoProductStatusBadge/WfoProductStatusBadge.tsx +7 -4
- package/src/components/WfoBadges/WfoVersionIncompatibleBadge/WfoVersionIncompatibleBadge.tsx +4 -3
- package/src/components/WfoInlineNoteEdit/WfoProcessListNoteEdit.tsx +31 -0
- package/src/components/WfoInlineNoteEdit/index.ts +1 -0
- package/src/components/WfoInlineNoteEdit/styles.ts +11 -0
- package/src/components/WfoMetadata/WfoMetadataStatusField.tsx +48 -0
- package/src/components/WfoMetadata/index.ts +2 -0
- package/src/components/WfoProcessList/WfoProcessesList.tsx +8 -0
- package/src/components/WfoProcessList/processListObjectMappers.ts +4 -0
- package/src/components/WfoPydanticForm/fields/WfoArrayField/WfoArrayField.tsx +1 -1
- package/src/components/WfoPydanticForm/fields/WfoInteger.tsx +8 -6
- package/src/components/WfoPydanticForm/fields/WfoObjectField/WfoObjectField.tsx +1 -1
- package/src/components/WfoSubscription/WfoProcessesTimeline.tsx +7 -0
- package/src/components/WfoSubscription/utils/utils.spec.ts +1 -0
- package/src/configuration/version.ts +1 -1
- package/src/messages/en-GB.json +4 -2
- package/src/messages/nl-NL.json +4 -2
- package/src/pages/metadata/WfoProductsPage.tsx +23 -7
- package/src/pages/processes/WfoProcessDetail.tsx +8 -1
- package/src/rtk/api.ts +1 -0
- package/src/rtk/endpoints/metadata/products.ts +23 -2
- package/src/rtk/endpoints/processDetail.ts +25 -1
- package/src/rtk/endpoints/processList.ts +1 -0
- package/src/rtk/endpoints/subscriptionDetail.ts +1 -0
- package/src/types/types.ts +13 -5
- package/src/utils/getProductNamesFromProcess.spec.ts +1 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
|
-
> @orchestrator-ui/orchestrator-ui-components@
|
|
2
|
+
> @orchestrator-ui/orchestrator-ui-components@8.1.0 build
|
|
3
3
|
> npm run generate-version && tsup src/index.ts
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @orchestrator-ui/orchestrator-ui-components@
|
|
6
|
+
> @orchestrator-ui/orchestrator-ui-components@8.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
|
|
9
|
+
src/configuration/version.ts 49ms
|
|
10
10
|
[34mCLI[39m Building entry: src/index.ts
|
|
11
11
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
12
12
|
[34mCLI[39m tsup v8.5.1
|
|
@@ -14,9 +14,9 @@ src/configuration/version.ts 48ms
|
|
|
14
14
|
[34mCLI[39m Target: es2022
|
|
15
15
|
[34mCLI[39m Cleaning output folder
|
|
16
16
|
[34mESM[39m Build start
|
|
17
|
-
[32mESM[39m [1mdist/index.js [22m[
|
|
18
|
-
[32mESM[39m [1mdist/index.js.map [22m[32m1.
|
|
19
|
-
[32mESM[39m ⚡️ Build success in
|
|
17
|
+
[32mESM[39m [1mdist/index.js [22m[32m819.91 KB[39m
|
|
18
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m1.40 MB[39m
|
|
19
|
+
[32mESM[39m ⚡️ Build success in 294ms
|
|
20
20
|
[34mDTS[39m Build start
|
|
21
|
-
[32mDTS[39m ⚡️ Build success in
|
|
22
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m1.
|
|
21
|
+
[32mDTS[39m ⚡️ Build success in 21919ms
|
|
22
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m1.52 MB[39m
|
package/.turbo/turbo-lint.log
CHANGED
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
|
|
2
|
-
> @orchestrator-ui/orchestrator-ui-components@
|
|
2
|
+
> @orchestrator-ui/orchestrator-ui-components@8.1.0 test
|
|
3
3
|
> jest
|
|
4
4
|
|
|
5
|
-
PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
|
|
6
|
-
PASS Wfo-UI Tests src/utils/date.spec.ts
|
|
7
5
|
PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
|
|
8
|
-
PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
|
|
9
6
|
PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
|
|
7
|
+
PASS Wfo-UI Tests src/utils/date.spec.ts
|
|
10
8
|
PASS Wfo-UI Tests src/utils/string.spec.ts
|
|
9
|
+
PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
|
|
10
|
+
PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
|
|
11
11
|
PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
|
|
12
12
|
PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts
|
|
13
13
|
PASS Wfo-UI Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
|
|
@@ -17,8 +17,8 @@ PASS Wfo-UI Tests src/utils/optionalArray.spec.ts
|
|
|
17
17
|
PASS Wfo-UI Tests src/rtk/utils.spec.ts
|
|
18
18
|
PASS Wfo-UI Tests src/utils/getQueryParams.spec.ts
|
|
19
19
|
PASS Wfo-UI Tests src/utils/resultFlattener.spec.ts
|
|
20
|
-
PASS Wfo-UI Tests src/messages/getTranslationMessages.spec.ts
|
|
21
20
|
PASS Wfo-UI Tests src/utils/getEnvironmentVariables.spec.ts
|
|
21
|
+
PASS Wfo-UI Tests src/messages/getTranslationMessages.spec.ts
|
|
22
22
|
PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoSidebar/utils/menuItemIsAllowed.spec.ts
|
|
23
23
|
PASS Wfo-UI Tests src/utils/getToastMessage.spec.ts
|
|
24
24
|
PASS Wfo-UI Tests src/components/WfoTable/utils/columns.spec.ts
|
|
@@ -36,10 +36,10 @@ 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
38
|
PASS Wfo-UI Tests src/components/WfoPydanticForm/fields/wfoPydanticFormUtils.spec.ts
|
|
39
|
-
PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.
|
|
39
|
+
PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.278 s)
|
|
40
40
|
|
|
41
41
|
Test Suites: 35 passed, 35 total
|
|
42
42
|
Tests: 227 passed, 227 total
|
|
43
43
|
Snapshots: 0 total
|
|
44
|
-
Time: 7.
|
|
44
|
+
Time: 7.812 s
|
|
45
45
|
Ran all test suites.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @orchestrator-ui/orchestrator-ui-components
|
|
2
2
|
|
|
3
|
+
## 8.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 16e1ab1: Added 'note' field to graphql queries and a WfoInlineEdit field to multiple places. **NOTE** Requires PATCH /processes/{process_id} endpoint in WFO backend
|
|
8
|
+
- fdb4364: Makes product metadata status and descriptio editable
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 7c4b366: Updates compatability matrix
|
|
13
|
+
|
|
14
|
+
## 8.0.0
|
|
15
|
+
|
|
16
|
+
### Major Changes
|
|
17
|
+
|
|
18
|
+
- 70ef6eb: Updates to verion pydantic-forms-ui 2.\*. Adds override step header and step details option.
|
|
19
|
+
|
|
3
20
|
## 7.7.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|