refactor(editor): Continue porting components over to composition API (no-changelog) (#8893)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-03-15 12:43:08 +01:00
committed by GitHub
parent 80c4bc443a
commit 6c693e1afd
39 changed files with 989 additions and 1253 deletions

View File

@@ -34,11 +34,11 @@
<slot v-if="hasDefaultSlot" />
<N8nSelect
v-else-if="type === 'select' || type === 'multi-select'"
ref="inputRef"
:class="{ [$style.multiSelectSmallTags]: tagSize === 'small' }"
:model-value="modelValue"
:placeholder="placeholder"
:multiple="type === 'multi-select'"
ref="inputRef"
:disabled="disabled"
:name="name"
:teleported="teleported"
@@ -57,8 +57,8 @@
</N8nSelect>
<N8nInput
v-else
:name="name"
ref="inputRef"
:name="name"
:type="type"
:placeholder="placeholder"
:model-value="modelValue"