Components
CMS Components
Section titled “CMS Components”Stelo CMS includes a comprehensive library of reusable UI components built with Shadcn UI.
Form Components
Section titled “Form Components”FormField
Section titled “FormField”Standardized form field with validation:
<FormField label="Title" name="title" required localized/>RichTextEditor
Section titled “RichTextEditor”Tiptap-based editor for content creation:
<RichTextEditor value={content} onChange={setContent} locale={currentLocale}/>MediaUploader
Section titled “MediaUploader”File upload component with drag-and-drop:
<MediaUploader onUpload={handleUpload} accept="image/*" multiple/>Data Components
Section titled “Data Components”DataTable
Section titled “DataTable”Sortable, filterable data table:
<DataTable data={pages} columns={pageColumns} searchable paginated/>EntityList
Section titled “EntityList”List view for entities with actions:
<EntityList type="pages" actions={['edit', 'delete', 'publish']}/>This section will be expanded with detailed component documentation.