@thi.ng/rdom 1.7.73 → 1.7.76

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/README.md +2 -2
  2. package/dom.js +2 -2
  3. package/package.json +12 -11
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 213 standalone projects, maintained as part
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.29 KB
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 { unsupported } from "@thi.ng/errors/unsupported";
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
- unsupported(`tag: ${tag}`)
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.73",
3
+ "version": "1.7.76",
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,14 +41,14 @@
40
41
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
41
42
  },
42
43
  "dependencies": {
43
- "@thi.ng/api": "^8.12.13",
44
- "@thi.ng/checks": "^3.8.3",
45
- "@thi.ng/errors": "^2.6.2",
46
- "@thi.ng/hiccup": "^5.3.36",
47
- "@thi.ng/paths": "^5.2.32",
48
- "@thi.ng/prefixes": "^2.3.64",
49
- "@thi.ng/rstream": "^9.3.12",
50
- "@thi.ng/strings": "^3.9.34"
44
+ "@thi.ng/api": "^8.12.15",
45
+ "@thi.ng/checks": "^3.8.5",
46
+ "@thi.ng/errors": "^2.6.4",
47
+ "@thi.ng/hiccup": "^5.3.38",
48
+ "@thi.ng/paths": "^5.2.34",
49
+ "@thi.ng/prefixes": "^2.3.66",
50
+ "@thi.ng/rstream": "^9.3.15",
51
+ "@thi.ng/strings": "^3.9.36"
51
52
  },
52
53
  "devDependencies": {
53
54
  "esbuild": "^0.27.2",
@@ -148,5 +149,5 @@
148
149
  ],
149
150
  "year": 2020
150
151
  },
151
- "gitHead": "828ec2e9ffde7307231b03cff46598c0915b1857\n"
152
+ "gitHead": "8f50352caab9ec7757d645c0afa605dfb5427abe\n"
152
153
  }