Skip to content

Commit 4da7b5b

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 29c63f1 + 9fed407 commit 4da7b5b

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## [v1.4.0] - 2023-10-09
2+
### :boom: BREAKING CHANGES
3+
- due to [`cdb256c`](https://github.com/sfxcode/formkit-primevue/commit/cdb256c665c240f2d71a5c62070cf6dd663f0f7e) - Remove formkit-prime-inputs.scss *(commit by [@sfxcode](https://github.com/sfxcode))*:
4+
5+
Remove formkit-prime-inputs.scss
6+
7+
8+
### :sparkles: New Features
9+
- [`d0a2fd0`](https://github.com/sfxcode/formkit-primevue/commit/d0a2fd05df0a8054fe6da8a0ec9da3bcf656f2b8) - **Components**: Add p-formkit to each outer div for better styling *(commit by [@sfxcode](https://github.com/sfxcode))*
10+
11+
### :recycle: Refactors
12+
- [`c57b16c`](https://github.com/sfxcode/formkit-primevue/commit/c57b16c4107a8f21073fb563c5b11c4a90de8752) - **styles**: Remove all fixed With *(commit by [@sfxcode](https://github.com/sfxcode))*
13+
- [`cdb256c`](https://github.com/sfxcode/formkit-primevue/commit/cdb256c665c240f2d71a5c62070cf6dd663f0f7e) - **styles**: Remove formkit-prime-inputs.scss *(commit by [@sfxcode](https://github.com/sfxcode))*
14+
- [`33222fb`](https://github.com/sfxcode/formkit-primevue/commit/33222fb8f04e54c4f02e8655ba5b894e34a3c8ec) - **styles**: remove some margins *(commit by [@sfxcode](https://github.com/sfxcode))*
15+
- [`00bdba3`](https://github.com/sfxcode/formkit-primevue/commit/00bdba34cd64ae5f8dcc0ca9c1ea606ad3d0a881) - **styles**: extract error color *(commit by [@sfxcode](https://github.com/sfxcode))*
16+
17+
### :wrench: Chores
18+
- [`1a689cf`](https://github.com/sfxcode/formkit-primevue/commit/1a689cfcf2554d5e853a235bef0343f92f9853de) - **dependencies**: Formkit 1.2.2 *(commit by [@sfxcode](https://github.com/sfxcode))*
19+
20+
121
## [v1.3.5] - 2023-10-01
222
### :wrench: Chores
323
- [`aec7626`](https://github.com/sfxcode/formkit-primevue/commit/aec7626c3eeac6443fcf63f8df3e8b06c0d52aa4) - **dependencies**: Formkit 1.2.0, PrimeVue 3.35.0 *(commit by [@sfxcode](https://github.com/sfxcode))*
@@ -240,4 +260,5 @@
240260
[v1.3.0]: https://github.com/sfxcode/formkit-primevue/compare/v1.2.9...v1.3.0
241261
[v1.3.3]: https://github.com/sfxcode/formkit-primevue/compare/v1.3.2...v1.3.3
242262
[v1.3.4]: https://github.com/sfxcode/formkit-primevue/compare/v1.3.3...v1.3.4
243-
[v1.3.5]: https://github.com/sfxcode/formkit-primevue/compare/v1.3.4...v1.3.5
263+
[v1.3.5]: https://github.com/sfxcode/formkit-primevue/compare/v1.3.4...v1.3.5
264+
[v1.4.0]: https://github.com/sfxcode/formkit-primevue/compare/v1.3.5...v1.4.0

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)