Overview
Shipped Rocket components generated from the current StellarUI webcomponents build.
The docs sidebar and component pager are generated from the current Rocket manifest, so navigation follows what is actually shipped.
StellarUI
Browse the shipped Rocket components, generated API surfaces, and current Datastar-aligned docs examples.
Overview
The docs sidebar and component pager are generated from the current Rocket manifest, so navigation follows what is actually shipped.
Components
87 documented pages
These are the active docs and component constraints used across the current shipped surface.
Keep the sharp edges from recent Rocket and Datastar work visible in the docs instead of relearning them component by component.
Every option below comes from the generated Rocket manifest.
New components should follow the current Rocket pattern instead of the removed HTML template DSL.
import { rocket } from 'datastar'
rocket('stellar-example', {
mode: 'open',
props: ({ string }) => ({
label: string.default('Example'),
}),
render: ({ html, props }) => html`
<button type="button">${props.label}</button>
`,
})