Skip to content

Releases: darrida/py-shinylive-authentication

shinylive-auth 2024.08.04

05 Aug 00:04
Compare
Choose a tag to compare

Fixed small issue where token reactive value wasn't getting cleared in specific circumstances.

shinylive-auth 2024.7.18

28 Jul 15:55
Compare
Choose a tag to compare

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

21 Apr 03:40
Compare
Choose a tag to compare

Fixes:

  • Fixed spelling issue in login failed notification
  • Moved shinylive and shinyswatch 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