Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac-Flath committed Feb 19, 2025
1 parent c8ff009 commit 43f4c1b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.bak
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

<!-- do not remove -->

## 1.0.8

# Add lightbox and Insertable select

## 1.0.7

### New Features
Expand All @@ -11,7 +15,7 @@
### Bugs Squashed

- Update component classes to align with Franken UI v2.0 ([#67](https://github.com/AnswerDotAI/MonsterUI/pull/67)), thanks to [@Zaseem-BIsquared](https://github.com/Zaseem-BIsquared)
- Updated ContainerT, CardT, and TableT class names to match the documented patterns from Franken UI v2.0 docs
- Updated ContainerT, CardT, and TableT class names to match the documented patterns from Franken UI v2.0 docs

## 1.0.6

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

<!-- do not remove -->

## 1.0.9




## 1.0.8

# Add lightbox and Insertable select
Expand Down
2 changes: 1 addition & 1 deletion monsterui/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.8"
__version__ = "1.0.10"
2 changes: 1 addition & 1 deletion monsterui/franken.py
Original file line number Diff line number Diff line change
Expand Up @@ -1245,7 +1245,7 @@ def DropDownNavContainer(*li, # Components
**kwargs # Additional args for the nav
)->FT: # DropDown nav container
"A Nav that is part of a DropDown"
return Div(cls = 'uk-drop uk-dropdown',uk_dropdown=uk_dropdown)(NavContainer(*li, cls=('uk-dropdown-nav',stringify(cls)), uk_nav=uk_nav, parent=parent, **kwargs))
return Div(cls = 'uk-drop w-full uk-dropdown',uk_dropdown=uk_dropdown)(NavContainer(*li, cls=('uk-dropdown-nav',stringify(cls)), uk_nav=uk_nav, parent=parent, **kwargs))

# %% ../nbs/02_franken.ipynb
def TabContainer(*li, # Components
Expand Down
2 changes: 1 addition & 1 deletion nbs/02_franken.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -4994,7 +4994,7 @@
" **kwargs # Additional args for the nav\n",
" )->FT: # DropDown nav container\n",
" \"A Nav that is part of a DropDown\"\n",
" return Div(cls = 'uk-drop uk-dropdown',uk_dropdown=uk_dropdown)(NavContainer(*li, cls=('uk-dropdown-nav',stringify(cls)), uk_nav=uk_nav, parent=parent, **kwargs))"
" return Div(cls = 'uk-drop w-full uk-dropdown',uk_dropdown=uk_dropdown)(NavContainer(*li, cls=('uk-dropdown-nav',stringify(cls)), uk_nav=uk_nav, parent=parent, **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 = 1.0.8
version = 1.0.10
min_python = 3.10
license = apache2
black_formatting = False
Expand Down

0 comments on commit 43f4c1b

Please sign in to comment.