@thi.ng/hdom 9.4.27 → 9.4.29
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.
- package/CHANGELOG.md +1 -1
- package/README.md +8 -8
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 191 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
|
-
|
|
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.
|
|
3
|
+
"version": "9.4.29",
|
|
4
4
|
"description": "Lightweight vanilla ES6 UI component trees with customizable branch-local behaviors",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -39,22 +39,22 @@
|
|
|
39
39
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@thi.ng/api": "^8.
|
|
43
|
-
"@thi.ng/checks": "^3.
|
|
44
|
-
"@thi.ng/diff": "^5.1.
|
|
45
|
-
"@thi.ng/equiv": "^2.1.
|
|
46
|
-
"@thi.ng/errors": "^2.5.
|
|
47
|
-
"@thi.ng/hiccup": "^5.1.
|
|
48
|
-
"@thi.ng/logger": "^3.0.
|
|
49
|
-
"@thi.ng/prefixes": "^2.3.
|
|
42
|
+
"@thi.ng/api": "^8.10.0",
|
|
43
|
+
"@thi.ng/checks": "^3.6.0",
|
|
44
|
+
"@thi.ng/diff": "^5.1.65",
|
|
45
|
+
"@thi.ng/equiv": "^2.1.54",
|
|
46
|
+
"@thi.ng/errors": "^2.5.3",
|
|
47
|
+
"@thi.ng/hiccup": "^5.1.27",
|
|
48
|
+
"@thi.ng/logger": "^3.0.8",
|
|
49
|
+
"@thi.ng/prefixes": "^2.3.15"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@microsoft/api-extractor": "^7.
|
|
53
|
-
"@thi.ng/atom": "^5.2.
|
|
54
|
-
"esbuild": "^0.20.
|
|
52
|
+
"@microsoft/api-extractor": "^7.43.0",
|
|
53
|
+
"@thi.ng/atom": "^5.2.42",
|
|
54
|
+
"esbuild": "^0.20.2",
|
|
55
55
|
"rimraf": "^5.0.5",
|
|
56
56
|
"typedoc": "^0.25.12",
|
|
57
|
-
"typescript": "^5.4.
|
|
57
|
+
"typescript": "^5.4.3"
|
|
58
58
|
},
|
|
59
59
|
"keywords": [
|
|
60
60
|
"array",
|
|
@@ -132,5 +132,5 @@
|
|
|
132
132
|
"status": "completed",
|
|
133
133
|
"year": 2015
|
|
134
134
|
},
|
|
135
|
-
"gitHead": "
|
|
135
|
+
"gitHead": "85ac4bd4d6d89f8e3689e2863d5bea0cecdb371c\n"
|
|
136
136
|
}
|