mirror of
https://github.com/jaandrle/deka-dom-el
synced 2025-04-02 20:15:53 +02:00
* :tap: removed on.attributeChanged and static observedAttributes * ⚡ import optimalization * ⚡ scope.signal * 🔤 🐛 * ⚡ 🐛 registerReactivity and types * 🔤 * ⚡ * 🔤 * 🐛 Node in enviroment * ⚡ todos * ⚡ * ⚡ 🔤 * ⚡ lint * ⚡ memo * 🔤 🐛 memo * ⚡ 🔤 todomvc * 🐛 types * 🔤 p08 signal factory * 🔤 ⚡ types * ⚡ 🔤 lint * 🔤 * 🔤 * 🔤 * 🔤 * 📺
32 lines
1.4 KiB
JavaScript
32 lines
1.4 KiB
JavaScript
import { el } from "deka-dom-el";
|
|
import { mnemonicUl } from "../mnemonicUl.html.js";
|
|
|
|
export function mnemonic(){
|
|
return mnemonicUl().append(
|
|
el("li").append(
|
|
el("code", "on(<event>, <listener>[, <options>])(<element>)"),
|
|
" — just ", el("code", "<element>.addEventListener(<event>, <listener>[, <options>])")
|
|
),
|
|
el("li").append(
|
|
el("code", "on.<live-cycle>(<event>, <listener>[, <options>])(<element>)"),
|
|
" — corresponds to custom elemnets callbacks ", el("code", "<live-cycle>Callback(...){...}"),
|
|
". To connect to custom element see following page, else it is simulated by MutationObserver."
|
|
),
|
|
el("li").append(
|
|
el("code", "dispatchEvent(<event>[, <options>])(element)"),
|
|
" — just ", el("code", "<element>.dispatchEvent(new Event(<event>[, <options>]))")
|
|
),
|
|
el("li").append(
|
|
el("code", "dispatchEvent(<event>[, <options>])(<element>[, <detail>])"),
|
|
" — just ", el("code", "<element>.dispatchEvent(new Event(<event>[, <options>] ))"), " or ",
|
|
el("code", "<element>.dispatchEvent(new CustomEvent(<event>, { detail: <detail> }))")
|
|
),
|
|
el("li").append(
|
|
el("code", "dispatchEvent(<event>[, <options>], <host>)([<detail>])"),
|
|
" — just ", el("code", "<host>().dispatchEvent(new Event(<event>[, <options>]))"), " or ",
|
|
el("code", "<host>().dispatchEvent(new CustomEvent(<event>, { detail: <detail> }[, <options>] ))"),
|
|
" (see scopes section of docs)"
|
|
),
|
|
);
|
|
}
|