@orchestrator-ui/orchestrator-ui-components 8.4.1 → 8.4.3
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 +5 -5
- package/CHANGELOG.md +12 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +132 -132
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/src/components/WfoPydanticForm/fields/WfoInteger.tsx +2 -2
- 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.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Library of UI Components used to display the workflow orchestrator frontend",
|
|
6
6
|
"author": {
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"next-query-params": "^5.0.0",
|
|
50
50
|
"object-hash": "^3.0.0",
|
|
51
51
|
"prism-themes": "^1.9.0",
|
|
52
|
-
"pydantic-forms": "^
|
|
52
|
+
"pydantic-forms": "^3.0.0",
|
|
53
53
|
"react-diff-view": "^3.2.0",
|
|
54
54
|
"react-draggable": "^4.4.6",
|
|
55
55
|
"react-redux": "^9.3.0",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"use-query-params": "^2.2.2"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@elastic/eui": "^
|
|
62
|
+
"@elastic/eui": "^113.0.0",
|
|
63
63
|
"@orchestrator-ui/eslint-config-custom": "*",
|
|
64
64
|
"@orchestrator-ui/jest-config": "*",
|
|
65
65
|
"@reduxjs/toolkit": "^2.12.0",
|
|
@@ -78,11 +78,11 @@
|
|
|
78
78
|
"typescript": "^5.5.2"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|
|
81
|
-
"@elastic/eui": "^
|
|
81
|
+
"@elastic/eui": "^113.0.0",
|
|
82
82
|
"next": "^15.5.18",
|
|
83
|
-
"next-intl": "^4.9.1",
|
|
84
83
|
"react": "^18.3.1",
|
|
85
|
-
"react-dom": "^18.3.1"
|
|
84
|
+
"react-dom": "^18.3.1",
|
|
85
|
+
"next-intl": "^3.26.5"
|
|
86
86
|
},
|
|
87
87
|
"type": "module",
|
|
88
88
|
"main": "./dist/index.js",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, { useEffect } from 'react';
|
|
1
|
+
import React, { useEffect, useState } from 'react';
|
|
2
2
|
|
|
3
3
|
import _ from 'lodash';
|
|
4
4
|
import type { PydanticFormControlledElement } from 'pydantic-forms';
|
|
@@ -31,7 +31,7 @@ export const WfoInteger: PydanticFormControlledElement = ({ pydanticFormField, o
|
|
|
31
31
|
// this is imposed by react-hook-form. We try to detect this and extract the actual value
|
|
32
32
|
const fieldName = getFormFieldIdWithPath(pydanticFormField.id);
|
|
33
33
|
const fieldValue = _.isObject(value) && _.has(value, fieldName) ? _.get(value, fieldName) : value;
|
|
34
|
-
const [userInput, setUserInput] =
|
|
34
|
+
const [userInput, setUserInput] = useState<string>('');
|
|
35
35
|
|
|
36
36
|
useEffect(() => {
|
|
37
37
|
if (fieldValue !== undefined && fieldValue !== null) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const ORCHESTRATOR_UI_LIBRARY_VERSION = '8.4.
|
|
1
|
+
export const ORCHESTRATOR_UI_LIBRARY_VERSION = '8.4.3';
|