hydralit-components


Namehydralit-components JSON
Version 1.0.10 PyPI version JSON
download
home_pagehttps://github.com/tanglespace/hydralit_components
SummaryComponents to use with or without the Hydralit package.
upload_time2022-06-22 03:53:39
maintainer
docs_urlNone
authorJackson Storm
requires_python>=3.6
licenseApache 2
keywords streamlit web responsive deployment web application presentation
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # **Hydralit Components** <img src="https://github.com/TangleSpace/hydralit/raw/main/docs/images/hydra.png" alt="hydra" width="50"/>
A package of Streamlit components that can be used directly or with the [Hydralit](https://github.com/TangleSpace/hydralit) library.

## **Current Components**
 - ### **Navbar**
 - ### **Option Bar**
 - ### **Info Card**
 - ### **Progress Bar**
 - ### **Loaders**
 - ### **Experimental**

<br>
<p align="center">
	<a href="https://pepy.tech/project/hydralit_components/" alt="PyPI downloads">
	<img src="https://pepy.tech/badge/hydralit_components" />
	</a>
    <a href="https://www.python.org/" alt="Python version">
        <img src="https://img.shields.io/pypi/pyversions/hydralit_components" /></a>
    <a href="https://pypi.org/project/hydralit_components/" alt="PyPI version">
        <img src="https://img.shields.io/pypi/v/hydralit_components" /></a>
    <a href="https://hydralit_components.aur-license.org/" alt="License">
        <img src="http://img.shields.io/:license-Apache-blue.svg?style=flat-square"></a>
    <a href="https://streamlit.io/" alt="Streamlit">
        <img src="http://img.shields.io/:streamlit->=0.67.0-blue.svg?style=flat-square"></a>
</p>

## Installing Hydralit Components
Hydralit can be installed from PyPI:

```bash
pip install -U hydralit_components
```
# New in version 1.0.9 
 - Added new component, info_card
 <p align="center">
<img src="https://github.com/TangleSpace/hydralit_components/blob/main/resources/info_card.PNG?raw=true" title="InfoCard" alt="InfoCard", width="100%" height="100%">
</p>

 ```python
import streamlit as st
import hydralit_components as hc

#can apply customisation to almost all the properties of the card, including the progress bar
theme_bad = {'bgcolor': '#FFF0F0','title_color': 'red','content_color': 'red','icon_color': 'red', 'icon': 'fa fa-times-circle'}
theme_neutral = {'bgcolor': '#f9f9f9','title_color': 'orange','content_color': 'orange','icon_color': 'orange', 'icon': 'fa fa-question-circle'}
theme_good = {'bgcolor': '#EFF8F7','title_color': 'green','content_color': 'green','icon_color': 'green', 'icon': 'fa fa-check-circle'}

cc = st.columns(4)

with cc[0]:
  # can just use 'good', 'bad', 'neutral' sentiment to auto color the card
  hc.info_card(title='Some heading GOOD', content='All good!', sentiment='good',bar_value=77)

with cc[1]:
  hc.info_card(title='Some BAD BAD', content='This is really bad',bar_value=12,theme_override=theme_bad)

with cc[2]:
  hc.info_card(title='Some NEURAL', content='Oh yeah, sure.', sentiment='neutral',bar_value=55)

with cc[3]:
  #customise the the theming for a neutral content
  hc.info_card(title='Some NEURAL',content='Maybe...',key='sec',bar_value=5,theme_override=theme_neutral)

 ```
 - Added new component, option_bar
  <p align="center">
<img src="https://github.com/TangleSpace/hydralit_components/blob/main/resources/option_bar.PNG?raw=true" title="OptionBar" alt="OptionBar", width="100%" height="100%">
</p>

 ```python
import streamlit as st
import hydralit_components as hc

# define what option labels and icons to display
option_data = [
    {'icon': "bi bi-hand-thumbs-up", 'label':"Agree"},
    {'icon':"fa fa-question-circle",'label':"Unsure"},
    {'icon': "bi bi-hand-thumbs-down", 'label':"Disagree"},
]

# override the theme, else it will use the Streamlit applied theme
over_theme = {'txc_inactive': 'white','menu_background':'purple','txc_active':'yellow','option_active':'blue'}
font_fmt = {'font-class':'h2','font-size':'150%'}

# display a horizontal version of the option bar
op = hc.option_bar(option_definition=option_data,title='Feedback Response',key='PrimaryOption',override_theme=over_theme,font_styling=font_fmt,horizontal_orientation=True)

# display a version version of the option bar
op2 = hc.option_bar(option_definition=option_data,title='Feedback Response',key='PrimaryOption',override_theme=over_theme,font_styling=font_fmt,horizontal_orientation=False)

 ```
 - Added new component, progress_bar
  <p align="center">
<img src="https://github.com/TangleSpace/hydralit_components/blob/main/resources/progress_bar.PNG?raw=true" title="ProgressBar" alt="ProgressBar", width="100%" height="100%">
</p>

```python
import streamlit as st
import hydralit_components as hc

# can apply customisation to almost all the properties 0f the progress ba
override_theme_1 = {'bgcolor': '#EFF8F7','progress_color': 'green'}
override_theme_2 = {'bgcolor': 'green','content_color': 'white','progress_color': 'red'}
override_theme_3 = {'content_color': 'red','progress_color': 'orange'}

# can just use 'good', 'bad', 'neutral' sentiment to auto color the bar
hc.progress_bar(25,'Something something')
hc.progress_bar(35,'Something something',sentiment='good')
hc.progress_bar(95,'Something something',sentiment='neutral')
hc.progress_bar(47,'Something something',sentiment='bad')

# customise the the theming for a neutral content
hc.progress_bar(5,'Something something - 1a',key='pa1',override_theme=override_theme_1)
hc.progress_bar(35,'Something something - 2a',key='pa2',sentiment='good',override_theme=override_theme_2)
hc.progress_bar(95,'Something something - 3a',key='pa3',sentiment='neutral')
hc.progress_bar(47,'Something something - 4a',key='pa4',sentiment='bad',override_theme=override_theme_3)

```

# New in version 1.0.7 

 - More visual appearence improvements for the Navbar, including a much nicer non-animated mode.
 <p align="center">
<img src="https://github.com/TangleSpace/hydralit_components/blob/main/resources/non-animated_navbar.PNG?raw=true" title="Navbar" alt="Navbar", width="100%" height="100%">
</p>

 - Removed the background effect on all loaders (as everyone hated it).
 - Can completely customise the Home and Logout entries on the Navbar as well as the other entires.
<p align="center">
<img src="https://github.com/TangleSpace/hydralit_components/blob/main/resources/customised_navbar.PNG?raw=true" title="Navbar" alt="Navbar", width="100%" height="100%">
</p>

 - Full support for Font Awesome and BootStrap icons offline for Navbar entries, as well as all emojis.
 - Full support for all versions of Streamlit up to current (1.4.0).
<br><br>

# New in version 1.0.6 (navbar updates)
NOTE: Since everyone complained about the "jumping navbar", it is now pinned to the top of the page, it is no longer sticky. If you want a sticky, non-jumping, with the Streamlit hamburger navbar all in one magical solution, keep asking Streamlit, since they have already stated they are looking to implement this feature themselves and Hydralit and Hydralit Components can go F^%& itself according to the way I've been treated by the Streamlit team. So if you have any issues with the way the navbar works, raise an issue or talk to Streamlit.
<br><br>
You can have jumpy navbar that is sticky, or non-jumping navbar that is pinned to the top, ask Streamlit for both.

 - Changed the sticky behaviour (if you want it at the top, like Streamlit ordering, declare it first) NOTE: The `sticky_nav` parameter moves the navbar to the top of the window, use `sticky_mode = 'sticky'` or `sticky_mode = 'pinned'` if you want it to be sticky, but it will be jumpy or pinned and not jumpy. If you want the Streamlit hamburger menu to appear with the navbar use `hide_streamlit_markers=False`
 - Can co-exist with the Streamlit hamburger menu now, as well as the status indicators (running/stop..)
 - Improved the centering and appearance
 - Can toggle the Streamlit markers on/off independantly of the sticky nav setting
 - Bug fix with intial value with label and id provided (Thanks [Daveography](https://github.com/Daveography)!)

# New in version 1.0.5
 - Can toggle navbar animation on/off
 - Tighten up the navbar animation
 - Add over 20 custom loaders that work the same as the built-in spinner
 - An ability to enable experimental features to allow for previously disallowed code injection (like javascript)
 - Added a modified version of the existing Streamlit cookie manager to allow for better use in multi-app environments

# New in version 1.0.3
 - Enable sticky menu mode (pin to top of the window)
 - Animated dropdown menu entries to support complex navigation
 - Offline support
 - Added support for fontawesome icons
 - Full collapse in mobile view (the burger is back!)

# Features
 - Full theme color support
 - Full container support (can put on sidebar too)
 - Responsive layout
 - Use Bootstrap icons or emojis or nothing
 - Configure Response values when clicked
 - Assign tooltips

# Navbar Demo
<p align="center">
<img src="https://github.com/TangleSpace/hydralit_components/blob/main/resources/new_navbar.gif?raw=true" title="Navbar" alt="Navbar", width="100%" height="100%">
</p>

 # Navbar Modes
 ## Pinned Mode
<p align="center">
<img src="https://github.com/TangleSpace/hydralit_components/blob/main/resources/pinned_nav_new.gif?raw=true" title="Navbar" alt="Navbar", width="100%" height="100%">
</p>

 ## Sticky (jumpy) Mode
<p align="center">
<img src="https://github.com/TangleSpace/hydralit_components/blob/main/resources/sticky_nav_new.gif?raw=true" title="Navbar" alt="Navbar", width="100%" height="100%">
</p>

 ## Regular Mode
<p align="center">
<img src="https://github.com/TangleSpace/hydralit_components/blob/main/resources/non-sticky_nav_new.gif?raw=true" title="Navbar" alt="Navbar", width="100%" height="100%">
</p>


A very quick example of how to modify the menu items and to show we can put it on the main page, sidebar or within a container, up to you.
```python
import streamlit as st
import hydralit_components as hc
import datetime

#make it look nice from the start
st.set_page_config(layout='wide',initial_sidebar_state='collapsed',)

# specify the primary menu definition
menu_data = [
    {'icon': "far fa-copy", 'label':"Left End"},
    {'id':'Copy','icon':"🐙",'label':"Copy"},
    {'icon': "fa-solid fa-radar",'label':"Dropdown1", 'submenu':[{'id':' subid11','icon': "fa fa-paperclip", 'label':"Sub-item 1"},{'id':'subid12','icon': "💀", 'label':"Sub-item 2"},{'id':'subid13','icon': "fa fa-database", 'label':"Sub-item 3"}]},
    {'icon': "far fa-chart-bar", 'label':"Chart"},#no tooltip message
    {'id':' Crazy return value 💀','icon': "💀", 'label':"Calendar"},
    {'icon': "fas fa-tachometer-alt", 'label':"Dashboard",'ttip':"I'm the Dashboard tooltip!"}, #can add a tooltip message
    {'icon': "far fa-copy", 'label':"Right End"},
    {'icon': "fa-solid fa-radar",'label':"Dropdown2", 'submenu':[{'label':"Sub-item 1", 'icon': "fa fa-meh"},{'label':"Sub-item 2"},{'icon':'🙉','label':"Sub-item 3",}]},
]

over_theme = {'txc_inactive': '#FFFFFF'}
menu_id = hc.nav_bar(
    menu_definition=menu_data,
    override_theme=over_theme,
    home_name='Home',
    login_name='Logout',
    hide_streamlit_markers=False, #will show the st hamburger as well as the navbar now!
    sticky_nav=True, #at the top or not
    sticky_mode='pinned', #jumpy or not-jumpy, but sticky or pinned
)

if st.button('click me'):
  st.info('You clicked at: {}'.format(datetime.datetime.now()))


if st.sidebar.button('click me too'):
  st.info('You clicked at: {}'.format(datetime.datetime.now()))

#get the id of the menu item clicked
st.info(f"{menu_id}")
```

 # HyLoader
<p align="center">
<img src="https://github.com/TangleSpace/hydralit_components/blob/main/resources/standard_loaders.gif?raw=true" title="HyLoaders" alt="HyLoaders", width="45%" height="45%">
<img src="https://github.com/TangleSpace/hydralit_components/blob/main/resources/pretty_loaders.gif?raw=true" title="HyLoaderspretty" alt="HyLoaders", width="45%" height="45%">
<img src="https://github.com/TangleSpace/hydralit_components/blob/main/resources/pulse_bars.gif?raw=true" title="HyLoaderspretty" alt="HyLoaders", width="100%" height="60%">



A very quick example of how to use the load to wrap your long running code

```python
import hydralit_components as hc
import time

# a dedicated single loader 
with hc.HyLoader('Now doing loading',hc.Loaders.pulse_bars,):
    time.sleep(5)

# for 3 loaders from the standard loader group
with hc.HyLoader('Now doing loading',hc.Loaders.standard_loaders,index=[3,0,5]):
    time.sleep(5)

# for 1 (index=5) from the standard loader group
with hc.HyLoader('Now doing loading',hc.Loaders.standard_loaders,index=5):
    time.sleep(5)

# for 4 replications of the same loader (index=2) from the standard loader group
with hc.HyLoader('Now doing loading',hc.Loaders.standard_loaders,index=[2,2,2,2]):
    time.sleep(5)
```

 # Experimental
<p align="center">
<video controls
    src="https://github.com/TangleSpace/hydralit_components/blob/main/resources/hydrali%20experimental.mp4"
    width="800px"
    >

</video>


An example of injecting code into the Streamlit application that previously would not have worked. 
## NOTE: You need to force reload (browser refresh) the entire page after the experiemntal features have been enabled (you will see a notification in the terminal) to ensure the additions have been loaded into the web page.

```python
import hydralit_components as hc
import streamlit as st


hc.hydralit_experimental(True)


modal_code = """
<div>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
Hydralit Components Experimental Demo!
</button>

<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
  <h5 class="modal-title" id="exampleModalLabel">Modal Popup Form!</h5>
  <button type="button" class="close" data-dismiss="modal" aria-label="Close">
    <span aria-hidden="true">&times;</span>
  </button>
</div>
<div class="modal-body">
  <div class="container">
<h2>Pure JS+HTML Form</h2>
<form class="form-horizontal" action="/">
<div class="form-group">
<label class="control-label col-sm-2" for="email">Email:</label>
<div class="col-sm-10">
  <input type="email" class="form-control" id="email" placeholder="Enter email" name="email">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="pwd">Password:</label>
<div class="col-sm-10">          
  <input type="password" class="form-control" id="pwd" placeholder="Enter password" name="pwd">
</div>
</div>
<div class="form-group">        
<div class="col-sm-offset-2 col-sm-10">
  <div class="checkbox">
    <label><input type="checkbox" name="remember"> Remember me</label>
  </div>
</div>
</div>
<div class="form-group">        
<div class="col-sm-offset-2 col-sm-10">
  <button type="submit" class="btn btn-default">Submit</button>
</div>
</div>
</form>
</div>
</div>
<div class="modal-footer">
  <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
  <button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
</div>
"""


st.markdown(modal_code,unsafe_allow_html=True)
query_param = st.experimental_get_query_params()

if query_param:
    st.write('We caputred these values from the experimental modal form using Javascript + HTML + Streamlit + Hydralit Components.')
    st.write(query_param)

```




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/tanglespace/hydralit_components",
    "name": "hydralit-components",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "Streamlit,Web,Responsive,Deployment,Web Application,Presentation",
    "author": "Jackson Storm",
    "author_email": "c6lculus8ntr0py@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/84/40/99260734802473351ef025b3a3e2106d0abfcce1b360485b0faa3ffb6d87/hydralit_components-1.0.10.tar.gz",
    "platform": null,
    "description": "# **Hydralit Components** <img src=\"https://github.com/TangleSpace/hydralit/raw/main/docs/images/hydra.png\" alt=\"hydra\" width=\"50\"/>\r\nA package of Streamlit components that can be used directly or with the [Hydralit](https://github.com/TangleSpace/hydralit) library.\r\n\r\n## **Current Components**\r\n - ### **Navbar**\r\n - ### **Option Bar**\r\n - ### **Info Card**\r\n - ### **Progress Bar**\r\n - ### **Loaders**\r\n - ### **Experimental**\r\n\r\n<br>\r\n<p align=\"center\">\r\n\t<a href=\"https://pepy.tech/project/hydralit_components/\" alt=\"PyPI downloads\">\r\n\t<img src=\"https://pepy.tech/badge/hydralit_components\" />\r\n\t</a>\r\n    <a href=\"https://www.python.org/\" alt=\"Python version\">\r\n        <img src=\"https://img.shields.io/pypi/pyversions/hydralit_components\" /></a>\r\n    <a href=\"https://pypi.org/project/hydralit_components/\" alt=\"PyPI version\">\r\n        <img src=\"https://img.shields.io/pypi/v/hydralit_components\" /></a>\r\n    <a href=\"https://hydralit_components.aur-license.org/\" alt=\"License\">\r\n        <img src=\"http://img.shields.io/:license-Apache-blue.svg?style=flat-square\"></a>\r\n    <a href=\"https://streamlit.io/\" alt=\"Streamlit\">\r\n        <img src=\"http://img.shields.io/:streamlit->=0.67.0-blue.svg?style=flat-square\"></a>\r\n</p>\r\n\r\n## Installing Hydralit Components\r\nHydralit can be installed from PyPI:\r\n\r\n```bash\r\npip install -U hydralit_components\r\n```\r\n# New in version 1.0.9 \r\n - Added new component, info_card\r\n <p align=\"center\">\r\n<img src=\"https://github.com/TangleSpace/hydralit_components/blob/main/resources/info_card.PNG?raw=true\" title=\"InfoCard\" alt=\"InfoCard\", width=\"100%\" height=\"100%\">\r\n</p>\r\n\r\n ```python\r\nimport streamlit as st\r\nimport hydralit_components as hc\r\n\r\n#can apply customisation to almost all the properties of the card, including the progress bar\r\ntheme_bad = {'bgcolor': '#FFF0F0','title_color': 'red','content_color': 'red','icon_color': 'red', 'icon': 'fa fa-times-circle'}\r\ntheme_neutral = {'bgcolor': '#f9f9f9','title_color': 'orange','content_color': 'orange','icon_color': 'orange', 'icon': 'fa fa-question-circle'}\r\ntheme_good = {'bgcolor': '#EFF8F7','title_color': 'green','content_color': 'green','icon_color': 'green', 'icon': 'fa fa-check-circle'}\r\n\r\ncc = st.columns(4)\r\n\r\nwith cc[0]:\r\n  # can just use 'good', 'bad', 'neutral' sentiment to auto color the card\r\n  hc.info_card(title='Some heading GOOD', content='All good!', sentiment='good',bar_value=77)\r\n\r\nwith cc[1]:\r\n  hc.info_card(title='Some BAD BAD', content='This is really bad',bar_value=12,theme_override=theme_bad)\r\n\r\nwith cc[2]:\r\n  hc.info_card(title='Some NEURAL', content='Oh yeah, sure.', sentiment='neutral',bar_value=55)\r\n\r\nwith cc[3]:\r\n  #customise the the theming for a neutral content\r\n  hc.info_card(title='Some NEURAL',content='Maybe...',key='sec',bar_value=5,theme_override=theme_neutral)\r\n\r\n ```\r\n - Added new component, option_bar\r\n  <p align=\"center\">\r\n<img src=\"https://github.com/TangleSpace/hydralit_components/blob/main/resources/option_bar.PNG?raw=true\" title=\"OptionBar\" alt=\"OptionBar\", width=\"100%\" height=\"100%\">\r\n</p>\r\n\r\n ```python\r\nimport streamlit as st\r\nimport hydralit_components as hc\r\n\r\n# define what option labels and icons to display\r\noption_data = [\r\n    {'icon': \"bi bi-hand-thumbs-up\", 'label':\"Agree\"},\r\n    {'icon':\"fa fa-question-circle\",'label':\"Unsure\"},\r\n    {'icon': \"bi bi-hand-thumbs-down\", 'label':\"Disagree\"},\r\n]\r\n\r\n# override the theme, else it will use the Streamlit applied theme\r\nover_theme = {'txc_inactive': 'white','menu_background':'purple','txc_active':'yellow','option_active':'blue'}\r\nfont_fmt = {'font-class':'h2','font-size':'150%'}\r\n\r\n# display a horizontal version of the option bar\r\nop = hc.option_bar(option_definition=option_data,title='Feedback Response',key='PrimaryOption',override_theme=over_theme,font_styling=font_fmt,horizontal_orientation=True)\r\n\r\n# display a version version of the option bar\r\nop2 = hc.option_bar(option_definition=option_data,title='Feedback Response',key='PrimaryOption',override_theme=over_theme,font_styling=font_fmt,horizontal_orientation=False)\r\n\r\n ```\r\n - Added new component, progress_bar\r\n  <p align=\"center\">\r\n<img src=\"https://github.com/TangleSpace/hydralit_components/blob/main/resources/progress_bar.PNG?raw=true\" title=\"ProgressBar\" alt=\"ProgressBar\", width=\"100%\" height=\"100%\">\r\n</p>\r\n\r\n```python\r\nimport streamlit as st\r\nimport hydralit_components as hc\r\n\r\n# can apply customisation to almost all the properties 0f the progress ba\r\noverride_theme_1 = {'bgcolor': '#EFF8F7','progress_color': 'green'}\r\noverride_theme_2 = {'bgcolor': 'green','content_color': 'white','progress_color': 'red'}\r\noverride_theme_3 = {'content_color': 'red','progress_color': 'orange'}\r\n\r\n# can just use 'good', 'bad', 'neutral' sentiment to auto color the bar\r\nhc.progress_bar(25,'Something something')\r\nhc.progress_bar(35,'Something something',sentiment='good')\r\nhc.progress_bar(95,'Something something',sentiment='neutral')\r\nhc.progress_bar(47,'Something something',sentiment='bad')\r\n\r\n# customise the the theming for a neutral content\r\nhc.progress_bar(5,'Something something - 1a',key='pa1',override_theme=override_theme_1)\r\nhc.progress_bar(35,'Something something - 2a',key='pa2',sentiment='good',override_theme=override_theme_2)\r\nhc.progress_bar(95,'Something something - 3a',key='pa3',sentiment='neutral')\r\nhc.progress_bar(47,'Something something - 4a',key='pa4',sentiment='bad',override_theme=override_theme_3)\r\n\r\n```\r\n\r\n# New in version 1.0.7 \r\n\r\n - More visual appearence improvements for the Navbar, including a much nicer non-animated mode.\r\n <p align=\"center\">\r\n<img src=\"https://github.com/TangleSpace/hydralit_components/blob/main/resources/non-animated_navbar.PNG?raw=true\" title=\"Navbar\" alt=\"Navbar\", width=\"100%\" height=\"100%\">\r\n</p>\r\n\r\n - Removed the background effect on all loaders (as everyone hated it).\r\n - Can completely customise the Home and Logout entries on the Navbar as well as the other entires.\r\n<p align=\"center\">\r\n<img src=\"https://github.com/TangleSpace/hydralit_components/blob/main/resources/customised_navbar.PNG?raw=true\" title=\"Navbar\" alt=\"Navbar\", width=\"100%\" height=\"100%\">\r\n</p>\r\n\r\n - Full support for Font Awesome and BootStrap icons offline for Navbar entries, as well as all emojis.\r\n - Full support for all versions of Streamlit up to current (1.4.0).\r\n<br><br>\r\n\r\n# New in version 1.0.6 (navbar updates)\r\nNOTE: Since everyone complained about the \"jumping navbar\", it is now pinned to the top of the page, it is no longer sticky. If you want a sticky, non-jumping, with the Streamlit hamburger navbar all in one magical solution, keep asking Streamlit, since they have already stated they are looking to implement this feature themselves and Hydralit and Hydralit Components can go F^%& itself according to the way I've been treated by the Streamlit team. So if you have any issues with the way the navbar works, raise an issue or talk to Streamlit.\r\n<br><br>\r\nYou can have jumpy navbar that is sticky, or non-jumping navbar that is pinned to the top, ask Streamlit for both.\r\n\r\n - Changed the sticky behaviour (if you want it at the top, like Streamlit ordering, declare it first) NOTE: The `sticky_nav` parameter moves the navbar to the top of the window, use `sticky_mode = 'sticky'` or `sticky_mode = 'pinned'` if you want it to be sticky, but it will be jumpy or pinned and not jumpy. If you want the Streamlit hamburger menu to appear with the navbar use `hide_streamlit_markers=False`\r\n - Can co-exist with the Streamlit hamburger menu now, as well as the status indicators (running/stop..)\r\n - Improved the centering and appearance\r\n - Can toggle the Streamlit markers on/off independantly of the sticky nav setting\r\n - Bug fix with intial value with label and id provided (Thanks [Daveography](https://github.com/Daveography)!)\r\n\r\n# New in version 1.0.5\r\n - Can toggle navbar animation on/off\r\n - Tighten up the navbar animation\r\n - Add over 20 custom loaders that work the same as the built-in spinner\r\n - An ability to enable experimental features to allow for previously disallowed code injection (like javascript)\r\n - Added a modified version of the existing Streamlit cookie manager to allow for better use in multi-app environments\r\n\r\n# New in version 1.0.3\r\n - Enable sticky menu mode (pin to top of the window)\r\n - Animated dropdown menu entries to support complex navigation\r\n - Offline support\r\n - Added support for fontawesome icons\r\n - Full collapse in mobile view (the burger is back!)\r\n\r\n# Features\r\n - Full theme color support\r\n - Full container support (can put on sidebar too)\r\n - Responsive layout\r\n - Use Bootstrap icons or emojis or nothing\r\n - Configure Response values when clicked\r\n - Assign tooltips\r\n\r\n# Navbar Demo\r\n<p align=\"center\">\r\n<img src=\"https://github.com/TangleSpace/hydralit_components/blob/main/resources/new_navbar.gif?raw=true\" title=\"Navbar\" alt=\"Navbar\", width=\"100%\" height=\"100%\">\r\n</p>\r\n\r\n # Navbar Modes\r\n ## Pinned Mode\r\n<p align=\"center\">\r\n<img src=\"https://github.com/TangleSpace/hydralit_components/blob/main/resources/pinned_nav_new.gif?raw=true\" title=\"Navbar\" alt=\"Navbar\", width=\"100%\" height=\"100%\">\r\n</p>\r\n\r\n ## Sticky (jumpy) Mode\r\n<p align=\"center\">\r\n<img src=\"https://github.com/TangleSpace/hydralit_components/blob/main/resources/sticky_nav_new.gif?raw=true\" title=\"Navbar\" alt=\"Navbar\", width=\"100%\" height=\"100%\">\r\n</p>\r\n\r\n ## Regular Mode\r\n<p align=\"center\">\r\n<img src=\"https://github.com/TangleSpace/hydralit_components/blob/main/resources/non-sticky_nav_new.gif?raw=true\" title=\"Navbar\" alt=\"Navbar\", width=\"100%\" height=\"100%\">\r\n</p>\r\n\r\n\r\nA very quick example of how to modify the menu items and to show we can put it on the main page, sidebar or within a container, up to you.\r\n```python\r\nimport streamlit as st\r\nimport hydralit_components as hc\r\nimport datetime\r\n\r\n#make it look nice from the start\r\nst.set_page_config(layout='wide',initial_sidebar_state='collapsed',)\r\n\r\n# specify the primary menu definition\r\nmenu_data = [\r\n    {'icon': \"far fa-copy\", 'label':\"Left End\"},\r\n    {'id':'Copy','icon':\"\ud83d\udc19\",'label':\"Copy\"},\r\n    {'icon': \"fa-solid fa-radar\",'label':\"Dropdown1\", 'submenu':[{'id':' subid11','icon': \"fa fa-paperclip\", 'label':\"Sub-item 1\"},{'id':'subid12','icon': \"\ud83d\udc80\", 'label':\"Sub-item 2\"},{'id':'subid13','icon': \"fa fa-database\", 'label':\"Sub-item 3\"}]},\r\n    {'icon': \"far fa-chart-bar\", 'label':\"Chart\"},#no tooltip message\r\n    {'id':' Crazy return value \ud83d\udc80','icon': \"\ud83d\udc80\", 'label':\"Calendar\"},\r\n    {'icon': \"fas fa-tachometer-alt\", 'label':\"Dashboard\",'ttip':\"I'm the Dashboard tooltip!\"}, #can add a tooltip message\r\n    {'icon': \"far fa-copy\", 'label':\"Right End\"},\r\n    {'icon': \"fa-solid fa-radar\",'label':\"Dropdown2\", 'submenu':[{'label':\"Sub-item 1\", 'icon': \"fa fa-meh\"},{'label':\"Sub-item 2\"},{'icon':'\ud83d\ude49','label':\"Sub-item 3\",}]},\r\n]\r\n\r\nover_theme = {'txc_inactive': '#FFFFFF'}\r\nmenu_id = hc.nav_bar(\r\n    menu_definition=menu_data,\r\n    override_theme=over_theme,\r\n    home_name='Home',\r\n    login_name='Logout',\r\n    hide_streamlit_markers=False, #will show the st hamburger as well as the navbar now!\r\n    sticky_nav=True, #at the top or not\r\n    sticky_mode='pinned', #jumpy or not-jumpy, but sticky or pinned\r\n)\r\n\r\nif st.button('click me'):\r\n  st.info('You clicked at: {}'.format(datetime.datetime.now()))\r\n\r\n\r\nif st.sidebar.button('click me too'):\r\n  st.info('You clicked at: {}'.format(datetime.datetime.now()))\r\n\r\n#get the id of the menu item clicked\r\nst.info(f\"{menu_id}\")\r\n```\r\n\r\n # HyLoader\r\n<p align=\"center\">\r\n<img src=\"https://github.com/TangleSpace/hydralit_components/blob/main/resources/standard_loaders.gif?raw=true\" title=\"HyLoaders\" alt=\"HyLoaders\", width=\"45%\" height=\"45%\">\r\n<img src=\"https://github.com/TangleSpace/hydralit_components/blob/main/resources/pretty_loaders.gif?raw=true\" title=\"HyLoaderspretty\" alt=\"HyLoaders\", width=\"45%\" height=\"45%\">\r\n<img src=\"https://github.com/TangleSpace/hydralit_components/blob/main/resources/pulse_bars.gif?raw=true\" title=\"HyLoaderspretty\" alt=\"HyLoaders\", width=\"100%\" height=\"60%\">\r\n\r\n\r\n\r\nA very quick example of how to use the load to wrap your long running code\r\n\r\n```python\r\nimport hydralit_components as hc\r\nimport time\r\n\r\n# a dedicated single loader \r\nwith hc.HyLoader('Now doing loading',hc.Loaders.pulse_bars,):\r\n    time.sleep(5)\r\n\r\n# for 3 loaders from the standard loader group\r\nwith hc.HyLoader('Now doing loading',hc.Loaders.standard_loaders,index=[3,0,5]):\r\n    time.sleep(5)\r\n\r\n# for 1 (index=5) from the standard loader group\r\nwith hc.HyLoader('Now doing loading',hc.Loaders.standard_loaders,index=5):\r\n    time.sleep(5)\r\n\r\n# for 4 replications of the same loader (index=2) from the standard loader group\r\nwith hc.HyLoader('Now doing loading',hc.Loaders.standard_loaders,index=[2,2,2,2]):\r\n    time.sleep(5)\r\n```\r\n\r\n # Experimental\r\n<p align=\"center\">\r\n<video controls\r\n    src=\"https://github.com/TangleSpace/hydralit_components/blob/main/resources/hydrali%20experimental.mp4\"\r\n    width=\"800px\"\r\n    >\r\n\r\n</video>\r\n\r\n\r\nAn example of injecting code into the Streamlit application that previously would not have worked. \r\n## NOTE: You need to force reload (browser refresh) the entire page after the experiemntal features have been enabled (you will see a notification in the terminal) to ensure the additions have been loaded into the web page.\r\n\r\n```python\r\nimport hydralit_components as hc\r\nimport streamlit as st\r\n\r\n\r\nhc.hydralit_experimental(True)\r\n\r\n\r\nmodal_code = \"\"\"\r\n<div>\r\n<!-- Button trigger modal -->\r\n<button type=\"button\" class=\"btn btn-primary\" data-toggle=\"modal\" data-target=\"#exampleModal\">\r\nHydralit Components Experimental Demo!\r\n</button>\r\n\r\n<!-- Modal -->\r\n<div class=\"modal fade\" id=\"exampleModal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"exampleModalLabel\" aria-hidden=\"true\">\r\n<div class=\"modal-dialog\" role=\"document\">\r\n<div class=\"modal-content\">\r\n<div class=\"modal-header\">\r\n  <h5 class=\"modal-title\" id=\"exampleModalLabel\">Modal Popup Form!</h5>\r\n  <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">\r\n    <span aria-hidden=\"true\">&times;</span>\r\n  </button>\r\n</div>\r\n<div class=\"modal-body\">\r\n  <div class=\"container\">\r\n<h2>Pure JS+HTML Form</h2>\r\n<form class=\"form-horizontal\" action=\"/\">\r\n<div class=\"form-group\">\r\n<label class=\"control-label col-sm-2\" for=\"email\">Email:</label>\r\n<div class=\"col-sm-10\">\r\n  <input type=\"email\" class=\"form-control\" id=\"email\" placeholder=\"Enter email\" name=\"email\">\r\n</div>\r\n</div>\r\n<div class=\"form-group\">\r\n<label class=\"control-label col-sm-2\" for=\"pwd\">Password:</label>\r\n<div class=\"col-sm-10\">          \r\n  <input type=\"password\" class=\"form-control\" id=\"pwd\" placeholder=\"Enter password\" name=\"pwd\">\r\n</div>\r\n</div>\r\n<div class=\"form-group\">        \r\n<div class=\"col-sm-offset-2 col-sm-10\">\r\n  <div class=\"checkbox\">\r\n    <label><input type=\"checkbox\" name=\"remember\"> Remember me</label>\r\n  </div>\r\n</div>\r\n</div>\r\n<div class=\"form-group\">        \r\n<div class=\"col-sm-offset-2 col-sm-10\">\r\n  <button type=\"submit\" class=\"btn btn-default\">Submit</button>\r\n</div>\r\n</div>\r\n</form>\r\n</div>\r\n</div>\r\n<div class=\"modal-footer\">\r\n  <button type=\"button\" class=\"btn btn-secondary\" data-dismiss=\"modal\">Close</button>\r\n  <button type=\"button\" class=\"btn btn-primary\">Save changes</button>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\"\"\"\r\n\r\n\r\nst.markdown(modal_code,unsafe_allow_html=True)\r\nquery_param = st.experimental_get_query_params()\r\n\r\nif query_param:\r\n    st.write('We caputred these values from the experimental modal form using Javascript + HTML + Streamlit + Hydralit Components.')\r\n    st.write(query_param)\r\n\r\n```\r\n\r\n\r\n\r\n",
    "bugtrack_url": null,
    "license": "Apache 2",
    "summary": "Components to use with or without the Hydralit package.",
    "version": "1.0.10",
    "project_urls": {
        "Documentation": "https://github.com/tanglespace/hydralit_components",
        "Homepage": "https://github.com/tanglespace/hydralit_components",
        "Source": "https://github.com/tanglespace/hydralit_components",
        "Tracker": "https://github.com/tanglespace/hydralit_components/issues"
    },
    "split_keywords": [
        "streamlit",
        "web",
        "responsive",
        "deployment",
        "web application",
        "presentation"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "844099260734802473351ef025b3a3e2106d0abfcce1b360485b0faa3ffb6d87",
                "md5": "0dd0ad1a084caa55025438e8136ba5fd",
                "sha256": "aeae8c9531451a5b93df9f4df208b4cb159b1a0ccf523f2a45d633e64b700496"
            },
            "downloads": -1,
            "filename": "hydralit_components-1.0.10.tar.gz",
            "has_sig": false,
            "md5_digest": "0dd0ad1a084caa55025438e8136ba5fd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 20131790,
            "upload_time": "2022-06-22T03:53:39",
            "upload_time_iso_8601": "2022-06-22T03:53:39.309288Z",
            "url": "https://files.pythonhosted.org/packages/84/40/99260734802473351ef025b3a3e2106d0abfcce1b360485b0faa3ffb6d87/hydralit_components-1.0.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-06-22 03:53:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "tanglespace",
    "github_project": "hydralit_components",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "hydralit-components"
}
        
Elapsed time: 0.11823s