@truedat/lm 8.4.8 → 8.4.9
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/lm",
|
|
3
|
-
"version": "8.4.
|
|
3
|
+
"version": "8.4.9",
|
|
4
4
|
"description": "Truedat Link Manager",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"**/*.css",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@testing-library/jest-dom": "^6.6.3",
|
|
55
55
|
"@testing-library/react": "^16.3.0",
|
|
56
56
|
"@testing-library/user-event": "^14.6.1",
|
|
57
|
-
"@truedat/test": "8.4.
|
|
57
|
+
"@truedat/test": "8.4.9",
|
|
58
58
|
"identity-obj-proxy": "^3.0.0",
|
|
59
59
|
"jest": "^29.7.0",
|
|
60
60
|
"redux-saga-test-plan": "^4.0.6"
|
|
@@ -86,5 +86,5 @@
|
|
|
86
86
|
"semantic-ui-react": "^3.0.0-beta.2",
|
|
87
87
|
"swr": "^2.3.3"
|
|
88
88
|
},
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "9fd4bd2126a33342009194c8ae1829cd3c617a48"
|
|
90
90
|
}
|
|
@@ -14,7 +14,7 @@ import TagTypeDropdownSelector from "./TagTypeDropdownSelector";
|
|
|
14
14
|
import RelationTagsLoader from "./RelationTagsLoader";
|
|
15
15
|
|
|
16
16
|
const StructureSuggestions = React.lazy(
|
|
17
|
-
() => import("@truedat/
|
|
17
|
+
() => import("@truedat/ai/components/StructureSuggestions")
|
|
18
18
|
);
|
|
19
19
|
|
|
20
20
|
const selectTagOptions = makeTagOptionsSelector("data_field");
|
|
@@ -27,7 +27,7 @@ jest.mock("@truedat/core/selectors", () => ({
|
|
|
27
27
|
}));
|
|
28
28
|
|
|
29
29
|
// Mock components
|
|
30
|
-
jest.mock("@truedat/
|
|
30
|
+
jest.mock("@truedat/ai/components/StructureSuggestions", () =>
|
|
31
31
|
jest.fn((props) => {
|
|
32
32
|
// Include a button to simulate structure selection
|
|
33
33
|
return (
|
package/src/messages/en.js
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"implementations.relation.new.header": "Link to Concept",
|
|
3
|
+
"links.actions.suggest": "Suggest Link",
|
|
4
|
+
"links.suggest.prompt.label": "Prompt",
|
|
5
|
+
"links.suggest.prompt.placeholder": "Additional prompt to help find related structures (optional)",
|
|
6
|
+
"links.suggest.submit": "Search suggestions",
|
|
3
7
|
"implementations.linked_concepts.empty": "No linked business concepts found",
|
|
4
8
|
"links.actions.create": "Add Link",
|
|
5
9
|
"relations.actions.create": "Add relation",
|
package/src/messages/es.js
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"implementations.linked_concepts.empty": "No hay conceptos relacionados",
|
|
3
|
+
"links.actions.suggest": "Sugerir vínculo",
|
|
4
|
+
"links.suggest.prompt.label": "Prompt",
|
|
5
|
+
"links.suggest.prompt.placeholder": "Contexto adicional para encontrar estructuras relacionadas (opcional)",
|
|
6
|
+
"links.suggest.submit": "Buscar sugerencias",
|
|
3
7
|
"implementations.relation.new.header":
|
|
4
8
|
"Vas a vincular esta implementación a un término del glosario",
|
|
5
9
|
"links.actions.create": "Añadir vinculación",
|