mirror of
https://github.com/jaandrle/deka-dom-el
synced 2025-04-03 04:25:53 +02:00
🐛 now only el(..., string|number)
This commit is contained in:
parent
8adca7faa0
commit
44c28f1bd2
3
dist/esm-with-signals.js
vendored
3
dist/esm-with-signals.js
vendored
@ -435,7 +435,8 @@ function createElement(tag, attributes, ...addons) {
|
|||||||
const s = signals(this);
|
const s = signals(this);
|
||||||
let scoped = 0;
|
let scoped = 0;
|
||||||
let el, el_host;
|
let el, el_host;
|
||||||
if (Object(attributes) !== attributes || s.isSignal(attributes))
|
const att_type = typeof attributes;
|
||||||
|
if (att_type === "string" || att_type === "number" || s.isSignal(attributes))
|
||||||
attributes = { textContent: attributes };
|
attributes = { textContent: attributes };
|
||||||
switch (true) {
|
switch (true) {
|
||||||
case typeof tag === "function": {
|
case typeof tag === "function": {
|
||||||
|
8
dist/esm-with-signals.min.js
vendored
8
dist/esm-with-signals.min.js
vendored
File diff suppressed because one or more lines are too long
3
dist/esm.js
vendored
3
dist/esm.js
vendored
@ -406,7 +406,8 @@ function createElement(tag, attributes, ...addons) {
|
|||||||
const s = signals(this);
|
const s = signals(this);
|
||||||
let scoped = 0;
|
let scoped = 0;
|
||||||
let el, el_host;
|
let el, el_host;
|
||||||
if (Object(attributes) !== attributes || s.isSignal(attributes))
|
const att_type = typeof attributes;
|
||||||
|
if (att_type === "string" || att_type === "number" || s.isSignal(attributes))
|
||||||
attributes = { textContent: attributes };
|
attributes = { textContent: attributes };
|
||||||
switch (true) {
|
switch (true) {
|
||||||
case typeof tag === "function": {
|
case typeof tag === "function": {
|
||||||
|
2
dist/esm.min.js
vendored
2
dist/esm.min.js
vendored
File diff suppressed because one or more lines are too long
3
dist/iife-with-signals.js
vendored
3
dist/iife-with-signals.js
vendored
@ -480,7 +480,8 @@ var DDE = (() => {
|
|||||||
const s = signals(this);
|
const s = signals(this);
|
||||||
let scoped = 0;
|
let scoped = 0;
|
||||||
let el, el_host;
|
let el, el_host;
|
||||||
if (Object(attributes) !== attributes || s.isSignal(attributes))
|
const att_type = typeof attributes;
|
||||||
|
if (att_type === "string" || att_type === "number" || s.isSignal(attributes))
|
||||||
attributes = { textContent: attributes };
|
attributes = { textContent: attributes };
|
||||||
switch (true) {
|
switch (true) {
|
||||||
case typeof tag === "function": {
|
case typeof tag === "function": {
|
||||||
|
8
dist/iife-with-signals.min.js
vendored
8
dist/iife-with-signals.min.js
vendored
File diff suppressed because one or more lines are too long
3
dist/iife.js
vendored
3
dist/iife.js
vendored
@ -448,7 +448,8 @@ var DDE = (() => {
|
|||||||
const s = signals(this);
|
const s = signals(this);
|
||||||
let scoped = 0;
|
let scoped = 0;
|
||||||
let el, el_host;
|
let el, el_host;
|
||||||
if (Object(attributes) !== attributes || s.isSignal(attributes))
|
const att_type = typeof attributes;
|
||||||
|
if (att_type === "string" || att_type === "number" || s.isSignal(attributes))
|
||||||
attributes = { textContent: attributes };
|
attributes = { textContent: attributes };
|
||||||
switch (true) {
|
switch (true) {
|
||||||
case typeof tag === "function": {
|
case typeof tag === "function": {
|
||||||
|
2
dist/iife.min.js
vendored
2
dist/iife.min.js
vendored
File diff suppressed because one or more lines are too long
@ -38,11 +38,12 @@ import { scope } from "./scopes.js";
|
|||||||
* @returns {Element|DocumentFragment} Created element
|
* @returns {Element|DocumentFragment} Created element
|
||||||
*/
|
*/
|
||||||
export function createElement(tag, attributes, ...addons){
|
export function createElement(tag, attributes, ...addons){
|
||||||
/* jshint maxcomplexity: 15 */
|
/* jshint maxcomplexity: 16 */
|
||||||
const s= signals(this);
|
const s= signals(this);
|
||||||
let scoped= 0;
|
let scoped= 0;
|
||||||
let el, el_host;
|
let el, el_host;
|
||||||
if(Object(attributes)!==attributes || s.isSignal(attributes))
|
const att_type= typeof attributes;
|
||||||
|
if(att_type==="string" || att_type==="number" || s.isSignal(attributes))
|
||||||
attributes= { textContent: attributes };
|
attributes= { textContent: attributes };
|
||||||
switch(true){
|
switch(true){
|
||||||
case typeof tag==="function": {
|
case typeof tag==="function": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user