form builder module

This commit is contained in:
2026-01-28 14:59:25 +03:30
parent e44a239ef0
commit 8121b27248
27 changed files with 151 additions and 129 deletions
@@ -0,0 +1,9 @@
export enum FieldType {
text = 'text',
textarea = 'textarea',
number = 'number',
select = 'select',
radio = 'radio',
checkbox = 'checkbox',
date = 'date',
}