-
+
+
+
+
+
+
+
@@ -233,6 +257,7 @@ import {
CopyToClipboard,
ConnectivityGraph,
ConnectivityList,
+ ConnectivityListNew,
ExternalResourceCard,
} from '@abi-software/map-utilities';
import '@abi-software/map-utilities/dist/style.css';
@@ -261,6 +286,7 @@ export default {
CopyToClipboard,
ConnectivityGraph,
ConnectivityList,
+ ConnectivityListNew,
},
props: {
connectivityEntry: {
@@ -338,6 +364,18 @@ export default {
destinationsWithDatasets: function () {
return this.entry.destinationsWithDatasets;
},
+ hasSingleConnectivityList: function () {
+ return this.entry.hasSingleConnectivityList;
+ },
+ destinationsCombinations: function () {
+ return this.entry.destinationsCombinations || [];
+ },
+ originsCombinations: function () {
+ return this.entry.originsCombinations || [];
+ },
+ componentsCombinations: function () {
+ return this.entry.componentsCombinations || [];
+ },
resources: function () {
return this.entry.hyperlinks || [];
},