Increase exports
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 9s

This commit is contained in:
2026-04-29 22:54:00 +02:00
parent f28594348e
commit f98cb19ee1
6 changed files with 16 additions and 7 deletions

5
dist/sigpro.esm.js vendored
View File

@@ -514,7 +514,7 @@ var mount = (comp, target) => {
return inst;
};
if (typeof window !== "undefined") {
Object.assign(window, { $, $$, watch, h, when, each, router, mount, batch });
Object.assign(window, { $, $$, watch, h, when, each, router, mount, batch, onUnmount, isArr, isFunc, isObj });
"a abbr article aside audio b blockquote br button canvas caption cite code col colgroup datalist dd del details dfn dialog div dl dt em embed fieldset figcaption figure footer form h1 h2 h3 h4 h5 h6 header hr i iframe img input ins kbd label legend li main mark meter nav object ol optgroup option output p picture pre progress section select slot small source span strong sub summary sup svg table tbody td template textarea tfoot th thead time tr u ul video".split(" ").forEach((tag) => {
window[tag] = (props, children) => h(tag, props, children);
});
@@ -525,6 +525,9 @@ export {
router,
onUnmount,
mount,
isObj,
isFunc,
isArr,
h,
each,
batch,

File diff suppressed because one or more lines are too long

5
dist/sigpro.js vendored
View File

@@ -45,6 +45,9 @@
router: () => router,
onUnmount: () => onUnmount,
mount: () => mount,
isObj: () => isObj,
isFunc: () => isFunc,
isArr: () => isArr,
h: () => h,
each: () => each,
batch: () => batch,
@@ -568,7 +571,7 @@
return inst;
};
if (typeof window !== "undefined") {
Object.assign(window, { $, $$, watch, h, when, each, router, mount, batch });
Object.assign(window, { $, $$, watch, h, when, each, router, mount, batch, onUnmount, isArr, isFunc, isObj });
"a abbr article aside audio b blockquote br button canvas caption cite code col colgroup datalist dd del details dfn dialog div dl dt em embed fieldset figcaption figure footer form h1 h2 h3 h4 h5 h6 header hr i iframe img input ins kbd label legend li main mark meter nav object ol optgroup option output p picture pre progress section select slot small source span strong sub summary sup svg table tbody td template textarea tfoot th thead time tr u ul video".split(" ").forEach((tag) => {
window[tag] = (props, children) => h(tag, props, children);
});

2
dist/sigpro.min.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -45,6 +45,9 @@
router: () => router,
onUnmount: () => onUnmount,
mount: () => mount,
isObj: () => isObj,
isFunc: () => isFunc,
isArr: () => isArr,
h: () => h,
each: () => each,
batch: () => batch,
@@ -568,7 +571,7 @@
return inst;
};
if (typeof window !== "undefined") {
Object.assign(window, { $, $$, watch, h, when, each, router, mount, batch });
Object.assign(window, { $, $$, watch, h, when, each, router, mount, batch, onUnmount, isArr, isFunc, isObj });
"a abbr article aside audio b blockquote br button canvas caption cite code col colgroup datalist dd del details dfn dialog div dl dt em embed fieldset figcaption figure footer form h1 h2 h3 h4 h5 h6 header hr i iframe img input ins kbd label legend li main mark meter nav object ol optgroup option output p picture pre progress section select slot small source span strong sub summary sup svg table tbody td template textarea tfoot th thead time tr u ul video".split(" ").forEach((tag) => {
window[tag] = (props, children) => h(tag, props, children);
});

View File

@@ -508,10 +508,10 @@ const mount = (comp, target) => {
}
if (typeof window !== "undefined") {
Object.assign(window, { $, $$, watch, h, when, each, router, mount, batch })
Object.assign(window, { $, $$, watch, h, when, each, router, mount, batch, onUnmount, isArr, isFunc, isObj })
"a abbr article aside audio b blockquote br button canvas caption cite code col colgroup datalist dd del details dfn dialog div dl dt em embed fieldset figcaption figure footer form h1 h2 h3 h4 h5 h6 header hr i iframe img input ins kbd label legend li main mark meter nav object ol optgroup option output p picture pre progress section select slot small source span strong sub summary sup svg table tbody td template textarea tfoot th thead time tr u ul video"
.split(" ")
.forEach(tag => { window[tag] = (props, children) => h(tag, props, children) })
}
export { $, $$, watch, batch, h, mount, when, each, router, onUnmount }
export { $, $$, watch, batch, h, mount, when, each, router, onUnmount, isArr, isFunc, isObj }