feat: searchable select dropdowns + updated levels

- Replace native select with custom searchable dropdown
- Search matches word starts (type 'а' finds 'Анна' or 'Мария Андреева')
- Search input shows for lists with 4+ options
- Updated levels: Начинающий/Без опыта, Продвинутый

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-12 15:25:32 +03:00
parent 21f3887bc9
commit 5fe2500dbe
2 changed files with 80 additions and 18 deletions

View File

@@ -27,7 +27,7 @@ const DAY_ORDER: Record<string, number> = Object.fromEntries(
const LEVELS = [
{ value: "", label: "Без уровня" },
{ value: "Начинающий", label: "Начинающий" },
{ value: "Начинающий/Без опыта", label: "Начинающий/Без опыта" },
{ value: "Продвинутый", label: "Продвинутый" },
];