mol_dump_lib 0.0.10 → 0.0.11
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.d.ts +1 -1
- package/node.deps.json +1 -1
- package/node.js +5 -2
- package/node.js.map +1 -1
- package/node.mjs +5 -2
- package/node.test.js +5 -2
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +1 -1
- package/web.deps.json +1 -1
- package/web.js +5 -2
- package/web.js.map +1 -1
- package/web.mjs +5 -2
package/node.mjs
CHANGED
|
@@ -2833,8 +2833,8 @@ var $;
|
|
|
2833
2833
|
}
|
|
2834
2834
|
return names;
|
|
2835
2835
|
}
|
|
2836
|
-
theme() {
|
|
2837
|
-
return
|
|
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);
|
package/node.test.js
CHANGED
|
@@ -2825,8 +2825,8 @@ var $;
|
|
|
2825
2825
|
}
|
|
2826
2826
|
return names;
|
|
2827
2827
|
}
|
|
2828
|
-
theme() {
|
|
2829
|
-
return
|
|
2828
|
+
theme(next = null) {
|
|
2829
|
+
return next;
|
|
2830
2830
|
}
|
|
2831
2831
|
attr_static() {
|
|
2832
2832
|
let attrs = {};
|
|
@@ -2953,6 +2953,9 @@ var $;
|
|
|
2953
2953
|
__decorate([
|
|
2954
2954
|
$mol_memo.method
|
|
2955
2955
|
], $mol_view.prototype, "view_names", null);
|
|
2956
|
+
__decorate([
|
|
2957
|
+
$mol_mem
|
|
2958
|
+
], $mol_view.prototype, "theme", null);
|
|
2956
2959
|
__decorate([
|
|
2957
2960
|
$mol_mem_key
|
|
2958
2961
|
], $mol_view, "Root", null);
|