evo-ui is the shared Livewire + DaisyUI UI foundation for Evolution CMS manager modules.
It is used by sArticles, dIssues, sLang, sSeo, and dDocs as the
canonical manager UI layer. Consumer modules describe tabs, tables, forms,
workspaces, fields, providers, and persistence rules declaratively; evo-ui owns
the shared shell, components, state behavior, theme bridge, and local assets.
Use evo-ui when a module needs a manager screen, settings form, table/list CRUD, resource-like editor, issue workspace, or a shared visual primitive. Keep business rules, data ownership, provider semantics, and module-specific workflow decisions in the consuming package.
- Manager iframe layout with local assets.
- Evolution manager theme sync.
- Livewire 4 bridge for manager routes, CSRF and sessions.
- Config-driven tables with filters, search, sorting, pagination, table/list view, inline edit, modal edit, row actions and drag reorder.
- Config-driven forms for settings and resource-like editors.
- Provider-backed issue workspace for kanban/list workflows.
- Shared components for buttons, icons, tabs, modals, badges, cards, choices, image/file fields and rich editors.
- Current UI state persistence in the manager session.
- Build a module shell with
x-evo::layout,evo::partials.assets, module tabs, and Livewire components. - Define table/list surfaces through
evo-ui.module-tablepresets. - Define settings and model forms through
evo-ui.formpresets. - Reuse issue workspace contracts for provider-backed list/kanban workflows.
- Add new shared UI behavior first as a documented contract, then as package tests, and only then consume it from modules.
<x-evo::layout :title="$pageTitle">
<x-evo::module-tabs :items="$tabs" :active="$activeTab" />
<livewire:evo-ui.module-table
preset="vendor.module.items"
:context="['moduleUrl' => $moduleUrl]"
/>
</x-evo::layout>- User Guide
- Developer Guide
- Frontend Guide
- Configuration
- Reference
- Troubleshooting
- Documentation Standards
- Module Integration
- Components
- Action Buttons
- Modal And Confirmation
- Table Component
- Form Component
- Form And Field Catalogue
- Choices And Option Lists
- Inline Create And Inline Edit
- Dashboard Cards
- Module Table Contract
- Issue Workspace Contract
- Design Tokens And Visual System
- Consumer Adoption Checklist
- Testing Matrix
- Consumers
- Release Checklist
- dDocs Tree/Viewer Notes
- Roadmap
- These links intentionally stay inside the package
docs/tree. - Localized pages are entrypoints; canonical technical contracts are the linked root documents.
- Code examples must use fenced language identifiers so dDocs can highlight them predictably.
Put shared UI runtime into evo-ui. Keep module-specific business logic in the module provider.