@thi.ng/rdom 1.7.26 → 1.7.27

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-01-29T16:25:48Z
3
+ - **Last updated**: 2025-02-13T16:03:11Z
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/checks.d.ts CHANGED
@@ -5,6 +5,7 @@ import type { IComponent } from "./api.js";
5
5
  *
6
6
  * @remarks
7
7
  * See thi.ng/hiccup docs for reference:
8
+ *
8
9
  * - https://docs.thi.ng/umbrella/hiccup/functions/serialize.html
9
10
  *
10
11
  * @param tree
package/dom.d.ts CHANGED
@@ -58,7 +58,7 @@ export declare const $el: (tag: string, attribs: any, body?: any, parent?: Paren
58
58
  *
59
59
  * @remarks
60
60
  * See thi.ng/hiccup docs for reference:
61
- * - https://docs.thi.ng/umbrella/hiccup/functions/serialize.html
61
+ * https://docs.thi.ng/umbrella/hiccup/functions/serialize.html
62
62
  *
63
63
  * @param body
64
64
  * @param parent
@@ -134,7 +134,7 @@ export declare const $html: (el: HTMLElement | SVGElement, body: MaybeDeref<stri
134
134
  * string, a string array or an object of booleans. If the latter, the given
135
135
  * class names are either added to or removed from the current list of classes.
136
136
  * See
137
- * [`mergeClasses()`](https://docs.thi.ng/umbrella/hiccup/functions/mergeClasses.html)
137
+ * [`mergeClasses`](https://docs.thi.ng/umbrella/hiccup/functions/mergeClasses.html)
138
138
  * for details.
139
139
  *
140
140
  * CSS style rules can be defined via the `style` attrib. Please see
package/object.d.ts CHANGED
@@ -10,7 +10,7 @@ import { Component } from "./component.js";
10
10
  *
11
11
  * @remarks
12
12
  * Uses
13
- * [`fromObject()`](https://docs.thi.ng/umbrella/rstream/functions/fromObject.html)
13
+ * [`fromObject`](https://docs.thi.ng/umbrella/rstream/functions/fromObject.html)
14
14
  * for creating the internal key-value streams. These can then be used by
15
15
  * `inner` to produce reactive child elements. The given `src` object is only
16
16
  * used to seed those streams with initial values. The component wrapper can be
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rdom",
3
- "version": "1.7.26",
3
+ "version": "1.7.27",
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",
@@ -40,18 +40,18 @@
40
40
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@thi.ng/api": "^8.11.19",
44
- "@thi.ng/checks": "^3.6.22",
45
- "@thi.ng/errors": "^2.5.25",
46
- "@thi.ng/hiccup": "^5.3.2",
47
- "@thi.ng/paths": "^5.2.0",
48
- "@thi.ng/prefixes": "^2.3.36",
49
- "@thi.ng/rstream": "^9.2.9",
50
- "@thi.ng/strings": "^3.9.4"
43
+ "@thi.ng/api": "^8.11.20",
44
+ "@thi.ng/checks": "^3.6.23",
45
+ "@thi.ng/errors": "^2.5.26",
46
+ "@thi.ng/hiccup": "^5.3.3",
47
+ "@thi.ng/paths": "^5.2.1",
48
+ "@thi.ng/prefixes": "^2.3.37",
49
+ "@thi.ng/rstream": "^9.2.10",
50
+ "@thi.ng/strings": "^3.9.5"
51
51
  },
52
52
  "devDependencies": {
53
- "esbuild": "^0.24.2",
54
- "typedoc": "^0.27.6",
53
+ "esbuild": "^0.25.0",
54
+ "typedoc": "^0.27.7",
55
55
  "typescript": "^5.7.3"
56
56
  },
57
57
  "keywords": [
@@ -148,5 +148,5 @@
148
148
  ],
149
149
  "year": 2020
150
150
  },
151
- "gitHead": "dcc1dbfa6eae31ac65e12843987b94d4a7edc144\n"
151
+ "gitHead": "9a0b33253fef092aaf301decf6ecd54317874d4c\n"
152
152
  }