fix(studio): editor panel UX — commit safety, keyboard a11y, wired BlockParamsPanel (#1965)

Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Vance Ingalls
2026-08-21 09:36:31 -07:00
committed by GitHub
co-authored by Claude Opus 5
parent acfa7c55a2
commit ba607bf886
29 changed files with 771 additions and 136 deletions
+12
View File
@@ -186,3 +186,15 @@ export function trackStudioFeedback(
source: "studio",
});
}
export function trackBlockParamCommit(props: {
tone: "saved" | "error" | "confirm";
blockName: string;
key: string;
}): void {
trackEvent("studio_block_param_commit", {
tone: props.tone,
block_name: props.blockName,
param_key: props.key,
});
}