Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac-Flath committed Jan 6, 2025
1 parent 39647c2 commit 24eebde
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion monsterui/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.13"
__version__ = "0.0.14"
2 changes: 1 addition & 1 deletion monsterui/daisy.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def LiStep(*c, # Description for Step that goes next to bubble (often text)
**kwargs # Aditional arguments for the step (`Li` component)
)->FT: # Li(..., cls='step')
"Creates a step list item"
return Li(*c, cls=('step', stringify(cls)), **kwargs)
return Li(*c, cls=('step', stringify(cls)), data_content=data_content, **kwargs)

# %% ../nbs/03_daisy.ipynb
class LoadingT(VEnum):
Expand Down
2 changes: 1 addition & 1 deletion nbs/03_daisy.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
" **kwargs # Aditional arguments for the step (`Li` component)\n",
" )->FT: # Li(..., cls='step')\n",
" \"Creates a step list item\"\n",
" return Li(*c, cls=('step', stringify(cls)), **kwargs)"
" return Li(*c, cls=('step', stringify(cls)), data_content=data_content, **kwargs)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion settings.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[DEFAULT]
repo = MonsterUI
lib_name = MonsterUI
version = 0.0.13
version = 0.0.14
min_python = 3.7
license = apache2
black_formatting = False
Expand Down

0 comments on commit 24eebde

Please sign in to comment.