Skip to content

Commit 7345bcb

Browse files
committed
docs(combo): update feat/README and CHANGELOG
1 parent fbc3bd9 commit 7345bcb

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,14 @@ All notable changes for each version of this project will be documented in this
8282
- `IgxDateTimeEditor`, `IgxMask`, `IgxDatePicker`, `IgxTimePicker`, `IgxDateRangePicker`
8383
- Added IME input support. When typing in an Asian language input, the control will display input method compositions and candidate lists directly in the control’s editing area, and immediately re-flow surrounding text as the composition ends.
8484

85+
- `IgxCombo`
86+
- Added `selectionMode` `@Input`. Allows to specify whether the selection mode should be 'multiple' (default, current behavior) or 'single' (allowing only one item to be selected).
87+
```html
88+
<igx-combo #single [data]="myData" selectionMode="single">
89+
...
90+
</igx-combo>
91+
```
92+
8593
### General
8694
- `IgxGridComponent`
8795
- The following properties are deprecated:

projects/igniteui-angular/src/lib/combo/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ Setting `[displayDensity]` affects the control's items' and inputs' css properti
301301
| `id` | combo id | string |
302302
| `data` | combo data source | any |
303303
| `allowCustomValue` | enables/disables combo custom value | boolean |
304+
| `selectionMode` | specified whether the combo allows single or multiple selection | string ('multiple' | 'single' ) |
304305
| `filterable` | enables/disables combo drop down filtering - enabled by default | boolean |
305306
| `showSearchCaseIcon` | defines whether the search case-sensitive icon should be displayed - disabled by default| boolean |
306307
| `valueKey` | combo value data source property | string |

0 commit comments

Comments
 (0)