From 8f0879196fcd271172fdcdbcb2993a2529980d28 Mon Sep 17 00:00:00 2001 From: Jan Andrle Date: Wed, 5 Mar 2025 15:29:53 +0100 Subject: [PATCH] :abc: intro --- README.md | 162 ++++++++++-------- .../examples/introducing/3ps-before.js | 14 ++ docs/components/examples/introducing/3ps.js | 20 ++- .../examples/introducing/helloWorld.js | 45 +++-- docs/index.html.js | 95 +++++++--- nohup.out | 30 ++++ 6 files changed, 247 insertions(+), 119 deletions(-) create mode 100644 docs/components/examples/introducing/3ps-before.js create mode 100644 nohup.out diff --git a/README.md b/README.md index 3dcb0e4..6f40989 100644 --- a/README.md +++ b/README.md @@ -2,94 +2,110 @@ | [source code on GitHub](https://github.com/jaandrle/deka-dom-el) | [*mirrored* on Gitea](https://gitea.jaandrle.cz/jaandrle/deka-dom-el) +# Deka DOM Elements + ***Vanilla for flavouring — a full-fledged feast for large projects*** *…use simple DOM API by default and library tools and logic when you need them* ```javascript +// 🌟 Reactive component with clear separation of concerns document.body.append( - el(HelloWorldComponent, { initial: "🚀" }) + el(EmojiCounter, { initial: "🚀" }) ); -/** @typedef {"🎉" | "🚀"} Emoji */ -/** @param {{ initial: Emoji }} attrs */ -function HelloWorldComponent({ initial }){ - const clicks= S(0); - const emoji= S(initial); - /** @param {HTMLOptionElement} el */ - const isSelected= el=> (el.selected= el.value===initial); - // @ts-expect-error 2339: The