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
-
+