-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesign-system-planning.html
More file actions
663 lines (636 loc) · 121 KB
/
Copy pathdesign-system-planning.html
File metadata and controls
663 lines (636 loc) · 121 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Design System Planning Dashboard</title>
<style>
:root {
--color-bg: #f5f5f5;
--color-primary: #112e51;
--color-secondary: #005ea2;
--color-warning: #fdb81e;
--color-muted: #71767a;
--color-border: #dfe1e2;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--color-bg); color: #1b1b1b; line-height: 1.5; }
.header { background: var(--color-primary); color: white; padding: 24px 32px; }
.header h1 { font-size: 28px; font-weight: 700; }
.header p { opacity: 0.85; margin-top: 4px; font-size: 16px; }
.summary-bar { display: flex; gap: 16px; flex-wrap: wrap; padding: 16px 32px; background: white; border-bottom: 2px solid var(--color-border); }
.stat { text-align: center; padding: 8px 20px; border-right: 1px solid var(--color-border); }
.stat:last-child { border-right: none; }
.stat .num { font-size: 28px; font-weight: 700; color: var(--color-secondary); }
.stat .label { font-size: 12px; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.controls { padding: 16px 32px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.controls label { font-weight: 600; font-size: 14px; }
.controls select, .controls input { padding: 6px 12px; border: 1px solid var(--color-border); border-radius: 4px; font-size: 14px; }
.controls input[type="text"] { width: 280px; }
.btn-toggle { padding: 6px 14px; border: 1px solid var(--color-border); background: white; cursor: pointer; font-size: 13px; border-radius: 4px; }
.btn-toggle.active { background: var(--color-secondary); color: white; border-color: var(--color-secondary); }
.sprint-filter-bar { display: flex; gap: 6px; flex-wrap: wrap; }
.sprint-btn { padding: 4px 12px; border: 1px solid var(--color-border); background: white; border-radius: 16px; cursor: pointer; font-size: 12px; font-weight: 600; }
.sprint-btn.active { background: var(--color-secondary); color: white; border-color: var(--color-secondary); }
.content { padding: 16px 32px 48px; }
.theme-group { margin-bottom: 28px; }
.theme-header { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--color-primary); color: white; border-radius: 8px 8px 0 0; cursor: pointer; user-select: none; }
.theme-header:hover { background: #1a3f6f; }
.theme-header h2 { font-size: 18px; flex: 1; }
.theme-header .badge { background: rgba(255,255,255,0.2); padding: 2px 10px; border-radius: 12px; font-size: 13px; }
.theme-header .chevron { font-size: 18px; transition: transform 0.2s; }
.theme-header.collapsed .chevron { transform: rotate(-90deg); }
.theme-body { border: 1px solid var(--color-border); border-top: none; border-radius: 0 0 8px 8px; overflow: hidden; }
.theme-body.hidden { display: none; }
.story-row { display: grid; grid-template-columns: 50px 1fr 90px 90px 120px 55px; align-items: center; padding: 10px 16px; border-bottom: 1px solid #f0f0f0; background: white; font-size: 14px; transition: background 0.15s; }
.story-row:hover { background: #f0f7ff; }
.story-row:last-child { border-bottom: none; }
.story-row .idx { color: var(--color-muted); font-size: 12px; font-weight: 600; }
.story-row .title a { color: var(--color-secondary); text-decoration: none; font-weight: 600; }
.story-row .title a:hover { text-decoration: underline; }
.story-row .assignee { font-size: 12px; color: var(--color-muted); }
.sprint-label { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 10px; display: inline-block; }
.sprint-current { background: #d4edda; color: #155724; }
.sprint-upcoming { background: #cce5ff; color: #004085; }
.sprint-stretch { background: #fff3cd; color: #856404; }
.status-badge { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; }
.st-in-progress { background: #d4edda; color: #155724; }
.st-ready { background: #cce5ff; color: #004085; }
.st-planned { background: #e8daef; color: #4a235a; }
.st-assigned { background: #d6eaf8; color: #1b4f72; }
.st-needs-triage { background: #fff3cd; color: #856404; }
.st-needs-confirmation { background: #fff3cd; color: #856404; }
.st-needs-review { background: #fce4ec; color: #880e4f; }
.st-on-hold { background: #f8d7da; color: #721c24; }
.st-discovery { background: #e8f5e9; color: #2e7d32; }
.st-open { background: #e2e3e5; color: #383d41; }
.priority-flag { font-size: 11px; font-weight: 700; padding: 1px 6px; border-radius: 3px; margin-left: 6px; }
.p1 { background: #e31c3d; color: white; }
.p2 { background: #fdb81e; color: #1b1b1b; }
.p3 { background: #e2e3e5; color: #383d41; }
.legend { display: flex; gap: 16px; flex-wrap: wrap; padding: 8px 32px; font-size: 12px; color: var(--color-muted); border-bottom: 1px solid var(--color-border); background: white; }
.legend-item { display: flex; align-items: center; gap: 4px; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; }
@media (max-width: 1000px) {
.story-row { grid-template-columns: 40px 1fr 80px 80px 55px; }
.story-row .assignee { display: none; }
.controls { flex-direction: column; }
}
@media print {
.controls { display: none; }
.theme-body.hidden { display: block !important; }
.story-row { font-size: 12px; padding: 6px 12px; }
}
</style>
</head>
<body>
<div class="header">
<h1>Design System Planning Dashboard</h1>
<p>VA Design System (platform-design-system-team) | Open Issues by Component</p>
</div>
<div class="summary-bar">
<div class="stat"><div class="num" id="totalStories">0</div><div class="label">Total Issues</div></div>
<div class="stat"><div class="num" id="themeCount">0</div><div class="label">Components</div></div>
<div class="stat"><div class="num" id="p1Count">0</div><div class="label">P1 Critical</div></div>
<div class="stat"><div class="num" id="p2Count">0</div><div class="label">P2 High</div></div>
<div class="stat"><div class="num" id="sprintCount">0</div><div class="label">In Sprint</div></div>
<div class="stat"><div class="num" id="unassignedCount">0</div><div class="label">Unassigned</div></div>
</div>
<div class="controls">
<label>Sprint:</label>
<div class="sprint-filter-bar" id="sprintFilter">
<button class="sprint-btn active" data-sprint="all">All</button>
<button class="sprint-btn" data-sprint="Sprint 26">Sprint 26</button>
<button class="sprint-btn" data-sprint="Upcoming">Upcoming</button>
<button class="sprint-btn" data-sprint="Stretch">Stretch</button>
<button class="sprint-btn" data-sprint="Backlog">Backlog</button>
</div>
<label>Status:</label>
<select id="statusFilter">
<option value="all">All Statuses</option>
<option value="In Progress">In Progress</option>
<option value="Ready">Ready</option>
<option value="Planned">Planned</option>
<option value="Assigned">Assigned</option>
<option value="Needs Triage">Needs Triage</option>
<option value="Needs Confirmation">Needs Confirmation</option>
<option value="On Hold">On Hold</option>
<option value="Discovery">Discovery</option>
<option value="Open">Open</option>
</select>
<label>Component:</label>
<select id="themeFilter"><option value="all">All Components</option></select>
<label>Priority:</label>
<select id="priorityFilter">
<option value="all">All Priorities</option>
<option value="P1">P1 - Critical</option>
<option value="P2">P2 - High</option>
<option value="P3">P3 - Medium</option>
<option value="">Unprioritized</option>
</select>
<label>Search:</label>
<input type="text" id="searchBox" placeholder="Filter by title, assignee, label...">
</div>
<div class="legend">
<div class="legend-item"><span class="priority-flag p1">P1</span> Critical</div>
<div class="legend-item"><span class="priority-flag p2">P2</span> High</div>
<div class="legend-item"><span class="priority-flag p3">P3</span> Medium</div>
<div class="legend-item"><span class="legend-dot" style="background:#d4edda"></span> Sprint 26 / In Progress</div>
<div class="legend-item"><span class="legend-dot" style="background:#cce5ff"></span> Upcoming / Ready</div>
<div class="legend-item"><span class="legend-dot" style="background:#fff3cd"></span> Needs Triage</div>
<div class="legend-item"><span class="legend-dot" style="background:#f8d7da"></span> On Hold</div>
</div>
<div class="content" id="content"></div>
<script>
const stories = [
{theme:"Engineering & Infrastructure",title:"Evaluate test coverage on the header component",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/6047",assignee:"",priority:"",sprint:"Upcoming",status:"Planned",labels:"platform-design-system-team, DST-engineering, Upcoming sprint priority"},
{theme:"Buttons",title:"Update icons page with the new AI generated content icon",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/6042",assignee:"danbrady,babsdenney,jeana-adhoc",priority:"",sprint:"Upcoming",status:"Planned",labels:"platform-design-system-team, va-button-icon, Upcoming sprint priority"},
{theme:"Icons",title:"va-icon: Add new icon for AI generated content",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/6041",assignee:"danbrady,babsdenney,jeana-adhoc",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, va-icon"},
{theme:"Other",title:"Improve the consistency and readability of component-library release notes",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/6039",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team"},
{theme:"Alerts & Banners",title:"Clarify guidance on number of hyperlinks allowed in alert banners",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/6038",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-alert, guidance-update"},
{theme:"Links & Actions",title:"Engineering - System-wide Prop Naming Discovery for VADS Components",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/6033",assignee:"",priority:"",sprint:"",status:"Open",labels:"documentation-design.va.gov, platform-design-system-team, va-link, DST-engineering"},
{theme:"Accessibility",title:"[Bug]: 21-4138 Heading hierarchy is incorrect",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/6030",assignee:"caw310,tbaker1026",priority:"P3",sprint:"",status:"Assigned",labels:"bug, a11y-defect-3, platform-design-system-team, 21-4138"},
{theme:"Additional Info & Details",title:"[Enhancement]: Add support for aria-label on va-additional-info",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/6028",assignee:"caw310",priority:"",sprint:"",status:"Assigned",labels:"bug, accessibility, platform-design-system-team, va-additional-info"},
{theme:"Other",title:"[Checkbox/Radio] Standardize display of conditionally revealing fields - Design",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/6025",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, design-system-forms, design"},
{theme:"Critical Action",title:"(Engineering) Critical Action: Moving the right-facing chevron from the end of the link to the beginning",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/6024",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, va-critical-action"},
{theme:"Accordion",title:"[Accessibility]: Accordion does not announce state change on click of expand/collapse all buttons on VoiceOver",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/6023",assignee:"RyanMunsch",priority:"",sprint:"Upcoming",status:"Planned",labels:"accessibility, platform-design-system-team, va-accordion, Upcoming sprint priority"},
{theme:"Accessibility",title:"Accessibility test library: Explore building an AI skill or prompt to generate automated component tests",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/6021",assignee:"amyleadem",priority:"",sprint:"",status:"Discovery",labels:"accessibility, platform-design-system-team, discovery"},
{theme:"Text & Number Input",title:"Text input: Add new story with Details component in a Text input",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/6012",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-text-input, va-details"},
{theme:"Combo Box & Select",title:"[Bug]: Service Branch pattern bypass bug - vaComboBox needs vaInputChange",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/6005",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, DST-engineering, va-combo-box"},
{theme:"Accessibility",title:"Bug Focus ring is cut off in mega menu navigation",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5997",assignee:"",priority:"",sprint:"",status:"Open",labels:"accessibility, platform-design-system-team"},
{theme:"Other",title:"DS Sprint 26 Plan (March 30 to April 12) ",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5992",assignee:"caw310",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team"},
{theme:"Other",title:"[Bug]: H2 font size utility class does not apply responsive styles",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5978",assignee:"caw310",priority:"",sprint:"",status:"Assigned",labels:"bug, platform-design-system-team"},
{theme:"Other",title:"Create a place in vets-website for DS component validation",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5977",assignee:"caw310,amyleadem",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team"},
{theme:"Other",title:"Define and draft testing strategies",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5976",assignee:"caw310,megansiddle",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team"},
{theme:"Other",title:"Update guidance/messaging around potential OOB deployments",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5975",assignee:"megansiddle",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team"},
{theme:"Date Components",title:"Audit of va-memorable-date and va-date",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5973",assignee:"",priority:"",sprint:"Stretch",status:"Open",labels:"platform-design-system-team, Stretch, va-date, DST-engineering, va-memorable-date, DST-Design"},
{theme:"Other",title:"App-managed packages: Create artifacts for architecture intent",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5970",assignee:"caw310,amyleadem",priority:"",sprint:"Sprint 26",status:"In Progress",labels:"platform-design-system-team"},
{theme:"Other",title:"App-managed component-library packages on vets-website",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5969",assignee:"",priority:"",sprint:"Sprint 26",status:"Ready",labels:"platform-design-system-team"},
{theme:"Engineering & Infrastructure",title:"App-managed packages: Pilot custom version of component-library dependency",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5968",assignee:"jamigibbs",priority:"",sprint:"Sprint 26",status:"In Progress",labels:"platform-design-system-team, DST-engineering"},
{theme:"File Input",title:"[Bug]: va-file-input-multiple - document type selects have identical accessible names when multiple fiels are uploaded",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5963",assignee:"",priority:"P2",sprint:"Sprint 26",status:"Needs Confirmation",labels:"bug, a11y-defect-2, platform-design-system-team, va-file-input, Needs-confirmation"},
{theme:"Date Components",title:"VaDate - Should offer the same error options as VaMemorableDate",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5961",assignee:"caw310",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, va-date, DST-engineering, va-memorable-date"},
{theme:"Accessibility",title:"[Accessibility]: [up arrow] loses focus when combobox is open and first item is selected",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5960",assignee:"",priority:"P2",sprint:"",status:"Open",labels:"a11y-defect-2, accessibility, platform-design-system-team"},
{theme:"Other",title:"[Bug]: Incorrect error messaging on Date input",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5959",assignee:"caw310,tbaker1026",priority:"",sprint:"",status:"Assigned",labels:"bug, platform-design-system-team"},
{theme:"Statement of Truth",title:"[Accessibility]: `Statement of truth` heading needs to be flexible in the component",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5945",assignee:"jamigibbs",priority:"P2",sprint:"Sprint 26",status:"In Progress",labels:"a11y-defect-2, accessibility, platform-design-system-team, va-statement-of-truth"},
{theme:"Header",title:"Determine color to fix contrast issue in header",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5943",assignee:"danbrady,babsdenney,jeana-adhoc",priority:"",sprint:"Sprint 26",status:"In Progress",labels:"platform-design-system-team, va-header, DST-Design"},
{theme:"Header",title:"[Accessibility]: Current section indicator with insufficient contrast",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5942",assignee:"amyleadem,jeana-adhoc",priority:"P2",sprint:"",status:"Needs Triage",labels:"a11y-defect-2, accessibility, platform-design-system-team, va-header, needs-triage"},
{theme:"Mobile",title:"Evaluate web performance of new tokens package",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5938",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Mobile"},
{theme:"Mobile",title:"Create lightweight VADS Assets package for variable weight fonts",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5937",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Mobile"},
{theme:"Engineering & Infrastructure",title:"VA.gov navigation mega-menu: marketing container overflows container",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5930",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, DST-engineering"},
{theme:"Table",title:"[Bug]: VaTable sortable prop strips event handlers from elements in table cells",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5918",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-table"},
{theme:"Other",title:"Update component-library README in npm",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5900",assignee:"caw310",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team"},
{theme:"Engineering & Infrastructure",title:"Fix broken ESLint configuration",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5899",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Buttons",title:"[Accessibility]: va-button-segmented has insufficient color contrast",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5894",assignee:"amyleadem,jeana-adhoc",priority:"",sprint:"",status:"Needs Triage",labels:"accessibility, platform-design-system-team, va-button-segmented, needs-triage"},
{theme:"Combo Box & Select",title:"[Accessibility]: Change search input in header from `'combobox` to `searchinput`",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5887",assignee:"amyleadem,jeana-adhoc",priority:"",sprint:"",status:"Needs Triage",labels:"accessibility, platform-design-system-team, va-combo-box, needs-triage"},
{theme:"Alerts & Banners",title:"[Discovery] Banner & Alert & Site Maintenance: Alignment on inconsistencies",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5886",assignee:"",priority:"",sprint:"",status:"Discovery",labels:"platform-design-system-team, va-alert, va-banner, discovery, va-banner-maintenance"},
{theme:"Mobile",title:"Design - Refine web/mobile MVP Typography tokens",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5880",assignee:"danbrady",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Mobile"},
{theme:"Other",title:"Accessibility audit - Improve display of test results on component pages",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5879",assignee:"jeana-adhoc",priority:"",sprint:"Sprint 26",status:"In Progress",labels:"platform-design-system-team, design"},
{theme:"Engineering & Infrastructure",title:"Move to use JSDoc to document our components",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5850",assignee:"amyleadem",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, DST-engineering"},
{theme:"Search",title:"[Bug]: Search filter component not collapsed by default on mobile/screen magnification",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5833",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-search-filter"},
{theme:"Search",title:"Update Search Results template guidance for results description",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5829",assignee:"derekwang99",priority:"",sprint:"Upcoming",status:"Planned",labels:"platform-design-system-team, va-search, guidance-new, guidance-update, Upcoming sprint priority"},
{theme:"Other",title:"Accessibility audit - Finalize test suite and publish approved tests",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5819",assignee:"amyleadem",priority:"",sprint:"Sprint 26",status:"In Progress",labels:"platform-design-system-team"},
{theme:"Tags",title:"[Bug] Tag - Status: Change the storybook examples to sentence case",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5816",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, DST-engineering, va-tag-status"},
{theme:"Tags",title:"Service List Item: Update tag to use Status Tag and move to the top of the page",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5805",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, va-service-list-item, va-tag-status"},
{theme:"Alerts & Banners",title:"Forms failing to announce error on submit va-alert inside list-and-loop va-cards (phase 4)",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5799",assignee:"amyleadem",priority:"P1",sprint:"Sprint 26",status:"In Progress",labels:"a11y-defect-1, platform-design-system-team, va-alert, DST-engineering"},
{theme:"Alerts & Banners",title:"Forms failing to announce errors on submit va-alert ",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5798",assignee:"amyleadem",priority:"P2",sprint:"",status:"Assigned",labels:"a11y-defect-2, platform-design-system-team, va-alert"},
{theme:"Text & Number Input",title:"Text Input: Cannot set size and suffix props simultaneously",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5794",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-text-input, Storybook"},
{theme:"Links & Actions",title:"Update VADS Link Component Documentation for Mobile",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5770",assignee:"babsdenney",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, va-link, guidance-update"},
{theme:"Header",title:"Header - Minimal: Background does not go full-width",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5767",assignee:"caw310,tbaker1026",priority:"",sprint:"",status:"Assigned",labels:"bug, platform-design-system-team, va-header-minimal"},
{theme:"Other",title:"Spike: Evaluate Claude `#generate_figma-design` using existing production patterns",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5765",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Figma, AI"},
{theme:"Other",title:"Figma alignment with Code connect",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5762",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Figma, DST-Design, AI"},
{theme:"Links & Actions",title:"Update mobile link guidance to accurately reflect iOS/Android differences",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5753",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, va-link, Mobile"},
{theme:"Mobile",title:"Discovery - Feasibility of deprecating medium-screen breakpoint",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5752",assignee:"",priority:"",sprint:"Upcoming",status:"Planned",labels:"platform-design-system-team, DST-engineering, Mobile, Upcoming sprint priority"},
{theme:"Other",title:"Discovery - Investigate a solution to theming in web",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5747",assignee:"jamigibbs",priority:"",sprint:"Upcoming",status:"Planned",labels:"platform-design-system-team, Upcoming sprint priority"},
{theme:"CSS Library",title:"Add the `tablet-lg` 880px breakpoint to the CSS-Library",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5744",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, css-library"},
{theme:"Alerts & Banners",title:"Maintenance Banner and Site banner: Icon and can dismiss button spread to the edges of the screen",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5728",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-maintenance-banner"},
{theme:"File Input",title:"va-file-input & va-file-input-multiple: add/update analytics",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5716",assignee:"jamigibbs",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, DST-engineering, va-file-input"},
{theme:"Alerts & Banners",title:"Dismissible alert does not stay dismissed in future sessions",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5709",assignee:"",priority:"",sprint:"Sprint 26",status:"Ready",labels:"platform-design-system-team, va-alert, guidance-update"},
{theme:"Combo Box & Select",title:"Update va-combo-box focus",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5705",assignee:"",priority:"",sprint:"",status:"Open",labels:"enhancement, platform-design-system-team, va-combo-box"},
{theme:"Engineering & Infrastructure",title:"Documentation site: Run html-proofer regularly to catch broken links ",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5695",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Telephone",title:"Telephone input - Can't click in to edit area code",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5658",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-telephone-input"},
{theme:"Combo Box & Select",title:"Adding chevron animation in dropdown interaction of Select and Combo Box",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5649",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, va-combo-box"},
{theme:"Combo Box & Select",title:"Aligning Select and Combo Box chevron icon type and color",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5617",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-select, va-combo-box"},
{theme:"Combo Box & Select",title:"Remove clear-input button from default view of Combo Box",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5616",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-combo-box"},
{theme:"Progress Bar",title:"[Accessibility]: VoiceOver cursor does not match programmatic focus in Safari",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5576",assignee:"amyleadem",priority:"P2",sprint:"Sprint 26",status:"In Progress",labels:"a11y-defect-2, accessibility, platform-design-system-team, va-progress-bar"},
{theme:"Icons",title:"Icon Library: Duplicate chevron icon (chevron_right and navigate_next)",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5567",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-icon"},
{theme:"Date Components",title:"va-date shows \"Please select a month\" error when month dropdown is opened/closed without selection for year-only dates in non-required fields",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5565",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-date"},
{theme:"Buttons",title:"Button Group: Back and Continue should no longer use double chevron icons",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5564",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-button, va-button-pair"},
{theme:"Mobile",title:"Mobile Components - Improve Changelog",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5559",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Mobile"},
{theme:"Engineering & Infrastructure",title:"Discover how to manage size changes in components for teams",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5555",assignee:"",priority:"",sprint:"",status:"Discovery",labels:"platform-design-system-team, DST-engineering, discovery"},
{theme:"Mobile",title:"VADS Resources - Clean Up Testing Tags/Releases",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5554",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Mobile"},
{theme:"Telephone",title:"Focus bug in va-telephone-input component",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5550",assignee:"jeana-adhoc",priority:"",sprint:"",status:"Needs Triage",labels:"bug, accessibility, platform-design-system-team, va-telephone-input, needs-triage"},
{theme:"Date Components",title:"Discovery: Telephone input and Memorable date: Error alert style for complex questions",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5548",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-memorable-date, va-telephone-input"},
{theme:"Radio & Checkbox",title:"Focus bug in va-radio component",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5547",assignee:"",priority:"",sprint:"",status:"Needs Triage",labels:"bug, accessibility, platform-design-system-team, va-radio, needs-triage"},
{theme:"Telephone",title:"International phone number error state",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5546",assignee:"",priority:"",sprint:"",status:"Open",labels:"enhancement, platform-design-system-team, va-international-phone"},
{theme:"Service List",title:"Audit list components",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5529",assignee:"humancompanion-usds",priority:"",sprint:"",status:"Assigned",labels:"VADS-consistency-audit, platform-design-system-team, va-process-list, va-list, va-service-list-item"},
{theme:"Modal & Crisis Line",title:"Veteran Crisis Line Modal: Removing the right-facing chevron",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5513",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-crisis-line-modal"},
{theme:"Storybook",title:"Storybook: Adjust breakpoints in Storybook toolbar to align with VADS breakpoints",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5506",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, Storybook"},
{theme:"Alerts & Banners",title:"[va-alert]: Alert heading partially announced on iOS",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5499",assignee:"amyleadem",priority:"P3",sprint:"",status:"Assigned",labels:"a11y-defect-3, accessibility, platform-design-system-team, va-alert"},
{theme:"Header",title:"Injected header - Menu expand/collapse issue",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5493",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-header, va-header-minimal"},
{theme:"Accessibility",title:"[Accessibility]: Inconsistent hint text location in VADS components",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5489",assignee:"amyleadem,jeana-adhoc",priority:"",sprint:"",status:"Needs Confirmation",labels:"accessibility, platform-design-system-team, Needs-confirmation"},
{theme:"Storybook",title:"Explore effort to migrate Storybook package from Webpack to Vite",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5481",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, Storybook"},
{theme:"Engineering & Infrastructure",title:"Discovery: visual focus indicator color contrast",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5480",assignee:"",priority:"",sprint:"",status:"Discovery",labels:"platform-design-system-team, DST-engineering, discovery"},
{theme:"Mobile",title:"Mobile DS Component Tech Debt",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5414",assignee:"TimRoe,caw310",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Mobile"},
{theme:"Loading Indicator",title:"Loading treatment inconsistent",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5400",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-loading-indicator"},
{theme:"Mobile",title:"A11y Review - Alert - Expandable variant loses heading a11y role",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5365",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Mobile"},
{theme:"Mobile",title:"Bug - Text - Header does not read as \"heading\" for screen reader",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5364",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Mobile"},
{theme:"Date Components",title:"VaDate and VaMemorableDate show errors on blur after setting a valid `value` attribute",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5363",assignee:"ediiotero",priority:"",sprint:"Sprint 26",status:"In Progress",labels:"bug, platform-design-system-team, va-date, DST-engineering, va-memorable-date, release-notes"},
{theme:"Engineering & Infrastructure",title:"Installing component-library in vets-website with Verdaccio not working",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5361",assignee:"amyleadem",priority:"",sprint:"",status:"Assigned",labels:"bug, platform-design-system-team, DST-engineering"},
{theme:"Combo Box & Select",title:"Custom placeholder/default text for VA Select Input",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5348",assignee:"caw310",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, va-select"},
{theme:"Text & Number Input",title:"Text Input: Icons and prefix/suffix text disappears on focus",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5346",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-text-input"},
{theme:"Alerts & Banners",title:"va-alert: Keyboard focus order incorrect when closeable with interactive slotted content",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5329",assignee:"amyleadem",priority:"",sprint:"",status:"Needs Triage",labels:"bug, platform-design-system-team, va-alert, needs-triage"},
{theme:"Text & Number Input",title:"Title: `va-text-input` with `currency={true}` ignores `pattern` prop and prevents partial decimals",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5326",assignee:"",priority:"",sprint:"",status:"Open",labels:"documentation-design.va.gov, platform-design-system-team, va-text-input, guidance-update"},
{theme:"Other",title:"Dependency management: Remove unused dependencies and resolutions",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5323",assignee:"",priority:"",sprint:"",status:"Open",labels:"dependencies, platform-design-system-team"},
{theme:"Engineering & Infrastructure",title:"Component-library: Improve dependency management",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5322",assignee:"amyleadem",priority:"",sprint:"Upcoming",status:"Planned",labels:"platform-design-system-team, DST-engineering, Upcoming sprint priority"},
{theme:"Other",title:"Mobile - Complete Doc Site Transition of Mobile Guidance",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5302",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team"},
{theme:"Date Components",title:"Date components: Evaluate opportunities to align va-date and va-memorable-date",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5295",assignee:"amyleadem",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, va-date, va-memorable-date"},
{theme:"Other",title:"Accessibility audit - Create a common accessibility test library for Design System components and patterns",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5289",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, accessibility-review"},
{theme:"Buttons",title:"Research va-button max character length - Accessibility recommendations",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5277",assignee:"jeana-adhoc",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, va-button"},
{theme:"Other",title:"Process: Create plan for reviewing and updating dependencies in component-library",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5269",assignee:"amyleadem",priority:"",sprint:"Upcoming",status:"Planned",labels:"platform-design-system-team, Upcoming sprint priority"},
{theme:"Engineering & Infrastructure",title:"component-library NPM publishing token vs trusted publishing",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5258",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Accordion",title:"[Accessibility]: Accordion expand/collapse buttons can't be distinguished",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5238",assignee:"RyanMunsch",priority:"P2",sprint:"Sprint 26",status:"In Progress",labels:"a11y-defect-2, accessibility, platform-design-system-team, va-accordion"},
{theme:"Mobile",title:"Update output to refine JS/TS",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5236",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Mobile"},
{theme:"Accessibility",title:"[Accessibility]: H1 focus outline cut off when using skip link in form flow",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5221",assignee:"amyleadem,jeana-adhoc",priority:"P3",sprint:"",status:"Assigned",labels:"a11y-defect-3, accessibility, platform-design-system-team"},
{theme:"Discovery",title:"Step 2: Research a component for adding a calendar event",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5215",assignee:"danbrady,babsdenney,derekwang99",priority:"",sprint:"",status:"Discovery",labels:"platform-design-system-team, discovery"},
{theme:"Accessibility",title:"[Accessibility]: Dismissible alert text in <legend> is still announced after removal",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5193",assignee:"",priority:"P3",sprint:"",status:"Open",labels:"a11y-defect-4, platform-design-system-team, form-upload"},
{theme:"Buttons",title:"[Accessibility]: va-button-pair shouldn't be contained in ul / li",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5173",assignee:"jamigibbs",priority:"P3",sprint:"Sprint 26",status:"In Progress",labels:"a11y-defect-3, accessibility, platform-design-system-team, va-button-pair"},
{theme:"Alerts & Banners",title:"va-alert-expandable: remove the \"continue\" status if it's not needed",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5137",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-alert-expandable"},
{theme:"Date Components",title:"VA-memorable-date | Shows incomplete date error on blur",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5124",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-memorable-date"},
{theme:"Alerts & Banners",title:"<va-alert> dynamic class names hides the alert randomly",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5120",assignee:"",priority:"",sprint:"",status:"Needs Triage",labels:"bug, platform-design-system-team, va-alert, needs-triage"},
{theme:"Storybook",title:"Storybook | Focus is lost while editing label text",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5117",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, Storybook"},
{theme:"Radio & Checkbox",title:"va-radio | Missing option to hide PII in legend",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5116",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-radio"},
{theme:"Mobile",title:"Code Upkeep - Snackbar - Resolve useFakeTimers unit test issues",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5114",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Mobile"},
{theme:"CSS Library",title:"Remove tokens from the CSS-Library",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5111",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, css-library, design-tokens"},
{theme:"Mobile",title:"Update various non-vets-website projects with new token import",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5110",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Mobile"},
{theme:"Mobile",title:"Update vets-website token imports to new token package",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5109",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Mobile"},
{theme:"Mobile",title:"Tokens Documentation Update + Migration Announcement",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5108",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Mobile"},
{theme:"Mobile",title:"Add tokens package to vets-website & update platform imports",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5107",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Mobile"},
{theme:"Mobile",title:"Update design.va.gov site token imports",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5106",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Mobile"},
{theme:"Mobile",title:"Update component-library token imports",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5105",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Mobile"},
{theme:"Engineering & Infrastructure",title:"Upgrade the @stencil/core, @stencil/react-output-target, and puppeteer in the web-components package",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5104",assignee:"powellkerry,amyleadem",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, DST-engineering"},
{theme:"Other",title:"Dependencies: Use current version of USWDS",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5092",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team"},
{theme:"CSS Library",title:"CSS library cleanup: Verify impact, risk, and level of effort for each phase",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5088",assignee:"powellkerry",priority:"",sprint:"Sprint 26",status:"In Progress",labels:"platform-design-system-team, css-library"},
{theme:"Pagination",title:"Summary Title missing from Pagination (Showing x-xx of xxx items)",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5081",assignee:"caw310",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, va-pagination"},
{theme:"Date Components",title:"When in a form, remove-date-hint for memorable date is not reaching the component",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5072",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-memorable-date"},
{theme:"Mobile",title:"Bug - Mobile - Android - Alert - Icon(s) become misaligned with text at larger OS font sizes",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5067",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, Mobile"},
{theme:"Progress Bar",title:"Explore renaming \u201cStep\u201d to \u201cSection\u201d in va-segmented-progress-bar",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5064",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-segmented-progress-bar, forms-step-page"},
{theme:"Other",title:"va-radio-button: does not allow bolded text",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5063",assignee:"DanielleThierryUSDSVA",priority:"",sprint:"",status:"Assigned",labels:"bug, content style guide, platform-design-system-team, content"},
{theme:"Links & Actions",title:"`video` prop unexpectedly appends `dfn` text to link content",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5060",assignee:"",priority:"P3",sprint:"",status:"Open",labels:"bug, a11y-defect-3, accessibility, platform-design-system-team, va-link--video"},
{theme:"Alerts & Banners",title:"[Bug] va-alert needs meaningful SR text to display status",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5046",assignee:"amyleadem,jeana-adhoc",priority:"P3",sprint:"",status:"Assigned",labels:"bug, a11y-defect-3, accessibility, platform-design-system-team, va-alert, modality-screen-reader, wcag-1.1.1"},
{theme:"Text & Number Input",title:"va-textarea: character count announced twice by JAWS",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5039",assignee:"",priority:"P3",sprint:"",status:"Open",labels:"bug, a11y-defect-3, accessibility, platform-design-system-team, va-text-input, va-textarea"},
{theme:"Accessibility",title:"va-radio-button: iOS VoiceOver requires multiple swipes",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5035",assignee:"",priority:"P3",sprint:"Upcoming",status:"Planned",labels:"bug, a11y-defect-3, accessibility, platform-design-system-team, Upcoming sprint priority"},
{theme:"Accessibility",title:"Document why `inert` is an option on the select element",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5020",assignee:"jeana-adhoc",priority:"",sprint:"",status:"Assigned",labels:"documentation-design.va.gov, accessibility, platform-design-system-team, guidance-update"},
{theme:"Buttons",title:"Set a character limit for va-button component ",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5016",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-button, DST-engineering"},
{theme:"Buttons",title:"Review audit of button label lengths to make recommendation",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5010",assignee:"",priority:"",sprint:"",status:"Open",labels:"VADS-consistency-audit, platform-design-system-team, va-button"},
{theme:"Modal & Crisis Line",title:"[Modal] - Code and accessibility Audit",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5006",assignee:"jeana-adhoc",priority:"",sprint:"",status:"Assigned",labels:"component-update, platform-design-system-team, va-modal"},
{theme:"Modal & Crisis Line",title:"Replace imposter component with va-crisis-line-modal on vets-website",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5004",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-crisis-line-modal"},
{theme:"Alerts & Banners",title:"Site Maintenance Banner: Update component to align with content guidance for maintenance alerts",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4997",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, DST-engineering, Storybook, content, va-banner-maintenance, code"},
{theme:"Links & Actions",title:"Action links don't have option to open external links in new tab",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4944",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-action-link"},
{theme:"Mobile",title:"Improve tokens-build automation",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4943",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Mobile"},
{theme:"Design Tokens & Colors",title:"Tokens: Evaluate the use of pixel values in VADS tokens",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4922",assignee:"",priority:"P3",sprint:"",status:"Open",labels:"a11y-defect-3, accessibility, platform-design-system-team, design-tokens"},
{theme:"File Input",title:"implement add password button for fileInputMultiple pattern",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4910",assignee:"jamigibbs",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, va-file-input"},
{theme:"Discovery",title:"Discovery Refactor Screen-reader only text",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4898",assignee:"",priority:"",sprint:"Sprint 26",status:"Ready",labels:"platform-design-system-team, discovery"},
{theme:"Documentation & Guidance",title:"Focus management guidance: Update guidance on component and pattern pages",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4893",assignee:"",priority:"",sprint:"",status:"Open",labels:"documentation-design.va.gov, platform-design-system-team, guidance-update"},
{theme:"Storybook",title:"Storybook: Remove Stoybook styles that bleed into components",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4888",assignee:"",priority:"P3",sprint:"",status:"Open",labels:"a11y-defect-4, accessibility, platform-design-system-team, Storybook"},
{theme:"Engineering & Infrastructure",title:"Font resizing guidance: Create guidance about using relative units",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4886",assignee:"",priority:"",sprint:"",status:"Open",labels:"documentation-design.va.gov, platform-design-system-team, DST-engineering"},
{theme:"Other",title:"Font resizing audit: Audit top VA.gov pages for font resizing issues",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4885",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team"},
{theme:"Header",title:"Font resizing issues: Component library fixes (phase 3)",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4882",assignee:"",priority:"P2",sprint:"",status:"Open",labels:"a11y-defect-2, accessibility, platform-design-system-team, va-modal, va-action-link, va-maintenance-banner, va-banner-maintenance, va-header-minimal"},
{theme:"Combo Box & Select",title:"Font resizing fixes: Component library form elements (Phase 2)",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4881",assignee:"amyleadem",priority:"",sprint:"",status:"Assigned",labels:"accessibility, platform-design-system-team, va-text-input, va-select, va-date, va-memorable-date, va-search-input, va-telephone-input"},
{theme:"Mobile",title:"Documentation: Update Mobile components documentation",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4874",assignee:"danbrady",priority:"",sprint:"Sprint 26",status:"In Progress",labels:"documentation-design.va.gov, platform-design-system-team, Mobile"},
{theme:"Storybook",title:"Storybook: Align Chromatic testing configuration with default viewport width",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4857",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Storybook"},
{theme:"Alerts & Banners",title:"[Alert] Add storybook and guidance examples for mobile app that show alert in expanded state",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4853",assignee:"TimRoe,humancompanion-usds",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, va-alert, va-alert-expandable"},
{theme:"Links & Actions",title:"Action Link: Redesign secondary action link",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4845",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-action-link, DST-Design"},
{theme:"Breadcrumbs",title:"Clicking a breadcrumbs link should focus on the H1 of the page",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4820",assignee:"amyleadem",priority:"P2",sprint:"",status:"Assigned",labels:"bug, a11y-defect-2, accessibility, platform-design-system-team, va-breadcrumbs"},
{theme:"Date Components",title:"Address va-memorable-date validation edge cases when not required",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4819",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-date, va-memorable-date"},
{theme:"Other",title:"Storybook: Non-default modals don't have ability to show nested web component capabilities",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4789",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team"},
{theme:"Design Tokens & Colors",title:"Audit component library in high-contrast/forced colors mode",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4783",assignee:"amyleadem",priority:"",sprint:"",status:"Assigned",labels:"accessibility, platform-design-system-team, foundation-color"},
{theme:"Combo Box & Select",title:"Staging Review finding: Using a screen reader, unable to select combobox options",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5127",assignee:"StacyB2023",priority:"P3",sprint:"",status:"Assigned",labels:"a11y-defect-3, accessibility, platform-design-system-team, collab-cycle-feedback, staging, Usability, exp-std-flow-completion, modality-screen-reader, va-combo-box, design-system-review"},
{theme:"Tags",title:"Discovery: Define additional colored tags use cases",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4774",assignee:"babsdenney",priority:"",sprint:"Sprint 26",status:"In Progress",labels:"platform-design-system-team, va-tag, discovery"},
{theme:"Telephone",title:"va-telephone-input event firing when the component loads",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4769",assignee:"",priority:"",sprint:"",status:"Open",labels:"enhancement, platform-design-system-team, va-telephone-input"},
{theme:"Date Components",title:"va-date: Reassess wrapping of day and year fields on small/high zoom screens (design)",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4756",assignee:"derekwang99",priority:"",sprint:"",status:"Assigned",labels:"component-update, platform-design-system-team, va-date, Figma, DST-Design"},
{theme:"Accessibility",title:"Font resizing: Fonts inside of web components don't resize consistently",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4754",assignee:"amyleadem,jeana-adhoc",priority:"",sprint:"",status:"Assigned",labels:"bug, accessibility, platform-design-system-team"},
{theme:"Storybook",title:"Storybook: Improve documentation for downstream teams",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4746",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, Storybook"},
{theme:"Storybook",title:"Storybook: Create standards for Storybook development",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4745",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Storybook"},
{theme:"Engineering & Infrastructure",title:"Update component-library repo to use VADS GH App",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4743",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Links & Actions",title:"Critical Action, Action Link, Service List Item: Update icon in Component Library",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4728",assignee:"",priority:"",sprint:"",status:"Open",labels:"component-update, platform-design-system-team, va-action-link, DST-engineering, va-icon, va-critical-action"},
{theme:"Progress Bar",title:"Progress Bar Segments Potential Contrast Issue",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4724",assignee:"amyleadem,jeana-adhoc",priority:"P3",sprint:"",status:"Assigned",labels:"bug, a11y-defect-4, accessibility, platform-design-system-team, va-progress-bar, foundation-color"},
{theme:"Modal & Crisis Line",title:"Add crisis line phoneNumber, smsNumber, chatUrl and ttyNumber to drupal and pass values to the new va-crisis-line-modal",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4719",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, va-crisis-line-modal"},
{theme:"Modal & Crisis Line",title:"Replace crisis line modal in vets-website with the component-library va-crisis-line-modal",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4718",assignee:"powellkerry",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, DST-engineering, va-crisis-line-modal"},
{theme:"Header",title:"Update the header with the va-official-gov-banner",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4714",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-header, va-official-gov-banner"},
{theme:"Other",title:"Focus management: Assess accessibility recommendations",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4695",assignee:"amyleadem,jeana-adhoc",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, accessibility-review"},
{theme:"Radio & Checkbox",title:"Research and fix: radio buttons and check boxes overriding some spacing",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4692",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-radio, va-checkbox"},
{theme:"Tabs",title:"DST Staging Review: Visual focus indicator has insufficient color contrast against adjacent (background) color",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4683",assignee:"amyleadem,jeana-adhoc",priority:"P2",sprint:"",status:"On Hold",labels:"a11y-defect-2, accessibility, platform-design-system-team, va-tabs, collab-cycle-feedback, DS-Staging-Review, staging, Usability, wcag-1.4.11, CC-on-hold, foundation-color"},
{theme:"Tabs",title:"DST Staging Review: Make focus state consistent",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4679",assignee:"",priority:"P2",sprint:"",status:"On Hold",labels:"platform-design-system-team, va-tabs, Figma, collab-cycle-feedback, DS-Staging-Review, staging, high-priority, Consistency, design, exp-std-design-consistency, DST-Design, code, CC-on-hold"},
{theme:"Card",title:"Card component with icon shows different spacing than storybook component.",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4675",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-card"},
{theme:"Mobile",title:"Research combining web/mobile assets packages",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4671",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Mobile"},
{theme:"Mobile",title:"Create/update team documentation for design tokens",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4670",assignee:"",priority:"",sprint:"",status:"Open",labels:"documentation-design.va.gov, platform-design-system-team, Mobile"},
{theme:"Mobile",title:"Deprecate old mobile tokens package",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4668",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Mobile"},
{theme:"Mobile",title:"Update mobile components to use new package",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4667",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Mobile"},
{theme:"Mobile",title:"Update repo documentation and publish v1.0.0",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4666",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Mobile"},
{theme:"Mobile",title:"Update output to include SCSS",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4665",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Mobile"},
{theme:"Mobile",title:"Update output to include CSS",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4664",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Mobile"},
{theme:"Mobile",title:"Update output to include files for import to figma",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4663",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Figma, Mobile"},
{theme:"Documentation & Guidance",title:"Remove UWDS v3 label from component guidance",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4640",assignee:"humancompanion-usds",priority:"",sprint:"",status:"Assigned",labels:"documentation-design.va.gov, platform-design-system-team"},
{theme:"Other",title:"Application Loader Content Layout Shift",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4611",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team"},
{theme:"Documentation & Guidance",title:"Explore options for upgrading the search on the documentation site",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4575",assignee:"",priority:"",sprint:"",status:"Discovery",labels:"documentation-design.va.gov, platform-design-system-team, discovery"},
{theme:"File Input",title:"File upload: create a toggle to password fields to show/hide the text for better usability",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4569",assignee:"",priority:"",sprint:"",status:"Open",labels:"enhancement, platform-design-system-team, va-file-input"},
{theme:"Mobile",title:"Code Upkeep - Mobile Storybook missing component controls",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4542",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Mobile"},
{theme:"Telephone",title:"va-telephone/va-telephone-input: country-code inconsistency",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4540",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-telephone-input"},
{theme:"Radio & Checkbox",title:"va-checkbox announces twice in JAWS browse mode",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4538",assignee:"",priority:"P3",sprint:"",status:"Open",labels:"bug, a11y-defect-3, accessibility, platform-design-system-team, va-checkbox, 508-office-finding"},
{theme:"Telephone",title:"va-telephone-input: make contact in payload of vaContact event be formatted",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4533",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-telephone-input"},
{theme:"Engineering & Infrastructure",title:"Web components become invisible if \"class\" is dynamically changed",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4479",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, DST-engineering"},
{theme:"Other",title:"Creating a confirmation submission page",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4471",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team"},
{theme:"Radio & Checkbox",title:"va-radio: First label selectable by JAWS",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4459",assignee:"amyleadem,jeana-adhoc",priority:"P3",sprint:"",status:"Assigned",labels:"bug, a11y-defect-3, accessibility, platform-design-system-team, va-radio"},
{theme:"Engineering & Infrastructure",title:"Create a new DS and Forms Library onboarding video",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4452",assignee:"rhasselle-oddball",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, DST-engineering, governance-team"},
{theme:"Alerts & Banners",title:"Remove green alert with lock icon from vets website",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4450",assignee:"ediiotero",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, va-alert"},
{theme:"Other",title:"Mobile combo box design - accessibility review",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4426",assignee:"jeana-adhoc",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team"},
{theme:"Statement of Truth",title:"Statement of truth | text overflowing",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4424",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-statement-of-truth"},
{theme:"Other",title:"Components cut off on iOS + Safari + 250% zoom",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4369",assignee:"amyleadem,jeana-adhoc",priority:"",sprint:"Upcoming",status:"Planned",labels:"bug, platform-design-system-team, Upcoming sprint priority"},
{theme:"Telephone",title:"International Phone - Flags with edge whitespace display oddly",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4363",assignee:"",priority:"",sprint:"",status:"Open",labels:"component-update, platform-design-system-team, va-international-phone"},
{theme:"Breadcrumbs",title:"Breadcrumbs not aligned on the left",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4354",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-breadcrumbs"},
{theme:"Engineering & Infrastructure",title:"Discovery: Reducing component library build",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4244",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Loading Indicator",title:"va-loading-indicator - review usage of aria-valuetext",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4205",assignee:"",priority:"P2",sprint:"Sprint 26",status:"Ready",labels:"a11y-defect-2, accessibility, platform-design-system-team, va-loading-indicator"},
{theme:"Buttons",title:"Allow the va-button-pair stacking order to be reversed for the continue variation",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4195",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-button-pair"},
{theme:"Other",title:"Popover - Design (phase 1)",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4151",assignee:"danbrady,babsdenney,jeana-adhoc",priority:"",sprint:"",status:"Assigned",labels:"component-new, platform-design-system-team, Figma"},
{theme:"Combo Box & Select",title:"Mobile combo box component - Development",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4140",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, DST-engineering, va-combo-box, component"},
{theme:"Engineering & Infrastructure",title:"Add Prettier code formatting config file to the docs site repository",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4069",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Other",title:"Bug - Mobile Integration - Storybook - Light/Dark Mode Toggle doesn't toggle light/dark color scheme for component",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4068",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"bug, platform-design-system-team"},
{theme:"Discovery",title:"Discovery: Dark mode for guidance site",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4065",assignee:"powellkerry",priority:"",sprint:"",status:"Discovery",labels:"platform-design-system-team, discovery"},
{theme:"Engineering & Infrastructure",title:"Evaluate the dst-uswds-compile repo for renaming and/or moving into the component-library",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4058",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"CSS Library",title:"CSS-Library - Replace .usa-label with .usa-tag",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4009",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, css-library"},
{theme:"Accessibility",title:"Update focus style for header and footer",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/4005",assignee:"",priority:"",sprint:"",status:"Open",labels:"accessibility, platform-design-system-team"},
{theme:"Official Gov Banner",title:"Update the va-official-gov-banner web component so that it aligns with USWDS",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3966",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-official-gov-banner, component"},
{theme:"Engineering & Infrastructure",title:"Create ESLint rule warning to migrate v1 grid classes to v3 grid class",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3941",assignee:"",priority:"",sprint:"Upcoming",status:"Planned",labels:"platform-design-system-team, DST-engineering, Upcoming sprint priority"},
{theme:"Buttons",title:"Button Group SR-only Needed",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3940",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-button, va-button-group-segmented"},
{theme:"Other",title:"Increase adoption of design tokens by at least 1 additional team",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/5995",assignee:"humancompanion-usds,caw310",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, crew-governance"},
{theme:"Alerts & Banners",title:"VaAlert event `va-component-did-load` does not have a test and implementation is not explained in Storybook",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3866",assignee:"",priority:"",sprint:"",status:"Needs Confirmation",labels:"platform-design-system-team, va-alert, Needs-confirmation"},
{theme:"OMB Info",title:" Add Tagalog Translations to OMB Info Control",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3844",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-omb-info, component"},
{theme:"Header",title:"Main navigation missing aria-label",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3812",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, accessibility, platform-design-system-team, va-header"},
{theme:"Other",title:"Vertical red error line disappears on design.va.gov at some breakpoints",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3787",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team"},
{theme:"Language Toggle",title:"Update language toggle in production and update screenshot",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3770",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-language-toggle, component"},
{theme:"Breadcrumbs",title:"Update breadcrumbs with the current link design",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3760",assignee:"",priority:"",sprint:"",status:"Open",labels:"component-update, platform-design-system-team, va-breadcrumbs, DST-engineering, component"},
{theme:"Documentation & Guidance",title:"Update documentation and guidance for focus style - Documentation",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3755",assignee:"",priority:"",sprint:"",status:"Open",labels:"documentation-design.va.gov, platform-design-system-team"},
{theme:"Other",title:"Step 4: Update focus outline - Accessibility review",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3754",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, accessibility-review"},
{theme:"Engineering & Infrastructure",title:"Update CSS library focus outline - Development",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3753",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Design Tokens & Colors",title:"Review Robin's PR and identify how DST can update web component\u2019s focus outline - Development",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3752",assignee:"amyleadem",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, DST-engineering, foundation-color"},
{theme:"Design Tokens & Colors",title:"Update focus style",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3750",assignee:"humancompanion-usds",priority:"",sprint:"",status:"Assigned",labels:"accessibility, platform-design-system-team, foundation-color"},
{theme:"Alerts & Banners",title:"Remove the _banner.scss stylesheet",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3746",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-banner, component"},
{theme:"CSS Library",title:"Remove the _alerts.scss stylesheet",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3740",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, css-library"},
{theme:"CSS Library",title:"Replace formation-override input styles with USWDS import",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3737",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, css-library"},
{theme:"Accessibility",title:"(*Required) on some component labels is separated for some AT/browser combinations",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3732",assignee:"",priority:"",sprint:"",status:"Open",labels:"accessibility, platform-design-system-team"},
{theme:"Combo Box & Select",title:"Combo Box does not have an event exposed to get the value of the input",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3703",assignee:"",priority:"",sprint:"",status:"Open",labels:"component-update, platform-design-system-team, va-combo-box, component"},
{theme:"OMB Info",title:"Update button spacing in OMB info component",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3698",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-omb-info, component"},
{theme:"Discovery",title:"[Design][Discovery] Embedding Figma in DS and Storybook",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3695",assignee:"",priority:"",sprint:"",status:"Discovery",labels:"platform-design-system-team, discovery, Figma"},
{theme:"Search",title:"Inconsistent \"Use my location\" button/link in location searches across products",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3684",assignee:"aklausmeier",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, va-search"},
{theme:"Radio & Checkbox",title:"Radio button label empty string is getting translated to a character instead",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3647",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-radio"},
{theme:"Alerts & Banners",title:"Add full width banner to Figma - Design",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3639",assignee:"danbrady,babsdenney",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, va-banner, Figma, DST-Design, component"},
{theme:"Alerts & Banners",title:"va-alert-sign-in: resolve Stencil test about non-allowed variant name",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3630",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-alert-sign-in, component"},
{theme:"Design Tokens & Colors",title:"Add component and spacing tokens to `variables.css`",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3629",assignee:"",priority:"",sprint:"",status:"Open",labels:"enhancement, platform-design-system-team, design-tokens"},
{theme:"Progress Bar",title:"Align VADS Component names with USWDS component names",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3624",assignee:"",priority:"",sprint:"",status:"Open",labels:"documentation-design.va.gov, platform-design-system-team, va-progress-bar, component"},
{theme:"Address Block",title:"[Address Block] - Development",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3599",assignee:"",priority:"",sprint:"",status:"Open",labels:"component-new, platform-design-system-team, va-address-block, component"},
{theme:"Footer",title:"Update Footer-minimal label in Storybook",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3596",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-footer, va-footer-minimal, component"},
{theme:"Alerts & Banners",title:"Close/X button on alert is too far to the right",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3594",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-alert"},
{theme:"Other",title:"--draft-- css-library: css import hierarchy",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3582",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team"},
{theme:"Engineering & Infrastructure",title:"Bundle analysis pre and post font awesome removal",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3541",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Search",title:"va-search-input: Resolve Stencil test warning about isTouched re-rendering",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3539",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-search-input, component"},
{theme:"Links & Actions",title:"Link collection - Development",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3523",assignee:"",priority:"",sprint:"",status:"Open",labels:"component-new, platform-design-system-team, va-link-collection, component"},
{theme:"Other",title:"Showing primitive tokens as spacing variables in Figma",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3512",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Figma, DST-Design"},
{theme:"Design Tokens & Colors",title:"Update documentation with more than just tokens",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3506",assignee:"",priority:"",sprint:"",status:"Open",labels:"documentation-design.va.gov, platform-design-system-team, DST-engineering, design-tokens"},
{theme:"Footer",title:"Footer: Compile, Create, and Commit a list of footer links into a static JSON object",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3475",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, va-footer, component"},
{theme:"Engineering & Infrastructure",title:"Update deploy.yml to use the reusable deploy workflow",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3450",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Engineering & Infrastructure",title:"Breakpoint class is applying to the wrong browser width",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3421",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, DST-engineering"},
{theme:"Other",title:"[Safari] list bullets are displayed in the header at mobile widths",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3360",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team"},
{theme:"Table",title:"Incorrect scope on table component headers",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3341",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-table, component"},
{theme:"On This Page",title:"va-on-this-page: list should be indented to match Figma",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3334",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-on-this-page, component"},
{theme:"Documentation & Guidance",title:"Create component guidance for destructive button variant use",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3314",assignee:"humancompanion-usds",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, guidance-new, DST-Design"},
{theme:"Buttons",title:"[Design] Discovery - Full-width buttons on mobile",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3288",assignee:"danbrady,babsdenney,LWWright7",priority:"",sprint:"",status:"Assigned",labels:"bug, component-update, platform-design-system-team, va-button, va-button-pair, va-button-icon, design, DST-Design, component"},
{theme:"Header",title:"[Injected header] Opening and closing benefit hubs on mobile closes the megamenu",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3294",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, va-header, component"},
{theme:"Links & Actions",title:"va-link: update hover focus border, reverse variation arrow color, and hover",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3236",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, good first issue, platform-design-system-team, va-link, component"},
{theme:"Other",title:"[Figma issue] Need Help? component > Health care version > boilerplate content",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3203",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Figma, DST-Design"},
{theme:"Links & Actions",title:"Language support needed for <va-link>",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3138",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-link, component"},
{theme:"Documentation & Guidance",title:"Confusing Storybook Examples: Radio button",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3127",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, guidance-update"},
{theme:"Progress Bar",title:"Progress indicator - segmented text too large",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3116",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-progress-bar, DST-engineering"},
{theme:"Official Gov Banner",title:"Fix styling of official government banner",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3109",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-official-gov-banner, component"},
{theme:"Accessibility",title:"Consider adding a visible label for search component",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3107",assignee:"",priority:"",sprint:"",status:"Open",labels:"accessibility, platform-design-system-team"},
{theme:"Header",title:"[Header] On Desktop, when a user has a long first name, the Contact us link gets wraps on to two lines",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3173",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, va-header, component"},
{theme:"Links & Actions",title:"va-link: active icon enhancement request",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3048",assignee:"",priority:"",sprint:"",status:"Needs Review",labels:"platform-design-system-team, va-link, po-review-needed"},
{theme:"Other",title:"va-link, etc. don't provide innerText, cause issues with recording actions in Datadog ",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3001",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team"},
{theme:"Engineering & Infrastructure",title:"Automatically publish Component Library release notes to Slack",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2999",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Other",title:"Fix CSS source maps",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2998",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team"},
{theme:"Engineering & Infrastructure",title:"CSS Library - Refactor - Shorten utility class names [draft]",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2997",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Text & Number Input",title:"Deprecate currency prop from va-text-input component",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2989",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-text-input, component"},
{theme:"Header",title:"Bug - Header width doesn't scale with large font browser settings",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2987",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, va-header, component"},
{theme:"Other",title:"CSS Library - Refactor app by app imports",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2976",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team"},
{theme:"Header",title:"[Header] The header nav displays incorrectly when a dark reader plugin is used",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3174",assignee:"",priority:"",sprint:"",status:"Open",labels:"accessibility, platform-design-system-team, DST-engineering, va-header, component"},
{theme:"Icons",title:"Allow Icons to have a Colored Background",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2934",assignee:"danbrady,babsdenney,jeana-adhoc",priority:"",sprint:"",status:"Discovery",labels:"platform-design-system-team, discovery, va-icon, DST-Design"},
{theme:"Icons",title:"Move icon sprite sheet compiler to the component-library",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2883",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-icon, component"},
{theme:"Icons",title:" [icon removal: event_available]",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2816",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-icon, component"},
{theme:"Other",title:"Troubleshoot issues with Chromatic CI check",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2785",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team"},
{theme:"Text & Number Input",title:"Text-input - Input mode of email should set appropriate attributes",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2766",assignee:"",priority:"",sprint:"",status:"Open",labels:"component-update, platform-design-system-team, va-text-input, component"},
{theme:"Buttons",title:"va-button: Add translation support to `va-button`",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2762",assignee:"RyanMunsch",priority:"",sprint:"Upcoming",status:"Planned",labels:"good first issue, platform-design-system-team, va-button, va-button-pair, component, Upcoming sprint priority"},
{theme:"Design Tokens & Colors",title:"Dark mode not supported (Edge on iOS)",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2744",assignee:"",priority:"P3",sprint:"",status:"Open",labels:"bug, a11y-defect-3, accessibility, platform-design-system-team, foundation-color"},
{theme:"Mobile",title:"Add Mobile Tests to Chromatic",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2694",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, Mobile"},
{theme:"Alerts & Banners",title:"Alert Expandable - Background Colors Update",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2689",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-alert-expandable, DST-engineering, component"},
{theme:"Progress Bar",title:"Progress bar - Segmented - Does not handle complex forms",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2688",assignee:"humancompanion-usds",priority:"",sprint:"",status:"Assigned",labels:"component-new, platform-design-system-team, va-segmented-progress-bar, Design Gap, component"},
{theme:"Header",title:"Header - web component - Development",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2682",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, va-header, component"},
{theme:"Engineering & Infrastructure",title:"Modify .stylelint.json in vets-website to flag use of Formation sass color variables",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2656",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Engineering & Infrastructure",title:"Create ESLint rules for required slotted elements in web-components ",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2627",assignee:"",priority:"",sprint:"",status:"Open",labels:"enhancement, component-update, platform-design-system-team, DST-engineering"},
{theme:"Other",title:"Add Visual Tests Addon to Storybook",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2608",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team"},
{theme:"Buttons",title:"Button target size doesn't match design system guidance",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2568",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-button, component"},
{theme:"Buttons",title:"Save in progress alert buttons spacing is off on mobile when stacked ",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2550",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-button, component"},
{theme:"Divider",title:"Update Divider component in Storybook ",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2532",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-divider, DST-engineering, component"},
{theme:"Other",title:"text-input component implementation of character count varies between USWDS and VADS",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2519",assignee:"danbrady,amyleadem",priority:"",sprint:"",status:"Assigned",labels:"bug, platform-design-system-team, component-bug-v3"},
{theme:"Accordion",title:"Accordion - Border prop and Storybook",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2513",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-accordion, DST-engineering, Storybook, component"},
{theme:"Documentation & Guidance",title:"Updates related to deprecated wizard component",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2487",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, guidance-update"},
{theme:"Engineering & Infrastructure",title:"Diagram and document DST products and where they are used",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2470",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Card",title:"[Card] - Audit: Standard card uses",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2447",assignee:"babsdenney",priority:"",sprint:"",status:"Assigned",labels:"component-update, platform-design-system-team, va-card, Figma, DST-Design, component"},
{theme:"Other",title:"Set body color to correct value in _normalize.scss",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2390",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team"},
{theme:"Statement of Truth",title:"Fix broken link in Storybook for Statement of Truth",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2375",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, Storybook, va-statement-of-truth"},
{theme:"Buttons",title:"va-button-pair translation",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2364",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-button-pair, component"},
{theme:"CSS Library",title:"CSS Library: Fix the minify script",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2295",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, css-library"},
{theme:"Other",title:"CSS Library: Move any individual tokens or variables in components to the CSS Library",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2266",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team"},
{theme:"Date Components",title:"[va-memorable-date] - Allow users to paste in their birthday suggestion from autocomplete",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2265",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-memorable-date, component"},
{theme:"Engineering & Infrastructure",title:"Update content-build to support minimal header",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2257",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Mobile",title:"Add service branch images to assets",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2214",assignee:"TimRoe",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Mobile"},
{theme:"Telephone",title:"Make the contacts.js file available for import again on vets-website",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2194",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-telephone, component"},
{theme:"Engineering & Infrastructure",title:"Formation Deprecation - Step 1 - Extract CSS Library from Component Library Packages",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2241",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Text & Number Input",title:"Error message displays immediately on focus out of number input component",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2135",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-number-input, component"},
{theme:"Engineering & Infrastructure",title:"Evaluate if we need/want the component_version value for Google Analytics",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2053",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Engineering & Infrastructure",title:"Add custom header and footer support",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/2017",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-audited, DST-engineering"},
{theme:"Other",title:"Fix dependabot alerts for component-library",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1987",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team"},
{theme:"Other",title:"Support maturity level for component variations",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1760",assignee:"humancompanion-usds",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team"},
{theme:"Buttons",title:"Add USWDS Button - Accent to Figma",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1743",assignee:"danbrady,babsdenney",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, va-button, Figma, component"},
{theme:"Other",title:"Experimental design - New component for Print confirmation",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1730",assignee:"humancompanion-usds",priority:"",sprint:"",status:"Assigned",labels:"component-new, platform-design-system-team"},
{theme:"Text & Number Input",title:"Input Mask USWDS v3 - Development",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1676",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, va-text-input, DST-engineering, va-number-input, component"},
{theme:"Engineering & Infrastructure",title:"Documentation for custom properties",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1630",assignee:"humancompanion-usds",priority:"",sprint:"",status:"Assigned",labels:"documentation-design.va.gov, platform-design-system-team, DST-engineering"},
{theme:"Radio & Checkbox",title:"[Bug] Headers added inside `va-radio` are too large",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1609",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, DST-engineering, va-radio, component"},
{theme:"Date Components",title:"Memorable date doesn't translate select values on language change",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1605",assignee:"",priority:"",sprint:"",status:"Open",labels:"bug, platform-design-system-team, va-memorable-date, component"},
{theme:"Design Tokens & Colors",title:"Discovery: Component-specific design tokens in the CSS Library",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1588",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering, design-tokens"},
{theme:"Radio & Checkbox",title:"va-radio component delayed when rendering inner shadow DOM elements ",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1558",assignee:"RyanMunsch",priority:"",sprint:"Sprint 26",status:"Needs Confirmation",labels:"performance, platform-design-system-team, DST-engineering, va-radio, component, Needs-confirmation"},
{theme:"Other",title:"Setup monitoring of a fresh install of this repo",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1480",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team"},
{theme:"Other",title:"[SCREEN READER, BEST PRACTICE]: Storybook - More accurate and descriptive page titles",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1456",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team"},
{theme:"Date Components",title:"Tagalog translations for va-date",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1423",assignee:"",priority:"",sprint:"",status:"Open",labels:"component-update, platform-design-system-team, va-date, DST-engineering, component"},
{theme:"Date Components",title:"Spanish translations for va-date",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1422",assignee:"",priority:"",sprint:"",status:"Open",labels:"component-update, platform-design-system-team, va-date, DST-engineering, component"},
{theme:"Other",title:"Right arrow chevrons are inconsistently used",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1421",assignee:"derekwang99",priority:"",sprint:"",status:"Assigned",labels:"bug, platform-design-system-team"},
{theme:"Engineering & Infrastructure",title:"Enable non-code updates to Veteran Crisis Line phone number",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/3530",assignee:"",priority:"",sprint:"",status:"Open",labels:"platform-design-system-team, DST-engineering"},
{theme:"Breadcrumbs",title:"See if the Check-in Experience \"BackButton\" can be replaced with a breadcrumb component",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1210",assignee:"amyleadem",priority:"",sprint:"",status:"Needs Confirmation",labels:"performance, platform-design-system-team, va-breadcrumbs, discovery, component, Needs-confirmation"},
{theme:"Other",title:"Create a hierarchy of components to use for highlighting content in applications",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1094",assignee:"humancompanion-usds",priority:"",sprint:"",status:"Assigned",labels:"platform-design-system-team, Design Gap"},
{theme:"Engineering & Infrastructure",title:"Move guidance for using web components inside Liquid templates to design.va.gov",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/1197",assignee:"amyleadem",priority:"",sprint:"",status:"Needs Confirmation",labels:"platform-design-system-team, DST-engineering, Needs-confirmation"},
{theme:"Accessibility",title:"[WCAG 2.1]: Loading Indicators need to announce themselves to screen readers without taking focus",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/491",assignee:"amyleadem,jeana-adhoc",priority:"P3",sprint:"",status:"Needs Confirmation",labels:"component-update, a11y-defect-3, accessibility, 508-issue-cognition, 508-issue-focus-mgmt, platform-design-system-team, Needs-confirmation"},
{theme:"Other",title:"Request to explore srcset for serving optimized images ",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/407",assignee:"amyleadem",priority:"",sprint:"",status:"Needs Confirmation",labels:"enhancement, performance, platform-design-system-team, DSC request, Needs-confirmation"},
{theme:"Links & Actions",title:"va-link: Add prop to adjust hyperlink underline style",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/307",assignee:"",priority:"",sprint:"",status:"Needs Confirmation",labels:"component-update, platform-design-system-team, DST-audited, va-link, Needs-confirmation"},
{theme:"Summary Box",title:"Audit use of Feature content CSS and remove if possible",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/195",assignee:"amyleadem",priority:"",sprint:"",status:"Needs Confirmation",labels:"bug, component-update, platform-design-system-team, DST-audited, va-summary-box, Needs-confirmation"},
{theme:"Other",title:"Improve webfont loading on va.gov",url:"https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/277",assignee:"amyleadem,rhasselle-oddball",priority:"",sprint:"",status:"Needs Confirmation",labels:"performance, platform-design-system-team, Needs-confirmation"}
];
const prioOrder = {"P1": 0, "P2": 1, "P3": 2, "": 3};
const statusOrder = {"In Progress": 0, "Ready": 1, "Planned": 2, "Needs Review": 3, "Needs Triage": 4, "Needs Confirmation": 4, "On Hold": 5, "Discovery": 6, "Assigned": 7, "Open": 8};
const allThemes = [...new Set(stories.map(s => s.theme))].sort();
const tf = document.getElementById('themeFilter');
allThemes.forEach(t => {
const o = document.createElement('option');
o.value = t; o.textContent = t;
tf.appendChild(o);
});
function getSprintClass(sprint) {
if (sprint === "Sprint 26") return "sprint-current";
if (sprint === "Upcoming") return "sprint-upcoming";
if (sprint === "Stretch") return "sprint-stretch";
return "";
}
function getStatusClass(status) {
const map = {
"In Progress": "st-in-progress",
"Ready": "st-ready",
"Planned": "st-planned",
"Assigned": "st-assigned",
"Needs Triage": "st-needs-triage",
"Needs Confirmation": "st-needs-confirmation",
"Needs Review": "st-needs-review",
"On Hold": "st-on-hold",
"Discovery": "st-discovery",
"Open": "st-open",
};
return map[status] || "st-open";
}
function render() {
const sprintVal = document.querySelector('.sprint-btn.active')?.dataset.sprint || 'all';
const statusVal = document.getElementById('statusFilter').value;
const themeVal = document.getElementById('themeFilter').value;
const prioVal = document.getElementById('priorityFilter').value;
const search = document.getElementById('searchBox').value.toLowerCase();
let filtered = stories.filter(s => {
if (sprintVal !== 'all') {
if (sprintVal === 'Backlog' && s.sprint) return false;
if (sprintVal !== 'Backlog' && s.sprint !== sprintVal) return false;
}
if (statusVal !== 'all' && s.status !== statusVal) return false;
if (themeVal !== 'all' && s.theme !== themeVal) return false;
if (prioVal !== 'all' && s.priority !== prioVal) return false;
if (search && !(s.title.toLowerCase().includes(search) || s.assignee.toLowerCase().includes(search) || s.labels.toLowerCase().includes(search) || s.theme.toLowerCase().includes(search))) return false;
return true;
});
const groups = {};
filtered.forEach(s => {
if (!groups[s.theme]) groups[s.theme] = [];
groups[s.theme].push(s);
});
let p1 = 0, p2 = 0, inSprint = 0, unassigned = 0;
filtered.forEach(s => {
if (s.priority === 'P1') p1++;
if (s.priority === 'P2') p2++;
if (s.sprint) inSprint++;
if (!s.assignee) unassigned++;
});
document.getElementById('totalStories').textContent = filtered.length;
document.getElementById('themeCount').textContent = Object.keys(groups).length;
document.getElementById('p1Count').textContent = p1;
document.getElementById('p2Count').textContent = p2;
document.getElementById('sprintCount').textContent = inSprint;
document.getElementById('unassignedCount').textContent = unassigned;
const content = document.getElementById('content');
content.innerHTML = '';
let idx = 0;
const p1Items = filtered.filter(s => s.priority === "P1");
if (p1Items.length > 0) {
const p1Box = document.createElement('div');
p1Box.style.cssText = 'background:#fdf0f0;border:2px solid #e31c3d;border-radius:8px;padding:16px 20px;margin-bottom:24px;';
let p1Html = '<div style="display:flex;align-items:center;gap:8px;margin-bottom:12px;"><span class="priority-flag p1" style="font-size:14px;padding:3px 10px;">P1</span><strong style="font-size:16px;color:#b50d0d;">Critical Priority Items (' + p1Items.length + ')</strong></div>';
p1Items.forEach(s => {
p1Html += '<div style="padding:6px 0;border-bottom:1px solid #f5d5d5;font-size:14px;"><a href="' + s.url + '" target="_blank" rel="noopener" style="color:#b50d0d;font-weight:600;text-decoration:none;">' + s.title + '</a> <span style="color:#71767a;font-size:12px;">(' + s.theme + ' | ' + s.status + ')</span></div>';
});
p1Box.innerHTML = p1Html;
content.appendChild(p1Box);
}
const sortedThemes = Object.entries(groups).sort((a, b) => {
const aP1 = a[1].filter(s => s.priority === "P1").length;
const bP1 = b[1].filter(s => s.priority === "P1").length;
if (aP1 !== bP1) return bP1 - aP1;
const aP2 = a[1].filter(s => s.priority === "P2").length;
const bP2 = b[1].filter(s => s.priority === "P2").length;
if (aP2 !== bP2) return bP2 - aP2;
return b[1].length - a[1].length;
});
sortedThemes.forEach(([theme, items]) => {
items.sort((a, b) => {
const pCmp = (prioOrder[a.priority] ?? 3) - (prioOrder[b.priority] ?? 3);
if (pCmp !== 0) return pCmp;
return (statusOrder[a.status] ?? 8) - (statusOrder[b.status] ?? 8);
});
const themeP1s = items.filter(s => s.priority === "P1").length;
const themeP2s = items.filter(s => s.priority === "P2").length;
const themeSprint = items.filter(s => s.sprint).length;
const group = document.createElement('div');
group.className = 'theme-group';
const header = document.createElement('div');
header.className = 'theme-header collapsed';
header.innerHTML = `
<span class="chevron">▼</span>
<h2>${theme}</h2>
${themeP1s ? '<span class="badge" style="background:#e31c3d;color:white;font-weight:700">' + themeP1s + ' P1</span>' : ''}
${themeP2s ? '<span class="badge" style="background:#fdb81e;color:#1b1b1b;font-weight:700">' + themeP2s + ' P2</span>' : ''}
${themeSprint ? '<span class="badge" style="background:#d4edda;color:#155724;font-weight:600">' + themeSprint + ' in sprint</span>' : ''}
<span class="badge">${items.length} issues</span>
`;
const body = document.createElement('div');
body.className = 'theme-body hidden';
header.addEventListener('click', () => {
header.classList.toggle('collapsed');
body.classList.toggle('hidden');
});
items.forEach(s => {
idx++;
const row = document.createElement('div');
row.className = 'story-row';
row.innerHTML = `
<div class="idx">#${idx}</div>
<div class="title">
<a href="${s.url}" target="_blank" rel="noopener">${s.title}</a>
${s.priority ? '<span class="priority-flag ' + s.priority.toLowerCase() + '">' + s.priority + '</span>' : ''}
</div>
<div>${s.sprint ? '<span class="sprint-label ' + getSprintClass(s.sprint) + '">' + s.sprint + '</span>' : ''}</div>
<div><span class="status-badge ${getStatusClass(s.status)}">${s.status}</span></div>
<div class="assignee">${s.assignee || '<em>unassigned</em>'}</div>
<div style="font-size:11px;color:#71767a;">#${s.url.split('/').pop()}</div>
`;
body.appendChild(row);
});
group.appendChild(header);
group.appendChild(body);
content.appendChild(group);
});
}
document.querySelectorAll('.sprint-btn').forEach(btn => {
btn.addEventListener('click', () => {
document.querySelectorAll('.sprint-btn').forEach(b => b.classList.remove('active'));
btn.classList.add('active');
render();
});
});
document.getElementById('statusFilter').addEventListener('change', render);
document.getElementById('themeFilter').addEventListener('change', render);
document.getElementById('priorityFilter').addEventListener('change', render);
document.getElementById('searchBox').addEventListener('input', render);
render();
</script>
</body>
</html>