{{#uni-autocomplete
  options=countries
  value=selectedCountry
  placeholderText=placeholderText
  hasError=hasError
  noResultsComponent="uni-autocomplete-no-results"
  noResultsText=noResultsText
  autocomplete=autocomplete
  searchTextValues=(action "countryNames")
  onSelected=(action "changeCountryCode")
as |optionSearchable|}}
  {{svg-jar (i "${code}" code=optionSearchable.option.code)}}
  {{#if hasBlock}}
    {{yield optionSearchable.option}}
  {{else}}
    {{titleize optionSearchable.matchedValues.firstObject}}
  {{/if}}
{{/uni-autocomplete}}
