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 39f482fc37 - Show all commits
3
@@ -70,7 +70,7 @@ const labelId = useId();
</div> </div>
<ul class="options-list" :aria-labelledby="labelId"> <ul class="options-list" :aria-labelledby="labelId">
jakob.scheid marked this conversation as resolved Outdated
Outdated
Review

Please add a title and aria-label attributes.

Please add a `title` and `aria-label` attributes.
<li v-for="option in props.setting.options" :key="option.name"> <li v-for="option in props.setting.options" :key="option.name">
<label class="settings-button"> <label class="settings-button" :title="t(option.i18n)">
<input <input
:type="optionType" :type="optionType"
:name="props.path" :name="props.path"