feat: add text draw core

This commit is contained in:
2026-08-26 00:22:28 +05:00
parent 2e980fb115
commit 38e7cd20d2
6 changed files with 299 additions and 1 deletions
+3 -1
View File
@@ -5,7 +5,8 @@ export type CategoryId =
| 'geometry'
| 'analyze'
| 'generate'
| 'filters';
| 'filters'
| 'text';
/**
* Порядок категорий в каталоге. Человекочитаемые названия живут в словарях
@@ -17,6 +18,7 @@ export const CATEGORIES: readonly CategoryId[] = [
'color',
'geometry',
'filters',
'text',
'analyze',
'generate'
];