mol_dump_lib 0.0.3 → 0.0.4
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 +2 -2
- package/node.deps.json +1 -1
- package/node.js +12 -2
- package/node.js.map +1 -1
- package/node.mjs +12 -2
- package/node.test.js +12 -2
- package/node.test.js.map +1 -1
- package/node.view.tree +2 -2
- package/package.json +1 -1
- package/web.d.ts +2 -2
- package/web.deps.json +1 -1
- package/web.js +12 -2
- package/web.js.map +1 -1
- package/web.mjs +12 -2
- package/web.view.tree +2 -2
package/web.js
CHANGED
|
@@ -5733,10 +5733,14 @@ var $;
|
|
|
5733
5733
|
var $;
|
|
5734
5734
|
(function ($) {
|
|
5735
5735
|
class $mol_dump_value extends $mol_view {
|
|
5736
|
-
value() {
|
|
5736
|
+
value(next) {
|
|
5737
|
+
if (next !== undefined)
|
|
5738
|
+
return next;
|
|
5737
5739
|
return null;
|
|
5738
5740
|
}
|
|
5739
|
-
preview_show() {
|
|
5741
|
+
preview_show(next) {
|
|
5742
|
+
if (next !== undefined)
|
|
5743
|
+
return next;
|
|
5740
5744
|
return true;
|
|
5741
5745
|
}
|
|
5742
5746
|
sub() {
|
|
@@ -5832,6 +5836,12 @@ var $;
|
|
|
5832
5836
|
return obj;
|
|
5833
5837
|
}
|
|
5834
5838
|
}
|
|
5839
|
+
__decorate([
|
|
5840
|
+
$mol_mem
|
|
5841
|
+
], $mol_dump_value.prototype, "value", null);
|
|
5842
|
+
__decorate([
|
|
5843
|
+
$mol_mem
|
|
5844
|
+
], $mol_dump_value.prototype, "preview_show", null);
|
|
5835
5845
|
__decorate([
|
|
5836
5846
|
$mol_mem
|
|
5837
5847
|
], $mol_dump_value.prototype, "Simple", null);
|