@hestia-earth/ui-components 0.42.21 → 0.42.22
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.
|
@@ -8073,7 +8073,10 @@ class NodeLinkComponent {
|
|
|
8073
8073
|
this.id = computed(() => this.node()?.['@id'], ...(ngDevMode ? [{ debugName: "id" }] : []));
|
|
8074
8074
|
this.type = computed(() => this.node()?.['@type'], ...(ngDevMode ? [{ debugName: "type" }] : []));
|
|
8075
8075
|
this.aggregated = computed(() => this.node().aggregated, ...(ngDevMode ? [{ debugName: "aggregated" }] : []));
|
|
8076
|
-
this.url = computed(() => [
|
|
8076
|
+
this.url = computed(() => [
|
|
8077
|
+
baseUrl(),
|
|
8078
|
+
nodeLink(this.node(), this.dataState() || nodeDataState(this.node()), nodeDataVersion(this.node()) || this.dataVersion())
|
|
8079
|
+
].join('/'), ...(ngDevMode ? [{ debugName: "url" }] : []));
|
|
8077
8080
|
this.showLink = computed(() => nodeLinkEnabled(this.node()), ...(ngDevMode ? [{ debugName: "showLink" }] : []));
|
|
8078
8081
|
this.target = computed(() => (this.showExternalLink() || isExternal() ? '_blank' : '_self'), ...(ngDevMode ? [{ debugName: "target" }] : []));
|
|
8079
8082
|
}
|