Releases: darrida/py-shinylive-authentication
Releases · darrida/py-shinylive-authentication
shinylive-auth 2024.08.04
Fixed small issue where token reactive value wasn't getting cleared in specific circumstances.
shinylive-auth 2024.7.18
CHANGED
- Pulled Logout button into the actual library (instead of having to define it manually in your app. It's now added where ever the module view is initialized:
import shinylive_auth as auth
page_ui = ui.page_sidebar(
ui.sidebar(ui.div(id="app_sidebar_placeholder"),
ui.output_ui("app_view_placeholder"),
window_title=config.WINDOW_TITLE,
title=[
config.APP_TITLE,
auth.view(auth.DEFAULT_AUTH_MODULE_ID), # creates a logout button here
],
id="page_placeholder",
)
app = App(page_ui, server)
- incomplete example -- see tests for fully examples
shinylive-auth-2024.4.22
Fixes:
- Fixed spelling issue in login failed notification
- Moved
shinylive
andshinyswatch
from package dependencies to test/dev (resolves an issue preventing library from installing during shinylive app load
Update:
- Tested with shinylive app using
requirements.txt
targeting both library on PYPI and hosted as a downloadable wheel on a web server