Components

The on-site catalog of every chirp-ui macro — grouped, scannable, with live examples

Page actions AI-ready formats and sharing
Open LLM text
Share with AI
Ask Claude Ask ChatGPT Ask Gemini Ask Copilot

chirp-ui ships a registry of Kida macros — import fromchirpui/and use with {% call %}. Every public macro is backed by manifest.json, so this catalog, the component showcase, and the API reference all stay in sync with the registry.

Browse the catalog below by category, see live specimens in the showcase, and read the anatomy deep-dives for the components with the most moving parts. You never need to leave the site or run a local app to see a component rendered.

Catalog by category

The registry groups macros into the categories below. Counts reflect the public (non-internal) surface inmanifest.json.

Category What lives here Representative macros
Layout Page scaffolding and composition primitives app_shell, container, grid, stack, block, cluster, frame, page_header, section_header, divider, description_list
Container Surface chrome that frames content card, surface, panel, modal, overlay, settings_row, config_row
Navigation Moving between and within views breadcrumbs, nav_tree, nav_link, dropdown, dropdown_select, filter_rail, nav_progress, index_card
Control Buttons, toolbars, and action clusters btn, icon_btn, btn_group, action_bar, action_strip, command_bar, copy_btn, filter_group, kbd
Form Fields, fieldsets, and form chrome form, field, fieldset, filter_bar, form_actions, form_error_summary, inline_edit, input_group, composer_shell
Data display Tables, charts, avatars, and records data_table, bar_chart, calendar, avatar, avatar_stack, chip, timeline, tree_view, description_list
Feedback Status, alerts, and progress alert, badge, callout, confirm, progress, empty_state, notification_dot, counter_badge, live_badge
Interactive Stateful widgets and motion behaviors accordion, carousel, collapse, command_palette, infinite_scroll, sortable, island_root
Overlay Layered surfaces drawer, tray, popover
Content Inline content primitives code, code_block, install_snippet, item, label_overline, logo, signature
Typography Type scale and measure utilities display, font_*, measure_*, text_*helpers
Marketing Landing-page and site-shell sections site_shell, site_header, site_footer, band, cta_band, feature_section, feature_stack, logo_cloud
Media Catalog and watch-side surfaces catalog_rail, media_hero_shelf, title_card, video_thumbnail, live_event_card
Social Community and discussion surfaces topic_card, answer_card, thread_reader_layout, moderation_queue_item
Effect Decorative and ambient treatments aura, aurora, bento, bg_pattern, border_beam, ambient
ASCII Terminal-flavored primitives ascii_card, ascii_tabs, ascii_modal, ascii_border, ascii_table, ascii_7seg, ascii_fader, ascii_knob, and more
Composite Full assembled surfaces resource_index

For the complete list of every public macro grouped by category — generated frommanifest.jsonand guarded against drift — see All components. For each macro's full parameters, slots, variants, and maturity, see the API reference.

Live examples

These pages render real components in-page using thecomponent_specimen shortcode and document the rendered contract for the components with the most moving parts.

Composition helpers

For server-driven dashboards and settings pages, chirp-ui ships macros that standardize common htmx patterns instead of hand-writing hidden buttons:

  • fragment_island(...)wraps a target region refreshed independently
  • fragment_island_with_result(...)pairs a controls region with a result pane
  • poll_trigger(url, target, delay=...)renders the hidden polling button used for load-time or delayed refreshes
  • confirm_dialog(...) and confirm_trigger(...)provide consistent confirmation flows around destructive or high-friction actions
{% from "chirpui/fragment_island.html" import poll_trigger %}

<div id="collection-status"></div>
{{ poll_trigger("/collections/status?refresh=1", "#collection-status", delay="1s") }}

Use these helpers instead of hand-writing hidden htmx buttons in each template.

Out-of-band, suspense, and navigation

  • OOB helpersoob_fragment, oob_toast, and counter_badgecompose out-of-band swaps for server-driven updates.
  • Suspensesuspense_slot and suspense_groupdrive skeleton-to-content deferred loading.
  • Navigation extrasnav_progressrenders a CSS-only loading bar for htmx page transitions.
  • Streamingstreaming_block, model_card, sse_status, and sse_retry support htmx SSE and LLM UIs.

Browse the showcase to see each of these rendered, and the API reference for every parameter.