Application developer guide — the curated, source-verified reference for
building apps with Teksilo: entry point, the unified Widget
trait, the layout model, Signal/Prop reactivity, attached event handlers,
Actions/Intents/Shortcuts, theming, settings, i18n, the widget catalog, and
headless testing. Rendered on docs.rs from app_guide.md. The same guide
backs the teksilo-app Claude Code skill.
Re-export the res! macro so consuming crates only need teksilo
in their [dependencies] — same pattern as serde re-exporting
serde_derive.
Embed a resource file with compile-time format validation.
The teksu! DSL macro. See docs/teksu-language-spec-v3.md for the
surface language. Re-exported from teksilo-macros so consuming
crates only need teksilo in [dependencies].
The teksu! DSL entry point. Parses a block-structured widget-tree
description and expands to a sequence of Teksilo V2 builder calls.
#[derive(IntentKind)] — generates the typed DTO bridge between
an app’s intent enum and the framework’s runtime Intent. Each
variant declares its intent name via #[name = "..."].
#[derive(IntentKind)] — generate a typed DTO bridge between an
app’s intent enum and the runtime Intent dispatch type.