@orchestrator-ui/orchestrator-ui-components 1.20.0 → 1.22.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 +4 -4
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +12 -11
- package/CHANGELOG.md +28 -0
- package/dist/index.d.ts +2145 -1937
- package/dist/index.js +1490 -1523
- package/package.json +1 -3
- package/src/components/WfoDiff/WfoDiff.tsx +8 -1
- package/src/components/WfoForms/UserInputForm.tsx +23 -12
- package/src/components/WfoForms/UserInputFormWizard.tsx +2 -2
- package/src/components/WfoForms/formFields/BoolField.tsx +5 -0
- package/src/components/WfoForms/formFields/CustomerField.tsx +4 -1
- package/src/components/WfoForms/formFields/LabelField.tsx +4 -0
- package/src/components/WfoForms/formFields/ListField.tsx +6 -0
- package/src/components/WfoForms/formFields/NumField.tsx +10 -0
- package/src/components/WfoForms/formFields/{SelectField.tsx → SelectField/SelectField.tsx} +8 -8
- package/src/components/WfoForms/formFields/SelectField/index.ts +1 -0
- package/src/components/WfoForms/formFields/{reactSelectStyles.ts → SelectField/styles.ts} +12 -5
- package/src/components/WfoForms/formFields/SubscriptionField.tsx +3 -4
- package/src/components/WfoForms/formFields/TextField.tsx +10 -0
- package/src/components/WfoForms/formFields/commonStyles.ts +21 -0
- package/src/components/WfoForms/formFields/deprecated/ContactPersonNameField.tsx +10 -1
- package/src/components/WfoForms/formFields/deprecated/ImsPortIdField.tsx +29 -52
- package/src/components/WfoForms/formFields/deprecated/IpNetworkField.tsx +5 -0
- package/src/components/WfoForms/formFields/deprecated/types.ts +10 -15
- package/src/components/WfoPageTemplate/WfoSidebar/WfoSidebar.tsx +2 -10
- package/src/components/WfoPageTemplate/WfoSidebar/index.ts +1 -0
- package/src/components/WfoPageTemplate/WfoSidebar/utils/index.ts +1 -0
- package/src/components/WfoPageTemplate/WfoSidebar/utils/menuItemIsAllowed.spec.ts +48 -0
- package/src/components/WfoPageTemplate/WfoSidebar/utils/menuItemIsAllowed.ts +13 -0
- package/src/components/WfoRouteChangeListener/WfoRouteChangeListener.tsx +22 -0
- package/src/components/WfoRouteChangeListener/index.tsx +1 -0
- package/src/components/WfoSubscription/WfoInUseByRelations.tsx +1 -0
- package/src/components/WfoSubscription/WfoSubscription.tsx +1 -0
- package/src/components/WfoSubscription/WfoSubscriptionDetailTree.tsx +26 -5
- package/src/components/WfoSubscription/WfoSubscriptionProductBlock/WfoSubscriptionProductBlock.tsx +13 -7
- package/src/components/WfoSubscription/WfoSubscriptionProductBlock/styles.ts +9 -2
- package/src/components/WfoSubscription/styles.ts +2 -2
- package/src/components/WfoTable/WfoTableWithFilter/WfoTableWithFilter.tsx +1 -0
- package/src/components/WfoTree/WfoTreeNode.tsx +18 -10
- package/src/components/WfoTree/styles.ts +9 -2
- package/src/components/WfoTree/treeUtils.spec.ts +5 -0
- package/src/components/index.ts +1 -0
- package/src/contexts/OrchestratorConfigContext.tsx +0 -3
- package/src/contexts/index.ts +0 -1
- package/src/hooks/useWithOrchestratorTheme.ts +5 -3
- package/src/index.ts +0 -1
- package/src/messages/en-GB.json +5 -1
- package/src/messages/nl-NL.json +6 -2
- package/src/pages/processes/WfoProductInformationWithLink.tsx +5 -1
- package/src/pages/startPage/queryVariables.ts +17 -8
- package/src/rtk/api.ts +17 -2
- package/src/rtk/endpoints/formFields.ts +33 -37
- package/src/rtk/endpoints/productsSummary.ts +4 -2
- package/src/types/types.ts +1 -3
- package/src/api/axios.ts +0 -28
- package/src/api/index.ts +0 -218
- package/src/contexts/ApiClientContext.tsx +0 -34
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @orchestrator-ui/orchestrator-ui-components@1.
|
|
2
|
+
> @orchestrator-ui/orchestrator-ui-components@1.22.0 build
|
|
3
3
|
> tsup src/index.ts --format esm --dts --tsconfig tsconfig.build.json
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -9,6 +9,6 @@
|
|
|
9
9
|
[34mESM[39m Build start
|
|
10
10
|
[34mDTS[39m Build start
|
|
11
11
|
[32mESM[39m [1mdist/index.js [22m[32m2.14 MB[39m
|
|
12
|
-
[32mESM[39m ⚡️ Build success in
|
|
13
|
-
[32mDTS[39m ⚡️ Build success in
|
|
14
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 1001ms
|
|
13
|
+
[32mDTS[39m ⚡️ Build success in 13674ms
|
|
14
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m171.59 KB[39m
|
package/.turbo/turbo-lint.log
CHANGED
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @orchestrator-ui/orchestrator-ui-components@1.
|
|
2
|
+
> @orchestrator-ui/orchestrator-ui-components@1.22.0 test
|
|
3
3
|
> jest
|
|
4
4
|
|
|
5
5
|
PASS Orchestrator UI Components Tests src/components/WfoForms/formFields/utils.spec.ts
|
|
@@ -8,30 +8,31 @@ PASS Orchestrator UI Components Tests src/utils/date.spec.ts
|
|
|
8
8
|
PASS Orchestrator UI Components Tests src/pages/processes/timelineUtils.spec.ts
|
|
9
9
|
PASS Orchestrator UI Components Tests src/utils/getProductNamesFromProcess.spec.ts
|
|
10
10
|
PASS Orchestrator UI Components Tests src/utils/string.spec.ts
|
|
11
|
+
PASS Orchestrator UI Components Tests src/components/WfoTree/treeUtils.spec.ts
|
|
11
12
|
PASS Orchestrator UI Components Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
|
|
12
13
|
PASS Orchestrator UI Components Tests src/components/WfoTable/WfoDataGridTable/WfodataGridColumns.spec.ts
|
|
13
|
-
PASS Orchestrator UI Components Tests src/components/WfoTree/treeUtils.spec.ts
|
|
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
14
|
PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableUtils.spec.ts
|
|
17
|
-
PASS Orchestrator UI Components Tests src/utils/
|
|
15
|
+
PASS Orchestrator UI Components Tests src/components/WfoTable/utils/mapSortableAndFilterableValuesToTableColumnConfig.spec.ts
|
|
16
|
+
PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
|
|
18
17
|
PASS Orchestrator UI Components Tests src/messages/getTranslationMessages.spec.ts
|
|
18
|
+
PASS Orchestrator UI Components Tests src/components/WfoPageTemplate/WfoSidebar/utils/menuItemIsAllowed.spec.ts
|
|
19
|
+
PASS Orchestrator UI Components Tests src/utils/resultFlattener.spec.ts
|
|
19
20
|
PASS Orchestrator UI Components Tests src/utils/getToastMessage.spec.ts
|
|
20
21
|
PASS Orchestrator UI Components Tests src/utils/optionalArray.spec.ts
|
|
21
22
|
PASS Orchestrator UI Components Tests src/components/WfoTable/utils/columns.spec.ts
|
|
22
|
-
PASS Orchestrator UI Components Tests src/utils/filterData.spec.ts
|
|
23
23
|
PASS Orchestrator UI Components Tests src/utils/sortObjectKeys.spec.ts
|
|
24
|
+
PASS Orchestrator UI Components Tests src/utils/filterData.spec.ts
|
|
24
25
|
PASS Orchestrator UI Components Tests src/components/WfoWorkflowSteps/stepListUtils.spec.ts
|
|
25
|
-
PASS Orchestrator UI Components Tests src/utils/environmentVariables.spec.ts
|
|
26
26
|
PASS Orchestrator UI Components Tests src/utils/getTokenName.spec.ts
|
|
27
27
|
PASS Orchestrator UI Components Tests src/utils/onlyUnique.spec.ts
|
|
28
|
+
PASS Orchestrator UI Components Tests src/utils/environmentVariables.spec.ts
|
|
29
|
+
PASS Orchestrator UI Components Tests src/utils/uuid.spec.ts
|
|
28
30
|
PASS Orchestrator UI Components Tests src/utils/getTypedFieldFromObject.spec.ts
|
|
29
31
|
PASS Orchestrator UI Components Tests src/utils/getQueryVariablesForExport.spec.ts
|
|
30
|
-
PASS Orchestrator UI Components Tests src/utils/uuid.spec.ts
|
|
31
32
|
PASS Orchestrator UI Components Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
|
|
32
33
|
|
|
33
|
-
Test Suites:
|
|
34
|
-
Tests:
|
|
34
|
+
Test Suites: 28 passed, 28 total
|
|
35
|
+
Tests: 165 passed, 165 total
|
|
35
36
|
Snapshots: 0 total
|
|
36
|
-
Time: 3.
|
|
37
|
+
Time: 3.813 s
|
|
37
38
|
Ran all test suites.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @orchestrator-ui/orchestrator-ui-components
|
|
2
2
|
|
|
3
|
+
## 1.22.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f6dc4fb: Replaces subscriptionsWithFilter REST call with a graphQL query
|
|
8
|
+
- d48df6b: Exports WFoUserInputForm
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- bcfe7de: 916 Exposes menuItemIsAllowed helper function
|
|
13
|
+
- 50e8f68: Fixes signOut modal showing in some cases
|
|
14
|
+
- 6a7264f: 1086 StartPage: Summary card with product counts ignores terminated instances
|
|
15
|
+
- aca21a5: 1085 Filters out current subscription from the related subscriptions list
|
|
16
|
+
|
|
17
|
+
## 1.21.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- ae0d9a8: Removes some obsolete configuration
|
|
22
|
+
- 560cf74: Adds a different style if a productblock is outside the subscription boundary
|
|
23
|
+
- 5ee68fa: Signs user out when api calls fail because of expired token
|
|
24
|
+
- d4ac80a: Removed axios and react-query dependencies
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- 13d7c6d: Fixes missing aria-labels on icons
|
|
29
|
+
- b9680b8: 626 Applies dark theme to form fields
|
|
30
|
+
|
|
3
31
|
## 1.20.0
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|