Metadata-Version: 2.1
Name: streamlit_datalist
Version: 0.0.2
Summary: Datalist element for Streamlit
Home-page: https://github.com/RobertoFN/streamlit-datalist
Author: Roberto Frias Nerio
Author-email: robertofnerio@gmail.com
License: UNKNOWN
Description: <h2> Streamlit Datalist </h2>
        
        This component brings datalists to Streamlit. Contrary to regular selectboxes, where the user is contrained to the options in the dropdown list, datalists can receive values that weren't available.
        
        To install this component, run the following command:
        
                pip install streamlit-datalist
        
        Importing and using the package can be done as follows:
          
                from streamlit_datalist import stDatalist
                
                my_selection = stDatalist("This datalist is...", ["great", "cool", "neat"])
        
        <br><br>
        <img src="https://user-images.githubusercontent.com/108201791/200101163-b91ed217-d60a-4695-a5e1-a198cf2c857c.gif" style="width:50em">
        
        <br>
        
        The component takes the following parameters:
        - <b>label</b>: <i>string</i><br>
        A name to display on top of the component.
        
        - <b>options</b>: <i>list</i><br>
        List of options to display in the dropdown.
        
        - <b>index</b>: <i>int</i> (optional, default <i>None</i>)<br>
        Index of the list element to be displayed as a default value. Defaults to <i>None</i>.
        
        - <b>key</b>: <i>int, str</i> (optional, default <i>None</i>)<br>
        Component's key. Required when multiple datalists will be used in the Streamlit app. 
        
        <br>
        
        <h3>v0.0.2</h3>
        Changes:
        <li>Added <i>index</i> parameter, to specify a default selection from the options list.
        <li>Deleting value from component will return a <i>None</i> value instead of <i>blank</i>.
        
        <h3>v0.0.1</h3>
        Initial release of the component
        
        
        
        
        
        
        
        
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
