Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .jules/palette.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,6 @@
## $(date +%Y-%m-%d) - Prevent accidental data loss in inline editors
**Learning:** Forms that take a long time to fill out (like a WBS editor) are prone to accidental closure by users pressing `Escape` or clicking cancel. This causes immediate data loss without any warning, resulting in frustration.
**Action:** When working on editors that can be dismissed, track whether the user has modified any fields compared to their initial state. If there are changes, intercept the close action and present a confirmation dialog (`window.confirm`) to ensure they really want to discard their edits. Bypass this for intentional saves or explicit data overrides.
## 2026-07-29 - ν‚€λ³΄λ“œ 접근성을 μœ„ν•œ 툴팁 포컀슀 κΈ°λŠ₯ μΆ”κ°€
**Learning:** 툴팁(title λ˜λŠ” aria-label) 정보λ₯Ό μ œκ³΅ν•˜λŠ” λΉ„λŒ€ν™”ν˜• μš”μ†Œ(div, span λ“±)λŠ” ν‚€λ³΄λ“œ μ‚¬μš©μžκ°€ μ ‘κ·Όν•  수 μ—†μœΌλ―€λ‘œ 슀크린 리더 및 ν‚€λ³΄λ“œ 탐색 μ‚¬μš©μžμ—κ²Œ 정보가 λˆ„λ½λ©λ‹ˆλ‹€.
**Action:** λΉ„λŒ€ν™”ν˜• μš”μ†Œμ— νˆ΄νŒμ„ μΆ”κ°€ν•  λ•ŒλŠ” λ°˜λ“œμ‹œ `tabindex="0"` 속성을 λΆ€μ—¬ν•˜κ³ , `:focus-visible` μƒνƒœμ—μ„œ μ‹œκ°μ  포컀슀 인디케이터가 ν‘œμ‹œλ˜λ„λ‘ κ΅¬ν˜„ν•˜μ—¬ ν‚€λ³΄λ“œ 접근성을 보μž₯ν•΄μ•Ό ν•©λ‹ˆλ‹€.
1 change: 1 addition & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -978,6 +978,7 @@ function createStatusCellContent(progressState) {
if (progressState.description) {
badge.title = progressState.description;
badge.setAttribute('aria-label', `${progressState.label} - ${progressState.description}`);
badge.tabIndex = 0;
}
return badge;
}
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@ <h1>ScopeWeave Planner</h1>
<span>기쀀일</span>
<input data-testid="base-date-input" id="base-date" type="date" />
</label>
<div class="meta-value-card" title="ν”„λ‘œμ νŠΈμ˜ μž‘μ—… κΈ°κ°„(일수) ν•©κ³„μž…λ‹ˆλ‹€.">
<div class="meta-value-card" title="ν”„λ‘œμ νŠΈμ˜ μž‘μ—… κΈ°κ°„(일수) ν•©κ³„μž…λ‹ˆλ‹€." tabindex="0">
<span class="meta-label">μ „μ²΄μΌμˆ˜</span>
<strong data-testid="summary-total-days" id="summary-total-days">0일</strong>
</div>
</div>

<div class="meta-grid meta-grid-secondary">
<div class="meta-value-card accent-card plan-card" title="κΈ°κ°„(일수) κ°€μ€‘μΉ˜κ°€ 반영된 ν”„λ‘œμ νŠΈ 전체 κ³„νš μ§„μ²™λ₯ μž…λ‹ˆλ‹€.">
<div class="meta-value-card accent-card plan-card" title="κΈ°κ°„(일수) κ°€μ€‘μΉ˜κ°€ 반영된 ν”„λ‘œμ νŠΈ 전체 κ³„νš μ§„μ²™λ₯ μž…λ‹ˆλ‹€." tabindex="0">
<span class="meta-label">κ³„νšμ§„μ²™λ₯ (λˆ„μ )</span>
<strong data-testid="summary-planned-progress" id="summary-planned-progress">0.00%</strong>
</div>
<div class="meta-value-card accent-card actual-card" title="κΈ°κ°„(일수) κ°€μ€‘μΉ˜κ°€ 반영된 ν”„λ‘œμ νŠΈ 전체 싀적 μ§„μ²™λ₯ μž…λ‹ˆλ‹€.">
<div class="meta-value-card accent-card actual-card" title="κΈ°κ°„(일수) κ°€μ€‘μΉ˜κ°€ 반영된 ν”„λ‘œμ νŠΈ 전체 싀적 μ§„μ²™λ₯ μž…λ‹ˆλ‹€." tabindex="0">
<span class="meta-label">싀적진척λ₯ (λˆ„μ )</span>
<strong data-testid="summary-actual-progress" id="summary-actual-progress">0.00%</strong>
</div>
Expand Down
4 changes: 3 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,9 @@ button {
.secondary-button:focus-visible,
input:focus-visible,
select:focus-visible,
.gantt-bar:focus-visible {
.gantt-bar:focus-visible,
.meta-value-card:focus-visible,
.status-badge:focus-visible {
outline: 3px solid rgba(37, 99, 235, 0.5);
outline-offset: 2px;
}
Expand Down
Binary file added verification.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions verify.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const { chromium } = require('@playwright/test');
(async () => {
const browser = await chromium.launch();
const context = await browser.newContext({ recordVideo: { dir: 'videos/' } });
const page = await context.newPage();
await page.goto('http://localhost:8787');
await page.keyboard.press('Tab'); // skip link
await page.keyboard.press('Tab'); // project name
await page.keyboard.press('Tab'); // base date
await page.keyboard.press('Tab'); // overall days card
await page.screenshot({ path: 'verification.png' });
await context.close();
await browser.close();
})();
Binary file added videos/page@8eb0d895ecf21ce4c9ec8b5944ee4ab1.webm
Binary file not shown.
Loading