14 lines
322 B
JavaScript
14 lines
322 B
JavaScript
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
|
|
});
|
|
});
|
|
} |