From de9415a9a730db94e28c64c77d501fbbcb71a36d Mon Sep 17 00:00:00 2001 From: akhuoa Date: Tue, 24 Feb 2026 11:03:53 +1300 Subject: [PATCH] Add a new connectivity list component --- src/components/ConnectivityInfo.vue | 72 ++++++++++++++++++++++------- 1 file changed, 55 insertions(+), 17 deletions(-) diff --git a/src/components/ConnectivityInfo.vue b/src/components/ConnectivityInfo.vue index 913df450..90a3fcf5 100644 --- a/src/components/ConnectivityInfo.vue +++ b/src/components/ConnectivityInfo.vue @@ -90,7 +90,7 @@
-
+
Connectivity from:
- + + + + +
@@ -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 || []; },