mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
* [ACS-5181] Add logical search component * [ACS-5181] Add unit tests to logical search components * [ACS-5181] Logical filter components docs * [ACS-5181] CR fixes * [ACS-5181] CR and accessibility fixes
1.9 KiB
1.9 KiB
Title, Added, Status, Last reviewed
| Title | Added | Status | Last reviewed |
|---|---|---|---|
| Search Chip Input component | v6.1.0 | Active | 2023-06-01 |
Search Chip Input component
Represents an input with stacked list of chips as phrases added through input.
Basic usage
<adf-search-chip-input
[label]="'Some label'"
[onReset]="onResetObservable"
(phrasesChanged)="handlePhraseChanged($event)">
</adf-search-chip-input>
Properties
| Name | Type | Default value | Description |
|---|---|---|---|
| label | string |
Label that will be associated with the input | |
| addOnBlur | boolean |
true | Specifies whether new phrase will be added when input blurs |
| onReset | Observable<void> |
Observable that will listen to any reset event causing component to clear the chips and input |
Events
| Name | Type | Description |
|---|---|---|
| phrasesChanged | EventEmitter<string[]> |
Emitted when new phrase is entered |
