🎉 Release v0.2.0 - Complete UI Component Suite & Enhanced Developer Experience

- Introduced a complete ecosystem of UI components including cards, tabs, layouts, and media elements.
- Enhanced responsive design with Quasar flex utilities and context manager improvements.
- Added 7+ comprehensive example files and updated documentation for better developer experience.
- Achieved zero breaking changes, ensuring backward compatibility.
This commit is contained in:
Matteo Benedetto
2025-09-28 00:10:34 +02:00
parent 577df5c95e
commit 7d5b6a6c99
3 changed files with 250 additions and 2 deletions
+2 -2
View File
@@ -17,12 +17,12 @@ def create_card_examples():
bg.label("This is a basic card with just text content and automatic padding.").classes("text-body2")
# Card with shadow removed
with bg.card(classes="no-shadow border max-width-sm") as no_shadow:
with bg.card(classes="no-shadow border max-width-sm q-pa-md") as no_shadow:
bg.label("No Shadow Card").classes("text-h6 q-mb-md")
bg.label("This card has no shadow and uses a border instead.").classes("text-body2")
# Flat and bordered card using props
with bg.card(classes="max-width-sm").props("flat bordered") as flat_card:
with bg.card(classes="max-width-sm q-pa-md").props("flat bordered") as flat_card:
bg.label("Flat & Bordered").classes("text-h6 q-mb-md")
bg.label("This card uses Quasar's flat and bordered props.").classes("text-body2")