{# Search-select fragment — debounced search with dropdown results, Alpine state. Contract: ~/.claude/skills/ux-architect/components/widget-search-select.md (UX-028) ARIA combobox pattern (ARIA 1.2 — input with popup listbox variant). v0.62 CSS refactor: inline Tailwind → semantic .dz-search-select-* classes (components/fragments.css). Error border keyed off `aria-invalid="true"` (already emitted for accessibility) — visual + a11y now share one source of truth instead of a 2-branch Jinja class string. #} {# Resolve initial value for edit mode: ref objects have display names #} {% set init_id = "" %} {% set init_display = "" %} {% if value is mapping %} {% set init_id = value.get("id", "") %} {% set init_display = value.get("name") or value.get("title") or value.get("label") or value.get("email") or value.get("id", "") %} {% elif value %} {% set init_id = value %} {% set init_display = value %} {% endif %}