I saw documentations of AutoComplete component and it's weird when you type and search for an item
it only searches by value. Typically we search for the text to obtain the value behind it.
for example data array is like :
[
{Name:"Ali",Id :"1"},
{Name:"Alice",Id :"2"},
{Name:"John",Id :"13"},
{Name:"Sarah",Id :"45"},
{Name:"Payam",Id :"12"},
]
Normal behaviour is when we type "li" the result should be (Ali, Alice) and selecting "Ali" should set the "1" as the value of text input or whatever is.
Is it possible to have different text and value and could be search through the text in AutoComplete component?