This commit is contained in:
2026-05-02 21:32:43 +02:00
parent 97f481e22f
commit 235735f8c9
6 changed files with 27 additions and 26 deletions

14
sigpro-ui_IIFE.js Normal file
View File

@@ -0,0 +1,14 @@
import * as All from './sigpro-ui.js';
export const Components = { ...All };
if (typeof window !== 'undefined') {
Object.entries({ ...Components}).forEach(([name, value]) => {
Object.defineProperty(window, name, {
value,
writable: false,
configurable: true,
enumerable: true
});
});
}