@truedat/dd 7.10.3 → 7.10.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/dd",
3
- "version": "7.10.3",
3
+ "version": "7.10.4",
4
4
  "description": "Truedat Web Data Dictionary",
5
5
  "sideEffects": false,
6
6
  "module": "src/index.js",
@@ -48,7 +48,7 @@
48
48
  "@testing-library/jest-dom": "^6.6.3",
49
49
  "@testing-library/react": "^16.3.0",
50
50
  "@testing-library/user-event": "^14.6.1",
51
- "@truedat/test": "7.10.3",
51
+ "@truedat/test": "7.10.4",
52
52
  "identity-obj-proxy": "^3.0.0",
53
53
  "jest": "^29.7.0",
54
54
  "redux-saga-test-plan": "^4.0.6"
@@ -83,5 +83,5 @@
83
83
  "svg-pan-zoom": "^3.6.2",
84
84
  "swr": "^2.3.3"
85
85
  },
86
- "gitHead": "1233e6ea0f6fa0c7d7483ae79df7e79a2733bc53"
86
+ "gitHead": "0dcedbfaed3964ee02a3d2c175e0f96e2fbc9316"
87
87
  }
@@ -13,7 +13,7 @@ const SimilarityColumn = (similarity) => {
13
13
  const { formatMessage } = useIntl();
14
14
  return (
15
15
  <Popup
16
- content={formatMessage({ id: "structure.similarity.cosine.popup" })}
16
+ content={formatMessage({ id: "suggestions.similarity.cosine.popup" })}
17
17
  trigger={<span>{similarity.toFixed(3)}</span>}
18
18
  />
19
19
  );
@@ -36,6 +36,10 @@ const StructureRelationForm = lazy(
36
36
  () => import("@truedat/lm/components/StructureRelationForm")
37
37
  );
38
38
 
39
+ const StructureSuggestionLinkForm = lazy(
40
+ () => import("@truedat/lm/components/StructureSuggestionLinkForm")
41
+ );
42
+
39
43
  const RuleImplementationsTable = lazy(
40
44
  () => import("@truedat/dq/components/RuleImplementationsTable")
41
45
  );
@@ -69,6 +73,7 @@ export const StructureTabPane = ({ path }) => {
69
73
  {activeTab === "links" && (
70
74
  <Routes>
71
75
  <Route path="new" element={<StructureRelationForm />} />
76
+ <Route path="suggest" element={<StructureSuggestionLinkForm />} />
72
77
  <Route index element={<StructureLinks />} />
73
78
  </Routes>
74
79
  )}
@@ -15,6 +15,7 @@ import {
15
15
  STRUCTURE_RULES,
16
16
  STRUCTURE_LINKS,
17
17
  STRUCTURE_LINKS_NEW,
18
+ STRUCTURE_LINKS_CONCEPTS_SUGGEST,
18
19
  STRUCTURE_VERSIONS,
19
20
  STRUCTURE_VERSION_VERSIONS,
20
21
  STRUCTURE_GRANTS,
@@ -62,6 +63,7 @@ export const getActiveTab = ({ tabVisibility, path, tabsOrder, customTabs }) =>
62
63
  [_.eq(STRUCTURE_RULES), _.constant("rules")],
63
64
  [_.eq(STRUCTURE_LINKS), _.constant("links")],
64
65
  [_.eq(STRUCTURE_LINKS_NEW), _.constant("links")],
66
+ [_.eq(STRUCTURE_LINKS_CONCEPTS_SUGGEST), _.constant("links")],
65
67
  [_.eq(STRUCTURE_VERSIONS), _.constant("versions")],
66
68
  [_.eq(STRUCTURE_VERSION_VERSIONS), _.constant("versions")],
67
69
  [_.eq(STRUCTURE_EVENTS), _.constant("events")],