mol_dump_lib 0.0.2 → 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 +13 -3
- package/web.js.map +1 -1
- package/web.mjs +13 -3
- package/web.view.tree +2 -2
package/node.mjs
CHANGED
|
@@ -6395,10 +6395,14 @@ var $;
|
|
|
6395
6395
|
var $;
|
|
6396
6396
|
(function ($) {
|
|
6397
6397
|
class $mol_dump_value extends $mol_view {
|
|
6398
|
-
value() {
|
|
6398
|
+
value(next) {
|
|
6399
|
+
if (next !== undefined)
|
|
6400
|
+
return next;
|
|
6399
6401
|
return null;
|
|
6400
6402
|
}
|
|
6401
|
-
preview_show() {
|
|
6403
|
+
preview_show(next) {
|
|
6404
|
+
if (next !== undefined)
|
|
6405
|
+
return next;
|
|
6402
6406
|
return true;
|
|
6403
6407
|
}
|
|
6404
6408
|
sub() {
|
|
@@ -6494,6 +6498,12 @@ var $;
|
|
|
6494
6498
|
return obj;
|
|
6495
6499
|
}
|
|
6496
6500
|
}
|
|
6501
|
+
__decorate([
|
|
6502
|
+
$mol_mem
|
|
6503
|
+
], $mol_dump_value.prototype, "value", null);
|
|
6504
|
+
__decorate([
|
|
6505
|
+
$mol_mem
|
|
6506
|
+
], $mol_dump_value.prototype, "preview_show", null);
|
|
6497
6507
|
__decorate([
|
|
6498
6508
|
$mol_mem
|
|
6499
6509
|
], $mol_dump_value.prototype, "Simple", null);
|
package/node.test.js
CHANGED
|
@@ -6387,10 +6387,14 @@ var $;
|
|
|
6387
6387
|
var $;
|
|
6388
6388
|
(function ($) {
|
|
6389
6389
|
class $mol_dump_value extends $mol_view {
|
|
6390
|
-
value() {
|
|
6390
|
+
value(next) {
|
|
6391
|
+
if (next !== undefined)
|
|
6392
|
+
return next;
|
|
6391
6393
|
return null;
|
|
6392
6394
|
}
|
|
6393
|
-
preview_show() {
|
|
6395
|
+
preview_show(next) {
|
|
6396
|
+
if (next !== undefined)
|
|
6397
|
+
return next;
|
|
6394
6398
|
return true;
|
|
6395
6399
|
}
|
|
6396
6400
|
sub() {
|
|
@@ -6486,6 +6490,12 @@ var $;
|
|
|
6486
6490
|
return obj;
|
|
6487
6491
|
}
|
|
6488
6492
|
}
|
|
6493
|
+
__decorate([
|
|
6494
|
+
$mol_mem
|
|
6495
|
+
], $mol_dump_value.prototype, "value", null);
|
|
6496
|
+
__decorate([
|
|
6497
|
+
$mol_mem
|
|
6498
|
+
], $mol_dump_value.prototype, "preview_show", null);
|
|
6489
6499
|
__decorate([
|
|
6490
6500
|
$mol_mem
|
|
6491
6501
|
], $mol_dump_value.prototype, "Simple", null);
|