2021-07-05 16:19:03 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
|
|
|
<script context="module" lang="typescript">
|
|
|
|
import IconButton from "components/IconButton.svelte";
|
|
|
|
import LabelButton from "components/LabelButton.svelte";
|
2021-08-23 21:23:04 +02:00
|
|
|
import WithShortcut from "components/WithShortcut.svelte";
|
2021-07-05 16:19:03 +02:00
|
|
|
import WithContext from "components/WithContext.svelte";
|
|
|
|
import WithState from "components/WithState.svelte";
|
|
|
|
|
|
|
|
import * as contextKeys from "components/context-keys";
|
2021-07-05 17:17:58 +02:00
|
|
|
import * as editorContextKeys from "./context-keys";
|
2021-07-05 16:19:03 +02:00
|
|
|
|
|
|
|
export const components = {
|
|
|
|
IconButton,
|
|
|
|
LabelButton,
|
2021-08-23 21:23:04 +02:00
|
|
|
WithShortcut,
|
2021-07-05 16:19:03 +02:00
|
|
|
WithContext,
|
|
|
|
WithState,
|
2021-07-05 17:17:58 +02:00
|
|
|
contextKeys: { ...contextKeys, ...editorContextKeys },
|
2021-07-05 16:19:03 +02:00
|
|
|
};
|
|
|
|
</script>
|