Update TS
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 3s

This commit is contained in:
2026-04-29 23:23:08 +02:00
parent d2bf6aabfc
commit 7d2ad67513
17 changed files with 1126 additions and 1162 deletions

View File

@@ -1,20 +1,10 @@
import * as All from './sigpro-ui.js';
import * as Editor from './sigpro-editor.js';
import { Locale, tt } from './sigpro-locale.js';
import { hide, get } from './sigpro-helpers.js';
export const Components = {
...All,
...Editor,
};
export const Utils = {
Locale, tt, hide, get
};
export const Components = { ...All };
if (typeof window !== 'undefined') {
Object.entries({ ...Components, ...Utils }).forEach(([name, value]) => {
Object.entries({ ...Components}).forEach(([name, value]) => {
Object.defineProperty(window, name, {
value,
writable: false,