@abi-software/mapintegratedvuer 1.3.5-beta.0 → 1.3.5-beta.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.
@@ -0,0 +1,156 @@
1
+ import { _ as d, L as h, t as u, T as s, E as l } from "./index-xJex6qLr.js";
2
+ import { C as I } from "./ContentMixin-1Yjm8kTN.js";
3
+ import { D as y, W as v } from "./style-DtPUHjoN.js";
4
+ import { resolveComponent as p, openBlock as r, createElementBlock as M, createVNode as g, createBlock as S, createCommentVNode as C } from "vue";
5
+ const F = {
6
+ name: "Flatmap",
7
+ mixins: [I, y],
8
+ components: {
9
+ FlatmapVuer: v,
10
+ HelpModeDialog: h
11
+ },
12
+ methods: {
13
+ getState: function() {
14
+ return this.$refs.flatmap.getState();
15
+ },
16
+ /**
17
+ * Perform a local search on this contentvuer
18
+ */
19
+ search: function(e) {
20
+ return this.$refs.flatmap.searchAndShowResult(e);
21
+ },
22
+ getFlatmapImp() {
23
+ var e;
24
+ return (e = this.$refs.flatmap) == null ? void 0 : e.mapImp;
25
+ },
26
+ flatmaprResourceSelected: function(e, t) {
27
+ if (this.resourceSelected(
28
+ e,
29
+ t,
30
+ this.$refs.flatmap.viewingMode === "Exploration"
31
+ ), t.eventType === "click" && t.feature.type === "feature") {
32
+ const o = {
33
+ label: t.label || "",
34
+ id: t.feature.id || "",
35
+ featureId: t.feature.featureId || "",
36
+ taxonomy: t.taxonomy || "",
37
+ resources: t.resource.join(", ")
38
+ }, a = u(o);
39
+ s.sendEvent({
40
+ event: "interaction_event",
41
+ event_name: "portal_maps_connectivity",
42
+ category: a,
43
+ location: e + " " + this.$refs.flatmap.viewingMode
44
+ });
45
+ }
46
+ },
47
+ flatmapReadyCall: function(e) {
48
+ let t = { id: this.entry.id, prov: this.getFlatmapImp().provenance };
49
+ l.emit("mapImpProv", t), this.$emit("flatmap-provenance-ready", t), this.entry.resource === "FunctionalConnectivity" && this.flatmapReadyForMarkerUpdates(e);
50
+ },
51
+ onPathwaySelectionChanged: function(e) {
52
+ const { label: t, property: o, checked: a, selectionsTitle: n } = e;
53
+ s.sendEvent({
54
+ event: "interaction_event",
55
+ event_name: "portal_maps_pathway_change",
56
+ category: t + " [" + o + "] " + a,
57
+ location: n
58
+ });
59
+ },
60
+ highlightFeatures: function(e) {
61
+ let t = e.name;
62
+ const o = this.$refs.flatmap.mapImp;
63
+ if (t) {
64
+ const a = o.search(t);
65
+ a.featureIds[0] && o.highlightFeatures([
66
+ o.modelForFeature(a.featureIds[0])
67
+ ]);
68
+ }
69
+ },
70
+ /**
71
+ * Append the list of suggested terms to suggestions
72
+ */
73
+ searchSuggestions: function(e, t) {
74
+ e && this.$refs.flatmap.mapImp && this.$refs.flatmap.mapImp.search(e).__featureIds.forEach((a) => {
75
+ const n = this.$refs.flatmap.mapImp.annotation(a);
76
+ n && n.label && t.push(n.label);
77
+ });
78
+ },
79
+ zoomToFeatures: function(e, t) {
80
+ let o = e.name;
81
+ const a = this.$refs.flatmap.mapImp;
82
+ if (o) {
83
+ const n = a.search(o);
84
+ if (n.featureIds.length) {
85
+ let i = a.modelForFeature(n.featureIds[0]);
86
+ i ? (t && a.selectFeatures(i), a.zoomToFeatures(i)) : a.clearSearchResults();
87
+ }
88
+ } else
89
+ a.clearSearchResults();
90
+ }
91
+ },
92
+ computed: {
93
+ facetSpecies() {
94
+ return this.settingsStore.facets.species;
95
+ }
96
+ },
97
+ mounted: function() {
98
+ l.on("markerUpdate", () => {
99
+ this.flatmapMarkerUpdate(void 0);
100
+ }), l.on("hoverUpdate", () => {
101
+ this.mapHoverHighlight(this.$refs.flatmap.mapImp);
102
+ }), l.on("show-connectivity", (e) => {
103
+ const { featureIds: t, offset: o } = e, a = this.$refs.flatmap;
104
+ a && a.moveMap(t, {
105
+ offsetX: o ? -150 : 0,
106
+ zoom: 4
107
+ });
108
+ });
109
+ }
110
+ }, w = { class: "viewer-container" };
111
+ function H(e, t, o, a, n, i) {
112
+ const m = p("FlatmapVuer"), f = p("HelpModeDialog");
113
+ return r(), M("div", w, [
114
+ g(m, {
115
+ state: e.entry.state,
116
+ entry: e.entry.resource,
117
+ onResourceSelected: t[0] || (t[0] = (c) => i.flatmaprResourceSelected(e.entry.type, c)),
118
+ onPanZoomCallback: e.flatmapPanZoomCallback,
119
+ name: e.entry.resource,
120
+ style: { height: "100%", width: "100%" },
121
+ minZoom: e.entry.minZoom,
122
+ helpMode: e.helpMode,
123
+ helpModeActiveItem: e.helpModeActiveItem,
124
+ helpModeInitialIndex: -1,
125
+ helpModeDialog: e.useHelpModeDialog,
126
+ onHelpModeLastItem: e.onHelpModeLastItem,
127
+ onShownTooltip: e.onTooltipShown,
128
+ onShownMapTooltip: e.onMapTooltipShown,
129
+ onConnectivityInfoOpen: e.onConnectivityInfoOpen,
130
+ onConnectivityInfoClose: e.onConnectivityInfoClose,
131
+ connectivityInfoSidebar: e.connectivityInfoSidebar,
132
+ pathControls: !0,
133
+ ref: "flatmap",
134
+ onReady: i.flatmapReadyCall,
135
+ displayMinimap: !1,
136
+ displayWarning: !0,
137
+ enableOpenMapUI: !0,
138
+ flatmapAPI: e.flatmapAPI,
139
+ sparcAPI: e.apiLocation,
140
+ onOpenMap: e.openMap,
141
+ onPathwaySelectionChanged: i.onPathwaySelectionChanged
142
+ }, null, 8, ["state", "entry", "onPanZoomCallback", "name", "minZoom", "helpMode", "helpModeActiveItem", "helpModeDialog", "onHelpModeLastItem", "onShownTooltip", "onShownMapTooltip", "onConnectivityInfoOpen", "onConnectivityInfoClose", "connectivityInfoSidebar", "onReady", "flatmapAPI", "sparcAPI", "onOpenMap", "onPathwaySelectionChanged"]),
143
+ e.helpMode && e.useHelpModeDialog ? (r(), S(f, {
144
+ key: 0,
145
+ ref: "flatmapHelp",
146
+ flatmapRef: e.flatmapRef,
147
+ lastItem: e.helpModeLastItem,
148
+ onShowNext: e.onHelpModeShowNext,
149
+ onFinishHelpMode: e.onFinishHelpMode
150
+ }, null, 8, ["flatmapRef", "lastItem", "onShowNext", "onFinishHelpMode"])) : C("", !0)
151
+ ]);
152
+ }
153
+ const P = /* @__PURE__ */ d(F, [["render", H], ["__scopeId", "data-v-29f23311"]]);
154
+ export {
155
+ P as default
156
+ };
@@ -0,0 +1,19 @@
1
+ import { C as r } from "./ContentMixin-1Yjm8kTN.js";
2
+ import { openBlock as o, createElementBlock as t, createElementVNode as s } from "vue";
3
+ import { _ as n } from "./index-xJex6qLr.js";
4
+ const a = {
5
+ name: "Iframe",
6
+ mixins: [r]
7
+ }, c = { class: "map-iframe-container" }, i = ["src"];
8
+ function m(e, f, _, p, d, l) {
9
+ return o(), t("div", c, [
10
+ s("iframe", {
11
+ class: "my-iframe",
12
+ src: e.entry.resource.share_link
13
+ }, null, 8, i)
14
+ ]);
15
+ }
16
+ const $ = /* @__PURE__ */ n(a, [["render", m], ["__scopeId", "data-v-60f8bfe1"]]);
17
+ export {
18
+ $ as default
19
+ };
@@ -0,0 +1,326 @@
1
+ import { _ as u, L as h, a as y, g, E as r, t as M, T as p } from "./index-xJex6qLr.js";
2
+ import { C as v } from "./ContentMixin-1Yjm8kTN.js";
3
+ import { D as I, v as S } from "./style-DtPUHjoN.js";
4
+ import { resolveComponent as f, openBlock as c, createElementBlock as C, createVNode as F, createBlock as k, createCommentVNode as w } from "vue";
5
+ const R = '<svg width="72px" height="72px" viewBox="0 0 24 24" fill="yellow"><path d="M11.0748 3.25583C11.4141 2.42845 12.5859 2.42845 12.9252 3.25583L14.6493 7.45955C14.793 7.80979 15.1221 8.04889 15.4995 8.07727L20.0303 8.41798C20.922 8.48504 21.2841 9.59942 20.6021 10.1778L17.1369 13.1166C16.8482 13.3614 16.7225 13.7483 16.8122 14.1161L17.8882 18.5304C18.1 19.3992 17.152 20.0879 16.3912 19.618L12.5255 17.2305C12.2034 17.0316 11.7966 17.0316 11.4745 17.2305L7.60881 19.618C6.84796 20.0879 5.90001 19.3992 6.1118 18.5304L7.18785 14.1161C7.2775 13.7483 7.1518 13.3614 6.86309 13.1166L3.3979 10.1778C2.71588 9.59942 3.07796 8.48504 3.96971 8.41798L8.50046 8.07727C8.87794 8.04889 9.20704 7.80979 9.35068 7.45955L11.0748 3.25583Z" stroke="#000000" stroke-width="2"/></svg>', d = (e) => {
6
+ const t = [
7
+ {
8
+ display: "Open AC Map",
9
+ key: "AC"
10
+ },
11
+ {
12
+ display: "Open FC Map",
13
+ key: "FC"
14
+ },
15
+ {
16
+ display: "Open 3D Human Map",
17
+ key: "3D"
18
+ }
19
+ ];
20
+ switch (e) {
21
+ case "Human Male":
22
+ case "Human Female":
23
+ case "Rat":
24
+ t.push({
25
+ display: "Open Sync Map",
26
+ key: "SYNC"
27
+ });
28
+ break;
29
+ }
30
+ return t;
31
+ }, b = {
32
+ name: "MultiFlatmap",
33
+ mixins: [v, I],
34
+ components: {
35
+ MultiFlatmapVuer: S,
36
+ HelpModeDialog: h
37
+ },
38
+ data: function() {
39
+ return {
40
+ zoomLevel: 6,
41
+ flatmapReady: !1,
42
+ availableSpecies: y(),
43
+ scaffoldResource: {},
44
+ showStarInLegend: !1,
45
+ openMapOptions: d("Rat")
46
+ };
47
+ },
48
+ methods: {
49
+ /**
50
+ * Toggle sync mode on/off depending on species and current state
51
+ */
52
+ toggleSyncMode: async function() {
53
+ if (this.syncMode == !1) {
54
+ let e;
55
+ this.activeSpecies === "Rat" ? e = {
56
+ contextCard: void 0,
57
+ discoverId: void 0,
58
+ label: "Rat Body",
59
+ resource: "https://mapcore-bucket1.s3.us-west-2.amazonaws.com/WholeBody/31-May-2021/ratBody/ratBody_syncmap_metadata.json",
60
+ title: "View 3D scaffold",
61
+ layout: "2horpanel",
62
+ type: "SyncMap"
63
+ } : (this.activeSpecies === "Human Male" || this.activeSpecies === "Human Female") && ("human" in this.scaffoldResource || (this.scaffoldResource.human = await g(this.apiLocation, "human")), e = {
64
+ contextCardUrl: this.scaffoldResource.human.datasetInfo.contextCardUrl,
65
+ discoverId: this.scaffoldResource.human.datasetInfo.discoverId,
66
+ s3uri: this.scaffoldResource.human.datasetInfo.s3uri,
67
+ version: this.scaffoldResource.human.datasetInfo.version,
68
+ label: "Human Body",
69
+ resource: this.scaffoldResource.human.url,
70
+ title: "View 3D scaffold",
71
+ layout: "2vertpanel",
72
+ type: "SyncMap",
73
+ isBodyScaffold: !0
74
+ }), e && r.emit("SyncModeRequest", { flag: !0, action: e });
75
+ } else
76
+ r.emit("SyncModeRequest", { flag: !1 });
77
+ },
78
+ getState: function() {
79
+ if (this.flatmapReady)
80
+ return this.$refs.multiflatmap.getState();
81
+ },
82
+ flatmapPanZoomCallback: function(e) {
83
+ if (this.mouseHovered) {
84
+ const t = {
85
+ paneIndex: this.entry.id,
86
+ eventType: "panZoom",
87
+ payload: e,
88
+ type: this.entry.type
89
+ };
90
+ this.$emit("resource-selected", t);
91
+ }
92
+ },
93
+ /**
94
+ * Perform a local search on this contentvuer
95
+ */
96
+ search: function(e) {
97
+ return this.$refs.multiflatmap.getCurrentFlatmap().searchAndShowResult(e, !0);
98
+ },
99
+ /**
100
+ * Append the list of suggested terms to suggestions
101
+ */
102
+ searchSuggestions: function(e, t) {
103
+ const a = this.$refs.multiflatmap.getCurrentFlatmap();
104
+ e && a.mapImp && a.mapImp.search(e).__featureIds.forEach((o) => {
105
+ const i = a.mapImp.annotation(o);
106
+ i && i.label && t.push(i.label);
107
+ });
108
+ },
109
+ flatmaprResourceSelected: function(e, t) {
110
+ const a = this.$refs.multiflatmap.getCurrentFlatmap();
111
+ if (this.resourceSelected(e, t, a.viewingMode === "Exploration"), t.eventType === "click" && t.feature.type === "feature") {
112
+ const n = {
113
+ label: t.label || "",
114
+ id: t.feature.id || "",
115
+ featureId: t.feature.featureId || "",
116
+ taxonomy: t.taxonomy || "",
117
+ resources: t.resource.join(", ")
118
+ }, o = M(n);
119
+ p.sendEvent({
120
+ event: "interaction_event",
121
+ event_name: "portal_maps_connectivity",
122
+ category: o,
123
+ location: e + " " + a.viewingMode
124
+ });
125
+ }
126
+ },
127
+ onPathwaySelectionChanged: function(e) {
128
+ const { label: t, property: a, checked: n, selectionsTitle: o } = e;
129
+ p.sendEvent({
130
+ event: "interaction_event",
131
+ event_name: "portal_maps_pathway_change",
132
+ category: t + " [" + a + "] " + n,
133
+ location: o
134
+ });
135
+ },
136
+ onOpenPubmedUrl: function(e) {
137
+ p.sendEvent({
138
+ event: "interaction_event",
139
+ event_name: "portal_maps_pubmed_url",
140
+ file_path: e,
141
+ location: "map_popup_button"
142
+ });
143
+ },
144
+ /**
145
+ * Handle sync pan zoom event
146
+ */
147
+ handleSyncPanZoomEvent: function(e) {
148
+ if (!this.mouseHovered && e.type !== this.entry.type) {
149
+ const t = e.payload.zoom, a = e.payload.target, n = this.$el.clientHeight, o = this.$el.clientWidth, i = Math.max(o, n);
150
+ let s = o / i / t;
151
+ const l = n / i / t, m = [
152
+ a[0] / 2 + 0.5 - s / 2,
153
+ 0.5 - a[1] / 2 - l / 2
154
+ ];
155
+ this.$refs.multiflatmap.getCurrentFlatmap().mapImp.panZoomTo(m, [s, l]);
156
+ }
157
+ },
158
+ displayTooltip: function(e) {
159
+ if (e) {
160
+ let t = e.name;
161
+ t ? this.search(t) : this.$refs.multiflatmap.getCurrentFlatmap().mapImp.clearSearchResults();
162
+ }
163
+ },
164
+ zoomToFeatures: function(e, t) {
165
+ let a = e.name;
166
+ const n = this.$refs.multiflatmap.getCurrentFlatmap().mapImp;
167
+ if (a) {
168
+ const o = n.search(a);
169
+ o.featureIds.length > 0 ? (t && n.selectFeatures(o.featureIds), n.zoomToFeatures(o.featureIds)) : n.clearSearchResults();
170
+ } else
171
+ n.clearSearchResults();
172
+ },
173
+ highlightFeatures: function(e) {
174
+ let t = e.name;
175
+ const a = this.$refs.multiflatmap.getCurrentFlatmap().mapImp;
176
+ if (t) {
177
+ const n = a.search(t);
178
+ n.featureIds.length > 0 && a.zoomToFeatures(n.featureIds, { noZoomIn: !0 });
179
+ }
180
+ },
181
+ updateProvCard: function() {
182
+ const e = this.getFlatmapImp();
183
+ if (e) {
184
+ let t = { id: this.entry.id, prov: e.provenance };
185
+ this.$emit("flatmap-provenance-ready", t);
186
+ }
187
+ },
188
+ flatmapChanged: async function(e) {
189
+ this.activeSpecies = e, this.openMapOptions = d(e), this.$emit("species-changed", e), this.entry.state && this.entry.state.species === this.activeSpecies || this.syncMode == !0 && await this.toggleSyncMode(), this.updateProvCard(), this.onConnectivityInfoClose(), p.sendEvent({
190
+ event: "interaction_event",
191
+ event_name: "portal_maps_species_change",
192
+ category: this.activeSpecies
193
+ });
194
+ },
195
+ multiFlatmapReady: function(e) {
196
+ if (e) {
197
+ e.enablePanZoomEvents(!0), this.flatmapReady = !0;
198
+ const t = e.mapImp;
199
+ this.flatmapMarkerUpdate(t), this.updateProvCard();
200
+ }
201
+ },
202
+ getFlatmapImp: function() {
203
+ if (this.entry.type === "MultiFlatmap" && this.flatmapReady && this.$refs.multiflatmap)
204
+ return this.$refs.multiflatmap.getCurrentFlatmap().mapImp;
205
+ },
206
+ flatmapAreaSearch() {
207
+ let a = {
208
+ type: "Facets",
209
+ label: "Unused",
210
+ val: this.getFlatmapImp().visibleMarkerAnatomicalIds().map((n) => this.idNamePair[n])
211
+ };
212
+ r.emit("PopoverActionClick", a);
213
+ },
214
+ restoreFeaturedMarkers: function(e) {
215
+ this.settingsStore.resetFeaturedMarkerIdentifier();
216
+ const t = this.settingsStore.featuredMarkers;
217
+ this.updateFeaturedMarkers(t, e);
218
+ },
219
+ // updateFeaturedMarkers will step through the featured markers and add them to the map
220
+ updateFeaturedMarkers: function(e, t) {
221
+ this.showStarInLegend = !1;
222
+ for (let a = 0; a < e.length; ++a)
223
+ e[a] && (this.settingsStore.featuredMarkerIdentifiers[a] || this.addFeaturedMarker(e[a], a, t) && (this.showStarInLegend = !0));
224
+ },
225
+ // addFeaturedMarker: add a featured marker to the map at the specified uberon location
226
+ addFeaturedMarker: function(e, t, a) {
227
+ const n = this.settingsStore.featuredMarkerSpecies[t];
228
+ if (n && !this.activeSpecies.startsWith(n))
229
+ return !1;
230
+ let o = a;
231
+ if (o || (o = this.getFlatmapImp()), o) {
232
+ let i = document.createElement("div");
233
+ i.innerHTML = R;
234
+ const s = o.addMarker(e, {
235
+ element: i,
236
+ className: "highlight-marker",
237
+ cluster: !1
238
+ });
239
+ return this.settingsStore.updateFeaturedMarkerIdentifier({
240
+ index: t,
241
+ markerIdentifier: s
242
+ }), !0;
243
+ }
244
+ return !1;
245
+ }
246
+ },
247
+ computed: {
248
+ facetSpecies() {
249
+ return this.settingsStore.facets.species;
250
+ },
251
+ featuredMarkers() {
252
+ return this.settingsStore.featuredMarkers;
253
+ }
254
+ },
255
+ watch: {
256
+ syncMode: function(e) {
257
+ this.$refs.multiflatmap.getCurrentFlatmap() && this.$refs.multiflatmap.getCurrentFlatmap().enablePanZoomEvents(e);
258
+ },
259
+ featuredMarkers: function(e) {
260
+ this.flatmapReady && this.updateFeaturedMarkers(e, void 0);
261
+ }
262
+ },
263
+ mounted: function() {
264
+ this.getFeaturedDatasets(), r.on("show-connectivity", (e) => {
265
+ const { featureIds: t, offset: a } = e;
266
+ if (this.flatmapReady && this.$refs.multiflatmap) {
267
+ const n = this.$refs.multiflatmap.getCurrentFlatmap();
268
+ n && n.moveMap(t, {
269
+ offsetX: a ? -150 : 0,
270
+ zoom: 4
271
+ });
272
+ }
273
+ }), r.on("markerUpdate", () => {
274
+ this.flatmapReady && this.flatmapMarkerUpdate(this.$refs.multiflatmap.getCurrentFlatmap().mapImp);
275
+ }), r.on("hoverUpdate", () => {
276
+ this.flatmapReady && this.mapHoverHighlight(this.$refs.multiflatmap.getCurrentFlatmap().mapImp);
277
+ });
278
+ }
279
+ }, H = { class: "viewer-container" };
280
+ function L(e, t, a, n, o, i) {
281
+ const s = f("MultiFlatmapVuer"), l = f("HelpModeDialog");
282
+ return c(), C("div", H, [
283
+ F(s, {
284
+ availableSpecies: e.availableSpecies,
285
+ onFlatmapChanged: i.flatmapChanged,
286
+ onReady: i.multiFlatmapReady,
287
+ state: e.entry.state,
288
+ onResourceSelected: t[0] || (t[0] = (m) => i.flatmaprResourceSelected(e.entry.type, m)),
289
+ style: { height: "100%", width: "100%" },
290
+ initial: e.entry.resource,
291
+ helpMode: e.helpMode,
292
+ helpModeActiveItem: e.helpModeActiveItem,
293
+ helpModeDialog: e.useHelpModeDialog,
294
+ onHelpModeLastItem: e.onHelpModeLastItem,
295
+ onShownTooltip: e.onTooltipShown,
296
+ onShownMapTooltip: e.onMapTooltipShown,
297
+ onConnectivityInfoOpen: e.onConnectivityInfoOpen,
298
+ onConnectivityInfoClose: e.onConnectivityInfoClose,
299
+ connectivityInfoSidebar: e.connectivityInfoSidebar,
300
+ ref: "multiflatmap",
301
+ displayMinimap: !0,
302
+ showStarInLegend: e.showStarInLegend,
303
+ enableOpenMapUI: !0,
304
+ openMapOptions: e.openMapOptions,
305
+ flatmapAPI: e.flatmapAPI,
306
+ sparcAPI: e.apiLocation,
307
+ onPanZoomCallback: i.flatmapPanZoomCallback,
308
+ onOpenMap: e.openMap,
309
+ onFinishHelpMode: e.endHelp,
310
+ onPathwaySelectionChanged: i.onPathwaySelectionChanged,
311
+ onOpenPubmedUrl: i.onOpenPubmedUrl
312
+ }, null, 8, ["availableSpecies", "onFlatmapChanged", "onReady", "state", "initial", "helpMode", "helpModeActiveItem", "helpModeDialog", "onHelpModeLastItem", "onShownTooltip", "onShownMapTooltip", "onConnectivityInfoOpen", "onConnectivityInfoClose", "connectivityInfoSidebar", "showStarInLegend", "openMapOptions", "flatmapAPI", "sparcAPI", "onPanZoomCallback", "onOpenMap", "onFinishHelpMode", "onPathwaySelectionChanged", "onOpenPubmedUrl"]),
313
+ e.helpMode && e.useHelpModeDialog ? (c(), k(l, {
314
+ key: 0,
315
+ ref: "multiflatmapHelp",
316
+ multiflatmapRef: e.multiflatmapRef,
317
+ lastItem: e.helpModeLastItem,
318
+ onShowNext: e.onHelpModeShowNext,
319
+ onFinishHelpMode: e.onFinishHelpMode
320
+ }, null, 8, ["multiflatmapRef", "lastItem", "onShowNext", "onFinishHelpMode"])) : w("", !0)
321
+ ]);
322
+ }
323
+ const E = /* @__PURE__ */ u(b, [["render", L], ["__scopeId", "data-v-1e1711a5"]]);
324
+ export {
325
+ E as default
326
+ };
@@ -0,0 +1,24 @@
1
+ import { C as o } from "./plotvuer-X4h-Lj3L.js";
2
+ import { C as a } from "./ContentMixin-1Yjm8kTN.js";
3
+ import { resolveComponent as r, openBlock as n, createBlock as s } from "vue";
4
+ import { _ as m } from "./index-xJex6qLr.js";
5
+ const p = {
6
+ name: "Plot",
7
+ mixins: [a],
8
+ components: {
9
+ PlotVuer: o
10
+ }
11
+ };
12
+ function l(e, c, u, d, i, f) {
13
+ const t = r("PlotVuer");
14
+ return n(), s(t, {
15
+ "data-source": e.entry.resource.dataSource,
16
+ metadata: e.entry.resource.metadata,
17
+ "supplemental-data": e.entry.resource.supplementalData,
18
+ style: { overflow: "hidden" }
19
+ }, null, 8, ["data-source", "metadata", "supplemental-data"]);
20
+ }
21
+ const $ = /* @__PURE__ */ m(p, [["render", l]]);
22
+ export {
23
+ $ as default
24
+ };