Feat(settings): add renderer for settings configuration #142

Merged
jakob.scheid merged 88 commits from feature/settings-renderer into main 2026-07-28 20:14:50 +02:00
Showing only changes of commit e4bd6df2d5 - Show all commits
@@ -40,11 +40,6 @@ const props = defineProps({
<div
v-for="setting in props.setting.content"
class="setting"
:class="{
switch: setting.type === 'bool',
input: setting.type === 'number' || setting.type === 'string',
selection: setting.type === 'selection'
}"
>
<Switch
v-if="setting.type === 'bool'"