mirror of
https://github.com/ankitects/anki.git
synced 2025-11-18 18:47:12 -05:00
- expose the data as a writable store - currently only supports raw HTML; example to come - fix changes not marking a deck config as modified - the data is currently packed into the deckconfig object, but we may move these to a separate store in the collection config in the future, like is done with decks/notetypes
21 lines
541 B
Svelte
21 lines
541 B
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
// import * as tr from "lib/i18n";
|
|
import type { DeckConfigState } from "./lib";
|
|
|
|
export let state: DeckConfigState;
|
|
let components = state.addonComponents;
|
|
</script>
|
|
|
|
{#if $components.length}
|
|
<div>
|
|
<h2>Add-ons</h2>
|
|
|
|
{#each $components as addon}
|
|
<svelte:component this={addon.component} {state} {...addon} />
|
|
{/each}
|
|
</div>
|
|
{/if}
|