From a7cc53981b273f44e0212fbcf242d8fe3cef57be Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 27 May 2026 05:37:48 +0000 Subject: [PATCH 1/2] Add ARIA labels to playground form controls Adds `aria-label` attributes to the select and input elements inside the Control wrapper components in the playground view to improve accessibility for screen readers. Co-authored-by: aloewright <3641844+aloewright@users.noreply.github.com> --- apps/quill/client/components/playground-view.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/quill/client/components/playground-view.tsx b/apps/quill/client/components/playground-view.tsx index 511226b4..95b15b63 100644 --- a/apps/quill/client/components/playground-view.tsx +++ b/apps/quill/client/components/playground-view.tsx @@ -295,6 +295,7 @@ export function PlaygroundView({
setPresetSlug(e.target.value as UseCase | "")} value={presetSlug} @@ -326,6 +328,7 @@ export function PlaygroundView({ Date: Wed, 27 May 2026 05:43:29 +0000 Subject: [PATCH 2/2] Add ARIA labels to playground form controls Co-authored-by: aloewright <3641844+aloewright@users.noreply.github.com>