23e6b2123e
* Create _input-mixins.scss * Use button-mixins on more elements * Replace <select> tag with custom Select component * Fix RevertButton causing cursor: pointer when hidden * Increase SaveButton chevron width * Hide floating component box-shadow when inactive * Rework SpinBox and move it into components * Run eslint and prettier * Remove leftover options prop * Pass disabled array to EnumSelector again * Update MapperRow.svelte * Darken QHeaderView border color Slipping this in without an extra PR. * Adjust disabled color, border and cursor * Remove redundant icon definition from stylesheets * Fix deck options initial config * Fix z-index issues in change notetype screen It might be best to handle z-index locally in each user component instead of hard-coded component values. * Give web SpinBox a horizontal design * Give QRadioButton the same treatment as QCheckBox in #2079 * Fix unused CSS selector warning with base button-mixin * Remove redundant import * Fix deck options save button * Delete input-mixins and remove unused down-arrow * Run eslint on change-notetype * Run eslint on components
37 lines
1.1 KiB
Svelte
37 lines
1.1 KiB
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 Col from "../components/Col.svelte";
|
|
import Row from "../components/Row.svelte";
|
|
import Select from "../components/Select.svelte";
|
|
import SelectOption from "../components/SelectOption.svelte";
|
|
import type { ChangeNotetypeState, MapContext } from "./lib";
|
|
|
|
export let state: ChangeNotetypeState;
|
|
export let ctx: MapContext;
|
|
export let newIndex: number;
|
|
|
|
const info = state.info;
|
|
|
|
let oldIndex = $info.getOldIndex(ctx, newIndex);
|
|
|
|
const options = $info.getOldNamesIncludingNothing(ctx);
|
|
$: state.setOldIndex(ctx, newIndex, oldIndex);
|
|
</script>
|
|
|
|
<Row --cols={2}>
|
|
<Col --col-size={1}>
|
|
<!-- svelte-ignore a11y-no-onchange -->
|
|
<Select current={options[oldIndex]}>
|
|
{#each options as name, idx}
|
|
<SelectOption on:select={() => (oldIndex = idx)}>{name}</SelectOption>
|
|
{/each}
|
|
</Select>
|
|
</Col>
|
|
<Col --col-size={1}>
|
|
{$info.getNewName(ctx, newIndex)}
|
|
</Col>
|
|
</Row>
|