diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..cae4f4c
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,26 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_style = tab
+trim_trailing_whitespace = true
+max_line_length = 120
+
+[*.json]
+max_line_length = unset
+
+[*.yml]
+indent_style = space
+indent_size = 2
+
+[*.md]
+trim_trailing_whitespace = false
+
+[LICENSE]
+max_line_length = unset
+
+[dist/**]
+indent_style = unset
+max_line_length = unset
+trim_trailing_whitespace = unset
diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
new file mode 100644
index 0000000..11e01b9
--- /dev/null
+++ b/.github/workflows/pr.yml
@@ -0,0 +1,23 @@
+# https://nektosact.com/usage/index.html
+# https://github.com/reviewdog/action-eclint
+name: On PR
+on:
+ workflow_dispatch:
+ pull_request:
+ branches: [main]
+
+jobs:
+ pr:
+ name: Validates formatting and linting
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
+ - uses: reviewdog/action-eclint@d51e853275e707b64c0526881ada324f454c1110 # v1.7.1
+ with:
+ reporter: github-pr-check
+ eclint_flags: '--fix'
+ - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
+ with:
+ node-version: 20.16
+ - run: npm ci
+ - run: bs/lint.sh
diff --git a/README.md b/README.md
index e3bda25..d0e3051 100644
--- a/README.md
+++ b/README.md
@@ -1,52 +1,61 @@
-**WIP** (the experimentation phase) | [source code on GitHub](https://github.com/jaandrle/deka-dom-el) | [*mirrored* on Gitea](https://gitea.jaandrle.cz/jaandrle/deka-dom-el)
+**WIP** (the experimentation phase)
+| [source code on GitHub](https://github.com/jaandrle/deka-dom-el)
+| [*mirrored* on Gitea](https://gitea.jaandrle.cz/jaandrle/deka-dom-el)
***Vanilla for flavouring — a full-fledged feast for large projects***
*…use simple DOM API by default and library tools and logic when you need them*
-```js
+```javascript
document.body.append(
- el("h1", "Hello World 👋"),
- el("p", "See some syntax examples here:"),
- el("ul").append(
- el("li").append(
- el("a", { textContent: "Link to the library repo", title: "Deka DOM El — GitHub", href: "https://github.com/jaandrle/deka-dom-el" })
- ),
- el("li").append(
- "Use extended Vanilla JavaScript DOM/IDL API: ",
- el("span", { textContent: "» this is a span with class=cN and data-a=A, data-b=B «", className: "cN", dataset: { a: "A", b: "B" } })
- ),
- el("li").append(
- el(component, { textContent: "A component", className: "example" }, on("change", console.log))
- )
- )
-
+ el(HelloWorldComponent)
);
-function component({ textContent, className }){
- const value= S("onchange");
-
+function HelloWorldComponent(){
+ const clicks= S(0);
+ const emoji= S("🚀");
+ const isSelected= el=> (el.selected= el.value===emoji());
+
return el().append(
- el("p", { textContent, className }),
- el("p", { className: [ className, "second-line" ] }).append(
- "…with reactivity: ", el("em", { style: { fontWeight: "bold" }, ariaset: { live: "polite" }, textContent: value }),
+ el("p", {
+ textContent: S(() => `Hello World ${emoji().repeat(clicks())}`),
+ className: "example",
+ ariaLive: "polite", //OR ariaset: { live: "polite" },
+ dataset: { example: "Example" }, //OR dataExample: "Example",
+ }),
+ el("button",
+ { textContent: "Fire", type: "button" },
+ on("click", ()=> clicks(clicks() + 1)),
+ on("keyup", ()=> clicks(clicks() - 2)),
),
- el("input", { type: "text", value: value() }, on("change", event=> value(event.target.value)))
+ el("select", {
+ onchange: event=> emoji(event.target.value),
+ }).append(
+ el(OptionComponent, "🎉", isSelected),
+ el(OptionComponent, "🚀", isSelected),
+ )
);
}
+function OptionComponent({ textContent }){
+ return el("option", { value: textContent, textContent })
+}
```
# Deka DOM Elements
-Creating reactive elements, components and Web components using [IDL](https://developer.mozilla.org/en-US/docs/Glossary/IDL)/JavaScript DOM API and [**signals/observables**](#signals).
+Creating reactive elements, components and Web components using [IDL](https://developer.mozilla.org/en-US/docs/
+Glossary/IDL)/JavaScript DOM API and [**signals/observables**](#signals).
## Inspiration and suggested alternatives
-- my previous library (mostly used internaly): [jaandrle/dollar_dom_component: Functional DOM components without JSX and virtual DOM.](https://github.com/jaandrle/dollar_dom_component)
-- [vanjs-org/van: 🍦 VanJS: World's smallest reactive UI framework. Incredibly Powerful, Insanely Small - Everyone can build a useful UI app in an hour.](https://github.com/vanjs-org/van)
+- my previous library (mostly used internaly): [jaandrle/dollar_dom_component: Functional DOM components without
+JSX and virtual DOM.](https://github.com/jaandrle/dollar_dom_component)
+- [vanjs-org/van: 🍦 VanJS: World's smallest reactive UI framework. Incredibly Powerful, Insanely Small -
+Everyone can build a useful UI app in an hour.](https://github.com/vanjs-org/van)
- [hyperhype/hyperscript: Create HyperText with JavaScript.](https://github.com/hyperhype/hyperscript)
-- [adamhaile/S: S.js - Simple, Clean, Fast Reactive Programming in Javascript](https://github.com/adamhaile/S) ([adamhaile/surplus: High performance JSX web views for S.js applications](https://github.com/adamhaile/surplus))
+- [adamhaile/S: S.js - Simple, Clean, Fast Reactive Programming in Javascript](https://github.com/adamhaile/S)
+([adamhaile/surplus: High performance JSX web views for S.js applications](https://github.com/adamhaile/surplus))
- [potch/signals: a small reactive signals library](https://github.com/potch/signals)
## Why an another one?
-This library falls somewhere between van/hyperscript and [solid-js](https://github.com/solidjs/solid) in terms of size, complexity,
-and usability.
+This library falls somewhere between van/hyperscript and [solid-js](https://github.com/solidjs/solid) in terms of size,
+complexity, and usability.
Another goal is to proceed in the best spirit of functional programming. This involves starting with
pure JavaScript (DOM API) and gradually adding auxiliary functions, ranging from “minor” improvements
@@ -74,7 +83,10 @@ To balance these requirements, numerous compromises have been made. To summarize
- [dist/](dist/) (`https://cdn.jsdelivr.net/gh/jaandrle/deka-dom-el/dist/`…)
## Signals
-- [Signals — whats going on behind the scenes | by Ryan Hoffnan | ITNEXT](https://itnext.io/signals-whats-going-on-behind-the-scenes-ec858589ea63)
-- [The Evolution of Signals in JavaScript - DEV Community](https://dev.to/this-is-learning/the-evolution-of-signals-in-javascript-8ob)
-- there is also [tc39/proposal-signals: A proposal to add signals to JavaScript.](https://github.com/tc39/proposal-signals)
+- [Signals — whats going on behind the scenes | by Ryan Hoffnan | ITNEXT](https://itnext.io/
+signals-whats-going-on-behind-the-scenes-ec858589ea63)
+- [The Evolution of Signals in JavaScript - DEV Community](https://dev.to/this-is-learning/the-evolution-of-signals-in-
+javascript-8ob)
+- there is also [tc39/proposal-signals: A proposal to add signals to JavaScript.](https://github.com/tc39/proposal-
+signals)
- [Observer pattern - Wikipedia](https://en.wikipedia.org/wiki/Observer_pattern)
diff --git a/bs/README.md b/bs/README.md
index 117df92..33ac7c4 100644
--- a/bs/README.md
+++ b/bs/README.md
@@ -1 +1,16 @@
-[jaandrle/bs: The simplest possible build system using executables](https://github.com/jaandrle/bs/)
+## bs: Build system based on executables
+This project uses [jaandrle/bs: The simplest possible build system using executable/bash scripts](
+https://github.com/jaandrle/bs).
+
+#### bs/build.js [--minify|--help]
+Generates alternative versions of the project (other than native ESM code).
+Also generates typescript definitions.
+
+#### bs/docs.js
+Generates documentation, from `docs/`. Uses “SSR” technique, using deka-dom-el itself.
+
+#### bs/lint.sh
+Lints size of the project, jshint. See configs:
+
+- `package.json`: key `size-limit`
+- `package.json`: key `jshintConfig`
diff --git a/bs/build.js b/bs/build.js
index 5b63582..332b7ba 100755
--- a/bs/build.js
+++ b/bs/build.js
@@ -34,7 +34,7 @@ $.api("", true)
const file_dts_out= filesOut(file_dts);
echoVariant(file_dts_out);
s.echo(bundleDTS(file_dts)).to(file_dts_out);
-
+
await toDDE(out, file_root);
}
$.exit(0);
@@ -43,10 +43,13 @@ $.api("", true)
const name= "dde";
const out= filesOut(file_root+".js", name);
echoVariant(`${out} (${file} → globalThis.${name})`)
-
+
let content= s.cat(file).toString().split(/export ?{/);
content.splice(1, 0, `\nglobalThis.${name}= {`);
- content[2]= content[2].replace(/,(?!\n)/g, ",\n").replace(/(? {",
diff --git a/bs/docs.js b/bs/docs.js
index 852210a..27b2822 100755
--- a/bs/docs.js
+++ b/bs/docs.js
@@ -1,5 +1,5 @@
#!/usr/bin/env -S npx nodejsscript
-/* jshint esversion: 11,-W097, -W040, module: true, node: true, expr: true, undef: true *//* global echo, $, pipe, s, fetch, cyclicLoop */
+/* jshint esversion: 11,-W097, -W040, module: true, node: true, expr: true, undef: true *//* global echo, $, pipe, s, fetch, cyclicLoop */// editorconfig-checker-disable-line
echo("Building static documentation files…");
echo("Preparing…");
import { path_target, pages as pages_registered, styles, dispatchEvent, t } from "../docs/ssr.js";
diff --git a/bs/docs/jsdom.js b/bs/docs/jsdom.js
index bad3f28..dfdaf23 100644
--- a/bs/docs/jsdom.js
+++ b/bs/docs/jsdom.js
@@ -10,7 +10,7 @@ export function createHTMl(html, options= {}){
if(dom) cleanHTML();
// set a default url if we don't get one - otherwise things explode when we copy localstorage keys
if (!('url' in options)) { Object.assign(options, { url: 'http://localhost:3000' }) }
-
+
dom= new JSDOM(html, options);
const window= dom.window;
return {
diff --git a/bs/lint.sh b/bs/lint.sh
index 61ce1d1..91af7ce 100755
--- a/bs/lint.sh
+++ b/bs/lint.sh
@@ -1,3 +1,5 @@
#!/usr/bin/env bash
+set -eou pipefail
+npx editorconfig-checker -format gcc
npx size-limit
npx jshint index.js src
diff --git a/dist/dde-with-signals.js b/dist/dde-with-signals.js
index 798dde3..039fcf8 100644
--- a/dist/dde-with-signals.js
+++ b/dist/dde-with-signals.js
@@ -1,7 +1,7 @@
//deka-dom-el library is available via global namespace `dde`
(()=> {
// src/signals-common.js
-var k = {
+var N = {
isSignal(t) {
return !1;
},
@@ -9,23 +9,23 @@ var k = {
return n;
}
};
-function B(t, e = !0) {
- return e ? Object.assign(k, t) : (Object.setPrototypeOf(t, k), t);
+function H(t, e = !0) {
+ return e ? Object.assign(N, t) : (Object.setPrototypeOf(t, N), t);
}
-function W(t) {
- return k.isPrototypeOf(t) && t !== k ? t : k;
+function j(t) {
+ return N.isPrototypeOf(t) && t !== N ? t : N;
}
// src/helpers.js
-var T = (...t) => Object.prototype.hasOwnProperty.call(...t);
-function S(t) {
+var I = (...t) => Object.prototype.hasOwnProperty.call(...t);
+function A(t) {
return typeof t > "u";
}
function X(t) {
let e = typeof t;
return e !== "object" ? e : t === null ? "null" : Object.prototype.toString.call(t);
}
-function q(t, e) {
+function P(t, e) {
if (!t || !(t instanceof AbortSignal))
return !0;
if (!t.aborted)
@@ -33,46 +33,51 @@ function q(t, e) {
t.removeEventListener("abort", e);
};
}
-function F(t, e) {
+function W(t, e) {
let { observedAttributes: n = [] } = t.constructor;
return n.reduce(function(r, o) {
- return r[pt(o)] = e(t, o), r;
+ return r[dt(o)] = e(t, o), r;
}, {});
}
-function pt(t) {
+function dt(t) {
return t.replace(/-./g, (e) => e[1].toUpperCase());
}
// src/dom-common.js
var d = {
- setDeleteAttr: lt,
+ setDeleteAttr: pt,
ssr: "",
D: globalThis.document,
F: globalThis.DocumentFragment,
H: globalThis.HTMLElement,
S: globalThis.SVGElement,
- M: globalThis.MutationObserver
+ M: globalThis.MutationObserver,
+ qa: (t) => t,
+ qw: () => Promise.resolve()
};
-function lt(t, e, n) {
- if (Reflect.set(t, e, n), !!S(n)) {
+function pt(t, e, n) {
+ if (Reflect.set(t, e, n), !!A(n)) {
if (Reflect.deleteProperty(t, e), t instanceof d.H && t.getAttribute(e) === "undefined")
return t.removeAttribute(e);
if (Reflect.get(t, e) === "undefined")
return Reflect.set(t, e, "");
}
}
-var O = "__dde_lifecyclesToEvents", _ = "dde:connected", C = "dde:disconnected", M = "dde:attributeChanged";
+var O = "__dde_lifecyclesToEvents", _ = "dde:connected", S = "dde:disconnected", T = "dde:attributeChanged";
// src/dom.js
-var A = [{
+function Mt(t) {
+ return d.qa(t);
+}
+var y = [{
get scope() {
return d.D.body;
},
host: (t) => t ? t(d.D.body) : d.D.body,
prevent: !0
-}], m = {
+}], x = {
get current() {
- return A[A.length - 1];
+ return y[y.length - 1];
},
get host() {
return this.current.host;
@@ -82,107 +87,102 @@ var A = [{
return t.prevent = !0, t;
},
get state() {
- return [...A];
+ return [...y];
},
push(t = {}) {
- return A.push(Object.assign({}, this.current, { prevent: !1 }, t));
+ return y.push(Object.assign({}, this.current, { prevent: !1 }, t));
},
pushRoot() {
- return A.push(A[0]);
+ return y.push(y[0]);
},
pop() {
- if (A.length !== 1)
- return A.pop();
+ if (y.length !== 1)
+ return y.pop();
}
};
function Y(...t) {
return this.appendOriginal(...t), this;
}
-function ht(t) {
+function lt(t) {
return t.append === Y || (t.appendOriginal = t.append, t.append = Y), t;
}
var $;
-function P(t, e, ...n) {
- let r = W(this), o = 0, c, i;
+function M(t, e, ...n) {
+ let r = j(this), o = 0, c, u;
switch ((Object(e) !== e || r.isSignal(e)) && (e = { textContent: e }), !0) {
case typeof t == "function": {
- o = 1, m.push({ scope: t, host: (...v) => v.length ? (o === 1 ? n.unshift(...v) : v.forEach((h) => h(i)), void 0) : i }), c = t(e || void 0);
- let a = c instanceof d.F;
+ o = 1;
+ let a = (...l) => l.length ? (o === 1 ? n.unshift(...l) : l.forEach((m) => m(u)), void 0) : u;
+ x.push({ scope: t, host: a }), c = t(e || void 0);
+ let h = c instanceof d.F;
if (c.nodeName === "#comment") break;
- let l = P.mark({
+ let v = M.mark({
type: "component",
name: t.name,
- host: a ? "this" : "parentElement"
+ host: h ? "this" : "parentElement"
});
- c.prepend(l), a && (i = l);
+ c.prepend(v), h && (u = v);
break;
}
case t === "#text":
- c = j.call(this, d.D.createTextNode(""), e);
+ c = q.call(this, d.D.createTextNode(""), e);
break;
case (t === "<>" || !t):
- c = j.call(this, d.D.createDocumentFragment(), e);
+ c = q.call(this, d.D.createDocumentFragment(), e);
break;
case !!$:
- c = j.call(this, d.D.createElementNS($, t), e);
+ c = q.call(this, d.D.createElementNS($, t), e);
break;
case !c:
- c = j.call(this, d.D.createElement(t), e);
+ c = q.call(this, d.D.createElement(t), e);
}
- return ht(c), i || (i = c), n.forEach((a) => a(i)), o && m.pop(), o = 2, c;
+ return lt(c), u || (u = c), n.forEach((a) => a(u)), o && x.pop(), o = 2, c;
}
-function Wt(t, e, n) {
- typeof e != "object" && (n = e, e = t);
- let r = Symbol.for("default"), o = Array.from(e.querySelectorAll("slot")).reduce((i, a) => Reflect.set(i, a.name || r, a) && i, {}), c = T(o, r);
- if (t.append = new Proxy(t.append, {
- apply(i, a, l) {
- if (l[0] === e) return i.apply(t, l);
- if (!l.length) return t;
- let v = d.D.createDocumentFragment();
- for (let h of l) {
- if (!h || !h.slot) {
- c && v.append(h);
- continue;
- }
- let x = h.slot, w = o[x];
- vt(h, "remove", "slot"), w && (bt(w, h, n), Reflect.deleteProperty(o, x));
- }
- return c && (o[r].replaceWith(v), Reflect.deleteProperty(o, r)), t.append = i, t;
- }
- }), t !== e) {
- let i = Array.from(t.childNodes);
- i.forEach((a) => a.remove()), t.append(...i);
- }
- return e;
-}
-function bt(t, e, n) {
- n && n(t, e);
- try {
- t.replaceWith(j(e, { className: [e.className, t.className], dataset: { ...t.dataset } }));
- } catch {
- t.replaceWith(e);
- }
-}
-P.mark = function(t, e = !1) {
+M.mark = function(t, e = !1) {
t = Object.entries(t).map(([o, c]) => o + `="${c}"`).join(" ");
let n = e ? "" : "/", r = d.D.createComment(``);
return e && (r.end = d.D.createComment("")), r;
};
-function qt(t) {
+function jt(t) {
let e = this;
return function(...r) {
$ = t;
- let o = P.call(e, ...r);
+ let o = M.call(e, ...r);
return $ = void 0, o;
};
}
-var U = /* @__PURE__ */ new WeakMap(), { setDeleteAttr: tt } = d;
-function j(t, ...e) {
+function Pt(t, e = t) {
+ let n = "\xB9\u2070", r = "\u2713", o = Object.fromEntries(
+ Array.from(e.querySelectorAll("slot")).filter((c) => !c.name.endsWith(n)).map((c) => [c.name += n, c])
+ );
+ if (t.append = new Proxy(t.append, {
+ apply(c, u, a) {
+ if (a[0] === e) return c.apply(t, a);
+ for (let h of a) {
+ let v = (h.slot || "") + n;
+ try {
+ bt(h, "remove", "slot");
+ } catch {
+ }
+ let l = o[v];
+ if (!l) return;
+ l.name.startsWith(r) || (l.childNodes.forEach((m) => m.remove()), l.name = r + v), l.append(h);
+ }
+ return t.append = c, t;
+ }
+ }), t !== e) {
+ let c = Array.from(t.childNodes);
+ t.append(...c);
+ }
+ return e;
+}
+var F = /* @__PURE__ */ new WeakMap(), { setDeleteAttr: tt } = d;
+function q(t, ...e) {
if (!e.length) return t;
- U.set(t, rt(t, this));
+ F.set(t, rt(t, this));
for (let [n, r] of Object.entries(Object.assign({}, ...e)))
nt.call(this, t, n, r);
- return U.delete(t), t;
+ return F.delete(t), t;
}
function nt(t, e, n) {
let { setRemoveAttr: r, s: o } = rt(t, this), c = this;
@@ -190,11 +190,11 @@ function nt(t, e, n) {
t,
e,
n,
- (a, l) => nt.call(c, t, a, l)
+ (a, h) => nt.call(c, t, a, h)
);
- let [i] = e;
- if (i === "=") return r(e.slice(1), n);
- if (i === ".") return et(t, e.slice(1), n);
+ let [u] = e;
+ if (u === "=") return r(e.slice(1), n);
+ if (u === ".") return et(t, e.slice(1), n);
if (/(aria|data)([A-Z])/.test(e))
return e = e.replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase(), r(e, n);
switch (e === "className" && (e = "class"), e) {
@@ -206,183 +206,177 @@ function nt(t, e, n) {
if (typeof n != "object") break;
/* falls through */
case "dataset":
- return I(o, n, et.bind(null, t[e]));
+ return B(o, n, et.bind(null, t[e]));
case "ariaset":
- return I(o, n, (a, l) => r("aria-" + a, l));
+ return B(o, n, (a, h) => r("aria-" + a, h));
case "classList":
- return gt.call(c, t, n);
+ return ht.call(c, t, n);
}
- return Et(t, e) ? tt(t, e, n) : r(e, n);
+ return gt(t, e) ? tt(t, e, n) : r(e, n);
}
function rt(t, e) {
- if (U.has(t)) return U.get(t);
- let r = (t instanceof d.S ? xt : mt).bind(null, t, "Attribute"), o = W(e);
+ if (F.has(t)) return F.get(t);
+ let r = (t instanceof d.S ? Et : vt).bind(null, t, "Attribute"), o = j(e);
return { setRemoveAttr: r, s: o };
}
-function gt(t, e) {
- let n = W(this);
- return I(
+function ht(t, e) {
+ let n = j(this);
+ return B(
n,
e,
(r, o) => t.classList.toggle(r, o === -1 ? void 0 : !!o)
), t;
}
-function Ft(t) {
- return Array.from(t.children).forEach((e) => e.remove()), t;
-}
-function vt(t, e, n, r) {
+function bt(t, e, n, r) {
return t instanceof d.H ? t[e + "Attribute"](n, r) : t[e + "AttributeNS"](null, n, r);
}
-function Et(t, e) {
+function gt(t, e) {
if (!(e in t)) return !1;
let n = ot(t, e);
- return !S(n.set);
+ return !A(n.set);
}
function ot(t, e) {
if (t = Object.getPrototypeOf(t), !t) return {};
let n = Object.getOwnPropertyDescriptor(t, e);
return n || ot(t, e);
}
-function I(t, e, n) {
+function B(t, e, n) {
if (!(typeof e != "object" || e === null))
return Object.entries(e).forEach(function([o, c]) {
o && (c = t.processReactiveAttribute(e, o, c, n), n(o, c));
});
}
-function ct(t) {
- return Array.isArray(t) ? t.filter(Boolean).join(" ") : t;
+function vt(t, e, n, r) {
+ return t[(A(r) ? "remove" : "set") + e](n, r);
}
-function mt(t, e, n, r) {
- return t[(S(r) ? "remove" : "set") + e](n, ct(r));
-}
-function xt(t, e, n, r, o = null) {
- return t[(S(r) ? "remove" : "set") + e + "NS"](o, n, ct(r));
+function Et(t, e, n, r, o = null) {
+ return t[(A(r) ? "remove" : "set") + e + "NS"](o, n, r);
}
function et(t, e, n) {
- if (Reflect.set(t, e, n), !!S(n))
+ if (Reflect.set(t, e, n), !!A(n))
return Reflect.deleteProperty(t, e);
}
// src/events-observer.js
-var D = d.M ? yt() : new Proxy({}, {
+var C = d.M ? mt() : new Proxy({}, {
get() {
return () => {
};
}
});
-function yt() {
- let t = /* @__PURE__ */ new Map(), e = !1, n = (s) => function(u) {
- for (let f of u)
+function mt() {
+ let t = /* @__PURE__ */ new Map(), e = !1, n = (i) => function(s) {
+ for (let f of s)
if (f.type === "childList") {
- if (h(f.addedNodes, !0)) {
- s();
+ if (l(f.addedNodes, !0)) {
+ i();
continue;
}
- x(f.removedNodes, !0) && s();
+ m(f.removedNodes, !0) && i();
}
}, r = new d.M(n(a));
return {
- observe(s) {
- let u = new d.M(n(() => {
+ observe(i) {
+ let s = new d.M(n(() => {
}));
- return u.observe(s, { childList: !0, subtree: !0 }), () => u.disconnect();
+ return s.observe(i, { childList: !0, subtree: !0 }), () => s.disconnect();
},
- onConnected(s, u) {
- i();
- let f = c(s);
- f.connected.has(u) || (f.connected.add(u), f.length_c += 1);
+ onConnected(i, s) {
+ u();
+ let f = c(i);
+ f.connected.has(s) || (f.connected.add(s), f.length_c += 1);
},
- offConnected(s, u) {
- if (!t.has(s)) return;
- let f = t.get(s);
- f.connected.has(u) && (f.connected.delete(u), f.length_c -= 1, o(s, f));
+ offConnected(i, s) {
+ if (!t.has(i)) return;
+ let f = t.get(i);
+ f.connected.has(s) && (f.connected.delete(s), f.length_c -= 1, o(i, f));
},
- onDisconnected(s, u) {
- i();
- let f = c(s);
- f.disconnected.has(u) || (f.disconnected.add(u), f.length_d += 1);
+ onDisconnected(i, s) {
+ u();
+ let f = c(i);
+ f.disconnected.has(s) || (f.disconnected.add(s), f.length_d += 1);
},
- offDisconnected(s, u) {
- if (!t.has(s)) return;
- let f = t.get(s);
- f.disconnected.has(u) && (f.disconnected.delete(u), f.length_d -= 1, o(s, f));
+ offDisconnected(i, s) {
+ if (!t.has(i)) return;
+ let f = t.get(i);
+ f.disconnected.has(s) && (f.disconnected.delete(s), f.length_d -= 1, o(i, f));
}
};
- function o(s, u) {
- u.length_c || u.length_d || (t.delete(s), a());
+ function o(i, s) {
+ s.length_c || s.length_d || (t.delete(i), a());
}
- function c(s) {
- if (t.has(s)) return t.get(s);
- let u = {
+ function c(i) {
+ if (t.has(i)) return t.get(i);
+ let s = {
connected: /* @__PURE__ */ new WeakSet(),
length_c: 0,
disconnected: /* @__PURE__ */ new WeakSet(),
length_d: 0
};
- return t.set(s, u), u;
+ return t.set(i, s), s;
}
- function i() {
+ function u() {
e || (e = !0, r.observe(d.D.body, { childList: !0, subtree: !0 }));
}
function a() {
!e || t.size || (e = !1, r.disconnect());
}
- function l() {
- return new Promise(function(s) {
- (requestIdleCallback || requestAnimationFrame)(s);
+ function h() {
+ return new Promise(function(i) {
+ (requestIdleCallback || requestAnimationFrame)(i);
});
}
- async function v(s) {
- t.size > 30 && await l();
- let u = [];
- if (!(s instanceof Node)) return u;
+ async function v(i) {
+ t.size > 30 && await h();
+ let s = [];
+ if (!(i instanceof Node)) return s;
for (let f of t.keys())
- f === s || !(f instanceof Node) || s.contains(f) && u.push(f);
- return u;
+ f === i || !(f instanceof Node) || i.contains(f) && s.push(f);
+ return s;
}
- function h(s, u) {
+ function l(i, s) {
let f = !1;
- for (let b of s) {
- if (u && v(b).then(h), !t.has(b)) continue;
- let N = t.get(b);
- N.length_c && (b.dispatchEvent(new Event(_)), N.connected = /* @__PURE__ */ new WeakSet(), N.length_c = 0, N.length_d || t.delete(b), f = !0);
+ for (let b of i) {
+ if (s && v(b).then(l), !t.has(b)) continue;
+ let L = t.get(b);
+ L.length_c && (b.dispatchEvent(new Event(_)), L.connected = /* @__PURE__ */ new WeakSet(), L.length_c = 0, L.length_d || t.delete(b), f = !0);
}
return f;
}
- function x(s, u) {
+ function m(i, s) {
let f = !1;
- for (let b of s)
- u && v(b).then(x), !(!t.has(b) || !t.get(b).length_d) && ((globalThis.queueMicrotask || setTimeout)(w(b)), f = !0);
+ for (let b of i)
+ s && v(b).then(m), !(!t.has(b) || !t.get(b).length_d) && ((globalThis.queueMicrotask || setTimeout)(k(b)), f = !0);
return f;
}
- function w(s) {
+ function k(i) {
return () => {
- s.isConnected || (s.dispatchEvent(new Event(C)), t.delete(s));
+ i.isConnected || (i.dispatchEvent(new Event(S)), t.delete(i));
};
}
}
// src/customElement.js
-function Zt(t, e, n, r = _t) {
- m.push({
+function It(t, e, n, r = wt) {
+ x.push({
scope: t,
- host: (...i) => i.length ? i.forEach((a) => a(t)) : t
+ host: (...u) => u.length ? u.forEach((a) => a(t)) : t
}), typeof r == "function" && (r = r.call(t, t));
let o = t[O];
- o || wt(t);
+ o || xt(t);
let c = n.call(t, r);
- return o || t.dispatchEvent(new Event(_)), e.nodeType === 11 && typeof e.mode == "string" && t.addEventListener(C, D.observe(e), { once: !0 }), m.pop(), e.append(c);
+ return o || t.dispatchEvent(new Event(_)), e.nodeType === 11 && typeof e.mode == "string" && t.addEventListener(S, C.observe(e), { once: !0 }), x.pop(), e.append(c);
}
-function wt(t) {
+function xt(t) {
return J(t.prototype, "connectedCallback", function(e, n, r) {
e.apply(n, r), n.dispatchEvent(new Event(_));
}), J(t.prototype, "disconnectedCallback", function(e, n, r) {
e.apply(n, r), (globalThis.queueMicrotask || setTimeout)(
- () => !n.isConnected && n.dispatchEvent(new Event(C))
+ () => !n.isConnected && n.dispatchEvent(new Event(S))
);
}), J(t.prototype, "attributeChangedCallback", function(e, n, r) {
let [o, , c] = r;
- n.dispatchEvent(new CustomEvent(M, {
+ n.dispatchEvent(new CustomEvent(T, {
detail: [o, c]
})), e.apply(n, r);
}), t.prototype[O] = !0, t;
@@ -391,74 +385,74 @@ function J(t, e, n) {
t[e] = new Proxy(t[e] || (() => {
}), { apply: n });
}
-function _t(t) {
- return F(t, (e, n) => e.getAttribute(n));
+function wt(t) {
+ return W(t, (e, n) => e.getAttribute(n));
}
// src/events.js
-function Qt(t, e, n) {
+function Gt(t, e, n) {
return e || (e = {}), function(o, ...c) {
n && (c.unshift(o), o = typeof n == "function" ? n() : n);
- let i = c.length ? new CustomEvent(t, Object.assign({ detail: c[0] }, e)) : new Event(t, e);
- return o.dispatchEvent(i);
+ let u = c.length ? new CustomEvent(t, Object.assign({ detail: c[0] }, e)) : new Event(t, e);
+ return o.dispatchEvent(u);
};
}
-function y(t, e, n) {
+function w(t, e, n) {
return function(o) {
return o.addEventListener(t, e, n), o;
};
}
-var it = (t) => Object.assign({}, typeof t == "object" ? t : null, { once: !0 });
-y.connected = function(t, e) {
- return e = it(e), function(r) {
- return r.addEventListener(_, t, e), r[O] ? r : r.isConnected ? (r.dispatchEvent(new Event(_)), r) : (q(e.signal, () => D.offConnected(r, t)) && D.onConnected(r, t), r);
+var ct = (t) => Object.assign({}, typeof t == "object" ? t : null, { once: !0 });
+w.connected = function(t, e) {
+ return e = ct(e), function(r) {
+ return r.addEventListener(_, t, e), r[O] ? r : r.isConnected ? (r.dispatchEvent(new Event(_)), r) : (P(e.signal, () => C.offConnected(r, t)) && C.onConnected(r, t), r);
};
};
-y.disconnected = function(t, e) {
- return e = it(e), function(r) {
- return r.addEventListener(C, t, e), r[O] || q(e.signal, () => D.offDisconnected(r, t)) && D.onDisconnected(r, t), r;
+w.disconnected = function(t, e) {
+ return e = ct(e), function(r) {
+ return r.addEventListener(S, t, e), r[O] || P(e.signal, () => C.offDisconnected(r, t)) && C.onDisconnected(r, t), r;
};
};
var Z = /* @__PURE__ */ new WeakMap();
-y.disconnectedAsAbort = function(t) {
+w.disconnectedAsAbort = function(t) {
if (Z.has(t)) return Z.get(t);
let e = new AbortController();
- return Z.set(t, e), t(y.disconnected(() => e.abort())), e;
+ return Z.set(t, e), t(w.disconnected(() => e.abort())), e;
};
-var At = /* @__PURE__ */ new WeakSet();
-y.attributeChanged = function(t, e) {
+var _t = /* @__PURE__ */ new WeakSet();
+w.attributeChanged = function(t, e) {
return typeof e != "object" && (e = {}), function(r) {
- if (r.addEventListener(M, t, e), r[O] || At.has(r) || !d.M) return r;
- let o = new d.M(function(i) {
- for (let { attributeName: a, target: l } of i)
- l.dispatchEvent(
- new CustomEvent(M, { detail: [a, l.getAttribute(a)] })
+ if (r.addEventListener(T, t, e), r[O] || _t.has(r) || !d.M) return r;
+ let o = new d.M(function(u) {
+ for (let { attributeName: a, target: h } of u)
+ h.dispatchEvent(
+ new CustomEvent(T, { detail: [a, h.getAttribute(a)] })
);
});
- return q(e.signal, () => o.disconnect()) && o.observe(r, { attributes: !0 }), r;
+ return P(e.signal, () => o.disconnect()) && o.observe(r, { attributes: !0 }), r;
};
};
// src/signals-lib.js
var p = "__dde_signal";
-function z(t) {
+function U(t) {
try {
- return T(t, p);
+ return I(t, p);
} catch {
return !1;
}
}
-var H = [], g = /* @__PURE__ */ new WeakMap();
+var z = [], g = /* @__PURE__ */ new WeakMap();
function E(t, e) {
if (typeof t != "function")
- return st(!1, t, e);
- if (z(t)) return t;
- let n = st(!0), r = function() {
+ return it(!1, t, e);
+ if (U(t)) return t;
+ let n = it(!0), r = function() {
let [o, ...c] = g.get(r);
- if (g.set(r, /* @__PURE__ */ new Set([o])), H.push(r), dt(n, t()), H.pop(), !c.length) return;
- let i = g.get(r);
+ if (g.set(r, /* @__PURE__ */ new Set([o])), z.push(r), at(n, t()), z.pop(), !c.length) return;
+ let u = g.get(r);
for (let a of c)
- i.has(a) || L(a, r);
+ u.has(a) || R(a, r);
};
return g.set(n[p], r), g.set(r, /* @__PURE__ */ new Set([n])), r(), n;
}
@@ -473,7 +467,7 @@ E.on = function t(e, n, r = {}) {
let { signal: o } = r;
if (!(o && o.aborted)) {
if (Array.isArray(e)) return e.forEach((c) => t(c, n, r));
- Q(e, n), o && o.addEventListener("abort", () => L(e, n));
+ K(e, n), o && o.addEventListener("abort", () => R(e, n));
}
};
E.symbols = {
@@ -493,94 +487,94 @@ E.clear = function(...t) {
});
}
};
-var R = "__dde_reactive";
+var D = "__dde_reactive";
E.el = function(t, e) {
- let n = P.mark({ type: "reactive" }, !0), r = n.end, o = d.D.createDocumentFragment();
+ let n = M.mark({ type: "reactive" }, !0), r = n.end, o = d.D.createDocumentFragment();
o.append(n, r);
- let { current: c } = m, i = {}, a = (l) => {
+ let { current: c } = x, u = {}, a = (h) => {
if (!n.parentNode || !r.parentNode)
- return L(t, a);
- let v = i;
- i = {}, m.push(c);
- let h = e(l, function(u, f) {
+ return R(t, a);
+ let v = u;
+ u = {}, x.push(c);
+ let l = e(h, function(s, f) {
let b;
- return T(v, u) ? (b = v[u], delete v[u]) : b = f(), i[u] = b, b;
+ return I(v, s) ? (b = v[s], delete v[s]) : b = f(), u[s] = b, b;
});
- m.pop(), Array.isArray(h) || (h = [h]);
- let x = document.createComment("");
- h.push(x), n.after(...h);
- let w;
- for (; (w = x.nextSibling) && w !== r; )
- w.remove();
- x.remove(), n.isConnected && St(c.host());
+ x.pop(), Array.isArray(l) || (l = [l]);
+ let m = document.createComment("");
+ l.push(m), n.after(...l);
+ let k;
+ for (; (k = m.nextSibling) && k !== r; )
+ k.remove();
+ m.remove(), n.isConnected && yt(c.host());
};
- return Q(t, a), ft(t, a, n, e), a(t()), o;
+ return K(t, a), ut(t, a, n, e), a(t()), o;
};
-function St(t) {
- !t || !t[R] || (requestIdleCallback || setTimeout)(function() {
- t[R] = t[R].filter(([e, n]) => n.isConnected ? !0 : (L(...e), !1));
+function yt(t) {
+ !t || !t[D] || (requestIdleCallback || setTimeout)(function() {
+ t[D] = t[D].filter(([e, n]) => n.isConnected ? !0 : (R(...e), !1));
});
}
-var Ot = {
+var At = {
_set(t) {
this.value = t;
}
};
-function Ct(t) {
+function Ot(t) {
return function(e, n) {
- let r = (...c) => c.length ? e.setAttribute(n, ...c) : K(r), o = at(r, e.getAttribute(n), Ot);
+ let r = (...c) => c.length ? e.setAttribute(n, ...c) : V(r), o = ft(r, e.getAttribute(n), At);
return t[n] = o, o;
};
}
var G = "__dde_attributes";
E.observedAttributes = function(t) {
- let e = t[G] = {}, n = F(t, Ct(e));
- return y.attributeChanged(function({ detail: o }) {
+ let e = t[G] = {}, n = W(t, Ot(e));
+ return w.attributeChanged(function({ detail: o }) {
/*! This maps attributes to signals (`S.observedAttributes`).
* Investigate `__dde_attributes` key of the element.*/
- let [c, i] = o, a = this[G][c];
- if (a) return E.action(a, "_set", i);
- })(t), y.disconnected(function() {
+ let [c, u] = o, a = this[G][c];
+ if (a) return E.action(a, "_set", u);
+ })(t), w.disconnected(function() {
/*! This removes all signals mapped to attributes (`S.observedAttributes`).
* Investigate `__dde_attributes` key of the element.*/
E.clear(...Object.values(this[G]));
})(t), n;
};
-var ut = {
- isSignal: z,
+var st = {
+ isSignal: U,
processReactiveAttribute(t, e, n, r) {
- if (!z(n)) return n;
+ if (!U(n)) return n;
let o = (c) => {
if (!t.isConnected)
- return L(n, o);
+ return R(n, o);
r(e, c);
};
- return Q(n, o), ft(n, o, t, e), n();
+ return K(n, o), ut(n, o, t, e), n();
}
};
-function ft(t, e, ...n) {
- let { current: r } = m;
+function ut(t, e, ...n) {
+ let { current: r } = x;
r.prevent || r.host(function(o) {
- o[R] || (o[R] = [], y.disconnected(
+ o[D] || (o[D] = [], w.disconnected(
() => (
/*!
* Clears all Signals listeners added in the current scope/host (`S.el`, `assign`, …?).
* You can investigate the `__dde_reactive` key of the element.
* */
- o[R].forEach(([[c, i]]) => L(c, i, c[p] && c[p].host && c[p].host() === o))
+ o[D].forEach(([[c, u]]) => R(c, u, c[p] && c[p].host && c[p].host() === o))
)
- )(o)), o[R].push([[t, e], ...n]);
+ )(o)), o[D].push([[t, e], ...n]);
});
}
-function st(t, e, n) {
- let r = t ? () => K(r) : (...o) => o.length ? dt(r, ...o) : K(r);
- return at(r, e, n, t);
+function it(t, e, n) {
+ let r = t ? () => V(r) : (...o) => o.length ? at(r, ...o) : V(r);
+ return ft(r, e, n, t);
}
-var Dt = Object.assign(/* @__PURE__ */ Object.create(null), {
+var St = Object.assign(/* @__PURE__ */ Object.create(null), {
stopPropagation() {
this.skip = !0;
}
-}), V = class extends Error {
+}), Q = class extends Error {
constructor() {
super();
let [e, ...n] = this.stack.split(`
@@ -588,46 +582,46 @@ var Dt = Object.assign(/* @__PURE__ */ Object.create(null), {
this.stack = n.find((o) => !o.includes(r));
}
};
-function at(t, e, n, r = !1) {
+function ft(t, e, n, r = !1) {
let o = [];
X(n) !== "[object Object]" && (n = {});
let { onclear: c } = E.symbols;
n[c] && (o.push(n[c]), delete n[c]);
- let { host: i } = m;
+ let { host: u } = x;
return Reflect.defineProperty(t, p, {
value: {
value: e,
actions: n,
onclear: o,
- host: i,
+ host: u,
listeners: /* @__PURE__ */ new Set(),
- defined: new V().stack,
+ defined: new Q().stack,
readonly: r
},
enumerable: !1,
writable: !1,
configurable: !0
- }), t.toJSON = () => t(), t.valueOf = () => t[p] && t[p].value, Object.setPrototypeOf(t[p], Dt), t;
+ }), t.toJSON = () => t(), t.valueOf = () => t[p] && t[p].value, Object.setPrototypeOf(t[p], St), t;
}
-function Rt() {
- return H[H.length - 1];
+function Ct() {
+ return z[z.length - 1];
}
-function K(t) {
+function V(t) {
if (!t[p]) return;
- let { value: e, listeners: n } = t[p], r = Rt();
+ let { value: e, listeners: n } = t[p], r = Ct();
return r && n.add(r), g.has(r) && g.get(r).add(t), e;
}
-function dt(t, e, n) {
+function at(t, e, n) {
if (!t[p]) return;
let r = t[p];
if (!(!n && r.value === e))
return r.value = e, r.listeners.forEach((o) => o(e)), e;
}
-function Q(t, e) {
+function K(t, e) {
if (t[p])
return t[p].listeners.add(e);
}
-function L(t, e, n) {
+function R(t, e, n) {
let r = t[p];
if (!r) return;
let o = r.listeners.delete(e);
@@ -635,37 +629,37 @@ function L(t, e, n) {
if (E.clear(t), !g.has(r)) return o;
let c = g.get(r);
if (!g.has(c)) return o;
- g.get(c).forEach((i) => L(i, c, !0));
+ g.get(c).forEach((u) => R(u, c, !0));
}
return o;
}
// signals.js
-B(ut);
+H(st);
globalThis.dde= {
S: E,
- assign: j,
+ assign: q,
assignAttribute: nt,
- chainableAppend: ht,
- classListDeclarative: gt,
- createElement: P,
- createElementNS: qt,
- customElementRender: Zt,
- customElementWithDDE: wt,
- dispatchEvent: Qt,
- el: P,
- elNS: qt,
- elementAttribute: vt,
- empty: Ft,
- isSignal: z,
- lifecyclesToEvents: wt,
- observedAttributes: _t,
- on: y,
- registerReactivity: B,
- scope: m,
+ asyncQueueAdd: Mt,
+ chainableAppend: lt,
+ classListDeclarative: ht,
+ createElement: M,
+ createElementNS: jt,
+ customElementRender: It,
+ customElementWithDDE: xt,
+ dispatchEvent: Gt,
+ el: M,
+ elNS: jt,
+ elementAttribute: bt,
+ isSignal: U,
+ lifecyclesToEvents: xt,
+ observedAttributes: wt,
+ on: w,
+ registerReactivity: H,
+ scope: x,
signal: E,
- simulateSlots: Wt
+ simulateSlots: Pt
};
})();
\ No newline at end of file
diff --git a/dist/dde.js b/dist/dde.js
index 9213f89..b9ef61d 100644
--- a/dist/dde.js
+++ b/dist/dde.js
@@ -9,19 +9,18 @@ var C = {
return n;
}
};
-function V(t, e = !0) {
+function Z(t, e = !0) {
return e ? Object.assign(C, t) : (Object.setPrototypeOf(t, C), t);
}
-function L(t) {
+function S(t) {
return C.isPrototypeOf(t) && t !== C ? t : C;
}
// src/helpers.js
-var q = (...t) => Object.prototype.hasOwnProperty.call(...t);
-function E(t) {
+function x(t) {
return typeof t > "u";
}
-function N(t, e) {
+function L(t, e) {
if (!t || !(t instanceof AbortSignal))
return !0;
if (!t.aborted)
@@ -29,46 +28,51 @@ function N(t, e) {
t.removeEventListener("abort", e);
};
}
-function F(t, e) {
+function W(t, e) {
let { observedAttributes: n = [] } = t.constructor;
return n.reduce(function(r, o) {
- return r[J(o)] = e(t, o), r;
+ return r[G(o)] = e(t, o), r;
}, {});
}
-function J(t) {
+function G(t) {
return t.replace(/-./g, (e) => e[1].toUpperCase());
}
// src/dom-common.js
-var a = {
- setDeleteAttr: K,
+var f = {
+ setDeleteAttr: Q,
ssr: "",
D: globalThis.document,
F: globalThis.DocumentFragment,
H: globalThis.HTMLElement,
S: globalThis.SVGElement,
- M: globalThis.MutationObserver
+ M: globalThis.MutationObserver,
+ qa: (t) => t,
+ qw: () => Promise.resolve()
};
-function K(t, e, n) {
- if (Reflect.set(t, e, n), !!E(n)) {
- if (Reflect.deleteProperty(t, e), t instanceof a.H && t.getAttribute(e) === "undefined")
+function Q(t, e, n) {
+ if (Reflect.set(t, e, n), !!x(n)) {
+ if (Reflect.deleteProperty(t, e), t instanceof f.H && t.getAttribute(e) === "undefined")
return t.removeAttribute(e);
if (Reflect.get(t, e) === "undefined")
return Reflect.set(t, e, "");
}
}
-var x = "__dde_lifecyclesToEvents", g = "dde:connected", y = "dde:disconnected", D = "dde:attributeChanged";
+var w = "__dde_lifecyclesToEvents", v = "dde:connected", m = "dde:disconnected", O = "dde:attributeChanged";
// src/dom.js
-var v = [{
+function dt(t) {
+ return f.qa(t);
+}
+var g = [{
get scope() {
- return a.D.body;
+ return f.D.body;
},
- host: (t) => t ? t(a.D.body) : a.D.body,
+ host: (t) => t ? t(f.D.body) : f.D.body,
prevent: !0
-}], S = {
+}], D = {
get current() {
- return v[v.length - 1];
+ return g[g.length - 1];
},
get host() {
return this.current.host;
@@ -78,166 +82,158 @@ var v = [{
return t.prevent = !0, t;
},
get state() {
- return [...v];
+ return [...g];
},
push(t = {}) {
- return v.push(Object.assign({}, this.current, { prevent: !1 }, t));
+ return g.push(Object.assign({}, this.current, { prevent: !1 }, t));
},
pushRoot() {
- return v.push(v[0]);
+ return g.push(g[0]);
},
pop() {
- if (v.length !== 1)
- return v.pop();
+ if (g.length !== 1)
+ return g.pop();
}
};
-function $(...t) {
+function q(...t) {
return this.appendOriginal(...t), this;
}
-function Q(t) {
- return t.append === $ || (t.appendOriginal = t.append, t.append = $), t;
+function V(t) {
+ return t.append === q || (t.appendOriginal = t.append, t.append = q), t;
}
var T;
-function j(t, e, ...n) {
- let r = L(this), o = 0, c, f;
+function P(t, e, ...n) {
+ let r = S(this), o = 0, c, a;
switch ((Object(e) !== e || r.isSignal(e)) && (e = { textContent: e }), !0) {
case typeof t == "function": {
- o = 1, S.push({ scope: t, host: (...b) => b.length ? (o === 1 ? n.unshift(...b) : b.forEach((h) => h(f)), void 0) : f }), c = t(e || void 0);
- let d = c instanceof a.F;
+ o = 1;
+ let d = (...h) => h.length ? (o === 1 ? n.unshift(...h) : h.forEach((E) => E(a)), void 0) : a;
+ D.push({ scope: t, host: d }), c = t(e || void 0);
+ let p = c instanceof f.F;
if (c.nodeName === "#comment") break;
- let p = j.mark({
+ let b = P.mark({
type: "component",
name: t.name,
- host: d ? "this" : "parentElement"
+ host: p ? "this" : "parentElement"
});
- c.prepend(p), d && (f = p);
+ c.prepend(b), p && (a = b);
break;
}
case t === "#text":
- c = O.call(this, a.D.createTextNode(""), e);
+ c = R.call(this, f.D.createTextNode(""), e);
break;
case (t === "<>" || !t):
- c = O.call(this, a.D.createDocumentFragment(), e);
+ c = R.call(this, f.D.createDocumentFragment(), e);
break;
case !!T:
- c = O.call(this, a.D.createElementNS(T, t), e);
+ c = R.call(this, f.D.createElementNS(T, t), e);
break;
case !c:
- c = O.call(this, a.D.createElement(t), e);
+ c = R.call(this, f.D.createElement(t), e);
}
- return Q(c), f || (f = c), n.forEach((d) => d(f)), o && S.pop(), o = 2, c;
+ return V(c), a || (a = c), n.forEach((d) => d(a)), o && D.pop(), o = 2, c;
}
-function bt(t, e, n) {
- typeof e != "object" && (n = e, e = t);
- let r = Symbol.for("default"), o = Array.from(e.querySelectorAll("slot")).reduce((f, d) => Reflect.set(f, d.name || r, d) && f, {}), c = q(o, r);
- if (t.append = new Proxy(t.append, {
- apply(f, d, p) {
- if (p[0] === e) return f.apply(t, p);
- if (!p.length) return t;
- let b = a.D.createDocumentFragment();
- for (let h of p) {
- if (!h || !h.slot) {
- c && b.append(h);
- continue;
- }
- let A = h.slot, _ = o[A];
- tt(h, "remove", "slot"), _ && (X(_, h, n), Reflect.deleteProperty(o, A));
- }
- return c && (o[r].replaceWith(b), Reflect.deleteProperty(o, r)), t.append = f, t;
- }
- }), t !== e) {
- let f = Array.from(t.childNodes);
- f.forEach((d) => d.remove()), t.append(...f);
- }
- return e;
-}
-function X(t, e, n) {
- n && n(t, e);
- try {
- t.replaceWith(O(e, { className: [e.className, t.className], dataset: { ...t.dataset } }));
- } catch {
- t.replaceWith(e);
- }
-}
-j.mark = function(t, e = !1) {
+P.mark = function(t, e = !1) {
t = Object.entries(t).map(([o, c]) => o + `="${c}"`).join(" ");
- let n = e ? "" : "/", r = a.D.createComment(``);
- return e && (r.end = a.D.createComment("")), r;
+ let n = e ? "" : "/", r = f.D.createComment(``);
+ return e && (r.end = f.D.createComment("")), r;
};
-function gt(t) {
+function pt(t) {
let e = this;
return function(...r) {
T = t;
- let o = j.call(e, ...r);
+ let o = P.call(e, ...r);
return T = void 0, o;
};
}
-var P = /* @__PURE__ */ new WeakMap(), { setDeleteAttr: U } = a;
-function O(t, ...e) {
- if (!e.length) return t;
- P.set(t, B(t, this));
- for (let [n, r] of Object.entries(Object.assign({}, ...e)))
- z.call(this, t, n, r);
- return P.delete(t), t;
+function ht(t, e = t) {
+ let n = "\xB9\u2070", r = "\u2713", o = Object.fromEntries(
+ Array.from(e.querySelectorAll("slot")).filter((c) => !c.name.endsWith(n)).map((c) => [c.name += n, c])
+ );
+ if (t.append = new Proxy(t.append, {
+ apply(c, a, d) {
+ if (d[0] === e) return c.apply(t, d);
+ for (let p of d) {
+ let b = (p.slot || "") + n;
+ try {
+ K(p, "remove", "slot");
+ } catch {
+ }
+ let h = o[b];
+ if (!h) return;
+ h.name.startsWith(r) || (h.childNodes.forEach((E) => E.remove()), h.name = r + b), h.append(p);
+ }
+ return t.append = c, t;
+ }
+ }), t !== e) {
+ let c = Array.from(t.childNodes);
+ t.append(...c);
+ }
+ return e;
}
-function z(t, e, n) {
- let { setRemoveAttr: r, s: o } = B(t, this), c = this;
+var N = /* @__PURE__ */ new WeakMap(), { setDeleteAttr: $ } = f;
+function R(t, ...e) {
+ if (!e.length) return t;
+ N.set(t, H(t, this));
+ for (let [n, r] of Object.entries(Object.assign({}, ...e)))
+ U.call(this, t, n, r);
+ return N.delete(t), t;
+}
+function U(t, e, n) {
+ let { setRemoveAttr: r, s: o } = H(t, this), c = this;
n = o.processReactiveAttribute(
t,
e,
n,
- (d, p) => z.call(c, t, d, p)
+ (d, p) => U.call(c, t, d, p)
);
- let [f] = e;
- if (f === "=") return r(e.slice(1), n);
- if (f === ".") return H(t, e.slice(1), n);
+ let [a] = e;
+ if (a === "=") return r(e.slice(1), n);
+ if (a === ".") return F(t, e.slice(1), n);
if (/(aria|data)([A-Z])/.test(e))
return e = e.replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase(), r(e, n);
switch (e === "className" && (e = "class"), e) {
case "xlink:href":
return r(e, n, "http://www.w3.org/1999/xlink");
case "textContent":
- return U(t, e, n);
+ return $(t, e, n);
case "style":
if (typeof n != "object") break;
/* falls through */
case "dataset":
- return M(o, n, H.bind(null, t[e]));
+ return M(o, n, F.bind(null, t[e]));
case "ariaset":
return M(o, n, (d, p) => r("aria-" + d, p));
case "classList":
- return Y.call(c, t, n);
+ return J.call(c, t, n);
}
- return et(t, e) ? U(t, e, n) : r(e, n);
+ return X(t, e) ? $(t, e, n) : r(e, n);
}
-function B(t, e) {
- if (P.has(t)) return P.get(t);
- let r = (t instanceof a.S ? rt : nt).bind(null, t, "Attribute"), o = L(e);
+function H(t, e) {
+ if (N.has(t)) return N.get(t);
+ let r = (t instanceof f.S ? tt : Y).bind(null, t, "Attribute"), o = S(e);
return { setRemoveAttr: r, s: o };
}
-function Y(t, e) {
- let n = L(this);
+function J(t, e) {
+ let n = S(this);
return M(
n,
e,
(r, o) => t.classList.toggle(r, o === -1 ? void 0 : !!o)
), t;
}
-function vt(t) {
- return Array.from(t.children).forEach((e) => e.remove()), t;
+function K(t, e, n, r) {
+ return t instanceof f.H ? t[e + "Attribute"](n, r) : t[e + "AttributeNS"](null, n, r);
}
-function tt(t, e, n, r) {
- return t instanceof a.H ? t[e + "Attribute"](n, r) : t[e + "AttributeNS"](null, n, r);
-}
-function et(t, e) {
+function X(t, e) {
if (!(e in t)) return !1;
- let n = I(t, e);
- return !E(n.set);
+ let n = z(t, e);
+ return !x(n.set);
}
-function I(t, e) {
+function z(t, e) {
if (t = Object.getPrototypeOf(t), !t) return {};
let n = Object.getOwnPropertyDescriptor(t, e);
- return n || I(t, e);
+ return n || z(t, e);
}
function M(t, e, n) {
if (!(typeof e != "object" || e === null))
@@ -245,216 +241,213 @@ function M(t, e, n) {
o && (c = t.processReactiveAttribute(e, o, c, n), n(o, c));
});
}
-function Z(t) {
- return Array.isArray(t) ? t.filter(Boolean).join(" ") : t;
+function Y(t, e, n, r) {
+ return t[(x(r) ? "remove" : "set") + e](n, r);
}
-function nt(t, e, n, r) {
- return t[(E(r) ? "remove" : "set") + e](n, Z(r));
+function tt(t, e, n, r, o = null) {
+ return t[(x(r) ? "remove" : "set") + e + "NS"](o, n, r);
}
-function rt(t, e, n, r, o = null) {
- return t[(E(r) ? "remove" : "set") + e + "NS"](o, n, Z(r));
-}
-function H(t, e, n) {
- if (Reflect.set(t, e, n), !!E(n))
+function F(t, e, n) {
+ if (Reflect.set(t, e, n), !!x(n))
return Reflect.deleteProperty(t, e);
}
// src/events-observer.js
-var w = a.M ? ot() : new Proxy({}, {
+var y = f.M ? et() : new Proxy({}, {
get() {
return () => {
};
}
});
-function ot() {
- let t = /* @__PURE__ */ new Map(), e = !1, n = (i) => function(u) {
- for (let s of u)
- if (s.type === "childList") {
- if (h(s.addedNodes, !0)) {
- i();
+function et() {
+ let t = /* @__PURE__ */ new Map(), e = !1, n = (s) => function(u) {
+ for (let i of u)
+ if (i.type === "childList") {
+ if (h(i.addedNodes, !0)) {
+ s();
continue;
}
- A(s.removedNodes, !0) && i();
+ E(i.removedNodes, !0) && s();
}
- }, r = new a.M(n(d));
+ }, r = new f.M(n(d));
return {
- observe(i) {
- let u = new a.M(n(() => {
+ observe(s) {
+ let u = new f.M(n(() => {
}));
- return u.observe(i, { childList: !0, subtree: !0 }), () => u.disconnect();
+ return u.observe(s, { childList: !0, subtree: !0 }), () => u.disconnect();
},
- onConnected(i, u) {
- f();
- let s = c(i);
- s.connected.has(u) || (s.connected.add(u), s.length_c += 1);
+ onConnected(s, u) {
+ a();
+ let i = c(s);
+ i.connected.has(u) || (i.connected.add(u), i.length_c += 1);
},
- offConnected(i, u) {
- if (!t.has(i)) return;
- let s = t.get(i);
- s.connected.has(u) && (s.connected.delete(u), s.length_c -= 1, o(i, s));
+ offConnected(s, u) {
+ if (!t.has(s)) return;
+ let i = t.get(s);
+ i.connected.has(u) && (i.connected.delete(u), i.length_c -= 1, o(s, i));
},
- onDisconnected(i, u) {
- f();
- let s = c(i);
- s.disconnected.has(u) || (s.disconnected.add(u), s.length_d += 1);
+ onDisconnected(s, u) {
+ a();
+ let i = c(s);
+ i.disconnected.has(u) || (i.disconnected.add(u), i.length_d += 1);
},
- offDisconnected(i, u) {
- if (!t.has(i)) return;
- let s = t.get(i);
- s.disconnected.has(u) && (s.disconnected.delete(u), s.length_d -= 1, o(i, s));
+ offDisconnected(s, u) {
+ if (!t.has(s)) return;
+ let i = t.get(s);
+ i.disconnected.has(u) && (i.disconnected.delete(u), i.length_d -= 1, o(s, i));
}
};
- function o(i, u) {
- u.length_c || u.length_d || (t.delete(i), d());
+ function o(s, u) {
+ u.length_c || u.length_d || (t.delete(s), d());
}
- function c(i) {
- if (t.has(i)) return t.get(i);
+ function c(s) {
+ if (t.has(s)) return t.get(s);
let u = {
connected: /* @__PURE__ */ new WeakSet(),
length_c: 0,
disconnected: /* @__PURE__ */ new WeakSet(),
length_d: 0
};
- return t.set(i, u), u;
+ return t.set(s, u), u;
}
- function f() {
- e || (e = !0, r.observe(a.D.body, { childList: !0, subtree: !0 }));
+ function a() {
+ e || (e = !0, r.observe(f.D.body, { childList: !0, subtree: !0 }));
}
function d() {
!e || t.size || (e = !1, r.disconnect());
}
function p() {
- return new Promise(function(i) {
- (requestIdleCallback || requestAnimationFrame)(i);
+ return new Promise(function(s) {
+ (requestIdleCallback || requestAnimationFrame)(s);
});
}
- async function b(i) {
+ async function b(s) {
t.size > 30 && await p();
let u = [];
- if (!(i instanceof Node)) return u;
- for (let s of t.keys())
- s === i || !(s instanceof Node) || i.contains(s) && u.push(s);
+ if (!(s instanceof Node)) return u;
+ for (let i of t.keys())
+ i === s || !(i instanceof Node) || s.contains(i) && u.push(i);
return u;
}
- function h(i, u) {
- let s = !1;
- for (let l of i) {
+ function h(s, u) {
+ let i = !1;
+ for (let l of s) {
if (u && b(l).then(h), !t.has(l)) continue;
- let m = t.get(l);
- m.length_c && (l.dispatchEvent(new Event(g)), m.connected = /* @__PURE__ */ new WeakSet(), m.length_c = 0, m.length_d || t.delete(l), s = !0);
+ let A = t.get(l);
+ A.length_c && (l.dispatchEvent(new Event(v)), A.connected = /* @__PURE__ */ new WeakSet(), A.length_c = 0, A.length_d || t.delete(l), i = !0);
}
- return s;
+ return i;
}
- function A(i, u) {
- let s = !1;
- for (let l of i)
- u && b(l).then(A), !(!t.has(l) || !t.get(l).length_d) && ((globalThis.queueMicrotask || setTimeout)(_(l)), s = !0);
- return s;
+ function E(s, u) {
+ let i = !1;
+ for (let l of s)
+ u && b(l).then(E), !(!t.has(l) || !t.get(l).length_d) && ((globalThis.queueMicrotask || setTimeout)(I(l)), i = !0);
+ return i;
}
- function _(i) {
+ function I(s) {
return () => {
- i.isConnected || (i.dispatchEvent(new Event(y)), t.delete(i));
+ s.isConnected || (s.dispatchEvent(new Event(m)), t.delete(s));
};
}
}
// src/customElement.js
-function Dt(t, e, n, r = it) {
- S.push({
+function mt(t, e, n, r = rt) {
+ D.push({
scope: t,
- host: (...f) => f.length ? f.forEach((d) => d(t)) : t
+ host: (...a) => a.length ? a.forEach((d) => d(t)) : t
}), typeof r == "function" && (r = r.call(t, t));
- let o = t[x];
- o || ct(t);
+ let o = t[w];
+ o || nt(t);
let c = n.call(t, r);
- return o || t.dispatchEvent(new Event(g)), e.nodeType === 11 && typeof e.mode == "string" && t.addEventListener(y, w.observe(e), { once: !0 }), S.pop(), e.append(c);
+ return o || t.dispatchEvent(new Event(v)), e.nodeType === 11 && typeof e.mode == "string" && t.addEventListener(m, y.observe(e), { once: !0 }), D.pop(), e.append(c);
}
-function ct(t) {
+function nt(t) {
return k(t.prototype, "connectedCallback", function(e, n, r) {
- e.apply(n, r), n.dispatchEvent(new Event(g));
+ e.apply(n, r), n.dispatchEvent(new Event(v));
}), k(t.prototype, "disconnectedCallback", function(e, n, r) {
e.apply(n, r), (globalThis.queueMicrotask || setTimeout)(
- () => !n.isConnected && n.dispatchEvent(new Event(y))
+ () => !n.isConnected && n.dispatchEvent(new Event(m))
);
}), k(t.prototype, "attributeChangedCallback", function(e, n, r) {
let [o, , c] = r;
- n.dispatchEvent(new CustomEvent(D, {
+ n.dispatchEvent(new CustomEvent(O, {
detail: [o, c]
})), e.apply(n, r);
- }), t.prototype[x] = !0, t;
+ }), t.prototype[w] = !0, t;
}
function k(t, e, n) {
t[e] = new Proxy(t[e] || (() => {
}), { apply: n });
}
-function it(t) {
- return F(t, (e, n) => e.getAttribute(n));
+function rt(t) {
+ return W(t, (e, n) => e.getAttribute(n));
}
// src/events.js
-function _t(t, e, n) {
+function Ot(t, e, n) {
return e || (e = {}), function(o, ...c) {
n && (c.unshift(o), o = typeof n == "function" ? n() : n);
- let f = c.length ? new CustomEvent(t, Object.assign({ detail: c[0] }, e)) : new Event(t, e);
- return o.dispatchEvent(f);
+ let a = c.length ? new CustomEvent(t, Object.assign({ detail: c[0] }, e)) : new Event(t, e);
+ return o.dispatchEvent(a);
};
}
-function R(t, e, n) {
+function _(t, e, n) {
return function(o) {
return o.addEventListener(t, e, n), o;
};
}
-var G = (t) => Object.assign({}, typeof t == "object" ? t : null, { once: !0 });
-R.connected = function(t, e) {
- return e = G(e), function(r) {
- return r.addEventListener(g, t, e), r[x] ? r : r.isConnected ? (r.dispatchEvent(new Event(g)), r) : (N(e.signal, () => w.offConnected(r, t)) && w.onConnected(r, t), r);
+var B = (t) => Object.assign({}, typeof t == "object" ? t : null, { once: !0 });
+_.connected = function(t, e) {
+ return e = B(e), function(r) {
+ return r.addEventListener(v, t, e), r[w] ? r : r.isConnected ? (r.dispatchEvent(new Event(v)), r) : (L(e.signal, () => y.offConnected(r, t)) && y.onConnected(r, t), r);
};
};
-R.disconnected = function(t, e) {
- return e = G(e), function(r) {
- return r.addEventListener(y, t, e), r[x] || N(e.signal, () => w.offDisconnected(r, t)) && w.onDisconnected(r, t), r;
+_.disconnected = function(t, e) {
+ return e = B(e), function(r) {
+ return r.addEventListener(m, t, e), r[w] || L(e.signal, () => y.offDisconnected(r, t)) && y.onDisconnected(r, t), r;
};
};
-var W = /* @__PURE__ */ new WeakMap();
-R.disconnectedAsAbort = function(t) {
- if (W.has(t)) return W.get(t);
+var j = /* @__PURE__ */ new WeakMap();
+_.disconnectedAsAbort = function(t) {
+ if (j.has(t)) return j.get(t);
let e = new AbortController();
- return W.set(t, e), t(R.disconnected(() => e.abort())), e;
+ return j.set(t, e), t(_.disconnected(() => e.abort())), e;
};
-var st = /* @__PURE__ */ new WeakSet();
-R.attributeChanged = function(t, e) {
+var ot = /* @__PURE__ */ new WeakSet();
+_.attributeChanged = function(t, e) {
return typeof e != "object" && (e = {}), function(r) {
- if (r.addEventListener(D, t, e), r[x] || st.has(r) || !a.M) return r;
- let o = new a.M(function(f) {
- for (let { attributeName: d, target: p } of f)
+ if (r.addEventListener(O, t, e), r[w] || ot.has(r) || !f.M) return r;
+ let o = new f.M(function(a) {
+ for (let { attributeName: d, target: p } of a)
p.dispatchEvent(
- new CustomEvent(D, { detail: [d, p.getAttribute(d)] })
+ new CustomEvent(O, { detail: [d, p.getAttribute(d)] })
);
});
- return N(e.signal, () => o.disconnect()) && o.observe(r, { attributes: !0 }), r;
+ return L(e.signal, () => o.disconnect()) && o.observe(r, { attributes: !0 }), r;
};
};
globalThis.dde= {
- assign: O,
- assignAttribute: z,
- chainableAppend: Q,
- classListDeclarative: Y,
- createElement: j,
- createElementNS: gt,
- customElementRender: Dt,
- customElementWithDDE: ct,
- dispatchEvent: _t,
- el: j,
- elNS: gt,
- elementAttribute: tt,
- empty: vt,
- lifecyclesToEvents: ct,
- observedAttributes: it,
- on: R,
- registerReactivity: V,
- scope: S,
- simulateSlots: bt
+ assign: R,
+ assignAttribute: U,
+ asyncQueueAdd: dt,
+ chainableAppend: V,
+ classListDeclarative: J,
+ createElement: P,
+ createElementNS: pt,
+ customElementRender: mt,
+ customElementWithDDE: nt,
+ dispatchEvent: Ot,
+ el: P,
+ elNS: pt,
+ elementAttribute: K,
+ lifecyclesToEvents: nt,
+ observedAttributes: rt,
+ on: _,
+ registerReactivity: Z,
+ scope: D,
+ simulateSlots: ht
};
})();
\ No newline at end of file
diff --git a/dist/esm-with-signals.d.ts b/dist/esm-with-signals.d.ts
index 18a5868..8780bac 100644
--- a/dist/esm-with-signals.d.ts
+++ b/dist/esm-with-signals.d.ts
@@ -1,13 +1,15 @@
declare global{ /* ddeSignal */ }
type CustomElementTagNameMap= { '#text': Text, '#comment': Comment }
type SupportedElement=
- HTMLElementTagNameMap[keyof HTMLElementTagNameMap]
- | SVGElementTagNameMap[keyof SVGElementTagNameMap]
- | MathMLElementTagNameMap[keyof MathMLElementTagNameMap]
- | CustomElementTagNameMap[keyof CustomElementTagNameMap]
+ HTMLElementTagNameMap[keyof HTMLElementTagNameMap]
+ | SVGElementTagNameMap[keyof SVGElementTagNameMap]
+ | MathMLElementTagNameMap[keyof MathMLElementTagNameMap]
+ | CustomElementTagNameMap[keyof CustomElementTagNameMap]
declare global {
type ddeComponentAttributes= Record | undefined;
- type ddeElementAddon= (element: El)=> El | void;
+ type ddeElementAddon= (element: El)=> any;
+ type ddeString= string | ddeSignal
+ type ddeStringable= ddeString | number | ddeSignal
}
type PascalCase=
`${Capitalize}${string}`;
@@ -15,50 +17,72 @@ type AttrsModified= {
/**
* Use string like in HTML (internally uses `*.setAttribute("style", *)`), or object representation (like DOM API).
*/
- style: string | Partial | ddeSignal | Partial<{ [K in keyof CSSStyleDeclaration]: ddeSignal }>
+ style: Partial | ddeString
+ | Partial<{ [K in keyof CSSStyleDeclaration]: ddeSignal }>
/**
- * Provide option to add/remove/toggle CSS clasess (index of object) using 1/0/-1. In fact `el.classList.toggle(class_name)` for `-1` and `el.classList.toggle(class_name, Boolean(...))` for others.
+ * Provide option to add/remove/toggle CSS clasess (index of object) using 1/0/-1.
+ * In fact `el.classList.toggle(class_name)` for `-1` and `el.classList.toggle(class_name, Boolean(...))`
+ * for others.
*/
classList: Record>,
/**
- * By default simiral to `className`, but also supports `string[]`
+ * Used by the dataset HTML attribute to represent data for custom attributes added to elements.
+ * Values are converted to string (see {@link DOMStringMap}).
+ *
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMStringMap)
* */
- className: string | (string|boolean|undefined|ddeSignal)[];
+ dataset: Record,
/**
* Sets `aria-*` simiraly to `dataset`
* */
- ariaset: Record>,
-} & Record<`=${string}` | `data${PascalCase}` | `aria${PascalCase}`, string|ddeSignal> & Record<`.${string}`, any>
+ ariaset: Record,
+} & Record<`=${string}` | `data${PascalCase}` | `aria${PascalCase}`, ddeString>
+ & Record<`.${string}`, any>
type _fromElsInterfaces= Omit;
+type IsReadonly =
+ T extends { readonly [P in K]: T[K] } ? true : false;
/**
* Just element attributtes
*
- * In most cases, you can use native propertie such as [MDN WEB/API/Element](https://developer.mozilla.org/en-US/docs/Web/API/Element) and so on (e.g. [`Text`](https://developer.mozilla.org/en-US/docs/Web/API/Text)).
+ * In most cases, you can use native propertie such as
+ * [MDN WEB/API/Element](https://developer.mozilla.org/en-US/docs/Web/API/Element) and so on
+ * (e.g. [`Text`](https://developer.mozilla.org/en-US/docs/Web/API/Text)).
*
* There is added support for `data[A-Z].*`/`aria[A-Z].*` to be converted to the kebab-case alternatives.
* @private
*/
-type ElementAttributes= Partial<{ [K in keyof _fromElsInterfaces]: _fromElsInterfaces[K] | ddeSignal<_fromElsInterfaces[K]> } & AttrsModified> & Record;
-export function classListDeclarative(element: El, classList: AttrsModified["classList"]): El
+type ElementAttributes= Partial<{
+ [K in keyof _fromElsInterfaces]: IsReadonly<_fromElsInterfaces, K> extends false
+ ? _fromElsInterfaces[K] | ddeSignal<_fromElsInterfaces[K]>
+ : ddeStringable
+} & AttrsModified> & Record;
+export function classListDeclarative(
+ element: El,
+ classList: AttrsModified["classList"]
+): El
export function assign(element: El, ...attrs_array: ElementAttributes[]): El
-export function assignAttribute>(element: El, attr: ATT, value: ElementAttributes[ATT]): ElementAttributes[ATT]
+export function assignAttribute>(
+ element: El,
+ attr: ATT,
+ value: ElementAttributes[ATT]
+): ElementAttributes[ATT]
type ExtendedHTMLElementTagNameMap= HTMLElementTagNameMap & CustomElementTagNameMap;
-type textContent= string | ddeSignal;
export function el<
TAG extends keyof ExtendedHTMLElementTagNameMap,
- EL extends ExtendedHTMLElementTagNameMap[TAG]
>(
tag_name: TAG,
- attrs?: ElementAttributes | textContent,
- ...addons: ddeElementAddon[]
+ attrs?: ElementAttributes]> | ddeStringable,
+ ...addons: ddeElementAddon<
+ ExtendedHTMLElementTagNameMap[NoInfer]
+ >[], // TODO: for now addons must have the same element
): TAG extends keyof ddeHTMLElementTagNameMap ? ddeHTMLElementTagNameMap[TAG] : ddeHTMLElement
export function el(
tag_name?: "<>",
): ddeDocumentFragment
export function el(
tag_name: string,
- attrs?: ElementAttributes | textContent,
+ attrs?: ElementAttributes | ddeStringable,
...addons: ddeElementAddon[]
): ddeHTMLElement
@@ -66,9 +90,11 @@ export function el<
C extends (attr: ddeComponentAttributes)=> SupportedElement | ddeDocumentFragment
>(
component: C,
- attrs?: Parameters[0] | textContent,
+ attrs?: Parameters[0] | ddeStringable,
...addons: ddeElementAddon>[]
-): ReturnType extends ddeHTMLElementTagNameMap[keyof ddeHTMLElementTagNameMap] ? ReturnType : ( ReturnType extends ddeDocumentFragment ? ReturnType : ddeHTMLElement )
+): ReturnType extends ddeHTMLElementTagNameMap[keyof ddeHTMLElementTagNameMap]
+ ? ReturnType
+ : ( ReturnType extends ddeDocumentFragment ? ReturnType : ddeHTMLElement )
export { el as createElement }
export function elNS(
@@ -78,8 +104,8 @@ export function elNS(
EL extends ( TAG extends keyof SVGElementTagNameMap ? SVGElementTagNameMap[TAG] : SVGElement ),
>(
tag_name: TAG,
- attrs?: ElementAttributes | textContent,
- ...addons: ddeElementAddon[]
+ attrs?: ElementAttributes> | ddeStringable,
+ ...addons: ddeElementAddon>[]
)=> TAG extends keyof ddeSVGElementTagNameMap ? ddeSVGElementTagNameMap[TAG] : ddeSVGElement
export function elNS(
namespace: "http://www.w3.org/1998/Math/MathML"
@@ -88,54 +114,60 @@ export function elNS(
EL extends ( TAG extends keyof MathMLElementTagNameMap ? MathMLElementTagNameMap[TAG] : MathMLElement ),
>(
tag_name: TAG,
- attrs?: string | textContent | Partial<{ [key in keyof EL]: EL[key] | ddeSignal | string | number | boolean }>,
- ...addons: ddeElementAddon[]
+ attrs?: ddeStringable | Partial<{
+ [key in keyof EL]: EL[key] | ddeSignal | string | number | boolean
+ }>,
+ ...addons: ddeElementAddon>[]
)=> ddeMathMLElement
export function elNS(
namespace: string
): (
tag_name: string,
- attrs?: string | textContent | Record,
+ attrs?: string | ddeStringable | Record,
...addons: ddeElementAddon[]
)=> SupportedElement
export { elNS as createElementNS }
export function chainableAppend(el: EL): EL;
-/**
- * Mapper function (optional). Pass for coppying attributes, this is NOT implemented by {@link simulateSlots} itself!
- * */
-type simulateSlotsMapper= (body: HTMLSlotElement, el: HTMLElement)=> void;
/** Simulate slots for ddeComponents */
-export function simulateSlots(root: EL, mapper?: simulateSlotsMapper): EL
+export function simulateSlots(
+ root: EL,
+): EL
/**
* Simulate slots in Custom Elements without using `shadowRoot`.
* @param el Custom Element root element
* @param body Body of the custom element
* */
-export function simulateSlots(el: HTMLElement, body: EL, mapper?: simulateSlotsMapper): EL
+export function simulateSlots(
+ el: HTMLElement,
+ body: EL,
+): EL
export function dispatchEvent(name: keyof DocumentEventMap | string, options?: EventInit):
(element: SupportedElement, data?: any)=> void;
-export function dispatchEvent(name: keyof DocumentEventMap | string, options: EventInit | null, element: SupportedElement | (()=> SupportedElement)):
- (data?: any)=> void;
+export function dispatchEvent(
+ name: keyof DocumentEventMap | string,
+ options: EventInit | null,
+ element: SupportedElement | (()=> SupportedElement)
+): (data?: any)=> void;
interface On{
/** Listens to the DOM event. See {@link Document.addEventListener} */
<
- EE extends ddeElementAddon,
- El extends ( EE extends ddeElementAddon ? El : never ),
- Event extends keyof DocumentEventMap>(
+ Event extends keyof DocumentEventMap,
+ EE extends ddeElementAddon= ddeElementAddon,
+ >(
type: Event,
- listener: (this: El, ev: DocumentEventMap[Event]) => any,
+ listener: (this: EE extends ddeElementAddon ? El : never, ev: DocumentEventMap[Event]) => any,
options?: AddEventListenerOptions
) : EE;
<
- EE extends ddeElementAddon,
- El extends ( EE extends ddeElementAddon ? El : never )>(
+ EE extends ddeElementAddon= ddeElementAddon,
+ >(
type: string,
- listener: (this: El, ev: Event | CustomEvent ) => any,
+ listener: (this: EE extends ddeElementAddon ? El : never, ev: Event | CustomEvent ) => any,
options?: AddEventListenerOptions
) : EE;
- /** Listens to the element is connected to the live DOM. In case of custom elements uses [`connectedCallback`](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements#custom_element_lifecycle_callbacks), or {@link MutationObserver} else where */
+ /** Listens to the element is connected to the live DOM. In case of custom elements uses [`connectedCallback`](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements#custom_element_lifecycle_callbacks), or {@link MutationObserver} else where */// editorconfig-checker-disable-line
connected<
EE extends ddeElementAddon,
El extends ( EE extends ddeElementAddon ? El : never )
@@ -143,7 +175,7 @@ interface On{
listener: (this: El, event: CustomEvent) => any,
options?: AddEventListenerOptions
) : EE;
- /** Listens to the element is disconnected from the live DOM. In case of custom elements uses [`disconnectedCallback`](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements#custom_element_lifecycle_callbacks), or {@link MutationObserver} else where */
+ /** Listens to the element is disconnected from the live DOM. In case of custom elements uses [`disconnectedCallback`](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements#custom_element_lifecycle_callbacks), or {@link MutationObserver} else where */// editorconfig-checker-disable-line
disconnected<
EE extends ddeElementAddon,
El extends ( EE extends ddeElementAddon ? El : never )
@@ -151,7 +183,7 @@ interface On{
listener: (this: El, event: CustomEvent) => any,
options?: AddEventListenerOptions
) : EE;
- /** Listens to the element attribute changes. In case of custom elements uses [`attributeChangedCallback`](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements#custom_element_lifecycle_callbacks), or {@link MutationObserver} else where */
+ /** Listens to the element attribute changes. In case of custom elements uses [`attributeChangedCallback`](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements#custom_element_lifecycle_callbacks), or {@link MutationObserver} else where */// editorconfig-checker-disable-line
attributeChanged<
EE extends ddeElementAddon,
El extends ( EE extends ddeElementAddon ? El : never )
@@ -162,7 +194,12 @@ interface On{
}
export const on: On;
-type Scope= { scope: Node | Function | Object, host: ddeElementAddon, custom_element: false | HTMLElement, prevent: boolean }
+type Scope= {
+ scope: Node | Function | Object,
+ host: ddeElementAddon,
+ custom_element: false | HTMLElement,
+ prevent: boolean
+};
/** Current scope created last time the `el(Function)` was invoke. (Or {@link scope.push}) */
export const scope: {
current: Scope,
@@ -176,7 +213,7 @@ export const scope: {
* — `scope.host(on.connected(console.log))`.
* */
host: (...addons: ddeElementAddon[])=> HTMLElement,
-
+
state: Scope[],
/** Adds new child scope. All attributes are inherited by default. */
push(scope: Partial): ReturnType["push"]>,
@@ -202,12 +239,12 @@ export function observedAttributes(custom_element: HTMLElement): Record= (...nodes: (Node | string)[])=> el;
-
+
interface ddeDocumentFragment extends DocumentFragment{ append: ddeAppend; }
interface ddeHTMLElement extends HTMLElement{ append: ddeAppend; }
interface ddeSVGElement extends SVGElement{ append: ddeAppend; }
interface ddeMathMLElement extends MathMLElement{ append: ddeAppend; }
-
+
interface ddeHTMLElementTagNameMap {
"a": ddeHTMLAnchorElement;
"area": ddeHTMLAreaElement;
@@ -350,6 +387,7 @@ declare global{
}
}
+// editorconfig-checker-disable
interface ddeHTMLAnchorElement extends HTMLAnchorElement{ append: ddeAppend; }
interface ddeHTMLAreaElement extends HTMLAreaElement{ append: ddeAppend; }
interface ddeHTMLAudioElement extends HTMLAudioElement{ append: ddeAppend; }
@@ -477,6 +515,7 @@ interface ddeSVGTitleElement extends SVGTitleElement{ append: ddeAppend; }
interface ddeSVGUseElement extends SVGUseElement{ append: ddeAppend; }
interface ddeSVGViewElement extends SVGViewElement{ append: ddeAppend; }
+// editorconfig-checker-enable
export type Signal= (set?: V)=> V & A;
type Action= (this: { value: V, stopPropagation(): void }, ...a: any[])=> typeof signal._ | void;
//type SymbolSignal= Symbol;
@@ -534,7 +573,7 @@ interface signal{
* */
el(signal: Signal, el: (v: S)=> Element | Element[] | DocumentFragment): DocumentFragment;
- observedAttributes(custom_element: HTMLElement): Record>;
+ observedAttributes(custom_element: HTMLElement): Record>;
}
export const signal: signal;
export const S: signal;
diff --git a/dist/esm-with-signals.js b/dist/esm-with-signals.js
index f718eb8..b14e915 100644
--- a/dist/esm-with-signals.js
+++ b/dist/esm-with-signals.js
@@ -1,5 +1,5 @@
// src/signals-common.js
-var k = {
+var N = {
isSignal(t) {
return !1;
},
@@ -7,23 +7,23 @@ var k = {
return n;
}
};
-function B(t, e = !0) {
- return e ? Object.assign(k, t) : (Object.setPrototypeOf(t, k), t);
+function H(t, e = !0) {
+ return e ? Object.assign(N, t) : (Object.setPrototypeOf(t, N), t);
}
-function W(t) {
- return k.isPrototypeOf(t) && t !== k ? t : k;
+function j(t) {
+ return N.isPrototypeOf(t) && t !== N ? t : N;
}
// src/helpers.js
-var T = (...t) => Object.prototype.hasOwnProperty.call(...t);
-function S(t) {
+var I = (...t) => Object.prototype.hasOwnProperty.call(...t);
+function A(t) {
return typeof t > "u";
}
function X(t) {
let e = typeof t;
return e !== "object" ? e : t === null ? "null" : Object.prototype.toString.call(t);
}
-function q(t, e) {
+function P(t, e) {
if (!t || !(t instanceof AbortSignal))
return !0;
if (!t.aborted)
@@ -31,46 +31,51 @@ function q(t, e) {
t.removeEventListener("abort", e);
};
}
-function F(t, e) {
+function W(t, e) {
let { observedAttributes: n = [] } = t.constructor;
return n.reduce(function(r, o) {
- return r[pt(o)] = e(t, o), r;
+ return r[dt(o)] = e(t, o), r;
}, {});
}
-function pt(t) {
+function dt(t) {
return t.replace(/-./g, (e) => e[1].toUpperCase());
}
// src/dom-common.js
var d = {
- setDeleteAttr: lt,
+ setDeleteAttr: pt,
ssr: "",
D: globalThis.document,
F: globalThis.DocumentFragment,
H: globalThis.HTMLElement,
S: globalThis.SVGElement,
- M: globalThis.MutationObserver
+ M: globalThis.MutationObserver,
+ qa: (t) => t,
+ qw: () => Promise.resolve()
};
-function lt(t, e, n) {
- if (Reflect.set(t, e, n), !!S(n)) {
+function pt(t, e, n) {
+ if (Reflect.set(t, e, n), !!A(n)) {
if (Reflect.deleteProperty(t, e), t instanceof d.H && t.getAttribute(e) === "undefined")
return t.removeAttribute(e);
if (Reflect.get(t, e) === "undefined")
return Reflect.set(t, e, "");
}
}
-var O = "__dde_lifecyclesToEvents", _ = "dde:connected", C = "dde:disconnected", M = "dde:attributeChanged";
+var O = "__dde_lifecyclesToEvents", _ = "dde:connected", S = "dde:disconnected", T = "dde:attributeChanged";
// src/dom.js
-var A = [{
+function Mt(t) {
+ return d.qa(t);
+}
+var y = [{
get scope() {
return d.D.body;
},
host: (t) => t ? t(d.D.body) : d.D.body,
prevent: !0
-}], m = {
+}], x = {
get current() {
- return A[A.length - 1];
+ return y[y.length - 1];
},
get host() {
return this.current.host;
@@ -80,107 +85,102 @@ var A = [{
return t.prevent = !0, t;
},
get state() {
- return [...A];
+ return [...y];
},
push(t = {}) {
- return A.push(Object.assign({}, this.current, { prevent: !1 }, t));
+ return y.push(Object.assign({}, this.current, { prevent: !1 }, t));
},
pushRoot() {
- return A.push(A[0]);
+ return y.push(y[0]);
},
pop() {
- if (A.length !== 1)
- return A.pop();
+ if (y.length !== 1)
+ return y.pop();
}
};
function Y(...t) {
return this.appendOriginal(...t), this;
}
-function ht(t) {
+function lt(t) {
return t.append === Y || (t.appendOriginal = t.append, t.append = Y), t;
}
var $;
-function P(t, e, ...n) {
- let r = W(this), o = 0, c, i;
+function M(t, e, ...n) {
+ let r = j(this), o = 0, c, u;
switch ((Object(e) !== e || r.isSignal(e)) && (e = { textContent: e }), !0) {
case typeof t == "function": {
- o = 1, m.push({ scope: t, host: (...v) => v.length ? (o === 1 ? n.unshift(...v) : v.forEach((h) => h(i)), void 0) : i }), c = t(e || void 0);
- let a = c instanceof d.F;
+ o = 1;
+ let a = (...l) => l.length ? (o === 1 ? n.unshift(...l) : l.forEach((m) => m(u)), void 0) : u;
+ x.push({ scope: t, host: a }), c = t(e || void 0);
+ let h = c instanceof d.F;
if (c.nodeName === "#comment") break;
- let l = P.mark({
+ let v = M.mark({
type: "component",
name: t.name,
- host: a ? "this" : "parentElement"
+ host: h ? "this" : "parentElement"
});
- c.prepend(l), a && (i = l);
+ c.prepend(v), h && (u = v);
break;
}
case t === "#text":
- c = j.call(this, d.D.createTextNode(""), e);
+ c = q.call(this, d.D.createTextNode(""), e);
break;
case (t === "<>" || !t):
- c = j.call(this, d.D.createDocumentFragment(), e);
+ c = q.call(this, d.D.createDocumentFragment(), e);
break;
case !!$:
- c = j.call(this, d.D.createElementNS($, t), e);
+ c = q.call(this, d.D.createElementNS($, t), e);
break;
case !c:
- c = j.call(this, d.D.createElement(t), e);
+ c = q.call(this, d.D.createElement(t), e);
}
- return ht(c), i || (i = c), n.forEach((a) => a(i)), o && m.pop(), o = 2, c;
+ return lt(c), u || (u = c), n.forEach((a) => a(u)), o && x.pop(), o = 2, c;
}
-function Wt(t, e, n) {
- typeof e != "object" && (n = e, e = t);
- let r = Symbol.for("default"), o = Array.from(e.querySelectorAll("slot")).reduce((i, a) => Reflect.set(i, a.name || r, a) && i, {}), c = T(o, r);
- if (t.append = new Proxy(t.append, {
- apply(i, a, l) {
- if (l[0] === e) return i.apply(t, l);
- if (!l.length) return t;
- let v = d.D.createDocumentFragment();
- for (let h of l) {
- if (!h || !h.slot) {
- c && v.append(h);
- continue;
- }
- let x = h.slot, w = o[x];
- vt(h, "remove", "slot"), w && (bt(w, h, n), Reflect.deleteProperty(o, x));
- }
- return c && (o[r].replaceWith(v), Reflect.deleteProperty(o, r)), t.append = i, t;
- }
- }), t !== e) {
- let i = Array.from(t.childNodes);
- i.forEach((a) => a.remove()), t.append(...i);
- }
- return e;
-}
-function bt(t, e, n) {
- n && n(t, e);
- try {
- t.replaceWith(j(e, { className: [e.className, t.className], dataset: { ...t.dataset } }));
- } catch {
- t.replaceWith(e);
- }
-}
-P.mark = function(t, e = !1) {
+M.mark = function(t, e = !1) {
t = Object.entries(t).map(([o, c]) => o + `="${c}"`).join(" ");
let n = e ? "" : "/", r = d.D.createComment(``);
return e && (r.end = d.D.createComment("")), r;
};
-function qt(t) {
+function jt(t) {
let e = this;
return function(...r) {
$ = t;
- let o = P.call(e, ...r);
+ let o = M.call(e, ...r);
return $ = void 0, o;
};
}
-var U = /* @__PURE__ */ new WeakMap(), { setDeleteAttr: tt } = d;
-function j(t, ...e) {
+function Pt(t, e = t) {
+ let n = "\xB9\u2070", r = "\u2713", o = Object.fromEntries(
+ Array.from(e.querySelectorAll("slot")).filter((c) => !c.name.endsWith(n)).map((c) => [c.name += n, c])
+ );
+ if (t.append = new Proxy(t.append, {
+ apply(c, u, a) {
+ if (a[0] === e) return c.apply(t, a);
+ for (let h of a) {
+ let v = (h.slot || "") + n;
+ try {
+ bt(h, "remove", "slot");
+ } catch {
+ }
+ let l = o[v];
+ if (!l) return;
+ l.name.startsWith(r) || (l.childNodes.forEach((m) => m.remove()), l.name = r + v), l.append(h);
+ }
+ return t.append = c, t;
+ }
+ }), t !== e) {
+ let c = Array.from(t.childNodes);
+ t.append(...c);
+ }
+ return e;
+}
+var F = /* @__PURE__ */ new WeakMap(), { setDeleteAttr: tt } = d;
+function q(t, ...e) {
if (!e.length) return t;
- U.set(t, rt(t, this));
+ F.set(t, rt(t, this));
for (let [n, r] of Object.entries(Object.assign({}, ...e)))
nt.call(this, t, n, r);
- return U.delete(t), t;
+ return F.delete(t), t;
}
function nt(t, e, n) {
let { setRemoveAttr: r, s: o } = rt(t, this), c = this;
@@ -188,11 +188,11 @@ function nt(t, e, n) {
t,
e,
n,
- (a, l) => nt.call(c, t, a, l)
+ (a, h) => nt.call(c, t, a, h)
);
- let [i] = e;
- if (i === "=") return r(e.slice(1), n);
- if (i === ".") return et(t, e.slice(1), n);
+ let [u] = e;
+ if (u === "=") return r(e.slice(1), n);
+ if (u === ".") return et(t, e.slice(1), n);
if (/(aria|data)([A-Z])/.test(e))
return e = e.replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase(), r(e, n);
switch (e === "className" && (e = "class"), e) {
@@ -204,183 +204,177 @@ function nt(t, e, n) {
if (typeof n != "object") break;
/* falls through */
case "dataset":
- return I(o, n, et.bind(null, t[e]));
+ return B(o, n, et.bind(null, t[e]));
case "ariaset":
- return I(o, n, (a, l) => r("aria-" + a, l));
+ return B(o, n, (a, h) => r("aria-" + a, h));
case "classList":
- return gt.call(c, t, n);
+ return ht.call(c, t, n);
}
- return Et(t, e) ? tt(t, e, n) : r(e, n);
+ return gt(t, e) ? tt(t, e, n) : r(e, n);
}
function rt(t, e) {
- if (U.has(t)) return U.get(t);
- let r = (t instanceof d.S ? xt : mt).bind(null, t, "Attribute"), o = W(e);
+ if (F.has(t)) return F.get(t);
+ let r = (t instanceof d.S ? Et : vt).bind(null, t, "Attribute"), o = j(e);
return { setRemoveAttr: r, s: o };
}
-function gt(t, e) {
- let n = W(this);
- return I(
+function ht(t, e) {
+ let n = j(this);
+ return B(
n,
e,
(r, o) => t.classList.toggle(r, o === -1 ? void 0 : !!o)
), t;
}
-function Ft(t) {
- return Array.from(t.children).forEach((e) => e.remove()), t;
-}
-function vt(t, e, n, r) {
+function bt(t, e, n, r) {
return t instanceof d.H ? t[e + "Attribute"](n, r) : t[e + "AttributeNS"](null, n, r);
}
-function Et(t, e) {
+function gt(t, e) {
if (!(e in t)) return !1;
let n = ot(t, e);
- return !S(n.set);
+ return !A(n.set);
}
function ot(t, e) {
if (t = Object.getPrototypeOf(t), !t) return {};
let n = Object.getOwnPropertyDescriptor(t, e);
return n || ot(t, e);
}
-function I(t, e, n) {
+function B(t, e, n) {
if (!(typeof e != "object" || e === null))
return Object.entries(e).forEach(function([o, c]) {
o && (c = t.processReactiveAttribute(e, o, c, n), n(o, c));
});
}
-function ct(t) {
- return Array.isArray(t) ? t.filter(Boolean).join(" ") : t;
+function vt(t, e, n, r) {
+ return t[(A(r) ? "remove" : "set") + e](n, r);
}
-function mt(t, e, n, r) {
- return t[(S(r) ? "remove" : "set") + e](n, ct(r));
-}
-function xt(t, e, n, r, o = null) {
- return t[(S(r) ? "remove" : "set") + e + "NS"](o, n, ct(r));
+function Et(t, e, n, r, o = null) {
+ return t[(A(r) ? "remove" : "set") + e + "NS"](o, n, r);
}
function et(t, e, n) {
- if (Reflect.set(t, e, n), !!S(n))
+ if (Reflect.set(t, e, n), !!A(n))
return Reflect.deleteProperty(t, e);
}
// src/events-observer.js
-var D = d.M ? yt() : new Proxy({}, {
+var C = d.M ? mt() : new Proxy({}, {
get() {
return () => {
};
}
});
-function yt() {
- let t = /* @__PURE__ */ new Map(), e = !1, n = (s) => function(u) {
- for (let f of u)
+function mt() {
+ let t = /* @__PURE__ */ new Map(), e = !1, n = (i) => function(s) {
+ for (let f of s)
if (f.type === "childList") {
- if (h(f.addedNodes, !0)) {
- s();
+ if (l(f.addedNodes, !0)) {
+ i();
continue;
}
- x(f.removedNodes, !0) && s();
+ m(f.removedNodes, !0) && i();
}
}, r = new d.M(n(a));
return {
- observe(s) {
- let u = new d.M(n(() => {
+ observe(i) {
+ let s = new d.M(n(() => {
}));
- return u.observe(s, { childList: !0, subtree: !0 }), () => u.disconnect();
+ return s.observe(i, { childList: !0, subtree: !0 }), () => s.disconnect();
},
- onConnected(s, u) {
- i();
- let f = c(s);
- f.connected.has(u) || (f.connected.add(u), f.length_c += 1);
+ onConnected(i, s) {
+ u();
+ let f = c(i);
+ f.connected.has(s) || (f.connected.add(s), f.length_c += 1);
},
- offConnected(s, u) {
- if (!t.has(s)) return;
- let f = t.get(s);
- f.connected.has(u) && (f.connected.delete(u), f.length_c -= 1, o(s, f));
+ offConnected(i, s) {
+ if (!t.has(i)) return;
+ let f = t.get(i);
+ f.connected.has(s) && (f.connected.delete(s), f.length_c -= 1, o(i, f));
},
- onDisconnected(s, u) {
- i();
- let f = c(s);
- f.disconnected.has(u) || (f.disconnected.add(u), f.length_d += 1);
+ onDisconnected(i, s) {
+ u();
+ let f = c(i);
+ f.disconnected.has(s) || (f.disconnected.add(s), f.length_d += 1);
},
- offDisconnected(s, u) {
- if (!t.has(s)) return;
- let f = t.get(s);
- f.disconnected.has(u) && (f.disconnected.delete(u), f.length_d -= 1, o(s, f));
+ offDisconnected(i, s) {
+ if (!t.has(i)) return;
+ let f = t.get(i);
+ f.disconnected.has(s) && (f.disconnected.delete(s), f.length_d -= 1, o(i, f));
}
};
- function o(s, u) {
- u.length_c || u.length_d || (t.delete(s), a());
+ function o(i, s) {
+ s.length_c || s.length_d || (t.delete(i), a());
}
- function c(s) {
- if (t.has(s)) return t.get(s);
- let u = {
+ function c(i) {
+ if (t.has(i)) return t.get(i);
+ let s = {
connected: /* @__PURE__ */ new WeakSet(),
length_c: 0,
disconnected: /* @__PURE__ */ new WeakSet(),
length_d: 0
};
- return t.set(s, u), u;
+ return t.set(i, s), s;
}
- function i() {
+ function u() {
e || (e = !0, r.observe(d.D.body, { childList: !0, subtree: !0 }));
}
function a() {
!e || t.size || (e = !1, r.disconnect());
}
- function l() {
- return new Promise(function(s) {
- (requestIdleCallback || requestAnimationFrame)(s);
+ function h() {
+ return new Promise(function(i) {
+ (requestIdleCallback || requestAnimationFrame)(i);
});
}
- async function v(s) {
- t.size > 30 && await l();
- let u = [];
- if (!(s instanceof Node)) return u;
+ async function v(i) {
+ t.size > 30 && await h();
+ let s = [];
+ if (!(i instanceof Node)) return s;
for (let f of t.keys())
- f === s || !(f instanceof Node) || s.contains(f) && u.push(f);
- return u;
+ f === i || !(f instanceof Node) || i.contains(f) && s.push(f);
+ return s;
}
- function h(s, u) {
+ function l(i, s) {
let f = !1;
- for (let b of s) {
- if (u && v(b).then(h), !t.has(b)) continue;
- let N = t.get(b);
- N.length_c && (b.dispatchEvent(new Event(_)), N.connected = /* @__PURE__ */ new WeakSet(), N.length_c = 0, N.length_d || t.delete(b), f = !0);
+ for (let b of i) {
+ if (s && v(b).then(l), !t.has(b)) continue;
+ let L = t.get(b);
+ L.length_c && (b.dispatchEvent(new Event(_)), L.connected = /* @__PURE__ */ new WeakSet(), L.length_c = 0, L.length_d || t.delete(b), f = !0);
}
return f;
}
- function x(s, u) {
+ function m(i, s) {
let f = !1;
- for (let b of s)
- u && v(b).then(x), !(!t.has(b) || !t.get(b).length_d) && ((globalThis.queueMicrotask || setTimeout)(w(b)), f = !0);
+ for (let b of i)
+ s && v(b).then(m), !(!t.has(b) || !t.get(b).length_d) && ((globalThis.queueMicrotask || setTimeout)(k(b)), f = !0);
return f;
}
- function w(s) {
+ function k(i) {
return () => {
- s.isConnected || (s.dispatchEvent(new Event(C)), t.delete(s));
+ i.isConnected || (i.dispatchEvent(new Event(S)), t.delete(i));
};
}
}
// src/customElement.js
-function Zt(t, e, n, r = _t) {
- m.push({
+function It(t, e, n, r = wt) {
+ x.push({
scope: t,
- host: (...i) => i.length ? i.forEach((a) => a(t)) : t
+ host: (...u) => u.length ? u.forEach((a) => a(t)) : t
}), typeof r == "function" && (r = r.call(t, t));
let o = t[O];
- o || wt(t);
+ o || xt(t);
let c = n.call(t, r);
- return o || t.dispatchEvent(new Event(_)), e.nodeType === 11 && typeof e.mode == "string" && t.addEventListener(C, D.observe(e), { once: !0 }), m.pop(), e.append(c);
+ return o || t.dispatchEvent(new Event(_)), e.nodeType === 11 && typeof e.mode == "string" && t.addEventListener(S, C.observe(e), { once: !0 }), x.pop(), e.append(c);
}
-function wt(t) {
+function xt(t) {
return J(t.prototype, "connectedCallback", function(e, n, r) {
e.apply(n, r), n.dispatchEvent(new Event(_));
}), J(t.prototype, "disconnectedCallback", function(e, n, r) {
e.apply(n, r), (globalThis.queueMicrotask || setTimeout)(
- () => !n.isConnected && n.dispatchEvent(new Event(C))
+ () => !n.isConnected && n.dispatchEvent(new Event(S))
);
}), J(t.prototype, "attributeChangedCallback", function(e, n, r) {
let [o, , c] = r;
- n.dispatchEvent(new CustomEvent(M, {
+ n.dispatchEvent(new CustomEvent(T, {
detail: [o, c]
})), e.apply(n, r);
}), t.prototype[O] = !0, t;
@@ -389,74 +383,74 @@ function J(t, e, n) {
t[e] = new Proxy(t[e] || (() => {
}), { apply: n });
}
-function _t(t) {
- return F(t, (e, n) => e.getAttribute(n));
+function wt(t) {
+ return W(t, (e, n) => e.getAttribute(n));
}
// src/events.js
-function Qt(t, e, n) {
+function Gt(t, e, n) {
return e || (e = {}), function(o, ...c) {
n && (c.unshift(o), o = typeof n == "function" ? n() : n);
- let i = c.length ? new CustomEvent(t, Object.assign({ detail: c[0] }, e)) : new Event(t, e);
- return o.dispatchEvent(i);
+ let u = c.length ? new CustomEvent(t, Object.assign({ detail: c[0] }, e)) : new Event(t, e);
+ return o.dispatchEvent(u);
};
}
-function y(t, e, n) {
+function w(t, e, n) {
return function(o) {
return o.addEventListener(t, e, n), o;
};
}
-var it = (t) => Object.assign({}, typeof t == "object" ? t : null, { once: !0 });
-y.connected = function(t, e) {
- return e = it(e), function(r) {
- return r.addEventListener(_, t, e), r[O] ? r : r.isConnected ? (r.dispatchEvent(new Event(_)), r) : (q(e.signal, () => D.offConnected(r, t)) && D.onConnected(r, t), r);
+var ct = (t) => Object.assign({}, typeof t == "object" ? t : null, { once: !0 });
+w.connected = function(t, e) {
+ return e = ct(e), function(r) {
+ return r.addEventListener(_, t, e), r[O] ? r : r.isConnected ? (r.dispatchEvent(new Event(_)), r) : (P(e.signal, () => C.offConnected(r, t)) && C.onConnected(r, t), r);
};
};
-y.disconnected = function(t, e) {
- return e = it(e), function(r) {
- return r.addEventListener(C, t, e), r[O] || q(e.signal, () => D.offDisconnected(r, t)) && D.onDisconnected(r, t), r;
+w.disconnected = function(t, e) {
+ return e = ct(e), function(r) {
+ return r.addEventListener(S, t, e), r[O] || P(e.signal, () => C.offDisconnected(r, t)) && C.onDisconnected(r, t), r;
};
};
var Z = /* @__PURE__ */ new WeakMap();
-y.disconnectedAsAbort = function(t) {
+w.disconnectedAsAbort = function(t) {
if (Z.has(t)) return Z.get(t);
let e = new AbortController();
- return Z.set(t, e), t(y.disconnected(() => e.abort())), e;
+ return Z.set(t, e), t(w.disconnected(() => e.abort())), e;
};
-var At = /* @__PURE__ */ new WeakSet();
-y.attributeChanged = function(t, e) {
+var _t = /* @__PURE__ */ new WeakSet();
+w.attributeChanged = function(t, e) {
return typeof e != "object" && (e = {}), function(r) {
- if (r.addEventListener(M, t, e), r[O] || At.has(r) || !d.M) return r;
- let o = new d.M(function(i) {
- for (let { attributeName: a, target: l } of i)
- l.dispatchEvent(
- new CustomEvent(M, { detail: [a, l.getAttribute(a)] })
+ if (r.addEventListener(T, t, e), r[O] || _t.has(r) || !d.M) return r;
+ let o = new d.M(function(u) {
+ for (let { attributeName: a, target: h } of u)
+ h.dispatchEvent(
+ new CustomEvent(T, { detail: [a, h.getAttribute(a)] })
);
});
- return q(e.signal, () => o.disconnect()) && o.observe(r, { attributes: !0 }), r;
+ return P(e.signal, () => o.disconnect()) && o.observe(r, { attributes: !0 }), r;
};
};
// src/signals-lib.js
var p = "__dde_signal";
-function z(t) {
+function U(t) {
try {
- return T(t, p);
+ return I(t, p);
} catch {
return !1;
}
}
-var H = [], g = /* @__PURE__ */ new WeakMap();
+var z = [], g = /* @__PURE__ */ new WeakMap();
function E(t, e) {
if (typeof t != "function")
- return st(!1, t, e);
- if (z(t)) return t;
- let n = st(!0), r = function() {
+ return it(!1, t, e);
+ if (U(t)) return t;
+ let n = it(!0), r = function() {
let [o, ...c] = g.get(r);
- if (g.set(r, /* @__PURE__ */ new Set([o])), H.push(r), dt(n, t()), H.pop(), !c.length) return;
- let i = g.get(r);
+ if (g.set(r, /* @__PURE__ */ new Set([o])), z.push(r), at(n, t()), z.pop(), !c.length) return;
+ let u = g.get(r);
for (let a of c)
- i.has(a) || L(a, r);
+ u.has(a) || R(a, r);
};
return g.set(n[p], r), g.set(r, /* @__PURE__ */ new Set([n])), r(), n;
}
@@ -471,7 +465,7 @@ E.on = function t(e, n, r = {}) {
let { signal: o } = r;
if (!(o && o.aborted)) {
if (Array.isArray(e)) return e.forEach((c) => t(c, n, r));
- Q(e, n), o && o.addEventListener("abort", () => L(e, n));
+ K(e, n), o && o.addEventListener("abort", () => R(e, n));
}
};
E.symbols = {
@@ -491,94 +485,94 @@ E.clear = function(...t) {
});
}
};
-var R = "__dde_reactive";
+var D = "__dde_reactive";
E.el = function(t, e) {
- let n = P.mark({ type: "reactive" }, !0), r = n.end, o = d.D.createDocumentFragment();
+ let n = M.mark({ type: "reactive" }, !0), r = n.end, o = d.D.createDocumentFragment();
o.append(n, r);
- let { current: c } = m, i = {}, a = (l) => {
+ let { current: c } = x, u = {}, a = (h) => {
if (!n.parentNode || !r.parentNode)
- return L(t, a);
- let v = i;
- i = {}, m.push(c);
- let h = e(l, function(u, f) {
+ return R(t, a);
+ let v = u;
+ u = {}, x.push(c);
+ let l = e(h, function(s, f) {
let b;
- return T(v, u) ? (b = v[u], delete v[u]) : b = f(), i[u] = b, b;
+ return I(v, s) ? (b = v[s], delete v[s]) : b = f(), u[s] = b, b;
});
- m.pop(), Array.isArray(h) || (h = [h]);
- let x = document.createComment("");
- h.push(x), n.after(...h);
- let w;
- for (; (w = x.nextSibling) && w !== r; )
- w.remove();
- x.remove(), n.isConnected && St(c.host());
+ x.pop(), Array.isArray(l) || (l = [l]);
+ let m = document.createComment("");
+ l.push(m), n.after(...l);
+ let k;
+ for (; (k = m.nextSibling) && k !== r; )
+ k.remove();
+ m.remove(), n.isConnected && yt(c.host());
};
- return Q(t, a), ft(t, a, n, e), a(t()), o;
+ return K(t, a), ut(t, a, n, e), a(t()), o;
};
-function St(t) {
- !t || !t[R] || (requestIdleCallback || setTimeout)(function() {
- t[R] = t[R].filter(([e, n]) => n.isConnected ? !0 : (L(...e), !1));
+function yt(t) {
+ !t || !t[D] || (requestIdleCallback || setTimeout)(function() {
+ t[D] = t[D].filter(([e, n]) => n.isConnected ? !0 : (R(...e), !1));
});
}
-var Ot = {
+var At = {
_set(t) {
this.value = t;
}
};
-function Ct(t) {
+function Ot(t) {
return function(e, n) {
- let r = (...c) => c.length ? e.setAttribute(n, ...c) : K(r), o = at(r, e.getAttribute(n), Ot);
+ let r = (...c) => c.length ? e.setAttribute(n, ...c) : V(r), o = ft(r, e.getAttribute(n), At);
return t[n] = o, o;
};
}
var G = "__dde_attributes";
E.observedAttributes = function(t) {
- let e = t[G] = {}, n = F(t, Ct(e));
- return y.attributeChanged(function({ detail: o }) {
+ let e = t[G] = {}, n = W(t, Ot(e));
+ return w.attributeChanged(function({ detail: o }) {
/*! This maps attributes to signals (`S.observedAttributes`).
* Investigate `__dde_attributes` key of the element.*/
- let [c, i] = o, a = this[G][c];
- if (a) return E.action(a, "_set", i);
- })(t), y.disconnected(function() {
+ let [c, u] = o, a = this[G][c];
+ if (a) return E.action(a, "_set", u);
+ })(t), w.disconnected(function() {
/*! This removes all signals mapped to attributes (`S.observedAttributes`).
* Investigate `__dde_attributes` key of the element.*/
E.clear(...Object.values(this[G]));
})(t), n;
};
-var ut = {
- isSignal: z,
+var st = {
+ isSignal: U,
processReactiveAttribute(t, e, n, r) {
- if (!z(n)) return n;
+ if (!U(n)) return n;
let o = (c) => {
if (!t.isConnected)
- return L(n, o);
+ return R(n, o);
r(e, c);
};
- return Q(n, o), ft(n, o, t, e), n();
+ return K(n, o), ut(n, o, t, e), n();
}
};
-function ft(t, e, ...n) {
- let { current: r } = m;
+function ut(t, e, ...n) {
+ let { current: r } = x;
r.prevent || r.host(function(o) {
- o[R] || (o[R] = [], y.disconnected(
+ o[D] || (o[D] = [], w.disconnected(
() => (
/*!
* Clears all Signals listeners added in the current scope/host (`S.el`, `assign`, …?).
* You can investigate the `__dde_reactive` key of the element.
* */
- o[R].forEach(([[c, i]]) => L(c, i, c[p] && c[p].host && c[p].host() === o))
+ o[D].forEach(([[c, u]]) => R(c, u, c[p] && c[p].host && c[p].host() === o))
)
- )(o)), o[R].push([[t, e], ...n]);
+ )(o)), o[D].push([[t, e], ...n]);
});
}
-function st(t, e, n) {
- let r = t ? () => K(r) : (...o) => o.length ? dt(r, ...o) : K(r);
- return at(r, e, n, t);
+function it(t, e, n) {
+ let r = t ? () => V(r) : (...o) => o.length ? at(r, ...o) : V(r);
+ return ft(r, e, n, t);
}
-var Dt = Object.assign(/* @__PURE__ */ Object.create(null), {
+var St = Object.assign(/* @__PURE__ */ Object.create(null), {
stopPropagation() {
this.skip = !0;
}
-}), V = class extends Error {
+}), Q = class extends Error {
constructor() {
super();
let [e, ...n] = this.stack.split(`
@@ -586,46 +580,46 @@ var Dt = Object.assign(/* @__PURE__ */ Object.create(null), {
this.stack = n.find((o) => !o.includes(r));
}
};
-function at(t, e, n, r = !1) {
+function ft(t, e, n, r = !1) {
let o = [];
X(n) !== "[object Object]" && (n = {});
let { onclear: c } = E.symbols;
n[c] && (o.push(n[c]), delete n[c]);
- let { host: i } = m;
+ let { host: u } = x;
return Reflect.defineProperty(t, p, {
value: {
value: e,
actions: n,
onclear: o,
- host: i,
+ host: u,
listeners: /* @__PURE__ */ new Set(),
- defined: new V().stack,
+ defined: new Q().stack,
readonly: r
},
enumerable: !1,
writable: !1,
configurable: !0
- }), t.toJSON = () => t(), t.valueOf = () => t[p] && t[p].value, Object.setPrototypeOf(t[p], Dt), t;
+ }), t.toJSON = () => t(), t.valueOf = () => t[p] && t[p].value, Object.setPrototypeOf(t[p], St), t;
}
-function Rt() {
- return H[H.length - 1];
+function Ct() {
+ return z[z.length - 1];
}
-function K(t) {
+function V(t) {
if (!t[p]) return;
- let { value: e, listeners: n } = t[p], r = Rt();
+ let { value: e, listeners: n } = t[p], r = Ct();
return r && n.add(r), g.has(r) && g.get(r).add(t), e;
}
-function dt(t, e, n) {
+function at(t, e, n) {
if (!t[p]) return;
let r = t[p];
if (!(!n && r.value === e))
return r.value = e, r.listeners.forEach((o) => o(e)), e;
}
-function Q(t, e) {
+function K(t, e) {
if (t[p])
return t[p].listeners.add(e);
}
-function L(t, e, n) {
+function R(t, e, n) {
let r = t[p];
if (!r) return;
let o = r.listeners.delete(e);
@@ -633,34 +627,34 @@ function L(t, e, n) {
if (E.clear(t), !g.has(r)) return o;
let c = g.get(r);
if (!g.has(c)) return o;
- g.get(c).forEach((i) => L(i, c, !0));
+ g.get(c).forEach((u) => R(u, c, !0));
}
return o;
}
// signals.js
-B(ut);
+H(st);
export {
E as S,
- j as assign,
+ q as assign,
nt as assignAttribute,
- ht as chainableAppend,
- gt as classListDeclarative,
- P as createElement,
- qt as createElementNS,
- Zt as customElementRender,
- wt as customElementWithDDE,
- Qt as dispatchEvent,
- P as el,
- qt as elNS,
- vt as elementAttribute,
- Ft as empty,
- z as isSignal,
- wt as lifecyclesToEvents,
- _t as observedAttributes,
- y as on,
- B as registerReactivity,
- m as scope,
+ Mt as asyncQueueAdd,
+ lt as chainableAppend,
+ ht as classListDeclarative,
+ M as createElement,
+ jt as createElementNS,
+ It as customElementRender,
+ xt as customElementWithDDE,
+ Gt as dispatchEvent,
+ M as el,
+ jt as elNS,
+ bt as elementAttribute,
+ U as isSignal,
+ xt as lifecyclesToEvents,
+ wt as observedAttributes,
+ w as on,
+ H as registerReactivity,
+ x as scope,
E as signal,
- Wt as simulateSlots
+ Pt as simulateSlots
};
diff --git a/dist/esm.d.ts b/dist/esm.d.ts
index 4656d84..6d1fd8a 100644
--- a/dist/esm.d.ts
+++ b/dist/esm.d.ts
@@ -1,13 +1,15 @@
declare global{ /* ddeSignal */ }
type CustomElementTagNameMap= { '#text': Text, '#comment': Comment }
type SupportedElement=
- HTMLElementTagNameMap[keyof HTMLElementTagNameMap]
- | SVGElementTagNameMap[keyof SVGElementTagNameMap]
- | MathMLElementTagNameMap[keyof MathMLElementTagNameMap]
- | CustomElementTagNameMap[keyof CustomElementTagNameMap]
+ HTMLElementTagNameMap[keyof HTMLElementTagNameMap]
+ | SVGElementTagNameMap[keyof SVGElementTagNameMap]
+ | MathMLElementTagNameMap[keyof MathMLElementTagNameMap]
+ | CustomElementTagNameMap[keyof CustomElementTagNameMap]
declare global {
type ddeComponentAttributes= Record | undefined;
- type ddeElementAddon= (element: El)=> El | void;
+ type ddeElementAddon= (element: El)=> any;
+ type ddeString= string | ddeSignal
+ type ddeStringable= ddeString | number | ddeSignal
}
type PascalCase=
`${Capitalize}${string}`;
@@ -15,50 +17,72 @@ type AttrsModified= {
/**
* Use string like in HTML (internally uses `*.setAttribute("style", *)`), or object representation (like DOM API).
*/
- style: string | Partial | ddeSignal | Partial<{ [K in keyof CSSStyleDeclaration]: ddeSignal }>
+ style: Partial | ddeString
+ | Partial<{ [K in keyof CSSStyleDeclaration]: ddeSignal }>
/**
- * Provide option to add/remove/toggle CSS clasess (index of object) using 1/0/-1. In fact `el.classList.toggle(class_name)` for `-1` and `el.classList.toggle(class_name, Boolean(...))` for others.
+ * Provide option to add/remove/toggle CSS clasess (index of object) using 1/0/-1.
+ * In fact `el.classList.toggle(class_name)` for `-1` and `el.classList.toggle(class_name, Boolean(...))`
+ * for others.
*/
classList: Record>,
/**
- * By default simiral to `className`, but also supports `string[]`
+ * Used by the dataset HTML attribute to represent data for custom attributes added to elements.
+ * Values are converted to string (see {@link DOMStringMap}).
+ *
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMStringMap)
* */
- className: string | (string|boolean|undefined|ddeSignal)[];
+ dataset: Record,
/**
* Sets `aria-*` simiraly to `dataset`
* */
- ariaset: Record>,
-} & Record<`=${string}` | `data${PascalCase}` | `aria${PascalCase}`, string|ddeSignal> & Record<`.${string}`, any>
+ ariaset: Record,
+} & Record<`=${string}` | `data${PascalCase}` | `aria${PascalCase}`, ddeString>
+ & Record<`.${string}`, any>
type _fromElsInterfaces= Omit;
+type IsReadonly =
+ T extends { readonly [P in K]: T[K] } ? true : false;
/**
* Just element attributtes
*
- * In most cases, you can use native propertie such as [MDN WEB/API/Element](https://developer.mozilla.org/en-US/docs/Web/API/Element) and so on (e.g. [`Text`](https://developer.mozilla.org/en-US/docs/Web/API/Text)).
+ * In most cases, you can use native propertie such as
+ * [MDN WEB/API/Element](https://developer.mozilla.org/en-US/docs/Web/API/Element) and so on
+ * (e.g. [`Text`](https://developer.mozilla.org/en-US/docs/Web/API/Text)).
*
* There is added support for `data[A-Z].*`/`aria[A-Z].*` to be converted to the kebab-case alternatives.
* @private
*/
-type ElementAttributes= Partial<{ [K in keyof _fromElsInterfaces]: _fromElsInterfaces[K] | ddeSignal<_fromElsInterfaces[K]> } & AttrsModified> & Record;
-export function classListDeclarative(element: El, classList: AttrsModified["classList"]): El
+type ElementAttributes= Partial<{
+ [K in keyof _fromElsInterfaces]: IsReadonly<_fromElsInterfaces, K> extends false
+ ? _fromElsInterfaces[K] | ddeSignal<_fromElsInterfaces[K]>
+ : ddeStringable
+} & AttrsModified> & Record;
+export function classListDeclarative(
+ element: El,
+ classList: AttrsModified["classList"]
+): El
export function assign(element: El, ...attrs_array: ElementAttributes[]): El
-export function assignAttribute>(element: El, attr: ATT, value: ElementAttributes[ATT]): ElementAttributes[ATT]
+export function assignAttribute>(
+ element: El,
+ attr: ATT,
+ value: ElementAttributes[ATT]
+): ElementAttributes[ATT]
type ExtendedHTMLElementTagNameMap= HTMLElementTagNameMap & CustomElementTagNameMap;
-type textContent= string | ddeSignal;
export function el<
TAG extends keyof ExtendedHTMLElementTagNameMap,
- EL extends ExtendedHTMLElementTagNameMap[TAG]
>(
tag_name: TAG,
- attrs?: ElementAttributes | textContent,
- ...addons: ddeElementAddon[]
+ attrs?: ElementAttributes]> | ddeStringable,
+ ...addons: ddeElementAddon<
+ ExtendedHTMLElementTagNameMap[NoInfer]
+ >[], // TODO: for now addons must have the same element
): TAG extends keyof ddeHTMLElementTagNameMap ? ddeHTMLElementTagNameMap[TAG] : ddeHTMLElement
export function el(
tag_name?: "<>",
): ddeDocumentFragment
export function el(
tag_name: string,
- attrs?: ElementAttributes | textContent,
+ attrs?: ElementAttributes | ddeStringable,
...addons: ddeElementAddon[]
): ddeHTMLElement
@@ -66,9 +90,11 @@ export function el<
C extends (attr: ddeComponentAttributes)=> SupportedElement | ddeDocumentFragment
>(
component: C,
- attrs?: Parameters[0] | textContent,
+ attrs?: Parameters[0] | ddeStringable,
...addons: ddeElementAddon>[]
-): ReturnType extends ddeHTMLElementTagNameMap[keyof ddeHTMLElementTagNameMap] ? ReturnType : ( ReturnType extends ddeDocumentFragment ? ReturnType : ddeHTMLElement )
+): ReturnType extends ddeHTMLElementTagNameMap[keyof ddeHTMLElementTagNameMap]
+ ? ReturnType
+ : ( ReturnType extends ddeDocumentFragment ? ReturnType : ddeHTMLElement )
export { el as createElement }
export function elNS(
@@ -78,8 +104,8 @@ export function elNS(
EL extends ( TAG extends keyof SVGElementTagNameMap ? SVGElementTagNameMap[TAG] : SVGElement ),
>(
tag_name: TAG,
- attrs?: ElementAttributes | textContent,
- ...addons: ddeElementAddon[]
+ attrs?: ElementAttributes> | ddeStringable,
+ ...addons: ddeElementAddon>[]
)=> TAG extends keyof ddeSVGElementTagNameMap ? ddeSVGElementTagNameMap[TAG] : ddeSVGElement
export function elNS(
namespace: "http://www.w3.org/1998/Math/MathML"
@@ -88,54 +114,60 @@ export function elNS(
EL extends ( TAG extends keyof MathMLElementTagNameMap ? MathMLElementTagNameMap[TAG] : MathMLElement ),
>(
tag_name: TAG,
- attrs?: string | textContent | Partial<{ [key in keyof EL]: EL[key] | ddeSignal | string | number | boolean }>,
- ...addons: ddeElementAddon[]
+ attrs?: ddeStringable | Partial<{
+ [key in keyof EL]: EL[key] | ddeSignal | string | number | boolean
+ }>,
+ ...addons: ddeElementAddon>[]
)=> ddeMathMLElement
export function elNS(
namespace: string
): (
tag_name: string,
- attrs?: string | textContent | Record,
+ attrs?: string | ddeStringable | Record,
...addons: ddeElementAddon[]
)=> SupportedElement
export { elNS as createElementNS }
export function chainableAppend(el: EL): EL;
-/**
- * Mapper function (optional). Pass for coppying attributes, this is NOT implemented by {@link simulateSlots} itself!
- * */
-type simulateSlotsMapper= (body: HTMLSlotElement, el: HTMLElement)=> void;
/** Simulate slots for ddeComponents */
-export function simulateSlots(root: EL, mapper?: simulateSlotsMapper): EL
+export function simulateSlots(
+ root: EL,
+): EL
/**
* Simulate slots in Custom Elements without using `shadowRoot`.
* @param el Custom Element root element
* @param body Body of the custom element
* */
-export function simulateSlots(el: HTMLElement, body: EL, mapper?: simulateSlotsMapper): EL
+export function simulateSlots(
+ el: HTMLElement,
+ body: EL,
+): EL
export function dispatchEvent(name: keyof DocumentEventMap | string, options?: EventInit):
(element: SupportedElement, data?: any)=> void;
-export function dispatchEvent(name: keyof DocumentEventMap | string, options: EventInit | null, element: SupportedElement | (()=> SupportedElement)):
- (data?: any)=> void;
+export function dispatchEvent(
+ name: keyof DocumentEventMap | string,
+ options: EventInit | null,
+ element: SupportedElement | (()=> SupportedElement)
+): (data?: any)=> void;
interface On{
/** Listens to the DOM event. See {@link Document.addEventListener} */
<
- EE extends ddeElementAddon,
- El extends ( EE extends ddeElementAddon ? El : never ),
- Event extends keyof DocumentEventMap>(
+ Event extends keyof DocumentEventMap,
+ EE extends ddeElementAddon= ddeElementAddon,
+ >(
type: Event,
- listener: (this: El, ev: DocumentEventMap[Event]) => any,
+ listener: (this: EE extends ddeElementAddon ? El : never, ev: DocumentEventMap[Event]) => any,
options?: AddEventListenerOptions
) : EE;
<
- EE extends ddeElementAddon,
- El extends ( EE extends ddeElementAddon ? El : never )>(
+ EE extends ddeElementAddon= ddeElementAddon,
+ >(
type: string,
- listener: (this: El, ev: Event | CustomEvent ) => any,
+ listener: (this: EE extends ddeElementAddon ? El : never, ev: Event | CustomEvent ) => any,
options?: AddEventListenerOptions
) : EE;
- /** Listens to the element is connected to the live DOM. In case of custom elements uses [`connectedCallback`](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements#custom_element_lifecycle_callbacks), or {@link MutationObserver} else where */
+ /** Listens to the element is connected to the live DOM. In case of custom elements uses [`connectedCallback`](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements#custom_element_lifecycle_callbacks), or {@link MutationObserver} else where */// editorconfig-checker-disable-line
connected<
EE extends ddeElementAddon,
El extends ( EE extends ddeElementAddon ? El : never )
@@ -143,7 +175,7 @@ interface On{
listener: (this: El, event: CustomEvent) => any,
options?: AddEventListenerOptions
) : EE;
- /** Listens to the element is disconnected from the live DOM. In case of custom elements uses [`disconnectedCallback`](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements#custom_element_lifecycle_callbacks), or {@link MutationObserver} else where */
+ /** Listens to the element is disconnected from the live DOM. In case of custom elements uses [`disconnectedCallback`](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements#custom_element_lifecycle_callbacks), or {@link MutationObserver} else where */// editorconfig-checker-disable-line
disconnected<
EE extends ddeElementAddon,
El extends ( EE extends ddeElementAddon ? El : never )
@@ -151,7 +183,7 @@ interface On{
listener: (this: El, event: CustomEvent) => any,
options?: AddEventListenerOptions
) : EE;
- /** Listens to the element attribute changes. In case of custom elements uses [`attributeChangedCallback`](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements#custom_element_lifecycle_callbacks), or {@link MutationObserver} else where */
+ /** Listens to the element attribute changes. In case of custom elements uses [`attributeChangedCallback`](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements#custom_element_lifecycle_callbacks), or {@link MutationObserver} else where */// editorconfig-checker-disable-line
attributeChanged<
EE extends ddeElementAddon,
El extends ( EE extends ddeElementAddon ? El : never )
@@ -162,7 +194,12 @@ interface On{
}
export const on: On;
-type Scope= { scope: Node | Function | Object, host: ddeElementAddon, custom_element: false | HTMLElement, prevent: boolean }
+type Scope= {
+ scope: Node | Function | Object,
+ host: ddeElementAddon,
+ custom_element: false | HTMLElement,
+ prevent: boolean
+};
/** Current scope created last time the `el(Function)` was invoke. (Or {@link scope.push}) */
export const scope: {
current: Scope,
@@ -176,7 +213,7 @@ export const scope: {
* — `scope.host(on.connected(console.log))`.
* */
host: (...addons: ddeElementAddon[])=> HTMLElement,
-
+
state: Scope[],
/** Adds new child scope. All attributes are inherited by default. */
push(scope: Partial): ReturnType["push"]>,
@@ -202,12 +239,12 @@ export function observedAttributes(custom_element: HTMLElement): Record= (...nodes: (Node | string)[])=> el;
-
+
interface ddeDocumentFragment extends DocumentFragment{ append: ddeAppend; }
interface ddeHTMLElement extends HTMLElement{ append: ddeAppend; }
interface ddeSVGElement extends SVGElement{ append: ddeAppend; }
interface ddeMathMLElement extends MathMLElement{ append: ddeAppend; }
-
+
interface ddeHTMLElementTagNameMap {
"a": ddeHTMLAnchorElement;
"area": ddeHTMLAreaElement;
@@ -350,6 +387,7 @@ declare global{
}
}
+// editorconfig-checker-disable
interface ddeHTMLAnchorElement extends HTMLAnchorElement{ append: ddeAppend; }
interface ddeHTMLAreaElement extends HTMLAreaElement{ append: ddeAppend; }
interface ddeHTMLAudioElement extends HTMLAudioElement{ append: ddeAppend; }
@@ -476,4 +514,5 @@ interface ddeSVGTextPathElement extends SVGTextPathElement{ append: ddeAppend; }
interface ddeSVGTSpanElement extends SVGTSpanElement{ append: ddeAppend; }
interface ddeSVGUseElement extends SVGUseElement{ append: ddeAppend; }
-interface ddeSVGViewElement extends SVGViewElement{ append: ddeAppend; }
\ No newline at end of file
+interface ddeSVGViewElement extends SVGViewElement{ append: ddeAppend; }
+// editorconfig-checker-enable
\ No newline at end of file
diff --git a/dist/esm.js b/dist/esm.js
index a5e5b75..dd954e2 100644
--- a/dist/esm.js
+++ b/dist/esm.js
@@ -7,19 +7,18 @@ var C = {
return n;
}
};
-function V(t, e = !0) {
+function Z(t, e = !0) {
return e ? Object.assign(C, t) : (Object.setPrototypeOf(t, C), t);
}
-function L(t) {
+function S(t) {
return C.isPrototypeOf(t) && t !== C ? t : C;
}
// src/helpers.js
-var q = (...t) => Object.prototype.hasOwnProperty.call(...t);
-function E(t) {
+function x(t) {
return typeof t > "u";
}
-function N(t, e) {
+function L(t, e) {
if (!t || !(t instanceof AbortSignal))
return !0;
if (!t.aborted)
@@ -27,46 +26,51 @@ function N(t, e) {
t.removeEventListener("abort", e);
};
}
-function F(t, e) {
+function W(t, e) {
let { observedAttributes: n = [] } = t.constructor;
return n.reduce(function(r, o) {
- return r[J(o)] = e(t, o), r;
+ return r[G(o)] = e(t, o), r;
}, {});
}
-function J(t) {
+function G(t) {
return t.replace(/-./g, (e) => e[1].toUpperCase());
}
// src/dom-common.js
-var a = {
- setDeleteAttr: K,
+var f = {
+ setDeleteAttr: Q,
ssr: "",
D: globalThis.document,
F: globalThis.DocumentFragment,
H: globalThis.HTMLElement,
S: globalThis.SVGElement,
- M: globalThis.MutationObserver
+ M: globalThis.MutationObserver,
+ qa: (t) => t,
+ qw: () => Promise.resolve()
};
-function K(t, e, n) {
- if (Reflect.set(t, e, n), !!E(n)) {
- if (Reflect.deleteProperty(t, e), t instanceof a.H && t.getAttribute(e) === "undefined")
+function Q(t, e, n) {
+ if (Reflect.set(t, e, n), !!x(n)) {
+ if (Reflect.deleteProperty(t, e), t instanceof f.H && t.getAttribute(e) === "undefined")
return t.removeAttribute(e);
if (Reflect.get(t, e) === "undefined")
return Reflect.set(t, e, "");
}
}
-var x = "__dde_lifecyclesToEvents", g = "dde:connected", y = "dde:disconnected", D = "dde:attributeChanged";
+var w = "__dde_lifecyclesToEvents", v = "dde:connected", m = "dde:disconnected", O = "dde:attributeChanged";
// src/dom.js
-var v = [{
+function dt(t) {
+ return f.qa(t);
+}
+var g = [{
get scope() {
- return a.D.body;
+ return f.D.body;
},
- host: (t) => t ? t(a.D.body) : a.D.body,
+ host: (t) => t ? t(f.D.body) : f.D.body,
prevent: !0
-}], S = {
+}], D = {
get current() {
- return v[v.length - 1];
+ return g[g.length - 1];
},
get host() {
return this.current.host;
@@ -76,166 +80,158 @@ var v = [{
return t.prevent = !0, t;
},
get state() {
- return [...v];
+ return [...g];
},
push(t = {}) {
- return v.push(Object.assign({}, this.current, { prevent: !1 }, t));
+ return g.push(Object.assign({}, this.current, { prevent: !1 }, t));
},
pushRoot() {
- return v.push(v[0]);
+ return g.push(g[0]);
},
pop() {
- if (v.length !== 1)
- return v.pop();
+ if (g.length !== 1)
+ return g.pop();
}
};
-function $(...t) {
+function q(...t) {
return this.appendOriginal(...t), this;
}
-function Q(t) {
- return t.append === $ || (t.appendOriginal = t.append, t.append = $), t;
+function V(t) {
+ return t.append === q || (t.appendOriginal = t.append, t.append = q), t;
}
var T;
-function j(t, e, ...n) {
- let r = L(this), o = 0, c, f;
+function P(t, e, ...n) {
+ let r = S(this), o = 0, c, a;
switch ((Object(e) !== e || r.isSignal(e)) && (e = { textContent: e }), !0) {
case typeof t == "function": {
- o = 1, S.push({ scope: t, host: (...b) => b.length ? (o === 1 ? n.unshift(...b) : b.forEach((h) => h(f)), void 0) : f }), c = t(e || void 0);
- let d = c instanceof a.F;
+ o = 1;
+ let d = (...h) => h.length ? (o === 1 ? n.unshift(...h) : h.forEach((E) => E(a)), void 0) : a;
+ D.push({ scope: t, host: d }), c = t(e || void 0);
+ let p = c instanceof f.F;
if (c.nodeName === "#comment") break;
- let p = j.mark({
+ let b = P.mark({
type: "component",
name: t.name,
- host: d ? "this" : "parentElement"
+ host: p ? "this" : "parentElement"
});
- c.prepend(p), d && (f = p);
+ c.prepend(b), p && (a = b);
break;
}
case t === "#text":
- c = O.call(this, a.D.createTextNode(""), e);
+ c = R.call(this, f.D.createTextNode(""), e);
break;
case (t === "<>" || !t):
- c = O.call(this, a.D.createDocumentFragment(), e);
+ c = R.call(this, f.D.createDocumentFragment(), e);
break;
case !!T:
- c = O.call(this, a.D.createElementNS(T, t), e);
+ c = R.call(this, f.D.createElementNS(T, t), e);
break;
case !c:
- c = O.call(this, a.D.createElement(t), e);
+ c = R.call(this, f.D.createElement(t), e);
}
- return Q(c), f || (f = c), n.forEach((d) => d(f)), o && S.pop(), o = 2, c;
+ return V(c), a || (a = c), n.forEach((d) => d(a)), o && D.pop(), o = 2, c;
}
-function bt(t, e, n) {
- typeof e != "object" && (n = e, e = t);
- let r = Symbol.for("default"), o = Array.from(e.querySelectorAll("slot")).reduce((f, d) => Reflect.set(f, d.name || r, d) && f, {}), c = q(o, r);
- if (t.append = new Proxy(t.append, {
- apply(f, d, p) {
- if (p[0] === e) return f.apply(t, p);
- if (!p.length) return t;
- let b = a.D.createDocumentFragment();
- for (let h of p) {
- if (!h || !h.slot) {
- c && b.append(h);
- continue;
- }
- let A = h.slot, _ = o[A];
- tt(h, "remove", "slot"), _ && (X(_, h, n), Reflect.deleteProperty(o, A));
- }
- return c && (o[r].replaceWith(b), Reflect.deleteProperty(o, r)), t.append = f, t;
- }
- }), t !== e) {
- let f = Array.from(t.childNodes);
- f.forEach((d) => d.remove()), t.append(...f);
- }
- return e;
-}
-function X(t, e, n) {
- n && n(t, e);
- try {
- t.replaceWith(O(e, { className: [e.className, t.className], dataset: { ...t.dataset } }));
- } catch {
- t.replaceWith(e);
- }
-}
-j.mark = function(t, e = !1) {
+P.mark = function(t, e = !1) {
t = Object.entries(t).map(([o, c]) => o + `="${c}"`).join(" ");
- let n = e ? "" : "/", r = a.D.createComment(``);
- return e && (r.end = a.D.createComment("")), r;
+ let n = e ? "" : "/", r = f.D.createComment(``);
+ return e && (r.end = f.D.createComment("")), r;
};
-function gt(t) {
+function pt(t) {
let e = this;
return function(...r) {
T = t;
- let o = j.call(e, ...r);
+ let o = P.call(e, ...r);
return T = void 0, o;
};
}
-var P = /* @__PURE__ */ new WeakMap(), { setDeleteAttr: U } = a;
-function O(t, ...e) {
- if (!e.length) return t;
- P.set(t, B(t, this));
- for (let [n, r] of Object.entries(Object.assign({}, ...e)))
- z.call(this, t, n, r);
- return P.delete(t), t;
+function ht(t, e = t) {
+ let n = "\xB9\u2070", r = "\u2713", o = Object.fromEntries(
+ Array.from(e.querySelectorAll("slot")).filter((c) => !c.name.endsWith(n)).map((c) => [c.name += n, c])
+ );
+ if (t.append = new Proxy(t.append, {
+ apply(c, a, d) {
+ if (d[0] === e) return c.apply(t, d);
+ for (let p of d) {
+ let b = (p.slot || "") + n;
+ try {
+ K(p, "remove", "slot");
+ } catch {
+ }
+ let h = o[b];
+ if (!h) return;
+ h.name.startsWith(r) || (h.childNodes.forEach((E) => E.remove()), h.name = r + b), h.append(p);
+ }
+ return t.append = c, t;
+ }
+ }), t !== e) {
+ let c = Array.from(t.childNodes);
+ t.append(...c);
+ }
+ return e;
}
-function z(t, e, n) {
- let { setRemoveAttr: r, s: o } = B(t, this), c = this;
+var N = /* @__PURE__ */ new WeakMap(), { setDeleteAttr: $ } = f;
+function R(t, ...e) {
+ if (!e.length) return t;
+ N.set(t, H(t, this));
+ for (let [n, r] of Object.entries(Object.assign({}, ...e)))
+ U.call(this, t, n, r);
+ return N.delete(t), t;
+}
+function U(t, e, n) {
+ let { setRemoveAttr: r, s: o } = H(t, this), c = this;
n = o.processReactiveAttribute(
t,
e,
n,
- (d, p) => z.call(c, t, d, p)
+ (d, p) => U.call(c, t, d, p)
);
- let [f] = e;
- if (f === "=") return r(e.slice(1), n);
- if (f === ".") return H(t, e.slice(1), n);
+ let [a] = e;
+ if (a === "=") return r(e.slice(1), n);
+ if (a === ".") return F(t, e.slice(1), n);
if (/(aria|data)([A-Z])/.test(e))
return e = e.replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase(), r(e, n);
switch (e === "className" && (e = "class"), e) {
case "xlink:href":
return r(e, n, "http://www.w3.org/1999/xlink");
case "textContent":
- return U(t, e, n);
+ return $(t, e, n);
case "style":
if (typeof n != "object") break;
/* falls through */
case "dataset":
- return M(o, n, H.bind(null, t[e]));
+ return M(o, n, F.bind(null, t[e]));
case "ariaset":
return M(o, n, (d, p) => r("aria-" + d, p));
case "classList":
- return Y.call(c, t, n);
+ return J.call(c, t, n);
}
- return et(t, e) ? U(t, e, n) : r(e, n);
+ return X(t, e) ? $(t, e, n) : r(e, n);
}
-function B(t, e) {
- if (P.has(t)) return P.get(t);
- let r = (t instanceof a.S ? rt : nt).bind(null, t, "Attribute"), o = L(e);
+function H(t, e) {
+ if (N.has(t)) return N.get(t);
+ let r = (t instanceof f.S ? tt : Y).bind(null, t, "Attribute"), o = S(e);
return { setRemoveAttr: r, s: o };
}
-function Y(t, e) {
- let n = L(this);
+function J(t, e) {
+ let n = S(this);
return M(
n,
e,
(r, o) => t.classList.toggle(r, o === -1 ? void 0 : !!o)
), t;
}
-function vt(t) {
- return Array.from(t.children).forEach((e) => e.remove()), t;
+function K(t, e, n, r) {
+ return t instanceof f.H ? t[e + "Attribute"](n, r) : t[e + "AttributeNS"](null, n, r);
}
-function tt(t, e, n, r) {
- return t instanceof a.H ? t[e + "Attribute"](n, r) : t[e + "AttributeNS"](null, n, r);
-}
-function et(t, e) {
+function X(t, e) {
if (!(e in t)) return !1;
- let n = I(t, e);
- return !E(n.set);
+ let n = z(t, e);
+ return !x(n.set);
}
-function I(t, e) {
+function z(t, e) {
if (t = Object.getPrototypeOf(t), !t) return {};
let n = Object.getOwnPropertyDescriptor(t, e);
- return n || I(t, e);
+ return n || z(t, e);
}
function M(t, e, n) {
if (!(typeof e != "object" || e === null))
@@ -243,213 +239,210 @@ function M(t, e, n) {
o && (c = t.processReactiveAttribute(e, o, c, n), n(o, c));
});
}
-function Z(t) {
- return Array.isArray(t) ? t.filter(Boolean).join(" ") : t;
+function Y(t, e, n, r) {
+ return t[(x(r) ? "remove" : "set") + e](n, r);
}
-function nt(t, e, n, r) {
- return t[(E(r) ? "remove" : "set") + e](n, Z(r));
+function tt(t, e, n, r, o = null) {
+ return t[(x(r) ? "remove" : "set") + e + "NS"](o, n, r);
}
-function rt(t, e, n, r, o = null) {
- return t[(E(r) ? "remove" : "set") + e + "NS"](o, n, Z(r));
-}
-function H(t, e, n) {
- if (Reflect.set(t, e, n), !!E(n))
+function F(t, e, n) {
+ if (Reflect.set(t, e, n), !!x(n))
return Reflect.deleteProperty(t, e);
}
// src/events-observer.js
-var w = a.M ? ot() : new Proxy({}, {
+var y = f.M ? et() : new Proxy({}, {
get() {
return () => {
};
}
});
-function ot() {
- let t = /* @__PURE__ */ new Map(), e = !1, n = (i) => function(u) {
- for (let s of u)
- if (s.type === "childList") {
- if (h(s.addedNodes, !0)) {
- i();
+function et() {
+ let t = /* @__PURE__ */ new Map(), e = !1, n = (s) => function(u) {
+ for (let i of u)
+ if (i.type === "childList") {
+ if (h(i.addedNodes, !0)) {
+ s();
continue;
}
- A(s.removedNodes, !0) && i();
+ E(i.removedNodes, !0) && s();
}
- }, r = new a.M(n(d));
+ }, r = new f.M(n(d));
return {
- observe(i) {
- let u = new a.M(n(() => {
+ observe(s) {
+ let u = new f.M(n(() => {
}));
- return u.observe(i, { childList: !0, subtree: !0 }), () => u.disconnect();
+ return u.observe(s, { childList: !0, subtree: !0 }), () => u.disconnect();
},
- onConnected(i, u) {
- f();
- let s = c(i);
- s.connected.has(u) || (s.connected.add(u), s.length_c += 1);
+ onConnected(s, u) {
+ a();
+ let i = c(s);
+ i.connected.has(u) || (i.connected.add(u), i.length_c += 1);
},
- offConnected(i, u) {
- if (!t.has(i)) return;
- let s = t.get(i);
- s.connected.has(u) && (s.connected.delete(u), s.length_c -= 1, o(i, s));
+ offConnected(s, u) {
+ if (!t.has(s)) return;
+ let i = t.get(s);
+ i.connected.has(u) && (i.connected.delete(u), i.length_c -= 1, o(s, i));
},
- onDisconnected(i, u) {
- f();
- let s = c(i);
- s.disconnected.has(u) || (s.disconnected.add(u), s.length_d += 1);
+ onDisconnected(s, u) {
+ a();
+ let i = c(s);
+ i.disconnected.has(u) || (i.disconnected.add(u), i.length_d += 1);
},
- offDisconnected(i, u) {
- if (!t.has(i)) return;
- let s = t.get(i);
- s.disconnected.has(u) && (s.disconnected.delete(u), s.length_d -= 1, o(i, s));
+ offDisconnected(s, u) {
+ if (!t.has(s)) return;
+ let i = t.get(s);
+ i.disconnected.has(u) && (i.disconnected.delete(u), i.length_d -= 1, o(s, i));
}
};
- function o(i, u) {
- u.length_c || u.length_d || (t.delete(i), d());
+ function o(s, u) {
+ u.length_c || u.length_d || (t.delete(s), d());
}
- function c(i) {
- if (t.has(i)) return t.get(i);
+ function c(s) {
+ if (t.has(s)) return t.get(s);
let u = {
connected: /* @__PURE__ */ new WeakSet(),
length_c: 0,
disconnected: /* @__PURE__ */ new WeakSet(),
length_d: 0
};
- return t.set(i, u), u;
+ return t.set(s, u), u;
}
- function f() {
- e || (e = !0, r.observe(a.D.body, { childList: !0, subtree: !0 }));
+ function a() {
+ e || (e = !0, r.observe(f.D.body, { childList: !0, subtree: !0 }));
}
function d() {
!e || t.size || (e = !1, r.disconnect());
}
function p() {
- return new Promise(function(i) {
- (requestIdleCallback || requestAnimationFrame)(i);
+ return new Promise(function(s) {
+ (requestIdleCallback || requestAnimationFrame)(s);
});
}
- async function b(i) {
+ async function b(s) {
t.size > 30 && await p();
let u = [];
- if (!(i instanceof Node)) return u;
- for (let s of t.keys())
- s === i || !(s instanceof Node) || i.contains(s) && u.push(s);
+ if (!(s instanceof Node)) return u;
+ for (let i of t.keys())
+ i === s || !(i instanceof Node) || s.contains(i) && u.push(i);
return u;
}
- function h(i, u) {
- let s = !1;
- for (let l of i) {
+ function h(s, u) {
+ let i = !1;
+ for (let l of s) {
if (u && b(l).then(h), !t.has(l)) continue;
- let m = t.get(l);
- m.length_c && (l.dispatchEvent(new Event(g)), m.connected = /* @__PURE__ */ new WeakSet(), m.length_c = 0, m.length_d || t.delete(l), s = !0);
+ let A = t.get(l);
+ A.length_c && (l.dispatchEvent(new Event(v)), A.connected = /* @__PURE__ */ new WeakSet(), A.length_c = 0, A.length_d || t.delete(l), i = !0);
}
- return s;
+ return i;
}
- function A(i, u) {
- let s = !1;
- for (let l of i)
- u && b(l).then(A), !(!t.has(l) || !t.get(l).length_d) && ((globalThis.queueMicrotask || setTimeout)(_(l)), s = !0);
- return s;
+ function E(s, u) {
+ let i = !1;
+ for (let l of s)
+ u && b(l).then(E), !(!t.has(l) || !t.get(l).length_d) && ((globalThis.queueMicrotask || setTimeout)(I(l)), i = !0);
+ return i;
}
- function _(i) {
+ function I(s) {
return () => {
- i.isConnected || (i.dispatchEvent(new Event(y)), t.delete(i));
+ s.isConnected || (s.dispatchEvent(new Event(m)), t.delete(s));
};
}
}
// src/customElement.js
-function Dt(t, e, n, r = it) {
- S.push({
+function mt(t, e, n, r = rt) {
+ D.push({
scope: t,
- host: (...f) => f.length ? f.forEach((d) => d(t)) : t
+ host: (...a) => a.length ? a.forEach((d) => d(t)) : t
}), typeof r == "function" && (r = r.call(t, t));
- let o = t[x];
- o || ct(t);
+ let o = t[w];
+ o || nt(t);
let c = n.call(t, r);
- return o || t.dispatchEvent(new Event(g)), e.nodeType === 11 && typeof e.mode == "string" && t.addEventListener(y, w.observe(e), { once: !0 }), S.pop(), e.append(c);
+ return o || t.dispatchEvent(new Event(v)), e.nodeType === 11 && typeof e.mode == "string" && t.addEventListener(m, y.observe(e), { once: !0 }), D.pop(), e.append(c);
}
-function ct(t) {
+function nt(t) {
return k(t.prototype, "connectedCallback", function(e, n, r) {
- e.apply(n, r), n.dispatchEvent(new Event(g));
+ e.apply(n, r), n.dispatchEvent(new Event(v));
}), k(t.prototype, "disconnectedCallback", function(e, n, r) {
e.apply(n, r), (globalThis.queueMicrotask || setTimeout)(
- () => !n.isConnected && n.dispatchEvent(new Event(y))
+ () => !n.isConnected && n.dispatchEvent(new Event(m))
);
}), k(t.prototype, "attributeChangedCallback", function(e, n, r) {
let [o, , c] = r;
- n.dispatchEvent(new CustomEvent(D, {
+ n.dispatchEvent(new CustomEvent(O, {
detail: [o, c]
})), e.apply(n, r);
- }), t.prototype[x] = !0, t;
+ }), t.prototype[w] = !0, t;
}
function k(t, e, n) {
t[e] = new Proxy(t[e] || (() => {
}), { apply: n });
}
-function it(t) {
- return F(t, (e, n) => e.getAttribute(n));
+function rt(t) {
+ return W(t, (e, n) => e.getAttribute(n));
}
// src/events.js
-function _t(t, e, n) {
+function Ot(t, e, n) {
return e || (e = {}), function(o, ...c) {
n && (c.unshift(o), o = typeof n == "function" ? n() : n);
- let f = c.length ? new CustomEvent(t, Object.assign({ detail: c[0] }, e)) : new Event(t, e);
- return o.dispatchEvent(f);
+ let a = c.length ? new CustomEvent(t, Object.assign({ detail: c[0] }, e)) : new Event(t, e);
+ return o.dispatchEvent(a);
};
}
-function R(t, e, n) {
+function _(t, e, n) {
return function(o) {
return o.addEventListener(t, e, n), o;
};
}
-var G = (t) => Object.assign({}, typeof t == "object" ? t : null, { once: !0 });
-R.connected = function(t, e) {
- return e = G(e), function(r) {
- return r.addEventListener(g, t, e), r[x] ? r : r.isConnected ? (r.dispatchEvent(new Event(g)), r) : (N(e.signal, () => w.offConnected(r, t)) && w.onConnected(r, t), r);
+var B = (t) => Object.assign({}, typeof t == "object" ? t : null, { once: !0 });
+_.connected = function(t, e) {
+ return e = B(e), function(r) {
+ return r.addEventListener(v, t, e), r[w] ? r : r.isConnected ? (r.dispatchEvent(new Event(v)), r) : (L(e.signal, () => y.offConnected(r, t)) && y.onConnected(r, t), r);
};
};
-R.disconnected = function(t, e) {
- return e = G(e), function(r) {
- return r.addEventListener(y, t, e), r[x] || N(e.signal, () => w.offDisconnected(r, t)) && w.onDisconnected(r, t), r;
+_.disconnected = function(t, e) {
+ return e = B(e), function(r) {
+ return r.addEventListener(m, t, e), r[w] || L(e.signal, () => y.offDisconnected(r, t)) && y.onDisconnected(r, t), r;
};
};
-var W = /* @__PURE__ */ new WeakMap();
-R.disconnectedAsAbort = function(t) {
- if (W.has(t)) return W.get(t);
+var j = /* @__PURE__ */ new WeakMap();
+_.disconnectedAsAbort = function(t) {
+ if (j.has(t)) return j.get(t);
let e = new AbortController();
- return W.set(t, e), t(R.disconnected(() => e.abort())), e;
+ return j.set(t, e), t(_.disconnected(() => e.abort())), e;
};
-var st = /* @__PURE__ */ new WeakSet();
-R.attributeChanged = function(t, e) {
+var ot = /* @__PURE__ */ new WeakSet();
+_.attributeChanged = function(t, e) {
return typeof e != "object" && (e = {}), function(r) {
- if (r.addEventListener(D, t, e), r[x] || st.has(r) || !a.M) return r;
- let o = new a.M(function(f) {
- for (let { attributeName: d, target: p } of f)
+ if (r.addEventListener(O, t, e), r[w] || ot.has(r) || !f.M) return r;
+ let o = new f.M(function(a) {
+ for (let { attributeName: d, target: p } of a)
p.dispatchEvent(
- new CustomEvent(D, { detail: [d, p.getAttribute(d)] })
+ new CustomEvent(O, { detail: [d, p.getAttribute(d)] })
);
});
- return N(e.signal, () => o.disconnect()) && o.observe(r, { attributes: !0 }), r;
+ return L(e.signal, () => o.disconnect()) && o.observe(r, { attributes: !0 }), r;
};
};
export {
- O as assign,
- z as assignAttribute,
- Q as chainableAppend,
- Y as classListDeclarative,
- j as createElement,
- gt as createElementNS,
- Dt as customElementRender,
- ct as customElementWithDDE,
- _t as dispatchEvent,
- j as el,
- gt as elNS,
- tt as elementAttribute,
- vt as empty,
- ct as lifecyclesToEvents,
- it as observedAttributes,
- R as on,
- V as registerReactivity,
- S as scope,
- bt as simulateSlots
+ R as assign,
+ U as assignAttribute,
+ dt as asyncQueueAdd,
+ V as chainableAppend,
+ J as classListDeclarative,
+ P as createElement,
+ pt as createElementNS,
+ mt as customElementRender,
+ nt as customElementWithDDE,
+ Ot as dispatchEvent,
+ P as el,
+ pt as elNS,
+ K as elementAttribute,
+ nt as lifecyclesToEvents,
+ rt as observedAttributes,
+ _ as on,
+ Z as registerReactivity,
+ D as scope,
+ ht as simulateSlots
};
diff --git a/docs/components/code.html.js b/docs/components/code.html.js
index 19ca3b2..9e47c6a 100644
--- a/docs/components/code.html.js
+++ b/docs/components/code.html.js
@@ -51,9 +51,9 @@ let is_registered= {};
/** @param {string} page_id */
function registerClientPart(page_id){
if(is_registered[page_id]) return;
-
+
document.head.append(
- el("script", { src: "https://cdn.jsdelivr.net/npm/shiki@0.9", defer: true }),
+ el("script", { src: "https://cdn.jsdelivr.net/npm/shiki@0.9", defer: true }),
);
registerClientFile(
new URL("./code.js.js", import.meta.url),
diff --git a/docs/components/example.html.js b/docs/components/example.html.js
index c049edc..4eb8e6d 100644
--- a/docs/components/example.html.js
+++ b/docs/components/example.html.js
@@ -47,7 +47,7 @@ let is_registered= {};
/** @param {string} page_id */
function registerClientPart(page_id){
if(is_registered[page_id]) return;
-
+
document.head.append(
el("script", { src: "https://flems.io/flems.html", type: "text/javascript", charset: "utf-8" }),
);
@@ -64,5 +64,5 @@ function generateCodeId(src){
.replace(/000+/g, "");
const count= 1 + ( store_prev.get(candidate) || 0 );
store_prev.set(candidate, count);
- return count.toString()+"-"+candidate;
+ return count.toString()+"-"+candidate;
}
diff --git a/docs/components/examples/customElement/observedAttributes.js b/docs/components/examples/customElement/observedAttributes.js
index 2b76280..035618a 100644
--- a/docs/components/examples/customElement/observedAttributes.js
+++ b/docs/components/examples/customElement/observedAttributes.js
@@ -2,7 +2,7 @@ import {
customElementRender,
customElementWithDDE,
observedAttributes,
- el, on, scope
+ el, on, scope,
} from "deka-dom-el";
import { S } from "deka-dom-el/signals";
export class HTMLCustomElement extends HTMLElement{
@@ -24,7 +24,7 @@ export class HTMLCustomElement extends HTMLElement{
/** @param {{ attr: ddeSignal }} props */
function ddeComponent({ attr }){
scope.host(
- on.connected(e=> console.log(e.target.outerHTML)),
+ on.connected(e=> console.log(( /** @type {HTMLParagraphElement} */ (e.target)).outerHTML)),
);
return el().append(
el("p", S(()=> `Hello from Custom Element with attribute '${attr()}'`))
diff --git a/docs/components/examples/elements/dekaBasicComponent.js b/docs/components/examples/elements/dekaBasicComponent.js
index 50870c1..02f0b8e 100644
--- a/docs/components/examples/elements/dekaBasicComponent.js
+++ b/docs/components/examples/elements/dekaBasicComponent.js
@@ -11,7 +11,7 @@ document.body.append(
);
function component({ className, textContent }){
- return el("div", { className: [ "class1", className ] }).append(
+ return el("div", { className: [ "class1", className ].join(" ") }).append(
el("p", textContent)
);
}
diff --git a/docs/components/examples/elements/dekaElNS.js b/docs/components/examples/elements/dekaElNS.js
index 45e7816..5181615 100644
--- a/docs/components/examples/elements/dekaElNS.js
+++ b/docs/components/examples/elements/dekaElNS.js
@@ -2,8 +2,8 @@ import { elNS, assign } from "deka-dom-el";
const elSVG= elNS("http://www.w3.org/2000/svg");
const elMath= elNS("http://www.w3.org/1998/Math/MathML");
document.body.append(
- elSVG("svg"), // see https://developer.mozilla.org/en-US/docs/Web/SVG and https://developer.mozilla.org/en-US/docs/Web/API/SVGElement
- elMath("math") // see https://developer.mozilla.org/en-US/docs/Web/MathML and https://developer.mozilla.org/en-US/docs/Web/MathML/Global_attributes
+ elSVG("svg"), // see https://developer.mozilla.org/en-US/docs/Web/SVG and https://developer.mozilla.org/en-US/docs/Web/API/SVGElement // editorconfig-checker-disable-line
+ elMath("math") // see https://developer.mozilla.org/en-US/docs/Web/MathML and https://developer.mozilla.org/en-US/docs/Web/MathML/Global_attributes // editorconfig-checker-disable-line
);
console.log(
diff --git a/docs/components/examples/introducing/helloWorld.js b/docs/components/examples/introducing/helloWorld.js
index 47c0fe9..71d4340 100644
--- a/docs/components/examples/introducing/helloWorld.js
+++ b/docs/components/examples/introducing/helloWorld.js
@@ -1,15 +1,18 @@
import { el } from "deka-dom-el";
import { S } from "deka-dom-el/signals";
-const clicks= S(0); // A
document.body.append(
- el().append(
+ el(HelloWorldComponent)
+);
+function HelloWorldComponent(){
+ const clicksS= S(0); // A
+ return el().append(
el("p", S(()=>
- "Hello World "+"🎉".repeat(clicks()) // B
+ "Hello World "+"🎉".repeat(clicksS()) // B
)),
el("button", {
type: "button",
- onclick: ()=> clicks(clicks()+1), // C
+ onclick: ()=> clicksS(clicksS()+1), // C
textContent: "Fire",
})
)
-);
+}
diff --git a/docs/components/examples/scopes/class-component.js b/docs/components/examples/scopes/class-component.js
index 45a1bfd..a525da4 100644
--- a/docs/components/examples/scopes/class-component.js
+++ b/docs/components/examples/scopes/class-component.js
@@ -36,7 +36,7 @@ function elClass(_class, attributes, ...addons){
});
element.prepend(el_mark);
if(is_fragment) element_host= el_mark;
-
+
chainableAppend(element);
addons.forEach(c=> c(element_host));
scope.pop();
diff --git a/docs/components/examples/scopes/cleaning.js b/docs/components/examples/scopes/cleaning.js
index 923b331..f648322 100644
--- a/docs/components/examples/scopes/cleaning.js
+++ b/docs/components/examples/scopes/cleaning.js
@@ -1,4 +1,6 @@
-import { el, empty, on } from "deka-dom-el";
+import { el, on } from "deka-dom-el";
+/** @param {HTMLElement} el */
+const empty= el=> Array.from(el.children).forEach(c=> c.remove());
document.body.append(
el(component),
el("button", {
diff --git a/docs/components/examples/scopes/imperative.js b/docs/components/examples/scopes/imperative.js
index 90f822e..012514c 100644
--- a/docs/components/examples/scopes/imperative.js
+++ b/docs/components/examples/scopes/imperative.js
@@ -23,7 +23,7 @@ function component(){
* const data= O("data");
* ul.append(el("li", data));
* });
- *
+ *
* // THE HOST IS PROBABLY DIFFERENT THAN
* // YOU EXPECT AND OBSERVABLES MAY BE
* // UNEXPECTEDLY REMOVED!!!
diff --git a/docs/components/examples/signals/dom-attrs.js b/docs/components/examples/signals/dom-attrs.js
index a26219e..0941766 100644
--- a/docs/components/examples/signals/dom-attrs.js
+++ b/docs/components/examples/signals/dom-attrs.js
@@ -4,7 +4,7 @@ const count= S(0);
import { el } from "deka-dom-el";
document.body.append(
el("p", S(()=> "Currently: "+count())),
- el("p", { classList: { red: S(()=> count()%2) }, dataset: { count }, textContent: "Attributes example" })
+ el("p", { classList: { red: S(()=> count()%2 === 0) }, dataset: { count }, textContent: "Attributes example" }),
);
document.head.append(
el("style", ".red { color: red; }")
diff --git a/docs/components/mnemonic/customElement-init.js b/docs/components/mnemonic/customElement-init.js
index 0454726..d8bd5af 100644
--- a/docs/components/mnemonic/customElement-init.js
+++ b/docs/components/mnemonic/customElement-init.js
@@ -4,25 +4,32 @@ import { mnemonicUl } from "../mnemonicUl.html.js";
export function mnemonic(){
return mnemonicUl().append(
el("li").append(
- el("code", "customElementRender(, , [, ])"), " — use function to render DOM structure for given ",
+ el("code", "customElementRender(, , [, ])"),
+ " — use function to render DOM structure for given ",
),
el("li").append(
- el("code", "customElementWithDDE()"), " — register to DDE library, see also `lifecyclesToEvents`, can be also used as decorator",
+ el("code", "customElementWithDDE()"),
+ " — register to DDE library, see also `lifecyclesToEvents`, can be also used as decorator",
),
el("li").append(
- el("code", "observedAttributes()"), " — returns record of observed attributes (keys uses camelCase)",
+ el("code", "observedAttributes()"),
+ " — returns record of observed attributes (keys uses camelCase)",
),
el("li").append(
- el("code", "S.observedAttributes()"), " — returns record of observed attributes (keys uses camelCase and values are signals)",
+ el("code", "S.observedAttributes()"),
+ " — returns record of observed attributes (keys uses camelCase and values are signals)",
),
el("li").append(
- el("code", "lifecyclesToEvents()"), " — convert lifecycle methods to events, can be also used as decorator",
+ el("code", "lifecyclesToEvents()"),
+ " — convert lifecycle methods to events, can be also used as decorator",
),
el("li").append(
- el("code", "simulateSlots(, [, ])"), " — simulate slots for Custom Elements without shadow DOM",
+ el("code", "simulateSlots(, [, ])"),
+ " — simulate slots for Custom Elements without shadow DOM",
),
el("li").append(
- el("code", "simulateSlots([,