-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a shim implementation for detail-linked-mask-splitter
- Loading branch information
Showing
2 changed files
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<script> | ||
import { easydbInstanceStore, systemidStore } from "../../lib/stores"; | ||
import { A } from "flowbite-svelte"; | ||
</script> | ||
|
||
Omitting linked objects in this viewer. Look at it in the <A href="{$easydbInstanceStore}/#/details/{$systemidStore.at(-1)}">EasyDB instance</A> instead. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
import ChronologyConverterMaskSplitter from "./ChronologyConverterMaskSplitter.svelte"; | ||
import DetailLinkedSplitter from "./DetailLinkedSplitter.svelte"; | ||
import UbhdIIIFMaskSplitter from "./UBHDIIIFMaskSplitter.svelte"; | ||
import UbhdObjMaskSplitter from "./UBHDObjMaskSplitter.svelte"; | ||
|
||
export const componentMapping = { | ||
"chronology-converter-mask-splitter": ChronologyConverterMaskSplitter, | ||
"detail-linked-mask-splitter": DetailLinkedSplitter, | ||
"ubhd-obj-mask-splitter": UbhdObjMaskSplitter, | ||
"ubhd-iiif-mask-splitter": UbhdIIIFMaskSplitter, | ||
}; | ||
|
||
export const requiresEndMapping = { | ||
"chronology-converter-mask-splitter": true, | ||
"detail-linked-mask-splitter": false, | ||
"ubhd-obj-mask-splitter": false, | ||
"ubhd-iiif-mask-splitter": false, | ||
} |