@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/bg",
3
- "version": "4.53.10",
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.10",
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.10",
90
- "@truedat/df": "4.53.10",
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": "66304ff9ac3d25820b3bec2d0147f21cb0a2c579"
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={"business_concept"} />
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={"business_concepts"}
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={"sitemap"} />}
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={"alert warning"}>
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>
@@ -88,7 +88,7 @@ const DescriptionInput = ({
88
88
  })}
89
89
  trigger={
90
90
  <Icon
91
- name={"pencil alternate"}
91
+ name="pencil alternate"
92
92
  link
93
93
  onClick={() => setEditing(true)}
94
94
  />