/** * SigproUI - Entry Point */ import * as Components from './src/components/index.js'; import * as Icons from './src/core/icons.js'; import * as Utils from './src/core/utils.js'; import { tt } from './src/core/i18n.js'; export * from './src/components/index.js'; export * from './src/core/icons.js'; export * from './src/core/utils.js'; export { tt }; const SigproUI = { ...Components, Icons, Utils, tt, install: (target = (typeof window !== 'undefined' ? window : {})) => { // Inyectar componentes uno a uno (Button, Input, etc.) Object.entries(Components).forEach(([name, component]) => { target[name] = component; }); // Inyectar utilidades core target.Icons = Icons; target.Utils = Utils; target.tt = tt; console.log("🌟 SigproUI"); } }; export default SigproUI;