Platform Acceleration Phase 1: - @bytelyst/sync package: Offline-first sync engine with conflict resolution - Storage adapters: LocalStorage, InMemory, MMKV - Deduplication, retry with backoff, auto-flush on reconnect - 12 comprehensive tests - @bytelyst/dashboard-components package: Shared React components - ErrorPage, NotFoundPage, LoadingSpinner, LoadingSkeleton, EmptyState, PageHeader - Theme-aware with CSS custom properties A/B Testing Framework (Complete): - Admin UI at /ops/ab-testing with experiments list, variant performance, AI suggestions - Sidebar navigation with Beaker icon - 40 tests passing in ab-testing module All 909 platform-service tests pass.
13 lines
393 B
TypeScript
13 lines
393 B
TypeScript
/**
|
|
* @bytelyst/dashboard-components
|
|
*
|
|
* Shared React components for ByteLyst dashboards
|
|
*/
|
|
|
|
export { ErrorPage } from './ErrorPage.js';
|
|
export { NotFoundPage } from './NotFoundPage.js';
|
|
export { LoadingSpinner } from './LoadingSpinner.js';
|
|
export { LoadingSkeleton } from './LoadingSkeleton.js';
|
|
export { EmptyState } from './EmptyState.js';
|
|
export { PageHeader } from './PageHeader.js';
|