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/node.js CHANGED
@@ -2833,8 +2833,8 @@ var $;
2833
2833
  }
2834
2834
  return names;
2835
2835
  }
2836
- theme() {
2837
- return null;
2836
+ theme(next = null) {
2837
+ return next;
2838
2838
  }
2839
2839
  attr_static() {
2840
2840
  let attrs = {};
@@ -2961,6 +2961,9 @@ var $;
2961
2961
  __decorate([
2962
2962
  $mol_memo.method
2963
2963
  ], $mol_view.prototype, "view_names", null);
2964
+ __decorate([
2965
+ $mol_mem
2966
+ ], $mol_view.prototype, "theme", null);
2964
2967
  __decorate([
2965
2968
  $mol_mem_key
2966
2969
  ], $mol_view, "Root", null);
@@ -3062,8 +3065,6 @@ var $;
3062
3065
  const descr = Reflect.getOwnPropertyDescriptor(proto, field);
3063
3066
  if (typeof descr.value !== 'function')
3064
3067
  continue;
3065
- if (descr.value.length === 0)
3066
- continue;
3067
3068
  Component.observedAttributes.add(field);
3068
3069
  }
3069
3070
  attributes_observe(Reflect.getPrototypeOf(proto));