anki/ts/components/DropdownMenu.svelte

26 lines
595 B
Svelte
Raw Normal View History

2021-04-15 15:59:52 +02:00
<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="typescript">
2021-04-24 00:00:32 +02:00
import type { ToolbarItem } from "./types";
2021-03-31 03:34:08 +02:00
export let id: string;
export let items: ToolbarItem[];
</script>
<style lang="scss">
ul {
background-color: var(--frame-bg);
border-color: var(--medium-border);
}
</style>
<ul {id} class="dropdown-menu">
{#each items as menuItem}
<li>
<svelte:component this={menuItem.component} {...menuItem} />
2021-03-31 03:34:08 +02:00
</li>
{/each}
</ul>