@ooopenlab/quiz-form-fields
Version:
Form field type definitions and components for SuperQuiz modules
19 lines (16 loc) • 581 B
text/typescript
// Export form field type definitions (React components will be added in Phase 2)
// export { TextInput } from './components/TextInput';
// export { Textarea } from './components/Textarea';
// Export types
export type {
BaseFormFieldProps,
TextInputProps,
TextareaProps,
SelectProps,
NumberInputProps,
ColorPickerProps,
ImageUploaderProps,
RichTextEditorProps
} from './types';
// Export canonical field type registry for consumers (editors, modules, CLI)
export { supportedFieldTypes, type FieldType, isFieldTypeSupported, listFieldTypes } from './field-types';