feat: add registry

This commit is contained in:
2026-08-23 12:41:17 +05:00
parent f9a4973b47
commit 6fae98b25c
7 changed files with 356 additions and 5 deletions
+3 -2
View File
@@ -1,4 +1,4 @@
export type CategoryId = 'convert' | 'alpha' | 'color' | 'geometry' | 'analyze';
export type CategoryId = 'convert' | 'alpha' | 'color' | 'geometry' | 'analyze' | 'generate';
export type Category = { id: CategoryId; label: string };
@@ -7,5 +7,6 @@ export const CATEGORIES: Category[] = [
{ id: 'alpha', label: 'Прозрачность' },
{ id: 'color', label: 'Цвет' },
{ id: 'geometry', label: 'Геометрия' },
{ id: 'analyze', label: 'Анализ' }
{ id: 'analyze', label: 'Анализ' },
{ id: 'generate', label: 'Генерация' }
];