diff options
Diffstat (limited to 'integration/bunjs-only-snippets/solid-dom-fixtures/attributeExpressions/output.bun.js')
-rw-r--r-- | integration/bunjs-only-snippets/solid-dom-fixtures/attributeExpressions/output.bun.js | 155 |
1 files changed, 0 insertions, 155 deletions
diff --git a/integration/bunjs-only-snippets/solid-dom-fixtures/attributeExpressions/output.bun.js b/integration/bunjs-only-snippets/solid-dom-fixtures/attributeExpressions/output.bun.js deleted file mode 100644 index 4bb3e1b39..000000000 --- a/integration/bunjs-only-snippets/solid-dom-fixtures/attributeExpressions/output.bun.js +++ /dev/null @@ -1,155 +0,0 @@ -var _tmpl = _template$( - '<div id="main"><h1 class="base" disabled readonly><a href="/">Welcome</a></h1></div>', - 6 - ), - _tmpl$2 = _template$( - '<div><div/><div/><div innerHTML="<div/>"/></div>', - 2 - ), - _tmpl$2 = _template$("<div/>", 0), - _tmpl$3 = _template$('<div class="hi"/>', 0), - _tmpl$5 = _template$('<div class="a" class="b"/>', 0), - _tmpl$5 = _template$('<div textContent="Hi"/>', 0), - _tmpl$6 = _template$("<div use:something use:zero=0/>", 0), - _tmpl$8 = _template$('<input type="checkbox" checked/>', 0), - _tmpl$8 = _template$('<input type="checkbox"/>', 0), - _tmpl$10 = _template$('<div class="`a">`$`</div>', 2), - _tmpl$10 = _template$( - '<button class="static" type="button">Write</button>', - 2 - ), - _tmpl$11 = _template$("<button>Hi</button>", 2); -const selected = true; -let id = "my-h1"; -let link; -const template = () => { - var _el = _tmpl.cloneNode(true), - _el$1 = _el.firstChild, - _el$2 = _el$1.nextSibling; - effect(() => { - return setAttribute(_el, "classList", { selected: unknown }); - }); - setAttribute(_el$1, "id", id); - effect(() => { - return setAttribute(_el$1, "title", welcoming()); - }); - effect(() => { - return setAttribute(_el$1, "classList", { dynamic: dynamic(), selected }); - }); - setAttribute(_el$2, "ref", link); - effect(() => { - return setAttribute(_el$2, "classList", { "ccc ddd": true }); - }); - setAttribute(_el$2, "readonly", value); - return _el; -}; -const template2 = () => { - var _el = _tmpl$1.cloneNode(true), - _el$1 = _el.firstChild; - setAttribute(_el, "textContent", rowId); - effect(() => { - return setAttribute(_el$1, "textContent", row.label); - }); - return _el; -}; -const template3 = () => { - var _el = _tmpl$2.cloneNode(true); - effect(() => { - return setAttribute(_el, "id", state.id); - }); - effect(() => { - return setAttribute(_el, "name", state.name); - }); - effect(() => { - return setAttribute(_el, "textContent", state.content); - }); - return _el; -}; -const template4 = () => { - var _el = _tmpl$3.cloneNode(true); - effect(() => { - return setAttribute(_el, "className", state.class); - }); - effect(() => { - return setAttribute(_el, "classList", { "ccc:ddd": true }); - }); - return _el; -}; -const template5 = _tmpl$5.cloneNode(true); -const template6 = () => { - var _el = _tmpl$5.cloneNode(true); - return _el; -}; -const template7 = () => { - var _el = _tmpl$2.cloneNode(true); - effect(() => { - return setAttribute(_el, "style:padding-top", props.top); - }); - effect(() => { - return setAttribute(_el, "class:my-class", props.active); - }); - return _el; -}; -let refTarget; -const template8 = () => { - var _el = _tmpl$2.cloneNode(true); - setAttribute(_el, "ref", refTarget); - return _el; -}; -const template9 = () => { - var _el = _tmpl$2.cloneNode(true); - effect(() => { - return setAttribute(_el, "ref", (e) => console.log(e)); - }); - return _el; -}; -const template10 = () => { - var _el = _tmpl$2.cloneNode(true); - effect(() => { - return setAttribute(_el, "ref", refFactory()); - }); - return _el; -}; -const template11 = () => { - var _el = _tmpl$6.cloneNode(true); - setAttribute(_el, "use:another", thing); - return _el; -}; -const template12 = () => { - var _el = _tmpl$2.cloneNode(true); - setAttribute(_el, "prop:htmlFor", thing); - return _el; -}; -const template13 = _tmpl$8.cloneNode(true); -const template14 = () => { - var _el = _tmpl$8.cloneNode(true); - effect(() => { - return setAttribute(_el, "checked", state.visible); - }); - return _el; -}; -const template15 = _tmpl$10.cloneNode(true); -const template16 = () => { - var _el = _tmpl$10.cloneNode(true); - effect(() => { - return setAttribute(_el, "classList", { - hi: "k", - }); - }); - return _el; -}; -const template17 = () => { - var _el = _tmpl$11.cloneNode(true); - effect(() => { - return setAttribute(_el, "classList", { - a: true, - b: true, - c: true, - }); - }); - effect(() => { - return (_el.$$click = increment); - }); - return _el; -}; -const template18 = _tmpl$2.cloneNode(true); |