🎉 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:
@@ -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")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user