filter multiple values dialog

This commit is contained in:
Jan Prochazka
2021-03-05 20:49:42 +01:00
parent bc54564d64
commit eb4ecb4cf8
3 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<script lang="ts">
import { onMount } from 'svelte';
export let value;
export let focused;
let domEditor;
if (focused) onMount(() => domEditor.focus());
</script>
<textarea {...$$restProps} bind:value on:change on:input bind:this={domEditor} />