@orchestrator-ui/orchestrator-ui-components 5.8.1 → 5.9.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 +7 -7
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +13 -13
- package/CHANGELOG.md +6 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +199 -151
- package/dist/index.js.map +1 -1
- package/package.json +9 -9
- package/src/components/WfoTree/treeUtils.spec.ts +3 -3
- 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": "5.
|
|
3
|
+
"version": "5.9.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Library of UI Components used to display the workflow orchestrator frontend",
|
|
6
6
|
"author": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"invariant": "^2.2.4",
|
|
43
43
|
"lodash": "^4.17.21",
|
|
44
44
|
"moment": "^2.29.4",
|
|
45
|
-
"moment-timezone": "^0.
|
|
45
|
+
"moment-timezone": "^0.6.0",
|
|
46
46
|
"next-auth": "^4.24.5",
|
|
47
47
|
"next-intl": "^3.26.5",
|
|
48
48
|
"next-query-params": "^5.0.0",
|
|
@@ -64,18 +64,18 @@
|
|
|
64
64
|
"@orchestrator-ui/eslint-config-custom": "*",
|
|
65
65
|
"@orchestrator-ui/jest-config": "*",
|
|
66
66
|
"@reduxjs/toolkit": "^2.0.1",
|
|
67
|
-
"@testing-library/jest-dom": "^6.
|
|
67
|
+
"@testing-library/jest-dom": "^6.9.0",
|
|
68
68
|
"@testing-library/react": "^16.0.1",
|
|
69
69
|
"@testing-library/user-event": "^14.5.2",
|
|
70
70
|
"@types/invariant": "^2.2.33",
|
|
71
|
-
"@types/jest": "^
|
|
71
|
+
"@types/jest": "^30.0.0",
|
|
72
72
|
"@types/object-hash": "^3.0.6",
|
|
73
73
|
"@types/scroll-into-view": "^1.16.3",
|
|
74
|
-
"babel-jest": "^
|
|
75
|
-
"jest": "^
|
|
76
|
-
"jest-environment-jsdom": "^
|
|
77
|
-
"jest-watch-typeahead": "^
|
|
78
|
-
"tsup": "^8.0
|
|
74
|
+
"babel-jest": "^30.2.0",
|
|
75
|
+
"jest": "^30.2.0",
|
|
76
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
77
|
+
"jest-watch-typeahead": "^3.0.1",
|
|
78
|
+
"tsup": "^8.5.0",
|
|
79
79
|
"typescript": "^5.5.2",
|
|
80
80
|
"uniforms-bridge-simple-schema-2": "^3.8.1"
|
|
81
81
|
},
|
|
@@ -115,9 +115,9 @@ describe('getWfoTreeNodeDepth', () => {
|
|
|
115
115
|
},
|
|
116
116
|
};
|
|
117
117
|
|
|
118
|
-
expect(() =>
|
|
119
|
-
|
|
120
|
-
)
|
|
118
|
+
expect(() => getWfoTreeNodeDepth(invalidNode, idToNodeMap)).toThrow(
|
|
119
|
+
'Parent node for 1 not found.',
|
|
120
|
+
);
|
|
121
121
|
});
|
|
122
122
|
});
|
|
123
123
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const ORCHESTRATOR_UI_LIBRARY_VERSION = '5.
|
|
1
|
+
export const ORCHESTRATOR_UI_LIBRARY_VERSION = '5.9.0';
|