mol_plot_all 1.2.260 → 1.2.263
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.deps.json +1 -1
- package/node.esm.js +1 -1
- package/node.esm.js.map +1 -1
- package/node.js +1 -1
- package/node.js.map +1 -1
- package/node.test.js +29 -2
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
- package/web.esm.js +1 -1
- package/web.esm.js.map +1 -1
- package/web.js +1 -1
- package/web.js.map +1 -1
- package/web.test.js +28 -1
- package/web.test.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -2265,7 +2265,7 @@ var $;
|
|
|
2265
2265
|
"use strict";
|
|
2266
2266
|
var $;
|
|
2267
2267
|
(function ($) {
|
|
2268
|
-
$mol_style_attach("mol/view/view/view.css", "[mol_view] {\n\ttransition-property: height, width, min-height, min-width, max-width, max-height, transform;\n\ttransition-duration: .2s;\n\ttransition-timing-function: ease-out;\n\t-webkit-appearance: none;\n\tword-break: break-word;\n\tbox-sizing: border-box;\n\tdisplay: flex;\n\tflex-shrink: 0;\n\tcontain: style;\n
|
|
2268
|
+
$mol_style_attach("mol/view/view/view.css", "[mol_view] {\n\ttransition-property: height, width, min-height, min-width, max-width, max-height, transform;\n\ttransition-duration: .2s;\n\ttransition-timing-function: ease-out;\n\t-webkit-appearance: none;\n\tword-break: break-word;\n\tbox-sizing: border-box;\n\tdisplay: flex;\n\tflex-shrink: 0;\n\tcontain: style;\n}\n\n[mol_view]::selection {\n\tbackground: var(--mol_theme_line);\n}\n\n[mol_view] > * {\n\tword-break: inherit;\n}\n\n[mol_view_root] {\n\tmargin: 0;\n\tpadding: 0;\n\twidth: 100%;\n\theight: 100%;\n\tbox-sizing: border-box;\n\tfont-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n\tfont-size: 1rem;\n\tline-height: 1.5rem;\n\tbackground: var(--mol_theme_back);\n\tcolor: var(--mol_theme_text);\n\tcontain: unset; /** Fixes bg ignoring when applied to body on Chrome */\n\ttab-size: 4;\n}\n\n[mol_view][mol_view_error]:not([mol_view_error=\"Promise\"]) {\n\tbackground-image: repeating-linear-gradient(\n\t\t-45deg,\n\t\t#f92323,\n\t\t#f92323 .5rem,\n\t\t#ff3d3d .5rem,\n\t\t#ff3d3d 1.5rem\n\t);\n\tcolor: black;\n\talign-items: center;\n justify-content: center;\n}\n\n@keyframes mol_view_wait_move {\n\tfrom {\n\t\tbackground-position: 0 0;\n\t}\n\tto {\n\t\tbackground-position: 200vmax 0;\n\t}\n}\n\n@keyframes mol_view_wait_show {\n\tto {\n\t\tbackground-image: repeating-linear-gradient(\n\t\t\t45deg,\n\t\t\thsla( 0 , 0% , 50% , .5 ) 0% ,\n\t\t\thsla( 0 , 0% , 50% , 0 ) 5% ,\n\t\t\thsla( 0 , 0% , 50% , 0 ) 45% ,\n\t\t\thsla( 0 , 0% , 50% , .5 ) 50% ,\n\t\t\thsla( 0 , 0% , 50% , 0 ) 55% ,\n\t\t\thsla( 0 , 0% , 50% , 0 ) 95% ,\n\t\t\thsla( 0 , 0% , 50% , .5 ) 100%\n\t\t);\n\t\tbackground-size: 200vmax 200vmax;\n\t}\n}\n\n[mol_view][mol_view_error=\"Promise\"] {\n\tanimation: mol_view_wait_show .5s .5s linear forwards , mol_view_wait_move 1s linear infinite;\n\topacity: .75;\n}\n");
|
|
2269
2269
|
})($ || ($ = {}));
|
|
2270
2270
|
//mol/view/view/-css/view.css.ts
|
|
2271
2271
|
;
|
|
@@ -6086,7 +6086,7 @@ var $;
|
|
|
6086
6086
|
return $mol_jsx("button", { title: props.hint }, target());
|
|
6087
6087
|
};
|
|
6088
6088
|
const dom = $mol_jsx(Button, { id: "foo", hint: "click me" }, () => 'hey!');
|
|
6089
|
-
$mol_assert_equal(dom.outerHTML, '<button title="click me"
|
|
6089
|
+
$mol_assert_equal(dom.outerHTML, '<button id="foo" title="click me" class="Button">hey!</button>');
|
|
6090
6090
|
},
|
|
6091
6091
|
'Nested guid generation'() {
|
|
6092
6092
|
const Foo = () => {
|
|
@@ -7479,6 +7479,33 @@ var $;
|
|
|
7479
7479
|
$mol_assert_equal(Fib.value(4), 8);
|
|
7480
7480
|
$mol_assert_equal(Fib.sums, 6);
|
|
7481
7481
|
},
|
|
7482
|
+
'Unsubscribe from temp pubs on complete'($) {
|
|
7483
|
+
class Random extends $mol_object2 {
|
|
7484
|
+
static $ = $;
|
|
7485
|
+
static seed() {
|
|
7486
|
+
return Math.random();
|
|
7487
|
+
}
|
|
7488
|
+
static resets(next) {
|
|
7489
|
+
return Math.random();
|
|
7490
|
+
}
|
|
7491
|
+
static value() {
|
|
7492
|
+
this.resets();
|
|
7493
|
+
return this.seed();
|
|
7494
|
+
}
|
|
7495
|
+
}
|
|
7496
|
+
__decorate([
|
|
7497
|
+
$mol_wire_method
|
|
7498
|
+
], Random, "seed", null);
|
|
7499
|
+
__decorate([
|
|
7500
|
+
$mol_wire_mem(0)
|
|
7501
|
+
], Random, "resets", null);
|
|
7502
|
+
__decorate([
|
|
7503
|
+
$mol_wire_mem(0)
|
|
7504
|
+
], Random, "value", null);
|
|
7505
|
+
const first = Random.value();
|
|
7506
|
+
Random.resets(null);
|
|
7507
|
+
$mol_assert_unique(Random.value(), first);
|
|
7508
|
+
},
|
|
7482
7509
|
});
|
|
7483
7510
|
})($ || ($ = {}));
|
|
7484
7511
|
//mol/wire/mem/mem.test.ts
|