Merge pull request #5433 from nextcloud-libraries/backport/5432/next

[next] fix(NcActionInput): Add label to sample
This commit is contained in:
Maksim Sukharev 2024-03-21 15:01:04 +01:00 коммит произвёл GitHub
Родитель 0637dbae74 fa917c835b
Коммит f11adc578a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -89,7 +89,10 @@ For the `NcSelect` component, all events will be passed through. Please see the
</template>
Please pick a date
</NcActionInput>
<NcActionInput type="multiselect" :options="['Apple', 'Banana', 'Cherry']">
<NcActionInput
type="multiselect"
input-label="Fruit selection"
:options="['Apple', 'Banana', 'Cherry']">
<template #icon>
<Pencil :size="20" />
</template>
@ -98,7 +101,7 @@ For the `NcSelect` component, all events will be passed through. Please see the
<NcActionInput
v-model="multiSelected"
type="multiselect"
label="label"
input-label="Fruit selection"
track-by="id"
:append-to-body="true"
:multiple="true"