New features and enhancements
- Allow awaiting button clicks (#849 by @rodja)
@ui.page('/')
async def index():
b = ui.button('Step')
await b.clicked()
ui.label('One')
await b.clicked()
ui.label('Two')
await b.clicked()
ui.label('Three')
- Use case-insensitive matching for
ui.input
's autocompletion (#856 by @phoskee) - Use
root_path
as prefix (#848, #857 by @wdroz)
Bugfixes
- Fix special characters in
ui.log
(#865 by @phoskee, @falkoschindler) - Fix wrong container for
ui.refreshable
with async functions (#863 by @markbaumgarten, @rodja)
Documentation
- Fix typo on documentation of
ui.button
(#853, #854 by @masykur8d, @rodja) - Add an example with an editable Pandas DataFrame (#851 by @miek770)
- Add new demos showing how to bind to dictionaries and global variables (#850 by @Devavrat8492, @falkoschindler)