@thi.ng/rdom 1.7.72 → 1.7.74
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/README.md +2 -2
- package/dom.js +2 -2
- package/package.json +14 -13
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 214 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
|
>
|
|
@@ -315,7 +315,7 @@ Browser ESM import:
|
|
|
315
315
|
|
|
316
316
|
[JSDelivr documentation](https://www.jsdelivr.com/)
|
|
317
317
|
|
|
318
|
-
Package sizes (brotli'd, pre-treeshake): ESM: 4.
|
|
318
|
+
Package sizes (brotli'd, pre-treeshake): ESM: 4.31 KB
|
|
319
319
|
|
|
320
320
|
## Dependencies
|
|
321
321
|
|
package/dom.js
CHANGED
|
@@ -6,7 +6,7 @@ import { isNotStringAndIterable } from "@thi.ng/checks/is-not-string-iterable";
|
|
|
6
6
|
import { isNumber } from "@thi.ng/checks/is-number";
|
|
7
7
|
import { isString } from "@thi.ng/checks/is-string";
|
|
8
8
|
import { assert } from "@thi.ng/errors/assert";
|
|
9
|
-
import {
|
|
9
|
+
import { illegalArgs } from "@thi.ng/errors/illegal-arguments";
|
|
10
10
|
import {
|
|
11
11
|
ATTRIB_JOIN_DELIMS,
|
|
12
12
|
NO_SPANS,
|
|
@@ -26,7 +26,7 @@ const $treeElem = (tree, parent, idx) => {
|
|
|
26
26
|
// [fn, ...args]
|
|
27
27
|
isFunction(tag) ? $tree(tag.apply(null, tree.slice(1)), parent) : (
|
|
28
28
|
// unsupported
|
|
29
|
-
|
|
29
|
+
illegalArgs(`tag: ${tag}`)
|
|
30
30
|
)
|
|
31
31
|
)
|
|
32
32
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rdom",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.74",
|
|
4
4
|
"description": "Lightweight, reactive, VDOM-less UI/DOM components with async lifecycle and @thi.ng/hiccup compatible",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "https://github.com/thi-ng/umbrella.git"
|
|
11
|
+
"url": "git+https://github.com/thi-ng/umbrella.git",
|
|
12
|
+
"directory": "packages/rdom"
|
|
12
13
|
},
|
|
13
14
|
"homepage": "https://thi.ng/rdom",
|
|
14
15
|
"funding": [
|
|
@@ -40,18 +41,18 @@
|
|
|
40
41
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
41
42
|
},
|
|
42
43
|
"dependencies": {
|
|
43
|
-
"@thi.ng/api": "^8.12.
|
|
44
|
-
"@thi.ng/checks": "^3.8.
|
|
45
|
-
"@thi.ng/errors": "^2.6.
|
|
46
|
-
"@thi.ng/hiccup": "^5.3.
|
|
47
|
-
"@thi.ng/paths": "^5.2.
|
|
48
|
-
"@thi.ng/prefixes": "^2.3.
|
|
49
|
-
"@thi.ng/rstream": "^9.3.
|
|
50
|
-
"@thi.ng/strings": "^3.9.
|
|
44
|
+
"@thi.ng/api": "^8.12.14",
|
|
45
|
+
"@thi.ng/checks": "^3.8.4",
|
|
46
|
+
"@thi.ng/errors": "^2.6.3",
|
|
47
|
+
"@thi.ng/hiccup": "^5.3.37",
|
|
48
|
+
"@thi.ng/paths": "^5.2.33",
|
|
49
|
+
"@thi.ng/prefixes": "^2.3.65",
|
|
50
|
+
"@thi.ng/rstream": "^9.3.13",
|
|
51
|
+
"@thi.ng/strings": "^3.9.35"
|
|
51
52
|
},
|
|
52
53
|
"devDependencies": {
|
|
53
|
-
"esbuild": "^0.27.
|
|
54
|
-
"typedoc": "^0.28.
|
|
54
|
+
"esbuild": "^0.27.2",
|
|
55
|
+
"typedoc": "^0.28.16",
|
|
55
56
|
"typescript": "^5.9.3"
|
|
56
57
|
},
|
|
57
58
|
"keywords": [
|
|
@@ -148,5 +149,5 @@
|
|
|
148
149
|
],
|
|
149
150
|
"year": 2020
|
|
150
151
|
},
|
|
151
|
-
"gitHead": "
|
|
152
|
+
"gitHead": "4bd1b9d8ae52ba32b90a1b9a55d329c708ca7865\n"
|
|
152
153
|
}
|