akveo / nebular

:boom: Customizable Angular UI Library based on Eva Design System :new_moon_with_face::sparkles:Dark Mode
https://akveo.github.io/nebular
MIT License
8.05k stars 1.51k forks source link

Make nb-select work properly with autocomplete from HTML #2359

Open jsgoupil opened 4 years ago

jsgoupil commented 4 years ago

Issue type

I'm submitting a ... (check one with "x")

Issue description

Current behavior: nb-select does not handle the autocomplete functionality from HTML.

Expected behavior: This would be useful in a HTML such as a country selection, state selection etc.

Steps to reproduce:

        <nb-select [(ngModel)]="value.country" autocomplete="country">
            <nb-option value="">Select</nb-option>
            <nb-option value="CA">Canada</nb-option>
            <nb-option value="US">United States</nb-option>
        </nb-select>

Other information:

npm, node, OS, Browser

<!--
Node, npm: `node --version` and `npm --version`
OS: Windows (7/8/10). Linux (incl. distribution). macOS (El Capitan? Sierra?)
Browser: Chrome/Safari/Firefox/etc?
-->

Angular, Nebular

Angular: 9.1.0
Nebular: 5.0.0
jdgabriel commented 3 years ago

Any solutions?