Funix 0.6.1
0.6.1 (2025-05-15)
Highlights
-
A new examples syntax is available, where you can combine different arguments, like below:
@funix( examples=[ {"doc": "Fire", "sum": "Water"}, {"doc": "Fire", "sum": "Fox"}, {"sum": "Wood"}, {"doc": "Golden", "sum": "Silver"}, {"doc": "Day", "sum": "Night"}, ] ) def example_function( doc: str, sum: str, ) -> str: pass
When user input
Firein thedocfield, thesumfield examples will be filtered toWaterandFox. -
The front-end has been improved a little so that the left-hand list is not expanded under a single function.
-
The theme options
funix.autorun_label,funix.run_button,funix.grid_heightandfunix.grid_checkboxare added.funix.autorun_labelis used to customize the autorun checkbox label, string.funix.run_buttonis used to customize the run button text, string.funix.grid_heightis used to customize the DataGrid height, number.funix.grid_checkboxis used to customize the DataGrid selection checkbox display or not, boolean.
Bug Fixes
- secret and cookies (49c18b9, @Yazawazi)
- dataframe height, button text (d6bd586, @Yazawazi)
- change auto run label (700c9a7, @Yazawazi)
- use
<img />width & height props (b91dbba, @Yazawazi) - disable center img (0d9df31, @Yazawazi)
- do not show app bar arrow only one function (f9a011a, @Yazawazi)
- revert output panel (777f7ae, @Yazawazi)
Features
- Merge branch 'main' into develop (284ac2c, @Yazawazi)
- support
advanced_examplesforstr(12d8c31, @Yazawazi) - set autorun automatically (98e7812, @Yazawazi)
- sidebar will be collapsed if only one function is in the list (fe91cb7, @Yazawazi)
- add
gridHeightandcheckboxSelection(34b4143, @Yazawazi) - poor autosize (33352ab, @Yazawazi)
- calculate width manually (e2d27db, @Yazawazi)
- add
funix.autorun_labeltheme option (6365b0d, @Yazawazi)