@truedat/dd 7.14.2 → 7.14.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/dd",
|
|
3
|
-
"version": "7.14.
|
|
3
|
+
"version": "7.14.5",
|
|
4
4
|
"description": "Truedat Web Data Dictionary",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"module": "src/index.js",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@testing-library/jest-dom": "^6.6.3",
|
|
49
49
|
"@testing-library/react": "^16.3.0",
|
|
50
50
|
"@testing-library/user-event": "^14.6.1",
|
|
51
|
-
"@truedat/test": "7.14.
|
|
51
|
+
"@truedat/test": "7.14.5",
|
|
52
52
|
"identity-obj-proxy": "^3.0.0",
|
|
53
53
|
"jest": "^29.7.0",
|
|
54
54
|
"redux-saga-test-plan": "^4.0.6"
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"svg-pan-zoom": "^3.6.2",
|
|
84
84
|
"swr": "^2.3.3"
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "c27ba60d1a158d6c21105f73d6ac4a20d83e5630"
|
|
87
87
|
}
|
|
@@ -72,6 +72,7 @@ export const StructureSelector = (props) => {
|
|
|
72
72
|
const pageSize = _.prop("pageSize")(props);
|
|
73
73
|
const withGrantRequests = _.prop("withGrantRequests")(props);
|
|
74
74
|
const withDataFields = _.prop("withDataFields")(props);
|
|
75
|
+
const withLinkStructures = _.prop("withLinkStructures")(props);
|
|
75
76
|
const defaultOverwriteColumns = useSelector(
|
|
76
77
|
defaultColumnsForStructureSelector
|
|
77
78
|
);
|
|
@@ -83,6 +84,7 @@ export const StructureSelector = (props) => {
|
|
|
83
84
|
const enrichSearchPayload = {
|
|
84
85
|
my_grant_requests: !!withGrantRequests,
|
|
85
86
|
with_data_fields: !!withDataFields,
|
|
87
|
+
link_structures: !!withLinkStructures,
|
|
86
88
|
};
|
|
87
89
|
|
|
88
90
|
const searchProps = {
|