@thi.ng/rdom 1.7.85 → 1.7.86

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 CHANGED
@@ -316,7 +316,7 @@ Browser ESM import:
316
316
 
317
317
  [JSDelivr documentation](https://www.jsdelivr.com/)
318
318
 
319
- Package sizes (brotli'd, pre-treeshake): ESM: 4.31 KB
319
+ Package sizes (brotli'd, pre-treeshake): ESM: 4.37 KB
320
320
 
321
321
  ## Dependencies
322
322
 
package/async.js CHANGED
@@ -10,6 +10,8 @@ class $Async {
10
10
  this.src = src;
11
11
  this.inner = inner;
12
12
  }
13
+ src;
14
+ inner;
13
15
  el;
14
16
  async mount(parent, index = -1) {
15
17
  this.el = await this.inner.mount(parent, index, void 0);
package/klist.js CHANGED
@@ -15,6 +15,10 @@ class KList extends Component {
15
15
  this.ctor = ctor;
16
16
  this.keyFn = keyFn;
17
17
  }
18
+ tag;
19
+ attribs;
20
+ ctor;
21
+ keyFn;
18
22
  items = [];
19
23
  cache;
20
24
  async mount(parent, index, state) {
package/lazy.js CHANGED
@@ -8,6 +8,10 @@ class $Lazy extends Component {
8
8
  this.ctor = ctor;
9
9
  this.opts = opts;
10
10
  }
11
+ tag;
12
+ attribs;
13
+ ctor;
14
+ opts;
11
15
  observer;
12
16
  inner;
13
17
  async mount(parent, index) {
package/list.js CHANGED
@@ -15,6 +15,10 @@ class List extends Component {
15
15
  this.ctor = ctor;
16
16
  this.equiv = equiv;
17
17
  }
18
+ tag;
19
+ attribs;
20
+ ctor;
21
+ equiv;
18
22
  prev;
19
23
  items;
20
24
  async mount(parent, index, state) {
package/object.js CHANGED
@@ -14,6 +14,7 @@ class $Object extends Component {
14
14
  this.ctor = ctor;
15
15
  this.obj = fromObject(src, opts);
16
16
  }
17
+ ctor;
17
18
  obj;
18
19
  inner;
19
20
  async mount(parent, index = -1, state) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rdom",
3
- "version": "1.7.85",
3
+ "version": "1.7.86",
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",
@@ -41,18 +41,18 @@
41
41
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
42
42
  },
43
43
  "dependencies": {
44
- "@thi.ng/api": "^8.12.18",
45
- "@thi.ng/checks": "^3.8.8",
46
- "@thi.ng/errors": "^2.6.7",
47
- "@thi.ng/hiccup": "^5.4.3",
48
- "@thi.ng/paths": "^5.2.37",
49
- "@thi.ng/prefixes": "^2.3.68",
50
- "@thi.ng/rstream": "^9.4.2",
51
- "@thi.ng/strings": "^3.12.0"
44
+ "@thi.ng/api": "^8.12.19",
45
+ "@thi.ng/checks": "^3.8.9",
46
+ "@thi.ng/errors": "^2.6.8",
47
+ "@thi.ng/hiccup": "^5.4.4",
48
+ "@thi.ng/paths": "^5.2.38",
49
+ "@thi.ng/prefixes": "^2.3.69",
50
+ "@thi.ng/rstream": "^9.5.0",
51
+ "@thi.ng/strings": "^3.12.1"
52
52
  },
53
53
  "devDependencies": {
54
- "esbuild": "^0.27.2",
55
- "typedoc": "^0.28.16",
54
+ "esbuild": "^0.28.0",
55
+ "typedoc": "^0.28.18",
56
56
  "typescript": "^5.9.3"
57
57
  },
58
58
  "keywords": [
@@ -149,5 +149,5 @@
149
149
  ],
150
150
  "year": 2020
151
151
  },
152
- "gitHead": "929fb6590178a41cbb77cbb87e07c59c61381607\n"
152
+ "gitHead": "a780d4a5f6f5fc595c9d28527686f63534927d32"
153
153
  }
package/promise.js CHANGED
@@ -6,6 +6,8 @@ class $Promise extends Component {
6
6
  this.promise = promise;
7
7
  this.error = error;
8
8
  }
9
+ promise;
10
+ error;
9
11
  inner;
10
12
  async mount(parent, index) {
11
13
  try {
package/sub.js CHANGED
@@ -13,6 +13,7 @@ class $Sub extends Subscription {
13
13
  super(void 0, { id: id || `rdom$sub-${__nextID()}` });
14
14
  this.inner = inner;
15
15
  }
16
+ inner;
16
17
  el;
17
18
  async mount(parent, index = -1) {
18
19
  return this.el = await this.inner.mount(
@@ -39,6 +40,7 @@ class $SubA extends Subscription {
39
40
  this.comp = comp;
40
41
  this.setter = defSetterUnsafe(path);
41
42
  }
43
+ comp;
42
44
  setter;
43
45
  attr = {};
44
46
  next(a) {
package/switch.js CHANGED
@@ -24,6 +24,10 @@ class Switch extends Component {
24
24
  this.error = error;
25
25
  this.loader = loader;
26
26
  }
27
+ keyFn;
28
+ ctors;
29
+ error;
30
+ loader;
27
31
  val;
28
32
  parent;
29
33
  inner;