1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2025-07-29 15:10:14 +02:00

🐛 add missing cases for href, src, class, xlink:href, textContent, innerText

This commit is contained in:
2023-09-21 13:14:55 +02:00
parent 951f589ceb
commit 0794659104
5 changed files with 26 additions and 6 deletions

5
dist/esm.js vendored
View File

@@ -84,6 +84,7 @@ function x(e, ...t) {
if (typeof u == "object" && u !== null && !Array.isArray(u))
switch (f) {
case "style":
case "dataset":
return O(n, u, D.bind(null, e[f]));
case "ariaset":
return O(n, u, (E, o) => d("aria-" + E, o));
@@ -96,8 +97,12 @@ function x(e, ...t) {
return f = f.replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase(), d(f, u);
switch (f === "className" && (f = "class"), f) {
case "href":
case "src":
case "class":
case "xlink:href":
return d(f, u, "http://www.w3.org/1999/xlink");
case "textContent":
case "innerText":
return c ? e.appendChild(document.createTextNode(u)) : R(e, f, u);
}
return _(e, f) ? R(e, f, u) : d(f, u);