Extra-Streamlit-Components icon indicating copy to clipboard operation
Extra-Streamlit-Components copied to clipboard

An all in one place, to find complex or just not available components by default on streamlit.

Results 23 Extra-Streamlit-Components issues
Sort by recently updated
recently updated
newest added

Hi @Mohamed-512 thank you for your hard work, where is full documentation for stx.CookieManager, only in the book which we supposed to purchase? please answer ``` #when do cookie_manager.delete(cookie) #error...

First off thanks for maintaining this package! Very helpful stuff. Just noticed one thing in the latest release. The [`_remove_extra_spacing()` method of `CookieManager`](https://github.com/Mohamed-512/Extra-Streamlit-Components/blob/1fa9839ced525ad82f288afa21083431bdcee0b3/extra_streamlit_components/CookieManager/__init__.py#L118-L126) has too broad of reach. Other packages,...

The CookieManager does not appear to properly find cookies in some scenarios. In the simplest scenario, I am executing the following code: ```python cookie_manager = stx.CookieManager(key="cookie_manager_" + str(time.time())) session_id =...

Particularly, https://github.com/Schluca/streamlit_tree_select will break as the iframe was first initialized with height=0 While this is partly due to other component's behavior (in this example, its height is dynamically determined by...

```python @st.cache_resource(experimental_allow_widgets=True) def get_cookie_manager(): return stx.CookieManager() cookie_manager = get_cookie_manager() ``` tab bar is not visible if `.get` is being called: ```python access_token = cookie_manager.get('access_token') ``` I don't understand why is...

## Python version 3.8.10 ## OS version Ubuntu 20.04.6 LTS (focal) ## streamlit version 1.32.1 ## extra_streamlit_components version 0.1.71 ## Describe the bug The key and value of cookie set...

hey @Mohamed-512 I just built an app, that needs users to authenticate, obviously i want to make this process as safe as possible. You mention in the README the following:...

I originally posted my issue on the Streamlit Authenticator project ([here](https://github.com/mkhorasani/Streamlit-Authenticator/issues/99#issuecomment-1823313157) but the problem seems to be with the cookie manager. I hope you can help. Below is a basic...

`st.session_state` can be used to store persistence variables that will stay the same during reruns. The cool thing is that every user/session (A session is a browser Tap in this...

There is an issue where StreamLit errors about how rerunning is a no-op, and it shows it forcibly on the frontend. To fix this, I want to make the `experimental_set_query_params`...