1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
import { template as _$template } from "r-dom";
import { delegateEvents as _$delegateEvents } from "r-dom";
import { addEventListener as _$addEventListener } from "r-dom";
const _tmpl$ = /*#__PURE__*/ _$template(
`<div id="main"><button>Change Bound</button><button>Change Bound</button><button>Change Bound</button><button>Change Bound</button><button>Change Bound</button><button>Click Delegated</button><button>Click Delegated</button><button>Click Delegated</button><button>Click Delegated</button><button>Click Delegated</button><button>Click Listener</button><button>Click Capture</button></div>`,
26
);
function hoisted1() {
console.log("hoisted");
}
const hoisted2 = () => console.log("hoisted delegated");
const template = (() => {
const _el$ = _tmpl$.cloneNode(true),
_el$2 = _el$.firstChild,
_el$3 = _el$2.nextSibling,
_el$4 = _el$3.nextSibling,
_el$5 = _el$4.nextSibling,
_el$6 = _el$5.nextSibling,
_el$7 = _el$6.nextSibling,
_el$8 = _el$7.nextSibling,
_el$9 = _el$8.nextSibling,
_el$10 = _el$9.nextSibling,
_el$11 = _el$10.nextSibling,
_el$12 = _el$11.nextSibling,
_el$13 = _el$12.nextSibling;
_el$2.addEventListener("change", () => console.log("bound"));
_el$3.addEventListener("change", (e) =>
((id) => console.log("bound", id))(id, e)
);
_$addEventListener(_el$4, "change", handler);
_el$5.addEventListener("change", handler);
_el$6.addEventListener("change", hoisted1);
_el$7.$$click = () => console.log("delegated");
_el$8.$$click = (id) => console.log("delegated", id);
_el$8.$$clickData = rowId;
_$addEventListener(_el$9, "click", handler, true);
_el$10.$$click = handler;
_el$11.$$click = hoisted2;
_el$12.addEventListener("click", () => console.log("listener"));
_el$12.addEventListener("CAPS-ev", () => console.log("custom"));
_el$13.addEventListener("camelClick", () => console.log("listener"), true);
return _el$;
})();
_$delegateEvents(["click"]);
|