mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-20 20:33:02 +00:00
integrates PR # 1260: filteredItems is not exported anymore
This commit is contained in:
parent
451de06dd0
commit
5ca0b83137
4 changed files with 6 additions and 22 deletions
|
@ -8,13 +8,11 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* Set the dropdown items
|
||||
* Set the full list of items
|
||||
* @type {AutoCompleteItem[]}
|
||||
*/
|
||||
export let items = [];
|
||||
|
||||
export let filteredItems = [];
|
||||
|
||||
/**
|
||||
* Override the display of a dropdown item
|
||||
* @type {(item: AutoCompleteItem) => string}
|
||||
|
@ -112,6 +110,8 @@
|
|||
|
||||
const dispatch = createEventDispatcher();
|
||||
|
||||
let filteredItems = [];
|
||||
|
||||
let highlightedIndex = -1;
|
||||
|
||||
let innerValue = undefined;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue