-
Notifications
You must be signed in to change notification settings - Fork 1
Roadmap
Edgar Mesquita edited this page Jun 9, 2026
·
12 revisions
This document summarizes the progress of eQuantic.UI and the next steps planned for the framework.
- Authorization in Server Actions (
[Authorize],[AllowAnonymous]) - Payload validation and request size limits.
- Type whitelist for secure deserialization.
- Source Maps: Integrated native C# debugging in the browser (
SourceMapGenerator,TypeScriptCodeBuilder). - Modern C# Support: Recursive patterns,
using var, and advancedswitchexpressions. - Comprehensive test suite (37+ unit and snapshot tests).
- Implementation of identifier heuristics (
this.).
- Keyed Diffing: Intelligent reconciliation based on keys (basic implementation in
reconciler.ts). - True Keyed Diffing (LIS): Longest Increasing Subsequence algorithm for efficient node movement (
reconciler.tslines 343-573). - WeakMap Event Tracking: Memory optimization to prevent leaks (
reconciler.tsline 23). - Optimized Runtime build with Bun bundler.
- CLI Tool (
eqx): Commands forbuild,dev(with HTTP server + file watcher), andcreate(project scaffolding withcounter/blanktemplates). - VS Code Extension: Snippets for pages, components, and styles (
extensions/vscode/). - Debugging: Integrated Source Maps for TS/JS debugging.
- Tailwind Components: New Badge and Alert components.
- Zero-runtime CSS Extraction: Static extraction of styles during build time (
TailwindStyleExtractor). - 100% Theme Extension: Full theme coverage for Switch, Select, Table, Modal, Tabs, Avatar via
IAppTheme. - Core Refactoring: Removal of hardcoded classes in favor of
AppTheme. - DX: Added
IsNativeproperty for choosing between standard and rich HTML rendering.
- Standardization of
VariantandSizeenums. - Implementation of
StyleBuilder(CVA pattern) inCore/Theme/StyleBuilder.cs. - Decoupling of semantic colors via
IColorTheme. - Component refactoring (
Button,Alert,Badge,Avatar,Input). - Duplicate cleanup and folder reorganization.
- Compound Components Pattern: Card with semantic sub-components (CardHeader, CardTitle, CardDescription, CardBody, CardFooter).
- Granular Variants: CardVariant enum with 5 options (Default, Outline, Elevated, Subtle, Ghost).
- Controlled/Uncontrolled Components: DefaultValue/DefaultChecked props for TextInput, Select, Checkbox.
- Loading States: Button.Loading prop with automatic spinner and disabled state.
- Error States & Validation: FormField component with label, error messages, and helper text.
- Input Groups: InputGroup and InputAddon for composite inputs (URLs, currency, etc.).
- Data & ARIA Attributes: Native support via HtmlElement.DataAttributes and AriaAttributes.
- XML Documentation: Complete IntelliSense support for all component props.
- Tailwind Package Updates: ButtonTheme, CardTheme, InputTheme with variant support.
- Wiki Documentation: ComponentRobustness.md and TailwindUpdates.md added.
Result: Components now match shadcn/ui robustness with additional C# type safety advantages.
- Migration to .NET 10: All 39 projects updated to
net10.0(SDK, CI, NuGet dependencies). - Runtime Meta-package Cleanup: Removed broken MSBuild OS conditions from
eQuantic.UI.Runtime.csproj; platform resolution now handled exclusively bySdk.props. - Program.cs Refactoring: Extracted
EnableTailwindDarkMode()extension method to reduce inline JavaScript in consumer apps. - Centralized Versioning: Removed hardcoded
<Version>from Runtime platform packages; all packages now inherit fromDirectory.Build.props. - Dynamic Theme (Dark Mode):
EnableTailwindDarkMode()inTailwindExtensions.cs+ embeddeddark-mode.js. - UI Component Library:
eQuantic.UI.Lucide,eQuantic.UI.Heroicons,eQuantic.UI.Charts.ChartJs,eQuantic.UI.Charts.ApexChartsecosystem.
- Update Wiki with new styling patterns and Source Map details.
- E2E Testing with Playwright: 4 test suites implemented (701 LOC):
-
todolist.spec.ts— Functional tests for TodoList app -
ssr-hydration.spec.ts— SSR hydration validation -
ssr-csr-diff.spec.ts— SSR vs CSR output comparison -
debug-html-diff.spec.ts— HTML diff debugging
-
- E2E CI Integration: Integrate Playwright tests into GitHub Actions CI pipeline.
- Interactive Component Showcase: Evolve existing
Showcase.cs(in Material/Default samples) into a standalone, interactive "Playground" with live props editing. - CLI Component Scaffolding: Extend CLI
createcommand to scaffold individual components (e.g.,eqx create component MyCard). - Linting & Formatting: Add ESLint/Prettier configuration for TypeScript code in the Runtime.
- DataGrid Pro: Enterprise-grade data grid with remote pagination, sorting, filtering, and inline editing.
- Enterprise Monetization Plan: Define licensing and premium support structures.
- Full SSR Support: Complete initial server-side rendering for SEO and performance. SSR hydration exists (
WithSsr(),boot.tshydration logic) but needs expanded coverage.
- eQuantic Playground: Online editor via WASM for live component editing in the browser.
- eQuantic DevTools: Browser extension to inspect component tree, state, and events in real-time.