@orchestrator-ui/orchestrator-ui-components 8.4.0 → 8.4.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.
- package/.turbo/turbo-build.log +6 -6
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +8 -8
- package/CHANGELOG.md +6 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/WfoWorkflowSteps/WfoStep/WfoStep.tsx +1 -1
- package/src/configuration/version.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orchestrator-ui/orchestrator-ui-components",
|
|
3
|
-
"version": "8.4.
|
|
3
|
+
"version": "8.4.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Library of UI Components used to display the workflow orchestrator frontend",
|
|
6
6
|
"author": {
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"typescript": "^5.5.2"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|
|
81
|
-
"@elastic/eui": "^
|
|
81
|
+
"@elastic/eui": "^114.3.0",
|
|
82
82
|
"next": "^15.5.18",
|
|
83
83
|
"next-intl": "^4.9.1",
|
|
84
84
|
"react": "^18.3.1",
|
|
@@ -125,7 +125,7 @@ export const WfoStep = React.forwardRef(
|
|
|
125
125
|
</EuiFlexItem>
|
|
126
126
|
|
|
127
127
|
<EuiFlexGroup css={stepRowStyle}>
|
|
128
|
-
{step.completed && (
|
|
128
|
+
{step.completed && !userInputForm && !hasHtmlMail && (
|
|
129
129
|
<>
|
|
130
130
|
{isExpanded && (
|
|
131
131
|
<WfoCodeViewSelector codeView={codeView} handleCodeViewChange={handleCodeViewChange} />
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const ORCHESTRATOR_UI_LIBRARY_VERSION = '8.4.
|
|
1
|
+
export const ORCHESTRATOR_UI_LIBRARY_VERSION = '8.4.1';
|