Skip to content

Commit 551040c

Browse files
committed
release
1 parent 03f62d1 commit 551040c

File tree

7 files changed

+47
-7
lines changed

7 files changed

+47
-7
lines changed

CHANGELOG.bak

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
<!-- do not remove -->
44

5+
## 1.0.13
6+
7+
8+
### Bugs Squashed
9+
10+
- LabelCheckboxX ignores id set manually ([#80](https://github.com/AnswerDotAI/MonsterUI/issues/80))
11+
12+
- Select sending multiple values to HTMX
13+
514
## 1.0.11
615

716
### New Features

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
<!-- do not remove -->
44

5+
## 1.0.14
6+
7+
### New Features
8+
9+
### Bugs Squashed
10+
11+
- SVG Path Name Collision Issue in MonsterUI ([#85](https://github.com/AnswerDotAI/MonsterUI/issues/85))
12+
513
## 1.0.13
614

715

monsterui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.13"
1+
__version__ = "1.0.14"

monsterui/franken.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -464,15 +464,14 @@ def Divider(*c, # contents of Divider tag (often nothing)
464464

465465
# %% ../nbs/02_franken.ipynb
466466
def DividerSplit(*c, cls=(), line_cls=(), text_cls=()):
467+
"Creates a simple horizontal line divider with configurable thickness and vertical spacing"
467468
cls, line_cls, text_cls = map(stringify,(cls, line_cls, text_cls))
468469
return Div(cls='relative ' + cls)(
469470
Div(cls="absolute inset-0 flex items-center " + line_cls)(Span(cls="w-full border-t border-border")),
470471
Div(cls="relative flex justify-center " + text_cls)(Span(cls="bg-background px-2 ")(*c)))
471472

472473
# %% ../nbs/02_franken.ipynb
473-
def DividerLine(lwidth=2, y_space=4):
474-
"Creates a simple horizontal line divider with configurable thickness and vertical spacing"
475-
return Hr(cls=f"my-{y_space} h-[{lwidth}px] w-full bg-secondary")
474+
def DividerLine(lwidth=2, y_space=4): return Hr(cls=f"my-{y_space} h-[{lwidth}px] w-full bg-secondary")
476475

477476
# %% ../nbs/02_franken.ipynb
478477
def Article(*c, # contents of Article tag (often other tags)

nbs/00_foundation.ipynb

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,21 @@
174174
],
175175
"metadata": {
176176
"kernelspec": {
177-
"display_name": "python3",
177+
"display_name": "Python 3 (ipykernel)",
178178
"language": "python",
179179
"name": "python3"
180+
},
181+
"language_info": {
182+
"codemirror_mode": {
183+
"name": "ipython",
184+
"version": 3
185+
},
186+
"file_extension": ".py",
187+
"mimetype": "text/x-python",
188+
"name": "python",
189+
"nbconvert_exporter": "python",
190+
"pygments_lexer": "ipython3",
191+
"version": "3.12.8"
180192
}
181193
},
182194
"nbformat": 4,

nbs/01_core.ipynb

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,9 +462,21 @@
462462
],
463463
"metadata": {
464464
"kernelspec": {
465-
"display_name": "python3",
465+
"display_name": "Python 3 (ipykernel)",
466466
"language": "python",
467467
"name": "python3"
468+
},
469+
"language_info": {
470+
"codemirror_mode": {
471+
"name": "ipython",
472+
"version": 3
473+
},
474+
"file_extension": ".py",
475+
"mimetype": "text/x-python",
476+
"name": "python",
477+
"nbconvert_exporter": "python",
478+
"pygments_lexer": "ipython3",
479+
"version": "3.12.8"
468480
}
469481
},
470482
"nbformat": 4,

settings.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[DEFAULT]
22
repo = MonsterUI
33
lib_name = MonsterUI
4-
version = 1.0.13
4+
version = 1.0.14
55
min_python = 3.10
66
license = apache2
77
black_formatting = False

0 commit comments

Comments
 (0)