Files
breadcrumb-the-shire/.agents/skills/starterkit-grid-standards/references/row-interaction-standard.md
fs 4dd6d451f6 refactor: relocate agent-system/ to .agents/ with 7-role workflow restructure
Moves the agent workflow system from agent-system/ to .agents/ (dotfile convention).
Restructured from 5-role to 7-role pipeline: adds Analyst and splits Reviewer into
Code Reviewer + Security Reviewer. Removes all old workflow run artifacts.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-19 18:23:04 +01:00

810 B

Row Interaction Standard

Ziel

Row-Navigation discoverable und keyboard-freundlich machen.

Standardverhalten

  1. Sichtbare Action-Spalte rechts (Open/Edit) fuer Listen mit rowDblClick.
  2. Enter auf fokussierter Row loest dieselbe Navigation aus.
  3. Doppelklick bleibt als Fallback fuer Power-User.
  4. Nur Rows mit Ziel-URL erhalten data-row-open-url.

Contract

rowInteraction: {
  enabled: true,
  showActionButton: true,
  keepDblClick: true,
  enableEnterOnRow: true,
  actionColumnLabel: 'Actions',
  resolveActionLabel: (url, rowData) => (url.includes('/edit/') ? 'Edit' : 'Open')
}

Guardrails

  1. Keine globale Tab-Stop-Flut auf allen Rows.
  2. Fokusstil fuer Row und Action-Button sichtbar.
  3. Explizite actions.enabled: true pro Seite darf Auto-Action uebersteuern.