mol_dump_lib 0.0.10 → 0.0.12

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/web.js CHANGED
@@ -2266,8 +2266,8 @@ var $;
2266
2266
  }
2267
2267
  return names;
2268
2268
  }
2269
- theme() {
2270
- return null;
2269
+ theme(next = null) {
2270
+ return next;
2271
2271
  }
2272
2272
  attr_static() {
2273
2273
  let attrs = {};
@@ -2394,6 +2394,9 @@ var $;
2394
2394
  __decorate([
2395
2395
  $mol_memo.method
2396
2396
  ], $mol_view.prototype, "view_names", null);
2397
+ __decorate([
2398
+ $mol_mem
2399
+ ], $mol_view.prototype, "theme", null);
2397
2400
  __decorate([
2398
2401
  $mol_mem_key
2399
2402
  ], $mol_view, "Root", null);
@@ -2502,8 +2505,6 @@ var $;
2502
2505
  const descr = Reflect.getOwnPropertyDescriptor(proto, field);
2503
2506
  if (typeof descr.value !== 'function')
2504
2507
  continue;
2505
- if (descr.value.length === 0)
2506
- continue;
2507
2508
  Component.observedAttributes.add(field);
2508
2509
  }
2509
2510
  attributes_observe(Reflect.getPrototypeOf(proto));