@truedat/dd 6.5.4 → 6.6.0
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/dd",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.6.0",
|
|
4
4
|
"description": "Truedat Web Data Dictionary",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@testing-library/jest-dom": "^5.16.5",
|
|
35
35
|
"@testing-library/react": "^12.0.0",
|
|
36
36
|
"@testing-library/user-event": "^13.2.1",
|
|
37
|
-
"@truedat/test": "6.
|
|
37
|
+
"@truedat/test": "6.6.0",
|
|
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",
|
|
@@ -88,9 +88,9 @@
|
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
90
|
"@apollo/client": "^3.7.1",
|
|
91
|
-
"@truedat/auth": "6.
|
|
92
|
-
"@truedat/core": "6.
|
|
93
|
-
"@truedat/df": "6.
|
|
91
|
+
"@truedat/auth": "6.6.0",
|
|
92
|
+
"@truedat/core": "6.6.0",
|
|
93
|
+
"@truedat/df": "6.6.0",
|
|
94
94
|
"lodash": "^4.17.21",
|
|
95
95
|
"moment": "^2.29.4",
|
|
96
96
|
"path-to-regexp": "^1.7.0",
|
|
@@ -115,5 +115,5 @@
|
|
|
115
115
|
"react-dom": ">= 16.8.6 < 17",
|
|
116
116
|
"semantic-ui-react": ">= 2.0.3 < 2.2"
|
|
117
117
|
},
|
|
118
|
-
"gitHead": "
|
|
118
|
+
"gitHead": "84d52d5067ff09b8d9c9b8a9bc8018c53a8e700c"
|
|
119
119
|
}
|
|
@@ -80,9 +80,10 @@ const AuthorizedRoutes = () => {
|
|
|
80
80
|
</>
|
|
81
81
|
)}
|
|
82
82
|
/>
|
|
83
|
-
|
|
83
|
+
</Switch>
|
|
84
|
+
<Route path={STRUCTURE_EVENTS} component={StructureEventsLoader} />
|
|
85
|
+
<Switch>
|
|
84
86
|
<Route
|
|
85
|
-
exact
|
|
86
87
|
path={STRUCTURES_BULK_UPDATE}
|
|
87
88
|
render={() => (
|
|
88
89
|
<>
|
|
@@ -93,20 +94,19 @@ const AuthorizedRoutes = () => {
|
|
|
93
94
|
</>
|
|
94
95
|
)}
|
|
95
96
|
/>
|
|
97
|
+
|
|
98
|
+
<Route
|
|
99
|
+
path={[STRUCTURE_VERSION, STRUCTURE]}
|
|
100
|
+
render={() => {
|
|
101
|
+
return (
|
|
102
|
+
<>
|
|
103
|
+
<StructureLoader />
|
|
104
|
+
<StructureImplementationsLoader />
|
|
105
|
+
</>
|
|
106
|
+
);
|
|
107
|
+
}}
|
|
108
|
+
/>
|
|
96
109
|
</Switch>
|
|
97
|
-
<Route exact path={[STRUCTURE_EVENTS, STRUCTURE_VERSION, STRUCTURE]} />
|
|
98
|
-
<Route path={STRUCTURE_EVENTS} component={StructureEventsLoader} />
|
|
99
|
-
<Route
|
|
100
|
-
path={[STRUCTURE_VERSION, STRUCTURE]}
|
|
101
|
-
render={() => {
|
|
102
|
-
return (
|
|
103
|
-
<>
|
|
104
|
-
<StructureLoader />
|
|
105
|
-
<StructureImplementationsLoader />
|
|
106
|
-
</>
|
|
107
|
-
);
|
|
108
|
-
}}
|
|
109
|
-
/>
|
|
110
110
|
<Switch>
|
|
111
111
|
<Route
|
|
112
112
|
path={STRUCTURE_MEMBERS_NEW}
|