@truedat/bg 4.53.10 → 4.53.11
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 +5 -5
- package/src/concepts/components/Concept.js +1 -1
- package/src/concepts/components/ConceptsUploadButton.js +1 -1
- package/src/concepts/components/SharedToDomainsPopup.js +3 -3
- package/src/concepts/relations/selectors/getConceptLinks.js +1 -1
- package/src/taxonomy/components/DomainMember.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/bg",
|
|
3
|
-
"version": "4.53.
|
|
3
|
+
"version": "4.53.11",
|
|
4
4
|
"description": "Truedat Web Business Glossary",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@testing-library/jest-dom": "^5.16.4",
|
|
35
35
|
"@testing-library/react": "^12.0.0",
|
|
36
36
|
"@testing-library/user-event": "^13.2.1",
|
|
37
|
-
"@truedat/test": "4.53.
|
|
37
|
+
"@truedat/test": "4.53.11",
|
|
38
38
|
"babel-jest": "^28.1.0",
|
|
39
39
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
40
40
|
"babel-plugin-lodash": "^3.3.4",
|
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
]
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
|
-
"@truedat/core": "4.53.
|
|
90
|
-
"@truedat/df": "4.53.
|
|
89
|
+
"@truedat/core": "4.53.11",
|
|
90
|
+
"@truedat/df": "4.53.11",
|
|
91
91
|
"file-saver": "^2.0.5",
|
|
92
92
|
"moment": "^2.24.0",
|
|
93
93
|
"path-to-regexp": "^1.7.0",
|
|
@@ -107,5 +107,5 @@
|
|
|
107
107
|
"react-dom": ">= 16.8.6 < 17",
|
|
108
108
|
"semantic-ui-react": ">= 0.88.2 < 2.1"
|
|
109
109
|
},
|
|
110
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "f0bff07f7491edcbe2195f2ff9d0ef74736edef9"
|
|
111
111
|
}
|
|
@@ -33,7 +33,7 @@ export const Concept = ({ id }) => (
|
|
|
33
33
|
<>
|
|
34
34
|
<ConceptCrumbs />
|
|
35
35
|
<ConceptArchiveLoader />
|
|
36
|
-
<CommentsLoader resource_id={id} resource_type=
|
|
36
|
+
<CommentsLoader resource_id={id} resource_type="business_concept" />
|
|
37
37
|
<EventsLoader resource_id={id} resource_type="concept" />
|
|
38
38
|
<ConceptRulesLoader />
|
|
39
39
|
<RelationsLoader
|
|
@@ -34,7 +34,7 @@ export const ConceptsUploadButton = ({ uploadConcepts, loading }) => {
|
|
|
34
34
|
content={
|
|
35
35
|
<FormattedMessage id="concepts.actions.upload.confirmation.content" />
|
|
36
36
|
}
|
|
37
|
-
param=
|
|
37
|
+
param="business_concepts"
|
|
38
38
|
handleSubmit={(data) =>
|
|
39
39
|
uploadConcepts({
|
|
40
40
|
action: "upload",
|
|
@@ -28,7 +28,7 @@ export const SharedToDomainsPopup = ({ saving }) => {
|
|
|
28
28
|
<Button
|
|
29
29
|
basic
|
|
30
30
|
className="structureButton"
|
|
31
|
-
icon={<Icon name=
|
|
31
|
+
icon={<Icon name="sitemap" />}
|
|
32
32
|
/>
|
|
33
33
|
}
|
|
34
34
|
/>
|
|
@@ -36,11 +36,11 @@ export const SharedToDomainsPopup = ({ saving }) => {
|
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
SharedToDomainsPopup.propTypes = {
|
|
39
|
-
saving: PropTypes.bool
|
|
39
|
+
saving: PropTypes.bool,
|
|
40
40
|
};
|
|
41
41
|
|
|
42
42
|
const mapStateToProps = ({ savingSharedTo }) => ({
|
|
43
|
-
saving: savingSharedTo
|
|
43
|
+
saving: savingSharedTo,
|
|
44
44
|
});
|
|
45
45
|
|
|
46
46
|
export default connect(mapStateToProps)(SharedToDomainsPopup);
|
|
@@ -23,7 +23,7 @@ StructureLink.propTypes = {
|
|
|
23
23
|
};
|
|
24
24
|
|
|
25
25
|
const dateDecorator = (date) => (
|
|
26
|
-
<Label className=
|
|
26
|
+
<Label className="alert warning">
|
|
27
27
|
<Icon name="warning circle" color="red" />
|
|
28
28
|
<Moment locale="es" date={date} format="YYYY-MM-DD HH:mm" />
|
|
29
29
|
</Label>
|