mol_plot_all 1.2.1050 → 1.2.1052
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 +105 -105
- package/node.d.ts.map +1 -1
- package/node.deps.json +1 -1
- package/node.js +33 -33
- package/node.js.map +1 -1
- package/node.mjs +33 -33
- package/node.test.js +43 -43
- package/node.test.js.map +1 -1
- package/package.json +3 -3
- package/web.d.ts +105 -105
- package/web.d.ts.map +1 -1
- package/web.deps.json +1 -1
- package/web.js +33 -33
- package/web.js.map +1 -1
- package/web.mjs +33 -33
- package/web.test.js +10 -10
- package/web.test.js.map +1 -1
package/node.mjs
CHANGED
|
@@ -610,24 +610,21 @@ var $;
|
|
|
610
610
|
"use strict";
|
|
611
611
|
var $;
|
|
612
612
|
(function ($) {
|
|
613
|
-
class $
|
|
613
|
+
class $mol_after_timeout extends $mol_object2 {
|
|
614
|
+
delay;
|
|
614
615
|
task;
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
constructor(task) {
|
|
616
|
+
id;
|
|
617
|
+
constructor(delay, task) {
|
|
618
618
|
super();
|
|
619
|
+
this.delay = delay;
|
|
619
620
|
this.task = task;
|
|
620
|
-
this.
|
|
621
|
-
if (this.cancelled)
|
|
622
|
-
return;
|
|
623
|
-
task();
|
|
624
|
-
});
|
|
621
|
+
this.id = setTimeout(task, delay);
|
|
625
622
|
}
|
|
626
623
|
destructor() {
|
|
627
|
-
this.
|
|
624
|
+
clearTimeout(this.id);
|
|
628
625
|
}
|
|
629
626
|
}
|
|
630
|
-
$.$
|
|
627
|
+
$.$mol_after_timeout = $mol_after_timeout;
|
|
631
628
|
})($ || ($ = {}));
|
|
632
629
|
|
|
633
630
|
;
|
|
@@ -655,7 +652,7 @@ var $;
|
|
|
655
652
|
static plan() {
|
|
656
653
|
if (this.plan_task)
|
|
657
654
|
return;
|
|
658
|
-
this.plan_task = new $
|
|
655
|
+
this.plan_task = new $mol_after_timeout(0, () => {
|
|
659
656
|
try {
|
|
660
657
|
this.sync();
|
|
661
658
|
}
|
|
@@ -929,27 +926,6 @@ var $;
|
|
|
929
926
|
$.$mol_key = $mol_key;
|
|
930
927
|
})($ || ($ = {}));
|
|
931
928
|
|
|
932
|
-
;
|
|
933
|
-
"use strict";
|
|
934
|
-
var $;
|
|
935
|
-
(function ($) {
|
|
936
|
-
class $mol_after_timeout extends $mol_object2 {
|
|
937
|
-
delay;
|
|
938
|
-
task;
|
|
939
|
-
id;
|
|
940
|
-
constructor(delay, task) {
|
|
941
|
-
super();
|
|
942
|
-
this.delay = delay;
|
|
943
|
-
this.task = task;
|
|
944
|
-
this.id = setTimeout(task, delay);
|
|
945
|
-
}
|
|
946
|
-
destructor() {
|
|
947
|
-
clearTimeout(this.id);
|
|
948
|
-
}
|
|
949
|
-
}
|
|
950
|
-
$.$mol_after_timeout = $mol_after_timeout;
|
|
951
|
-
})($ || ($ = {}));
|
|
952
|
-
|
|
953
929
|
;
|
|
954
930
|
"use strict";
|
|
955
931
|
var $;
|
|
@@ -2077,6 +2053,30 @@ var $;
|
|
|
2077
2053
|
$.$mol_dom_context = new $node.jsdom.JSDOM('', { url: 'https://localhost/' }).window;
|
|
2078
2054
|
})($ || ($ = {}));
|
|
2079
2055
|
|
|
2056
|
+
;
|
|
2057
|
+
"use strict";
|
|
2058
|
+
var $;
|
|
2059
|
+
(function ($) {
|
|
2060
|
+
class $mol_after_tick extends $mol_object2 {
|
|
2061
|
+
task;
|
|
2062
|
+
promise;
|
|
2063
|
+
cancelled = false;
|
|
2064
|
+
constructor(task) {
|
|
2065
|
+
super();
|
|
2066
|
+
this.task = task;
|
|
2067
|
+
this.promise = Promise.resolve().then(() => {
|
|
2068
|
+
if (this.cancelled)
|
|
2069
|
+
return;
|
|
2070
|
+
task();
|
|
2071
|
+
});
|
|
2072
|
+
}
|
|
2073
|
+
destructor() {
|
|
2074
|
+
this.cancelled = true;
|
|
2075
|
+
}
|
|
2076
|
+
}
|
|
2077
|
+
$.$mol_after_tick = $mol_after_tick;
|
|
2078
|
+
})($ || ($ = {}));
|
|
2079
|
+
|
|
2080
2080
|
;
|
|
2081
2081
|
"use strict";
|
|
2082
2082
|
var $;
|
package/node.test.js
CHANGED
|
@@ -601,24 +601,21 @@ var $;
|
|
|
601
601
|
"use strict";
|
|
602
602
|
var $;
|
|
603
603
|
(function ($) {
|
|
604
|
-
class $
|
|
604
|
+
class $mol_after_timeout extends $mol_object2 {
|
|
605
|
+
delay;
|
|
605
606
|
task;
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
constructor(task) {
|
|
607
|
+
id;
|
|
608
|
+
constructor(delay, task) {
|
|
609
609
|
super();
|
|
610
|
+
this.delay = delay;
|
|
610
611
|
this.task = task;
|
|
611
|
-
this.
|
|
612
|
-
if (this.cancelled)
|
|
613
|
-
return;
|
|
614
|
-
task();
|
|
615
|
-
});
|
|
612
|
+
this.id = setTimeout(task, delay);
|
|
616
613
|
}
|
|
617
614
|
destructor() {
|
|
618
|
-
this.
|
|
615
|
+
clearTimeout(this.id);
|
|
619
616
|
}
|
|
620
617
|
}
|
|
621
|
-
$.$
|
|
618
|
+
$.$mol_after_timeout = $mol_after_timeout;
|
|
622
619
|
})($ || ($ = {}));
|
|
623
620
|
|
|
624
621
|
;
|
|
@@ -646,7 +643,7 @@ var $;
|
|
|
646
643
|
static plan() {
|
|
647
644
|
if (this.plan_task)
|
|
648
645
|
return;
|
|
649
|
-
this.plan_task = new $
|
|
646
|
+
this.plan_task = new $mol_after_timeout(0, () => {
|
|
650
647
|
try {
|
|
651
648
|
this.sync();
|
|
652
649
|
}
|
|
@@ -920,27 +917,6 @@ var $;
|
|
|
920
917
|
$.$mol_key = $mol_key;
|
|
921
918
|
})($ || ($ = {}));
|
|
922
919
|
|
|
923
|
-
;
|
|
924
|
-
"use strict";
|
|
925
|
-
var $;
|
|
926
|
-
(function ($) {
|
|
927
|
-
class $mol_after_timeout extends $mol_object2 {
|
|
928
|
-
delay;
|
|
929
|
-
task;
|
|
930
|
-
id;
|
|
931
|
-
constructor(delay, task) {
|
|
932
|
-
super();
|
|
933
|
-
this.delay = delay;
|
|
934
|
-
this.task = task;
|
|
935
|
-
this.id = setTimeout(task, delay);
|
|
936
|
-
}
|
|
937
|
-
destructor() {
|
|
938
|
-
clearTimeout(this.id);
|
|
939
|
-
}
|
|
940
|
-
}
|
|
941
|
-
$.$mol_after_timeout = $mol_after_timeout;
|
|
942
|
-
})($ || ($ = {}));
|
|
943
|
-
|
|
944
920
|
;
|
|
945
921
|
"use strict";
|
|
946
922
|
var $;
|
|
@@ -2068,6 +2044,30 @@ var $;
|
|
|
2068
2044
|
$.$mol_dom_context = new $node.jsdom.JSDOM('', { url: 'https://localhost/' }).window;
|
|
2069
2045
|
})($ || ($ = {}));
|
|
2070
2046
|
|
|
2047
|
+
;
|
|
2048
|
+
"use strict";
|
|
2049
|
+
var $;
|
|
2050
|
+
(function ($) {
|
|
2051
|
+
class $mol_after_tick extends $mol_object2 {
|
|
2052
|
+
task;
|
|
2053
|
+
promise;
|
|
2054
|
+
cancelled = false;
|
|
2055
|
+
constructor(task) {
|
|
2056
|
+
super();
|
|
2057
|
+
this.task = task;
|
|
2058
|
+
this.promise = Promise.resolve().then(() => {
|
|
2059
|
+
if (this.cancelled)
|
|
2060
|
+
return;
|
|
2061
|
+
task();
|
|
2062
|
+
});
|
|
2063
|
+
}
|
|
2064
|
+
destructor() {
|
|
2065
|
+
this.cancelled = true;
|
|
2066
|
+
}
|
|
2067
|
+
}
|
|
2068
|
+
$.$mol_after_tick = $mol_after_tick;
|
|
2069
|
+
})($ || ($ = {}));
|
|
2070
|
+
|
|
2071
2071
|
;
|
|
2072
2072
|
"use strict";
|
|
2073
2073
|
var $;
|
|
@@ -7294,7 +7294,7 @@ var $;
|
|
|
7294
7294
|
var $;
|
|
7295
7295
|
(function ($_1) {
|
|
7296
7296
|
$mol_test_mocks.push($ => {
|
|
7297
|
-
$.$
|
|
7297
|
+
$.$mol_after_timeout = $mol_after_mock_timeout;
|
|
7298
7298
|
});
|
|
7299
7299
|
})($ || ($ = {}));
|
|
7300
7300
|
|
|
@@ -7402,15 +7402,6 @@ var $;
|
|
|
7402
7402
|
$.$mol_promise = $mol_promise;
|
|
7403
7403
|
})($ || ($ = {}));
|
|
7404
7404
|
|
|
7405
|
-
;
|
|
7406
|
-
"use strict";
|
|
7407
|
-
var $;
|
|
7408
|
-
(function ($_1) {
|
|
7409
|
-
$mol_test_mocks.push($ => {
|
|
7410
|
-
$.$mol_after_timeout = $mol_after_mock_timeout;
|
|
7411
|
-
});
|
|
7412
|
-
})($ || ($ = {}));
|
|
7413
|
-
|
|
7414
7405
|
;
|
|
7415
7406
|
"use strict";
|
|
7416
7407
|
var $;
|
|
@@ -8140,6 +8131,15 @@ var $;
|
|
|
8140
8131
|
});
|
|
8141
8132
|
})($ || ($ = {}));
|
|
8142
8133
|
|
|
8134
|
+
;
|
|
8135
|
+
"use strict";
|
|
8136
|
+
var $;
|
|
8137
|
+
(function ($_1) {
|
|
8138
|
+
$mol_test_mocks.push($ => {
|
|
8139
|
+
$.$mol_after_tick = $mol_after_mock_commmon;
|
|
8140
|
+
});
|
|
8141
|
+
})($ || ($ = {}));
|
|
8142
|
+
|
|
8143
8143
|
;
|
|
8144
8144
|
"use strict";
|
|
8145
8145
|
var $;
|