diff --git a/examples/hdom2020-basics/.gitignore b/examples/rdom-basics/.gitignore similarity index 100% rename from examples/hdom2020-basics/.gitignore rename to examples/rdom-basics/.gitignore diff --git a/examples/hdom2020-dnd/README.md b/examples/rdom-basics/README.md similarity index 77% rename from examples/hdom2020-dnd/README.md rename to examples/rdom-basics/README.md index 4a571a8f7a..67b9b2bad9 100644 --- a/examples/hdom2020-dnd/README.md +++ b/examples/rdom-basics/README.md @@ -1,6 +1,6 @@ -# hdom2020-dnd +# rdom-basics -[Live demo](http://demo.thi.ng/umbrella/hdom2020-dnd/) +[Live demo](http://demo.thi.ng/umbrella/rdom-basics/) Please refer to the [example build instructions](https://github.com/thi-ng/umbrella/wiki/Example-build-instructions) on the wiki. diff --git a/examples/hdom2020-basics/index.html b/examples/rdom-basics/index.html similarity index 91% rename from examples/hdom2020-basics/index.html rename to examples/rdom-basics/index.html index 818f1023f3..054a1ecc09 100644 --- a/examples/hdom2020-basics/index.html +++ b/examples/rdom-basics/index.html @@ -4,7 +4,7 @@ - hdom2020-basics + rdom-basics Source code diff --git a/examples/hdom2020-basics/package.json b/examples/rdom-basics/package.json similarity index 88% rename from examples/hdom2020-basics/package.json rename to examples/rdom-basics/package.json index 9b304294d8..2d7d388c58 100644 --- a/examples/hdom2020-basics/package.json +++ b/examples/rdom-basics/package.json @@ -1,7 +1,7 @@ { - "name": "hdom2020-basics", + "name": "rdom-basics", "version": "0.0.1", - "description": "hdom2020 test sandbox / POC", + "description": "rdom test sandbox / POC", "repository": "https://github.com/thi-ng/umbrella", "author": "Karsten Schmidt ", "license": "Apache-2.0", @@ -21,7 +21,7 @@ "@thi.ng/api": "latest", "@thi.ng/checks": "latest", "@thi.ng/compose": "latest", - "@thi.ng/hdom2020": "latest", + "@thi.ng/rdom": "latest", "@thi.ng/rstream": "latest", "@thi.ng/transducers": "latest" }, @@ -33,7 +33,7 @@ }, "thi.ng": { "readme": [ - "hdom2020" + "rdom" ] } } diff --git a/examples/hdom2020-basics/src/index.ts b/examples/rdom-basics/src/index.ts similarity index 95% rename from examples/hdom2020-basics/src/index.ts rename to examples/rdom-basics/src/index.ts index b0908f9b0f..3157e3c5f8 100644 --- a/examples/hdom2020-basics/src/index.ts +++ b/examples/rdom-basics/src/index.ts @@ -1,6 +1,6 @@ import { isString } from "@thi.ng/checks"; import { delayed } from "@thi.ng/compose"; -import { $compile, $list, $refresh } from "@thi.ng/hdom2020"; +import { $compile, $list, $refresh } from "@thi.ng/rdom"; import { CloseMode, fromDOMEvent, @@ -30,7 +30,7 @@ const typewriter = (min: number, max: number) => (src: string) => return () => (active = false); }); -const names = ["TypeScript", "@thi.ng/hdom2020", "toxi", "Discord"]; +const names = ["TypeScript", "@thi.ng/rdom", "toxi", "Discord"]; const typing = fromIterable(choices(names), { delay: 2000 }).subscribe( metaStream(typewriter(16, 100), { closeOut: CloseMode.NEVER }) diff --git a/examples/hdom2020-basics/src/webpack.d.ts b/examples/rdom-basics/src/webpack.d.ts similarity index 100% rename from examples/hdom2020-basics/src/webpack.d.ts rename to examples/rdom-basics/src/webpack.d.ts diff --git a/examples/hdom2020-basics/tsconfig.json b/examples/rdom-basics/tsconfig.json similarity index 100% rename from examples/hdom2020-basics/tsconfig.json rename to examples/rdom-basics/tsconfig.json diff --git a/examples/hdom2020-basics/webpack.config.js b/examples/rdom-basics/webpack.config.js similarity index 100% rename from examples/hdom2020-basics/webpack.config.js rename to examples/rdom-basics/webpack.config.js diff --git a/examples/hdom2020-dnd/.gitignore b/examples/rdom-dnd/.gitignore similarity index 100% rename from examples/hdom2020-dnd/.gitignore rename to examples/rdom-dnd/.gitignore diff --git a/examples/hdom2020-basics/README.md b/examples/rdom-dnd/README.md similarity index 75% rename from examples/hdom2020-basics/README.md rename to examples/rdom-dnd/README.md index 1e81af1f93..98872d83bc 100644 --- a/examples/hdom2020-basics/README.md +++ b/examples/rdom-dnd/README.md @@ -1,6 +1,6 @@ -# hdom2020-basics +# rdom-dnd -[Live demo](http://demo.thi.ng/umbrella/hdom2020-basics/) +[Live demo](http://demo.thi.ng/umbrella/rdom-dnd/) Please refer to the [example build instructions](https://github.com/thi-ng/umbrella/wiki/Example-build-instructions) on the wiki. diff --git a/examples/hdom2020-dnd/index.html b/examples/rdom-dnd/index.html similarity index 92% rename from examples/hdom2020-dnd/index.html rename to examples/rdom-dnd/index.html index 571fa01739..d7e9c56a31 100644 --- a/examples/hdom2020-dnd/index.html +++ b/examples/rdom-dnd/index.html @@ -4,7 +4,7 @@ - hdom2020-dnd + rdom-dnd Source code diff --git a/examples/hdom2020-dnd/package.json b/examples/rdom-dnd/package.json similarity index 88% rename from examples/hdom2020-dnd/package.json rename to examples/rdom-dnd/package.json index 4e292f7fc6..538bc4aad0 100644 --- a/examples/hdom2020-dnd/package.json +++ b/examples/rdom-dnd/package.json @@ -1,7 +1,7 @@ { - "name": "hdom2020-dnd", + "name": "rdom-dnd", "version": "0.0.1", - "description": "hdom2020 drag & drop example", + "description": "rdom drag & drop example", "repository": "https://github.com/thi-ng/umbrella", "author": "Karsten Schmidt ", "license": "Apache-2.0", @@ -18,9 +18,9 @@ }, "dependencies": { "@thi.ng/api": "latest", - "@thi.ng/hdom2020": "latest", "@thi.ng/hiccup-carbon-icons": "latest", "@thi.ng/hiccup-html": "latest", + "@thi.ng/rdom": "latest", "@thi.ng/transducers": "latest" }, "browserslist": [ @@ -31,7 +31,7 @@ }, "thi.ng": { "readme": [ - "hdom2020", + "rdom", "hiccup-carbon-icons" ] } diff --git a/examples/hdom2020-dnd/src/draggable.ts b/examples/rdom-dnd/src/draggable.ts similarity index 99% rename from examples/hdom2020-dnd/src/draggable.ts rename to examples/rdom-dnd/src/draggable.ts index 862f3142c7..1937246fe1 100644 --- a/examples/hdom2020-dnd/src/draggable.ts +++ b/examples/rdom-dnd/src/draggable.ts @@ -1,6 +1,6 @@ import type { Fn } from "@thi.ng/api"; import { div } from "@thi.ng/hiccup-html"; -import { Component, ComponentLike, NumOrElement } from "@thi.ng/hdom2020"; +import { Component, ComponentLike, NumOrElement } from "@thi.ng/rdom"; interface DraggableOpts { scope?: string; diff --git a/examples/hdom2020-dnd/src/index.ts b/examples/rdom-dnd/src/index.ts similarity index 97% rename from examples/hdom2020-dnd/src/index.ts rename to examples/rdom-dnd/src/index.ts index 2215fa44aa..c40cc188cf 100644 --- a/examples/hdom2020-dnd/src/index.ts +++ b/examples/rdom-dnd/src/index.ts @@ -1,4 +1,4 @@ -import { $compile } from "@thi.ng/hdom2020"; +import { $compile } from "@thi.ng/rdom"; import { ADD_OUTLINE, CLOSE_OUTLINE, diff --git a/examples/hdom2020-dnd/src/notification.ts b/examples/rdom-dnd/src/notification.ts similarity index 95% rename from examples/hdom2020-dnd/src/notification.ts rename to examples/rdom-dnd/src/notification.ts index f950fc6784..2a00cb2312 100644 --- a/examples/hdom2020-dnd/src/notification.ts +++ b/examples/rdom-dnd/src/notification.ts @@ -1,4 +1,4 @@ -import { Component, NumOrElement } from "@thi.ng/hdom2020"; +import { Component, NumOrElement } from "@thi.ng/rdom"; import { CHECKMARK_SOLID, INFO, diff --git a/examples/hdom2020-dnd/src/webpack.d.ts b/examples/rdom-dnd/src/webpack.d.ts similarity index 100% rename from examples/hdom2020-dnd/src/webpack.d.ts rename to examples/rdom-dnd/src/webpack.d.ts diff --git a/examples/hdom2020-dnd/tsconfig.json b/examples/rdom-dnd/tsconfig.json similarity index 100% rename from examples/hdom2020-dnd/tsconfig.json rename to examples/rdom-dnd/tsconfig.json diff --git a/examples/hdom2020-dnd/webpack.config.js b/examples/rdom-dnd/webpack.config.js similarity index 100% rename from examples/hdom2020-dnd/webpack.config.js rename to examples/rdom-dnd/webpack.config.js diff --git a/examples/hdom2020-lissajous/.gitignore b/examples/rdom-lissajous/.gitignore similarity index 100% rename from examples/hdom2020-lissajous/.gitignore rename to examples/rdom-lissajous/.gitignore diff --git a/examples/hdom2020-lissajous/README.md b/examples/rdom-lissajous/README.md similarity index 74% rename from examples/hdom2020-lissajous/README.md rename to examples/rdom-lissajous/README.md index 4cf0cef302..c56f1c905d 100644 --- a/examples/hdom2020-lissajous/README.md +++ b/examples/rdom-lissajous/README.md @@ -1,6 +1,6 @@ -# hdom2020-lissajous +# rdom-lissajous -[Live demo](http://demo.thi.ng/umbrella/hdom2020-lissajous/) +[Live demo](http://demo.thi.ng/umbrella/rdom-lissajous/) Please refer to the [example build instructions](https://github.com/thi-ng/umbrella/wiki/Example-build-instructions) on the wiki. diff --git a/examples/hdom2020-lissajous/index.html b/examples/rdom-lissajous/index.html similarity index 91% rename from examples/hdom2020-lissajous/index.html rename to examples/rdom-lissajous/index.html index 50292c9311..337bffd419 100644 --- a/examples/hdom2020-lissajous/index.html +++ b/examples/rdom-lissajous/index.html @@ -4,7 +4,7 @@ - hdom2020-lissajous + rdom-lissajous - + diff --git a/examples/hdom2020-lissajous/package.json b/examples/rdom-lissajous/package.json similarity index 83% rename from examples/hdom2020-lissajous/package.json rename to examples/rdom-lissajous/package.json index d23ffc29c4..c929d980cf 100644 --- a/examples/hdom2020-lissajous/package.json +++ b/examples/rdom-lissajous/package.json @@ -1,7 +1,7 @@ { - "name": "hdom2020-lissajous", + "name": "rdom-lissajous", "version": "0.0.1", - "description": "hdom2020 & hiccup-canvas interop test", + "description": "rdom & hiccup-canvas interop test", "repository": "https://github.com/thi-ng/umbrella", "author": "Karsten Schmidt ", "license": "Apache-2.0", @@ -18,9 +18,10 @@ }, "dependencies": { "@thi.ng/api": "latest", - "@thi.ng/hdom2020": "latest", "@thi.ng/hiccup-carbon-icons": "latest", "@thi.ng/hiccup-html": "latest", + "@thi.ng/rdom": "latest", + "@thi.ng/rdom-canvas": "latest", "@thi.ng/rstream": "latest", "@thi.ng/transducers": "latest" }, @@ -32,7 +33,8 @@ }, "thi.ng": { "readme": [ - "hdom2020" + "rdom", + "rdom-canvas" ] } } diff --git a/examples/hdom2020-lissajous/src/index.ts b/examples/rdom-lissajous/src/index.ts similarity index 98% rename from examples/hdom2020-lissajous/src/index.ts rename to examples/rdom-lissajous/src/index.ts index 1db983e506..e9de3fb84f 100644 --- a/examples/hdom2020-lissajous/src/index.ts +++ b/examples/rdom-lissajous/src/index.ts @@ -1,5 +1,5 @@ import type { IDeref } from "@thi.ng/api"; -import { $canvas, $compile } from "@thi.ng/hdom2020"; +import { $canvas, $compile } from "@thi.ng/rdom"; import { INFO_SOLID as ICON, withSize } from "@thi.ng/hiccup-carbon-icons"; import { div, inputRange, label } from "@thi.ng/hiccup-html"; import { diff --git a/examples/hdom2020-lissajous/src/webpack.d.ts b/examples/rdom-lissajous/src/webpack.d.ts similarity index 100% rename from examples/hdom2020-lissajous/src/webpack.d.ts rename to examples/rdom-lissajous/src/webpack.d.ts diff --git a/examples/hdom2020-lissajous/tsconfig.json b/examples/rdom-lissajous/tsconfig.json similarity index 100% rename from examples/hdom2020-lissajous/tsconfig.json rename to examples/rdom-lissajous/tsconfig.json diff --git a/examples/hdom2020-lissajous/webpack.config.js b/examples/rdom-lissajous/webpack.config.js similarity index 100% rename from examples/hdom2020-lissajous/webpack.config.js rename to examples/rdom-lissajous/webpack.config.js diff --git a/examples/hdom2020-search-docs/.gitignore b/examples/rdom-search-docs/.gitignore similarity index 100% rename from examples/hdom2020-search-docs/.gitignore rename to examples/rdom-search-docs/.gitignore diff --git a/examples/hdom2020-search-docs/README.md b/examples/rdom-search-docs/README.md similarity index 79% rename from examples/hdom2020-search-docs/README.md rename to examples/rdom-search-docs/README.md index 39c20c89af..cbab002a13 100644 --- a/examples/hdom2020-search-docs/README.md +++ b/examples/rdom-search-docs/README.md @@ -1,8 +1,8 @@ -# hdom2020-search-docs +# rdom-search-docs -[Live demo](http://demo.thi.ng/umbrella/hdom2020-search-docs/) +[Live demo](http://demo.thi.ng/umbrella/rdom-search-docs/) -[@thi.ng/hdom2020](https://github.com/thi-ng/umbrella/tree/develop/packages/hdom2020) +[@thi.ng/rdom](https://github.com/thi-ng/umbrella/tree/develop/packages/rdom) based docstring search example for the entire thi.ng/umbrella repo (currently ~22k results and 1600+ source files indexed). diff --git a/examples/hdom2020-search-docs/index.html b/examples/rdom-search-docs/index.html similarity index 92% rename from examples/hdom2020-search-docs/index.html rename to examples/rdom-search-docs/index.html index 6bcb4f310f..03bf14140b 100644 --- a/examples/hdom2020-search-docs/index.html +++ b/examples/rdom-search-docs/index.html @@ -4,7 +4,7 @@ - hdom2020-search-docs + rdom-search-docs