@thi.ng/rdom 1.7.25 → 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 +1 -1
- package/checks.d.ts +1 -0
- package/dom.d.ts +2 -2
- package/object.d.ts +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
package/checks.d.ts
CHANGED
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
|
-
*
|
|
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
|
|
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
|
|
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.
|
|
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.
|
|
44
|
-
"@thi.ng/checks": "^3.6.
|
|
45
|
-
"@thi.ng/errors": "^2.5.
|
|
46
|
-
"@thi.ng/hiccup": "^5.3.
|
|
47
|
-
"@thi.ng/paths": "^5.2.
|
|
48
|
-
"@thi.ng/prefixes": "^2.3.
|
|
49
|
-
"@thi.ng/rstream": "^9.2.
|
|
50
|
-
"@thi.ng/strings": "^3.9.
|
|
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.
|
|
54
|
-
"typedoc": "^0.27.
|
|
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": "
|
|
151
|
+
"gitHead": "9a0b33253fef092aaf301decf6ecd54317874d4c\n"
|
|
152
152
|
}
|