@truedat/bg 4.48.12 → 4.48.13
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.48.
|
|
3
|
+
"version": "4.48.13",
|
|
4
4
|
"description": "Truedat Web Business Glossary",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
]
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
|
-
"@truedat/core": "4.48.
|
|
90
|
-
"@truedat/df": "4.48.
|
|
89
|
+
"@truedat/core": "4.48.13",
|
|
90
|
+
"@truedat/df": "4.48.13",
|
|
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": "497ccf1b7e7d62232c9493fd28a1041b06cffe30"
|
|
111
111
|
}
|
|
@@ -16,18 +16,12 @@ import ConceptArchive from "./ConceptArchive";
|
|
|
16
16
|
import ConceptDetails from "./ConceptDetails";
|
|
17
17
|
import Events from "./Events";
|
|
18
18
|
|
|
19
|
-
const TemplatesLoader = React.lazy(() =>
|
|
20
|
-
import("@truedat/df/templates/components/TemplatesLoader")
|
|
21
|
-
);
|
|
22
|
-
|
|
23
19
|
const ConceptRules = React.lazy(() =>
|
|
24
20
|
import("@truedat/dq/components/ConceptRules")
|
|
25
21
|
);
|
|
26
22
|
|
|
27
23
|
const NewRule = React.lazy(() => import("@truedat/dq/components/NewRule"));
|
|
28
24
|
|
|
29
|
-
const QualityTemplatesLoader = () => <TemplatesLoader scope="dq" />;
|
|
30
|
-
|
|
31
25
|
export const ConceptTabPane = () => (
|
|
32
26
|
<ErrorBoundary>
|
|
33
27
|
<Switch>
|
|
@@ -48,15 +42,7 @@ export const ConceptTabPane = () => (
|
|
|
48
42
|
path={CONCEPT_RULES}
|
|
49
43
|
render={() => (
|
|
50
44
|
<Switch>
|
|
51
|
-
<Route
|
|
52
|
-
path={CONCEPT_RULES_NEW}
|
|
53
|
-
render={() => (
|
|
54
|
-
<>
|
|
55
|
-
<QualityTemplatesLoader />
|
|
56
|
-
<NewRule />
|
|
57
|
-
</>
|
|
58
|
-
)}
|
|
59
|
-
/>
|
|
45
|
+
<Route path={CONCEPT_RULES_NEW} render={() => <NewRule />} />
|
|
60
46
|
<Route render={() => <ConceptRules />} />
|
|
61
47
|
</Switch>
|
|
62
48
|
)}
|