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
34 lines
885 B
Svelte
34 lines
885 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 DailyLimits from "./DailyLimits.svelte";
|
|
import NewOptions from "./NewOptions.svelte";
|
|
import ReviewOptions from "./ReviewOptions.svelte";
|
|
import LapseOptions from "./LapseOptions.svelte";
|
|
import GeneralOptions from "./GeneralOptions.svelte";
|
|
import Addons from "./Addons.svelte";
|
|
import type { DeckConfigState } from "./lib";
|
|
|
|
export let state: DeckConfigState;
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
:global(h2) {
|
|
margin-top: 1em;
|
|
}
|
|
|
|
:global(input, select) {
|
|
font-size: 16px;
|
|
}
|
|
</style>
|
|
|
|
<div>
|
|
<DailyLimits {state} />
|
|
<NewOptions {state} />
|
|
<ReviewOptions {state} />
|
|
<LapseOptions {state} />
|
|
<GeneralOptions {state} />
|
|
<Addons {state} />
|
|
</div>
|