@thi.ng/hdom 9.4.28 → 9.4.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +8 -8
  3. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-03-27T09:53:45Z
3
+ - **Last updated**: 2024-04-11T12:32:44Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 190 standalone projects, maintained as part
10
+ > This is one of 192 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
12
12
  > and anti-framework.
13
13
  >
@@ -132,7 +132,13 @@ Benefits:
132
132
  yarn add @thi.ng/hdom
133
133
  ```
134
134
 
135
- ES module import:
135
+ ESM import:
136
+
137
+ ```ts
138
+ import * as hdom from "@thi.ng/hdom";
139
+ ```
140
+
141
+ Browser ESM import:
136
142
 
137
143
  ```html
138
144
  <script type="module" src="https://cdn.skypack.dev/@thi.ng/hdom"></script>
@@ -140,12 +146,6 @@ ES module import:
140
146
 
141
147
  [Skypack documentation](https://docs.skypack.dev/)
142
148
 
143
- For Node.js REPL:
144
-
145
- ```js
146
- const hdom = await import("@thi.ng/hdom");
147
- ```
148
-
149
149
  You can use the
150
150
  [create-hdom-app](https://github.com/thi-ng/create-hdom-app) project
151
151
  generator to create one of several pre-configured app skeletons using
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/hdom",
3
- "version": "9.4.28",
3
+ "version": "9.4.30",
4
4
  "description": "Lightweight vanilla ES6 UI component trees with customizable branch-local behaviors",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,18 +39,18 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.9.31",
43
- "@thi.ng/checks": "^3.5.5",
44
- "@thi.ng/diff": "^5.1.64",
45
- "@thi.ng/equiv": "^2.1.53",
46
- "@thi.ng/errors": "^2.5.2",
47
- "@thi.ng/hiccup": "^5.1.26",
48
- "@thi.ng/logger": "^3.0.7",
49
- "@thi.ng/prefixes": "^2.3.14"
42
+ "@thi.ng/api": "^8.10.1",
43
+ "@thi.ng/checks": "^3.6.1",
44
+ "@thi.ng/diff": "^5.1.66",
45
+ "@thi.ng/equiv": "^2.1.55",
46
+ "@thi.ng/errors": "^2.5.4",
47
+ "@thi.ng/hiccup": "^5.1.28",
48
+ "@thi.ng/logger": "^3.0.9",
49
+ "@thi.ng/prefixes": "^2.3.16"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@microsoft/api-extractor": "^7.43.0",
53
- "@thi.ng/atom": "^5.2.41",
53
+ "@thi.ng/atom": "^5.2.43",
54
54
  "esbuild": "^0.20.2",
55
55
  "rimraf": "^5.0.5",
56
56
  "typedoc": "^0.25.12",
@@ -132,5 +132,5 @@
132
132
  "status": "completed",
133
133
  "year": 2015
134
134
  },
135
- "gitHead": "feb3b24654f2c931cd3c3308c1c0c807ee14d0e4\n"
135
+ "gitHead": "18a0c063a7b33d790e5bc2486c106f45f663ac28\n"
136
136
  }