refactor(compiler): promote styles pipeline

This commit is contained in:
Rahim
2026-06-26 00:20:01 -07:00
parent 86d84bc45a
commit b55eb1a0fd
26 changed files with 1084 additions and 716 deletions
+2
View File
@@ -7,6 +7,7 @@ export interface ButtonOptions {
export interface ButtonProps {
role: 'button';
type: 'button';
tabIndex: 0;
onClick: (event: UIEvent) => void;
onPointerDown: (event: UIEvent) => void;
@@ -20,6 +21,7 @@ export function createButton(options: ButtonOptions): ButtonProps {
return {
role: 'button',
type: 'button',
tabIndex: 0,
onClick(event) {