feat: switch dynamic to shadcn

This commit is contained in:
Junyan Qin
2025-05-08 11:28:52 +08:00
parent 9e24e240d8
commit 4604f70a57
5 changed files with 248 additions and 55 deletions
@@ -35,9 +35,11 @@ export interface IDynamicFormItemLabel {
export enum DynamicFormItemType {
INT = 'integer',
STRING = 'string',
FLOAT = 'float',
BOOLEAN = 'boolean',
STRING = 'string',
STRING_ARRAY = 'array[string]',
SELECT = 'select',
UNKNOWN = 'unknown',
}