triiiceratops 0.12.0 → 0.12.1
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.
|
@@ -103,20 +103,20 @@
|
|
|
103
103
|
</div>
|
|
104
104
|
{/if}
|
|
105
105
|
|
|
106
|
-
<dl
|
|
106
|
+
<dl>
|
|
107
107
|
{#if attribution}
|
|
108
108
|
<dt class="font-bold text-lg opacity-70 mt-6">
|
|
109
109
|
{m.attribution()}
|
|
110
110
|
</dt>
|
|
111
111
|
<!-- eslint-disable-next-line svelte/no-at-html-tags -->
|
|
112
|
-
<dd class="text-sm ps-
|
|
112
|
+
<dd class="text-sm ps-4">{@html attribution}</dd>
|
|
113
113
|
{/if}
|
|
114
114
|
|
|
115
115
|
{#if license}
|
|
116
116
|
<dt class="font-bold text-lg opacity-70 mt-6">
|
|
117
117
|
{m.license()}
|
|
118
118
|
</dt>
|
|
119
|
-
<dd class="text-sm ps-
|
|
119
|
+
<dd class="text-sm ps-4">
|
|
120
120
|
<a
|
|
121
121
|
href={license}
|
|
122
122
|
target="_blank"
|
|
@@ -131,8 +131,24 @@
|
|
|
131
131
|
{item.label}
|
|
132
132
|
</dt>
|
|
133
133
|
<!-- eslint-disable-next-line svelte/no-at-html-tags -->
|
|
134
|
-
<dd class="text-sm ps-
|
|
134
|
+
<dd class="text-sm ps-4">{@html item.value}</dd>
|
|
135
135
|
{/each}
|
|
136
|
+
|
|
137
|
+
{#if viewerState.manifestId}
|
|
138
|
+
<dt class="font-bold text-lg opacity-70 mt-6">
|
|
139
|
+
{m.iiif_manifest_label()}
|
|
140
|
+
</dt>
|
|
141
|
+
<dd class="text-sm ps-4">
|
|
142
|
+
<a
|
|
143
|
+
href={viewerState.manifestId}
|
|
144
|
+
target="_blank"
|
|
145
|
+
rel="noreferrer"
|
|
146
|
+
class="link link-primary break-all"
|
|
147
|
+
>
|
|
148
|
+
{viewerState.manifestId}
|
|
149
|
+
</a>
|
|
150
|
+
</dd>
|
|
151
|
+
{/if}
|
|
136
152
|
</dl>
|
|
137
153
|
</div>
|
|
138
154
|
|