Report pane resize handle size to assistive tech (APG window splitter)

This commit is contained in:
2026-06-05 12:33:19 +03:00
parent 7b8115f623
commit 8ef749c2d0
4 changed files with 144 additions and 24 deletions
+7 -1
View File
@@ -32,6 +32,7 @@ export function App() {
<main className={styles.panes}>
<section
id="pane-library"
className={styles.pane}
style={{ width: libraryWidth }}
aria-label="Snippet library"
@@ -43,7 +44,12 @@ export function App() {
<SpecEditor />
</section>
<ResizeHandle side="preview" label="Resize live preview" />
<section className={styles.pane} style={{ width: previewWidth }} aria-label="Live preview">
<section
id="pane-preview"
className={styles.pane}
style={{ width: previewWidth }}
aria-label="Live preview"
>
<LivePreview />
</section>
</main>