@truedat/bg 4.54.3 → 4.54.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.54.5] 2022-10-25
4
+
5
+ ### Changed
6
+
7
+ - [TD-4860] `ConceptCompleteness` component now uses `className="completeness"`
8
+ which should be used for it's styling rules
9
+
3
10
  ## [4.52.3] 2022-09-22
4
11
 
5
12
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/bg",
3
- "version": "4.54.3",
3
+ "version": "4.54.5",
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.54.0",
37
+ "@truedat/test": "4.54.5",
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.54.3",
90
- "@truedat/df": "4.54.3",
89
+ "@truedat/core": "4.54.5",
90
+ "@truedat/df": "4.54.5",
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": "3491865891d8b2e2b7ea41aef81a43ef16005c36"
110
+ "gitHead": "4238196902808489e5fbd4d572b480b1702975be"
111
111
  }
@@ -27,7 +27,7 @@ export const ConceptCompleteness = ({ concept }) => {
27
27
  )(concept);
28
28
 
29
29
  return (
30
- <Segment>
30
+ <Segment className="completeness">
31
31
  <Header as="h3" dividing>
32
32
  <FormattedMessage
33
33
  id="concepts.props.completeness"
@@ -1,7 +1,9 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
3
  exports[`<ConceptCompleteness /> matches the latest snapshot 1`] = `
4
- <Segment>
4
+ <Segment
5
+ className="completeness"
6
+ >
5
7
  <Header
6
8
  as="h3"
7
9
  dividing={true}