Skip to content

Commit 9fed407

Browse files
authored
Merge pull request #18 from DanielleHuisman/fix/multi-select-placeholder
Add more props to PrimeMultiSelect
2 parents 3c7a972 + d70e1e5 commit 9fed407

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/formkit/PrimeMultiSelect.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,16 @@ const styleClass = computed(() => (context?.state.validationVisible && !context?
2525
:tabindex="attrs.tabindex"
2626
:aria-label="attrs.ariaLabel"
2727
:aria-labelledby="attrs.ariaLabelledby"
28+
:placeholder="attrs.placeholder"
2829
:options="attrs.options"
2930
:option-label="attrs.optionLabel ?? 'label'"
3031
:option-value="attrs.optionValue ?? 'value'"
3132
:filter="attrs.filter ?? false"
33+
:display="attrs.display"
34+
:max-selected-labels="attrs.maxSelectedLabels"
35+
:selected-items-label="attrs.selectedItemsLabel"
36+
:selection-limit="attrs.selectionLimit"
37+
:show-toggle-all="attrs.showToggleAll"
3238
:pt="attrs.pt"
3339
:pt-options="attrs.ptOptions"
3440
:unstyled="attrs.unstyled ?? false"

0 commit comments

Comments
 (0)