mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ACS-4986] SearchChipsAutocompleteComponent - minimal state * [ACS-4986] refactored components * [ACS-4986] documentation * [ACS-4986] i18n * [ACS-4986] versionIndex.md * [ACS-4986] unit tests * [ACS-4986] replaced function calls on pipe * [ACS-4986] linting * [ACS-4986] slight correction * [ACS-4986] missing types * [ACS-4986] space * [ACS-4986] moved pipe + docs & tests * [ACS-4986] changed pipe type * [ACS-4986] versionIndex.md * [ACS-4986] removed 'important' in styles * [ACS-4986] fixed code smell * [ACS-4986] linting
2.7 KiB
2.7 KiB
Title, Added, Status, Last reviewed
Title | Added | Status | Last reviewed |
---|---|---|---|
Search Chip Autocomplete Input component | v6.1.0 | Active | 2023-06-13 |
Search Chip Autocomplete Input component
Represents an input with autocomplete options.
Basic usage
<adf-search-chip-autocomplete-input
[autocompleteOptions]="allOptions"
[onReset$]="onResetObservable$"
[allowOnlyPredefinedValues]="allowOnlyPredefinedValues"
(optionsChanged)="onOptionsChange($event)">
</adf-search-chip-autocomplete-input>
Properties
Name | Type | Default value | Description |
---|---|---|---|
autocompleteOptions | string[] |
[] | Options for autocomplete |
onReset$ | Observable <void> |
Observable that will listen to any reset event causing component to clear the chips and input | |
allowOnlyPredefinedValues | boolean | true | A flag that indicates whether it is possible to add a value not from the predefined ones |
Events
Name | Type | Description |
---|---|---|
optionsChanged | EventEmitter <string[]> |
Emitted when the selected options are changed |
See also
- Search Configuration Guide
- Search Query Builder service
- Search Widget Interface
- Search Filter Autocomplete Chips component
- Search Logical Filter component
- Search check list component
- Search date range component
- Search number range component
- Search radio component
- Search slider component
- Search text component
- Search Chip Input component