From 86a168c134b959200bd948f874902c31a20a7ee1 Mon Sep 17 00:00:00 2001 From: Beomtae Date: Fri, 19 Sep 2025 16:34:52 +0900 Subject: [PATCH 1/5] =?UTF-8?q?feat:=20html=20=EC=96=B8=EC=96=B4=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- a11y/index.html | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/a11y/index.html b/a11y/index.html index 12fa3e7..e525729 100644 --- a/a11y/index.html +++ b/a11y/index.html @@ -1,16 +1,14 @@ - - - - - - - - Accessibility - - - -
- - + + + + + + + Accessibility + + +
+ + From 8249cbc1ee443decb0ce1b3e171a5b3f39150e3f Mon Sep 17 00:00:00 2001 From: Beomtae Date: Fri, 19 Sep 2025 16:36:00 +0900 Subject: [PATCH 2/5] =?UTF-8?q?refactor:=20=EC=8B=9C=EB=A7=A8=ED=8B=B1=20?= =?UTF-8?q?=ED=83=9C=EA=B7=B8=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- a11y/src/App.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/a11y/src/App.tsx b/a11y/src/App.tsx index a8159f9..b8fecc8 100644 --- a/a11y/src/App.tsx +++ b/a11y/src/App.tsx @@ -6,11 +6,11 @@ import FlightBooking from "./components/FlightBooking"; function App() { return (
-
-
+
+
-
-
+ +
); } From e544d2e745bda50a82c456b63cca7d3ab3a61ee4 Mon Sep 17 00:00:00 2001 From: Beomtae Date: Fri, 19 Sep 2025 16:36:55 +0900 Subject: [PATCH 3/5] =?UTF-8?q?feat:=20=EB=B2=84=ED=8A=BC=EC=9D=98=20?= =?UTF-8?q?=EA=B8=B0=EB=8A=A5=EC=9D=84=20=EC=95=8C=20=EC=88=98=20=EC=9E=88?= =?UTF-8?q?=EB=8F=84=EB=A1=9D=20aria-label=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- a11y/src/components/FlightBooking.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/a11y/src/components/FlightBooking.tsx b/a11y/src/components/FlightBooking.tsx index 313cab3..03bbdc7 100644 --- a/a11y/src/components/FlightBooking.tsx +++ b/a11y/src/components/FlightBooking.tsx @@ -21,11 +21,19 @@ const FlightBooking = () => {
성인
- {adultCount} -
From 50fa7bfb21e13a6fc23c2b1b138b7b3c2cd8bb7a Mon Sep 17 00:00:00 2001 From: Beomtae Date: Fri, 19 Sep 2025 16:37:52 +0900 Subject: [PATCH 4/5] =?UTF-8?q?feat:=20=EC=A7=84=ED=96=89=20=EC=83=81?= =?UTF-8?q?=ED=99=A9=EC=9D=84=20=EB=93=A4=EC=9D=84=20=EC=88=98=20=EC=9E=88?= =?UTF-8?q?=EB=8F=84=EB=A1=9D=20aria-live=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- a11y/src/components/FlightBooking.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/a11y/src/components/FlightBooking.tsx b/a11y/src/components/FlightBooking.tsx index 03bbdc7..76c6135 100644 --- a/a11y/src/components/FlightBooking.tsx +++ b/a11y/src/components/FlightBooking.tsx @@ -28,7 +28,7 @@ const FlightBooking = () => { > - - {adultCount} + {adultCount}
+ {statusMessage && ( +
+ {statusMessage} +
+ )} ); };