Tags Input + Improved Date Input

This commit is contained in:
Neshura 2023-10-24 11:37:27 +02:00
parent 85f86a36e8
commit 2b5a19fdd6
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
3 changed files with 79 additions and 10 deletions
src/lib/ListTextInput

View file

@ -0,0 +1,16 @@
<script lang="ts">
export let id: string;
export let value: string;
const handleClick = () => {
value = "";
}
</script>
<button {id} class="letterInput" on:click={handleClick}>+</button>
<style>
.letterInput {
padding-left: 1ch;
}
</style>