feat: App Config slide-in with Route column, clickable taps, and edit toolbar
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m4s
CI / docker (push) Successful in 1m19s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 27s

- Add Route column to Traces & Taps table (diagram-based mapping, pending backend fix)
- Make tap badges clickable to navigate to route's Taps tab
- Add edit/save/cancel toolbar with design system Button components
- Move Sampling Rate to last position in settings grid
- Support ?tab= URL param on RouteDetail for direct tab navigation
- Bump @cameleer/design-system to 0.1.15 (DetailPanel overlay + backdrop)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-03-26 22:26:28 +01:00
parent ef9ec6069f
commit bd63a8ce95
5 changed files with 128 additions and 20 deletions

View File

@@ -76,6 +76,24 @@
font-size: 11px;
}
.routeLabel {
font-size: 11px;
color: var(--text-secondary);
}
.tapBadgeLink {
background: none;
border: none;
padding: 0;
cursor: pointer;
border-radius: var(--radius-sm);
transition: opacity 0.15s;
}
.tapBadgeLink:hover {
opacity: 0.75;
}
.removeBtn {
background: none;
border: none;
@@ -90,8 +108,36 @@
color: var(--error);
}
.panelToolbar {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 12px;
}
.panelMeta {
font-size: 11px;
color: var(--text-muted);
margin-bottom: 12px;
}
.panelActions {
display: flex;
gap: 8px;
align-items: center;
}
.editBtn {
background: none;
border: none;
color: var(--text-muted);
cursor: pointer;
font-size: 14px;
padding: 4px 6px;
border-radius: var(--radius-sm);
transition: color 0.15s;
}
.editBtn:hover {
color: var(--text-primary);
}