prepare to use sigproui

This commit is contained in:
2026-03-18 23:36:01 +01:00
parent e555dc5734
commit d24bad018e
6 changed files with 46 additions and 143 deletions

View File

@@ -8,7 +8,11 @@ export * from './sigpro.js';
import sigproRouter from './sigpro-router-plugin.js';
export { sigproRouter };
// 3. Default export for the global namespace (optional)
// Combines core logic and the router plugin into a single object
// 3. Re-export UI components
// Users can import components like: import { Button, Input, Card } from 'sigpro';
export * from './UI/index.js';
// 4. Default export for the global namespace (optional)
// Combines core logic, router plugin, and UI components into a single object
import * as sigpro from './sigpro.js';
export default { ...sigpro, sigproRouter };