preparing addition of tasks

This commit is contained in:
2025-07-23 08:49:16 +02:00
parent c2eae076f4
commit ddeb2a8d88
9 changed files with 91 additions and 8 deletions

View File

@@ -2,8 +2,14 @@
import { activeField } from './field_sync.svelte.js';
import { t } from '../translations.svelte.js';
let { editable = false, value = $bindable(null), onSet = (newVal) => {} } = $props();
let editing = $state(false);
let {
editable = true,
editing = false,
value = $bindable({source:null,rendered:null}),
onSet = (newVal) => {}
} = $props();
//let editing = $state(false);
let editValue = $state({source:value.source,rendered:value.rendered});